hexsha stringlengths 40 40 | size int64 7 1.04M | ext stringclasses 10 values | lang stringclasses 1 value | max_stars_repo_path stringlengths 4 247 | max_stars_repo_name stringlengths 4 125 | max_stars_repo_head_hexsha stringlengths 40 78 | max_stars_repo_licenses listlengths 1 10 | max_stars_count int64 1 368k ⌀ | max_stars_repo_stars_event_min_datetime stringlengths 24 24 ⌀ | max_stars_repo_stars_event_max_datetime stringlengths 24 24 ⌀ | max_issues_repo_path stringlengths 4 247 | max_issues_repo_name stringlengths 4 125 | max_issues_repo_head_hexsha stringlengths 40 78 | max_issues_repo_licenses listlengths 1 10 | max_issues_count int64 1 116k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 4 247 | max_forks_repo_name stringlengths 4 125 | max_forks_repo_head_hexsha stringlengths 40 78 | max_forks_repo_licenses listlengths 1 10 | max_forks_count int64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringlengths 24 24 ⌀ | max_forks_repo_forks_event_max_datetime stringlengths 24 24 ⌀ | content stringlengths 1 1.04M | avg_line_length float64 1.77 618k | max_line_length int64 1 1.02M | alphanum_fraction float64 0 1 | original_content stringlengths 7 1.04M | filtered:remove_function_no_docstring int64 -102 942k | filtered:remove_class_no_docstring int64 -354 977k | filtered:remove_delete_markers int64 0 60.1k |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
daa7d26d703b2e6fd2855c3dde932b88c4d35034 | 69,842 | py | Python | ai4water/datasets/camels.py | csiro-hydroinformatics/AI4Water | cdb18bd4bf298f77b381f1829045a1e790146985 | [
"MIT"
] | 12 | 2020-10-13T08:23:17.000Z | 2021-01-22T04:36:21.000Z | ai4water/datasets/camels.py | csiro-hydroinformatics/AI4Water | cdb18bd4bf298f77b381f1829045a1e790146985 | [
"MIT"
] | 1 | 2020-10-15T02:42:52.000Z | 2020-10-15T02:51:07.000Z | ai4water/datasets/camels.py | csiro-hydroinformatics/AI4Water | cdb18bd4bf298f77b381f1829045a1e790146985 | [
"MIT"
] | 2 | 2020-11-23T04:45:38.000Z | 2020-11-26T10:12:34.000Z | import json
import os
import glob
import random
from typing import Union
try:
import xarray as xr
except ModuleNotFoundError:
xr = None
import numpy as np
import pandas as pd
from .datasets import Datasets
from .utils import check_attributes, download, sanity_check
from ai4water.utils.utils import dateandtime_now
try: # shapely may not be installed, as it may be difficult to isntall and is only needed for plotting data.
from ai4water.pre_processing.spatial_utils import plot_shapefile
except ModuleNotFoundError:
plot_shapefile = None
# directory separator
SEP = os.sep
class Camels(Datasets):
"""
Get CAMELS dataset.
This class first downloads the CAMELS dataset if it is not already downloaded.
Then the selected attribute for a selected id are fetched and provided to the
user using the method `fetch`.
Attributes
-----------
- ds_dir str/path: diretory of the dataset
- dynamic_features list: tells which dynamic attributes are available in
this dataset
- static_features list: a list of static attributes.
- static_attribute_categories list: tells which kinds of static attributes
are present in this category.
Methods
---------
- stations : returns name/id of stations for which the data (dynamic attributes)
exists as list of strings.
- fetch : fetches all attributes (both static and dynamic type) of all
station/gauge_ids or a speficified station. It can also be used to
fetch all attributes of a number of stations ids either by providing
their guage_id or by just saying that we need data of 20 stations
which will then be chosen randomly.
- fetch_dynamic_features :
fetches speficied dynamic attributes of one specified station. If the
dynamic attribute is not specified, all dynamic attributes will be
fetched for the specified station. If station is not specified, the
specified dynamic attributes will be fetched for all stations.
- fetch_static_features :
works same as `fetch_dynamic_features` but for `static` attributes.
Here if the `category` is not specified then static attributes of
the specified station for all categories are returned.
stations : returns list of stations
"""
DATASETS = {
'CAMELS-BR': {'url': "https://zenodo.org/record/3964745#.YA6rUxZS-Uk",
},
'CAMELS-GB': {'url': gb_message},
}
@property
@property
@property
@property
def camels_dir(self):
"""Directory where all camels datasets will be saved. This will under
datasets directory"""
return os.path.join(self.base_ds_dir, "CAMELS")
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return self._ds_dir
@ds_dir.setter
def fetch(self,
stations: Union[str, list, int, float, None] = None,
dynamic_features: Union[list, str, None] = 'all',
static_features: Union[str, list, None] = None,
st: Union[None, str] = None,
en: Union[None, str] = None,
as_dataframe:bool = False,
**kwargs
) -> Union[dict, pd.DataFrame]:
"""
Fetches the attributes of one or more stations.
Arguments:
stations : if string, it is supposed to be a station name/gauge_id.
If list, it will be a list of station/gauge_ids. If int, it will
be supposed that the user want data for this number of
stations/gauge_ids. If None (default), then attributes of all
available stations. If float, it will be supposed that the user
wants data of this fraction of stations.
dynamic_features : If not None, then it is the attributes to be
fetched. If None, then all available attributes are fetched
static_features : list of static attributes to be fetches. None
means no static attribute will be fetched.
st : starting date of data to be returned. If None, the data will be
returned from where it is available.
en : end date of data to be returned. If None, then the data will be
returned till the date data is available.
as_dataframe : whether to return dynamic attributes as pandas
dataframe or as xarray dataset.
kwargs : keyword arguments to read the files
returns:
If both static and dynamic features are obtained then it returns a
dictionary whose keys are station/gauge_ids and values are the
attributes and dataframes.
Otherwise either dynamic or static features are returned.
"""
if isinstance(stations, int):
# the user has asked to randomly provide data for some specified number of stations
stations = random.sample(self.stations(), stations)
elif isinstance(stations, list):
pass
elif isinstance(stations, str):
stations = [stations]
elif isinstance(stations, float):
num_stations = int(len(self.stations()) * stations)
stations = random.sample(self.stations(), num_stations)
elif stations is None:
# fetch for all stations
stations = self.stations()
else:
raise TypeError(f"Unknown value provided for stations {stations}")
if xr is None:
raise ModuleNotFoundError("modeule xarray must be installed to use `datasets` module")
return self.fetch_stations_attributes(stations,
dynamic_features,
static_features,
st=st,
en=en,
as_dataframe=as_dataframe,
**kwargs)
def fetch_stations_attributes(self,
stations: list,
dynamic_features='all',
static_features=None,
st=None,
en=None,
as_dataframe:bool = False,
**kwargs):
"""Reads attributes of more than one stations.
Arguments:
stations : list of stations for which data is to be fetched.
dynamic_features : list of dynamic attributes to be fetched.
if 'all', then all dynamic attributes will be fetched.
static_features : list of static attributes to be fetched.
If `all`, then all static attributes will be fetched. If None,
then no static attribute will be fetched.
st : start of data to be fetched.
en : end of data to be fetched.
as_dataframe : whether to return the data as pandas dataframe. default
is xr.dataset object
kwargs dict: additional keyword arguments
Returns:
Dynamic and static features of multiple stations. Dynamic features
are by default returned as xr.Dataset unless `as_dataframe` is True, in
such a case, it is a pandas dataframe with multiindex. If xr.Dataset,
it consists of `data_vars` equal to number of stations and for each
station, the `DataArray` is of dimensions (time, dynamic_features).
where `time` is defined by `st` and `en` i.e length of `DataArray`.
In case, when the returned object is pandas DataFrame, the first index
is `time` and second index is `dyanamic_features`. Static attributes
are always returned as pandas DataFrame and have following shape
`(stations, static_features). If `dynamic_features` is None,
then they are not returned and the returned value only consists of
static features. Same holds true for `static_features`.
If both are not None, then the returned type is a dictionary with
`static` and `dynamic` keys.
Raises:
ValueError, if both dynamic_features and static_features are None
"""
st, en = self._check_length(st, en)
if dynamic_features is not None:
dynamic_features = check_attributes(dynamic_features, self.dynamic_features)
if not os.path.exists(self.dyn_fname):
# read from csv files
# following code will run only once when fetch is called inside init method
dyn = self._read_dynamic_from_csv(stations, dynamic_features, st=st, en=en)
else:
dyn = xr.load_dataset(self.dyn_fname) # daataset
dyn = dyn[stations].sel(dynamic_features=dynamic_features, time=slice(st, en))
if as_dataframe:
dyn = dyn.to_dataframe(['time', 'dynamic_features'])
if static_features is not None:
static = self.fetch_static_features(stations, static_features)
stns = {'dynamic': dyn, 'static': static}
else:
stns = dyn
elif static_features is not None:
return self.fetch_static_features(stations, static_features)
else:
raise ValueError
return stns
def fetch_dynamic_features(self,
stn_id,
attributes='all',
st=None,
en=None,
as_dataframe=False):
"""Fetches all or selected dynamic attributes of one station."""
assert isinstance(stn_id, str)
station = [stn_id]
return self.fetch_stations_attributes(station,
attributes,
None,
st=st,
en=en,
as_dataframe=as_dataframe)
def fetch_station_attributes(self,
station: str,
dynamic_features: Union[str, list, None] = 'all',
static_features: Union[str, list, None] = None,
as_ts: bool = False,
st: Union[str, None] = None,
en: Union[str, None] = None,
**kwargs) -> pd.DataFrame:
"""
Fetches attributes for one station.
Arguments:
station : station id/gauge id for which the data is to be fetched.
dynamic_features
static_features
as_ts : whether static attributes are to be converted into a time
series or not. If yes then the returned time series will be of
same length as that of dynamic attribtues.
st : starting point from which the data to be fetched. By default
the data will be fetched from where it is available.
en : end point of data to be fetched. By default the dat will be fetched
Return:
dataframe if as_ts is True else it returns a dictionary of static and
dynamic attributes for a station/gauge_id
"""
st, en = self._check_length(st, en)
station_df = pd.DataFrame()
if dynamic_features:
dynamic = self.fetch_dynamic_features(station, dynamic_features, st=st,
en=en, **kwargs)
station_df = pd.concat([station_df, dynamic])
if static_features is not None:
static = self.fetch_static_features(station, static_features)
if as_ts:
station_df = pd.concat([station_df, static], axis=1)
else:
station_df ={'dynamic': station_df, 'static': static}
elif static_features is not None:
station_df = self.fetch_static_features(station, static_features)
return station_df
class LamaH(Camels):
"""
Large-Sample Data for Hydrology and Environmental Sciences for Central Europe
from url = "https://zenodo.org/record/4609826#.YFNp59zt02w"
paper: https://essd.copernicus.org/preprints/essd-2021-72/
"""
url = "https://zenodo.org/record/4609826#.YFNp59zt02w"
_data_types = ['total_upstrm', 'diff_upstrm_all', 'diff_upstrm_lowimp'
]
time_steps = ['daily', 'hourly'
]
static_attribute_categories = ['']
def __init__(self, *,
time_step: str,
data_type: str,
**kwargs
):
"""
Arguments:
time_step : possible values are `daily` or `hourly`
data_type : possible values are `total_upstrm`, `diff_upstrm_all`
or 'diff_upstrm_lowimp'
"""
assert time_step in self.time_steps, f"invalid time_step {time_step} given"
assert data_type in self._data_types, f"invalid data_type {data_type} given."
self.time_step = time_step
self.data_type = data_type
super().__init__(**kwargs)
self._download()
fpath = os.path.join(self.ds_dir, 'lamah_diff_upstrm_lowimp_hourly_dyn.nc')
_data_types = self._data_types if self.time_step == 'daily' else ['total_upstrm']
if not os.path.exists(fpath):
for dt in _data_types:
for ts in self.time_steps:
self.time_step = ts
self.data_type = dt
fname = f"lamah_{dt}_{ts}_dyn"
self._maybe_to_netcdf(fname)
self.time_step = time_step
self.data_type = data_type
self.dyn_fname = os.path.join(self.ds_dir, f'lamah_{data_type}_{time_step}_dyn.nc')
@property
@property
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return os.path.join(self.camels_dir, self.name)
@property
def _read_dynamic_from_csv(self,
stations,
dynamic_features:Union[str, list]='all',
st=None,
en=None,
):
"""Reads attributes of one station"""
stations_attributes = {}
for station in stations:
station_df = pd.DataFrame()
if dynamic_features is not None:
dynamic_df = self.read_ts_of_station(station)
station_df = pd.concat([station_df, dynamic_df])
stations_attributes[station] = station_df
return stations_attributes
@property
@property
class HYSETS(Camels):
"""
database for hydrometeorological modeling of 14,425 North American watersheds
from 1950-2018 following the work of
[Arsenault et al., 2020](https://doi.org/10.1038/s41597-020-00583-2)
The user must manually download the files, unpack them and provide
the `path` where these files are saved.
This data comes with multiple sources. Each source having one or more dynamic_features
Following data_source are available.
|sources | dynamic_features |
|---------------|------------------|
|SNODAS_SWE | dscharge, swe|
|SCDNA | discharge, pr, tasmin, tasmax|
|nonQC_stations | discharge, pr, tasmin, tasmax|
|Livneh | discharge, pr, tasmin, tasmax|
|ERA5 | discharge, pr, tasmax, tasmin|
|ERAS5Land_SWE | discharge, swe|
|ERA5Land | discharge, pr, tasmax, tasmin|
all sources contain one or more following dynamic_features
with following shapes
|dynamic_features | shape |
|----------------------------|------------|
|time | (25202,) |
|watershedID | (14425,) |
|drainage_area | (14425,) |
|drainage_area_GSIM | (14425,) |
|flag_GSIM_boundaries | (14425,) |
|flag_artificial_boundaries | (14425,) |
|centroid_lat | (14425,) |
|centroid_lon | (14425,) |
|elevation | (14425,) |
|slope | (14425,) |
|discharge | (14425, 25202) |
|pr | (14425, 25202) |
|tasmax | (14425, 25202) |
|tasmin | (14425, 25202) |
"""
doi = "https://doi.org/10.1038/s41597-020-00583-2"
url = "https://osf.io/rpc3w/"
Q_SRC = ['ERA5', 'ERA5Land', 'ERA5Land_SWE', 'Livneh', 'nonQC_stations', 'SCDNA', 'SNODAS_SWE']
SWE_SRC = ['ERA5Land_SWE', 'SNODAS_SWE']
OTHER_SRC = [src for src in Q_SRC if src not in ['ERA5Land_SWE', 'SNODAS_SWE']]
dynamic_features = ['discharge', 'swe', 'tasmin', 'tasmax', 'pr']
def __init__(self,
path:str,
swe_source:str = "SNODAS_SWE",
discharge_source: str = "ERA5",
tasmin_source: str = "ERA5",
tasmax_source: str = "ERA5",
pr_source: str = "ERA5",
**kwargs
):
"""
Arguments:
path : path where all the data files are saved.
swe_source : source of swe data.
discharge_source : source of discharge data
tasmin_source : source of tasmin data
tasmax_source : source of tasmax data
pr_source : source of pr data
kwargs : arguments for `Camels` base class
"""
assert swe_source in self.SWE_SRC, f'source must be one of {self.SWE_SRC}'
assert discharge_source in self.Q_SRC, f'source must be one of {self.Q_SRC}'
assert tasmin_source in self.OTHER_SRC, f'source must be one of {self.OTHER_SRC}'
assert tasmax_source in self.OTHER_SRC, f'source must be one of {self.OTHER_SRC}'
assert pr_source in self.OTHER_SRC, f'source must be one of {self.OTHER_SRC}'
self.sources = {
'swe': swe_source,
'discharge': discharge_source,
'tasmin': tasmin_source,
'tasmax': tasmax_source,
'pr': pr_source
}
super().__init__(**kwargs)
self.ds_dir = path
fpath = os.path.join(self.ds_dir, 'hysets_dyn.nc')
if not os.path.exists(fpath):
self._maybe_to_netcdf('hysets_dyn')
@property
@ds_dir.setter
@property
@property
@property
def fetch_dynamic_features(self,
station,
dynamic_features='all',
st=None,
en=None,
as_dataframe=False):
"""Fetches dynamic attributes of one station."""
station = [int(station)]
return self._fetch_dynamic_features(stations=station,
dynamic_features=dynamic_features,
st=st,
en=en,
as_dataframe=as_dataframe)
def _fetch_dynamic_features(self,
stations:list,
dynamic_features='all',
st=None,
en=None,
as_dataframe=False,
as_ts=False
):
"""Fetches dynamic attributes of station."""
st, en = self._check_length(st, en)
attrs = check_attributes(dynamic_features, self.dynamic_features)
stations = np.subtract(stations, 1).tolist()
# maybe we don't need to read all variables
sources = {k:v for k,v in self.sources.items() if k in attrs}
# original .nc file contains datasets with dynamic and static features as data_vars
# however, for uniformity of this API and easy usage, we want a Dataset to have
# station names/gauge_ids as data_vars and each data_var has
# dimension (time, dynamic_variables)
# Therefore, first read all data for each station from .nc file
# then rearrange it.
# todo, this operation is slower because of `to_dataframe`
# also doing this removes all the metadata
x = {}
f = os.path.join(self.ds_dir, "hysets_dyn.nc")
xds = xr.open_dataset(f)
for stn in stations:
xds1 = xds[[f'{k}_{v}' for k, v in sources.items()]].sel(watershed=stn, time=slice(st, en))
xds1 = xds1.rename_vars({f'{k}_{v}': k for k, v in sources.items()})
x[stn] = xds1.to_dataframe(['time'])
xds = xr.Dataset(x)
xds = xds.rename_dims({'dim_1': 'dynamic_features'})
xds = xds.rename_vars({'dim_1': 'dynamic_features'})
if as_dataframe:
return xds.to_dataframe(['time', 'dynamic_features'])
return xds
class CAMELS_US(Camels):
"""
Downloads and processes CAMELS dataset of 671 catchments named as CAMELS
from https://ral.ucar.edu/solutions/products/camels
https://doi.org/10.5194/hess-19-209-2015
"""
DATASETS = ['CAMELS_US']
url = "https://ral.ucar.edu/sites/default/files/public/product-tool/camels-catchment-attributes-and-meteorology-for-large-sample-studies-dataset-downloads/basin_timeseries_v1p2_metForcing_obsFlow.zip"
catchment_attr_url = "https://ral.ucar.edu/sites/default/files/public/product-tool/camels-catchment-attributes-and-meteorology-for-large-sample-studies-dataset-downloads/camels_attributes_v2.0.zip"
folders = {'basin_mean_daymet': f'basin_mean_forcing{SEP}daymet',
'basin_mean_maurer': f'basin_mean_forcing{SEP}maurer',
'basin_mean_nldas': f'basin_mean_forcing{SEP}nldas',
'basin_mean_v1p15_daymet': f'basin_mean_forcing{SEP}v1p15{SEP}daymet',
'basin_mean_v1p15_nldas': f'basin_mean_forcing{SEP}v1p15{SEP}nldas',
'elev_bands': f'elev{SEP}daymet',
'hru': f'hru_forcing{SEP}daymet'}
dynamic_features = ['dayl(s)', 'prcp(mm/day)', 'srad(W/m2)',
'swe(mm)', 'tmax(C)', 'tmin(C)', 'vp(Pa)', 'Flow']
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return os.path.join(self.camels_dir, self.name)
@property
@property
@property
class CAMELS_BR(Camels):
"""
Downloads and processes CAMELS dataset of Brazil
"""
url = "https://zenodo.org/record/3964745#.YA6rUxZS-Uk"
folders = {'streamflow_m3s': '02_CAMELS_BR_streamflow_m3s',
'streamflow_mm': '03_CAMELS_BR_streamflow_mm_selected_catchments',
'simulated_streamflow_m3s': '04_CAMELS_BR_streamflow_simulated',
'precipitation_cpc': '07_CAMELS_BR_precipitation_cpc',
'precipitation_mswep': '06_CAMELS_BR_precipitation_mswep',
'precipitation_chirps': '05_CAMELS_BR_precipitation_chirps',
'evapotransp_gleam': '08_CAMELS_BR_evapotransp_gleam',
'evapotransp_mgb': '09_CAMELS_BR_evapotransp_mgb',
'potential_evapotransp_gleam': '10_CAMELS_BR_potential_evapotransp_gleam',
'temperature_min': '11_CAMELS_BR_temperature_min_cpc',
'temperature_mean': '12_CAMELS_BR_temperature_mean_cpc',
'temperature_max': '13_CAMELS_BR_temperature_max_cpc'
}
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return os.path.join(self.camels_dir, self.name)
@property
def _all_dirs(self):
"""All the folders in the dataset_directory"""
return [f for f in os.listdir(self.ds_dir) if os.path.isdir(os.path.join(self.ds_dir, f))]
@property
@property
@property
@property
@property
@property
@property
def all_stations(self, attribute) -> list:
"""Tells all station ids for which a data of a specific attribute is available."""
all_files = []
for _attr, _dir in self.folders.items():
if attribute in _attr:
all_files = os.listdir(os.path.join(self.ds_dir, f'{_dir}{SEP}{_dir}'))
stations = []
for f in all_files:
stations.append(str(f.split('_')[0]))
return stations
def stations(self, to_exclude=None)->list:
"""Returns a list of station ids which are common among all dynamic attributes.
>>>dataset = CAMELS_BR()
>>>stations = dataset.stations()
"""
if to_exclude is not None:
if not isinstance(to_exclude, list):
assert isinstance(to_exclude, str)
to_exclude = [to_exclude]
else:
to_exclude = []
stations = {}
for dyn_attr in self.dynamic_features:
if dyn_attr not in to_exclude:
stations[dyn_attr] = self.all_stations(dyn_attr)
stns = list(set.intersection(*map(set, list(stations.values()))))
return stns
def _read_dynamic_from_csv(self,
stations,
attributes:Union[str, list]='all',
st=None,
en=None,
):
"""
returns the dynamic/time series attribute/attributes for one station id.
```python
>>>dataset = CAMELS_BR()
>>>pcp = dataset.fetch_dynamic_features('10500000', 'precipitation_cpc')
...# fetch all time series data associated with a station.
>>>x = dataset.fetch_dynamic_features('51560000', dataset.dynamic_features)
```
"""
attributes = check_attributes(attributes, self.dynamic_features)
dyn = {}
for stn_id in stations:
# making one separate dataframe for one station
data = pd.DataFrame()
for attr, _dir in self.folders.items():
if attr in attributes:
path = os.path.join(self.ds_dir, f'{_dir}{SEP}{_dir}')
# supposing that the filename starts with stn_id and has .txt extension.
fname = [f for f in os.listdir(path) if f.startswith(str(stn_id)) and f.endswith('.txt')]
fname = fname[0]
if os.path.exists(os.path.join(path, fname)):
df = pd.read_csv(os.path.join(path, fname), sep=' ')
df.index = pd.to_datetime(df[['year', 'month', 'day']])
df.index.freq = pd.infer_freq(df.index)
df = df[st:en]
# only read one column which matches the attr
# todo, qual_flag maybe important
[df.pop(item) for item in df.columns if item != attr]
data = pd.concat([data, df], axis=1)
else:
raise FileNotFoundError(f"file {fname} not found at {path}")
dyn[stn_id] = data
return dyn
def fetch_static_features(self,
station,
features=None
) -> pd.DataFrame:
"""
Arguments:
stn_id int/list:
station id whose attribute to fetch
attributes str/list:
name of attribute to fetch. Default is None, which will return all the
attributes for a particular station of the specified category.
index_col_name str:
name of column containing station names
as_ts bool:
Example:
-------
```python
>>>dataset = Camels('CAMELS-BR')
>>>df = dataset.fetch_static_features(11500000, 'climate')
```
"""
if isinstance(station, int):
station = [str(station)]
elif isinstance(station, list):
station = [str(stn) for stn in station]
elif isinstance(station, str):
station = [station]
else:
raise ValueError
attributes = check_attributes(features, self.static_features)
static_fpath = os.path.join(self.ds_dir, 'static_features.csv')
if not os.path.exists(static_fpath):
files = glob.glob(f"{os.path.join(self.ds_dir, '01_CAMELS_BR_attributes','01_CAMELS_BR_attributes')}/*.txt")
static_df = pd.DataFrame()
for f in files:
_df = pd.read_csv(f, sep=' ', index_col='gauge_id')
static_df = pd.concat([static_df, _df], axis=1)
static_df.to_csv(static_fpath, index_label='gauge_id')
else:
static_df = pd.read_csv(static_fpath, index_col='gauge_id')
static_df.index = static_df.index.astype(str)
return pd.DataFrame(static_df.loc[station][attributes])
class CAMELS_GB(Camels):
"""
This dataset must be manually downloaded by the user.
The path of the downloaded folder must be provided while initiating this class.
"""
dynamic_features = ["precipitation", "pet", "temperature", "discharge_spec",
"discharge_vol", "peti",
"humidity", "shortwave_rad", "longwave_rad", "windspeed"]
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return self._ds_dir
@ds_dir.setter
@property
@property
@property
@property
def _read_dynamic_from_csv(self,
stations,
attributes:Union[str, list]='all',
st=None,
en=None,
):
"""Fetches dynamic attribute/attributes of one station."""
dyn = {}
for stn_id in stations:
# making one separate dataframe for one station
path = os.path.join(self.ds_dir, f"data{SEP}timeseries")
fname = None
for f in os.listdir(path):
if stn_id in f:
fname = f
break
df = pd.read_csv(os.path.join(path, fname), index_col= 'date')
df.index = pd.to_datetime(df.index)
df.index.freq = pd.infer_freq(df.index)
dyn[stn_id] = df
return dyn
def fetch_static_features(self,
station:str,
features='all'
) -> pd.DataFrame:
"""Fetches static attributes of one station for one or more category as dataframe."""
attributes = check_attributes(features, self.static_features)
static_fname = 'static_features.csv'
static_fpath = os.path.join(self.ds_dir, 'data', static_fname)
if os.path.exists(static_fpath):
static_df = pd.read_csv(static_fpath, index_col='gauge_id')
else:
files = glob.glob(f"{os.path.join(self.ds_dir, 'data')}/*.csv")
static_df = pd.DataFrame()
for f in files:
_df = pd.read_csv(f, index_col='gauge_id')
static_df = pd.concat([static_df, _df], axis=1)
static_df.to_csv(static_fpath)
if isinstance(station, str):
station =[station]
elif isinstance(station, int):
station = [str(station)]
elif isinstance(station, list):
station = [str(stn) for stn in station]
else:
raise ValueError
static_df.index = static_df.index.astype(str)
return static_df.loc[station][attributes]
class CAMELS_AUS(Camels):
"""
Inherits from Camels class. Fetches CAMELS-AUS dataset.
"""
url = 'https://doi.pangaea.de/10.1594/PANGAEA.921850'
urls = {
"01_id_name_metadata.zip": "https://download.pangaea.de/dataset/921850/files/",
"02_location_boundary_area.zip": "https://download.pangaea.de/dataset/921850/files/",
"03_streamflow.zip": "https://download.pangaea.de/dataset/921850/files/",
"04_attributes.zip": "https://download.pangaea.de/dataset/921850/files/",
"05_hydrometeorology.zip": "https://download.pangaea.de/dataset/921850/files/",
"CAMELS_AUS_Attributes-Indices_MasterTable.csv": "https://download.pangaea.de/dataset/921850/files/",
"Units_01_TimeseriesData.pdf": "https://download.pangaea.de/dataset/921850/files/",
"Units_02_AttributeMasterTable.pdf": "https://download.pangaea.de/dataset/921850/files/",
}
folders = {
'streamflow_MLd': f'03_streamflow{SEP}03_streamflow{SEP}streamflow_MLd',
'streamflow_MLd_inclInfilled': f'03_streamflow{SEP}03_streamflow{SEP}streamflow_MLd_inclInfilled',
'streamflow_mmd': f'03_streamflow{SEP}03_streamflow{SEP}streamflow_mmd',
'et_morton_actual_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_morton_actual_SILO',
'et_morton_point_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_morton_point_SILO',
'et_morton_wet_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_morton_wet_SILO',
'et_short_crop_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_short_crop_SILO',
'et_tall_crop_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_tall_crop_SILO',
'evap_morton_lake_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}evap_morton_lake_SILO',
'evap_pan_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}evap_pan_SILO',
'evap_syn_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}evap_syn_SILO',
'precipitation_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}01_precipitation_timeseries{SEP}precipitation_AWAP',
'precipitation_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}01_precipitation_timeseries{SEP}precipitation_SILO',
'precipitation_var_SWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}01_precipitation_timeseries{SEP}precipitation_var_AWAP',
'solarrad_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}AWAP{SEP}solarrad_AWAP',
'tmax_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}AWAP{SEP}tmax_AWAP',
'tmin_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}AWAP{SEP}tmin_AWAP',
'vprp_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}AWAP{SEP}vprp_AWAP',
'mslp_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}mslp_SILO',
'radiation_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}radiation_SILO',
'rh_tmax_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}rh_tmax_SILO',
'rh_tmin_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}rh_tmin_SILO',
'tmax_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}tmax_SILO',
'tmin_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}tmin_SILO',
'vp_deficit_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}vp_deficit_SILO',
'vp_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}vp_SILO',
}
def __init__(self, path:str=None):
"""
Arguments:
path: path where the CAMELS-AUS dataset has been downloaded. This path
must contain five zip files and one xlsx file. If None, then the
data will downloaded.
"""
if path is not None:
assert isinstance(path, str), f'path must be string like but it is "{path}" of type {path.__class__.__name__}'
if not os.path.exists(path) or len(os.listdir(path)) < 2:
raise FileNotFoundError(f"The path {path} does not exist")
self.ds_dir = path
super().__init__()
if not os.path.exists(self.ds_dir):
os.makedirs(self.ds_dir)
for _file, url in self.urls.items():
fpath = os.path.join(self.ds_dir, _file)
if not os.path.exists(fpath):
download(url + _file, fpath)
self._unzip()
self._maybe_to_netcdf('camels_aus_dyn')
@property
@property
@property
@property
@property
@property
def fetch_static_features(self,
station,
features='all',
**kwargs) -> pd.DataFrame:
"""Fetches static attribuets of one station as dataframe."""
return self._read_static(station, features)
class CAMELS_CL(Camels):
"""
Downloads and processes CAMELS dataset of Chile
https://doi.org/10.5194/hess-22-5817-2018
"""
urls = {
"1_CAMELScl_attributes.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"2_CAMELScl_streamflow_m3s.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"3_CAMELScl_streamflow_mm.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"4_CAMELScl_precip_cr2met.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"5_CAMELScl_precip_chirps.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"6_CAMELScl_precip_mswep.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"7_CAMELScl_precip_tmpa.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"8_CAMELScl_tmin_cr2met.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"9_CAMELScl_tmax_cr2met.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"10_CAMELScl_tmean_cr2met.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"11_CAMELScl_pet_8d_modis.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"12_CAMELScl_pet_hargreaves.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"13_CAMELScl_swe.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"14_CAMELScl_catch_hierarchy.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"CAMELScl_catchment_boundaries.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
}
dynamic_features = ['streamflow_m3s', 'streamflow_mm',
'precip_cr2met', 'precip_chirps', 'precip_mswep', 'precip_tmpa',
'tmin_cr2met', 'tmax_cr2met', 'tmean_cr2met',
'pet_8d_modis', 'pet_hargreaves',
'swe'
]
"""
Arguments:
path: path where the CAMELS-AUS dataset has been downloaded. This path must
contain five zip files and one xlsx file.
"""
@property
def _all_dirs(self):
"""All the folders in the dataset_directory"""
return [f for f in os.listdir(self.ds_dir) if os.path.isdir(os.path.join(self.ds_dir, f))]
@property
@property
@property
def stations(self) -> list:
"""Tells all station ids for which a data of a specific attribute is available."""
stn_fname = os.path.join(self.ds_dir, 'stations.json')
if not os.path.exists(stn_fname):
_stations = {}
for dyn_attr in self.dynamic_features:
for _dir in self._all_dirs:
if dyn_attr in _dir:
fname = os.path.join(self.ds_dir, f"{_dir}{SEP}{_dir}.txt")
df = pd.read_csv(fname, sep='\t', nrows=2, index_col='gauge_id')
_stations[dyn_attr] = list(df.columns)
stns = list(set.intersection(*map(set, list(_stations.values()))))
with open(stn_fname, 'w') as fp:
json.dump(stns, fp)
else:
with open(stn_fname, 'r') as fp:
stns = json.load(fp)
return stns
class HYPE(Camels):
"""
Downloads and preprocesses HYPE dataset from https://zenodo.org/record/4029572.
This is a rainfall-runoff dataset of 564 stations from 1985 to 2019 at daily
monthly and yearly time steps.
paper : https://doi.org/10.2166/nh.2010.007
"""
url = [
"https://zenodo.org/record/581435",
"https://zenodo.org/record/4029572"
]
dynamic_features = [
'AET_mm',
'Baseflow_mm',
'Infiltration_mm',
'SM_mm',
'Streamflow_mm',
'Runoff_mm',
'Qsim_m3-s',
'Prec_mm',
'PET_mm'
]
@property
@property
@property
| 40.001145 | 204 | 0.57328 | import json
import os
import glob
import random
from typing import Union
try:
import xarray as xr
except ModuleNotFoundError:
xr = None
import numpy as np
import pandas as pd
from .datasets import Datasets
from .utils import check_attributes, download, sanity_check
from ai4water.utils.utils import dateandtime_now
try: # shapely may not be installed, as it may be difficult to isntall and is only needed for plotting data.
from ai4water.pre_processing.spatial_utils import plot_shapefile
except ModuleNotFoundError:
plot_shapefile = None
# directory separator
SEP = os.sep
def gb_message():
link = "https://doi.org/10.5285/8344e4f3-d2ea-44f5-8afa-86d2987543a9"
raise ValueError(f"Dwonlaoad the data from {link} and provide the directory "
f"path as dataset=Camels(data=data)")
class Camels(Datasets):
"""
Get CAMELS dataset.
This class first downloads the CAMELS dataset if it is not already downloaded.
Then the selected attribute for a selected id are fetched and provided to the
user using the method `fetch`.
Attributes
-----------
- ds_dir str/path: diretory of the dataset
- dynamic_features list: tells which dynamic attributes are available in
this dataset
- static_features list: a list of static attributes.
- static_attribute_categories list: tells which kinds of static attributes
are present in this category.
Methods
---------
- stations : returns name/id of stations for which the data (dynamic attributes)
exists as list of strings.
- fetch : fetches all attributes (both static and dynamic type) of all
station/gauge_ids or a speficified station. It can also be used to
fetch all attributes of a number of stations ids either by providing
their guage_id or by just saying that we need data of 20 stations
which will then be chosen randomly.
- fetch_dynamic_features :
fetches speficied dynamic attributes of one specified station. If the
dynamic attribute is not specified, all dynamic attributes will be
fetched for the specified station. If station is not specified, the
specified dynamic attributes will be fetched for all stations.
- fetch_static_features :
works same as `fetch_dynamic_features` but for `static` attributes.
Here if the `category` is not specified then static attributes of
the specified station for all categories are returned.
stations : returns list of stations
"""
DATASETS = {
'CAMELS-BR': {'url': "https://zenodo.org/record/3964745#.YA6rUxZS-Uk",
},
'CAMELS-GB': {'url': gb_message},
}
def stations(self):
raise NotImplementedError
def _read_dynamic_from_csv(self, stations, dynamic_features, st=None, en=None):
raise NotImplementedError
def fetch_static_features(self, station, features):
raise NotImplementedError
@property
def start(self): # start of data
raise NotImplementedError
@property
def end(self): # end of data
raise NotImplementedError
@property
def dynamic_features(self)->list:
raise NotImplementedError
def _check_length(self, st, en):
if st is None:
st = self.start
if en is None:
en = self.end
return st, en
def to_ts(self, static, st, en, as_ts=False, freq='D'):
st, en = self._check_length(st, en)
if as_ts:
idx = pd.date_range(st, en, freq=freq)
static = pd.DataFrame(np.repeat(static.values, len(idx), axis=0), index=idx,
columns=static.columns)
return static
else:
return static
@property
def camels_dir(self):
"""Directory where all camels datasets will be saved. This will under
datasets directory"""
return os.path.join(self.base_ds_dir, "CAMELS")
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return self._ds_dir
@ds_dir.setter
def ds_dir(self, x):
if x is None:
x = os.path.join(self.camels_dir, self.__class__.__name__)
if not os.path.exists(x):
os.makedirs(x)
# sanity_check(self.name, x)
self._ds_dir = x
def fetch(self,
stations: Union[str, list, int, float, None] = None,
dynamic_features: Union[list, str, None] = 'all',
static_features: Union[str, list, None] = None,
st: Union[None, str] = None,
en: Union[None, str] = None,
as_dataframe:bool = False,
**kwargs
) -> Union[dict, pd.DataFrame]:
"""
Fetches the attributes of one or more stations.
Arguments:
stations : if string, it is supposed to be a station name/gauge_id.
If list, it will be a list of station/gauge_ids. If int, it will
be supposed that the user want data for this number of
stations/gauge_ids. If None (default), then attributes of all
available stations. If float, it will be supposed that the user
wants data of this fraction of stations.
dynamic_features : If not None, then it is the attributes to be
fetched. If None, then all available attributes are fetched
static_features : list of static attributes to be fetches. None
means no static attribute will be fetched.
st : starting date of data to be returned. If None, the data will be
returned from where it is available.
en : end date of data to be returned. If None, then the data will be
returned till the date data is available.
as_dataframe : whether to return dynamic attributes as pandas
dataframe or as xarray dataset.
kwargs : keyword arguments to read the files
returns:
If both static and dynamic features are obtained then it returns a
dictionary whose keys are station/gauge_ids and values are the
attributes and dataframes.
Otherwise either dynamic or static features are returned.
"""
if isinstance(stations, int):
# the user has asked to randomly provide data for some specified number of stations
stations = random.sample(self.stations(), stations)
elif isinstance(stations, list):
pass
elif isinstance(stations, str):
stations = [stations]
elif isinstance(stations, float):
num_stations = int(len(self.stations()) * stations)
stations = random.sample(self.stations(), num_stations)
elif stations is None:
# fetch for all stations
stations = self.stations()
else:
raise TypeError(f"Unknown value provided for stations {stations}")
if xr is None:
raise ModuleNotFoundError("modeule xarray must be installed to use `datasets` module")
return self.fetch_stations_attributes(stations,
dynamic_features,
static_features,
st=st,
en=en,
as_dataframe=as_dataframe,
**kwargs)
def _maybe_to_netcdf(self, fname:str):
self.dyn_fname = os.path.join(self.ds_dir, f'{fname}.nc')
if not os.path.exists(self.dyn_fname):
# saving all the data in netCDF file using xarray
print(f'converting data to netcdf format for faster io operations')
data = self.fetch(static_features=None)
data_vars = {}
coords = {}
for k, v in data.items():
data_vars[k] = (['time', 'dynamic_features'], v)
index = v.index
index.name = 'time'
coords = {
'dynamic_features': list(v.columns),
'time': index
}
xds = xr.Dataset(
data_vars=data_vars,
coords=coords,
attrs={'date': f"create on {dateandtime_now()}"}
)
xds.to_netcdf(self.dyn_fname)
def fetch_stations_attributes(self,
stations: list,
dynamic_features='all',
static_features=None,
st=None,
en=None,
as_dataframe:bool = False,
**kwargs):
"""Reads attributes of more than one stations.
Arguments:
stations : list of stations for which data is to be fetched.
dynamic_features : list of dynamic attributes to be fetched.
if 'all', then all dynamic attributes will be fetched.
static_features : list of static attributes to be fetched.
If `all`, then all static attributes will be fetched. If None,
then no static attribute will be fetched.
st : start of data to be fetched.
en : end of data to be fetched.
as_dataframe : whether to return the data as pandas dataframe. default
is xr.dataset object
kwargs dict: additional keyword arguments
Returns:
Dynamic and static features of multiple stations. Dynamic features
are by default returned as xr.Dataset unless `as_dataframe` is True, in
such a case, it is a pandas dataframe with multiindex. If xr.Dataset,
it consists of `data_vars` equal to number of stations and for each
station, the `DataArray` is of dimensions (time, dynamic_features).
where `time` is defined by `st` and `en` i.e length of `DataArray`.
In case, when the returned object is pandas DataFrame, the first index
is `time` and second index is `dyanamic_features`. Static attributes
are always returned as pandas DataFrame and have following shape
`(stations, static_features). If `dynamic_features` is None,
then they are not returned and the returned value only consists of
static features. Same holds true for `static_features`.
If both are not None, then the returned type is a dictionary with
`static` and `dynamic` keys.
Raises:
ValueError, if both dynamic_features and static_features are None
"""
st, en = self._check_length(st, en)
if dynamic_features is not None:
dynamic_features = check_attributes(dynamic_features, self.dynamic_features)
if not os.path.exists(self.dyn_fname):
# read from csv files
# following code will run only once when fetch is called inside init method
dyn = self._read_dynamic_from_csv(stations, dynamic_features, st=st, en=en)
else:
dyn = xr.load_dataset(self.dyn_fname) # daataset
dyn = dyn[stations].sel(dynamic_features=dynamic_features, time=slice(st, en))
if as_dataframe:
dyn = dyn.to_dataframe(['time', 'dynamic_features'])
if static_features is not None:
static = self.fetch_static_features(stations, static_features)
stns = {'dynamic': dyn, 'static': static}
else:
stns = dyn
elif static_features is not None:
return self.fetch_static_features(stations, static_features)
else:
raise ValueError
return stns
def fetch_dynamic_features(self,
stn_id,
attributes='all',
st=None,
en=None,
as_dataframe=False):
"""Fetches all or selected dynamic attributes of one station."""
assert isinstance(stn_id, str)
station = [stn_id]
return self.fetch_stations_attributes(station,
attributes,
None,
st=st,
en=en,
as_dataframe=as_dataframe)
def fetch_station_attributes(self,
station: str,
dynamic_features: Union[str, list, None] = 'all',
static_features: Union[str, list, None] = None,
as_ts: bool = False,
st: Union[str, None] = None,
en: Union[str, None] = None,
**kwargs) -> pd.DataFrame:
"""
Fetches attributes for one station.
Arguments:
station : station id/gauge id for which the data is to be fetched.
dynamic_features
static_features
as_ts : whether static attributes are to be converted into a time
series or not. If yes then the returned time series will be of
same length as that of dynamic attribtues.
st : starting point from which the data to be fetched. By default
the data will be fetched from where it is available.
en : end point of data to be fetched. By default the dat will be fetched
Return:
dataframe if as_ts is True else it returns a dictionary of static and
dynamic attributes for a station/gauge_id
"""
st, en = self._check_length(st, en)
station_df = pd.DataFrame()
if dynamic_features:
dynamic = self.fetch_dynamic_features(station, dynamic_features, st=st,
en=en, **kwargs)
station_df = pd.concat([station_df, dynamic])
if static_features is not None:
static = self.fetch_static_features(station, static_features)
if as_ts:
station_df = pd.concat([station_df, static], axis=1)
else:
station_df ={'dynamic': station_df, 'static': static}
elif static_features is not None:
station_df = self.fetch_static_features(station, static_features)
return station_df
class LamaH(Camels):
"""
Large-Sample Data for Hydrology and Environmental Sciences for Central Europe
from url = "https://zenodo.org/record/4609826#.YFNp59zt02w"
paper: https://essd.copernicus.org/preprints/essd-2021-72/
"""
url = "https://zenodo.org/record/4609826#.YFNp59zt02w"
_data_types = ['total_upstrm', 'diff_upstrm_all', 'diff_upstrm_lowimp'
]
time_steps = ['daily', 'hourly'
]
static_attribute_categories = ['']
def __init__(self, *,
time_step: str,
data_type: str,
**kwargs
):
"""
Arguments:
time_step : possible values are `daily` or `hourly`
data_type : possible values are `total_upstrm`, `diff_upstrm_all`
or 'diff_upstrm_lowimp'
"""
assert time_step in self.time_steps, f"invalid time_step {time_step} given"
assert data_type in self._data_types, f"invalid data_type {data_type} given."
self.time_step = time_step
self.data_type = data_type
super().__init__(**kwargs)
self._download()
fpath = os.path.join(self.ds_dir, 'lamah_diff_upstrm_lowimp_hourly_dyn.nc')
_data_types = self._data_types if self.time_step == 'daily' else ['total_upstrm']
if not os.path.exists(fpath):
for dt in _data_types:
for ts in self.time_steps:
self.time_step = ts
self.data_type = dt
fname = f"lamah_{dt}_{ts}_dyn"
self._maybe_to_netcdf(fname)
self.time_step = time_step
self.data_type = data_type
self.dyn_fname = os.path.join(self.ds_dir, f'lamah_{data_type}_{time_step}_dyn.nc')
@property
def dynamic_features(self):
station = self.stations()[0]
df = self.read_ts_of_station(station)
return df.columns.to_list()
@property
def static_features(self) -> list:
fname = os.path.join(self.data_type_dir, f'1_attributes{SEP}Catchment_attributes.csv')
df = pd.read_csv(fname, sep=';', index_col='ID')
return df.columns.to_list()
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return os.path.join(self.camels_dir, self.name)
@property
def data_type_dir(self):
directory = 'CAMELS_AT'
if self.time_step == 'hourly':
directory = 'CAMELS_AT1' # todo, use it only for hourly, daily is causing errors
# self.ds_dir/CAMELS_AT/data_type_dir
f = [f for f in os.listdir(os.path.join(self.ds_dir, directory)) if self.data_type in f][0]
return os.path.join(self.ds_dir, f'{directory}{SEP}{f}')
def stations(self)->list:
# assuming file_names of the format ID_{stn_id}.csv
_dirs = os.listdir(os.path.join(self.data_type_dir, f'2_timeseries{SEP}{self.time_step}'))
s = [f.split('_')[1].split('.csv')[0] for f in _dirs]
return s
def _read_dynamic_from_csv(self,
stations,
dynamic_features:Union[str, list]='all',
st=None,
en=None,
):
"""Reads attributes of one station"""
stations_attributes = {}
for station in stations:
station_df = pd.DataFrame()
if dynamic_features is not None:
dynamic_df = self.read_ts_of_station(station)
station_df = pd.concat([station_df, dynamic_df])
stations_attributes[station] = station_df
return stations_attributes
def fetch_static_features(self,
station:Union[str, list],
features=None
)->pd.DataFrame:
fname = os.path.join(self.data_type_dir, f'1_attributes{SEP}Catchment_attributes.csv')
df = pd.read_csv(fname, sep=';', index_col='ID')
#if features is not None:
static_features = check_attributes(features, self.static_features)
df = df[static_features]
if isinstance(station, list):
stations = [str(i) for i in station]
elif isinstance(station, int):
stations = str(station)
else:
stations = station
df.index = df.index.astype(str)
df = df.loc[stations]
if isinstance(df, pd.Series):
df = pd.DataFrame(df).transpose()
return df
def read_ts_of_station(self, station) -> pd.DataFrame:
# read a file containing timeseries data for one station
fname = os.path.join(self.data_type_dir,
f'2_timeseries{SEP}{self.time_step}{SEP}ID_{station}.csv')
df = pd.read_csv(fname, sep=';')
if self.time_step == 'daily':
periods = pd.PeriodIndex(year=df["YYYY"], month=df["MM"], day=df["DD"], freq="D")
df.index = periods.to_timestamp()
else:
periods = pd.PeriodIndex(year=df["YYYY"], month=df["MM"], day=df["DD"], hour=df["hh"], minute=df["mm"], freq="H")
df.index = periods.to_timestamp()
# remove the cols specifying index
[df.pop(item) for item in ['YYYY', 'MM', 'DD', 'hh', 'mm'] if item in df]
return df
@property
def start(self):
return "19810101"
@property
def end(self):
return "20191231"
class HYSETS(Camels):
"""
database for hydrometeorological modeling of 14,425 North American watersheds
from 1950-2018 following the work of
[Arsenault et al., 2020](https://doi.org/10.1038/s41597-020-00583-2)
The user must manually download the files, unpack them and provide
the `path` where these files are saved.
This data comes with multiple sources. Each source having one or more dynamic_features
Following data_source are available.
|sources | dynamic_features |
|---------------|------------------|
|SNODAS_SWE | dscharge, swe|
|SCDNA | discharge, pr, tasmin, tasmax|
|nonQC_stations | discharge, pr, tasmin, tasmax|
|Livneh | discharge, pr, tasmin, tasmax|
|ERA5 | discharge, pr, tasmax, tasmin|
|ERAS5Land_SWE | discharge, swe|
|ERA5Land | discharge, pr, tasmax, tasmin|
all sources contain one or more following dynamic_features
with following shapes
|dynamic_features | shape |
|----------------------------|------------|
|time | (25202,) |
|watershedID | (14425,) |
|drainage_area | (14425,) |
|drainage_area_GSIM | (14425,) |
|flag_GSIM_boundaries | (14425,) |
|flag_artificial_boundaries | (14425,) |
|centroid_lat | (14425,) |
|centroid_lon | (14425,) |
|elevation | (14425,) |
|slope | (14425,) |
|discharge | (14425, 25202) |
|pr | (14425, 25202) |
|tasmax | (14425, 25202) |
|tasmin | (14425, 25202) |
"""
doi = "https://doi.org/10.1038/s41597-020-00583-2"
url = "https://osf.io/rpc3w/"
Q_SRC = ['ERA5', 'ERA5Land', 'ERA5Land_SWE', 'Livneh', 'nonQC_stations', 'SCDNA', 'SNODAS_SWE']
SWE_SRC = ['ERA5Land_SWE', 'SNODAS_SWE']
OTHER_SRC = [src for src in Q_SRC if src not in ['ERA5Land_SWE', 'SNODAS_SWE']]
dynamic_features = ['discharge', 'swe', 'tasmin', 'tasmax', 'pr']
def __init__(self,
path:str,
swe_source:str = "SNODAS_SWE",
discharge_source: str = "ERA5",
tasmin_source: str = "ERA5",
tasmax_source: str = "ERA5",
pr_source: str = "ERA5",
**kwargs
):
"""
Arguments:
path : path where all the data files are saved.
swe_source : source of swe data.
discharge_source : source of discharge data
tasmin_source : source of tasmin data
tasmax_source : source of tasmax data
pr_source : source of pr data
kwargs : arguments for `Camels` base class
"""
assert swe_source in self.SWE_SRC, f'source must be one of {self.SWE_SRC}'
assert discharge_source in self.Q_SRC, f'source must be one of {self.Q_SRC}'
assert tasmin_source in self.OTHER_SRC, f'source must be one of {self.OTHER_SRC}'
assert tasmax_source in self.OTHER_SRC, f'source must be one of {self.OTHER_SRC}'
assert pr_source in self.OTHER_SRC, f'source must be one of {self.OTHER_SRC}'
self.sources = {
'swe': swe_source,
'discharge': discharge_source,
'tasmin': tasmin_source,
'tasmax': tasmax_source,
'pr': pr_source
}
super().__init__(**kwargs)
self.ds_dir = path
fpath = os.path.join(self.ds_dir, 'hysets_dyn.nc')
if not os.path.exists(fpath):
self._maybe_to_netcdf('hysets_dyn')
def _maybe_to_netcdf(self, fname:str):
# todo saving as one file takes very long time
oneD_vars = []
twoD_vars = []
for src in self.Q_SRC:
xds = xr.open_dataset(os.path.join(self.ds_dir, f'HYSETS_2020_{src}.nc'))
for var in xds.variables:
print(f'getting {var} from source {src} ')
if len(xds[var].data.shape) > 1:
xar = xds[var]
xar.name = f"{xar.name}_{src}"
twoD_vars.append(xar)
else:
xar = xds[var]
xar.name = f"{xar.name}_{src}"
oneD_vars.append(xar)
oneD_xds = xr.merge(oneD_vars)
twoD_xds = xr.merge(twoD_vars)
oneD_xds.to_netcdf(os.path.join(self.ds_dir, "hysets_static.nc"))
twoD_xds.to_netcdf(os.path.join(self.ds_dir, "hysets_dyn.nc"))
return
@property
def ds_dir(self):
return self._ds_dir
@ds_dir.setter
def ds_dir(self, x):
sanity_check('HYSETS', x)
self._ds_dir = x
@property
def static_features(self):
df = self.read_static_data()
return df.columns.to_list()
def stations(self) -> list:
return self.read_static_data().index.to_list()
@property
def start(self):
return "19500101"
@property
def end(self):
return "20181231"
def fetch_stations_attributes(self,
stations: list,
dynamic_features: Union[str, list, None] = 'all',
static_features: Union[str, list, None] = None,
st = None,
en = None,
as_dataframe: bool = False,
**kwargs):
stations = check_attributes(stations, self.stations())
stations = [int(stn) for stn in stations]
if dynamic_features is not None:
dyn = self._fetch_dynamic_features(stations=stations,
dynamic_features=dynamic_features,
as_dataframe=as_dataframe,
**kwargs
)
if static_features is not None: # we want both static and dynamic
to_return = {}
static = self._fetch_static_features(station=stations,
static_features=static_features,
**kwargs
)
to_return['static'] = static
to_return['dynamic'] = dyn
else:
to_return = dyn
elif static_features is not None:
# we want only static
to_return = self._fetch_static_features(
station=stations,
static_features=static_features,
**kwargs
)
else:
raise ValueError
return to_return
def fetch_dynamic_features(self,
station,
dynamic_features='all',
st=None,
en=None,
as_dataframe=False):
"""Fetches dynamic attributes of one station."""
station = [int(station)]
return self._fetch_dynamic_features(stations=station,
dynamic_features=dynamic_features,
st=st,
en=en,
as_dataframe=as_dataframe)
def _fetch_dynamic_features(self,
stations:list,
dynamic_features='all',
st=None,
en=None,
as_dataframe=False,
as_ts=False
):
"""Fetches dynamic attributes of station."""
st, en = self._check_length(st, en)
attrs = check_attributes(dynamic_features, self.dynamic_features)
stations = np.subtract(stations, 1).tolist()
# maybe we don't need to read all variables
sources = {k:v for k,v in self.sources.items() if k in attrs}
# original .nc file contains datasets with dynamic and static features as data_vars
# however, for uniformity of this API and easy usage, we want a Dataset to have
# station names/gauge_ids as data_vars and each data_var has
# dimension (time, dynamic_variables)
# Therefore, first read all data for each station from .nc file
# then rearrange it.
# todo, this operation is slower because of `to_dataframe`
# also doing this removes all the metadata
x = {}
f = os.path.join(self.ds_dir, "hysets_dyn.nc")
xds = xr.open_dataset(f)
for stn in stations:
xds1 = xds[[f'{k}_{v}' for k, v in sources.items()]].sel(watershed=stn, time=slice(st, en))
xds1 = xds1.rename_vars({f'{k}_{v}': k for k, v in sources.items()})
x[stn] = xds1.to_dataframe(['time'])
xds = xr.Dataset(x)
xds = xds.rename_dims({'dim_1': 'dynamic_features'})
xds = xds.rename_vars({'dim_1': 'dynamic_features'})
if as_dataframe:
return xds.to_dataframe(['time', 'dynamic_features'])
return xds
def _fetch_static_features(self,
station,
static_features:Union[str, list]='all',
st=None,
en=None,
as_ts=False):
df = self.read_static_data()
static_features = check_attributes(static_features, self.static_features)
if isinstance(station, str):
station = [station]
elif isinstance(station, int):
station = [str(station)]
elif isinstance(station, list):
station = [str(stn) for stn in station]
else:
raise ValueError
return self.to_ts(df.loc[station][static_features], st=st, en=en, as_ts=as_ts)
def fetch_static_features(self,
station,
features='all',
st=None,
en=None,
as_ts=False
)->pd.DataFrame:
return self._fetch_static_features(station, features, st, en, as_ts)
def read_static_data(self):
fname = os.path.join(self.ds_dir, 'HYSETS_watershed_properties.txt')
static_df = pd.read_csv(fname, index_col='Watershed_ID', sep=';')
static_df.index = static_df.index.astype(str)
return static_df
class CAMELS_US(Camels):
"""
Downloads and processes CAMELS dataset of 671 catchments named as CAMELS
from https://ral.ucar.edu/solutions/products/camels
https://doi.org/10.5194/hess-19-209-2015
"""
DATASETS = ['CAMELS_US']
url = "https://ral.ucar.edu/sites/default/files/public/product-tool/camels-catchment-attributes-and-meteorology-for-large-sample-studies-dataset-downloads/basin_timeseries_v1p2_metForcing_obsFlow.zip"
catchment_attr_url = "https://ral.ucar.edu/sites/default/files/public/product-tool/camels-catchment-attributes-and-meteorology-for-large-sample-studies-dataset-downloads/camels_attributes_v2.0.zip"
folders = {'basin_mean_daymet': f'basin_mean_forcing{SEP}daymet',
'basin_mean_maurer': f'basin_mean_forcing{SEP}maurer',
'basin_mean_nldas': f'basin_mean_forcing{SEP}nldas',
'basin_mean_v1p15_daymet': f'basin_mean_forcing{SEP}v1p15{SEP}daymet',
'basin_mean_v1p15_nldas': f'basin_mean_forcing{SEP}v1p15{SEP}nldas',
'elev_bands': f'elev{SEP}daymet',
'hru': f'hru_forcing{SEP}daymet'}
dynamic_features = ['dayl(s)', 'prcp(mm/day)', 'srad(W/m2)',
'swe(mm)', 'tmax(C)', 'tmin(C)', 'vp(Pa)', 'Flow']
def __init__(self, data_source='basin_mean_daymet'):
assert data_source in self.folders, f'allwed data sources are {self.folders.keys()}'
self.data_source = data_source
super().__init__("CAMELS_US")
if os.path.exists(self.ds_dir):
print(f"dataset is already downloaded at {self.ds_dir}")
else:
download(self.url, os.path.join(self.camels_dir, f'CAMELS_US{SEP}CAMELS_US.zip'))
download(self.catchment_attr_url, os.path.join(self.camels_dir, f"CAMELS_US{SEP}catchment_attrs.zip"))
self._unzip()
self.attr_dir = os.path.join(self.ds_dir, f'catchment_attrs{SEP}camels_attributes_v2.0')
self.dataset_dir = os.path.join(self.ds_dir, f'CAMELS_US{SEP}basin_dataset_public_v1p2')
self._maybe_to_netcdf('camels_us_dyn')
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return os.path.join(self.camels_dir, self.name)
@property
def start(self):
return "19800101"
@property
def end(self):
return "20141231"
@property
def static_features(self):
static_fpath = os.path.join(self.ds_dir, 'static_features.csv')
if not os.path.exists(static_fpath):
files = glob.glob(f"{os.path.join(self.ds_dir, 'catchment_attrs', 'camels_attributes_v2.0')}/*.txt")
cols = []
for f in files:
_df = pd.read_csv(f, sep=';', index_col='gauge_id', nrows=1)
cols += list(_df.columns)
else:
df = pd.read_csv(static_fpath, index_col='gauge_id', nrows=1)
cols = list(df.columns)
return cols
def stations(self) -> list:
stns = []
for _dir in os.listdir(os.path.join(self.dataset_dir, 'usgs_streamflow')):
cat = os.path.join(self.dataset_dir, f'usgs_streamflow{SEP}{_dir}')
stns += [fname.split('_')[0] for fname in os.listdir(cat)]
# remove stations for which static values are not available
for stn in ['06775500', '06846500', '09535100']:
stns.remove(stn)
return stns
def _read_dynamic_from_csv(self,
stations,
dynamic_features:Union[str, list]='all',
st=None,
en=None,
):
dyn = {}
for station in stations:
# attributes = check_attributes(dynamic_features, self.dynamic_features)
assert isinstance(station, str)
df = None
df1 = None
dir_name = self.folders[self.data_source]
for cat in os.listdir(os.path.join(self.dataset_dir, dir_name)):
cat_dirs = os.listdir(os.path.join(self.dataset_dir, f'{dir_name}{SEP}{cat}'))
stn_file = f'{station}_lump_cida_forcing_leap.txt'
if stn_file in cat_dirs:
df = pd.read_csv(os.path.join(self.dataset_dir,
f'{dir_name}{SEP}{cat}{SEP}{stn_file}'),
sep="\s+|;|:",
skiprows=4,
engine='python',
names=['Year', 'Mnth', 'Day', 'Hr', 'dayl(s)', 'prcp(mm/day)', 'srad(W/m2)',
'swe(mm)', 'tmax(C)', 'tmin(C)', 'vp(Pa)'],
)
df.index = pd.to_datetime(df['Year'].map(str) + '-' + df['Mnth'].map(str) + '-' + df['Day'].map(str))
flow_dir = os.path.join(self.dataset_dir, 'usgs_streamflow')
for cat in os.listdir(flow_dir):
cat_dirs = os.listdir(os.path.join(flow_dir, cat))
stn_file = f'{station}_streamflow_qc.txt'
if stn_file in cat_dirs:
fpath = os.path.join(flow_dir, f'{cat}{SEP}{stn_file}')
df1 = pd.read_csv(fpath, sep="\s+|;|:'",
names=['station', 'Year', 'Month', 'Day', 'Flow', 'Flag'],
engine='python')
df1.index = pd.to_datetime(
df1['Year'].map(str) + '-' + df1['Month'].map(str) + '-' + df1['Day'].map(str))
out_df = pd.concat([df[['dayl(s)', 'prcp(mm/day)', 'srad(W/m2)', 'swe(mm)', 'tmax(C)', 'tmin(C)', 'vp(Pa)']],
df1['Flow']],
axis=1)
dyn[station] = out_df
return dyn
def fetch_static_features(self, station, features):
attributes = check_attributes(features, self.static_features)
static_fpath = os.path.join(self.ds_dir, 'static_features.csv')
if not os.path.exists(static_fpath):
files = glob.glob(f"{os.path.join(self.ds_dir, 'catchment_attrs', 'camels_attributes_v2.0')}/*.txt")
static_df = pd.DataFrame()
for f in files:
# index should be read as string
idx = pd.read_csv(f, sep=';', usecols=['gauge_id'], dtype=str)
_df = pd.read_csv(f, sep=';', index_col='gauge_id')
_df.index = idx['gauge_id']
static_df = pd.concat([static_df, _df], axis=1)
static_df.to_csv(static_fpath, index_label='gauge_id')
else: # index should be read as string bcs it has 0s at the start
idx = pd.read_csv(static_fpath, usecols=['gauge_id'], dtype=str)
static_df = pd.read_csv(static_fpath, index_col='gauge_id')
static_df.index = idx['gauge_id']
static_df.index = static_df.index.astype(str)
df = static_df.loc[station][attributes]
if isinstance(df, pd.Series):
df = pd.DataFrame(df).transpose()
return df
class CAMELS_BR(Camels):
"""
Downloads and processes CAMELS dataset of Brazil
"""
url = "https://zenodo.org/record/3964745#.YA6rUxZS-Uk"
folders = {'streamflow_m3s': '02_CAMELS_BR_streamflow_m3s',
'streamflow_mm': '03_CAMELS_BR_streamflow_mm_selected_catchments',
'simulated_streamflow_m3s': '04_CAMELS_BR_streamflow_simulated',
'precipitation_cpc': '07_CAMELS_BR_precipitation_cpc',
'precipitation_mswep': '06_CAMELS_BR_precipitation_mswep',
'precipitation_chirps': '05_CAMELS_BR_precipitation_chirps',
'evapotransp_gleam': '08_CAMELS_BR_evapotransp_gleam',
'evapotransp_mgb': '09_CAMELS_BR_evapotransp_mgb',
'potential_evapotransp_gleam': '10_CAMELS_BR_potential_evapotransp_gleam',
'temperature_min': '11_CAMELS_BR_temperature_min_cpc',
'temperature_mean': '12_CAMELS_BR_temperature_mean_cpc',
'temperature_max': '13_CAMELS_BR_temperature_max_cpc'
}
def __init__(self):
super().__init__("CAMELS-BR")
self._download()
self._maybe_to_netcdf('camels_dyn_br')
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return os.path.join(self.camels_dir, self.name)
@property
def _all_dirs(self):
"""All the folders in the dataset_directory"""
return [f for f in os.listdir(self.ds_dir) if os.path.isdir(os.path.join(self.ds_dir, f))]
@property
def static_dir(self):
path = None
for _dir in self._all_dirs:
if "attributes" in _dir:
# supposing that 'attributes' axist in only one file/folder in self.ds_dir
path = os.path.join(self.ds_dir, f'{_dir}{SEP}{_dir}')
return path
@property
def static_files(self):
all_files = None
if self.static_dir is not None:
all_files = glob.glob(f"{self.static_dir}/*.txt")
return all_files
@property
def dynamic_features(self) -> list:
return list(CAMELS_BR.folders.keys())
@property
def static_attribute_categories(self):
static_attrs = []
for f in self.static_files:
ff = str(os.path.basename(f).split('.txt')[0])
static_attrs.append('_'.join(ff.split('_')[2:]))
return static_attrs
@property
def static_features(self):
static_fpath = os.path.join(self.ds_dir, 'static_features.csv')
if not os.path.exists(static_fpath):
files = glob.glob(f"{os.path.join(self.ds_dir, '01_CAMELS_BR_attributes','01_CAMELS_BR_attributes')}/*.txt")
cols = []
for f in files:
_df = pd.read_csv(f, sep=' ', index_col='gauge_id', nrows=1)
cols += list(_df.columns)
else:
df = pd.read_csv(static_fpath, index_col='gauge_id', nrows=1)
cols = list(df.columns)
return cols
@property
def start(self):
return "19800101"
@property
def end(self):
return "20181231"
def all_stations(self, attribute) -> list:
"""Tells all station ids for which a data of a specific attribute is available."""
all_files = []
for _attr, _dir in self.folders.items():
if attribute in _attr:
all_files = os.listdir(os.path.join(self.ds_dir, f'{_dir}{SEP}{_dir}'))
stations = []
for f in all_files:
stations.append(str(f.split('_')[0]))
return stations
def stations(self, to_exclude=None)->list:
"""Returns a list of station ids which are common among all dynamic attributes.
>>>dataset = CAMELS_BR()
>>>stations = dataset.stations()
"""
if to_exclude is not None:
if not isinstance(to_exclude, list):
assert isinstance(to_exclude, str)
to_exclude = [to_exclude]
else:
to_exclude = []
stations = {}
for dyn_attr in self.dynamic_features:
if dyn_attr not in to_exclude:
stations[dyn_attr] = self.all_stations(dyn_attr)
stns = list(set.intersection(*map(set, list(stations.values()))))
return stns
def _read_dynamic_from_csv(self,
stations,
attributes:Union[str, list]='all',
st=None,
en=None,
):
"""
returns the dynamic/time series attribute/attributes for one station id.
```python
>>>dataset = CAMELS_BR()
>>>pcp = dataset.fetch_dynamic_features('10500000', 'precipitation_cpc')
...# fetch all time series data associated with a station.
>>>x = dataset.fetch_dynamic_features('51560000', dataset.dynamic_features)
```
"""
attributes = check_attributes(attributes, self.dynamic_features)
dyn = {}
for stn_id in stations:
# making one separate dataframe for one station
data = pd.DataFrame()
for attr, _dir in self.folders.items():
if attr in attributes:
path = os.path.join(self.ds_dir, f'{_dir}{SEP}{_dir}')
# supposing that the filename starts with stn_id and has .txt extension.
fname = [f for f in os.listdir(path) if f.startswith(str(stn_id)) and f.endswith('.txt')]
fname = fname[0]
if os.path.exists(os.path.join(path, fname)):
df = pd.read_csv(os.path.join(path, fname), sep=' ')
df.index = pd.to_datetime(df[['year', 'month', 'day']])
df.index.freq = pd.infer_freq(df.index)
df = df[st:en]
# only read one column which matches the attr
# todo, qual_flag maybe important
[df.pop(item) for item in df.columns if item != attr]
data = pd.concat([data, df], axis=1)
else:
raise FileNotFoundError(f"file {fname} not found at {path}")
dyn[stn_id] = data
return dyn
def fetch_static_features(self,
station,
features=None
) -> pd.DataFrame:
"""
Arguments:
stn_id int/list:
station id whose attribute to fetch
attributes str/list:
name of attribute to fetch. Default is None, which will return all the
attributes for a particular station of the specified category.
index_col_name str:
name of column containing station names
as_ts bool:
Example:
-------
```python
>>>dataset = Camels('CAMELS-BR')
>>>df = dataset.fetch_static_features(11500000, 'climate')
```
"""
if isinstance(station, int):
station = [str(station)]
elif isinstance(station, list):
station = [str(stn) for stn in station]
elif isinstance(station, str):
station = [station]
else:
raise ValueError
attributes = check_attributes(features, self.static_features)
static_fpath = os.path.join(self.ds_dir, 'static_features.csv')
if not os.path.exists(static_fpath):
files = glob.glob(f"{os.path.join(self.ds_dir, '01_CAMELS_BR_attributes','01_CAMELS_BR_attributes')}/*.txt")
static_df = pd.DataFrame()
for f in files:
_df = pd.read_csv(f, sep=' ', index_col='gauge_id')
static_df = pd.concat([static_df, _df], axis=1)
static_df.to_csv(static_fpath, index_label='gauge_id')
else:
static_df = pd.read_csv(static_fpath, index_col='gauge_id')
static_df.index = static_df.index.astype(str)
return pd.DataFrame(static_df.loc[station][attributes])
class CAMELS_GB(Camels):
"""
This dataset must be manually downloaded by the user.
The path of the downloaded folder must be provided while initiating this class.
"""
dynamic_features = ["precipitation", "pet", "temperature", "discharge_spec",
"discharge_vol", "peti",
"humidity", "shortwave_rad", "longwave_rad", "windspeed"]
def __init__(self, path=None):
super().__init__(name="CAMELS-GB")
self.ds_dir = path
self._maybe_to_netcdf('camels_gb_dyn')
@property
def ds_dir(self):
"""Directory where a particular dataset will be saved. """
return self._ds_dir
@ds_dir.setter
def ds_dir(self, x):
sanity_check('CAMELS-GB', x)
self._ds_dir = x
@property
def static_attribute_categories(self) -> list:
attributes = []
path = os.path.join(self.ds_dir, 'data')
for f in os.listdir(path):
if os.path.isfile(os.path.join(path, f)) and f.endswith('csv'):
attributes.append(f.split('_')[2])
return attributes
@property
def start(self):
return "19701001"
@property
def end(self):
return "20150930"
@property
def static_features(self):
files = glob.glob(f"{os.path.join(self.ds_dir, 'data')}/*.csv")
cols = []
for f in files:
if 'static_features.csv' not in f:
df = pd.read_csv(f, nrows=1, index_col='gauge_id')
cols += (list(df.columns))
return cols
def stations(self, to_exclude=None):
# CAMELS_GB_hydromet_timeseries_StationID_number
path = os.path.join(self.ds_dir, f'data{SEP}timeseries')
gauge_ids = []
for f in os.listdir(path):
gauge_ids.append(f.split('_')[4])
return gauge_ids
def _read_dynamic_from_csv(self,
stations,
attributes:Union[str, list]='all',
st=None,
en=None,
):
"""Fetches dynamic attribute/attributes of one station."""
dyn = {}
for stn_id in stations:
# making one separate dataframe for one station
path = os.path.join(self.ds_dir, f"data{SEP}timeseries")
fname = None
for f in os.listdir(path):
if stn_id in f:
fname = f
break
df = pd.read_csv(os.path.join(path, fname), index_col= 'date')
df.index = pd.to_datetime(df.index)
df.index.freq = pd.infer_freq(df.index)
dyn[stn_id] = df
return dyn
def fetch_static_features(self,
station:str,
features='all'
) -> pd.DataFrame:
"""Fetches static attributes of one station for one or more category as dataframe."""
attributes = check_attributes(features, self.static_features)
static_fname = 'static_features.csv'
static_fpath = os.path.join(self.ds_dir, 'data', static_fname)
if os.path.exists(static_fpath):
static_df = pd.read_csv(static_fpath, index_col='gauge_id')
else:
files = glob.glob(f"{os.path.join(self.ds_dir, 'data')}/*.csv")
static_df = pd.DataFrame()
for f in files:
_df = pd.read_csv(f, index_col='gauge_id')
static_df = pd.concat([static_df, _df], axis=1)
static_df.to_csv(static_fpath)
if isinstance(station, str):
station =[station]
elif isinstance(station, int):
station = [str(station)]
elif isinstance(station, list):
station = [str(stn) for stn in station]
else:
raise ValueError
static_df.index = static_df.index.astype(str)
return static_df.loc[station][attributes]
class CAMELS_AUS(Camels):
"""
Inherits from Camels class. Fetches CAMELS-AUS dataset.
"""
url = 'https://doi.pangaea.de/10.1594/PANGAEA.921850'
urls = {
"01_id_name_metadata.zip": "https://download.pangaea.de/dataset/921850/files/",
"02_location_boundary_area.zip": "https://download.pangaea.de/dataset/921850/files/",
"03_streamflow.zip": "https://download.pangaea.de/dataset/921850/files/",
"04_attributes.zip": "https://download.pangaea.de/dataset/921850/files/",
"05_hydrometeorology.zip": "https://download.pangaea.de/dataset/921850/files/",
"CAMELS_AUS_Attributes-Indices_MasterTable.csv": "https://download.pangaea.de/dataset/921850/files/",
"Units_01_TimeseriesData.pdf": "https://download.pangaea.de/dataset/921850/files/",
"Units_02_AttributeMasterTable.pdf": "https://download.pangaea.de/dataset/921850/files/",
}
folders = {
'streamflow_MLd': f'03_streamflow{SEP}03_streamflow{SEP}streamflow_MLd',
'streamflow_MLd_inclInfilled': f'03_streamflow{SEP}03_streamflow{SEP}streamflow_MLd_inclInfilled',
'streamflow_mmd': f'03_streamflow{SEP}03_streamflow{SEP}streamflow_mmd',
'et_morton_actual_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_morton_actual_SILO',
'et_morton_point_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_morton_point_SILO',
'et_morton_wet_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_morton_wet_SILO',
'et_short_crop_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_short_crop_SILO',
'et_tall_crop_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}et_tall_crop_SILO',
'evap_morton_lake_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}evap_morton_lake_SILO',
'evap_pan_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}evap_pan_SILO',
'evap_syn_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}02_EvaporativeDemand_timeseries{SEP}evap_syn_SILO',
'precipitation_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}01_precipitation_timeseries{SEP}precipitation_AWAP',
'precipitation_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}01_precipitation_timeseries{SEP}precipitation_SILO',
'precipitation_var_SWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}01_precipitation_timeseries{SEP}precipitation_var_AWAP',
'solarrad_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}AWAP{SEP}solarrad_AWAP',
'tmax_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}AWAP{SEP}tmax_AWAP',
'tmin_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}AWAP{SEP}tmin_AWAP',
'vprp_AWAP': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}AWAP{SEP}vprp_AWAP',
'mslp_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}mslp_SILO',
'radiation_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}radiation_SILO',
'rh_tmax_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}rh_tmax_SILO',
'rh_tmin_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}rh_tmin_SILO',
'tmax_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}tmax_SILO',
'tmin_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}tmin_SILO',
'vp_deficit_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}vp_deficit_SILO',
'vp_SILO': f'05_hydrometeorology{SEP}05_hydrometeorology{SEP}03_Other{SEP}SILO{SEP}vp_SILO',
}
def __init__(self, path:str=None):
"""
Arguments:
path: path where the CAMELS-AUS dataset has been downloaded. This path
must contain five zip files and one xlsx file. If None, then the
data will downloaded.
"""
if path is not None:
assert isinstance(path, str), f'path must be string like but it is "{path}" of type {path.__class__.__name__}'
if not os.path.exists(path) or len(os.listdir(path)) < 2:
raise FileNotFoundError(f"The path {path} does not exist")
self.ds_dir = path
super().__init__()
if not os.path.exists(self.ds_dir):
os.makedirs(self.ds_dir)
for _file, url in self.urls.items():
fpath = os.path.join(self.ds_dir, _file)
if not os.path.exists(fpath):
download(url + _file, fpath)
self._unzip()
self._maybe_to_netcdf('camels_aus_dyn')
@property
def start(self):
return "19570101"
@property
def end(self):
return "20181231"
@property
def location(self):
return "Australia"
def stations(self, as_list=True)->list:
fname = os.path.join(self.ds_dir, f"01_id_name_metadata{SEP}01_id_name_metadata{SEP}id_name_metadata.csv")
df = pd.read_csv(fname)
if as_list:
return df['station_id'].to_list()
else:
return df
@property
def static_attribute_categories(self):
attributes = []
path = os.path.join(self.ds_dir, f'04_attributes{SEP}04_attributes')
for f in os.listdir(path):
if os.path.isfile(os.path.join(path, f)) and f.endswith('csv'):
f = str(f.split('.csv')[0])
attributes.append(''.join(f.split('_')[2:]))
return attributes
@property
def static_features(self) -> list:
static_fpath = os.path.join(self.ds_dir, 'static_features.csv')
if not os.path.exists(static_fpath):
files = glob.glob(f"{os.path.join(self.ds_dir, '04_attributes', '04_attributes')}/*.csv")
cols = []
for f in files:
_df = pd.read_csv(f, index_col='station_id', nrows=1)
cols += list(_df.columns)
else:
df = pd.read_csv(static_fpath, index_col='station_id', nrows=1)
cols = list(df.columns)
return cols
@property
def dynamic_features(self) -> list:
return list(self.folders.keys())
def _read_static(self, stations, attributes,
st=None, en=None):
attributes = check_attributes(attributes, self.static_features)
static_fname = 'static_features.csv'
static_fpath = os.path.join(self.ds_dir, static_fname)
if os.path.exists(static_fpath):
static_df = pd.read_csv(static_fpath, index_col='station_id')
else:
files = glob.glob(f"{os.path.join(self.ds_dir, '04_attributes', '04_attributes')}/*.csv")
static_df = pd.DataFrame()
for f in files:
_df = pd.read_csv(f, index_col='station_id')
static_df = pd.concat([static_df, _df], axis=1)
static_df.to_csv(static_fpath)
static_df.index = static_df.index.astype(str)
df = static_df.loc[stations][attributes]
if isinstance(df, pd.Series):
df = pd.DataFrame(df).transpose()
return self.to_ts(df, st, en)
def _read_dynamic_from_csv(self, stations, dynamic_features, **kwargs):
dyn_attrs = {}
dyn = {}
for _attr in dynamic_features:
_path = os.path.join(self.ds_dir, f'{self.folders[_attr]}.csv')
_df = pd.read_csv(_path, na_values=['-99.99'])
_df.index = pd.to_datetime(_df[['year', 'month', 'day']])
[_df.pop(col) for col in ['year', 'month', 'day']]
dyn_attrs[_attr] = _df
# making one separate dataframe for one station
for stn in stations:
stn_df = pd.DataFrame()
for attr, attr_df in dyn_attrs.items():
if attr in dynamic_features:
stn_df[attr] = attr_df[stn]
dyn[stn] = stn_df
return dyn
def fetch_static_features(self,
station,
features='all',
**kwargs) -> pd.DataFrame:
"""Fetches static attribuets of one station as dataframe."""
return self._read_static(station, features)
def plot(self, what, stations=None, **kwargs):
assert what in ['outlets', 'boundaries']
f1 = os.path.join(self.ds_dir, f'02_location_boundary_area{SEP}02_location_boundary_area{SEP}shp{SEP}CAMELS_AUS_BasinOutlets_adopted.shp')
f2 = os.path.join(self.ds_dir, f'02_location_boundary_area{SEP}02_location_boundary_area{SEP}shp{SEP}bonus data{SEP}Australia_boundaries.shp')
if plot_shapefile is not None:
return plot_shapefile(f1, bbox_shp=f2, recs=stations, rec_idx=0, **kwargs)
else:
raise ModuleNotFoundError("Shapely must be installed in order to plot the datasets.")
class CAMELS_CL(Camels):
"""
Downloads and processes CAMELS dataset of Chile
https://doi.org/10.5194/hess-22-5817-2018
"""
urls = {
"1_CAMELScl_attributes.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"2_CAMELScl_streamflow_m3s.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"3_CAMELScl_streamflow_mm.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"4_CAMELScl_precip_cr2met.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"5_CAMELScl_precip_chirps.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"6_CAMELScl_precip_mswep.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"7_CAMELScl_precip_tmpa.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"8_CAMELScl_tmin_cr2met.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"9_CAMELScl_tmax_cr2met.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"10_CAMELScl_tmean_cr2met.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"11_CAMELScl_pet_8d_modis.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"12_CAMELScl_pet_hargreaves.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"13_CAMELScl_swe.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"14_CAMELScl_catch_hierarchy.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
"CAMELScl_catchment_boundaries.zip": "https://store.pangaea.de/Publications/Alvarez-Garreton-etal_2018/",
}
dynamic_features = ['streamflow_m3s', 'streamflow_mm',
'precip_cr2met', 'precip_chirps', 'precip_mswep', 'precip_tmpa',
'tmin_cr2met', 'tmax_cr2met', 'tmean_cr2met',
'pet_8d_modis', 'pet_hargreaves',
'swe'
]
"""
Arguments:
path: path where the CAMELS-AUS dataset has been downloaded. This path must
contain five zip files and one xlsx file.
"""
def __init__(self,
path: str = None
):
self.ds_dir = path
super().__init__()
if not os.path.exists(self.ds_dir):
os.makedirs(self.ds_dir)
for _file, url in self.urls.items():
fpath = os.path.join(self.ds_dir, _file)
if not os.path.exists(fpath):
download(url+_file, fpath)
self._unzip()
self.dyn_fname = os.path.join(self.ds_dir, 'camels_cl_dyn.nc')
self._maybe_to_netcdf('camels_cl_dyn')
@property
def _all_dirs(self):
"""All the folders in the dataset_directory"""
return [f for f in os.listdir(self.ds_dir) if os.path.isdir(os.path.join(self.ds_dir, f))]
@property
def start(self):
return "19130215"
@property
def end(self):
return "20180309"
@property
def static_features(self) -> list:
path = os.path.join(self.ds_dir, f"1_CAMELScl_attributes{SEP}1_CAMELScl_attributes.txt")
df = pd.read_csv(path, sep='\t', index_col='gauge_id')
return df.index.to_list()
def stations(self) -> list:
"""Tells all station ids for which a data of a specific attribute is available."""
stn_fname = os.path.join(self.ds_dir, 'stations.json')
if not os.path.exists(stn_fname):
_stations = {}
for dyn_attr in self.dynamic_features:
for _dir in self._all_dirs:
if dyn_attr in _dir:
fname = os.path.join(self.ds_dir, f"{_dir}{SEP}{_dir}.txt")
df = pd.read_csv(fname, sep='\t', nrows=2, index_col='gauge_id')
_stations[dyn_attr] = list(df.columns)
stns = list(set.intersection(*map(set, list(_stations.values()))))
with open(stn_fname, 'w') as fp:
json.dump(stns, fp)
else:
with open(stn_fname, 'r') as fp:
stns = json.load(fp)
return stns
def _read_dynamic_from_csv(self, stations, dynamic_features, st=None, en=None):
dyn = {}
st, en = self._check_length(st, en)
assert all(stn in self.stations() for stn in stations)
dynamic_features = check_attributes(dynamic_features, self.dynamic_features)
# reading all dynnamic attributes
dyn_attrs = {}
for attr in dynamic_features:
fname = [f for f in self._all_dirs if '_' + attr in f][0]
fname = os.path.join(self.ds_dir, f'{fname}{SEP}{fname}.txt')
_df = pd.read_csv(fname, sep='\t', index_col=['gauge_id'], na_values=" ")
_df.index = pd.to_datetime(_df.index)
dyn_attrs[attr] = _df[st:en]
# making one separate dataframe for one station
for stn in stations:
stn_df = pd.DataFrame()
for attr, attr_df in dyn_attrs.items():
if attr in dynamic_features:
stn_df[attr] = attr_df[stn]
dyn[stn] = stn_df[st:en]
return dyn
def _read_static(self, stations:list, attributes:list)->pd.DataFrame:
# overwritten for speed
stns_df = pd.DataFrame(columns=attributes)
path = os.path.join(self.ds_dir, f"1_CAMELScl_attributes{SEP}1_CAMELScl_attributes.txt")
_df = pd.read_csv(path, sep='\t', index_col='gauge_id')
for stn in stations:
df = pd.DataFrame()
if stn in _df:
df[stn] = _df[stn]
elif ' ' + stn in _df:
df[stn] = _df[' ' + stn]
stns_df = stns_df.append(df.transpose()[attributes])
return stns_df
def fetch_static_features(self,
station,
features=None,
st=None,
en=None
):
attributes = check_attributes(features, self.static_features)
if isinstance(station, str):
station = [station]
return self._read_static(station, attributes)
class HYPE(Camels):
"""
Downloads and preprocesses HYPE dataset from https://zenodo.org/record/4029572.
This is a rainfall-runoff dataset of 564 stations from 1985 to 2019 at daily
monthly and yearly time steps.
paper : https://doi.org/10.2166/nh.2010.007
"""
url = [
"https://zenodo.org/record/581435",
"https://zenodo.org/record/4029572"
]
dynamic_features = [
'AET_mm',
'Baseflow_mm',
'Infiltration_mm',
'SM_mm',
'Streamflow_mm',
'Runoff_mm',
'Qsim_m3-s',
'Prec_mm',
'PET_mm'
]
def __init__(self, time_step: str = 'daily', **kwargs):
assert time_step in ['daily', 'month', 'year']
self.time_step = time_step
self.ds_dir = None
super().__init__(**kwargs)
self._download()
fpath = os.path.join(self.ds_dir, 'hype_year_dyn.nc')
if not os.path.exists(fpath):
self.time_step = 'daily'
self._maybe_to_netcdf('hype_daily_dyn')
self.time_step = 'month'
self._maybe_to_netcdf('hype_month_dyn')
self.time_step = 'year'
self._maybe_to_netcdf('hype_year_dyn')
self.time_step = time_step
self.dyn_fname = os.path.join(self.ds_dir, f'hype_{time_step}_dyn.nc')
def stations(self)->list:
_stations = np.arange(1, 565).astype(str)
return list(_stations)
@property
def static_features(self):
return []
def _read_dynamic_from_csv(self,
stations:list,
attributes:Union[str, list]='all',
st=None,
en=None,
):
dynamic_features = check_attributes(attributes, self.dynamic_features)
_dynamic_attributes = []
for dyn_attr in dynamic_features:
pref, suff = dyn_attr.split('_')[0], dyn_attr.split('_')[-1]
_dyn_attr = f"{pref}_{self.time_step}_{suff}"
_dynamic_attributes.append(_dyn_attr)
df_attrs = {}
for dyn_attr in _dynamic_attributes:
fname = f"{dyn_attr}.csv"
fpath = os.path.join(self.ds_dir, fname)
index_col_name = 'DATE'
if fname in ['SM_month_mm.csv', 'SM_year_mm.csv']:
index_col_name = 'Date'
_df = pd.read_csv(fpath, index_col=index_col_name)
_df.index = pd.to_datetime(_df.index)
df_attrs[dyn_attr] = _df.loc[self.start:self.end] # todo, some stations have wider range than self.st/self.en
stns_dfs = {}
for st in stations:
stn_dfs = []
cols = []
for dyn_attr, dyn_df in df_attrs.items():
stn_dfs.append(dyn_df[st])
col_name = f"{dyn_attr.split('_')[0]}_{dyn_attr.split('_')[-1]}" # get original name without time_step
cols.append(col_name)
stn_df = pd.concat(stn_dfs, axis=1)
stn_df.columns = cols
stns_dfs[st] = stn_df
return stns_dfs
def fetch_static_features(self, station, features):
raise ValueError(f'No static feature for {self.name}')
@property
def start(self):
return '19850101'
@property
def end(self):
return '20191231'
| 25,929 | 0 | 2,006 |
788a6282addf87f71248819c2eb6fdbf03f86fd6 | 981 | py | Python | Algorithms/1302_Deepest_Leaves_Sum/Python/Deepest_Leaves_Sum_Solution_1.py | lht19900714/Leetcode_Solutions | dac7a038329a5c1f8a78e86cc6f49116b963f1fb | [
"MIT"
] | null | null | null | Algorithms/1302_Deepest_Leaves_Sum/Python/Deepest_Leaves_Sum_Solution_1.py | lht19900714/Leetcode_Solutions | dac7a038329a5c1f8a78e86cc6f49116b963f1fb | [
"MIT"
] | null | null | null | Algorithms/1302_Deepest_Leaves_Sum/Python/Deepest_Leaves_Sum_Solution_1.py | lht19900714/Leetcode_Solutions | dac7a038329a5c1f8a78e86cc6f49116b963f1fb | [
"MIT"
] | null | null | null |
# Space: O(n)
# Time: O(n)
# BFS approach
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
| 25.815789 | 73 | 0.56473 |
# Space: O(n)
# Time: O(n)
# BFS approach
# Definition for a binary tree node.
# class TreeNode:
# def __init__(self, val=0, left=None, right=None):
# self.val = val
# self.left = left
# self.right = right
class Solution:
def deepestLeavesSum(self, root):
if root is None: return 0
if root.left is None and root.right is None: return root.val
queue = [[root, 0]]
res, deepest_level = 0, 0
while queue:
cur_root, cur_level = queue.pop(0)
if cur_root.left is None and cur_root.right is None:
if cur_level == deepest_level:
res += cur_root.val
elif cur_level> deepest_level:
res = cur_root.val
deepest_level = cur_level
if cur_root.left: queue.append([cur_root.left,cur_level+1])
if cur_root.right: queue.append([cur_root.right,cur_level+1])
return res
| 696 | -6 | 49 |
f31b4a03f3a15378101968d030a27d2340c106bf | 179 | py | Python | configs/TCCC_roi/faster_rcnn_r50_fpn_1x_voc_gc_RoiCC.py | LeoXuZH/CervicalCancerDetection | 0ce682f01c9a428eb73170151c2d8d9efc6ce44f | [
"Apache-2.0"
] | null | null | null | configs/TCCC_roi/faster_rcnn_r50_fpn_1x_voc_gc_RoiCC.py | LeoXuZH/CervicalCancerDetection | 0ce682f01c9a428eb73170151c2d8d9efc6ce44f | [
"Apache-2.0"
] | null | null | null | configs/TCCC_roi/faster_rcnn_r50_fpn_1x_voc_gc_RoiCC.py | LeoXuZH/CervicalCancerDetection | 0ce682f01c9a428eb73170151c2d8d9efc6ce44f | [
"Apache-2.0"
] | null | null | null | _base_ = [
'../_base_/models/faster_rcnn_r50_fpn_gc.py',
'../_base_/datasets/voc0712_RoiCC.py',
'../_base_/schedules/schedule_1x.py', '../_base_/default_runtime.py'
]
| 29.833333 | 72 | 0.681564 | _base_ = [
'../_base_/models/faster_rcnn_r50_fpn_gc.py',
'../_base_/datasets/voc0712_RoiCC.py',
'../_base_/schedules/schedule_1x.py', '../_base_/default_runtime.py'
]
| 0 | 0 | 0 |
00761be2a204eeefb6ca144d14a0ec9670218b4d | 222 | py | Python | pincer/middleware/voice_state_update.py | ashu96902/Pincer | 102ac4ff998cbb3c57a86b252439f69895650cf3 | [
"MIT"
] | null | null | null | pincer/middleware/voice_state_update.py | ashu96902/Pincer | 102ac4ff998cbb3c57a86b252439f69895650cf3 | [
"MIT"
] | null | null | null | pincer/middleware/voice_state_update.py | ashu96902/Pincer | 102ac4ff998cbb3c57a86b252439f69895650cf3 | [
"MIT"
] | null | null | null | # Copyright Pincer 2021-Present
# Full MIT License can be found in `LICENSE` at the project root.
"""
sent when a user's voice state changes in a subscribed voice channel
(mute, volume, etc.)
"""
# TODO: Implement event
| 22.2 | 68 | 0.72973 | # Copyright Pincer 2021-Present
# Full MIT License can be found in `LICENSE` at the project root.
"""
sent when a user's voice state changes in a subscribed voice channel
(mute, volume, etc.)
"""
# TODO: Implement event
| 0 | 0 | 0 |
2e7ed449e36683dcf73ec74879466f4e527de66a | 1,902 | py | Python | hdash/validator/categories.py | inodb/hdash | 829ffbe856af17876343bc81f577fa7ee2118784 | [
"MIT"
] | null | null | null | hdash/validator/categories.py | inodb/hdash | 829ffbe856af17876343bc81f577fa7ee2118784 | [
"MIT"
] | 2 | 2021-05-24T17:15:45.000Z | 2022-03-09T21:44:32.000Z | hdash/validator/categories.py | inodb/hdash | 829ffbe856af17876343bc81f577fa7ee2118784 | [
"MIT"
] | 1 | 2021-11-16T23:15:47.000Z | 2021-11-16T23:15:47.000Z | """Meta Data Categories."""
class Categories:
"""Meta Data Categories."""
BIOSPECIMEN = "Biospecimen"
DEMOGRAPHICS = "Demographics"
SC_RNA_SEQ_LEVEL_1 = "ScRNA-seqLevel1"
SC_RNA_SEQ_LEVEL_2 = "ScRNA-seqLevel2"
SC_RNA_SEQ_LEVEL_3 = "ScRNA-seqLevel3"
SC_RNA_SEQ_LEVEL_4 = "ScRNA-seqLevel4"
BULK_WES_LEVEL_1 = "BulkWESLevel1"
BULK_RNA_SEQ_LEVEL_1 = "BulkRNA-seqLevel1"
IMAGING_LEVEL_2 = "ImagingLevel2"
def __init__(self):
"""Construct a new Categories Object."""
self.category_list = []
self.category_list.append(Categories.BIOSPECIMEN)
self.category_list.append(Categories.DEMOGRAPHICS)
self.category_list.append(Categories.SC_RNA_SEQ_LEVEL_1)
self.category_list.append(Categories.SC_RNA_SEQ_LEVEL_2)
self.category_list.append(Categories.SC_RNA_SEQ_LEVEL_3)
self.category_list.append(Categories.SC_RNA_SEQ_LEVEL_4)
self.category_list.append(Categories.BULK_WES_LEVEL_1)
self.category_list.append(Categories.BULK_RNA_SEQ_LEVEL_1)
self.category_list.append(Categories.IMAGING_LEVEL_2)
self.abbrev_category_map = {}
self.abbrev_category_map[Categories.BIOSPECIMEN] = "B"
self.abbrev_category_map[Categories.DEMOGRAPHICS] = "D"
self.abbrev_category_map[Categories.SC_RNA_SEQ_LEVEL_1] = "SC1"
self.abbrev_category_map[Categories.SC_RNA_SEQ_LEVEL_2] = "SC2"
self.abbrev_category_map[Categories.SC_RNA_SEQ_LEVEL_3] = "SC3"
self.abbrev_category_map[Categories.SC_RNA_SEQ_LEVEL_4] = "SC4"
self.abbrev_category_map[Categories.BULK_WES_LEVEL_1] = "WES1"
self.abbrev_category_map[Categories.BULK_RNA_SEQ_LEVEL_1] = "RNA1"
self.abbrev_category_map[Categories.IMAGING_LEVEL_2] = "I2"
def get_primary_category_list(self):
"""Get Primary Category List."""
return self.category_list
| 44.232558 | 74 | 0.730284 | """Meta Data Categories."""
class Categories:
"""Meta Data Categories."""
BIOSPECIMEN = "Biospecimen"
DEMOGRAPHICS = "Demographics"
SC_RNA_SEQ_LEVEL_1 = "ScRNA-seqLevel1"
SC_RNA_SEQ_LEVEL_2 = "ScRNA-seqLevel2"
SC_RNA_SEQ_LEVEL_3 = "ScRNA-seqLevel3"
SC_RNA_SEQ_LEVEL_4 = "ScRNA-seqLevel4"
BULK_WES_LEVEL_1 = "BulkWESLevel1"
BULK_RNA_SEQ_LEVEL_1 = "BulkRNA-seqLevel1"
IMAGING_LEVEL_2 = "ImagingLevel2"
def __init__(self):
"""Construct a new Categories Object."""
self.category_list = []
self.category_list.append(Categories.BIOSPECIMEN)
self.category_list.append(Categories.DEMOGRAPHICS)
self.category_list.append(Categories.SC_RNA_SEQ_LEVEL_1)
self.category_list.append(Categories.SC_RNA_SEQ_LEVEL_2)
self.category_list.append(Categories.SC_RNA_SEQ_LEVEL_3)
self.category_list.append(Categories.SC_RNA_SEQ_LEVEL_4)
self.category_list.append(Categories.BULK_WES_LEVEL_1)
self.category_list.append(Categories.BULK_RNA_SEQ_LEVEL_1)
self.category_list.append(Categories.IMAGING_LEVEL_2)
self.abbrev_category_map = {}
self.abbrev_category_map[Categories.BIOSPECIMEN] = "B"
self.abbrev_category_map[Categories.DEMOGRAPHICS] = "D"
self.abbrev_category_map[Categories.SC_RNA_SEQ_LEVEL_1] = "SC1"
self.abbrev_category_map[Categories.SC_RNA_SEQ_LEVEL_2] = "SC2"
self.abbrev_category_map[Categories.SC_RNA_SEQ_LEVEL_3] = "SC3"
self.abbrev_category_map[Categories.SC_RNA_SEQ_LEVEL_4] = "SC4"
self.abbrev_category_map[Categories.BULK_WES_LEVEL_1] = "WES1"
self.abbrev_category_map[Categories.BULK_RNA_SEQ_LEVEL_1] = "RNA1"
self.abbrev_category_map[Categories.IMAGING_LEVEL_2] = "I2"
def get_primary_category_list(self):
"""Get Primary Category List."""
return self.category_list
| 0 | 0 | 0 |
200cb2c5a57c4fc4b5cd824529333ee8154744d2 | 7,526 | py | Python | oidc_provider/lib/endpoints/token.py | vvandriichuk/django-oidc-provider | 557da7747a75d9874520bd7016292bb2a1b9530e | [
"MIT"
] | null | null | null | oidc_provider/lib/endpoints/token.py | vvandriichuk/django-oidc-provider | 557da7747a75d9874520bd7016292bb2a1b9530e | [
"MIT"
] | 1 | 2020-06-05T16:38:28.000Z | 2020-06-05T16:38:28.000Z | oidc_provider/lib/endpoints/token.py | vvandriichuk/django-oidc-provider | 557da7747a75d9874520bd7016292bb2a1b9530e | [
"MIT"
] | null | null | null | from base64 import b64decode, urlsafe_b64encode
import hashlib
import logging
import re
try:
from urllib.parse import unquote
except ImportError:
from urllib import unquote
from django.http import JsonResponse
from oidc_provider.lib.errors import *
from oidc_provider.lib.utils.params import *
from oidc_provider.lib.utils.token import *
from oidc_provider.models import *
from oidc_provider import settings
logger = logging.getLogger(__name__)
| 35.838095 | 99 | 0.591682 | from base64 import b64decode, urlsafe_b64encode
import hashlib
import logging
import re
try:
from urllib.parse import unquote
except ImportError:
from urllib import unquote
from django.http import JsonResponse
from oidc_provider.lib.errors import *
from oidc_provider.lib.utils.params import *
from oidc_provider.lib.utils.token import *
from oidc_provider.models import *
from oidc_provider import settings
logger = logging.getLogger(__name__)
class TokenEndpoint(object):
def __init__(self, request):
self.request = request
self.params = Params()
self._extract_params()
def _extract_params(self):
client_id, client_secret = self._extract_client_auth()
self.params.client_id = client_id
self.params.client_secret = client_secret
self.params.redirect_uri = unquote(self.request.POST.get('redirect_uri', ''))
self.params.grant_type = self.request.POST.get('grant_type', '')
self.params.code = self.request.POST.get('code', '')
self.params.state = self.request.POST.get('state', '')
self.params.scope = self.request.POST.get('scope', '')
self.params.refresh_token = self.request.POST.get('refresh_token', '')
# PKCE parameters.
self.params.code_verifier = self.request.POST.get('code_verifier')
def _extract_client_auth(self):
"""
Get client credentials using HTTP Basic Authentication method.
Or try getting parameters via POST.
See: http://tools.ietf.org/html/rfc6750#section-2.1
Return a string.
"""
auth_header = self.request.META.get('HTTP_AUTHORIZATION', '')
if re.compile('^Basic\s{1}.+$').match(auth_header):
b64_user_pass = auth_header.split()[1]
try:
user_pass = b64decode(b64_user_pass).decode('utf-8').split(':')
client_id, client_secret = tuple(user_pass)
except:
client_id = client_secret = ''
else:
client_id = self.request.POST.get('client_id', '')
client_secret = self.request.POST.get('client_secret', '')
return (client_id, client_secret)
def validate_params(self):
try:
self.client = Client.objects.get(client_id=self.params.client_id)
except Client.DoesNotExist:
logger.debug('[Token] Client does not exist: %s', self.params.client_id)
raise TokenError('invalid_client')
if self.client.client_type == 'confidential':
if not (self.client.client_secret == self.params.client_secret):
logger.debug('[Token] Invalid client secret: client %s do not have secret %s',
self.client.client_id, self.client.client_secret)
raise TokenError('invalid_client')
if self.params.grant_type == 'authorization_code':
if not (self.params.redirect_uri in self.client.redirect_uris):
logger.debug('[Token] Invalid redirect uri: %s', self.params.redirect_uri)
raise TokenError('invalid_client')
try:
self.code = Code.objects.get(code=self.params.code)
except Code.DoesNotExist:
logger.debug('[Token] Code does not exist: %s', self.params.code)
raise TokenError('invalid_grant')
if not (self.code.client == self.client) \
or self.code.has_expired():
logger.debug('[Token] Invalid code: invalid client or code has expired',
self.params.redirect_uri)
raise TokenError('invalid_grant')
# Validate PKCE parameters.
if self.params.code_verifier:
if self.code.code_challenge_method == 'S256':
new_code_challenge = urlsafe_b64encode(
hashlib.sha256(self.params.code_verifier.encode('ascii')).digest()
).decode('utf-8').replace('=', '')
else:
new_code_challenge = self.params.code_verifier
# TODO: We should explain the error.
if not (new_code_challenge == self.code.code_challenge):
raise TokenError('invalid_grant')
elif self.params.grant_type == 'refresh_token':
if not self.params.refresh_token:
logger.debug('[Token] Missing refresh token')
raise TokenError('invalid_grant')
try:
self.token = Token.objects.get(refresh_token=self.params.refresh_token,
client=self.client)
except Token.DoesNotExist:
logger.debug('[Token] Refresh token does not exist: %s', self.params.refresh_token)
raise TokenError('invalid_grant')
else:
logger.debug('[Token] Invalid grant type: %s', self.params.grant_type)
raise TokenError('unsupported_grant_type')
def create_response_dic(self):
if self.params.grant_type == 'authorization_code':
return self.create_code_response_dic()
elif self.params.grant_type == 'refresh_token':
return self.create_refresh_response_dic()
def create_code_response_dic(self):
if self.code.is_authentication:
id_token_dic = create_id_token(
user=self.code.user,
aud=self.client.client_id,
nonce=self.code.nonce,
request=self.request,
)
else:
id_token_dic = {}
token = create_token(
user=self.code.user,
client=self.code.client,
id_token_dic=id_token_dic,
scope=self.code.scope)
# Store the token.
token.save()
# We don't need to store the code anymore.
self.code.delete()
dic = {
'access_token': token.access_token,
'refresh_token': token.refresh_token,
'token_type': 'bearer',
'expires_in': settings.get('OIDC_TOKEN_EXPIRE'),
'id_token': encode_id_token(id_token_dic, token.client),
}
return dic
def create_refresh_response_dic(self):
# If the Token has an id_token it's an Authentication request.
if self.token.id_token:
id_token_dic = create_id_token(
user=self.token.user,
aud=self.client.client_id,
nonce=None,
request=self.request,
)
else:
id_token_dic = {}
token = create_token(
user=self.token.user,
client=self.token.client,
id_token_dic=id_token_dic,
scope=self.token.scope)
# Store the token.
token.save()
# Forget the old token.
self.token.delete()
dic = {
'access_token': token.access_token,
'refresh_token': token.refresh_token,
'token_type': 'bearer',
'expires_in': settings.get('OIDC_TOKEN_EXPIRE'),
'id_token': encode_id_token(id_token_dic, self.token.client),
}
return dic
@classmethod
def response(cls, dic, status=200):
"""
Create and return a response object.
"""
response = JsonResponse(dic, status=status)
response['Cache-Control'] = 'no-store'
response['Pragma'] = 'no-cache'
return response
| 5,726 | 1,319 | 23 |
530b502e6aa2c70390c46473f414abb8baf75464 | 1,956 | py | Python | currency_crawler.py | ingyunson/automation | 047eb286cc740127d4136008fbd398916d200365 | [
"MIT"
] | null | null | null | currency_crawler.py | ingyunson/automation | 047eb286cc740127d4136008fbd398916d200365 | [
"MIT"
] | 6 | 2018-09-05T10:19:47.000Z | 2018-10-30T14:09:55.000Z | currency_crawler.py | ingyunson/automation | 047eb286cc740127d4136008fbd398916d200365 | [
"MIT"
] | null | null | null | import requests
import datetime
import json
import telegram
#공공 오픈 API를 이용하여 외환 정보 받아오기
if __name__ == '__main__':
main() | 36.222222 | 127 | 0.615031 | import requests
import datetime
import json
import telegram
#공공 오픈 API를 이용하여 외환 정보 받아오기
def api_set(day):
date = day.strftime('%Y-%m-%d')
api_key = <API KEY>
api = 'https://www.koreaexim.go.kr/site/program/financial/exchangeJSON?authkey={key}&searchdate={date}&data={data}'.format(
key=api_key, date=date, data='AP01')
req = requests.get(api)
get_data = req.text
currency_json = json.loads(get_data)
return currency_json
def main():
today = datetime.date.today() #오늘 날짜를 datetime형으로 가져오기
yesterday = today - datetime.timedelta(1) #오늘 정보가 없을 경우 어제 정보를 가져오기 위해 어제 날짜를 datetime형으로 가져오기
result = ['***오늘 {day}의 환율입니다.***\n주말 혹은 당일 정보 업데이트가 되지 않으면 전일(주말의 경우 금요일)의 정보가 표시됩니다.\n'.format(day=today)] #최종 표시될 메시지
cur_list = {'AED': 0, 'AUD': 1, 'BHD': 2, 'CAD': 3, 'CHF': 4, 'CNH': 5, 'DKK': 6, 'EUR': 7, 'GBP': 8, 'HKD': 9,
'IDR': 10, 'JPY': 11, 'KRW': 12, 'KWD': 13, 'MYR': 14, 'NOK': 15, 'NZD': 16, 'SAR': 17, 'SEK': 18,
'SGD': 19, 'THB': 20, 'USD': 21} #제공하는 외환 리스트
currency = ('USD', 'CNH', 'JPY', 'EUR') #읽어들일 외환 리스트
if not api_set(today): #오늘 날짜를 입력했을 때 API가 빈 정보를 반환할 경우 어제 날짜를 입력하여 정보 가져옴
raw = api_set(yesterday)
else: # API 반환 정보가 비어있지 않을 경우 당일 날짜를 입력하여 정보 가져옴
raw = api_set(today)
for curr in currency: #currency 변수로 설정해 둔 외환 리스트 정보 가공
num = cur_list[curr]
data = (raw[num]['cur_nm'], raw[num]['cur_unit'], raw[num]['deal_bas_r'])
draft = '현재 {cur_name}({cur_unit})의 기준환율은 {currency}원입니다.'.format(cur_name=data[0], cur_unit=data[1], currency=data[2])
result.append(draft)
text = "\n".join(result) #챗봇으로 보내기 좋게 메시지 가공
my_token = <TELEGRAM TOKEN> # botfather로 받은 토큰
chatbot = telegram.Bot(token=my_token)
chat_id = <CHATID OR CHANNEL ADDRESS> # 채널의 경우 @채널주소
chatbot.sendMessage(chat_id=chat_id, text=text) #최종 결과물인 text 변수를 챗봇으로 발송
if __name__ == '__main__':
main() | 2,276 | 0 | 45 |
15ce68266b98edbf7b79be1b0e0552cbef73bde7 | 58 | py | Python | examples/conditionally_existing_if_else.py | doboy/Underscore | d98273db3144cda79191d2c90f45d81b6d700b1f | [
"MIT"
] | 7 | 2016-09-23T00:44:05.000Z | 2021-10-04T21:19:12.000Z | examples/conditionally_existing_if_else.py | jameswu1991/Underscore | d98273db3144cda79191d2c90f45d81b6d700b1f | [
"MIT"
] | 1 | 2016-09-23T00:45:05.000Z | 2019-02-16T19:05:37.000Z | examples/conditionally_existing_if_else.py | jameswu1991/Underscore | d98273db3144cda79191d2c90f45d81b6d700b1f | [
"MIT"
] | 3 | 2016-09-23T01:13:15.000Z | 2018-07-20T21:22:17.000Z | if False:
x = 3
elif False:
y = 4
else:
z = 5
| 8.285714 | 11 | 0.448276 | if False:
x = 3
elif False:
y = 4
else:
z = 5
| 0 | 0 | 0 |
8e7d46b5fca05f2d980aad7c45a2c48983d7444b | 15 | py | Python | src/spacefarer/shared.py | gaming32/SpaceFarer | 04a8631bc8029202fdb4b87d290dbe27504cb0c1 | [
"MIT"
] | null | null | null | src/spacefarer/shared.py | gaming32/SpaceFarer | 04a8631bc8029202fdb4b87d290dbe27504cb0c1 | [
"MIT"
] | null | null | null | src/spacefarer/shared.py | gaming32/SpaceFarer | 04a8631bc8029202fdb4b87d290dbe27504cb0c1 | [
"MIT"
] | null | null | null | delta_time = 0
| 7.5 | 14 | 0.733333 | delta_time = 0
| 0 | 0 | 0 |
bca2078d279bbc04061518cca958f9f61c6dc73a | 1,380 | py | Python | beacontools/structs/eddystone.py | pibico/beacontools | 513e1c7ff2aaf74b6c7d7b10805c2f6ca4384e3d | [
"MIT"
] | 139 | 2017-06-09T17:15:23.000Z | 2022-03-15T03:02:17.000Z | beacontools/structs/eddystone.py | pibico/beacontools | 513e1c7ff2aaf74b6c7d7b10805c2f6ca4384e3d | [
"MIT"
] | 71 | 2017-06-20T03:20:56.000Z | 2022-02-13T22:47:53.000Z | beacontools/structs/eddystone.py | pibico/beacontools | 513e1c7ff2aaf74b6c7d7b10805c2f6ca4384e3d | [
"MIT"
] | 59 | 2017-06-20T03:10:00.000Z | 2022-03-15T23:54:44.000Z | """All low level structures used for parsing eddystone packets."""
from construct import Struct, Byte, Switch, OneOf, Int8sl, Array, \
GreedyString, Int16ub, Int16ul, Int32ub
from ..const import EDDYSTONE_URL_SCHEMES, EDDYSTONE_TLM_UNENCRYPTED, EDDYSTONE_TLM_ENCRYPTED
# pylint: disable=invalid-name
EddystoneUIDFrame = Struct(
"tx_power" / Int8sl,
"namespace" / Array(10, Byte),
"instance" / Array(6, Byte),
# commented out because it is not used anyway and there seem to be beacons which
# don't send it at all (see https://github.com/citruz/beacontools/issues/39)
# "rfu" / Array(2, Byte)
)
EddystoneURLFrame = Struct(
"tx_power" / Int8sl,
"url_scheme" / OneOf(Byte, list(EDDYSTONE_URL_SCHEMES)),
"url" / GreedyString(encoding="ascii")
)
UnencryptedTLMFrame = Struct(
"voltage" / Int16ub,
"temperature" / Int16ub,
"advertising_count" / Int32ub,
"seconds_since_boot" / Int32ub,
)
EncryptedTLMFrame = Struct(
"encrypted_data" / Array(12, Byte),
"salt" / Int16ul,
"mic" / Int16ul
)
EddystoneTLMFrame = Struct(
"tlm_version" / Byte,
"data" / Switch(lambda ctx: ctx.tlm_version, {
EDDYSTONE_TLM_UNENCRYPTED: UnencryptedTLMFrame,
EDDYSTONE_TLM_ENCRYPTED: EncryptedTLMFrame,
})
)
EddystoneEIDFrame = Struct(
"tx_power" / Int8sl,
"eid" / Array(8, Byte)
)
| 28.163265 | 93 | 0.681884 | """All low level structures used for parsing eddystone packets."""
from construct import Struct, Byte, Switch, OneOf, Int8sl, Array, \
GreedyString, Int16ub, Int16ul, Int32ub
from ..const import EDDYSTONE_URL_SCHEMES, EDDYSTONE_TLM_UNENCRYPTED, EDDYSTONE_TLM_ENCRYPTED
# pylint: disable=invalid-name
EddystoneUIDFrame = Struct(
"tx_power" / Int8sl,
"namespace" / Array(10, Byte),
"instance" / Array(6, Byte),
# commented out because it is not used anyway and there seem to be beacons which
# don't send it at all (see https://github.com/citruz/beacontools/issues/39)
# "rfu" / Array(2, Byte)
)
EddystoneURLFrame = Struct(
"tx_power" / Int8sl,
"url_scheme" / OneOf(Byte, list(EDDYSTONE_URL_SCHEMES)),
"url" / GreedyString(encoding="ascii")
)
UnencryptedTLMFrame = Struct(
"voltage" / Int16ub,
"temperature" / Int16ub,
"advertising_count" / Int32ub,
"seconds_since_boot" / Int32ub,
)
EncryptedTLMFrame = Struct(
"encrypted_data" / Array(12, Byte),
"salt" / Int16ul,
"mic" / Int16ul
)
EddystoneTLMFrame = Struct(
"tlm_version" / Byte,
"data" / Switch(lambda ctx: ctx.tlm_version, {
EDDYSTONE_TLM_UNENCRYPTED: UnencryptedTLMFrame,
EDDYSTONE_TLM_ENCRYPTED: EncryptedTLMFrame,
})
)
EddystoneEIDFrame = Struct(
"tx_power" / Int8sl,
"eid" / Array(8, Byte)
)
| 0 | 0 | 0 |
260163c0f4d9697942b0734e2f470c20101143d0 | 2,887 | py | Python | interpreter.py | amupxm/python_simple_interpreter | 120e387947889cb3707dd33a019eeb6fb99fc6aa | [
"MIT"
] | 2 | 2021-06-05T08:33:19.000Z | 2021-08-10T11:40:06.000Z | interpreter.py | amupxm/python_simple_interpreter | 120e387947889cb3707dd33a019eeb6fb99fc6aa | [
"MIT"
] | null | null | null | interpreter.py | amupxm/python_simple_interpreter | 120e387947889cb3707dd33a019eeb6fb99fc6aa | [
"MIT"
] | null | null | null | #read the program.amup file
raw_file = open("program.amup", "r")
#make empty structure of program
arr = {
"target": "",
"sec_target": "",
"thr_target": "",
"operator": "+",
"A": 0,
"B": 0,
"C": 0,
"D": 0
}
#make empty list of converted to C++ language program
lines = []
#simple function for split a line to chars
#for each line:
for line in raw_file:
lines.append(line)
temp_len = len(line)
#set first char of line to target
arr['target'] = line[0]
for index in range(temp_len):
if(line[index] != " " and index > 0):
#if be operand set the targets:
if line[index] in ['A', 'B', 'C', 'D']:
if(arr['sec_target'] == ""):
arr['sec_target'] = line[index]
elif (arr['thr_target'] == ""):
arr['thr_target'] = line[index]
#if be operator set the targets:
elif line[index] in ['+', '-', '*', '/', '=']:
arr['operator'] = line[index]
#if be last char of the line :
elif line[index] == "\n" or index == temp_len:
if(arr['sec_target'] != "" and arr['operator'] != "" and arr['thr_target'] != ""):
#calculate :
if(arr['operator'] == '+'):
arr[arr['target']] = str(int(
arr[arr['sec_target']]) + int(arr[arr['thr_target']]))
elif(arr['operator'] == "-"):
arr[arr['target']] = str(int(
arr[arr['sec_target']]) - int(arr[arr['thr_target']]))
elif(arr['operator'] == "*"):
arr[arr['target']] = str(
int(
arr[arr['sec_target']]) * int(arr[arr['thr_target']])
)
elif(arr['operator'] == "/"):
arr[arr['target']] = str(
int(
arr[arr['sec_target']]) / int(arr[arr['thr_target']]))
elif(arr['operator'] == "="):
print("")
#reset the structure
arr['thr_target'] = ''
arr['operator'] = ""
arr['sec_target'] = ''
arr['target'] = ""
else:
arr[str(arr['target'])] = str(line[index])
print('A = ' + str(arr['A']))
print('B = ' + str(arr['B']))
print('C = ' + str(arr['C']))
print('D = ' + str(arr['D']))
print("-------------Converted to C++ language -----------")
print("")
print("#include <iostream.h> \n\n int main () \n{ \n int A,B,C,D ; \n ")
for line in lines:
print(line.replace("\n", ";"))
print("count << A; \n return 0 ; \n }")
| 35.641975 | 98 | 0.420159 | #read the program.amup file
raw_file = open("program.amup", "r")
#make empty structure of program
arr = {
"target": "",
"sec_target": "",
"thr_target": "",
"operator": "+",
"A": 0,
"B": 0,
"C": 0,
"D": 0
}
#make empty list of converted to C++ language program
lines = []
#simple function for split a line to chars
def split(word):
return [char for char in word]
#for each line:
for line in raw_file:
lines.append(line)
temp_len = len(line)
#set first char of line to target
arr['target'] = line[0]
for index in range(temp_len):
if(line[index] != " " and index > 0):
#if be operand set the targets:
if line[index] in ['A', 'B', 'C', 'D']:
if(arr['sec_target'] == ""):
arr['sec_target'] = line[index]
elif (arr['thr_target'] == ""):
arr['thr_target'] = line[index]
#if be operator set the targets:
elif line[index] in ['+', '-', '*', '/', '=']:
arr['operator'] = line[index]
#if be last char of the line :
elif line[index] == "\n" or index == temp_len:
if(arr['sec_target'] != "" and arr['operator'] != "" and arr['thr_target'] != ""):
#calculate :
if(arr['operator'] == '+'):
arr[arr['target']] = str(int(
arr[arr['sec_target']]) + int(arr[arr['thr_target']]))
elif(arr['operator'] == "-"):
arr[arr['target']] = str(int(
arr[arr['sec_target']]) - int(arr[arr['thr_target']]))
elif(arr['operator'] == "*"):
arr[arr['target']] = str(
int(
arr[arr['sec_target']]) * int(arr[arr['thr_target']])
)
elif(arr['operator'] == "/"):
arr[arr['target']] = str(
int(
arr[arr['sec_target']]) / int(arr[arr['thr_target']]))
elif(arr['operator'] == "="):
print("")
#reset the structure
arr['thr_target'] = ''
arr['operator'] = ""
arr['sec_target'] = ''
arr['target'] = ""
else:
arr[str(arr['target'])] = str(line[index])
print('A = ' + str(arr['A']))
print('B = ' + str(arr['B']))
print('C = ' + str(arr['C']))
print('D = ' + str(arr['D']))
print("-------------Converted to C++ language -----------")
print("")
print("#include <iostream.h> \n\n int main () \n{ \n int A,B,C,D ; \n ")
for line in lines:
print(line.replace("\n", ";"))
print("count << A; \n return 0 ; \n }")
| 30 | 0 | 22 |
f1328c631185034d32e2da1e415c4d60d40d6d58 | 4,081 | py | Python | tests/test_s3.py | mrslow/yandex-s3 | 560a901d8f5c636e268cd2a9f8a2a72841f2cf7e | [
"MIT"
] | 2 | 2021-08-20T15:24:03.000Z | 2021-08-24T14:34:22.000Z | tests/test_s3.py | mrslow/yandex-s3 | 560a901d8f5c636e268cd2a9f8a2a72841f2cf7e | [
"MIT"
] | null | null | null | tests/test_s3.py | mrslow/yandex-s3 | 560a901d8f5c636e268cd2a9f8a2a72841f2cf7e | [
"MIT"
] | null | null | null | import pytest
from datetime import datetime
from uuid import uuid4
from s3.core import RequestError
base_url = 'https://test-bucket.storage.yandexcloud.net'
list_data = (
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">\n'
b' <Name>flk-test-bucket</Name>\n'
b' <Prefix></Prefix>\n'
b' <MaxKeys>1000</MaxKeys>\n'
b' <IsTruncated>false</IsTruncated>\n'
b' <EncodingType>url</EncodingType>\n'
b' <Contents>\n'
b' <Key>dir/subdir/dummy.txt</Key>\n'
b' <LastModified>2021-08-19T08:39:21.409Z</LastModified>\n'
b' <Owner>\n'
b' <ID>ajef9a0uck81dkvnc8jf</ID>\n'
b' <DisplayName>ajef9a0uck81dkvnc8jf</DisplayName>\n'
b' </Owner>\n'
b' <ETag>"bcf036b6f33e182d4705f4f5b1af13ac"</ETag>\n'
b' <Size>5</Size>\n'
b' <StorageClass>STANDARD</StorageClass>\n'
b' </Contents>\n'
b' <Marker></Marker>\n'
b'</ListBucketResult>\n'
)
delete_data = (
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<DeleteResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">\n'
b' <Deleted>\n'
b' <Key>dir/subdir/dummy.txt</Key>\n'
b' <VersionId>null</VersionId>\n'
b' </Deleted>\n'
b'</DeleteResult>'
)
get_data = b'Dummy'
base_headers = {
'Server': 'nginx',
'Connection': 'keep-alive',
'Keep-Alive': 'timeout=60',
}
upload_headers = {
'Date': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'Transfer-Encoding': 'chunked',
'Etag': f'"{uuid4().hex}"',
'X-Amz-Request-Id': uuid4().hex[:16],
'X-Amz-Version-Id': None
}.update(base_headers)
list_headers = {
'Date': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'Content-Type': 'application/xml; charset=UTF-8',
'Content-Length': len(list_data),
'X-Amz-Request-Id': uuid4().hex[:16],
}.update(base_headers)
delete_headers = {
'Date': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'Content-Type': 'application/xml; charset=UTF-8',
'Content-Length': len(delete_data),
'X-Amz-Request-Id': uuid4().hex[:16],
}.update(base_headers)
get_headers = {
'Date': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'Content-Type': 'application/octet-stream',
'Content-Length': f'{len(get_data)}',
'Accept-Ranges': 'bytes',
'Etag': f'"{uuid4().hex}"',
'Last-Modified': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'X-Amz-Request-Id': uuid4().hex[:16],
'X-Amz-Version-Id': None
}.update(base_headers)
@pytest.mark.asyncio
@ pytest.mark.asyncio
@pytest.mark.asyncio
@pytest.mark.asyncio
| 29.359712 | 76 | 0.620926 | import pytest
from datetime import datetime
from uuid import uuid4
from s3.core import RequestError
base_url = 'https://test-bucket.storage.yandexcloud.net'
list_data = (
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<ListBucketResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">\n'
b' <Name>flk-test-bucket</Name>\n'
b' <Prefix></Prefix>\n'
b' <MaxKeys>1000</MaxKeys>\n'
b' <IsTruncated>false</IsTruncated>\n'
b' <EncodingType>url</EncodingType>\n'
b' <Contents>\n'
b' <Key>dir/subdir/dummy.txt</Key>\n'
b' <LastModified>2021-08-19T08:39:21.409Z</LastModified>\n'
b' <Owner>\n'
b' <ID>ajef9a0uck81dkvnc8jf</ID>\n'
b' <DisplayName>ajef9a0uck81dkvnc8jf</DisplayName>\n'
b' </Owner>\n'
b' <ETag>"bcf036b6f33e182d4705f4f5b1af13ac"</ETag>\n'
b' <Size>5</Size>\n'
b' <StorageClass>STANDARD</StorageClass>\n'
b' </Contents>\n'
b' <Marker></Marker>\n'
b'</ListBucketResult>\n'
)
delete_data = (
b'<?xml version="1.0" encoding="UTF-8"?>\n'
b'<DeleteResult xmlns="http://s3.amazonaws.com/doc/2006-03-01/">\n'
b' <Deleted>\n'
b' <Key>dir/subdir/dummy.txt</Key>\n'
b' <VersionId>null</VersionId>\n'
b' </Deleted>\n'
b'</DeleteResult>'
)
get_data = b'Dummy'
base_headers = {
'Server': 'nginx',
'Connection': 'keep-alive',
'Keep-Alive': 'timeout=60',
}
upload_headers = {
'Date': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'Transfer-Encoding': 'chunked',
'Etag': f'"{uuid4().hex}"',
'X-Amz-Request-Id': uuid4().hex[:16],
'X-Amz-Version-Id': None
}.update(base_headers)
list_headers = {
'Date': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'Content-Type': 'application/xml; charset=UTF-8',
'Content-Length': len(list_data),
'X-Amz-Request-Id': uuid4().hex[:16],
}.update(base_headers)
delete_headers = {
'Date': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'Content-Type': 'application/xml; charset=UTF-8',
'Content-Length': len(delete_data),
'X-Amz-Request-Id': uuid4().hex[:16],
}.update(base_headers)
get_headers = {
'Date': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'Content-Type': 'application/octet-stream',
'Content-Length': f'{len(get_data)}',
'Accept-Ranges': 'bytes',
'Etag': f'"{uuid4().hex}"',
'Last-Modified': datetime.now().strftime('%a, %d %b %Y %H:%M:%S GMT'),
'X-Amz-Request-Id': uuid4().hex[:16],
'X-Amz-Version-Id': None
}.update(base_headers)
@pytest.mark.asyncio
async def test_upload_object(s3_client, httpx_mock):
httpx_mock.add_response(
url=base_url,
method='POST',
status_code=204,
headers=upload_headers,
data=b'')
try:
await s3_client.upload('dummy.txt', b'Dummy')
except RequestError as exc:
pytest.fail(exc)
@ pytest.mark.asyncio
async def test_download_object(s3_client, httpx_mock):
httpx_mock.add_response(
url=s3_client.signed_download_url('dir/subdir/dummy.txt'),
method='GET',
status_code=200,
headers=get_headers,
data=get_data)
r = await s3_client.download('dir/subdir/dummy.txt')
assert r == b'Dummy'
@pytest.mark.asyncio
async def test_list_objects(s3_client, httpx_mock):
httpx_mock.add_response(
url=f'{base_url}?list-type=2&prefix=dir/subdir&continuation-token=',
method='GET',
status_code=200,
headers=list_headers,
data=list_data)
objects = [elem async for elem in s3_client.list(prefix='dir/subdir')]
assert len(objects) == 1
assert objects[0].key == 'dir/subdir/dummy.txt'
@pytest.mark.asyncio
async def test_delete_objects(s3_client, httpx_mock):
httpx_mock.add_response(
url=f'{base_url}?delete=1',
method='POST',
status_code=200,
headers=delete_headers,
data=delete_data)
obj = await s3_client.delete('dir/subdir/dummy.txt')
assert len(obj) == 1
assert obj[0] == 'dir/subdir/dummy.txt'
| 1,336 | 0 | 88 |
b21ef3bf467586a5e88eaddad0cbe0a6c0b4f4fb | 2,719 | py | Python | RBFN_bash/Cancer_preprocess.py | afalak94/Radial-Basis-Function-Neural-Network | ff76cd323073e4bec149f4f1b8117da1fe64a42b | [
"CC0-1.0"
] | null | null | null | RBFN_bash/Cancer_preprocess.py | afalak94/Radial-Basis-Function-Neural-Network | ff76cd323073e4bec149f4f1b8117da1fe64a42b | [
"CC0-1.0"
] | null | null | null | RBFN_bash/Cancer_preprocess.py | afalak94/Radial-Basis-Function-Neural-Network | ff76cd323073e4bec149f4f1b8117da1fe64a42b | [
"CC0-1.0"
] | 1 | 2021-02-21T19:09:03.000Z | 2021-02-21T19:09:03.000Z | import numpy as np
import csv
from pandas import read_csv
import pandas as pd
from sklearn.model_selection import train_test_split
with open('cancer-data.csv') as f:
raw_data = f.read()
####PREPROCESS OF THE DATASET######
#def data_preprocess2(filename):
# # Load a CSV file
# dataset = read_csv(filename, header=None)
# # mark zero values as missing or NaN
# dataset[[1,2,3,4,5,6,7,8,9]] = dataset[[1,2,3,4,5,6,7,8,9]].replace('?', np.NaN)
# # drop rows with missing values
# dataset.dropna(inplace=True)
# dataset = np.array(dataset).astype(float)
# dataset = np.delete(dataset, 0, axis=1)
# print (dataset.shape)
#
# # Find the min and max values for each column
# stats = [[min(column), max(column)] for column in zip(*dataset)]
#
# # Rescale dataset columns to the range 0-1 - normalization
# for row in dataset:
# for i in range(len(row)-1):
# row[i] = (row[i] - stats[i][0]) / (stats[i][1] - stats[i][0])
#
# for i, data in enumerate(dataset):
# if data[-1] == 2:
# data[-1] = 0
# if data[-1] == 4:
# data[-1] = 1
#
# dataset = dataset[np.argsort(dataset[:, -1])]
# return dataset
#np.set_printoptions(threshold=np.inf)
dataset = data_preprocess(raw_data)
dataset = dataset[dataset[:,1].argsort()]
#print(dataset)
#print (dataset.shape)
#count the number of classes
numClasses = len(np.unique(dataset[:,-1]))
#print(numClasses)
#exit()
#train, test = train_test_split(dataset, test_size=0.2)
| 30.211111 | 82 | 0.657595 | import numpy as np
import csv
from pandas import read_csv
import pandas as pd
from sklearn.model_selection import train_test_split
with open('cancer-data.csv') as f:
raw_data = f.read()
####PREPROCESS OF THE DATASET######
def data_preprocess(raw_data):
# Read string files
dataset = list()
csv_reader = csv.reader(raw_data.split('\n'), delimiter=',')
for row in csv_reader:
if not row:
continue
dataset.append(row)
pd_data = pd.DataFrame(dataset)
labels = pd_data.iloc[:,-1].values
labels = labels[:, np.newaxis]
#CONVERTING TEXT CLASS LABELS TO NUMBERS
b, c = np.unique(labels, return_inverse=True)
labels = c[:, np.newaxis] + 1
labels = pd.DataFrame(labels)
#delete last column from dataframe
pd_data.drop(pd_data.columns[len(pd_data.columns)-1], axis=1, inplace=True)
#concatenate data with numerical class labels
result = pd.concat([pd_data, labels], axis=1)
#replace question marks with NaN
result = result.replace(['?', '-'], np.nan)
# drop rows with missing values
result = result.dropna()
dataset = result.values
dataset = np.array(dataset).astype(np.float)
# Find the min and max values for each column
stats = [[min(column), max(column)] for column in zip(*dataset)]
# Rescale dataset columns to the range 0-1 - normalization
for row in dataset:
for i in range(len(row)-1):
row[i] = (row[i] - stats[i][0]) / (stats[i][1] - stats[i][0])
return dataset
#def data_preprocess2(filename):
# # Load a CSV file
# dataset = read_csv(filename, header=None)
# # mark zero values as missing or NaN
# dataset[[1,2,3,4,5,6,7,8,9]] = dataset[[1,2,3,4,5,6,7,8,9]].replace('?', np.NaN)
# # drop rows with missing values
# dataset.dropna(inplace=True)
# dataset = np.array(dataset).astype(float)
# dataset = np.delete(dataset, 0, axis=1)
# print (dataset.shape)
#
# # Find the min and max values for each column
# stats = [[min(column), max(column)] for column in zip(*dataset)]
#
# # Rescale dataset columns to the range 0-1 - normalization
# for row in dataset:
# for i in range(len(row)-1):
# row[i] = (row[i] - stats[i][0]) / (stats[i][1] - stats[i][0])
#
# for i, data in enumerate(dataset):
# if data[-1] == 2:
# data[-1] = 0
# if data[-1] == 4:
# data[-1] = 1
#
# dataset = dataset[np.argsort(dataset[:, -1])]
# return dataset
#np.set_printoptions(threshold=np.inf)
dataset = data_preprocess(raw_data)
dataset = dataset[dataset[:,1].argsort()]
#print(dataset)
#print (dataset.shape)
#count the number of classes
numClasses = len(np.unique(dataset[:,-1]))
#print(numClasses)
#exit()
#train, test = train_test_split(dataset, test_size=0.2)
| 1,279 | 0 | 22 |
413837a03cc9be004e0ac42b7ad16f81699bd5ec | 1,337 | py | Python | app/auth/views.py | mishel254/personal-blog | db39299188232ec725ed6f9ed8051a6fa403d355 | [
"MIT"
] | null | null | null | app/auth/views.py | mishel254/personal-blog | db39299188232ec725ed6f9ed8051a6fa403d355 | [
"MIT"
] | null | null | null | app/auth/views.py | mishel254/personal-blog | db39299188232ec725ed6f9ed8051a6fa403d355 | [
"MIT"
] | null | null | null | from flask import render_template, redirect, url_for,flash,request
from flask_login import login_required, current_user, login_user,logout_user
from ..models import Users
from .forms import Loginform,Signupform
from .. import db
from . import auth
@auth.route('/signup', methods=['GET','POST'])
@auth.route('/login', methods=['GET','POST'])
@auth.route('/logout')
@login_required | 31.093023 | 107 | 0.688856 | from flask import render_template, redirect, url_for,flash,request
from flask_login import login_required, current_user, login_user,logout_user
from ..models import Users
from .forms import Loginform,Signupform
from .. import db
from . import auth
@auth.route('/signup', methods=['GET','POST'])
def signup():
form = Signupform()
if form.validate_on_submit():
users = Users(email = form.email.data, username = form.username.data,password = form.password.data)
db.session.add(users)
db.session.commit()
flash(f'account created for{form.username.data}')
return redirect(url_for('auth.login'))
return render_template('auth/signup.html', form=form)
@auth.route('/login', methods=['GET','POST'])
def login():
login = Loginform()
if login.validate_on_submit():
users = Users.query.filter_by(email = login.email.data).first()
if users is not None and users.verify_password(login.password.data):
login_user(users)
return redirect(request.args.get('next') or url_for('main.home'))
flash('Invalid username or Password')
title = "Blog It login"
return render_template('auth/login.html',login = login,title=title)
@auth.route('/logout')
@login_required
def logout():
logout_user()
return redirect("main/index.html") | 884 | 0 | 66 |
a330fddb281c44e4d5af6c0383a84754087e5ada | 115 | py | Python | tests/python_parser/data/with_statement_multi_items.py | ahupp/pegen | e28fe4fb1972c55af5ddb6a7bdd9cba4ea072b81 | [
"MIT"
] | 106 | 2020-05-14T03:43:47.000Z | 2022-03-26T21:46:47.000Z | tests/python_parser/data/with_statement_multi_items.py | ahupp/pegen | e28fe4fb1972c55af5ddb6a7bdd9cba4ea072b81 | [
"MIT"
] | 60 | 2020-05-07T23:17:46.000Z | 2022-03-30T20:26:25.000Z | tests/python_parser/data/with_statement_multi_items.py | ahupp/pegen | e28fe4fb1972c55af5ddb6a7bdd9cba4ea072b81 | [
"MIT"
] | 20 | 2020-05-22T10:21:30.000Z | 2022-03-26T21:23:44.000Z | with (a, c,):
pass
with (a as b, c):
pass
async with (a, c,):
pass
async with (a as b, c):
pass
| 9.583333 | 23 | 0.486957 | with (a, c,):
pass
with (a as b, c):
pass
async with (a, c,):
pass
async with (a as b, c):
pass
| 0 | 0 | 0 |
6a6e239ceb3a20d68fa017063835507d445742c4 | 141 | py | Python | nyc/mapping/__init__.py | lopez86/NYCDataTools | 9c860545bacd27a7a1106bba3e3d75cd0320e6df | [
"MIT"
] | null | null | null | nyc/mapping/__init__.py | lopez86/NYCDataTools | 9c860545bacd27a7a1106bba3e3d75cd0320e6df | [
"MIT"
] | null | null | null | nyc/mapping/__init__.py | lopez86/NYCDataTools | 9c860545bacd27a7a1106bba3e3d75cd0320e6df | [
"MIT"
] | null | null | null | from .CensusTractMapper import CensusTractMapper
from .NeighborhoodMapper import NeighborhoodMapper
from .BoroughMapper import BoroughMapper
| 35.25 | 50 | 0.893617 | from .CensusTractMapper import CensusTractMapper
from .NeighborhoodMapper import NeighborhoodMapper
from .BoroughMapper import BoroughMapper
| 0 | 0 | 0 |
82132716d68b40cda484559658bbd18b1d8a529e | 1,881 | py | Python | wagtailplus/wagtaillinks/migrations/0002_initial_data.py | DanAtShenTech/wagtailplus | 22cac857175d8a6f77e470751831c14a92ccd768 | [
"BSD-2-Clause"
] | null | null | null | wagtailplus/wagtaillinks/migrations/0002_initial_data.py | DanAtShenTech/wagtailplus | 22cac857175d8a6f77e470751831c14a92ccd768 | [
"BSD-2-Clause"
] | null | null | null | wagtailplus/wagtaillinks/migrations/0002_initial_data.py | DanAtShenTech/wagtailplus | 22cac857175d8a6f77e470751831c14a92ccd768 | [
"BSD-2-Clause"
] | null | null | null | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django import VERSION as DJANGO_VERSION
from django.db import migrations
| 33 | 93 | 0.647528 | # -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django import VERSION as DJANGO_VERSION
from django.db import migrations
def add_link_permissions_to_admin_groups(apps, schema_editor):
ContentType = apps.get_model('contenttypes.ContentType')
Permission = apps.get_model('auth.Permission')
Group = apps.get_model('auth.Group')
# Get link permissions
link_content_type, _created = ContentType.objects.get_or_create(
model = 'document',
app_label = 'wagtaildocs',
defaults = {'name': 'link'} if DJANGO_VERSION < (1, 8) else {}
)
add_link_permission, _created = Permission.objects.get_or_create(
content_type = link_content_type,
codename = 'add_link',
defaults = {'name': 'Can add link'}
)
change_link_permission, _created = Permission.objects.get_or_create(
content_type = link_content_type,
codename = 'change_link',
defaults = {'name': 'Can change link'}
)
delete_link_permission, _created = Permission.objects.get_or_create(
content_type = link_content_type,
codename = 'delete_link',
defaults = {'name': 'Can delete link'}
)
# Assign it to Editors and Moderators groups
for group in Group.objects.filter(name__in=['Editors', 'Moderators']):
group.permissions.add(
add_link_permission,
change_link_permission,
delete_link_permission
)
class Migration(migrations.Migration):
dependencies = [
('wagtaillinks', '0001_initial'),
# Need to run wagtailcores initial data migration to make sure the groups are created
('wagtailcore', '0002_initial_data'),
]
operations = [
migrations.RunPython(add_link_permissions_to_admin_groups),
]
| 1,368 | 322 | 46 |
61265805f6fb5ce931146d027f8efa521cac84c1 | 7,057 | py | Python | config/settings.py | epicserve/django-base-site | 7a382d3f74588f45548697e00e2a8a3398c6b526 | [
"MIT"
] | 102 | 2015-01-04T15:48:38.000Z | 2022-03-30T21:39:31.000Z | config/settings.py | epicserve/django-base-site | 7a382d3f74588f45548697e00e2a8a3398c6b526 | [
"MIT"
] | 20 | 2020-03-14T15:20:30.000Z | 2021-09-25T14:52:49.000Z | config/settings.py | epicserve/django-base-site | 7a382d3f74588f45548697e00e2a8a3398c6b526 | [
"MIT"
] | 23 | 2015-05-10T14:22:11.000Z | 2021-09-28T11:32:42.000Z | import os
import socket
import sys
import environs
from apps.base.utils.env import env
BASE_DIR = environs.Path(__file__).parent.parent # type: ignore
READ_DOT_ENV_FILE = env.bool("READ_DOT_ENV_FILE", default=True)
if READ_DOT_ENV_FILE is True:
env.read_env(str(BASE_DIR.joinpath(".env")))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = env("SECRET_KEY")
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = env.bool("DEBUG", default=False)
ALLOWED_HOSTS = env.list("ALLOWED_HOSTS", default=[])
INTERNAL_IPS = env.list("INTERNAL_IPS", default=["127.0.0.1"])
# Get the IP to use for Django Debug Toolbar when developing with docker
if env.bool("USE_DOCKER", default=False) is True:
ip = socket.gethostbyname(socket.gethostname())
INTERNAL_IPS += [ip[:-1] + "1"]
# Application definition
INSTALLED_APPS = [
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.sites",
"django.contrib.messages",
"django.contrib.staticfiles",
"rest_framework",
"apps.base",
"apps.accounts",
"allauth",
"allauth.account",
"crispy_forms",
"storages",
]
MIDDLEWARE = [
"django.middleware.security.SecurityMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
]
ROOT_URLCONF = "config.urls"
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.debug",
"django.template.context_processors.request",
"django.contrib.auth.context_processors.auth",
"django.contrib.messages.context_processors.messages",
"apps.base.context_processors.site_name",
]
},
}
]
WSGI_APPLICATION = env("WSGI_APPLICATION", default="config.wsgi.application")
# Database
# See https://github.com/jacobian/dj-database-url for more examples
DATABASES = {
"default": env.dj_db_url(
"DATABASE_URL", default=f'sqlite:///{BASE_DIR.joinpath("db.sqlite")}', ssl_require=not DEBUG
)
}
# See https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
# Custom User Model
# https://docs.djangoproject.com/en/2.1/topics/auth/customizing/#substituting-a-custom-user-model
AUTH_USER_MODEL = "accounts.User"
# Password validation
# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator"},
{"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator"},
{"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator"},
{"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator"},
]
# Internationalization
# https://docs.djangoproject.com/en/2.2/topics/i18n/
LANGUAGE_CODE = "en-us"
TIME_ZONE = "UTC"
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.2/howto/static-files/
STATICFILES_FINDERS = (
"django.contrib.staticfiles.finders.FileSystemFinder",
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
)
DEFAULT_FILE_STORAGE = env("DEFAULT_FILE_STORAGE", default="django.core.files.storage.FileSystemStorage")
if DEFAULT_FILE_STORAGE.endswith("MediaS3Storage") is True:
STATICFILES_STORAGE = env("STATICFILES_STORAGE")
AWS_ACCESS_KEY_ID = env("AWS_ACCESS_KEY_ID")
AWS_SECRET_ACCESS_KEY = env("AWS_SECRET_ACCESS_KEY")
AWS_STORAGE_BUCKET_NAME = env("AWS_STORAGE_BUCKET_NAME")
AWS_DEFAULT_ACL = "public-read"
AWS_S3_REGION = env("AWS_S3_REGION", default="us-east-2")
AWS_S3_CUSTOM_DOMAIN = f"s3.{AWS_S3_REGION}.amazonaws.com/{AWS_STORAGE_BUCKET_NAME}"
AWS_S3_OBJECT_PARAMETERS = {"CacheControl": "max-age=86400"}
STATIC_URL = f"https://{AWS_S3_CUSTOM_DOMAIN}/static/"
MEDIA_URL = f"https://{AWS_S3_CUSTOM_DOMAIN}/media/"
STATICFILES_DIRS = [str(BASE_DIR.joinpath("public", "static"))]
else:
# Local Storage
public_root = BASE_DIR.joinpath("public")
STATIC_ROOT = str(BASE_DIR.joinpath("collected_static"))
MEDIA_ROOT = str(public_root.joinpath("media"))
STATICFILES_DIRS = [str(BASE_DIR.joinpath("public", "static"))]
MEDIA_URL = "/public/media/"
STATIC_URL = "/public/static/"
# CACHE SETTINGS
CACHE_URL_DEFAULT = "redis://redis:6379/0"
CACHES = {"default": env.cache_url("CACHE_URL", default=CACHE_URL_DEFAULT)}
# CRISPY-FORMS
CRISPY_TEMPLATE_PACK = "bootstrap4"
# CELERY SETTINGS
CELERY_BROKER_URL = env("CACHE_URL", CACHE_URL_DEFAULT)
SESSION_ENGINE = "redis_sessions.session"
SESSION_REDIS = env.session_redis_url("CACHE_URL", default=CACHE_URL_DEFAULT)
SITE_ID = 1
SITE_NAME = "Django Base Site"
# DJANGO DEBUG TOOLBAR SETTINGS
if DEBUG is True:
INSTALLED_APPS += ["debug_toolbar"]
MIDDLEWARE += ["debug_toolbar.middleware.DebugToolbarMiddleware"]
DEBUG_TOOLBAR_CONFIG = {"INTERCEPT_REDIRECTS": False}
# ALLAUTH SETTINGS
LOGIN_REDIRECT_URL = "/"
ACCOUNT_LOGOUT_ON_GET = True
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_CONFIRM_EMAIL_ON_GET = True
ACCOUNT_EMAIL_VERIFICATION = "mandatory"
# See https://github.com/migonzalvar/dj-email-url for more examples on how to set the EMAIL_URL
email = env.dj_email_url(
"EMAIL_URL",
default="smtp://skroob@planetspaceball.com:12345@smtp.planetspaceball.com:587/?ssl=True&_default_from_email=President%20Skroob%20%3Cskroob@planetspaceball.com%3E",
)
DEFAULT_FROM_EMAIL = email["DEFAULT_FROM_EMAIL"]
EMAIL_HOST = email["EMAIL_HOST"]
EMAIL_PORT = email["EMAIL_PORT"]
EMAIL_HOST_PASSWORD = email["EMAIL_HOST_PASSWORD"]
EMAIL_HOST_USER = email["EMAIL_HOST_USER"]
EMAIL_USE_TLS = email["EMAIL_USE_TLS"]
REST_FRAMEWORK = {
# Use Django's standard `django.contrib.auth` permissions,
# or allow read-only access for unauthenticated users.
"DEFAULT_PERMISSION_CLASSES": ["rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly"],
"DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.PageNumberPagination",
"PAGE_SIZE": 10,
}
if "test" in sys.argv:
PASSWORD_HASHERS = (
"django.contrib.auth.hashers.MD5PasswordHasher",
"django.contrib.auth.hashers.SHA1PasswordHasher",
)
AUTHENTICATION_BACKENDS = ("django.contrib.auth.backends.ModelBackend",)
DATABASES["default"] = {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}
| 33.131455 | 167 | 0.735157 | import os
import socket
import sys
import environs
from apps.base.utils.env import env
BASE_DIR = environs.Path(__file__).parent.parent # type: ignore
READ_DOT_ENV_FILE = env.bool("READ_DOT_ENV_FILE", default=True)
if READ_DOT_ENV_FILE is True:
env.read_env(str(BASE_DIR.joinpath(".env")))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/2.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = env("SECRET_KEY")
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = env.bool("DEBUG", default=False)
ALLOWED_HOSTS = env.list("ALLOWED_HOSTS", default=[])
INTERNAL_IPS = env.list("INTERNAL_IPS", default=["127.0.0.1"])
# Get the IP to use for Django Debug Toolbar when developing with docker
if env.bool("USE_DOCKER", default=False) is True:
ip = socket.gethostbyname(socket.gethostname())
INTERNAL_IPS += [ip[:-1] + "1"]
# Application definition
INSTALLED_APPS = [
"django.contrib.admin",
"django.contrib.auth",
"django.contrib.contenttypes",
"django.contrib.sessions",
"django.contrib.sites",
"django.contrib.messages",
"django.contrib.staticfiles",
"rest_framework",
"apps.base",
"apps.accounts",
"allauth",
"allauth.account",
"crispy_forms",
"storages",
]
MIDDLEWARE = [
"django.middleware.security.SecurityMiddleware",
"django.contrib.sessions.middleware.SessionMiddleware",
"django.middleware.common.CommonMiddleware",
"django.middleware.csrf.CsrfViewMiddleware",
"django.contrib.auth.middleware.AuthenticationMiddleware",
"django.contrib.messages.middleware.MessageMiddleware",
"django.middleware.clickjacking.XFrameOptionsMiddleware",
]
ROOT_URLCONF = "config.urls"
TEMPLATES = [
{
"BACKEND": "django.template.backends.django.DjangoTemplates",
"DIRS": [],
"APP_DIRS": True,
"OPTIONS": {
"context_processors": [
"django.template.context_processors.debug",
"django.template.context_processors.request",
"django.contrib.auth.context_processors.auth",
"django.contrib.messages.context_processors.messages",
"apps.base.context_processors.site_name",
]
},
}
]
WSGI_APPLICATION = env("WSGI_APPLICATION", default="config.wsgi.application")
# Database
# See https://github.com/jacobian/dj-database-url for more examples
DATABASES = {
"default": env.dj_db_url(
"DATABASE_URL", default=f'sqlite:///{BASE_DIR.joinpath("db.sqlite")}', ssl_require=not DEBUG
)
}
# See https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field
DEFAULT_AUTO_FIELD = "django.db.models.AutoField"
# Custom User Model
# https://docs.djangoproject.com/en/2.1/topics/auth/customizing/#substituting-a-custom-user-model
AUTH_USER_MODEL = "accounts.User"
# Password validation
# https://docs.djangoproject.com/en/2.2/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{"NAME": "django.contrib.auth.password_validation.UserAttributeSimilarityValidator"},
{"NAME": "django.contrib.auth.password_validation.MinimumLengthValidator"},
{"NAME": "django.contrib.auth.password_validation.CommonPasswordValidator"},
{"NAME": "django.contrib.auth.password_validation.NumericPasswordValidator"},
]
# Internationalization
# https://docs.djangoproject.com/en/2.2/topics/i18n/
LANGUAGE_CODE = "en-us"
TIME_ZONE = "UTC"
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/2.2/howto/static-files/
STATICFILES_FINDERS = (
"django.contrib.staticfiles.finders.FileSystemFinder",
"django.contrib.staticfiles.finders.AppDirectoriesFinder",
)
DEFAULT_FILE_STORAGE = env("DEFAULT_FILE_STORAGE", default="django.core.files.storage.FileSystemStorage")
if DEFAULT_FILE_STORAGE.endswith("MediaS3Storage") is True:
STATICFILES_STORAGE = env("STATICFILES_STORAGE")
AWS_ACCESS_KEY_ID = env("AWS_ACCESS_KEY_ID")
AWS_SECRET_ACCESS_KEY = env("AWS_SECRET_ACCESS_KEY")
AWS_STORAGE_BUCKET_NAME = env("AWS_STORAGE_BUCKET_NAME")
AWS_DEFAULT_ACL = "public-read"
AWS_S3_REGION = env("AWS_S3_REGION", default="us-east-2")
AWS_S3_CUSTOM_DOMAIN = f"s3.{AWS_S3_REGION}.amazonaws.com/{AWS_STORAGE_BUCKET_NAME}"
AWS_S3_OBJECT_PARAMETERS = {"CacheControl": "max-age=86400"}
STATIC_URL = f"https://{AWS_S3_CUSTOM_DOMAIN}/static/"
MEDIA_URL = f"https://{AWS_S3_CUSTOM_DOMAIN}/media/"
STATICFILES_DIRS = [str(BASE_DIR.joinpath("public", "static"))]
else:
# Local Storage
public_root = BASE_DIR.joinpath("public")
STATIC_ROOT = str(BASE_DIR.joinpath("collected_static"))
MEDIA_ROOT = str(public_root.joinpath("media"))
STATICFILES_DIRS = [str(BASE_DIR.joinpath("public", "static"))]
MEDIA_URL = "/public/media/"
STATIC_URL = "/public/static/"
# CACHE SETTINGS
CACHE_URL_DEFAULT = "redis://redis:6379/0"
CACHES = {"default": env.cache_url("CACHE_URL", default=CACHE_URL_DEFAULT)}
# CRISPY-FORMS
CRISPY_TEMPLATE_PACK = "bootstrap4"
# CELERY SETTINGS
CELERY_BROKER_URL = env("CACHE_URL", CACHE_URL_DEFAULT)
SESSION_ENGINE = "redis_sessions.session"
SESSION_REDIS = env.session_redis_url("CACHE_URL", default=CACHE_URL_DEFAULT)
SITE_ID = 1
SITE_NAME = "Django Base Site"
# DJANGO DEBUG TOOLBAR SETTINGS
if DEBUG is True:
INSTALLED_APPS += ["debug_toolbar"]
MIDDLEWARE += ["debug_toolbar.middleware.DebugToolbarMiddleware"]
DEBUG_TOOLBAR_CONFIG = {"INTERCEPT_REDIRECTS": False}
# ALLAUTH SETTINGS
LOGIN_REDIRECT_URL = "/"
ACCOUNT_LOGOUT_ON_GET = True
ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_CONFIRM_EMAIL_ON_GET = True
ACCOUNT_EMAIL_VERIFICATION = "mandatory"
# See https://github.com/migonzalvar/dj-email-url for more examples on how to set the EMAIL_URL
email = env.dj_email_url(
"EMAIL_URL",
default="smtp://skroob@planetspaceball.com:12345@smtp.planetspaceball.com:587/?ssl=True&_default_from_email=President%20Skroob%20%3Cskroob@planetspaceball.com%3E",
)
DEFAULT_FROM_EMAIL = email["DEFAULT_FROM_EMAIL"]
EMAIL_HOST = email["EMAIL_HOST"]
EMAIL_PORT = email["EMAIL_PORT"]
EMAIL_HOST_PASSWORD = email["EMAIL_HOST_PASSWORD"]
EMAIL_HOST_USER = email["EMAIL_HOST_USER"]
EMAIL_USE_TLS = email["EMAIL_USE_TLS"]
REST_FRAMEWORK = {
# Use Django's standard `django.contrib.auth` permissions,
# or allow read-only access for unauthenticated users.
"DEFAULT_PERMISSION_CLASSES": ["rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly"],
"DEFAULT_PAGINATION_CLASS": "rest_framework.pagination.PageNumberPagination",
"PAGE_SIZE": 10,
}
if "test" in sys.argv:
PASSWORD_HASHERS = (
"django.contrib.auth.hashers.MD5PasswordHasher",
"django.contrib.auth.hashers.SHA1PasswordHasher",
)
AUTHENTICATION_BACKENDS = ("django.contrib.auth.backends.ModelBackend",)
DATABASES["default"] = {"ENGINE": "django.db.backends.sqlite3", "NAME": ":memory:"}
| 0 | 0 | 0 |
af5ce3b397dd38e0b7581aecb120cafaec40ed5b | 6,324 | py | Python | diabolo_play/src/diabolo_play/motion_knot_points.py | omron-sinicx/diabolo | a0258fdf634d27c7cf185b2e40c6b12699417d36 | [
"BSD-3-Clause"
] | 11 | 2021-10-15T15:51:24.000Z | 2021-12-26T16:43:17.000Z | diabolo_play/src/diabolo_play/motion_knot_points.py | omron-sinicx/diabolo | a0258fdf634d27c7cf185b2e40c6b12699417d36 | [
"BSD-3-Clause"
] | null | null | null | diabolo_play/src/diabolo_play/motion_knot_points.py | omron-sinicx/diabolo | a0258fdf634d27c7cf185b2e40c6b12699417d36 | [
"BSD-3-Clause"
] | 1 | 2022-02-01T01:58:37.000Z | 2022-02-01T01:58:37.000Z | #!/usr/bin/env python
import rospy
from interactive_markers.interactive_marker_server import InteractiveMarkerServer
from visualization_msgs.msg import InteractiveMarker, InteractiveMarkerControl, Marker
import copy
class KnotPointsServer:
'''
This class allows setting points with interactive markers
This allows setting an arbitrary number of knot points for complex motion creation
Designed for the diabolo setup, and assumes two sets of knot points
'''
def __init__(self, number_of_knot_points, initial_points):
'''
Parameters:
number_of_knot_points: Number of knot points for a single hand
initial_points: Expects a list of geometry_msgs::Point messages of length equal to the number of knot points to set
This is the initial position of the spline path. This point will be a fixed marker
The positions of the markers will be returned relative to this marker
'''
self.initial_points = initial_points
self.number_of_knot_points = number_of_knot_points
self.server = InteractiveMarkerServer("motion_knot_points")
self.initialize_markers()
def get_marker_positions(self, relative=True):
'''
If relative is true, the returned positions will be relative to the initial position of that group
If false, they will be the marker position in the world frame
'''
#self.server.applyChanges()
#Get the current marker positions from the server marker context as a list of points
# print("Number of knot points = " + str(self.number_of_knot_points))
# print("Number of knot groups = " + str(len(self.initial_points)))
position_list = []
for p in range(len(self.initial_points)):
base_position = copy.deepcopy(self.server.marker_contexts[str(p) + "_knot_point_0"].int_marker.pose.position)
position_list.append([])
#Ignore the first marker since that is the provided initial position
for i in range(1, self.number_of_knot_points+1):
marker_name = str(p) + "_knot_point_" + str(i)
position = copy.deepcopy(self.server.marker_contexts[marker_name].int_marker.pose.position)
# print(marker_name + "'s position is " + str(position))
if relative:
position.x -= base_position.x
position.y -= base_position.y
position.z -= base_position.z
position_list[p].append(position)
return position_list
def get_interactive_marker(self, position, color):
'''
Return a control marker capable of motion along the y z plane
'''
int_marker = InteractiveMarker()
int_marker.header.frame_id = "world"
int_marker.pose.position = position
int_marker.scale = 1
int_marker.name = "_knot_point_"
int_marker.description = "yz control"
visual_marker = Marker()
visual_marker.type = Marker.SPHERE
visual_marker.scale.x = 0.05
visual_marker.scale.y = 0.05
visual_marker.scale.z = 0.05
visual_marker.color.r = color[0]
visual_marker.color.g = color[1]
visual_marker.color.b = color[2]
visual_marker.color.a = 1.0
control = InteractiveMarkerControl()
control.orientation.w = 1
control.orientation.x = 1
control.orientation.y = 0
control.orientation.z = 0
control.interaction_mode = InteractiveMarkerControl.MOVE_PLANE
control.markers.append(visual_marker)
control.always_visible = True
int_marker.controls.append(copy.deepcopy(control))
return int_marker
| 44.851064 | 136 | 0.636306 | #!/usr/bin/env python
import rospy
from interactive_markers.interactive_marker_server import InteractiveMarkerServer
from visualization_msgs.msg import InteractiveMarker, InteractiveMarkerControl, Marker
import copy
class KnotPointsServer:
'''
This class allows setting points with interactive markers
This allows setting an arbitrary number of knot points for complex motion creation
Designed for the diabolo setup, and assumes two sets of knot points
'''
def processFeedback(self, feedback):
p = copy.deepcopy(feedback.pose.position)
self.server.marker_contexts[feedback.marker_name].int_marker.pose = copy.deepcopy(feedback.pose)
m = copy.deepcopy(feedback.marker_name)
#the initial position of the knot point group this point is in
initial_pos = self.initial_points[int(m[0])][0]
p.x = p.x - initial_pos.x
p.y = p.y - initial_pos.y
p.z = p.z - initial_pos.z
print feedback.marker_name + " is now at " + str(p.x) + ", " + str(p.y) + ", " + str(p.z)
def ignoreFeedback(self, feedback):
p = feedback.pose.position
print feedback.marker_name + " is now at " + str(p.x) + ", " + str(p.y) + ", " + str(p.z)
def __init__(self, number_of_knot_points, initial_points):
'''
Parameters:
number_of_knot_points: Number of knot points for a single hand
initial_points: Expects a list of geometry_msgs::Point messages of length equal to the number of knot points to set
This is the initial position of the spline path. This point will be a fixed marker
The positions of the markers will be returned relative to this marker
'''
self.initial_points = initial_points
self.number_of_knot_points = number_of_knot_points
self.server = InteractiveMarkerServer("motion_knot_points")
self.initialize_markers()
def __del__(self):
self.server.clear()
self.server.applyChanges()
def initialize_markers(self):
# Go through each set of initial points
for p in range(len(self.initial_points)):
initial_marker = self.get_interactive_marker(self.initial_points[p][0], (1.0, 1.0, 1.0))
# format = <knot_point_group>_knot_point_<marker_number>
initial_marker.name = str(p) + "_knot_point_" + "0"
initial_marker.controls[0].interaction_mode = InteractiveMarkerControl.NONE
initial_marker.controls[0].name = "none"
self.server.insert(copy.deepcopy(initial_marker), self.ignoreFeedback)
initial_pos = self.initial_points[p][0]
for i in range(1, self.number_of_knot_points+1):
position = self.initial_points[p][i]
# The initial seed positions are sent relative to the initial marker, but they need to be in the world frame for display
position.x += initial_pos.x
position.y += initial_pos.y
position.z += initial_pos.z
#The marker color changes from red to blue from "earlier" marker to "later" marker
col = (1.0-(float(i)/float(self.number_of_knot_points+1)), 0, float(i)/float(self.number_of_knot_points+1))
int_marker = self.get_interactive_marker(copy.deepcopy(position), col)
int_marker.name = str(p) + "_knot_point_" + str(i)
self.server.insert(int_marker, self.processFeedback)
self.server.applyChanges()
def reset_initial_points(self, initial_points):
self.initial_points = initial_points
def get_marker_positions(self, relative=True):
'''
If relative is true, the returned positions will be relative to the initial position of that group
If false, they will be the marker position in the world frame
'''
#self.server.applyChanges()
#Get the current marker positions from the server marker context as a list of points
# print("Number of knot points = " + str(self.number_of_knot_points))
# print("Number of knot groups = " + str(len(self.initial_points)))
position_list = []
for p in range(len(self.initial_points)):
base_position = copy.deepcopy(self.server.marker_contexts[str(p) + "_knot_point_0"].int_marker.pose.position)
position_list.append([])
#Ignore the first marker since that is the provided initial position
for i in range(1, self.number_of_knot_points+1):
marker_name = str(p) + "_knot_point_" + str(i)
position = copy.deepcopy(self.server.marker_contexts[marker_name].int_marker.pose.position)
# print(marker_name + "'s position is " + str(position))
if relative:
position.x -= base_position.x
position.y -= base_position.y
position.z -= base_position.z
position_list[p].append(position)
return position_list
def get_interactive_marker(self, position, color):
'''
Return a control marker capable of motion along the y z plane
'''
int_marker = InteractiveMarker()
int_marker.header.frame_id = "world"
int_marker.pose.position = position
int_marker.scale = 1
int_marker.name = "_knot_point_"
int_marker.description = "yz control"
visual_marker = Marker()
visual_marker.type = Marker.SPHERE
visual_marker.scale.x = 0.05
visual_marker.scale.y = 0.05
visual_marker.scale.z = 0.05
visual_marker.color.r = color[0]
visual_marker.color.g = color[1]
visual_marker.color.b = color[2]
visual_marker.color.a = 1.0
control = InteractiveMarkerControl()
control.orientation.w = 1
control.orientation.x = 1
control.orientation.y = 0
control.orientation.z = 0
control.interaction_mode = InteractiveMarkerControl.MOVE_PLANE
control.markers.append(visual_marker)
control.always_visible = True
int_marker.controls.append(copy.deepcopy(control))
return int_marker
| 2,343 | 0 | 136 |
3d866ab2994647fdaf22f131e04df80d5e796a1f | 17,617 | py | Python | zrp/modeling/pipeline_builder.py | zestai/zrp | 14211cc90857e21a522637c31d42b0b663fcd368 | [
"Apache-2.0"
] | 14 | 2022-02-09T20:58:31.000Z | 2022-03-29T16:32:01.000Z | zrp/modeling/pipeline_builder.py | zestai/zrp | 14211cc90857e21a522637c31d42b0b663fcd368 | [
"Apache-2.0"
] | 3 | 2022-02-04T17:25:38.000Z | 2022-03-15T01:13:32.000Z | zrp/modeling/pipeline_builder.py | zestai/zrp | 14211cc90857e21a522637c31d42b0b663fcd368 | [
"Apache-2.0"
] | null | null | null | from os.path import expanduser, dirname
import pandas as pd
import numpy as np
import os
import re
import sys
import json
import joblib
import pickle
import xgboost
from xgboost import XGBClassifier
from sklearn.pipeline import Pipeline
from sklearn.compose import ColumnTransformer
from sklearn.model_selection import train_test_split
from feature_engine.imputation import MeanMedianImputer
from feature_engine.selection import SmartCorrelatedSelection, DropFeatures
from zrp.modeling.src.app_preprocessor import HandleCompoundNames
from zrp.modeling.src.acs_scaler import CustomRatios
from zrp.modeling.src.app_fe import AppFeatureEngineering, NameAggregation
from zrp.modeling.src.set_key import SetKey
from zrp.prepare.utils import load_json, load_file, save_feather, make_directory
from zrp.prepare.base import BaseZRP
from zrp.prepare.prepare import ZRP_Prepare
import warnings
warnings.filterwarnings(action='ignore')
curpath = dirname(__file__)
class ZRP_Build_Pipeline(BaseZRP):
"""
Fits a new ZRP pipeline from user input
Parameters
----------
file_path: str, optional
Path indicating where to put artifacts folder its files (pipeline, model, and supporting data), generated during intermediate steps.
zrp_model_name: str
Name of zrp_model
zrp_model_source: str
Indicates the source of zrp_modeling data to use. There are three optional sources 'block_group', 'census_tract', and 'zip_code'. By default 'census_tract' is inferred.
"""
class ZRP_Build_Model(BaseZRP):
"""
Generate as ZRP model from input data & pre-trained pipeline.
Parameters
----------
file_path: str, optional
Path indicating where to put artifacts folder its files (pipeline, model, and supporting data), generated during intermediate steps.
zrp_model_name: str
Name of zrp_model
zrp_model_source: str
Indicates the source of zrp_modeling data to use. There are three optional sources 'block_group', 'census_tract', and 'zip_code'. By default 'census_tract' is inferred.
"""
class ZRP_DataSampling(BaseZRP):
"""
Generate data splits from input data
Parameters
----------
file_path: str, optional
Path indicating where to put artifacts folder its files (pipeline, model, and supporting data), generated during intermediate steps.
zrp_model_name: str
Name of zrp_model
zrp_model_source: str
Indicates the source of zrp_modeling data to use. There are three optional sources 'block_group', 'census_tract', and 'zip_code'. By default 'census_tract' is inferred.
"""
class ZRP_Build(BaseZRP):
"""
This class builds a new custom ZRP model trained off of user input data. Supply standard ZRP requirements including name, address, and race to build your custom model-pipeline. The pipeline, model, and supporting data is saved automatically to "./artifacts/experiments/{zrp_model_name}/{zrp_model_source}/" in the support files path defined.
Parameters
----------
file_path: str
Path indicating where to put artifacts folder its files (pipeline, model, and supporting data), generated during intermediate steps.
zrp_model_name: str
Name of zrp_model.
"""
def validate_input_columns(self, data):
"""
Passes if the input data has the requisite columns to run ZRP Build.
Parameters
-----------
data: DataFrame
A pandas data frame of user input data.
"""
modeling_col_names = self.get_column_names
for name in modeling_col_names():
if name not in data.columns:
raise KeyError("Your input dataframe has incorrect columns provided. Ensure that the following data is in your input data frame: first_name, middle_name, last_name, house_number, street_address, city, state, zip_code, race. If you have provided this data, ensure that the column names for said data are either the same as the aformentioned data column names, or ensure that you have specified, via arguements, the column names for these data you have provided in your input data frame.")
return True
| 44.487374 | 503 | 0.605608 | from os.path import expanduser, dirname
import pandas as pd
import numpy as np
import os
import re
import sys
import json
import joblib
import pickle
import xgboost
from xgboost import XGBClassifier
from sklearn.pipeline import Pipeline
from sklearn.compose import ColumnTransformer
from sklearn.model_selection import train_test_split
from feature_engine.imputation import MeanMedianImputer
from feature_engine.selection import SmartCorrelatedSelection, DropFeatures
from zrp.modeling.src.app_preprocessor import HandleCompoundNames
from zrp.modeling.src.acs_scaler import CustomRatios
from zrp.modeling.src.app_fe import AppFeatureEngineering, NameAggregation
from zrp.modeling.src.set_key import SetKey
from zrp.prepare.utils import load_json, load_file, save_feather, make_directory
from zrp.prepare.base import BaseZRP
from zrp.prepare.prepare import ZRP_Prepare
import warnings
warnings.filterwarnings(action='ignore')
curpath = dirname(__file__)
class ZRP_Build_Pipeline(BaseZRP):
"""
Fits a new ZRP pipeline from user input
Parameters
----------
file_path: str, optional
Path indicating where to put artifacts folder its files (pipeline, model, and supporting data), generated during intermediate steps.
zrp_model_name: str
Name of zrp_model
zrp_model_source: str
Indicates the source of zrp_modeling data to use. There are three optional sources 'block_group', 'census_tract', and 'zip_code'. By default 'census_tract' is inferred.
"""
def __init__(self, zrp_model_source, file_path=None, zrp_model_name='zrp_0', *args, **kwargs):
super().__init__(file_path=file_path, *args, **kwargs)
self.zrp_model_name = zrp_model_name
self.zrp_model_source = zrp_model_source
self.outputs_path = os.path.join(self.out_path,
"experiments",
self.zrp_model_name,
self.zrp_model_source)
self.geo_key = 'GEOID'
def fit(self, X, y):
### Build Pipeline
print('\n---\nBuilding pipeline')
self.pipe = Pipeline(
[("Drop Features", DropFeatures(features_to_drop=['GEOID_BG', 'GEOID_CT', 'GEOID_ZIP', 'ZEST_KEY_COL'])),
("Compound Name FE",
HandleCompoundNames(last_name=self.last_name, first_name=self.first_name, middle_name=self.middle_name)),
("App FE", AppFeatureEngineering(key=self.key, geo_key=self.geo_key, first_name=self.first_name,
middle_name=self.middle_name, last_name=self.last_name, race=self.race)),
("ACS FE", CustomRatios()),
("Name Aggregation", NameAggregation(key=self.key, n_jobs=self.n_jobs)),
("Drop Features (2)", DropFeatures(features_to_drop=['GEOID'])),
("Impute", MeanMedianImputer(imputation_method="mean", variables=None)),
("Correlated Feature Selection", SmartCorrelatedSelection(method='pearson',
threshold=.95))],
verbose=True
)
#### Fit the Pipeline
print('\n---\nFitting pipeline')
self.pipe.fit(X, y[self.race])
return self
def transform(self, X):
make_directory(self.outputs_path)
# Save pipeline
pickle.dump(self.pipe, open(os.path.join(self.outputs_path, 'pipe.pkl'), 'wb'))
#### Transform
##### This step creates the feature engineering data
print('\n---\nTransforming FE data')
X_train_fe = self.pipe.transform(X=X)
# Save train fe data
print('\n---\nSaving FE data')
save_feather(X_train_fe, self.outputs_path, f"train_fe_data.feather")
return (X_train_fe)
class ZRP_Build_Model(BaseZRP):
"""
Generate as ZRP model from input data & pre-trained pipeline.
Parameters
----------
file_path: str, optional
Path indicating where to put artifacts folder its files (pipeline, model, and supporting data), generated during intermediate steps.
zrp_model_name: str
Name of zrp_model
zrp_model_source: str
Indicates the source of zrp_modeling data to use. There are three optional sources 'block_group', 'census_tract', and 'zip_code'. By default 'census_tract' is inferred.
"""
def __init__(self, zrp_model_source, file_path=None, zrp_model_name='zrp_0', *args, **kwargs):
super().__init__(file_path=file_path, *args, **kwargs)
self.zrp_model_name = zrp_model_name
self.zrp_model_source = zrp_model_source
self.outputs_path = os.path.join(self.out_path,
"experiments",
self.zrp_model_name,
self.zrp_model_source)
self.geo_key = 'GEOID'
def fit(self, X, y):
### Build the zrp_model
##### specify zrp_model parameters
print('\n---\nbuilding zrp_model')
opt_params = {'gamma': 5,
'learning_rate': 0.01,
'max_depth': 3,
'min_child_weight': 500,
'n_estimators': 2000,
'subsample': 0.20}
##### Initialize the zrp_model
self.zrp_model = XGBClassifier(objective='multi:softprob',
num_class=len(y[self.race].unique()),
**opt_params)
##### Fit
print('\n---\nfitting zrp_model')
self.zrp_model.fit(
X, y[self.race],
sample_weight=y.sample_weight
)
self.y_unique = y[self.race].unique()
self.y_unique.sort()
make_directory(self.outputs_path)
# Save zrp_model
pickle.dump(self.zrp_model, open(os.path.join(self.outputs_path, "zrp_model.pkl"), "wb"))
try:
self.zrp_model.save_model(os.path.join(self.outputs_path, "model.txt"))
except:
pass
return self
def transform(self, X):
##### Return Race Probabilities
print('\n---\nGenerate & save race predictions (labels)')
y_hat_train = pd.DataFrame({'race': self.zrp_model.predict(X)}, index=X.index)
y_hat_train.reset_index(drop=False).to_feather(os.path.join(self.outputs_path, f"train_proxies.feather"))
print('\n---\nGenerate & save race predictions (probabilities)')
y_phat_train = pd.DataFrame(self.zrp_model.predict_proba(X), index=X.index)
y_phat_train.columns = self.y_unique
y_phat_train.reset_index(drop=False).to_feather(os.path.join(self.outputs_path, f"train_proxy_probs.feather"))
return (y_hat_train, y_phat_train)
class ZRP_DataSampling(BaseZRP):
"""
Generate data splits from input data
Parameters
----------
file_path: str, optional
Path indicating where to put artifacts folder its files (pipeline, model, and supporting data), generated during intermediate steps.
zrp_model_name: str
Name of zrp_model
zrp_model_source: str
Indicates the source of zrp_modeling data to use. There are three optional sources 'block_group', 'census_tract', and 'zip_code'. By default 'census_tract' is inferred.
"""
def __init__(self, zrp_model_source, file_path=None, zrp_model_name='zrp_0', *args, **kwargs):
super().__init__(file_path=file_path, *args, **kwargs)
self.zrp_model_name = zrp_model_name
self.zrp_model_source = zrp_model_source
self.outputs_path = os.path.join(self.out_path,
"experiments",
self.zrp_model_name,
self.zrp_model_source)
self.geo_key = 'GEOID'
def fit(self):
return self
def transform(self, data):
make_directory(self.outputs_path)
df = data.copy()
# Keep geocoded data & data with labels
# df = df[(df[self.geo_key].notna()) & (df[self.geo_key]!="None")]
df = df[(df[self.race].notna()) & (df[self.race] != "None")]
df_keys = list(df.index.unique())
# sample weights normalizing to us population
aapi_ratio = df[self.race].value_counts(normalize=True).AAPI if 'AAPI' in df[self.race] else 1
black_ratio = df[self.race].value_counts(normalize=True).BLACK if 'BLACK' in df[self.race] else 1
hispanic_ratio = df[self.race].value_counts(normalize=True).HISPANIC if 'HISPANIC' in df[self.race] else 1
aian_ratio = df[self.race].value_counts(normalize=True).AIAN if 'AIAN' in df[self.race] else 1
other_ratio = df[self.race].value_counts(normalize=True).OTHER if 'OTHER' in df[self.race] else 1
white_ratio = df[self.race].value_counts(normalize=True).WHIATE if 'WHIATE' in df[self.race] else 1
df["sample_weight"] = df[self.race].map(
{
"AAPI": (0.061 / 1.022) / aapi_ratio,
"BLACK": (0.134 / 1.022) / black_ratio,
"HISPANIC": (0.185 / 1.022) / hispanic_ratio,
"AIAN": (0.013 / 1.022) / aian_ratio,
"OTHER": (0.028 / 1.022) / other_ratio,
"WHITE": (0.601 / 1.022) / white_ratio,
}
)
# Split working data
df.reset_index(inplace=True)
X = df.copy()
X.drop([self.race, "sample_weight"], axis=1, inplace=True)
if self.geo_key == df.index.name:
y = df[[self.geo_key, self.race, "sample_weight"]]
else:
y = df[[self.key, self.geo_key, self.race, "sample_weight"]]
# Train (80) + Test(20)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.20, random_state=9)
save_feather(X_train, self.outputs_path, f"X_train.feather")
save_feather(y_train, self.outputs_path, f"y_train.feather")
save_feather(X_test, self.outputs_path, f"X_test.feather")
save_feather(y_test, self.outputs_path, f"y_test.feather")
return (X_train, X_test, y_train, y_test)
class ZRP_Build(BaseZRP):
"""
This class builds a new custom ZRP model trained off of user input data. Supply standard ZRP requirements including name, address, and race to build your custom model-pipeline. The pipeline, model, and supporting data is saved automatically to "./artifacts/experiments/{zrp_model_name}/{zrp_model_source}/" in the support files path defined.
Parameters
----------
file_path: str
Path indicating where to put artifacts folder its files (pipeline, model, and supporting data), generated during intermediate steps.
zrp_model_name: str
Name of zrp_model.
"""
def __init__(self, file_path=None, zrp_model_name='zrp_0', *args, **kwargs):
super().__init__(file_path=file_path, *args, **kwargs)
self.zrp_model_name = zrp_model_name
self.geo_key = 'GEOID'
def validate_input_columns(self, data):
"""
Passes if the input data has the requisite columns to run ZRP Build.
Parameters
-----------
data: DataFrame
A pandas data frame of user input data.
"""
modeling_col_names = self.get_column_names
for name in modeling_col_names():
if name not in data.columns:
raise KeyError("Your input dataframe has incorrect columns provided. Ensure that the following data is in your input data frame: first_name, middle_name, last_name, house_number, street_address, city, state, zip_code, race. If you have provided this data, ensure that the column names for said data are either the same as the aformentioned data column names, or ensure that you have specified, via arguements, the column names for these data you have provided in your input data frame.")
return True
def fit(self):
return self
def transform(self, data):
cur_path = dirname(__file__)
self.validate_input_columns(data)
# Prepare data
data = data.rename(columns = {self.first_name : "first_name",
self.middle_name : "middle_name",
self.last_name : "last_name",
self.house_number : "house_number",
self.street_address : "street_address",
self.city : "city",
self.zip_code : "zip_code",
self.state : "state",
self.block_group : "block_group",
self.census_tract : "census_tract",
self.race: "race"
}
)
data = data.drop_duplicates(subset=['ZEST_KEY'])
z_prepare = ZRP_Prepare(file_path=self.file_path)
z_prepare.fit(data)
prepared_data = z_prepare.transform(data)
ft_list_source_map = {'census_tract': 'ct', 'block_group': 'bg', 'zip_code': 'zp'}
source_to_geoid_level_map = {'census_tract': 'GEOID_CT', 'block_group': 'GEOID_BG', 'zip_code': 'GEOID_ZIP'}
sources = ['block_group', 'census_tract', 'zip_code']
for source in sources:
print("=========================")
print(f"BUILDING {source} MODEL.")
print("=========================\n")
outputs_path = os.path.join(self.out_path,
"experiments",
self.zrp_model_name,
source)
make_directory(outputs_path)
# Get features to drop from prepared data
print(f"Dropping {list(set(sources).difference({source}))} features")
features_to_keep_list = load_json(os.path.join(cur_path, f'feature_list_{ft_list_source_map[source]}.json'))
features_to_keep_list.append('race')
print(" ...Len features to keep list: ", len(features_to_keep_list))
# Get records that can be geocoded down to given source geo level
geoid_level = source_to_geoid_level_map[source]
relevant_source_data = prepared_data[~prepared_data[geoid_level].isna()]
print(" ...Data shape pre feature drop: ", relevant_source_data.shape)
relevant_source_data = relevant_source_data[relevant_source_data.columns.intersection(features_to_keep_list)]
print(" ...Data shape post feature drop: ", relevant_source_data.shape)
# Data Sampling
dsamp = ZRP_DataSampling(file_path=self.file_path, zrp_model_source=source, zrp_model_name=self.zrp_model_name)
X_train, X_test, y_train, y_test = dsamp.transform(relevant_source_data)
data = data.drop_duplicates(subset=['ZEST_KEY'])
print("Post-sampling shape: ", data.shape)
print("\n")
print("Unique train labels: ", y_train['race'].unique())
print("Unique test labels: ", y_test['race'].unique())
y_train = y_train.drop_duplicates(self.key)
train_keys = list(y_train[self.key].values)
X_train = X_train[X_train[self.key].isin(train_keys)]
X_train = X_train.drop_duplicates(self.key)
y_train[[self.geo_key, self.key]] = y_train[[self.geo_key, self.key]].astype(str)
sample_weights = y_train[[self.key, 'sample_weight']].copy()
if X_train.shape[0] != y_train.shape[0]:
raise AssertionError("Unexpected mismatch between shapes. There are duplicates in the data, please remove duplicates & resubmit the data")
#### Set Index
X_train.set_index(self.key, inplace=True)
y_train.set_index(self.key, inplace=True)
sample_weights.set_index(self.key, inplace=True)
X_train.sort_index(inplace=True)
y_train.sort_index(inplace=True)
sample_weights.sort_index(inplace=True)
feature_cols = list(set(X_train.columns) - set([self.key, self.geo_key, 'GEOID_BG', 'GEOID_CT',
'GEOID_ZIP', "first_name", "middle_name",
"last_name", 'ZEST_KEY_COL']))
print(' train to numeric')
X_train[feature_cols] = X_train[feature_cols].apply(pd.to_numeric, errors='coerce')
print('\n---\nSaving raw data')
save_feather(X_train, outputs_path, "train_raw_data.feather")
save_feather(y_train, outputs_path, "train_raw_targets.feather")
# Build Pipeline
build_pipe = ZRP_Build_Pipeline(file_path=self.file_path, zrp_model_source=source, zrp_model_name=self.zrp_model_name)
build_pipe.fit(X_train, y_train)
X_train_fe = build_pipe.transform(X_train)
# Build Model
build_model = ZRP_Build_Model(file_path=self.file_path, zrp_model_source=source, zrp_model_name=self.zrp_model_name)
build_model.fit(X_train_fe, y_train)
print(f"Completed building {source} model.")
print("\n##############################")
print("Custom ZRP model build complete.")
| 13,068 | 0 | 328 |
df8adcb642168abbf747644fc75b1dd0e5af9251 | 53 | py | Python | pasttrec/__init__.py | HADES-Cracovia/pasttrectools | c675da2dc2fa09a55f6d181d85db19b7fe96b8e3 | [
"MIT"
] | null | null | null | pasttrec/__init__.py | HADES-Cracovia/pasttrectools | c675da2dc2fa09a55f6d181d85db19b7fe96b8e3 | [
"MIT"
] | null | null | null | pasttrec/__init__.py | HADES-Cracovia/pasttrectools | c675da2dc2fa09a55f6d181d85db19b7fe96b8e3 | [
"MIT"
] | null | null | null | from .pasttrec import *
from .communication import *
| 17.666667 | 28 | 0.773585 | from .pasttrec import *
from .communication import *
| 0 | 0 | 0 |
f19a82bc90283af620ba726af0d67a2df3d1daf2 | 4,997 | py | Python | mumbleBot.py | zorodc/py-mumbot | 7ca5c2295d786852e5d8bcab50dc582ef5bb1de1 | [
"0BSD"
] | null | null | null | mumbleBot.py | zorodc/py-mumbot | 7ca5c2295d786852e5d8bcab50dc582ef5bb1de1 | [
"0BSD"
] | null | null | null | mumbleBot.py | zorodc/py-mumbot | 7ca5c2295d786852e5d8bcab50dc582ef5bb1de1 | [
"0BSD"
] | null | null | null | #!/usr/bin/env python3
# depends on 'pymumble'
# A mumble bot, plays music, tells fortunes.
# Uses youtube-dl as a backend.
import subprocess
import wave
from pymumble_py3.mumble import Mumble
from pymumble_py3.callbacks import *
from subprocess import call
from sys import argv
from os import remove
from os import listdir
from os.path import join
# Helpers for command functions
def dynamicCall(function, alist):
"""Decompress a list into arguments dynamically."""
try:
return function(*alist)
except TypeError:
send_message("Wrong number of arguments.")
# Command functions
# Globals
conn = None # Initialized later
commands = {
"debug" :(lambda alist, _:debug(alist)),
"stream" :(lambda alist, _:stream(alist)),
"stop" :(lambda alist, _: dynamicCall(stop, alist)),
"fortune":(lambda alist, _: dynamicCall(fortune, alist)),
"summon" :(lambda alist, m: dynamicCall(summon, [m]+alist))
}
# Utility functions
def send_message(message):
""" Send a message to the current channel of the bot."""
conn.channels[conn.users.myself['channel_id']]\
.send_text_message(message)
if __name__ == "__main__":
# Local connection variables
host = "" # server is currently mandatory: no default
port = "" # default port: 64738
uname = "" # username is currently mandatory: no default
password = ""
if (len(argv) < 3):
usage()
(host, port) = pullPair(argv[1])
if not port: port = 64738 # default
(uname, password) = pullPair(argv[2])
conn = Mumble(host, uname, int(port), password, debug=False)
# Init behavior through the usage of callbacks.
conn.callbacks.set_callback(PYMUMBLE_CLBK_CONNECTED,
lambda:print("Connection successful!"))
conn.callbacks.set_callback(PYMUMBLE_CLBK_TEXTMESSAGERECEIVED,
lambda x:processMessage(x))
# Connect to server
print("Connecting...")
conn.run()
| 31.626582 | 101 | 0.61657 | #!/usr/bin/env python3
# depends on 'pymumble'
# A mumble bot, plays music, tells fortunes.
# Uses youtube-dl as a backend.
import subprocess
import wave
from pymumble_py3.mumble import Mumble
from pymumble_py3.callbacks import *
from subprocess import call
from sys import argv
from os import remove
from os import listdir
from os.path import join
# Helpers for command functions
def dynamicCall(function, alist):
"""Decompress a list into arguments dynamically."""
try:
return function(*alist)
except TypeError:
send_message("Wrong number of arguments.")
# Command functions
def debug(alst):
def listToString(lst):
x = ""
for i in lst:
x += str(i)
x += ' '
return x
print(listToString(alst))
def stream(url):
def findLastDownloadedFile():
try:
return join('/tmp',
[f for f in listdir('/tmp')
if f.find('video.') == 0][0])
except IndexError:
return ''
# In case another thread is downloading something.
try:
remove(findLastDownloadedFile())
except FileNotFoundError:pass
try:
if (len(url) > 1):
if url[1].find('href') != -1:
url = url[1]
url = url[url.find('"')+1:url.find('">')]
else: raise Error
elif (len(url) == 1): url = url[0]
else: raise BaseException
except BaseException:
send_message('Malformed or incorrect number of arguments to stream.')
return
send_message('Calling youtube-dl.')
if call(['youtube-dl', '-x', url, '-o', '/tmp/video.%(ext)s']) == 0:
send_message('Success downloading video.')
else: send_message('Failure downloading video.')
call(['ffmpeg', '-i', findLastDownloadedFile(), '-ac', '1',
'/tmp/output.wav'])
try:
snd = wave.open('/tmp/output.wav')
send_message('File opened and converted successfully.')
except FileNotFoundError: # ffmpeg failed, fail silently
send_message('Conversion failed.')
return
conn.sound_output.clear_buffer()
conn.sound_output.add_sound(snd.readframes(snd.getnframes()))
snd.close()
remove('/tmp/output.wav')
def stop():
conn.sound_output.clear_buffer()
def fortune():
send_message(subprocess.run(['fortune'], stdout=subprocess.PIPE, universal_newlines=True).stdout)
def summon(originalMessage):
user = conn.users[originalMessage.actor]
send_message('Following ' + user.get_property('name') + '.')
conn.channels[user.get_property('channel_id')].move_in()
# Globals
conn = None # Initialized later
commands = {
"debug" :(lambda alist, _:debug(alist)),
"stream" :(lambda alist, _:stream(alist)),
"stop" :(lambda alist, _: dynamicCall(stop, alist)),
"fortune":(lambda alist, _: dynamicCall(fortune, alist)),
"summon" :(lambda alist, m: dynamicCall(summon, [m]+alist))
}
# Utility functions
def usage():
print(argv[0] + " <server>[:<port>] <username>[:<password>]")
exit(1)
def pullPair(string):
try:
idx = string.index(':')
return (string[:idx], string[idx+1:])
except ValueError: # no ':' in supplied string
return (string, "")
def callCommand(commandString, argumentList, originalMessage):
if commands.get(commandString):
commands.get(commandString)(argumentList, originalMessage)
else:
send_message("Command '!" + commandString +
"' is not a defined command.")
def processMessage(message):
messageString = message.message
print("`"+conn.users[message.actor].get_property('name')+": "+
messageString)
if messageString.startswith('!'): # command character
command = messageString[1:].split(' ')
print("Calling command" + str(command) + "...")
callCommand(command[0], command[1:], message)
def send_message(message):
""" Send a message to the current channel of the bot."""
conn.channels[conn.users.myself['channel_id']]\
.send_text_message(message)
if __name__ == "__main__":
# Local connection variables
host = "" # server is currently mandatory: no default
port = "" # default port: 64738
uname = "" # username is currently mandatory: no default
password = ""
if (len(argv) < 3):
usage()
(host, port) = pullPair(argv[1])
if not port: port = 64738 # default
(uname, password) = pullPair(argv[2])
conn = Mumble(host, uname, int(port), password, debug=False)
# Init behavior through the usage of callbacks.
conn.callbacks.set_callback(PYMUMBLE_CLBK_CONNECTED,
lambda:print("Connection successful!"))
conn.callbacks.set_callback(PYMUMBLE_CLBK_TEXTMESSAGERECEIVED,
lambda x:processMessage(x))
# Connect to server
print("Connecting...")
conn.run()
| 2,756 | 0 | 203 |
d9d69ee997a23a52b4855205b3f28386526dabeb | 267 | py | Python | Coursera/Week.7/Task.13.py | v1nnyb0y/Coursera.BasePython | bbfb3184dc27a4cdb16b087123890991afbc5506 | [
"MIT"
] | null | null | null | Coursera/Week.7/Task.13.py | v1nnyb0y/Coursera.BasePython | bbfb3184dc27a4cdb16b087123890991afbc5506 | [
"MIT"
] | null | null | null | Coursera/Week.7/Task.13.py | v1nnyb0y/Coursera.BasePython | bbfb3184dc27a4cdb16b087123890991afbc5506 | [
"MIT"
] | null | null | null | '''
Страны и города
'''
n = int(input())
cities = dict()
for line in range(n):
line = input()
line = line.split()
country = line[0]
for city in line[1:]:
cities[city] = country
m = int(input())
for city in range(m):
print(cities[input()])
| 17.8 | 30 | 0.569288 | '''
Страны и города
'''
n = int(input())
cities = dict()
for line in range(n):
line = input()
line = line.split()
country = line[0]
for city in line[1:]:
cities[city] = country
m = int(input())
for city in range(m):
print(cities[input()])
| 0 | 0 | 0 |
807c2d99123c1b54f4c2ef1d337b46a0661b70cf | 4,936 | py | Python | migrate_locations_to_concepts.py | ecohealthalliance/concept-tools | 865a7ceb94ca8d927eb9a7ed53fcb6c1e1a68f53 | [
"Apache-2.0"
] | null | null | null | migrate_locations_to_concepts.py | ecohealthalliance/concept-tools | 865a7ceb94ca8d927eb9a7ed53fcb6c1e1a68f53 | [
"Apache-2.0"
] | null | null | null | migrate_locations_to_concepts.py | ecohealthalliance/concept-tools | 865a7ceb94ca8d927eb9a7ed53fcb6c1e1a68f53 | [
"Apache-2.0"
] | null | null | null | #!/usr/bin/env python
"""
Combine data from the
crosswiki_dictionary
crosswiki_invdict
dbpedia_geo
geoname_links
You'll want to make an index on the geonameid property in the
geoanmes.allCountries collection, e.g.:
db.allCountries.ensureIndex({geonameid: 1})
"""
import sys
import re
import codecs
import argparse
import urllib
from pymongo import MongoClient
if __name__ == '__main__':
lm = LocationMigrator()
lm.migrate()
| 30.469136 | 85 | 0.558752 | #!/usr/bin/env python
"""
Combine data from the
crosswiki_dictionary
crosswiki_invdict
dbpedia_geo
geoname_links
You'll want to make an index on the geonameid property in the
geoanmes.allCountries collection, e.g.:
db.allCountries.ensureIndex({geonameid: 1})
"""
import sys
import re
import codecs
import argparse
import urllib
from pymongo import MongoClient
class LocationMigrator():
client = MongoClient('mongodb://localhost:27017/')
db = client.concepts
dbpedia_geo_coll = db.dbpedia_geo
wikidata_geo_coll = db.wikidata_geo
geoname_links_coll = db.geoname_links
crosswiki_dictionary = db.crosswiki_dictionary
forms_coll = db.forms
concepts_coll = db.concepts
all_countries_coll = client.geonames.allCountries
concepts_coll.ensure_index('type')
dbpedia_geo_coll.ensure_index('geonameid')
def migrate(self):
dict_results = self.crosswiki_dictionary.find(timeout=False)
i = 0
for dict_result in dict_results:
location_concepts = []
for concept in dict_result['concepts']:
if self.has_geo_info(concept['id']):
location_concepts.append(
{ 'id': concept['id'],
'counts': concept['counts'],
'prob': concept['prob'] } )
if len(location_concepts) > 0:
self.forms_coll.insert(
{ '_id': dict_result['_id'],
'counts': dict_result['counts'],
'concepts': location_concepts } )
i += 1
if i % 1000 == 0:
print i
print 'result:', dict_result
print "location_concepts", location_concepts
print
def has_geo_info(self, concept):
"""Get any geo information we have for a concept title. Geo info could
be in the geonames db, linked via the geoname_links collection, or it
could be in the dbpedia_geo collection.
There are three ways know that a given concept is a location for which
we have geo information:
- we've already added it to concepts with type "location"
- we can link it up via the geoname_links collection
- we have a DBPedia geo record for it
This function determines whether we have any geo information for a concept,
creates the concepts collection record if necessary, and returns a Boolean
depending on whether or not there is any geo info.
"""
if self.concepts_coll.find_one({'_id': concept, 'type': 'location'}):
return True
else:
geoname_record = self.get_geoname_record(concept)
if geoname_record:
self.concepts_coll.insert(
{ '_id': concept,
'type': 'location',
'lat': geoname_record['lattitude'],
'lon': geoname_record['longitude'],
'geoname_id': long(geoname_record['geonameid']) } )
return True
else:
dbpedia_coords = self.get_dbpedia_coords(concept)
if dbpedia_coords:
self.concepts_coll.insert(
{ '_id': concept,
'type': 'location',
'lat': dbpedia_coords[0],
'lon': dbpedia_coords[1] } )
return True
else:
wikidata_coords = self.get_wikidata_coords(concept)
if wikidata_coords:
self.concepts_coll.insert(
{ '_id': concept,
'type': 'location',
'lat': wikidata_coords[0],
'lon': wikidata_coords[1] } )
return True
return False
def get_dbpedia_coords(self, concept):
result = self.dbpedia_geo_coll.find_one({'_id': concept})
if result:
return (result['lat'], result['lon'])
else:
return None
def get_wikidata_coords(self, concept):
result = self.wikidata_geo_coll.find_one({'_id': concept})
if result:
return (result['lat'], result['lon'])
else:
return None
def get_geoname_record(self, concept):
geoname_id = self.get_geoname_id(concept)
if geoname_id:
result = self.all_countries_coll.find_one({'geonameid': str(geoname_id)})
else:
return None
def get_geoname_id(self, concept):
result = self.geoname_links_coll.find_one({'_id': concept})
if result:
return result['geoname_id']
else:
return None
if __name__ == '__main__':
lm = LocationMigrator()
lm.migrate()
| 1,694 | 2,762 | 23 |
cb7c406903017ff9130aec1ce2d523b0aadd359c | 841 | py | Python | slack-consumer/slack.py | VirtualSatai/humble-bot | 2f83642a319d933da46427b5b8090149576e2c76 | [
"MIT"
] | null | null | null | slack-consumer/slack.py | VirtualSatai/humble-bot | 2f83642a319d933da46427b5b8090149576e2c76 | [
"MIT"
] | 10 | 2018-05-15T08:07:32.000Z | 2018-05-21T08:04:04.000Z | slack-consumer/slack.py | VirtualSatai/humble-bot | 2f83642a319d933da46427b5b8090149576e2c76 | [
"MIT"
] | 1 | 2018-05-17T13:26:55.000Z | 2018-05-17T13:26:55.000Z | import json
import os
import time
import zmq
from slackclient import SlackClient
from zmq import Context
SLACK_CHANNEL_ID = os.environ["SLACK_CHANNEL_ID"]
SLACK_BOT_TOKEN = os.environ["SLACK_BOT_TOKEN"]
TOPICFILTER = "1"
TIMEOUT = 1
ctx = Context()
print("Connecting to the producer")
socket = ctx.socket(zmq.SUB)
socket.connect("tcp://product-consumer:5558")
socket.setsockopt_string(zmq.SUBSCRIBE, TOPICFILTER)
sc = SlackClient(SLACK_BOT_TOKEN)
while True:
multipart = socket.recv_multipart()
topic = multipart[0]
data = multipart[1]
item = json.loads(data)
message = f"{item['name']} costs {item['price'][0]} {item['price'][1]} at {item['url']}"
print(f"Posting: {message}")
sc.api_call(
"chat.postMessage",
channel=SLACK_CHANNEL_ID,
text=message,
)
time.sleep(TIMEOUT)
| 22.131579 | 92 | 0.69679 | import json
import os
import time
import zmq
from slackclient import SlackClient
from zmq import Context
SLACK_CHANNEL_ID = os.environ["SLACK_CHANNEL_ID"]
SLACK_BOT_TOKEN = os.environ["SLACK_BOT_TOKEN"]
TOPICFILTER = "1"
TIMEOUT = 1
ctx = Context()
print("Connecting to the producer")
socket = ctx.socket(zmq.SUB)
socket.connect("tcp://product-consumer:5558")
socket.setsockopt_string(zmq.SUBSCRIBE, TOPICFILTER)
sc = SlackClient(SLACK_BOT_TOKEN)
while True:
multipart = socket.recv_multipart()
topic = multipart[0]
data = multipart[1]
item = json.loads(data)
message = f"{item['name']} costs {item['price'][0]} {item['price'][1]} at {item['url']}"
print(f"Posting: {message}")
sc.api_call(
"chat.postMessage",
channel=SLACK_CHANNEL_ID,
text=message,
)
time.sleep(TIMEOUT)
| 0 | 0 | 0 |
1c875668018aac49c11b481f81f0470a36e53b7e | 4,548 | py | Python | extract_img.py | JadeMaveric/image-collage-maker | b75bb63460e21e773ed681ad09aad6f3bcd4798e | [
"MIT"
] | 58 | 2018-11-03T23:05:22.000Z | 2022-03-22T20:03:50.000Z | extract_img.py | JadeMaveric/image-collage-maker | b75bb63460e21e773ed681ad09aad6f3bcd4798e | [
"MIT"
] | 6 | 2018-12-01T02:45:08.000Z | 2022-01-30T23:10:52.000Z | extract_img.py | JadeMaveric/image-collage-maker | b75bb63460e21e773ed681ad09aad6f3bcd4798e | [
"MIT"
] | 10 | 2018-11-29T20:59:31.000Z | 2021-11-18T14:28:38.000Z | """
extract_img.py
get images from WeChat friends list.
"""
import itchat
import os
import pickle
from concurrent.futures import *
import concurrent.futures
import time
from tqdm import tqdm
from math import ceil
import argparse
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--dir", default="img", type=str,
help="Folder to store the downloaded images")
parser.add_argument("--type", type=str,
choices=["self", "chatroom"], default="self")
parser.add_argument("--name", type=str,
help="Specify the chatroom name if type=chatroom")
parser.add_argument("--clean", action="store_true",
help="Clean the cache before saving")
args = parser.parse_args()
download_dir = args.dir
if args.type == "self":
print("Logging in...")
itchat.auto_login(hotReload=True)
print("Loading contact...")
friends = itchat.get_friends(update=True)
download = download_friend
elif args.type == "chatroom":
assert len(args.name) > 0, "You must provide a chatroom name!"
print("Logging in...")
itchat.auto_login(hotReload=True)
print("Getting chatrooms...")
chatrooms = itchat.get_chatrooms(update=True)
chatroom = get_chatroom_by_name(args.name, chatrooms)
assert chatroom is not None, "Chatroom \"{}\" not found".format(
args.name)
print("Updating chatroom...")
itchat.update_chatroom(chatroom['UserName'], True)
# fetch the chatroom data again
chatroom = get_chatroom_by_name(args.name, itchat.get_chatrooms())
friends = chatroom['MemberList']
download = download_chatroom_member
else:
raise Exception("Invalid argument")
if not os.path.isdir(download_dir):
os.mkdir(download_dir)
if os.path.isfile(os.path.join(download_dir, "cache.pkl")) and not args.clean:
downloaded = pickle.load(
open(os.path.join(download_dir, "cache.pkl"), "rb"))
assert type(downloaded) == dict
else:
downloaded = {}
num_friends = len(friends)
max_wait_time = 60
while len(downloaded) < len(friends):
available_numbers = [i for i in range(
num_friends) if i not in downloaded.values()]
if len(downloaded) > 0:
print(available_numbers)
pool = ThreadPoolExecutor(len(available_numbers))
# use multi-threading to accelerate the download process
f = []
counter = 0
for friend in friends:
if not friend['UserName'] in downloaded:
f.append(pool.submit(
download, (friend['UserName'], available_numbers[counter], download_dir)))
counter += 1
start_time = time.clock()
for i, future in tqdm(enumerate(f), total=len(f), desc="[Downloading images]", unit="imgs"):
try:
if time.clock() - start_time > max_wait_time:
user_name, idx, _ = future.result(0)
else:
user_name, idx, _ = future.result(
ceil(max_wait_time - time.clock() + start_time))
downloaded[user_name] = idx
except concurrent.futures.TimeoutError:
print("\nTimeout when downloading the head image of",
friends[available_numbers[i]]['NickName'])
if len(downloaded) < len(friends):
print("Warning: Failed to download some of the images")
print("Retrying...")
pickle.dump(downloaded, open(
os.path.join(download_dir, "cache.pkl"), "wb"))
print("Success")
exit(0)
| 33.940299 | 101 | 0.593008 | """
extract_img.py
get images from WeChat friends list.
"""
import itchat
import os
import pickle
from concurrent.futures import *
import concurrent.futures
import time
from tqdm import tqdm
from math import ceil
import argparse
def download_friend(args):
user_name, image_id, download_dir = args
itchat.get_head_img(userName=user_name, picDir=os.path.join(
download_dir, "{}.jpg".format(image_id)))
return args
def download_chatroom_member(args):
global chatroom
user_name, image_id, download_dir = args
itchat.get_head_img(userName=user_name, chatroomUserName=chatroom['UserName'],
picDir=os.path.join(download_dir, '%d.png' % image_id))
return args
def get_chatroom_by_name(name, chatrooms):
for chatroom in chatrooms:
if chatroom['NickName'] == name:
return chatroom
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--dir", default="img", type=str,
help="Folder to store the downloaded images")
parser.add_argument("--type", type=str,
choices=["self", "chatroom"], default="self")
parser.add_argument("--name", type=str,
help="Specify the chatroom name if type=chatroom")
parser.add_argument("--clean", action="store_true",
help="Clean the cache before saving")
args = parser.parse_args()
download_dir = args.dir
if args.type == "self":
print("Logging in...")
itchat.auto_login(hotReload=True)
print("Loading contact...")
friends = itchat.get_friends(update=True)
download = download_friend
elif args.type == "chatroom":
assert len(args.name) > 0, "You must provide a chatroom name!"
print("Logging in...")
itchat.auto_login(hotReload=True)
print("Getting chatrooms...")
chatrooms = itchat.get_chatrooms(update=True)
chatroom = get_chatroom_by_name(args.name, chatrooms)
assert chatroom is not None, "Chatroom \"{}\" not found".format(
args.name)
print("Updating chatroom...")
itchat.update_chatroom(chatroom['UserName'], True)
# fetch the chatroom data again
chatroom = get_chatroom_by_name(args.name, itchat.get_chatrooms())
friends = chatroom['MemberList']
download = download_chatroom_member
else:
raise Exception("Invalid argument")
if not os.path.isdir(download_dir):
os.mkdir(download_dir)
if os.path.isfile(os.path.join(download_dir, "cache.pkl")) and not args.clean:
downloaded = pickle.load(
open(os.path.join(download_dir, "cache.pkl"), "rb"))
assert type(downloaded) == dict
else:
downloaded = {}
num_friends = len(friends)
max_wait_time = 60
while len(downloaded) < len(friends):
available_numbers = [i for i in range(
num_friends) if i not in downloaded.values()]
if len(downloaded) > 0:
print(available_numbers)
pool = ThreadPoolExecutor(len(available_numbers))
# use multi-threading to accelerate the download process
f = []
counter = 0
for friend in friends:
if not friend['UserName'] in downloaded:
f.append(pool.submit(
download, (friend['UserName'], available_numbers[counter], download_dir)))
counter += 1
start_time = time.clock()
for i, future in tqdm(enumerate(f), total=len(f), desc="[Downloading images]", unit="imgs"):
try:
if time.clock() - start_time > max_wait_time:
user_name, idx, _ = future.result(0)
else:
user_name, idx, _ = future.result(
ceil(max_wait_time - time.clock() + start_time))
downloaded[user_name] = idx
except concurrent.futures.TimeoutError:
print("\nTimeout when downloading the head image of",
friends[available_numbers[i]]['NickName'])
if len(downloaded) < len(friends):
print("Warning: Failed to download some of the images")
print("Retrying...")
pickle.dump(downloaded, open(
os.path.join(download_dir, "cache.pkl"), "wb"))
print("Success")
exit(0)
| 572 | 0 | 75 |
f91dd51da7bac4dbb222349c288f50dcaf097cd6 | 1,337 | py | Python | digsby/src/tests/digsby_unittest.py | ifwe/digsby | f5fe00244744aa131e07f09348d10563f3d8fa99 | [
"Python-2.0"
] | 35 | 2015-08-15T14:32:38.000Z | 2021-12-09T16:21:26.000Z | digsby/src/tests/digsby_unittest.py | niterain/digsby | 16a62c7df1018a49eaa8151c0f8b881c7e252949 | [
"Python-2.0"
] | 4 | 2015-09-12T10:42:57.000Z | 2017-02-27T04:05:51.000Z | digsby/src/tests/digsby_unittest.py | niterain/digsby | 16a62c7df1018a49eaa8151c0f8b881c7e252949 | [
"Python-2.0"
] | 15 | 2015-07-10T23:58:07.000Z | 2022-01-23T22:16:33.000Z | import wx
import unittest
try:
_
except NameError:
import gettext
gettext.install('Digsby')
if getattr(wx, 'WXPY', False):
wx.WindowClass = wx._Window
else:
wx.WindowClass = wx.Window
try:
sentinel
except NameError:
import bootstrap
bootstrap.install_sentinel()
test_main = unittest.main
| 21.564516 | 58 | 0.618549 | import wx
import unittest
try:
_
except NameError:
import gettext
gettext.install('Digsby')
if getattr(wx, 'WXPY', False):
wx.WindowClass = wx._Window
else:
wx.WindowClass = wx.Window
try:
sentinel
except NameError:
import bootstrap
bootstrap.install_sentinel()
class TestCase(unittest.TestCase):
def setUp(self):
if wx.GetApp() is None:
self._init_once()
def _init_once(self):
global app
from tests.testapp import testapp
app = testapp()
def run(self, result=None):
if result is None:
self.result = self.defaultTestResult()
else:
self.result = result
return unittest.TestCase.run(self, result)
def expect(self, val, msg=None):
'''
Like TestCase.assert_, but doesn't halt the test.
'''
try:
self.assert_(val, msg)
except:
self.result.addFailure(self, self._exc_info())
def expectEqual(self, first, second, msg=None):
try:
self.failUnlessEqual(first, second, msg)
except:
self.result.addFailure(self, self._exc_info())
expect_equal = expectEqual
assert_equal = unittest.TestCase.assertEqual
assert_raises = unittest.TestCase.assertRaises
test_main = unittest.main
| 492 | 497 | 23 |
e280af5bb76f7ca4c74e7ba4975070d6c87d5940 | 12,742 | py | Python | src/wm_interpreter_node.py | WalkingMachine/wm_interpreter | 522864c340886669277d043d385a372c5f86ed5b | [
"Apache-2.0"
] | null | null | null | src/wm_interpreter_node.py | WalkingMachine/wm_interpreter | 522864c340886669277d043d385a372c5f86ed5b | [
"Apache-2.0"
] | null | null | null | src/wm_interpreter_node.py | WalkingMachine/wm_interpreter | 522864c340886669277d043d385a372c5f86ed5b | [
"Apache-2.0"
] | null | null | null | #!/usr/bin/env python
import roslib
import rospy
import smach
import smach_ros
from smach import StateMachine
import actionlib
import time
import threading
from smach_ros import SimpleActionState
from smach_ros import ActionServerWrapper
from std_msgs.msg import String
from std_msgs.msg import UInt8
from wm_interpreter.msg import *
TIMEOUT_LENGTH = 10
# define state Idle
# define state WaitingCommand
# define state WaitingConfirmation
# define state DoSomething
# main
def main():
'''rospy.Subscriber("/recognizer_1/output", String, handleRecognizerMessage, queue_size=1)'''
rospy.init_node('interpreter')
# Create a SMACH state machine
sm = smach.StateMachine(outcomes=['success', 'aborted', 'preempted'],
input_keys = ['goal'],
output_keys = ['result'])
with sm:
# Add states to the container
smach.StateMachine.add('Idle', Idle(),
transitions={'Sarah': 'WaitingCommand',
'Stop': 'Idle'},
remapping={'Idle_lastWord_in': 'lastWord',
'Idle_lastState_in': 'lastState',
'Idle_lastWord_out': 'lastWord',
'Idle_lastState_out': 'lastState'})
smach.StateMachine.add('WaitingCommand', WaitingCommand(),
transitions={'Stop': 'Idle',
'DoIt': 'DoSomething',
'Sarah': 'WaitingCommand',
'Command': 'WaitingConfirmation',
'Timeout': 'Idle'},
remapping={'WComm_lastWord_in': 'lastWord',
'WComm_lastState_in': 'lastState',
'WComm_lastWord_out': 'lastWord',
'WComm_lastState_out': 'lastState',
'WComm_lastCommand_out': 'lastCommand'})
smach.StateMachine.add('WaitingConfirmation', WaitingConfirmation(),
transitions={'Timeout': 'Idle',
'Yes': 'Idle',
'No': 'Idle',
'Stop': 'Idle',
'Sarah': 'WaitingCommand'},
remapping={'WConf_lastWord_in': 'lastWord',
'WConf_lastState_in': 'lastState',
'WConf_lastWord_out': 'lastWord',
'WConf_lastState_out': 'lastState'})
smach.StateMachine.add('DoSomething', DoSomething(),
transitions={'Done': 'success',
'Fail': 'aborted'},
remapping={'DSome_lastWord_in': 'lastWord',
'DSome_lastState_in': 'lastState',
'DSome_lastCommand_in': 'lastCommand',
'DSome_lastWord_out': 'lastWord',
'DSome_lastState_out': 'lastState',
'DSome_result_out': 'result'})
# Construct action server wrapper
asw = smach_ros.ActionServerWrapper('SaraComm', CommAction,
wrapped_container = sm,
goal_key = 'goal',
result_key = 'result',
succeeded_outcomes = ['success'],
aborted_outcomes = ['aborted'],
preempted_outcomes = ['preempted'])
'''sis = smach_ros.IntrospectionServer('server_name', asw.wrapped_container, '/ASW_ROOT')'''
# Create a thread to execute the smach container
'''asw_thread = threading.Thread(target=asw.run_server);
asw_thread.start()'''
'''asw_thread.join()'''
asw.run_server()
rospy.spin()
# Request the container to preempt
sm.request_preempt()
if __name__ == '__main__':
main() | 39.32716 | 115 | 0.504473 | #!/usr/bin/env python
import roslib
import rospy
import smach
import smach_ros
from smach import StateMachine
import actionlib
import time
import threading
from smach_ros import SimpleActionState
from smach_ros import ActionServerWrapper
from std_msgs.msg import String
from std_msgs.msg import UInt8
from wm_interpreter.msg import *
TIMEOUT_LENGTH = 10
# define state Idle
class Idle(smach.State):
def __init__(self):
smach.State.__init__(self,
outcomes=['Stop', 'Sarah'],
input_keys=['Idle_lastWord_in',
'Idle_lastState_in',
'goal'],
output_keys=['Idle_lastWord_out',
'Idle_lastState_out'])
self.word = ""
self.COMMANDS = {'stop': 'Stop',
'sarah': 'Sarah'}
self.GOALS = {'WaitForCommand', 'SayX'}
self.pubTTS = rospy.Publisher('SaraVoice', String, queue_size=1)
self.pubEmo = rospy.Publisher('/control_emo', UInt8, latch=True)
self.sub = rospy.Subscriber("/recognizer_1/output", String, self.callback, queue_size=1)
def execute(self, userdata):
rospy.loginfo('-- Executing state Idle --')
userdata.Idle_lastState_out = "Idle"
self.pubEmo.publish(8)
rospy.loginfo('Idle - Waiting for keyword: SARAH')
while True:
if self.word in self.COMMANDS:
userdata.Idle_lastWord_out = self.word
return self.COMMANDS[self.word]
def callback(self,data):
toLog = 'Idle - Keyword'
if data.data in self.COMMANDS:
toLog += ' ' + str(self.COMMANDS)
self.word = data.data
rospy.loginfo(toLog)
def SayX(self, ToSay_str):
rospy.loginfo(ToSay_str)
self.pubTTS.publish(ToSay_str)
def request_preempt(self):
"""Overload the preempt request method just to spew an error."""
smach.State.request_preempt(self)
rospy.logwarn("Preempted!")
# define state WaitingCommand
class WaitingCommand(smach.State):
def __init__(self):
smach.State.__init__(self,
outcomes=['Command', 'Sarah', 'Stop', 'DoIt', 'Timeout'],
input_keys=['WComm_lastWord_in',
'WComm_lastState_in'],
output_keys=['WComm_lastWord_out',
'WComm_lastState_out',
'WComm_lastCommand_out'])
self.word = ""
self.state = "WaitingCommand"
self.COMMANDS = {'stop': 'Stop',
'sarah': 'Sarah',
'say hello': 'Timeout',
'go foward': 'Command',
'get me the beer': 'Command',
'go backward': 'Command',
'rotate left': 'Command',
'rotate right': 'Command'}
self.pub = rospy.Publisher('SaraVoice', String, queue_size=1)
self.pubEmo = rospy.Publisher('/control_emo', UInt8, latch=True)
self.sub = rospy.Subscriber("/recognizer_1/output", String, self.callback, queue_size=1)
def execute(self, userdata):
rospy.loginfo('Executing state WaitingCommand')
self.pubEmo.publish(0)
userdata.WComm_lastState_out = self.state
self.SayX('Yes master')
self.word = ""
timeout = time.time() + TIMEOUT_LENGTH # 10 sec
while True:
if self.word in self.COMMANDS:
userdata.WComm_lastWord_out = self.word
userdata.WComm_lastCommand_out = self.word
if self.word == 'say hello':
self.SayX('Hi. I am a assistance robot here to serve you. I am not totally functional for now,'
' but soon i will be able to do the chores for you.')
return self.COMMANDS[self.word]
if time.time() > timeout:
userdata.WComm_lastState_out = self.state
return 'Timeout'
def callback(self,data):
toLog = 'WComm - keyword'
if data.data in self.COMMANDS:
toLog += ' ' + str(self.COMMANDS)
self.word = data.data
rospy.loginfo(toLog)
def SayX(self, ToSay_str):
rospy.loginfo(ToSay_str)
self.pub.publish(ToSay_str)
def request_preempt(self):
"""Overload the preempt request method just to spew an error."""
smach.State.request_preempt(self)
rospy.logwarn("Preempted!")
# define state WaitingConfirmation
class WaitingConfirmation(smach.State):
def __init__(self):
smach.State.__init__(self,
outcomes=['Timeout', 'Yes', 'No', 'Stop', 'Sarah'],
input_keys=['WConf_lastWord_in',
'WConf_lastState_in'],
output_keys=['WConf_lastWord_out',
'WConf_lastState_out'])
self.word = ""
self.state = "WaitingConfirmation"
self.lastWord = ''
self.COMMANDS = {'stop': 'Stop',
'sarah': 'Sarah',
'say hello': 'Timeout',
'yes': 'Command',
'no': 'Command'}
self.pub = rospy.Publisher('SaraVoice', String, queue_size=1)
self.sub = rospy.Subscriber("/recognizer_1/output", String, self.callback, queue_size=1)
def execute(self, userdata):
rospy.loginfo('-- Executing state WaitingConfirmation --')
userdata.WConf_lastState_out = self.state
self.lastWord = userdata.WConf_lastWord_in
self.SayX('Did you say')
self.SayX(self.lastWord)
self.word = ""
timeout = time.time() + TIMEOUT_LENGTH # 15 sec
while True:
if self.word in self.COMMANDS:
userdata.WConf_lastWord_out = self.word
userdata.WConf_lastState_out = self.state
return self.COMMANDS[self.word]
if time.time() > timeout:
return 'Timeout'
def callback(self,data):
toLog = 'WConf - keyword'
if data.data in self.COMMANDS:
toLog += ' ' + str(self.COMMANDS)
self.word = data.data
rospy.loginfo(toLog)
def SayX(self, ToSay_str):
rospy.loginfo(ToSay_str)
self.pub.publish(ToSay_str)
def request_preempt(self):
"""Overload the preempt request method just to spew an error."""
smach.State.request_preempt(self)
rospy.logwarn("Preempted!")
# define state DoSomething
class DoSomething(smach.State):
def __init__(self):
smach.State.__init__(self,
outcomes=['Done','Fail'],
input_keys=['DSome_lastWord_in',
'DSome_lastState_in',
'DSome_lastCommand_in'],
output_keys=['DSome_lastWord_out',
'DSome_lastState_out',
'DSome_result_out'])
self.pub = rospy.Publisher('SaraVoice', String, queue_size=1)
self.pubFollow = rospy.Publisher('voice_follow_flag', String, queue_size=1)
#self.pubEmo = rospy.Publisher('control_emo', int, queue_size=10)
self.lastState = ""
self.lastCommand = ""
self.state = "DoSomething"
self.COMMANDS = {'stop': 'Stop',
'sarah': 'Sarah',
'say hello': 'Timeout',
'go foward': 'Command',
'get me the beer': 'Command',
'go backward': 'Command',
'rotate left': 'Command',
'rotate right': 'Command'}
def execute(self, userdata):
rospy.loginfo('-- Executing state DoSomething --')
self.lastWord = userdata.DSome_lastWord_in
self.lastState = userdata.DSome_lastState_in
self.lastCommand = userdata.DSome_lastCommand_in
userdata.DSome_lastState_out = self.state
if self.lastCommand in self.COMMANDS:
userdata.DSome_lastState_out = self.state
userdata.DSome_result_out = self.COMMANDS[self.lastCommand]
return 'Done'
else:
return 'Fail'
def request_preempt(self):
"""Overload the preempt request method just to spew an error."""
smach.State.request_preempt(self)
rospy.logwarn("Preempted!")
# main
def main():
'''rospy.Subscriber("/recognizer_1/output", String, handleRecognizerMessage, queue_size=1)'''
rospy.init_node('interpreter')
# Create a SMACH state machine
sm = smach.StateMachine(outcomes=['success', 'aborted', 'preempted'],
input_keys = ['goal'],
output_keys = ['result'])
with sm:
# Add states to the container
smach.StateMachine.add('Idle', Idle(),
transitions={'Sarah': 'WaitingCommand',
'Stop': 'Idle'},
remapping={'Idle_lastWord_in': 'lastWord',
'Idle_lastState_in': 'lastState',
'Idle_lastWord_out': 'lastWord',
'Idle_lastState_out': 'lastState'})
smach.StateMachine.add('WaitingCommand', WaitingCommand(),
transitions={'Stop': 'Idle',
'DoIt': 'DoSomething',
'Sarah': 'WaitingCommand',
'Command': 'WaitingConfirmation',
'Timeout': 'Idle'},
remapping={'WComm_lastWord_in': 'lastWord',
'WComm_lastState_in': 'lastState',
'WComm_lastWord_out': 'lastWord',
'WComm_lastState_out': 'lastState',
'WComm_lastCommand_out': 'lastCommand'})
smach.StateMachine.add('WaitingConfirmation', WaitingConfirmation(),
transitions={'Timeout': 'Idle',
'Yes': 'Idle',
'No': 'Idle',
'Stop': 'Idle',
'Sarah': 'WaitingCommand'},
remapping={'WConf_lastWord_in': 'lastWord',
'WConf_lastState_in': 'lastState',
'WConf_lastWord_out': 'lastWord',
'WConf_lastState_out': 'lastState'})
smach.StateMachine.add('DoSomething', DoSomething(),
transitions={'Done': 'success',
'Fail': 'aborted'},
remapping={'DSome_lastWord_in': 'lastWord',
'DSome_lastState_in': 'lastState',
'DSome_lastCommand_in': 'lastCommand',
'DSome_lastWord_out': 'lastWord',
'DSome_lastState_out': 'lastState',
'DSome_result_out': 'result'})
# Construct action server wrapper
asw = smach_ros.ActionServerWrapper('SaraComm', CommAction,
wrapped_container = sm,
goal_key = 'goal',
result_key = 'result',
succeeded_outcomes = ['success'],
aborted_outcomes = ['aborted'],
preempted_outcomes = ['preempted'])
'''sis = smach_ros.IntrospectionServer('server_name', asw.wrapped_container, '/ASW_ROOT')'''
# Create a thread to execute the smach container
'''asw_thread = threading.Thread(target=asw.run_server);
asw_thread.start()'''
'''asw_thread.join()'''
asw.run_server()
rospy.spin()
# Request the container to preempt
sm.request_preempt()
if __name__ == '__main__':
main() | 7,119 | 1,152 | 88 |
ba1712adf36dca6db45053cac63860a745bb6b20 | 5,245 | py | Python | app/modules/passport/login_mobile.py | Eastwu5788/Heron | 646eeaacea77e293c6eccc6dad82a04ece9294a3 | [
"Apache-2.0"
] | 7 | 2018-01-29T02:46:31.000Z | 2018-03-25T11:15:10.000Z | app/modules/passport/login_mobile.py | Eastwu5788/Heron | 646eeaacea77e293c6eccc6dad82a04ece9294a3 | [
"Apache-2.0"
] | 4 | 2021-06-08T19:38:03.000Z | 2022-03-11T23:18:46.000Z | app/modules/passport/login_mobile.py | Eastwu5788/Heron | 646eeaacea77e293c6eccc6dad82a04ece9294a3 | [
"Apache-2.0"
] | 1 | 2021-06-12T14:14:35.000Z | 2021-06-12T14:14:35.000Z | from flask import request, redirect, g
from app import db
from config.setting import MOBILE_WHITE_LIST
from app.modules.vendor.pre_request.flask import filter_params
from app.modules.vendor.pre_request.filter_rules import Rule
from app.modules.passport.register_mobile import RegisterHandler
from app.modules.base.base_handler import BaseHandler
from app.helper.response import *
from app.helper.secret import get_seed
from . import passport
from app.models.account.account_data import AccountDataModel
from app.models.account.user_access_token import UserAccessTokenModel
from app.models.account.user_sale_account import UserSaleAccountModel
from app.models.account.user_info import UserInfoModel
from app.models.account.user_id_relation import UserIdRelationModel
from app.models.account.user_account import UserAccountModel
from app.models.core.open_log import OpenLogModel
passport.add_url_rule("/loginbymobile/index", view_func=IndexHandler.as_view("index"))
| 34.966667 | 109 | 0.67836 | from flask import request, redirect, g
from app import db
from config.setting import MOBILE_WHITE_LIST
from app.modules.vendor.pre_request.flask import filter_params
from app.modules.vendor.pre_request.filter_rules import Rule
from app.modules.passport.register_mobile import RegisterHandler
from app.modules.base.base_handler import BaseHandler
from app.helper.response import *
from app.helper.secret import get_seed
from . import passport
from app.models.account.account_data import AccountDataModel
from app.models.account.user_access_token import UserAccessTokenModel
from app.models.account.user_sale_account import UserSaleAccountModel
from app.models.account.user_info import UserInfoModel
from app.models.account.user_id_relation import UserIdRelationModel
from app.models.account.user_account import UserAccountModel
from app.models.core.open_log import OpenLogModel
class IndexHandler(BaseHandler):
rule = {
"username": Rule(mobile=True),
"code": Rule(direct_type=int),
"country": Rule(direct_type=int, allow_empty=True, default=86)
}
def get(self):
return json_fail_response(501)
@filter_params(post=rule)
def post(self, params):
"""
:return:
"""
mobile = params["username"]
sms_code = params["code"]
country = params["country"]
token = request.headers.get("token")
# 检查token不存在问题
if not token:
return json_fail_response(2002)
cache_account = g.account
# 检查用户是否被封号
if IndexHandler.check_banned(mobile, cache_account["udid"]):
return json_fail_response(2106)
# 验证短信验证码
from app.models.security.captcha import CaptchaModel
cache_key = CaptchaModel.sms_cache_key % (mobile, "sms", country, 1)
CaptchaModel.cache_key = cache_key
if mobile not in MOBILE_WHITE_LIST and not CaptchaModel.verify_sms_code(sms_code):
return json_fail_response(10001)
account = UserAccountModel.query_account_by_mobile(mobile, country, refresh=True)
# 当前账户不存在,则重定向到注册
if not account:
account = RegisterHandler.register_by_mobile(mobile, country)
# 当前token已经绑定了一个user_id,并且绑定的用户手机号,与当前手机号不同
if cache_account["user_id"]:
if cache_account["mobile"] != str(mobile):
# 生成新的token
new_access_token = IndexHandler.create_new_token_account(cache_account)
# 禁用旧的token
UserAccessTokenModel.forbid_by_token(cache_account["access_token"])
# 更新内存中的数据
cache_account["access_token"] = new_access_token.access_token
cache_account["salt"] = new_access_token.salt
# 执行token绑定
UserAccessTokenModel.bind_user_id(cache_account["access_token"], account.id)
# 刷新缓存
result = AccountDataModel.query_request_account_by_token(cache_account["access_token"], refresh=True)
result["perfect_info"] = 0
result["perfect_info_pwd"] = 0
relation = UserIdRelationModel.query_user_id_relation(account.id)
result["huanxin_uid"] = ""
if relation:
result["huanxin_uid"] = relation.str_id
if not result.get("gender"):
result["perfect_info"] = 1
if not result["password"]:
result["perfect_info_pwd"] = 1
# 日活统计
open_log = OpenLogModel()
open_log.user_id = result.get("user_id", 0)
open_log.udid = result.get("udid", "")
open_log.access_token = result.get("access_token", "")
open_log.device_type = result.get("device_type", "")
open_log.version = result.get("version", "")
open_log.type = 3
db.session.add(open_log)
db.session.commit()
return json_success_response(result)
@staticmethod
def create_new_token_account(cache_account):
cache_account = UserAccessTokenModel.query_useful_access_token(cache_account["access_token"])
access_token = UserAccessTokenModel()
# 存储客户端的基本信息
access_token.udid = cache_account.udid
access_token.device_type = cache_account.device_type
access_token.version = cache_account.version
access_token.user_agent = request.headers.get("User-Agent", "")
access_token.ip = cache_account.ip
access_token.status = 1
access_token.bundle_id = cache_account.bundle_id
# 获取生成的AccessToken和Salt
access_token.access_token = get_seed(access_token.udid, 32)
access_token.device_token = access_token.access_token
access_token.salt = get_seed(access_token.udid, 10)
# 存储到数据库
db.session.add(access_token)
db.session.commit()
return access_token
@staticmethod
def check_banned(mobile, udid):
"""
检查用户是否被封禁
"""
udid_banned = UserSaleAccountModel.check_banned(mobile=None, udid=udid)
if udid_banned:
return True
mobile_banned = UserSaleAccountModel.check_banned(mobile=mobile)
if mobile_banned:
return True
return False
passport.add_url_rule("/loginbymobile/index", view_func=IndexHandler.as_view("index"))
| 970 | 3,533 | 23 |
1fc88f161d5951322327018aba53bb962870bfe9 | 777 | py | Python | lasier/circuit_breaker/rules/base.py | rafa-acioly/lasier | b518f93207ff15ba32b286f466f3ca3cea231b4c | [
"MIT"
] | 61 | 2019-12-13T20:08:30.000Z | 2022-03-22T11:51:04.000Z | lasier/circuit_breaker/rules/base.py | jairhenrique/lasier | 29bf96cb888493d369a22400bec6acffe345d168 | [
"MIT"
] | 25 | 2019-12-13T17:14:46.000Z | 2022-03-17T18:49:34.000Z | lasier/circuit_breaker/rules/base.py | jairhenrique/lasier | 29bf96cb888493d369a22400bec6acffe345d168 | [
"MIT"
] | 6 | 2020-04-02T21:10:08.000Z | 2022-03-17T15:31:15.000Z | import abc
from typing import Optional
| 26.793103 | 77 | 0.689833 | import abc
from typing import Optional
class BaseRule(metaclass=abc.ABCMeta):
def __init__(
self, failure_cache_key: str, request_cache_key: Optional[str] = None
) -> None:
self.failure_cache_key = failure_cache_key
self.request_cache_key = request_cache_key
@abc.abstractmethod
def should_open_circuit(
self, total_failures: int, total_requests: int
) -> bool:
pass
def should_increase_failure_count(self) -> bool:
return self.failure_cache_key is not None
def should_increase_request_count(self) -> bool:
return self.request_cache_key is not None
@abc.abstractmethod
def log_increase_failures(
self, total_failures: int, total_requests: int
) -> None:
pass
| 515 | 199 | 23 |
abcab4ac7876cc5a907987afd65687e37c1abfa3 | 31 | py | Python | snippets/7.py | krrg/python-tutorial | a6ef8865cb46ee48624d7c7451d1894741405cc4 | [
"MIT"
] | null | null | null | snippets/7.py | krrg/python-tutorial | a6ef8865cb46ee48624d7c7451d1894741405cc4 | [
"MIT"
] | null | null | null | snippets/7.py | krrg/python-tutorial | a6ef8865cb46ee48624d7c7451d1894741405cc4 | [
"MIT"
] | null | null | null | x = 42
print x # Outputs `42` | 15.5 | 24 | 0.580645 | x = 42
print x # Outputs `42` | 0 | 0 | 0 |
65ead98804d423c1188a4c86eb90dce421ca20a2 | 6,496 | py | Python | examples/pipeline/match_id_test/pipeline-hetero-lr-feature-engineering.py | rubenlozanoaht3m/DataDogm | cd605e8072cca31e8418830c3300657ae2fa5b16 | [
"Apache-2.0"
] | 715 | 2019-01-24T10:52:03.000Z | 2019-10-31T12:19:22.000Z | examples/pipeline/match_id_test/pipeline-hetero-lr-feature-engineering.py | rubenlozanoaht3m/DataDogm | cd605e8072cca31e8418830c3300657ae2fa5b16 | [
"Apache-2.0"
] | 270 | 2019-02-11T02:57:36.000Z | 2019-08-29T11:22:33.000Z | examples/pipeline/match_id_test/pipeline-hetero-lr-feature-engineering.py | rubenlozanoaht3m/DataDogm | cd605e8072cca31e8418830c3300657ae2fa5b16 | [
"Apache-2.0"
] | 200 | 2019-01-26T14:21:35.000Z | 2019-11-01T01:14:36.000Z | #
# Copyright 2019 The FATE Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import argparse
from pipeline.backend.pipeline import PipeLine
from pipeline.component import DataTransform
from pipeline.component import Evaluation, DataStatistics, HeteroPearson
from pipeline.component import HeteroLR, OneHotEncoder
from pipeline.component import HeteroFeatureBinning
from pipeline.component import HeteroFeatureSelection
from pipeline.component import FeatureScale
from pipeline.component import Intersection
from pipeline.component import Reader
from pipeline.interface import Data
from pipeline.interface import Model
from pipeline.utils.tools import load_job_config
if __name__ == "__main__":
parser = argparse.ArgumentParser("PIPELINE DEMO")
parser.add_argument("-config", type=str,
help="config file")
args = parser.parse_args()
if args.config is not None:
main(args.config)
else:
main()
| 36.088889 | 108 | 0.640702 | #
# Copyright 2019 The FATE Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import argparse
from pipeline.backend.pipeline import PipeLine
from pipeline.component import DataTransform
from pipeline.component import Evaluation, DataStatistics, HeteroPearson
from pipeline.component import HeteroLR, OneHotEncoder
from pipeline.component import HeteroFeatureBinning
from pipeline.component import HeteroFeatureSelection
from pipeline.component import FeatureScale
from pipeline.component import Intersection
from pipeline.component import Reader
from pipeline.interface import Data
from pipeline.interface import Model
from pipeline.utils.tools import load_job_config
def main(config="../../config.yaml", namespace=""):
# obtain config
if isinstance(config, str):
config = load_job_config(config)
parties = config.parties
guest = parties.guest[0]
host = parties.host[0]
arbiter = parties.arbiter[0]
guest_train_data = {"name": "breast_hetero_guest", "namespace": f"experiment_sid{namespace}"}
host_train_data = {"name": "breast_hetero_host", "namespace": f"experiment_sid{namespace}"}
pipeline = PipeLine().set_initiator(role='guest', party_id=guest).\
set_roles(guest=guest, host=host, arbiter=arbiter)
reader_0 = Reader(name="reader_0")
reader_0.get_party_instance(role='guest', party_id=guest).component_param(table=guest_train_data)
reader_0.get_party_instance(role='host', party_id=host).component_param(table=host_train_data)
data_transform_0 = DataTransform(name="data_transform_0", with_match_id=True)
data_transform_0.get_party_instance(role='guest', party_id=guest).component_param(with_label=True)
data_transform_0.get_party_instance(role='host', party_id=host).component_param(with_label=False)
intersection_0 = Intersection(name="intersection_0")
feature_scale_0 = FeatureScale(name='feature_scale_0', method="standard_scale",
need_run=True)
binning_param = {
"method": "quantile",
"compress_thres": 10000,
"head_size": 10000,
"error": 0.001,
"bin_num": 10,
"bin_indexes": -1,
"adjustment_factor": 0.5,
"local_only": False,
"need_run": True,
"transform_param": {
"transform_cols": -1,
"transform_type": "bin_num"
}
}
hetero_feature_binning_0 = HeteroFeatureBinning(name='hetero_feature_binning_0',
**binning_param)
statistic_0 = DataStatistics(name='statistic_0', statistics=["95%"])
pearson_0 = HeteroPearson(name='pearson_0', column_indexes=-1)
onehot_0 = OneHotEncoder(name='onehot_0')
selection_param = {
"name": "hetero_feature_selection_0",
"select_col_indexes": -1,
"select_names": [],
"filter_methods": [
"manually",
"unique_value",
"iv_filter",
"coefficient_of_variation_value_thres",
"outlier_cols"
],
"manually_param": {
"filter_out_indexes": [
0,
1,
2
],
"filter_out_names": [
"x3"
]
},
"unique_param": {
"eps": 1e-06
},
"iv_param": {
"metrics": ["iv", "iv", "iv"],
"filter_type": ["threshold", "top_k", "top_percentile"],
"threshold": [0.001, 100, 0.99]
},
"variance_coe_param": {
"value_threshold": 0.3
},
"outlier_param": {
"percentile": 0.95,
"upper_threshold": 2.0
}}
hetero_feature_selection_0 = HeteroFeatureSelection(**selection_param)
lr_param = {
"name": "hetero_lr_0",
"penalty": "L2",
"optimizer": "rmsprop",
"tol": 0.0001,
"alpha": 0.01,
"max_iter": 30,
"early_stop": "diff",
"batch_size": 320,
"learning_rate": 0.15,
"init_param": {
"init_method": "zeros"
},
"sqn_param": {
"update_interval_L": 3,
"memory_M": 5,
"sample_size": 5000,
"random_seed": None
},
"cv_param": {
"n_splits": 5,
"shuffle": False,
"random_seed": 103,
"need_cv": False
}
}
hetero_lr_0 = HeteroLR(**lr_param)
evaluation_0 = Evaluation(name='evaluation_0')
pipeline.add_component(reader_0)
pipeline.add_component(data_transform_0, data=Data(data=reader_0.output.data))
pipeline.add_component(intersection_0, data=Data(data=data_transform_0.output.data))
pipeline.add_component(feature_scale_0, data=Data(data=intersection_0.output.data))
pipeline.add_component(hetero_feature_binning_0, data=Data(data=feature_scale_0.output.data))
pipeline.add_component(statistic_0, data=Data(data=feature_scale_0.output.data))
pipeline.add_component(pearson_0, data=Data(data=feature_scale_0.output.data))
pipeline.add_component(hetero_feature_selection_0, data=Data(data=hetero_feature_binning_0.output.data),
model=Model(isometric_model=[hetero_feature_binning_0.output.model,
statistic_0.output.model]))
pipeline.add_component(onehot_0, data=Data(data=hetero_feature_selection_0.output.data))
pipeline.add_component(hetero_lr_0, data=Data(train_data=onehot_0.output.data))
pipeline.add_component(evaluation_0, data=Data(data=hetero_lr_0.output.data))
pipeline.compile()
pipeline.fit()
if __name__ == "__main__":
parser = argparse.ArgumentParser("PIPELINE DEMO")
parser.add_argument("-config", type=str,
help="config file")
args = parser.parse_args()
if args.config is not None:
main(args.config)
else:
main()
| 4,977 | 0 | 23 |
e0cc96fcb4e8bfe6a1a15a57f29958234eeab877 | 28,270 | py | Python | dataAnalytics/simulatorGraphics/simulatorExtra.py | PeterJWei/EnergyFootprinting | 0396efba7d4e6863452e322f9f7561c6cd756478 | [
"MIT"
] | null | null | null | dataAnalytics/simulatorGraphics/simulatorExtra.py | PeterJWei/EnergyFootprinting | 0396efba7d4e6863452e322f9f7561c6cd756478 | [
"MIT"
] | null | null | null | dataAnalytics/simulatorGraphics/simulatorExtra.py | PeterJWei/EnergyFootprinting | 0396efba7d4e6863452e322f9f7561c6cd756478 | [
"MIT"
] | null | null | null | import matplotlib.pyplot as plt
import random
import math
import sys
from graphics import *
_num_bins = 96
win = GraphWin("floorplan", 531, 741)
b = Image(Point(265, 371), "floorplan.gif")
r = Rectangle(Point(20, 0), Point(511, 150))
r.setFill("white")
title = Text(Point(265, 30), "Building Occupant Optimization")
simTime = Text(Point(265, 100), "Time- Initial Configuration")
simTime.setSize(18)
title.setSize(30)
Image.draw(b, win)
r.draw(win)
title.draw(win)
simTime.draw(win)
S = simulator()
S.timedSimulatedAnnealing(1000) | 48.910035 | 162 | 0.652069 | import matplotlib.pyplot as plt
import random
import math
import sys
from graphics import *
_num_bins = 96
win = GraphWin("floorplan", 531, 741)
b = Image(Point(265, 371), "floorplan.gif")
r = Rectangle(Point(20, 0), Point(511, 150))
r.setFill("white")
title = Text(Point(265, 30), "Building Occupant Optimization")
simTime = Text(Point(265, 100), "Time- Initial Configuration")
simTime.setSize(18)
title.setSize(30)
Image.draw(b, win)
r.draw(win)
title.draw(win)
simTime.draw(win)
class simulator:
def __init__(self):
###################################################
## state variable templates
## self.state/self.nextState = {"room1": ["person 1", "person 2"], "room2" : [], "room3": ["person3"]...}
## self.parameters = {"person 1": {"SpacePref": {"room1": 85.0, "room2": 10.0, ...}, "Setpoint": 72, "AlonePref": True}, "person2": {...}}
## self.spaces = {"room1": {"MaxOccupancy":6, "PermanentSpace":True, "AverageConsumption":5000, "ConsumptionOverTime":[199, 205, ...]}, "room2"...}
#####################################################
self.bestState = {}
self.bestEnergyState = -1
self.state = {}
self.nextState = {}
self.parameters = {} #occupant parameters
self.spaces = {}
self.loadParameters() #load the occupant parameters
self.initializeState() #initialize the building configuration
while not self.D(self.state):
self.initializeState()
self.printBestState(self.state)
self.bestEnergyList = []
self.energyList = []
self.probabilityList = []
self.temperatureList = []
#print(self.state)
self.instantiateGraphics()
self.currentState = None
self.schedules = {}
self.energyFootprints = {}
def init(self):
self.bestState = {}
self.bestEnergyState = -1
self.state = {}
self.nextState = {}
#self.parameters = {} #occupant parameters
#self.spaces = {}
#self.loadParameters() #load the occupant parameters
self.initializeState() #initialize the building configuration
while not self.D(self.state):
self.initializeState() #initialize the building configuration
#self.printBestState(self.state)
self.energyList = []
#print(self.state)
#self.instantiateGraphics()
def plotRoomEnergy(self, label1, label2):
data1 = self.spaces[label1]["ConsumptionOverTime"]
data2 = self.spaces[label2]["ConsumptionOverTime"]
time = range(len(data1))
plt.plot(time, data1, 'r', time, data2, 'b')
plt.title("Energy Curves for Two Rooms")
plt.xlabel("Time (15 minutes)")
plt.ylabel("Power (W)")
plt.legend([label1, label2])
plt.show()
return
def updateSchedules(self, newState):
for room in newState:
for person in newState[room]:
if person not in self.schedules:
self.schedules[person] = []
self.schedules[person].append(room)
return
def energyFootprint(self, state, time):
for room in state:
occupancy = len(state[room])
for person in state[room]:
if person not in self.energyFootprints:
self.energyFootprints[person] = []
self.energyFootprints[person].append(self.spaces[room]["ConsumptionOverTime"][time]/occupancy)
return
def printEnergyFootprint(self, person):
previousRoom = ""
times = []
for i in range(len(self.schedules[person])):
newRoom = self.schedules[person][i]
if (newRoom != previousRoom):
times.append(i-1)#print("Move to: " + newRoom + " " + "at time" + str(i))
previousRoom = newRoom
footprint = self.energyFootprints[person]
plt.plot(footprint)
plt.title("Energy Footprint for " + person)
plt.xlabel("Time (15 min)")
plt.ylabel("Power (W)")
for time in times:
plt.axvline(x=time, color = 'r')
plt.show()
return
def backspace(self):
print '\r',
def costFunction(self, inputState):
if self.D(inputState) == True:
energyState = self.E(inputState)
if (self.bestEnergyState == -1 or energyState < self.bestEnergyState):
self.bestState = self.duplicateState(inputState)
self.bestEnergyState = energyState
return energyState
else:
return -1
def costFunction_time(self, inputState, time):
if self.D(inputState) == True:
energyState = self.E_time(inputState, time)
if (self.bestEnergyState == -1 or energyState < self.bestEnergyState):
self.bestState = self.duplicateState(inputState)
self.bestEnergyState = energyState
return energyState
else:
return -1
def E(self, inputState):
#Determine the sum of energy footprints
buildingFootprint = 0
discomfort = 0
for room in inputState:
if len(inputState[room]) > 0:
buildingFootprint += self.spaces[room]["AverageConsumption"]* self.Dscore(inputState, room)
return buildingFootprint
def E_time(self, inputState, time):
#Determine the sum of energy footprints
buildingFootprint = 0
discomfort = 0
for room in inputState:
if len(inputState[room]) > 0:
normalizedEnergy = self.spaces[room]["ConsumptionOverTime"][time] * self.Dscore(inputState, room)
buildingFootprint += normalizedEnergy
return buildingFootprint
def Dscore(self, inputState, room):
#normalize to 1 - 1.5
totalScore = 0.0
numPersons = 0
for person in inputState[room]:
numPersons += 1
setpointPref = self.parameters[person]["SetpointPref"]
# if temp differ by 5 degress or more return the max value for now
if abs(setpointPref - self.spaces[room]["AverageTemp"]) > 5:
totalScore += 1.5
# computes parabola?
else:
totalScore += 0.1 * math.sqrt(abs(setpointPref - self.spaces[room]["AverageTemp"])) + 1
return totalScore/numPersons
#find the discomfort score along the parabola and then normalize to 1-1.5
def D(self, inputState):
for room in inputState:
if len(inputState[room]) > 0: #and there are people assigned to the space
if not self.spaces[room]["PermanentSpace"]: #if the room is not a permanent (e.g. working) space
return False
if len(inputState[room]) > self.spaces[room]["MaxOccupancy"]: #if there are too many people in the space
return False
for occupant in inputState[room]: #Check that every occupant is in a "comfortable space"
if (room in self.parameters[occupant]["SpacePref"]):
spacePreference = self.parameters[occupant]["SpacePref"][room]
#Do some heuristic on space preference here
continue
else:
return False
return True
def P(self, inputState, inputStateNew, temperature):
currentCost = self.costFunction(inputState)
newCost = self.costFunction(inputStateNew)
if newCost == -1:
return False
randomNumber = random.random()
if currentCost >= newCost:
self.energyList.append(newCost)
return True
else:
if temperature != 0:
#tempProbability = math.exp(-1.0*float((newCost-currentCost))/float(temperature))
#tempProbability = math.exp(-1.0*(1.0-float(currentCost)/float(newCost))*float(temperature))
#print((newCost-currentCost,temperature, tempProbability))
#self.probabilityList.append(tempProbability)
if temperature > randomNumber:
self.energyList.append(newCost)
return True
else:
self.energyList.append(currentCost)
return False
else:
self.energyList.append(newCost)
return True
def P_time(self, inputState, inputStateNew, temperature, time):
currentCost = self.costFunction_time(inputState, time)
newCost = self.costFunction_time(inputStateNew, time)
if newCost == -1:
return False
randomNumber = random.random()
if currentCost > newCost:
return True
else:
if temperature != 0:
return True#math.exp(-1.0*(newCost-currentCost)/temperature) > randomNumber
else:
return True
def loadParameters(self):
self.loadFromCode2()
for room in self.spaces:
self.spaces[room]["occupied"] = [None] * len(self.spaces[room]["coordinates"])
#self.loadFromFile()
def initializeState(self):
for space in self.spaces:
self.state[space] = []
for occupant in self.parameters:
cumulative = 0.0
total = 0.0
newSpace = ""
spacePreference = self.parameters[occupant]["SpacePref"]
for room in spacePreference:
total += spacePreference[room]
randomNumber = random.uniform(0, total)
for room in spacePreference:
cumulative += spacePreference[room]
if cumulative >= randomNumber:
newSpace = room
self.state[newSpace].append(occupant)
break
def chooseNextState(self, inputState):
while (1):
l = random.choice(list(inputState.keys()))
if len(inputState[l]) > 0:
randomPerson = random.choice(inputState[l])
inputState[l].remove(randomPerson)
randomRoom = random.choice(list(inputState.keys()))
inputState[randomRoom].append(randomPerson)
return
def duplicateState(self, fromState):
copyState = {}
for room in fromState:
copyState[room] = []
for person in fromState[room]:
copyState[room].append(person)
return copyState
def simulatedAnnealing(self, kmax):
for k in range(kmax):
s = str(round(float(k)/float(kmax)*100.0)) + '%'
print s,
sys.stdout.flush()
self.backspace()
#T = float(k)/float(kmax)
T = 1.0*(0.999**k)
self.temperatureList.append(T)
self.nextState = self.duplicateState(self.state)
self.chooseNextState(self.nextState)
if self.P(self.state, self.nextState, T):
self.state = self.nextState
self.bestEnergyList.append(self.bestEnergyState)
self.printBestState(self.bestState)
plt.plot(self.bestEnergyList[1:100])
plt.ylabel('Total Power (W)')
plt.xlabel('Iteration')
plt.title('Best Energy State To Iteration')
plt.show()
plt.plot(self.energyList)
plt.ylabel('Total Power (W)')
plt.xlabel('Iteration')
plt.title('Sample Energy States')
plt.show()
#plt.plot(self.probabilityList)
#plt.show()
plt.ylabel('Temperature')
plt.xlabel('Iteration')
plt.title('Temperature')
plt.plot(self.temperatureList)
plt.show()
return self.bestState
def timedSimulatedAnnealing(self, kmax):
for t in range(32, 72):#range(_num_bins):
self.init()
print("iteration " + str(t))
minuteStr = "00"
if t%4 != 0:
minuteStr = str((t%4)*15)
simTime.setText("Time- " + str(t/4) + ":" + minuteStr)
for k in range(kmax):
s = str(round(float(k)/float(kmax)*100.0)) + '%'
print s,
sys.stdout.flush()
self.backspace()
self.energyList.append(self.bestEnergyState)
Temp = float(k)/float(kmax)
self.nextState = self.duplicateState(self.state)
self.chooseNextState(self.nextState)
if self.P_time(self.state, self.nextState, Temp, t):
self.state = self.nextState
if self.currentState is None:
self.currentState = self.duplicateState(self.bestState)
self.printBestState(self.currentState)
self.updateSchedules(self.currentState)
continue
startLoc = {}
endLoc = {}
currentEnergy = self.E_time(self.currentState, t)
bestEnergy = self.E_time(self.bestState, t)
#(bestEnergy, currentEnergy) = self.E_time2(self.bestState, self.currentState, time)
if (currentEnergy-bestEnergy > 0.01):
print("Found better Schedule")
#self.E_time2(self.bestState, self.currentState, time)
#print((bestEnergy,currentEnergy))
self.currentState = self.duplicateState(self.bestState)
self.printBestState(self.currentState)
#for room in self.currentState:
# for person in self.currentState[room]:
# startLoc[person] = room
#for room in self.bestState:
# for person in self.bestState[room]:
# endLoc[person] = room
#for person in startLoc:
# if (startLoc[person] != endLoc[person]):
# print((startLoc[person], endLoc[person], person))
self.updateSchedules(self.currentState)
self.energyFootprint(self.currentState, t)
self.updateGraphics(self.currentState)
self.updateGraphics(self.currentState)
time.sleep(0.5)
self.printSchedules()
print("Plotting Room Energy...")
self.plotRoomEnergy("nwc1003b_a", "nwc1003g")
print("Plotting Energy Energy Footprint...")
self.printEnergyFootprint("Peter")
def instantiateGraphics(self):
legendY = 60
legendX = 50
for room in self.state:
occ = len(self.state[room])
coord = 0
for person in self.state[room]:
if "indicator" not in self.parameters[person]:
self.parameters[person]["indicator"] = Circle(Point(self.spaces[room]["coordinates"][coord][0], self.spaces[room]["coordinates"][coord][1]), 8)
#self.parameters[person]["indicator"].setFill(color_rgb(145, 187, 255))
randRed = random.randint(0, 255)
randGreen = random.randint(0, 255)
randBlue = random.randint(0, 255)
self.parameters[person]["indicator"].setFill(color_rgb(randRed, randGreen, randBlue))
personText = Text(Point(legendX, legendY), person)
personText.setFill(color_rgb(randRed, randGreen, randBlue))
personText.draw(win)
self.parameters[person]["indicator"].draw(win)
print((room, coord))
self.spaces[room]["occupied"][coord] = person
self.parameters[person]["position"] = coord
self.parameters[person]["room"] = room
coord += 1
legendY += 15
if (legendY > 140):
legendY = 60
legendX += 50
win.getMouse()
# Peter.move(100, 100)
# win.getMouse()
#win.close()
return
def updateGraphics(self, state):
for room in state:
for person in state[room]:
oldRoom = self.parameters[person]["room"]
if (oldRoom == room):
continue
else:
print((person, oldRoom, room))
self.spaces[oldRoom]["occupied"][self.parameters[person]["position"]] = None
foundPosition = False
for i in range(len(self.spaces[room]["occupied"])):
if self.spaces[room]["occupied"][i] is None:
newCoord = self.spaces[room]["coordinates"][i]
self.moveTo(self.parameters[person]["indicator"], newCoord[0], newCoord[1])
self.spaces[room]["occupied"][i] = person
self.parameters[person]["position"] = i
self.parameters[person]["room"] = room
foundPosition = True
break
if not foundPosition:
print("PROBLEM")
print((room, self.spaces[room]["occupied"]))
#win.getMouse()
return
def printBestState(self, printState):
for room in printState:
print("\n")
print(str(room) + " " + str(self.spaces[room]["AverageTemp"]))
print("-------------------")
for person in printState[room]:
print(str(person) + " " + str(self.parameters[person]["SetpointPref"]))
def printSchedules(self):
for person in self.schedules:
print("Schedule for: " + person)
previousRoom = ""
if (len(self.schedules[person]) != _num_bins):
print("Not enough bins! " + person + " " + str(len(self.schedules[person])))
#assert(self.schedules[person] == _num_bins)
for i in range(len(self.schedules[person])):
newRoom = self.schedules[person][i]
if (newRoom != previousRoom):
print("Move to: " + newRoom + " " + "at time" + str(i))
previousRoom = newRoom
return
def moveTo(self, person, x, y):
center = person.getCenter()
person.move(x - center.getX(), y - center.getY())
return
def loadFromCode(self):
self.parameters['Peter'] = {"SpacePref": {"nwc1003b_a":54.36, "nwc1003b_b":15.25, "nwc1000m_a6":21.2, "nwc10": 1.05},
"SetpointPref":71, "AlonePref": True}
self.parameters['Stephen'] = {"SpacePref": {"nwc1003b_b":10.0, "nwc1003b_a":30.0, "nwc1000m_a6":55.0, "nwc10": 1.0}, "SetpointPref":69,
"AlonePref":False}
self.parameters['Laixi'] = {"SpacePref": {"nwc1003b_a":1.0, "nwc1000m_a6":85.0, "nwc10": 1.0}, "SetpointPref":74,
"AlonePref":False}
self.parameters['Xuanyu'] = {"SpacePref": {"nwc1003b_a":1.0, "nwc1000m_a6":85.0, "nwc10":1.0}, "SetpointPref":77,
"AlonePref":False}
self.parameters['Ji'] = {"SpacePref": {"nwc1003b_a":1.0, "nwc1000m_a6":85.0, "nwc10":1.0}, "SetpointPref":78,
"AlonePref":False}
self.parameters['Mark'] = {"SpacePref":{"nwc1000m_a1":86.0, "nwc1000m_a2":7.0}, "SetpointPref":69,
"AlonePref":False}
self.parameters['LeiLei'] = {"SpacePref":{"nwc1000m_a2":89.0, "nwc1000m_a1":7.4}, "SetpointPref":66,
"AlonePref":False}
self.parameters['Fred'] = {"SpacePref":{"nwc1008":90.0, "nwc10":10.0}, "SetpointPref":72, "AlonePref":False}
self.spaces["nwc1003b_a"] = {"MaxOccupancy":2, "PermanentSpace":True, "AverageConsumption":10000, "AverageTemp":73, "ConsumptionOverTime":
[570, 567, 562, 568, 563, 568, 564, 565, 566, 566, 562, 557, 555, 555, 550, 559, 566, 568, 560, 563, 559, 562, 559, 561, 571, 943, 1077, 1038,
722, 617, 607, 752, 1427, 1568, 1578, 1570, 1478, 2185, 2319, 1811, 1515, 1737, 2602, 5745, 5247, 4832, 1790, 1870, 1708, 1744, 2640, 979, 809,
1182, 3640, 3525, 2067, 1070, 917, 1409, 1215, 1074, 1103, 903, 663, 706, 722, 696, 742, 713, 764, 619, 477, 552, 690, 509, 540, 552, 561, 561, 563,
563, 566, 554, 557, 560, 549, 563, 565, 574, 572, 562, 563, 550, 557, 558], "coordinates": [(8, 499), (24, 499), (40, 499), (56, 499)]}
self.spaces["nwc1003b_b"] = {"MaxOccupancy":2, "PermanentSpace":True, "AverageConsumption":9000, "AverageTemp":70, "ConsumptionOverTime":
[570, 568, 562, 568, 564, 568, 564, 565, 566, 566, 562, 557, 555, 555, 550, 559, 566, 568, 560, 563, 559, 562, 559, 561, 571, 943, 1077, 1038, 722,
617, 607, 752, 1427, 1568, 1578, 1570, 1479, 2185, 2319, 1811, 1515, 1737, 2602, 5745, 5247, 4832, 1790, 1870, 1708, 1744, 2641, 979, 809, 1182,
3640, 3525, 2067, 1070, 917, 1409, 1215, 1074, 1103, 903, 663, 706, 722, 696, 742, 713, 765, 619, 477, 553, 690, 510, 541, 552, 561, 561, 563, 564,
567, 554, 558, 560, 550, 563, 566, 574, 572, 562, 563, 551, 557, 559], "coordinates": [(8, 539), (24, 539), (40, 539), (56, 539)]}
#self.spaces["nwc1003g"] = {"MaxOccupancy":5, "PermanentSpace":True, "AverageConsumption": 1000, "AverageTemp": 74, "ConsumptionOverTime":
#[91, 91, 90, 92, 90, 92, 90, 90, 92, 91, 89, 89, 89, 91, 89, 89, 89, 90, 88, 90, 86, 88, 86, 87, 98, 411, 568, 567, 399, 342, 327, 407, 854,
#1068, 1070, 1089, 1023, 1763, 1827, 1411, 1042, 1134, 1718, 2515, 745, 867, 458, 433, 365, 549, 507, 589, 2787, 4301, 2517, 1682, 1204, 562, 450, 818,
#426, 439, 459, 511, 431, 440, 467, 469, 521, 465, 515, 373, 190, 132, 116, 90, 93, 92, 92, 93, 93, 92, 93, 92, 92, 93, 91, 92, 92, 94, 93, 90, 92, 89, 92, 90]}
self.spaces["nwc1000m_a1"] = {"MaxOccupancy":4, "PermanentSpace":True, "AverageConsumption":3000, "AverageTemp":72, "ConsumptionOverTime":
[235, 236, 239, 236, 236, 236, 236, 236, 236, 236, 236, 236, 235, 236, 235, 235, 235, 235, 235, 235, 234, 235, 234, 235, 235, 235, 235, 235,
235, 235, 235, 235, 235, 235, 235, 235, 235, 234, 235, 235, 236, 236, 236, 237, 239, 237, 237, 236, 237, 236, 237, 238, 237, 238, 237, 238, 237,
237, 237, 237, 237, 236, 235, 235, 235, 235, 237, 237, 236, 236, 236, 235, 235, 235, 236, 235, 236, 235, 236, 236, 236, 236, 236, 236, 236, 236,
235, 236, 236, 237, 236, 236, 235, 235, 235, 235], "coordinates": [(484, 343), (500, 343), (484, 359), (500, 359)]}
self.spaces["nwc1000m_a2"] = {"MaxOccupancy":4, "PermanentSpace":True, "AverageConsumption":4000, "AverageTemp":67, "ConsumptionOverTime":
[234, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 234, 235, 235, 234, 234, 235, 234, 235, 234, 235, 234, 234, 234, 234, 234, 234, 234,
234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 233, 234, 235, 235, 235, 235, 235, 238, 236, 236, 235, 236, 236, 236, 237, 236, 237, 236,
237, 236, 236, 236, 236, 236, 235, 234, 234, 234, 234, 236, 236, 235, 235, 235, 234, 234, 234, 235, 235, 235, 235, 235, 235, 235, 235, 235,
235, 235, 235, 234, 235, 235, 236, 235, 235, 234, 234], "coordinates": [(484, 379), (500, 379), (484, 395), (500, 395)]}
self.spaces["nwc1000m_a6"] = {"MaxOccupancy":4, "PermanentSpace":True, "AverageConsumption":5000, "AverageTemp":75, "ConsumptionOverTime":
[235, 236, 236, 235, 235, 235, 235, 236, 237, 235, 235, 235, 234, 236, 235, 234, 234, 234, 237, 235, 233, 234, 233, 236, 234, 234, 236, 236,
236, 240, 238, 243, 238, 238, 240, 240, 238, 237, 239, 239, 239, 239, 238, 240, 241, 242, 241, 243, 241, 242, 239, 241, 242, 241, 239, 242,
238, 241, 239, 237, 241, 236, 237, 238, 235, 237, 237, 238, 235, 235, 237, 236, 234, 237, 235, 235, 235, 236, 235, 237, 235, 236, 236, 237,
235, 237, 235, 236, 236, 236, 236, 235, 235, 235, 234, 234], "coordinates": [(484, 539), (500, 539), (484, 555), (500, 555)]}
self.spaces["nwc10"] = {"MaxOccupancy":1000, "PermanentSpace":False, "AverageConsumption":300, "AverageTemp":60, "ConsumptionOverTime":
[178, 178, 177, 178, 177, 178, 177, 177, 178, 178, 177, 177, 177, 178, 178, 177, 176, 177, 178, 178, 178, 177, 177, 176, 178, 178, 177, 178,
177, 178, 177, 177, 178, 178, 177, 177, 177, 178, 178, 177, 176, 177, 178, 178, 178, 177, 177, 176, 178, 178, 177, 178, 177, 178, 177, 177,
178, 178, 177, 177, 177, 178, 178, 177, 176, 177, 178, 178, 178, 177, 177, 176, 178, 178, 177, 178, 177, 178, 177, 177, 178, 178, 177, 177,
177, 178, 178, 177, 176, 177, 178, 178, 178, 177, 177, 176], "coordinates": []}
self.spaces["nwc1008"] = {"MaxOccupancy":2, "PermanentSpace":True, "AverageConsumption":700, "AverageTemp":70, "ConsumptionOverTime":
[174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173,
174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173,
174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173,
174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173], "coordinates": [(204, 509)]}
def loadFromCode2(self):
self.parameters['Peter'] = {"SpacePref": {"nwc1003b_a":54.36, "nwc1003b_b":15.25, "nwc1000m_a6":21.2, "nwc1003g": 10.0, "nwc10": 1.05},
"SetpointPref":71, "AlonePref": True}
self.parameters['Stephen'] = {"SpacePref": {"nwc1003b_b":10.0, "nwc1003b_a":30.0, "nwc1000m_a6":55.0, "nwc1003g": 10.0, "nwc10": 1.0}, "SetpointPref":69,
"AlonePref":False}
self.parameters['Laixi'] = {"SpacePref": {"nwc1003b_a":1.0, "nwc1000m_a6":85.0, "nwc10": 1.0}, "SetpointPref":74,
"AlonePref":False}
self.parameters['Xuanyu'] = {"SpacePref": {"nwc1003b_a":1.0, "nwc1000m_a6":85.0, "nwc10":1.0}, "SetpointPref":77,
"AlonePref":False}
self.parameters['Ji'] = {"SpacePref": {"nwc1003b_a":1.0, "nwc1000m_a6":85.0, "nwc1003g": 10.0, "nwc10":1.0}, "SetpointPref":78,
"AlonePref":False}
self.parameters['Mark'] = {"SpacePref":{"nwc1000m_a1":86.0, "nwc1000m_a2":7.0}, "SetpointPref":69,
"AlonePref":False}
self.parameters['LeiLei'] = {"SpacePref":{"nwc1000m_a2":89.0, "nwc1000m_a1":7.4}, "SetpointPref":66,
"AlonePref":False}
self.parameters['Fred'] = {"SpacePref":{"nwc1008":90.0, "nwc10":10.0}, "SetpointPref":72, "AlonePref":False}
self.spaces["nwc1003b_a"] = {"MaxOccupancy":2, "PermanentSpace":True, "AverageConsumption":10000, "AverageTemp":73, "ConsumptionOverTime":
[570, 567, 562, 568, 563, 568, 564, 565, 566, 566, 562, 557, 555, 555, 550, 559, 566, 568, 560, 563, 559, 562, 559, 561, 571, 943, 1077, 1038,
722, 617, 607, 752, 1427, 1568, 1578, 1570, 1478, 2185, 2319, 1811, 1515, 1737, 2602, 5745, 5247, 4832, 1790, 1870, 1708, 1744, 2640, 979, 809,
1182, 3640, 3525, 2067, 1070, 917, 1409, 1215, 1074, 1103, 903, 663, 706, 722, 696, 742, 713, 764, 619, 477, 552, 690, 509, 540, 552, 561, 561, 563,
563, 566, 554, 557, 560, 549, 563, 565, 574, 572, 562, 563, 550, 557, 558], "coordinates": [(8, 499), (24, 499), (40, 499), (56, 499)]}
self.spaces["nwc1003b_b"] = {"MaxOccupancy":2, "PermanentSpace":True, "AverageConsumption":9000, "AverageTemp":70, "ConsumptionOverTime":
[570, 568, 562, 568, 564, 568, 564, 565, 566, 566, 562, 557, 555, 555, 550, 559, 566, 568, 560, 563, 559, 562, 559, 561, 571, 943, 1077, 1038, 722,
617, 607, 752, 1427, 1568, 1578, 1570, 1479, 2185, 2319, 1811, 1515, 1737, 2602, 5745, 5247, 4832, 1790, 1870, 1708, 1744, 2641, 979, 809, 1182,
3640, 3525, 2067, 1070, 917, 1409, 1215, 1074, 1103, 903, 663, 706, 722, 696, 742, 713, 765, 619, 477, 553, 690, 510, 541, 552, 561, 561, 563, 564,
567, 554, 558, 560, 550, 563, 566, 574, 572, 562, 563, 551, 557, 559], "coordinates": [(8, 539), (24, 539), (40, 539), (56, 539)]}
self.spaces["nwc1003g"] = {"MaxOccupancy":5, "PermanentSpace":True, "AverageConsumption": 1000, "AverageTemp": 74, "ConsumptionOverTime":
[91, 91, 90, 92, 90, 92, 90, 90, 92, 91, 89, 89, 89, 91, 89, 89, 89, 90, 88, 90, 86, 88, 86, 87, 98, 411, 568, 567, 399, 342, 327, 407, 854,
1068, 1070, 1089, 1023, 1763, 1827, 1411, 1042, 1134, 1718, 2515, 745, 867, 458, 433, 365, 549, 507, 589, 2787, 4301, 2517, 1682, 1204, 562, 450, 818,
426, 439, 459, 511, 431, 440, 467, 469, 521, 465, 515, 373, 190, 132, 116, 90, 93, 92, 92, 93, 93, 92, 93, 92, 92, 93, 91, 92, 92, 94, 93, 90, 92, 89, 92, 90],
"coordinates": [(84, 499), (100, 499), (84, 529), (100, 529)]}
self.spaces["nwc1000m_a1"] = {"MaxOccupancy":4, "PermanentSpace":True, "AverageConsumption":3000, "AverageTemp":72, "ConsumptionOverTime":
[235, 236, 239, 236, 236, 236, 236, 236, 236, 236, 236, 236, 235, 236, 235, 235, 235, 235, 235, 235, 234, 235, 234, 235, 235, 235, 235, 235,
235, 235, 235, 235, 235, 235, 235, 235, 235, 234, 235, 235, 236, 236, 236, 237, 239, 237, 237, 236, 237, 236, 237, 238, 237, 238, 237, 238, 237,
237, 237, 237, 237, 236, 235, 235, 235, 235, 237, 237, 236, 236, 236, 235, 235, 235, 236, 235, 236, 235, 236, 236, 236, 236, 236, 236, 236, 236,
235, 236, 236, 237, 236, 236, 235, 235, 235, 235], "coordinates": [(484, 343), (500, 343), (484, 359), (500, 359)]}
self.spaces["nwc1000m_a2"] = {"MaxOccupancy":4, "PermanentSpace":True, "AverageConsumption":4000, "AverageTemp":67, "ConsumptionOverTime":
[234, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 235, 234, 235, 235, 234, 234, 235, 234, 235, 234, 235, 234, 234, 234, 234, 234, 234, 234,
234, 234, 234, 234, 234, 234, 234, 234, 234, 234, 233, 234, 235, 235, 235, 235, 235, 238, 236, 236, 235, 236, 236, 236, 237, 236, 237, 236,
237, 236, 236, 236, 236, 236, 235, 234, 234, 234, 234, 236, 236, 235, 235, 235, 234, 234, 234, 235, 235, 235, 235, 235, 235, 235, 235, 235,
235, 235, 235, 234, 235, 235, 236, 235, 235, 234, 234], "coordinates": [(484, 379), (500, 379), (484, 395), (500, 395)]}
self.spaces["nwc1000m_a6"] = {"MaxOccupancy":4, "PermanentSpace":True, "AverageConsumption":5000, "AverageTemp":75, "ConsumptionOverTime":
[235, 236, 236, 235, 235, 235, 235, 236, 237, 235, 235, 235, 234, 236, 235, 234, 234, 234, 237, 235, 233, 234, 233, 236, 234, 234, 236, 236,
236, 240, 238, 243, 238, 238, 240, 240, 238, 237, 239, 239, 239, 239, 238, 240, 241, 242, 241, 243, 241, 242, 239, 241, 242, 241, 239, 242,
238, 241, 239, 237, 241, 236, 237, 238, 235, 237, 237, 238, 235, 235, 237, 236, 234, 237, 235, 235, 235, 236, 235, 237, 235, 236, 236, 237,
235, 237, 235, 236, 236, 236, 236, 235, 235, 235, 234, 234], "coordinates": [(484, 539), (500, 539), (484, 555), (500, 555)]}
self.spaces["nwc10"] = {"MaxOccupancy":1000, "PermanentSpace":False, "AverageConsumption":300, "AverageTemp":60, "ConsumptionOverTime":
[178, 178, 177, 178, 177, 178, 177, 177, 178, 178, 177, 177, 177, 178, 178, 177, 176, 177, 178, 178, 178, 177, 177, 176, 178, 178, 177, 178,
177, 178, 177, 177, 178, 178, 177, 177, 177, 178, 178, 177, 176, 177, 178, 178, 178, 177, 177, 176, 178, 178, 177, 178, 177, 178, 177, 177,
178, 178, 177, 177, 177, 178, 178, 177, 176, 177, 178, 178, 178, 177, 177, 176, 178, 178, 177, 178, 177, 178, 177, 177, 178, 178, 177, 177,
177, 178, 178, 177, 176, 177, 178, 178, 178, 177, 177, 176], "coordinates": []}
self.spaces["nwc1008"] = {"MaxOccupancy":2, "PermanentSpace":True, "AverageConsumption":700, "AverageTemp":70, "ConsumptionOverTime":
[174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173,
174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173,
174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173,
174, 173, 174, 173, 174, 173, 174, 173, 174, 173, 174, 173], "coordinates": [(204, 509), (220, 509)]}
S = simulator()
S.timedSimulatedAnnealing(1000) | 27,024 | -5 | 706 |
59ff111215f6abac14f607980ea6b1f07a25b20f | 153 | py | Python | case_plaso/__init__.py | casework/CASE-Implementation-Plaso | 37243fce53d2a31388fdb405860955ee443bbe96 | [
"Apache-2.0"
] | 1 | 2019-04-16T17:07:56.000Z | 2019-04-16T17:07:56.000Z | case_plaso/__init__.py | casework/CASE-Implementation-Plaso | 37243fce53d2a31388fdb405860955ee443bbe96 | [
"Apache-2.0"
] | null | null | null | case_plaso/__init__.py | casework/CASE-Implementation-Plaso | 37243fce53d2a31388fdb405860955ee443bbe96 | [
"Apache-2.0"
] | null | null | null |
import rdflib
# Store custom properties and objects not defined in CASE as the PLASO prefix.
PLASO = rdflib.Namespace('http://plaso.example.org/core#') | 30.6 | 78 | 0.771242 |
import rdflib
# Store custom properties and objects not defined in CASE as the PLASO prefix.
PLASO = rdflib.Namespace('http://plaso.example.org/core#') | 0 | 0 | 0 |
0d7d627d1c06671d21f53bcf881ae4e4eabbbf6f | 60 | py | Python | T07-13/program.py | maa76/SSof-Project1920 | 9b4ad9ac41a648c425fcfcd49cd52ff84e528bde | [
"MIT"
] | 2 | 2019-11-20T19:26:07.000Z | 2019-11-22T00:42:23.000Z | T07-13/program.py | maa76/SSof-Project1920 | 9b4ad9ac41a648c425fcfcd49cd52ff84e528bde | [
"MIT"
] | 2 | 2019-11-28T05:21:24.000Z | 2019-11-28T05:21:58.000Z | T07-13/program.py | maa76/SSof-Project1920 | 9b4ad9ac41a648c425fcfcd49cd52ff84e528bde | [
"MIT"
] | 25 | 2019-11-27T01:40:56.000Z | 2019-12-04T23:38:59.000Z | a = source()
b = k
if a:
b = c
elif a:
b = d
sink(b) | 8.571429 | 12 | 0.433333 | a = source()
b = k
if a:
b = c
elif a:
b = d
sink(b) | 0 | 0 | 0 |
15188f66f4181f2f1a482c3e158656cdf1b983a5 | 1,647 | py | Python | authentication/SignupHandler.py | anabarasan/moderator2 | d48389b7dbc0892efaf811ab332e3c7fdb59cec0 | [
"MIT"
] | null | null | null | authentication/SignupHandler.py | anabarasan/moderator2 | d48389b7dbc0892efaf811ab332e3c7fdb59cec0 | [
"MIT"
] | 3 | 2015-10-27T11:20:22.000Z | 2015-10-27T11:31:07.000Z | authentication/SignupHandler.py | anabarasan/moderator2 | d48389b7dbc0892efaf811ab332e3c7fdb59cec0 | [
"MIT"
] | null | null | null | from authentication import BaseHandler
from authentication import app
# from authentication import sendmail
@app.route('/signup', 'signup')
| 33.612245 | 147 | 0.656345 | from authentication import BaseHandler
from authentication import app
# from authentication import sendmail
@app.route('/signup', 'signup')
class SignupHandler(BaseHandler):
def get(self):
self.render_template('signup.html')
def post(self):
user_name = self.request.get('username')
email = self.request.get('email')
name = self.request.get('name')
password = self.request.get('password')
last_name = self.request.get('lastname')
unique_properties = ['email_address']
user_data = self.user_model.create_user(user_name,
unique_properties,
email_address=email, name=name, password_raw=password,
last_name=last_name, verified=False)
if not user_data[0]: # user_data is a tuple
self.display_message('Unable to create user for email %s because of \
duplicate keys %s' % (user_name, user_data[1]))
return
user = user_data[1]
user_id = user.get_id()
token = self.user_model.create_signup_token(user_id)
verification_url = self.uri_for('verification', type='v', user_id=user_id,
signup_token=token, _full=True)
# message = """Dear %s
#
# Your Mongoose Moderator Account has been created.
# Click the link below to verify.
#
# [%s]
#
# The Mongoose Moderator""" % (name, verification_url)
#
# sendmail(email, "Your Mongoose Moderator account", message)
# self.display_message("Click on the link to verify your account <br/> <a href='%s' class='btn btn-primary'>Verify</a>" % verification_url)
self.redirect(verification_url)
| 1,418 | 12 | 75 |
01dd071fc49f87f71bc4878eb9578d3f0818c006 | 5,004 | py | Python | pentest-scripts/learning-python-for-forensics/Chapter 3/setupapi_parser.py | paulveillard/cybersecurity-penetration-testing | a5afff13ec25afd0cf16ef966d35bddb91518af4 | [
"Apache-2.0"
] | 6 | 2021-12-07T21:02:12.000Z | 2022-03-03T12:08:14.000Z | pentest-scripts/learning-python-for-forensics/Chapter 3/setupapi_parser.py | paulveillard/cybersecurity-penetration-testing | a5afff13ec25afd0cf16ef966d35bddb91518af4 | [
"Apache-2.0"
] | null | null | null | pentest-scripts/learning-python-for-forensics/Chapter 3/setupapi_parser.py | paulveillard/cybersecurity-penetration-testing | a5afff13ec25afd0cf16ef966d35bddb91518af4 | [
"Apache-2.0"
] | 1 | 2022-01-15T23:57:36.000Z | 2022-01-15T23:57:36.000Z | import argparse
import os
import sys
import usb_lookup
__author__ = 'Preston Miller & Chapin Bryce'
__date__ = '20160401'
__version__ = 0.03
__description__ = 'This scripts reads a Windows 7 Setup API log and prints USB Devices to the user'
def main(in_file):
"""
Main function to handle operation
:param in_file: Str - Path to setupapi log to analyze
:return: None
"""
if os.path.isfile(in_file):
device_information = parseSetupapi(in_file)
usb_ids = prepUSBLookup()
for device in device_information:
parsed_info = parseDeviceInfo(device)
if isinstance(parsed_info, dict):
parsed_info = getDeviceNames(usb_ids, parsed_info)
if parsed_info is not None:
printOutput(parsed_info)
print '\n\n{} parsed and printed successfully.'.format(in_file)
else:
print 'Input: {} was not found. Please check your path and permissions.'.format(in_file)
sys.exit(1)
def parseSetupapi(setup_log):
"""
Read data from provided file for Device Install Events for USB Devices
:param setup_log: str - Path to valid setup api log
:return: tuple of str - Device name and date
"""
device_list = list()
unique_list = set()
with open(setup_log) as in_file:
for line in in_file:
lower_line = line.lower()
if 'device install (hardware initiated)' in lower_line and ('vid' in lower_line or 'ven' in lower_line):
device_name = line.split('-')[1].strip()
date = next(in_file).split('start')[1].strip()
if device_name not in unique_list:
device_list.append((device_name, date))
unique_list.add(device_name)
return device_list
def parseDeviceInfo(device_info):
"""
Parses Vendor, Product, Revision and UID from a Setup API entry
:param device_info: string of device information to parse
:return: dictionary of parsed information or original string if error
"""
# Initialize variables
vid = ''
pid = ''
rev = ''
uid = ''
# Split string into segments on \\
segments = device_info[0].split('\\')
if 'usb' not in segments[0].lower():
return None # Eliminate non-USB devices from output. may hide othe rstorage devices
for item in segments[1].split('&'):
lower_item = item.lower()
if 'ven' in lower_item or 'vid' in lower_item:
vid = item.split('_',1)[-1]
elif 'dev' in lower_item or 'pid' in lower_item or 'prod' in lower_item:
pid = item.split('_',1)[-1]
elif 'rev' in lower_item or 'mi' in lower_item:
rev = item.split('_',1)[-1]
if len(segments) >= 3:
uid = segments[2].strip(']')
if vid != '' or pid != '':
return {'Vendor ID': vid.lower(), 'Product ID': pid.lower(),
'Revision': rev, 'UID': uid,
'First Installation Date': device_info[1]}
else:
# Unable to parse data, returning whole string
return device_info
def prepUSBLookup():
"""
Prepare the lookup of USB devices through accessing the most recent copy
of the database at http://linux-usb.org/usb.ids and parsing it into a
queriable dictionary format.
"""
usb_file = usb_lookup.getUSBFile()
return usb_lookup.parseFile(usb_file)
def getDeviceNames(usb_dict, device_info):
"""
Query `usb_lookup.py` for device information based on VID/PID.
:param usb_dict: Dictionary from usb_lookup.py of known devices.
:param device_info: Dictionary containing 'Vendor ID' and 'Product ID' keys and values.
:return: original dictionary with 'Vendor Name' and 'Product Name' keys and values
"""
device_name = usb_lookup.searchKey(usb_dict, [device_info['Vendor ID'], device_info['Product ID']])
device_info['Vendor Name'] = device_name[0]
device_info['Product Name'] = device_name[1]
return device_info
def printOutput(usb_information):
"""
Print formatted information about USB Device
:param usb_information: dictionary containing key/value information about each device or tuple of device information
:return: None
"""
print '{:-^15}'.format('')
if isinstance(usb_information, dict):
for key_name, value_name in usb_information.items():
print '{}: {}'.format(key_name, value_name)
elif isinstance(usb_information, tuple):
print 'Device: {}'.format(usb_information[0])
print 'Date: {}'.format(usb_information[1])
if __name__ == '__main__':
# Run this code if the script is run from the command line.
parser = argparse.ArgumentParser(
description='SetupAPI Parser',
version=__version__,
epilog='Developed by ' + __author__ + ' on ' + __date__
)
parser.add_argument('IN_FILE', help='Windows 7 SetupAPI file')
args = parser.parse_args()
# Run main program
main(args.IN_FILE)
| 33.583893 | 120 | 0.643086 | import argparse
import os
import sys
import usb_lookup
__author__ = 'Preston Miller & Chapin Bryce'
__date__ = '20160401'
__version__ = 0.03
__description__ = 'This scripts reads a Windows 7 Setup API log and prints USB Devices to the user'
def main(in_file):
"""
Main function to handle operation
:param in_file: Str - Path to setupapi log to analyze
:return: None
"""
if os.path.isfile(in_file):
device_information = parseSetupapi(in_file)
usb_ids = prepUSBLookup()
for device in device_information:
parsed_info = parseDeviceInfo(device)
if isinstance(parsed_info, dict):
parsed_info = getDeviceNames(usb_ids, parsed_info)
if parsed_info is not None:
printOutput(parsed_info)
print '\n\n{} parsed and printed successfully.'.format(in_file)
else:
print 'Input: {} was not found. Please check your path and permissions.'.format(in_file)
sys.exit(1)
def parseSetupapi(setup_log):
"""
Read data from provided file for Device Install Events for USB Devices
:param setup_log: str - Path to valid setup api log
:return: tuple of str - Device name and date
"""
device_list = list()
unique_list = set()
with open(setup_log) as in_file:
for line in in_file:
lower_line = line.lower()
if 'device install (hardware initiated)' in lower_line and ('vid' in lower_line or 'ven' in lower_line):
device_name = line.split('-')[1].strip()
date = next(in_file).split('start')[1].strip()
if device_name not in unique_list:
device_list.append((device_name, date))
unique_list.add(device_name)
return device_list
def parseDeviceInfo(device_info):
"""
Parses Vendor, Product, Revision and UID from a Setup API entry
:param device_info: string of device information to parse
:return: dictionary of parsed information or original string if error
"""
# Initialize variables
vid = ''
pid = ''
rev = ''
uid = ''
# Split string into segments on \\
segments = device_info[0].split('\\')
if 'usb' not in segments[0].lower():
return None # Eliminate non-USB devices from output. may hide othe rstorage devices
for item in segments[1].split('&'):
lower_item = item.lower()
if 'ven' in lower_item or 'vid' in lower_item:
vid = item.split('_',1)[-1]
elif 'dev' in lower_item or 'pid' in lower_item or 'prod' in lower_item:
pid = item.split('_',1)[-1]
elif 'rev' in lower_item or 'mi' in lower_item:
rev = item.split('_',1)[-1]
if len(segments) >= 3:
uid = segments[2].strip(']')
if vid != '' or pid != '':
return {'Vendor ID': vid.lower(), 'Product ID': pid.lower(),
'Revision': rev, 'UID': uid,
'First Installation Date': device_info[1]}
else:
# Unable to parse data, returning whole string
return device_info
def prepUSBLookup():
"""
Prepare the lookup of USB devices through accessing the most recent copy
of the database at http://linux-usb.org/usb.ids and parsing it into a
queriable dictionary format.
"""
usb_file = usb_lookup.getUSBFile()
return usb_lookup.parseFile(usb_file)
def getDeviceNames(usb_dict, device_info):
"""
Query `usb_lookup.py` for device information based on VID/PID.
:param usb_dict: Dictionary from usb_lookup.py of known devices.
:param device_info: Dictionary containing 'Vendor ID' and 'Product ID' keys and values.
:return: original dictionary with 'Vendor Name' and 'Product Name' keys and values
"""
device_name = usb_lookup.searchKey(usb_dict, [device_info['Vendor ID'], device_info['Product ID']])
device_info['Vendor Name'] = device_name[0]
device_info['Product Name'] = device_name[1]
return device_info
def printOutput(usb_information):
"""
Print formatted information about USB Device
:param usb_information: dictionary containing key/value information about each device or tuple of device information
:return: None
"""
print '{:-^15}'.format('')
if isinstance(usb_information, dict):
for key_name, value_name in usb_information.items():
print '{}: {}'.format(key_name, value_name)
elif isinstance(usb_information, tuple):
print 'Device: {}'.format(usb_information[0])
print 'Date: {}'.format(usb_information[1])
if __name__ == '__main__':
# Run this code if the script is run from the command line.
parser = argparse.ArgumentParser(
description='SetupAPI Parser',
version=__version__,
epilog='Developed by ' + __author__ + ' on ' + __date__
)
parser.add_argument('IN_FILE', help='Windows 7 SetupAPI file')
args = parser.parse_args()
# Run main program
main(args.IN_FILE)
| 0 | 0 | 0 |
b884a674517638e0e6230eed1a55d1d055cedc2f | 2,939 | py | Python | backend/project/app/extension/history/conference_ortho_plastic.py | goodyttoor/tcl_v7 | ceb545fa3f0e3eaf3a1a43c7e4a2102014b82a47 | [
"MIT"
] | null | null | null | backend/project/app/extension/history/conference_ortho_plastic.py | goodyttoor/tcl_v7 | ceb545fa3f0e3eaf3a1a43c7e4a2102014b82a47 | [
"MIT"
] | null | null | null | backend/project/app/extension/history/conference_ortho_plastic.py | goodyttoor/tcl_v7 | ceb545fa3f0e3eaf3a1a43c7e4a2102014b82a47 | [
"MIT"
] | null | null | null | from datetime import datetime
from typing import Optional
from fastapi import APIRouter, Depends
from sqlmodel import Field, SQLModel
from ...db import get_session
from sqlalchemy import select
from sqlalchemy.ext.asyncio import AsyncSession
router = APIRouter()
@router.post("/history_ortho_conference", response_model=HistoryOrthoPlasticConference)
@router.post("/ortho_conference", response_model=OrthoPlasticConference)
@router.get("/history_ortho_conference/{id}", response_model=HistoryOrthoPlasticConference)
@router.put("/history_ortho_conference/{id}", response_model=HistoryOrthoPlasticConference)
@router.delete("/history_ortho_conference/{id}")
@router.delete("/history_ortho_conference/{id}") | 33.022472 | 145 | 0.787683 | from datetime import datetime
from typing import Optional
from fastapi import APIRouter, Depends
from sqlmodel import Field, SQLModel
from ...db import get_session
from sqlalchemy import select
from sqlalchemy.ext.asyncio import AsyncSession
router = APIRouter()
class HistoryOrthoPlasticConference(SQLModel, table=True):
id: Optional[int] = Field(default=None, primary_key=True)
history_id_order: int
history_id_conference: int
ortho_plastic_conference_id: int
state: str
created_at: datetime
updated_at: datetime
created_by: int
updated_by: Optional[int] = None
class OrthoPlasticConference(SQLModel, table=True):
id: Optional[int] = Field(default=None, primary_key=True)
problem: str
question: str
ortho_plan: str
maxillo_plan: str
surgeon_plant: str
post_plan: str
surgeon_post_plan: str
created_at: datetime
updated_at: datetime
created_by: int
updated_by: Optional[int] = None
class OrthoPlasticConferenceDoctorMap(SQLModel, table=True):
id: Optional[int] = Field(default=None, primary_key=True)
ortho_plastic_conference_id: int
doctor_id: int
created_at: datetime
updated_at: datetime
created_by: int
updated_by: Optional[int] = None
@router.post("/history_ortho_conference", response_model=HistoryOrthoPlasticConference)
async def create_history_ortho_conference(history_ortho_conference: HistoryOrthoPlasticConference, session: AsyncSession = Depends(get_session)):
session.add(history_ortho_conference)
await session.commit()
await session.refresh(history_ortho_conference)
return history_ortho_conference
@router.post("/ortho_conference", response_model=OrthoPlasticConference)
async def create_ortho_conference(ortho_conference: OrthoPlasticConference, session: AsyncSession = Depends(get_session)):
session.add(ortho_conference)
await session.commit()
await session.refresh(ortho_conference)
return ortho_conference
@router.get("/history_ortho_conference/{id}", response_model=HistoryOrthoPlasticConference)
async def get_history_ortho_conference(id: int, session: AsyncSession = Depends(get_session)):
history_ortho_conferences = await session.execute(select(HistoryOrthoPlasticConference).where(HistoryOrthoPlasticConference.id == id))
history_ortho_conference = history_ortho_conferences.scalars().first()
return history_ortho_conference
@router.put("/history_ortho_conference/{id}", response_model=HistoryOrthoPlasticConference)
async def update_history_ortho_conference(id: int, session: AsyncSession = Depends(get_session)):
return None
@router.delete("/history_ortho_conference/{id}")
async def delete_history_ortho_conference(session: AsyncSession = Depends(get_session)):
return None
@router.delete("/history_ortho_conference/{id}")
async def delete_ortho_conference(session: AsyncSession = Depends(get_session)):
return None | 1,088 | 924 | 201 |
1ffd5d157dc595c86121033df8bd227467261508 | 23 | py | Python | backend/book/models/__init__.py | Mackrage/worm_rage_bot | 7211c0c89ad12714eccdc98c6a84e7309108aabc | [
"MIT"
] | 216 | 2016-02-20T12:46:43.000Z | 2022-02-23T07:07:00.000Z | models/medium/book/__init__.py | billvsme/tvCrawlers | e19111cc48d0a2a44c5245b0ddc9fad0c7a1824d | [
"MIT"
] | 3 | 2016-05-06T05:04:17.000Z | 2021-12-13T19:41:39.000Z | models/medium/book/__init__.py | billvsme/tvCrawlers | e19111cc48d0a2a44c5245b0ddc9fad0c7a1824d | [
"MIT"
] | 99 | 2016-02-20T08:34:00.000Z | 2022-02-10T20:52:01.000Z | from .book import Book
| 11.5 | 22 | 0.782609 | from .book import Book
| 0 | 0 | 0 |
ddbc6ba2496ec92e3e239527842fdb6ed65fd68b | 2,045 | py | Python | sandbox/numpy/tuto1.py | rboman/progs | c60b4e0487d01ccd007bcba79d1548ebe1685655 | [
"Apache-2.0"
] | 2 | 2021-12-12T13:26:06.000Z | 2022-03-03T16:14:53.000Z | sandbox/numpy/tuto1.py | rboman/progs | c60b4e0487d01ccd007bcba79d1548ebe1685655 | [
"Apache-2.0"
] | 5 | 2019-03-01T07:08:46.000Z | 2019-04-28T07:32:42.000Z | sandbox/numpy/tuto1.py | rboman/progs | c60b4e0487d01ccd007bcba79d1548ebe1685655 | [
"Apache-2.0"
] | 2 | 2017-12-13T13:13:52.000Z | 2019-03-13T20:08:15.000Z | #! /usr/bin/env python3
# -*- coding: utf-8 -*-
# from https://docs.scipy.org/doc/numpy-dev/user/quickstart.html
import numpy as np
a = np.arange(15).reshape(3, 5)
print("a=",a)
print("\ta.shape =",a.shape)
print("\ta.ndim =",a.ndim)
print("\ta.dtype.name =",a.dtype.name)
print("\ta.itemsize =",a.itemsize)
print("\ta.size =",a.size)
print("\ttype(a) =",type(a))
b = np.array([6, 7, 8])
print("b=",b)
print("\ttype(b)=",type(b))
print("\tb.dtype.name =",b.dtype.name)
print(np.array([(1.5,2,3), (4,5,6)]))
print(np.zeros( (3,4) ))
print(np.ones( (2,3,4), dtype=np.int32 ))
print(np.empty( (2,3) ))
x = np.linspace( 0, 2*np.pi, 5 )
f = np.sin(x) # np.exp, np.sqrt, nop.cos, etc
print("x=",x)
print("sin(x)=",f)
# Arithmetic operators on arrays apply elementwise
A = np.array( [[1,1], [0,1]] )
B = np.array( [[2,0], [3,4]] )
print("A=", A)
print("B=", B)
print("A*B=", A*B) # elementwise product
print("A.dot(B)=", A.dot(B)) # matrix product
b = np.arange(12).reshape(3,4)
print("b=", b)
print("b.sum(axis=0) =", b.sum(axis=0))
print("b.min(axis=1) =", b.min(axis=1))
print("b.max(axis=0) =", b.max(axis=0))
# indexing / slicing
a = np.arange(10)+3
print("a =", a)
print("a[2] =", a[2])
print("a[2:4] =", a[2:4]) # renvoie une "view", c a d une ref
print("a[0:6:2] =", a[0:6:2]) #i=>j par pas de k
print("a[:] =",a[:])
print("a[-1] =",a[-1])
b = np.fromfunction(lambda x,y: 10*x+y,(5,4),dtype=int) #creation par fct
print("b =", b)
print("b[1:3, : ] =", b[1:3, : ])
print("b[2] =", b[2]) # 3ieme ligne
# iteration
for element in b.flat:
print(element)
# shape
print("A.T = ", A.T)
a= np.arange(12)
print("a=", a)
a.reshape(3,4) # a n'est PAS modifié => renvoie un objet
print("a=", a)
a.resize(3,4) # a est modifié
print("a=", a)
# views/copies
d = a # d n'est qu'une ref vers a (1 seul objet numpy)
d = a.view() # d est un nouvel objet numpy qui pointe vers les mêmes données
# les slices fonctionnent comme ca
d = a.copy() # d est indep de "a"
| 22.977528 | 79 | 0.56577 | #! /usr/bin/env python3
# -*- coding: utf-8 -*-
# from https://docs.scipy.org/doc/numpy-dev/user/quickstart.html
import numpy as np
a = np.arange(15).reshape(3, 5)
print("a=",a)
print("\ta.shape =",a.shape)
print("\ta.ndim =",a.ndim)
print("\ta.dtype.name =",a.dtype.name)
print("\ta.itemsize =",a.itemsize)
print("\ta.size =",a.size)
print("\ttype(a) =",type(a))
b = np.array([6, 7, 8])
print("b=",b)
print("\ttype(b)=",type(b))
print("\tb.dtype.name =",b.dtype.name)
print(np.array([(1.5,2,3), (4,5,6)]))
print(np.zeros( (3,4) ))
print(np.ones( (2,3,4), dtype=np.int32 ))
print(np.empty( (2,3) ))
x = np.linspace( 0, 2*np.pi, 5 )
f = np.sin(x) # np.exp, np.sqrt, nop.cos, etc
print("x=",x)
print("sin(x)=",f)
# Arithmetic operators on arrays apply elementwise
A = np.array( [[1,1], [0,1]] )
B = np.array( [[2,0], [3,4]] )
print("A=", A)
print("B=", B)
print("A*B=", A*B) # elementwise product
print("A.dot(B)=", A.dot(B)) # matrix product
b = np.arange(12).reshape(3,4)
print("b=", b)
print("b.sum(axis=0) =", b.sum(axis=0))
print("b.min(axis=1) =", b.min(axis=1))
print("b.max(axis=0) =", b.max(axis=0))
# indexing / slicing
a = np.arange(10)+3
print("a =", a)
print("a[2] =", a[2])
print("a[2:4] =", a[2:4]) # renvoie une "view", c a d une ref
print("a[0:6:2] =", a[0:6:2]) #i=>j par pas de k
print("a[:] =",a[:])
print("a[-1] =",a[-1])
b = np.fromfunction(lambda x,y: 10*x+y,(5,4),dtype=int) #creation par fct
print("b =", b)
print("b[1:3, : ] =", b[1:3, : ])
print("b[2] =", b[2]) # 3ieme ligne
# iteration
for element in b.flat:
print(element)
# shape
print("A.T = ", A.T)
a= np.arange(12)
print("a=", a)
a.reshape(3,4) # a n'est PAS modifié => renvoie un objet
print("a=", a)
a.resize(3,4) # a est modifié
print("a=", a)
# views/copies
d = a # d n'est qu'une ref vers a (1 seul objet numpy)
d = a.view() # d est un nouvel objet numpy qui pointe vers les mêmes données
# les slices fonctionnent comme ca
d = a.copy() # d est indep de "a"
| 0 | 0 | 0 |
81ed5c7ba1b5328f5aab207b78f2890ef13dce3e | 6,990 | py | Python | capreolus/extractor/lce_bertpassage.py | nimasadri11/capreolus | 27b081ec1a37d2af6afa6b61eb1cb7cc4ec9db1c | [
"Apache-2.0"
] | null | null | null | capreolus/extractor/lce_bertpassage.py | nimasadri11/capreolus | 27b081ec1a37d2af6afa6b61eb1cb7cc4ec9db1c | [
"Apache-2.0"
] | null | null | null | capreolus/extractor/lce_bertpassage.py | nimasadri11/capreolus | 27b081ec1a37d2af6afa6b61eb1cb7cc4ec9db1c | [
"Apache-2.0"
] | null | null | null | import tensorflow as tf
import numpy as np
from capreolus import get_logger
from capreolus.utils.exceptions import MissingDocError
from . import Extractor
from .bertpassage import BertPassage
logger = get_logger(__name__)
@Extractor.register
| 42.883436 | 125 | 0.636767 | import tensorflow as tf
import numpy as np
from capreolus import get_logger
from capreolus.utils.exceptions import MissingDocError
from . import Extractor
from .bertpassage import BertPassage
logger = get_logger(__name__)
@Extractor.register
class LCEBertPassage(BertPassage):
module_name = "LCEbertpassage"
config_spec = BertPassage.config_spec
def create_tf_train_feature(self, sample):
"""
Returns a set of features from a doc.
Of the num_passages passages that are present in a document, we use only a subset of it.
params:
sample - A dict where each entry has the shape [batch_size, num_passages, maxseqlen]
Returns a list of features. Each feature is a dict, and each value in the dict has the shape [batch_size, maxseqlen].
Yes, the output shape is different to the input shape because we sample from the passages.
"""
num_passages = self.config["numpassages"]
def _bytes_feature(value):
"""Returns a bytes_list from a string / byte. Our features are multi-dimensional tensors."""
if isinstance(value, type(tf.constant(0))): # if value ist tensor
value = value.numpy() # get value of tensor
return tf.train.Feature(bytes_list=tf.train.BytesList(value=[value]))
def transpose_neg_input(neg_inp):
return tf.cast(tf.transpose(neg_inp, perm=[1, 0, 2]), tf.int64)
posdoc, negdoc, negdoc_id = sample["pos_bert_input"], sample["neg_bert_input"], sample["negdocid"]
posdoc_mask, posdoc_seg, negdoc_mask, negdoc_seg = (
sample["pos_mask"],
sample["pos_seg"],
sample["neg_mask"],
sample["neg_seg"],
)
label = sample["label"]
features = []
negdoc = transpose_neg_input(negdoc)
negdoc_seg = transpose_neg_input(negdoc_seg)
negdoc_mask = transpose_neg_input(negdoc_mask)
for i in range(num_passages):
if i > 0 and self.rng.random() > self.config["prob"]:
continue
bert_input_line = posdoc[i]
bert_input_line = " ".join(self.tokenizer.bert_tokenizer.convert_ids_to_tokens(list(bert_input_line)))
passage = bert_input_line.split(self.sep_tok)[-2]
# Ignore empty passages as well
if passage.strip() == self.pad_tok:
continue
feature = {
"pos_bert_input": _bytes_feature(tf.io.serialize_tensor(posdoc[i])),
"pos_mask": _bytes_feature(tf.io.serialize_tensor(posdoc_mask[i])),
"pos_seg": _bytes_feature(tf.io.serialize_tensor(posdoc_seg[i])),
"neg_bert_input": _bytes_feature(tf.io.serialize_tensor(negdoc[i])),
"neg_mask": _bytes_feature(tf.io.serialize_tensor(negdoc_mask[i])),
"neg_seg": _bytes_feature(tf.io.serialize_tensor(negdoc_seg[i])),
"label": _bytes_feature(tf.io.serialize_tensor(label[i])),
}
features.append(feature)
return features
def parse_tf_train_example(self, example_proto):
maxseqlen = self.config["maxseqlen"]
feature_description = self.get_tf_feature_description()
parsed_example = tf.io.parse_example(example_proto, feature_description)
def parse_tensor_as_int(x):
parsed_tensor = tf.io.parse_tensor(x, tf.int64)
parsed_tensor.set_shape([maxseqlen])
return parsed_tensor
def parse_neg_tensor_as_int(x):
parsed_tensor = tf.io.parse_tensor(x, tf.int64)
return parsed_tensor
def parse_label_tensor(x):
parsed_tensor = tf.io.parse_tensor(x, tf.float32)
return parsed_tensor
pos_bert_input = tf.map_fn(parse_tensor_as_int, parsed_example["pos_bert_input"], dtype=tf.int64)
pos_mask = tf.map_fn(parse_tensor_as_int, parsed_example["pos_mask"], dtype=tf.int64)
pos_seg = tf.map_fn(parse_tensor_as_int, parsed_example["pos_seg"], dtype=tf.int64)
neg_bert_input = tf.map_fn(parse_neg_tensor_as_int, parsed_example["neg_bert_input"], dtype=tf.int64)
neg_mask = tf.map_fn(parse_neg_tensor_as_int, parsed_example["neg_mask"], dtype=tf.int64)
neg_seg = tf.map_fn(parse_neg_tensor_as_int, parsed_example["neg_seg"], dtype=tf.int64)
label = tf.map_fn(parse_label_tensor, parsed_example["label"], dtype=tf.float32)
return (pos_bert_input, pos_mask, pos_seg, neg_bert_input, neg_mask, neg_seg), label
def id2vec(self, qid, posid, negids=None, label=None):
"""
See parent class for docstring
"""
assert label is not None
maxseqlen = self.config["maxseqlen"]
numpassages = self.config["numpassages"]
query_toks = self.qid2toks[qid]
pos_bert_inputs, pos_bert_masks, pos_bert_segs = [], [], []
# N.B: The passages in self.docid2passages are not bert tokenized
pos_passages = self._get_passages(posid)
for tokenized_passage in pos_passages:
inp, mask, seg = self._prepare_bert_input(query_toks, tokenized_passage)
pos_bert_inputs.append(inp)
pos_bert_masks.append(mask)
pos_bert_segs.append(seg)
# TODO: Rename the posdoc key in the below dict to 'pos_bert_input'
data = {
"qid": qid,
"posdocid": posid,
"pos_bert_input": np.array(pos_bert_inputs, dtype=np.long),
"pos_mask": np.array(pos_bert_masks, dtype=np.long),
"pos_seg": np.array(pos_bert_segs, dtype=np.long),
"negdocid": "",
"neg_bert_input": np.zeros((numpassages, maxseqlen), dtype=np.long),
"neg_mask": np.zeros((numpassages, maxseqlen), dtype=np.long),
"neg_seg": np.zeros((numpassages, maxseqlen), dtype=np.long),
"label": np.repeat(np.array([label], dtype=np.float32), numpassages, 0),
}
if negids is None:
return data
data["negdocid"] = []
data["neg_bert_input"] = []
data["neg_mask"] = []
data["neg_seg"] = []
for negid in negids:
neg_bert_inputs, neg_bert_masks, neg_bert_segs = [], [], []
neg_passages = self._get_passages(negid)
for tokenized_passage in neg_passages:
inp, mask, seg = self._prepare_bert_input(query_toks, tokenized_passage)
neg_bert_inputs.append(inp)
neg_bert_masks.append(mask)
neg_bert_segs.append(seg)
if not neg_bert_inputs:
raise MissingDocError(qid, negid)
data["negdocid"].append(negid)
data["neg_bert_input"].append(np.array(neg_bert_inputs, dtype=np.long))
data["neg_mask"].append(np.array(neg_bert_masks, dtype=np.long))
data["neg_seg"].append(np.array(neg_bert_segs, dtype=np.long))
return data
| 1,530 | 5,192 | 22 |
58ef35ef583db31c3c7e841852d8f66705d8fd70 | 1,254 | py | Python | Back Tracking/n_queen_problem.py | NirupamDebnath/Geeks-DS-Algo | 8482443d095e8eb879c5d4b9c02ff7d04416e7ff | [
"MIT"
] | null | null | null | Back Tracking/n_queen_problem.py | NirupamDebnath/Geeks-DS-Algo | 8482443d095e8eb879c5d4b9c02ff7d04416e7ff | [
"MIT"
] | null | null | null | Back Tracking/n_queen_problem.py | NirupamDebnath/Geeks-DS-Algo | 8482443d095e8eb879c5d4b9c02ff7d04416e7ff | [
"MIT"
] | null | null | null | import unittest
N = 8
count = 0
if __name__ == "__main__":
# unittest.main()
solveNQ()
print(count)
| 20.225806 | 60 | 0.472887 | import unittest
N = 8
count = 0
def solveNQ():
board = [ [0]*N for i in range(N) ]
solveNQUtil(board, 0)
def printSolution(board):
print(*board, sep="\n", end="\n\n")
def is_safe(board, y, x):
for i in range(0,x):
if board[y][i] == 1:
return False
for j, i in zip(range(y-1, -1, -1), range(x-1, -1, -1)):
if board[j][i] == 1:
return False
for j, i in zip(range(y+1, N, 1), range(x-1, -1, -1)):
if board[j][i] == 1:
return False
return True
def solveNQUtil(board, x):
if x >= N:
printSolution(board)
global count
count += 1
return
for y in range(N):
board[y][x] = 1
if is_safe(board, y, x) == True:
# if solveNQUtil(board, x+1) == True:
# return True
# board[y][x] = 0
solveNQUtil(board, x+1)
board[y][x] = 0
class NqueenTests(unittest.TestCase):
def test_is_safe(self):
board = [[0, 0, 0, 0],
[0, 1, 0, 0],
[0, 0, 0, 1],
[1, 0, 0, 0]]
self.assertEqual(is_safe(board, 0,2), False)
if __name__ == "__main__":
# unittest.main()
solveNQ()
print(count)
| 978 | 16 | 141 |
99ac7b6284da5aab2d36ae755e15b7ee93c0d6c4 | 52 | py | Python | creevey/util/__init__.py | sugi-chan/creevey | 3e62303cf42c307a12c69b8baca9e5f003f91d38 | [
"BSD-3-Clause"
] | null | null | null | creevey/util/__init__.py | sugi-chan/creevey | 3e62303cf42c307a12c69b8baca9e5f003f91d38 | [
"BSD-3-Clause"
] | null | null | null | creevey/util/__init__.py | sugi-chan/creevey | 3e62303cf42c307a12c69b8baca9e5f003f91d38 | [
"BSD-3-Clause"
] | null | null | null | from creevey.util.util import * # noqa: F401, F403
| 26 | 51 | 0.711538 | from creevey.util.util import * # noqa: F401, F403
| 0 | 0 | 0 |
257474e3c97e6cd463cb70df1ac908c23116a4cb | 396 | py | Python | src/layer.py | rlaishra/Privacy-Aware-Friends-Recommendation | a5757ef0b409bbcdebdb4e43b510a8d4d9070230 | [
"MIT"
] | null | null | null | src/layer.py | rlaishra/Privacy-Aware-Friends-Recommendation | a5757ef0b409bbcdebdb4e43b510a8d4d9070230 | [
"MIT"
] | null | null | null | src/layer.py | rlaishra/Privacy-Aware-Friends-Recommendation | a5757ef0b409bbcdebdb4e43b510a8d4d9070230 | [
"MIT"
] | null | null | null | import csv, networkx
class Layer(object):
"""Class representing a layer in the social network"""
| 22 | 65 | 0.755051 | import csv, networkx
class Layer(object):
"""Class representing a layer in the social network"""
def __init__(self, file_network, file_profile, file_interlayer):
super(Layer, self).__init__()
self.__file_network = file_network
self.__file_profile = file_profile
self.__file_interlayer = file_interlayer
self.__graph = None
self.__profile = None
self.__inter_layer = None
| 266 | 0 | 23 |
5be8fdf86c89107dca13b25251e87bfd91e65deb | 1,200 | py | Python | applications/RsvpService/controllers/default.py | amaurirg/Web2Py | 235571cd2273a858cbc8f291731672eadf6b8206 | [
"BSD-3-Clause"
] | null | null | null | applications/RsvpService/controllers/default.py | amaurirg/Web2Py | 235571cd2273a858cbc8f291731672eadf6b8206 | [
"BSD-3-Clause"
] | null | null | null | applications/RsvpService/controllers/default.py | amaurirg/Web2Py | 235571cd2273a858cbc8f291731672eadf6b8206 | [
"BSD-3-Clause"
] | null | null | null | # -*- coding: utf-8 -*-
@auth.requires_login()
@auth.requires_login()
@auth.requires_login()
| 30.769231 | 96 | 0.645833 | # -*- coding: utf-8 -*-
@auth.requires_login()
def create_event():
if request.args(0):
event = db.event(request.args(0),created_by=auth.user_id) or redirect(URL('index'))
rows = db(db.rsvp.event==event.id).select()
else: event, rows=None, []
form = SQLFORM(db.event,event,deletable=True)
if form.process().accepted:
session.flash="record created"
redirect(URL('index'))
return locals()
@auth.requires_login()
def index():
rows = db(db.event.created_by==auth.user_id).select()
return locals()
@auth.requires_login()
def respond_event():
event = db.event(uuid=request.args(0)) or redirect(URL('index'))
db.rsvp.event.default=event.id
db.rsvp.event.writable = False
db.rsvp.attendee.default=auth.user_id
db.rsvp.attendee.writable=False
rsvp = db.rsvp(event=event.id,attendee=auth.user_id)
form = SQLFORM(db.rsvp, rsvp)
if form.accepts(request,session):
response.flash="thanks for your response"
rows = db(db.rsvp.event==event.id).select()
return locals()
def user():
return dict(form=auth())
def download():
return response.download(request,db)
| 969 | 0 | 120 |
bb6e8c524502d0817497bc62554b89cc489eb9a9 | 67 | py | Python | hseolymp/2016-17/demo/mars_quick.py | dluschan/olymp | dfbf4352dbc7f6fd7563e7bd19aff6fd67fb50b7 | [
"MIT"
] | null | null | null | hseolymp/2016-17/demo/mars_quick.py | dluschan/olymp | dfbf4352dbc7f6fd7563e7bd19aff6fd67fb50b7 | [
"MIT"
] | null | null | null | hseolymp/2016-17/demo/mars_quick.py | dluschan/olymp | dfbf4352dbc7f6fd7563e7bd19aff6fd67fb50b7 | [
"MIT"
] | 1 | 2018-09-14T18:50:48.000Z | 2018-09-14T18:50:48.000Z | import math
n = int(input())
print(3 + math.ceil(math.log(n/3, 2))) | 22.333333 | 38 | 0.641791 | import math
n = int(input())
print(3 + math.ceil(math.log(n/3, 2))) | 0 | 0 | 0 |
1e7eb35d3cac083196d56984f2f8b0d28800bdf5 | 3,351 | py | Python | test_goldenberg.py | Milad-Rakhsha/Friction-Contact | 59d17b231c5dd764c741c941e5443141d43ec7e8 | [
"BSD-3-Clause"
] | null | null | null | test_goldenberg.py | Milad-Rakhsha/Friction-Contact | 59d17b231c5dd764c741c941e5443141d43ec7e8 | [
"BSD-3-Clause"
] | null | null | null | test_goldenberg.py | Milad-Rakhsha/Friction-Contact | 59d17b231c5dd764c741c941e5443141d43ec7e8 | [
"BSD-3-Clause"
] | null | null | null | # =============================================================================
# SIMULATION-BASED ENGINEERING LAB (SBEL) - http://sbel.wisc.edu
# University of Wisconsin-Madison
#
# Copyright (c) 2020 SBEL
# All rights reserved.
#
# Use of this source code is governed by a BSD-style license that can be found
# at https://opensource.org/licenses/BSD-3-Clause
#
# =============================================================================
# Contributors: Nic Olsen, Milad Rakhsha
# =============================================================================
#!/usr/bin/env python3
import numpy as np
from integrate import integrate
from writefile import writeosprayfile
from writeforcefile import writeforcefile
from params import params
if __name__ == '__main__':
main()
| 30.463636 | 100 | 0.541928 | # =============================================================================
# SIMULATION-BASED ENGINEERING LAB (SBEL) - http://sbel.wisc.edu
# University of Wisconsin-Madison
#
# Copyright (c) 2020 SBEL
# All rights reserved.
#
# Use of this source code is governed by a BSD-style license that can be found
# at https://opensource.org/licenses/BSD-3-Clause
#
# =============================================================================
# Contributors: Nic Olsen, Milad Rakhsha
# =============================================================================
#!/usr/bin/env python3
import numpy as np
from integrate import integrate
from writefile import writeosprayfile
from writeforcefile import writeforcefile
from params import params
def main():
grav = np.array([0,0,-9.8])
setup = {"nb": 8*61+7*60, "gravity" : grav,
"envelope" : 1e-7,
"static_friction" : 0.5,
"mu_tilde" : 0.1,
"eps_0" : 0.1,
"mu_star" : 1e-9,
"eps_star" : 1e-6,
"tau_mu" : 0.2,
"tau_eps" : 0.1,
"tolerance" : 1e-6,
"max_iterations" : 100,
"dt" : 1e-4,
"time_end": 10,
"prefix" : "data/step",
"suffix" : ".csv"}
# TODO eps, mu, and tau values
gran_params = params(setup)
sphere_mass = 1.0
sphere_z = -1
sphere_radius = 1
box_mass = 4.0
box_hdims = np.array([2,2,0.25])
bottom_left = np.array([0,0,0])
x = bottom_left[0]
z = bottom_left[2]
id = 0
for j in range(15):
x = 0 if j % 2 == 0 else sphere_radius
for i in range(61 if j % 2 == 0 else 60):
pos = np.array([x, 0, z])
rot = np.array([1,0,0,0])
gran_params.add_sphere(pos, rot, sphere_mass, sphere_radius, id, fixed=False)
id += 1
x += 2 * sphere_radius
z += np.sqrt(3) * sphere_radius
# pos = bottom_left + np.array([,0,-sphere_radius])
# rot = np.array([1,0,0,0])
# gran_params.add_box(pos, rot, box_hdims, box_mass, box_id)
c_pos = np.array([])
f_contact = np.array([])
print(gran_params)
step = 0
t = 0.0
t_settling = 0.1
pushing = False
max_fric = box_mass * np.abs(np.linalg.norm(grav)) * gran_params.static_friction
f_push = 0.5 * max_fric
out_fps = 100.0
out_steps = 1.0 / (out_fps * gran_params.dt)
frame = 0
while t < gran_params.time_end:
if step % out_steps == 0:
frame_s = '%06d' % frame
print('Rendering frame ' + frame_s)
filename = gran_params.prefix + frame_s + gran_params.suffix
writeosprayfile(gran_params.q, gran_params.v, frame_s, gran_params)
filename = gran_params.prefix + frame_s + '_forces' + gran_params.suffix
writeforcefile(c_pos, f_contact, filename, gran_params)
frame += 1
if pushing == False and t >= t_settling:
print("Pushing with %f" % f_push)
print("slip") if f_push > max_fric else print("stick")
pushing = True
gran_params.F_ext[6*box_id + 0] = f_push
new_q, new_v, new_a, c_pos, f_contact = integrate(gran_params.q, gran_params.v, gran_params)
gran_params.q = new_q
gran_params.v = new_v
t += gran_params.dt
step += 1
if __name__ == '__main__':
main()
| 2,543 | 0 | 23 |
c0fb29d139badc8b52eaa4a472c58aca3f4360ae | 5,066 | py | Python | vtam/wrapper/FilterCodonStop.py | RaphaelHebert/vtam | 6cbc7e241f9aa4245f5fd000769b9765333d41c2 | [
"MIT"
] | 1 | 2020-11-26T11:25:02.000Z | 2020-11-26T11:25:02.000Z | vtam/wrapper/FilterCodonStop.py | RaphaelHebert/vtam | 6cbc7e241f9aa4245f5fd000769b9765333d41c2 | [
"MIT"
] | 25 | 2020-11-13T13:45:45.000Z | 2022-03-09T08:38:56.000Z | vtam/wrapper/FilterCodonStop.py | RaphaelHebert/vtam | 6cbc7e241f9aa4245f5fd000769b9765333d41c2 | [
"MIT"
] | 4 | 2021-03-25T18:18:52.000Z | 2022-01-08T10:37:39.000Z | from vtam.utils.RunnerFilterCodonStop import RunnerFilterCodonStop
from vtam.utils.Logger import Logger
from vtam.utils.FileSampleInformation import FileSampleInformation
from vtam.utils.VTAMexception import VTAMexception
from vtam.utils.DataframeVariantReadCountLike import DataframeVariantReadCountLike
from wopmars.models.ToolWrapper import ToolWrapper
import sys
| 38.090226 | 98 | 0.589814 | from vtam.utils.RunnerFilterCodonStop import RunnerFilterCodonStop
from vtam.utils.Logger import Logger
from vtam.utils.FileSampleInformation import FileSampleInformation
from vtam.utils.VTAMexception import VTAMexception
from vtam.utils.DataframeVariantReadCountLike import DataframeVariantReadCountLike
from wopmars.models.ToolWrapper import ToolWrapper
import sys
class FilterCodonStop(ToolWrapper):
__mapper_args__ = {
"polymorphic_identity": "vtam.wrapper.FilterCodonStop"
}
# Input file
__input_file_sortedinfo = "sortedinfo"
# Input table
__input_table_marker = "Marker"
__input_table_run = "Run"
__input_table_sample = "Sample"
__input_table_filter_indel = "FilterIndel"
__input_table_Variant = "Variant"
# Output table
__output_table_filter_codon_stop = "FilterCodonStop"
def specify_input_file(self):
return[
"sortedinfo", "params",
]
def specify_input_table(self):
return [
FilterCodonStop.__input_table_marker,
FilterCodonStop.__input_table_run,
FilterCodonStop.__input_table_sample,
FilterCodonStop.__input_table_filter_indel,
FilterCodonStop.__input_table_Variant,
]
def specify_output_table(self):
return [
FilterCodonStop.__output_table_filter_codon_stop,
]
def specify_params(self):
return {
"genetic_code": "int",
"skip_filter_codon_stop": "int",
}
def run(self):
session = self.session
engine = session._session().get_bind()
##########################################################
#
# Wrapper inputs, outputs and parameters
#
##########################################################
#
# Input file output
fasta_info_tsv = self.input_file(FilterCodonStop.__input_file_sortedinfo)
#
# Input table models
input_filter_indel_model = self.input_table(
FilterCodonStop.__input_table_filter_indel)
#
# Options
genetic_code = int(self.option("genetic_code"))
skip_filter_codon_stop = bool(int(self.option("skip_filter_codon_stop")))
#
# Output table models
output_filter_codon_stop_model = self.output_table(
FilterCodonStop.__output_table_filter_codon_stop)
#######################################################################
#
# 1. Read sortedinfo to get run_id, marker_id, sample_id, replicate for current analysis
# 2. Delete marker_name/run_name/sample/replicate from variant_read_count_model
# 3. Get nijk_df input
#
#######################################################################
sample_info_tsv_obj = FileSampleInformation(tsv_path=fasta_info_tsv)
sample_info_tsv_obj.delete_from_db(
engine=engine, variant_read_count_like_model=output_filter_codon_stop_model)
variant_read_count_df = sample_info_tsv_obj.get_nijk_df(
variant_read_count_like_model=input_filter_indel_model, engine=engine, filter_id=None)
#######################################################################
#
# 4. Run Filter
#
#######################################################################
variant_df = sample_info_tsv_obj.get_variant_df(
variant_read_count_like_model=input_filter_indel_model, engine=engine)
variant_read_count_delete_df = RunnerFilterCodonStop(
variant_read_count_df=variant_read_count_df).get_variant_read_count_delete_df(
variant_df=variant_df,
genetic_code=genetic_code,
skip_filter_codon_stop=skip_filter_codon_stop)
#######################################################################
#
# 5. Write to DB
# 6. Touch output tables, to update modification date
# 7. Exit vtam if all variants delete
#
#######################################################################
DataframeVariantReadCountLike(variant_read_count_delete_df).to_sql(
engine=engine, variant_read_count_like_model=output_filter_codon_stop_model)
for output_table_i in self.specify_output_table():
declarative_meta_i = self.output_table(output_table_i)
obj = session.query(declarative_meta_i).order_by(
declarative_meta_i.id.desc()).first()
session.query(declarative_meta_i).filter_by(
id=obj.id).update({'id': obj.id})
session.commit()
if variant_read_count_delete_df.filter_delete.sum(
) == variant_read_count_delete_df.shape[0]:
Logger.instance().warning(
VTAMexception(
"This filter has deleted all the variants: {}. "
"The analysis will stop here.".format(
self.__class__.__name__)))
sys.exit(0)
| 4,091 | 584 | 23 |
d820b838f82f5bc3ceecf210a2278f2a5fd53128 | 732 | py | Python | steganography/utilities/img_manipulation.py | WarrenDevonshire/Steganography | 7a18b0dae7e689198bc946e0611d28376c0b8e47 | [
"MIT"
] | null | null | null | steganography/utilities/img_manipulation.py | WarrenDevonshire/Steganography | 7a18b0dae7e689198bc946e0611d28376c0b8e47 | [
"MIT"
] | 5 | 2019-10-25T00:14:11.000Z | 2019-10-27T17:03:13.000Z | steganography/utilities/img_manipulation.py | WarrenDevonshire/Steganography | 7a18b0dae7e689198bc946e0611d28376c0b8e47 | [
"MIT"
] | null | null | null | from PIL import Image
import numpy as np
def merge_pixels(pixel1, pixel2):
"""
Merge two R or G or B pixels using 4 least significant bits.
INPUT: A string tuple (e.g. ("00101010")),
Another string tuple (e.g. ("00101010"))
OUTPUT: An integer tuple with the two RGB values merged 00100010
"""
merged_pixel = (pixel1[:4] + pixel2[:4])
return merged_pixel
| 22.181818 | 68 | 0.669399 | from PIL import Image
import numpy as np
def to_array(image):
image_arr = np.array(image)
shape = image_arr.shape
flat_arr = image_arr.ravel()
return flat_arr, shape
def to_image(arr, img_shape):
matrix = np.matrix(arr)
reform_matrix = np.asarray(matrix).reshape(img_shape)
new_img = Image.fromarray(reform_matrix, 'RGB')
return new_img
def merge_pixels(pixel1, pixel2):
"""
Merge two R or G or B pixels using 4 least significant bits.
INPUT: A string tuple (e.g. ("00101010")),
Another string tuple (e.g. ("00101010"))
OUTPUT: An integer tuple with the two RGB values merged 00100010
"""
merged_pixel = (pixel1[:4] + pixel2[:4])
return merged_pixel
| 288 | 0 | 46 |
8b4ee52221cfc328af1f6c573b272bda5e11d8fd | 3,814 | py | Python | back/classification/utils/data_augmentation.py | zqswjtu/graduation | 62686bf6364d1a4a8c164e27b343aa4c85094174 | [
"MIT"
] | null | null | null | back/classification/utils/data_augmentation.py | zqswjtu/graduation | 62686bf6364d1a4a8c164e27b343aa4c85094174 | [
"MIT"
] | null | null | null | back/classification/utils/data_augmentation.py | zqswjtu/graduation | 62686bf6364d1a4a8c164e27b343aa4c85094174 | [
"MIT"
] | null | null | null | # -*- coding: UTF-8 -*-
import cv2
import numpy as np
import os.path
# 椒盐噪声
# 高斯噪声
# 昏暗
# 亮度
# 旋转
# 翻转
if __name__ == "__main__":
# 图片文件夹路径
file_dir = r"../dataset/train/Toothbrush/"
for img_name in os.listdir(file_dir):
img_path = file_dir + img_name
img = cv2.imread(img_path)
# cv2.imshow("1",img)
# cv2.waitKey(5000)
# 旋转
rotated_90 = rotate(img, 90)
cv2.imwrite(file_dir + img_name[0:-4] + '_r90.jpg', rotated_90)
rotated_180 = rotate(img, 180)
cv2.imwrite(file_dir + img_name[0:-4] + '_r180.jpg', rotated_180)
for img_name in os.listdir(file_dir):
img_path = file_dir + img_name
print(img_path)
img = cv2.imread(img_path)
# 镜像
flipped_img = flip(img)
cv2.imwrite(file_dir + img_name[0:-4] + '_fli.jpg', flipped_img)
# 增加噪声
# img_salt = salt_and_pepper_noise(img, 0.3)
# cv2.imwrite(file_dir + img_name[0:7] + '_salt.jpg', img_salt)
img_gauss = gaussian_noise(img, 0.1)
cv2.imwrite(file_dir + img_name[0:-4] + '_noise.jpg', img_gauss)
# 变亮、变暗
img_darker = darker(img)
cv2.imwrite(file_dir + img_name[0:-4] + '_darker.jpg', img_darker)
img_brighter = brighter(img)
cv2.imwrite(file_dir + img_name[0:-4] + '_brighter.jpg', img_brighter)
blur = cv2.GaussianBlur(img, (7, 7), 1.5)
# cv2.GaussianBlur(图像,卷积核,标准差)
cv2.imwrite(file_dir + img_name[0:-4] + '_blur.jpg', blur)
| 32.598291 | 99 | 0.60173 | # -*- coding: UTF-8 -*-
import cv2
import numpy as np
import os.path
# 椒盐噪声
def salt_and_pepper_noise(src, percentage):
sp_noise_img = src.copy()
sp_noise_img = int(percentage * src.shape[0] * src.shape[1])
for i in range(sp_noise_img):
rand_r = np.random.randint(0, src.shape[0] - 1)
rand_g = np.random.randint(0, src.shape[1] - 1)
rand_b = np.random.randint(0, 3)
if np.random.randint(0, 1) == 0:
sp_noise_img[rand_r, rand_g, rand_b] = 0
else:
sp_noise_img[rand_r, rand_g, rand_b] = 255
return sp_noise_img
# 高斯噪声
def gaussian_noise(image, percentage):
g_noise_img = image.copy()
w = image.shape[1]
h = image.shape[0]
g_noise_num = int(percentage * image.shape[0] * image.shape[1])
for i in range(g_noise_num):
temp_x = np.random.randint(0, h)
temp_y = np.random.randint(0, w)
g_noise_img[temp_x][temp_y][np.random.randint(3)] = np.random.randn(1)[0]
return g_noise_img
# 昏暗
def darker(image, percentage=0.9):
image_copy = image.copy()
w = image.shape[1]
h = image.shape[0]
# get darker
for xi in range(0, w):
for xj in range(0, h):
image_copy[xj, xi, 0] = int(image[xj, xi, 0] * percentage)
image_copy[xj, xi, 1] = int(image[xj, xi, 1] * percentage)
image_copy[xj, xi, 2] = int(image[xj, xi, 2] * percentage)
return image_copy
# 亮度
def brighter(image, percentage=1.5):
image_copy = image.copy()
w = image.shape[1]
h = image.shape[0]
# get brighter
for xi in range(0, w):
for xj in range(0, h):
image_copy[xj, xi, 0] = np.clip(int(image[xj, xi, 0] * percentage), a_max=255, a_min=0)
image_copy[xj, xi, 1] = np.clip(int(image[xj, xi, 1] * percentage), a_max=255, a_min=0)
image_copy[xj, xi, 2] = np.clip(int(image[xj, xi, 2] * percentage), a_max=255, a_min=0)
return image_copy
# 旋转
def rotate(image, angle, center=None, scale=1.0):
(h, w) = image.shape[:2]
# If no rotation center is specified, the center of the image is set as the rotation center
if center is None:
center = (w / 2, h / 2)
m = cv2.getRotationMatrix2D(center, angle, scale)
rotated = cv2.warpAffine(image, m, (w, h))
return rotated
# 翻转
def flip(image):
flipped_image = np.fliplr(image)
return flipped_image
if __name__ == "__main__":
# 图片文件夹路径
file_dir = r"../dataset/train/Toothbrush/"
for img_name in os.listdir(file_dir):
img_path = file_dir + img_name
img = cv2.imread(img_path)
# cv2.imshow("1",img)
# cv2.waitKey(5000)
# 旋转
rotated_90 = rotate(img, 90)
cv2.imwrite(file_dir + img_name[0:-4] + '_r90.jpg', rotated_90)
rotated_180 = rotate(img, 180)
cv2.imwrite(file_dir + img_name[0:-4] + '_r180.jpg', rotated_180)
for img_name in os.listdir(file_dir):
img_path = file_dir + img_name
print(img_path)
img = cv2.imread(img_path)
# 镜像
flipped_img = flip(img)
cv2.imwrite(file_dir + img_name[0:-4] + '_fli.jpg', flipped_img)
# 增加噪声
# img_salt = salt_and_pepper_noise(img, 0.3)
# cv2.imwrite(file_dir + img_name[0:7] + '_salt.jpg', img_salt)
img_gauss = gaussian_noise(img, 0.1)
cv2.imwrite(file_dir + img_name[0:-4] + '_noise.jpg', img_gauss)
# 变亮、变暗
img_darker = darker(img)
cv2.imwrite(file_dir + img_name[0:-4] + '_darker.jpg', img_darker)
img_brighter = brighter(img)
cv2.imwrite(file_dir + img_name[0:-4] + '_brighter.jpg', img_brighter)
blur = cv2.GaussianBlur(img, (7, 7), 1.5)
# cv2.GaussianBlur(图像,卷积核,标准差)
cv2.imwrite(file_dir + img_name[0:-4] + '_blur.jpg', blur)
| 2,147 | 0 | 132 |
3cd57093dc9b2af2c47455784807f52fc20c847a | 3,813 | py | Python | contentcuration/contentcuration/db/models/query.py | d0sadata/studio | ec3b805c0b546fe8884d446152eead90bea4174d | [
"MIT"
] | 60 | 2018-03-29T23:33:29.000Z | 2022-03-19T12:10:56.000Z | contentcuration/contentcuration/db/models/query.py | d0sadata/studio | ec3b805c0b546fe8884d446152eead90bea4174d | [
"MIT"
] | 2,260 | 2018-03-02T23:14:49.000Z | 2022-03-29T20:57:21.000Z | contentcuration/contentcuration/db/models/query.py | d0sadata/studio | ec3b805c0b546fe8884d446152eead90bea4174d | [
"MIT"
] | 86 | 2018-03-19T21:26:35.000Z | 2022-03-28T10:09:17.000Z | from django.db import connections
from django.db.models.expressions import Col
from django.db.models.sql.compiler import SQLCompiler
from django.db.models.sql.constants import INNER
from django.db.models.sql.query import Query
from django_cte import CTEQuerySet
from django_cte import With as CTEWith
from mptt.querysets import TreeQuerySet
RIGHT_JOIN = 'RIGHT JOIN'
class With(CTEWith):
"""
Custom CTE class which allows more join types than just INNER and LOUTER (LEFT)
"""
def join(self, model_or_queryset, *filter_q, **filter_kw):
"""
Slight hack to allow more join types
"""
join_type = filter_kw.get('_join_type', INNER)
queryset = super(With, self).join(model_or_queryset, *filter_q, **filter_kw)
# the underlying Django code forces the join type into INNER or a LEFT OUTER join
alias, _ = queryset.query.table_alias(self.name)
join = queryset.query.alias_map[alias]
if join.join_type != join_type:
join.join_type = join_type
return queryset
class WithValues(With):
"""
Allows the creation of a CTE that holds a VALUES list
@see https://www.postgresql.org/docs/9.6/queries-values.html
"""
def _resolve_ref(self, name):
"""
Gets called when a column reference is accessed via the CTE instance `.col.name`
"""
if name not in self.fields:
raise RuntimeError("No field with name `{}`".format(name))
field = self.fields.get(name)
field.set_attributes_from_name(name)
return Col(self.name, field, output_field=field)
class WithValuesQuery(Query):
"""
Dedicated query class for creating a CTE
Note: this does inherit from Query, which we're not passing a Model instance so not all Query
functionality is intended to work
"""
def get_compiler(self, using=None, connection=None):
"""
This code is modeled after Query.get_compiler()
"""
if using is None and connection is None:
raise ValueError("Need either using or connection")
if using:
connection = connections[using]
return WithValuesSQLCompiler(self, connection, using)
| 34.351351 | 112 | 0.65198 | from django.db import connections
from django.db.models.expressions import Col
from django.db.models.sql.compiler import SQLCompiler
from django.db.models.sql.constants import INNER
from django.db.models.sql.query import Query
from django_cte import CTEQuerySet
from django_cte import With as CTEWith
from mptt.querysets import TreeQuerySet
RIGHT_JOIN = 'RIGHT JOIN'
class CustomTreeQuerySet(TreeQuerySet, CTEQuerySet):
pass
class With(CTEWith):
"""
Custom CTE class which allows more join types than just INNER and LOUTER (LEFT)
"""
def join(self, model_or_queryset, *filter_q, **filter_kw):
"""
Slight hack to allow more join types
"""
join_type = filter_kw.get('_join_type', INNER)
queryset = super(With, self).join(model_or_queryset, *filter_q, **filter_kw)
# the underlying Django code forces the join type into INNER or a LEFT OUTER join
alias, _ = queryset.query.table_alias(self.name)
join = queryset.query.alias_map[alias]
if join.join_type != join_type:
join.join_type = join_type
return queryset
class WithValues(With):
"""
Allows the creation of a CTE that holds a VALUES list
@see https://www.postgresql.org/docs/9.6/queries-values.html
"""
def __init__(self, fields, values_list, name="cte"):
super(WithValues, self).__init__(None, name=name)
self.query = WithValuesQuery(self)
self.fields = fields
self.values_list = values_list
def _resolve_ref(self, name):
"""
Gets called when a column reference is accessed via the CTE instance `.col.name`
"""
if name not in self.fields:
raise RuntimeError("No field with name `{}`".format(name))
field = self.fields.get(name)
field.set_attributes_from_name(name)
return Col(self.name, field, output_field=field)
class WithValuesSQLCompiler(SQLCompiler):
TEMPLATE = "SELECT * FROM (VALUES {values_statement}) AS {cte_name}({fields_statement})"
def as_sql(self, with_limits=True, with_col_aliases=False):
"""
Ideally this would return something like:
WITH t_cte(fieldA, fieldB) AS (VALUES (), ...)
But django_cte doesn't give us a way to do that, so we do this instead:
WITH t_cte AS (SELECT * FROM (VALUES (), ...) AS _t_cte(fieldA, fieldB)))
:return: A tuple of SQL and parameters
"""
value_parameters = ", ".join(["%s"] * len(self.cte.fields))
values_statement = ", ".join(["({})".format(value_parameters)] * len(self.cte.values_list))
fields_statement = ", ".join([self.connection.ops.quote_name(field) for field in list(self.cte.fields)])
sql = self.TEMPLATE.format(
values_statement=values_statement,
cte_name="_{}".format(self.cte.name),
fields_statement=fields_statement
)
return sql, list(sum(self.cte.values_list, ()))
@property
def cte(self):
"""
:rtype: WithValues
"""
return self.query.cte
class WithValuesQuery(Query):
"""
Dedicated query class for creating a CTE
Note: this does inherit from Query, which we're not passing a Model instance so not all Query
functionality is intended to work
"""
def __init__(self, cte):
super(WithValuesQuery, self).__init__(None)
self.cte = cte
def get_compiler(self, using=None, connection=None):
"""
This code is modeled after Query.get_compiler()
"""
if using is None and connection is None:
raise ValueError("Need either using or connection")
if using:
connection = connections[using]
return WithValuesSQLCompiler(self, connection, using)
| 278 | 1,206 | 98 |
d9217c1da5fe4ed5e7f0e300cc8bcc84d9e7e882 | 116 | py | Python | explib/explib/__init__.py | jacqueschen1/adam_sgd_heavy_tails | d4ecab6d460fb44ac3fd2b865641b8e47f3848ee | [
"Apache-2.0"
] | 1 | 2021-12-02T21:47:46.000Z | 2021-12-02T21:47:46.000Z | explib/explib/__init__.py | jacqueschen1/adam_sgd_heavy_tails | d4ecab6d460fb44ac3fd2b865641b8e47f3848ee | [
"Apache-2.0"
] | null | null | null | explib/explib/__init__.py | jacqueschen1/adam_sgd_heavy_tails | d4ecab6d460fb44ac3fd2b865641b8e47f3848ee | [
"Apache-2.0"
] | null | null | null | """ExpLib"""
import json
from . import dataset, expmaker, logging, model, optim
from .experiment import Experiment
| 19.333333 | 54 | 0.758621 | """ExpLib"""
import json
from . import dataset, expmaker, logging, model, optim
from .experiment import Experiment
| 0 | 0 | 0 |
f2267cefd1a1d92d51f71964f56d1f81a3c6bf00 | 373 | py | Python | src/Week1/test3.py | dcavar/Py3L | b11d66174e9b5a9e4c372cdd5fa413a790aeb00c | [
"Apache-2.0"
] | 3 | 2018-01-11T22:14:17.000Z | 2019-06-09T22:02:17.000Z | src/Week1/test3.py | dcavar/Py3L | b11d66174e9b5a9e4c372cdd5fa413a790aeb00c | [
"Apache-2.0"
] | null | null | null | src/Week1/test3.py | dcavar/Py3L | b11d66174e9b5a9e4c372cdd5fa413a790aeb00c | [
"Apache-2.0"
] | 1 | 2019-11-24T10:46:52.000Z | 2019-11-24T10:46:52.000Z | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
mytext = "hello world"
print(mytext[1])
print(mytext[2:4])
print( mytext[0: : 2 ] )
print(mytext.center(80))
print("Number of es in mytext:", mytext.count("e") )
print("Number of lds in mytext:", mytext.count("ld") )
print(mytext.endswith("ing"))
print(mytext.capitalize())
mytext = mytext.capitalize()
print(mytext)
| 16.217391 | 54 | 0.662198 | #!/usr/bin/env python3
# -*- coding: utf-8 -*-
mytext = "hello world"
print(mytext[1])
print(mytext[2:4])
print( mytext[0: : 2 ] )
print(mytext.center(80))
print("Number of es in mytext:", mytext.count("e") )
print("Number of lds in mytext:", mytext.count("ld") )
print(mytext.endswith("ing"))
print(mytext.capitalize())
mytext = mytext.capitalize()
print(mytext)
| 0 | 0 | 0 |
e64cf71ad87338f1cbb3bb0f53a5f90756a867f9 | 26,963 | py | Python | openpose_plus/utils.py | xrtube/openpose-plus | 221806759c46ded8cad84fb3a70658b8e76db73f | [
"Apache-2.0"
] | 4 | 2020-12-23T14:53:45.000Z | 2021-05-17T05:46:07.000Z | openpose_plus/utils.py | YinXiaojieCSDN/openpose-plus | 5a908eabf31c612099a80288550676db3fc19bbb | [
"Apache-2.0"
] | 5 | 2020-01-28T23:10:48.000Z | 2022-02-10T00:41:40.000Z | openpose_plus/utils.py | YinXiaojieCSDN/openpose-plus | 5a908eabf31c612099a80288550676db3fc19bbb | [
"Apache-2.0"
] | 1 | 2020-02-13T13:31:15.000Z | 2020-02-13T13:31:15.000Z | # -*- coding: utf-8 -*-
## xxx
import math
import os
from distutils.dir_util import mkpath
import cv2
import matplotlib.pyplot as plt
import numpy as np
from scipy.spatial.distance import cdist
import tensorflow as tf
from train_config import config
from pycocotools.coco import COCO, maskUtils
from tensorlayer import logging
from tensorlayer.files.utils import (del_file, folder_exists, maybe_download_and_extract)
n_pos = config.MODEL.n_pos
hout = config.MODEL.hout
wout = config.MODEL.wout
## download dataset
def load_mscoco_dataset(path='data', dataset='2017', task='person'): # TODO move to tl.files later
"""Download MSCOCO Dataset.
Both 2014 and 2017 dataset have train, validate and test sets, but 2017 version put less data into the validation set (115k train, 5k validate) i.e. has more training data.
Parameters
-----------
path : str
The path that the data is downloaded to, defaults is ``data/mscoco...``.
dataset : str
The MSCOCO dataset version, `2014` or `2017`.
task : str
person for pose estimation, caption for image captioning, instance for segmentation.
Returns
---------
train_im_path : str
Folder path of all training images.
train_ann_path : str
File path of training annotations.
val_im_path : str
Folder path of all validating images.
val_ann_path : str
File path of validating annotations.
test_im_path : str
Folder path of all testing images.
test_ann_path : None
File path of testing annotations, but as the test sets of MSCOCO 2014 and 2017 do not have annotation, returns None.
Examples
----------
>>> train_im_path, train_ann_path, val_im_path, val_ann_path, _, _ = \
... tl.files.load_mscoco_dataset('data', '2017')
References
-------------
- `MSCOCO <http://mscoco.org>`__.
"""
import zipfile
if dataset == "2014":
logging.info(" [============= MSCOCO 2014 =============]")
path = os.path.join(path, 'mscoco2014')
if folder_exists(os.path.join(path, "annotations")) is False:
logging.info(" downloading annotations")
os.system("wget http://images.cocodataset.org/annotations/annotations_trainval2014.zip -P {}".format(path))
unzip(os.path.join(path, "annotations_trainval2014.zip"), path)
del_file(os.path.join(path, "annotations_trainval2014.zip"))
else:
logging.info(" annotations exists")
if folder_exists(os.path.join(path, "val2014")) is False:
logging.info(" downloading validating images")
os.system("wget http://images.cocodataset.org/zips/val2014.zip -P {}".format(path))
unzip(os.path.join(path, "val2014.zip"), path)
del_file(os.path.join(path, "val2014.zip"))
else:
logging.info(" validating images exists")
if folder_exists(os.path.join(path, "train2014")) is False:
logging.info(" downloading training images")
os.system("wget http://images.cocodataset.org/zips/train2014.zip -P {}".format(path))
unzip(os.path.join(path, "train2014.zip"), path)
del_file(os.path.join(path, "train2014.zip"))
else:
logging.info(" training images exists")
if folder_exists(os.path.join(path, "test2014")) is False:
logging.info(" downloading testing images")
os.system("wget http://images.cocodataset.org/zips/test2014.zip -P {}".format(path))
unzip(os.path.join(path, "test2014.zip"), path)
del_file(os.path.join(path, "test2014.zip"))
else:
logging.info(" testing images exists")
elif dataset == "2017":
# 11.5w train, 0.5w valid, test (no annotation)
path = os.path.join(path, 'mscoco2017')
if folder_exists(os.path.join(path, "annotations")) is False:
logging.info(" downloading annotations")
os.system("wget http://images.cocodataset.org/annotations/annotations_trainval2017.zip -P {}".format(path))
unzip(os.path.join(path, "annotations_trainval2017.zip"), path)
del_file(os.path.join(path, "annotations_trainval2017.zip"))
else:
logging.info(" annotations exists")
if folder_exists(os.path.join(path, "val2017")) is False:
logging.info(" downloading validating images")
os.system("wget http://images.cocodataset.org/zips/val2017.zip -P {}".format(path))
unzip(os.path.join(path, "val2017.zip"), path)
del_file(os.path.join(path, "val2017.zip"))
else:
logging.info(" validating images exists")
if folder_exists(os.path.join(path, "train2017")) is False:
logging.info(" downloading training images")
os.system("wget http://images.cocodataset.org/zips/train2017.zip -P {}".format(path))
unzip(os.path.join(path, "train2017.zip"), path)
del_file(os.path.join(path, "train2017.zip"))
else:
logging.info(" training images exists")
if folder_exists(os.path.join(path, "test2017")) is False:
logging.info(" downloading testing images")
os.system("wget http://images.cocodataset.org/zips/test2017.zip -P {}".format(path))
unzip(os.path.join(path, "test2017.zip"), path)
del_file(os.path.join(path, "test2017.zip"))
else:
logging.info(" testing images exists")
else:
raise Exception("dataset can only be 2014 and 2017, see MSCOCO website for more details.")
# logging.info(" downloading annotations")
# print(url, tar_filename)
# maybe_download_and_extract(tar_filename, path, url, extract=True)
# del_file(os.path.join(path, tar_filename))
#
# logging.info(" downloading images")
# maybe_download_and_extract(tar_filename2, path, url2, extract=True)
# del_file(os.path.join(path, tar_filename2))
if dataset == "2014":
train_images_path = os.path.join(path, "train2014")
if task == "person":
train_annotations_file_path = os.path.join(path, "annotations", "person_keypoints_train2014.json")
elif task == "caption":
train_annotations_file_path = os.path.join(path, "annotations", "captions_train2014.json")
elif task == "instance":
train_annotations_file_path = os.path.join(path, "annotations", "instances_train2014.json")
else:
raise Exception("unknown task")
val_images_path = os.path.join(path, "val2014")
if task == "person":
val_annotations_file_path = os.path.join(path, "annotations", "person_keypoints_val2014.json")
elif task == "caption":
val_annotations_file_path = os.path.join(path, "annotations", "captions_val2014.json")
elif task == "instance":
val_annotations_file_path = os.path.join(path, "annotations", "instances_val2014.json")
test_images_path = os.path.join(path, "test2014")
test_annotations_file_path = None #os.path.join(path, "annotations", "person_keypoints_test2014.json")
else:
train_images_path = os.path.join(path, "train2017")
if task == "person":
train_annotations_file_path = os.path.join(path, "annotations", "person_keypoints_train2017.json")
elif task == "caption":
train_annotations_file_path = os.path.join(path, "annotations", "captions_train2017.json")
elif task == "instance":
train_annotations_file_path = os.path.join(path, "annotations", "instances_train2017.json")
else:
raise Exception("unknown task")
val_images_path = os.path.join(path, "val2017")
if task == "person":
val_annotations_file_path = os.path.join(path, "annotations", "person_keypoints_val2017.json")
elif task == "caption":
val_annotations_file_path = os.path.join(path, "annotations", "captions_val2017.json")
elif task == "instance":
val_annotations_file_path = os.path.join(path, "annotations", "instances_val2017.json")
test_images_path = os.path.join(path, "test2017")
test_annotations_file_path = None #os.path.join(path, "annotations", "person_keypoints_test2017.json")
return train_images_path, train_annotations_file_path, \
val_images_path, val_annotations_file_path, \
test_images_path, test_annotations_file_path
## read coco data
class CocoMeta:
""" Be used in PoseInfo. """
limb = list(
zip([2, 9, 10, 2, 12, 13, 2, 3, 4, 3, 2, 6, 7, 6, 2, 1, 1, 15, 16],
[9, 10, 11, 12, 13, 14, 3, 4, 5, 17, 6, 7, 8, 18, 1, 15, 16, 17, 18]))
class PoseInfo:
""" Use COCO for pose estimation, returns images with people only. """
@staticmethod
def get_image_annos(self):
"""Read JSON file, and get and check the image list.
Skip missing images.
"""
images_ids = self.coco.getImgIds()
len_imgs = len(images_ids)
for idx in range(len_imgs):
images_info = self.coco.loadImgs(images_ids[idx])
image_path = os.path.join(self.image_base_dir, images_info[0]['file_name'])
# filter that some images might not in the list
if not os.path.exists(image_path):
print("[skip] json annotation found, but cannot found image: {}".format(image_path))
continue
annos_ids = self.coco.getAnnIds(imgIds=images_ids[idx])
annos_info = self.coco.loadAnns(annos_ids)
keypoints = self.get_keypoints(annos_info)
#############################################################################
anns = annos_info
prev_center = []
masks = []
# sort from the biggest person to the smallest one
if self.with_mask:
persons_ids = np.argsort([-a['area'] for a in anns], kind='mergesort')
for p_id in list(persons_ids):
person_meta = anns[p_id]
if person_meta["iscrowd"]:
masks.append(self.coco.annToRLE(person_meta))
continue
# skip this person if parts number is too low or if
# segmentation area is too small
if person_meta["num_keypoints"] < 5 or person_meta["area"] < 32 * 32:
masks.append(self.coco.annToRLE(person_meta))
continue
person_center = [
person_meta["bbox"][0] + person_meta["bbox"][2] / 2,
person_meta["bbox"][1] + person_meta["bbox"][3] / 2
]
# skip this person if the distance to existing person is too small
too_close = False
for pc in prev_center:
a = np.expand_dims(pc[:2], axis=0)
b = np.expand_dims(person_center, axis=0)
dist = cdist(a, b)[0]
if dist < pc[2] * 0.3:
too_close = True
break
if too_close:
# add mask of this person. we don't want to show the network
# unlabeled people
masks.append(self.coco.annToRLE(person_meta))
continue
############################################################################
total_keypoints = sum([ann.get('num_keypoints', 0) for ann in annos_info])
if total_keypoints > 0:
meta = CocoMeta(images_ids[idx], image_path, images_info[0], keypoints, masks)
self.metas.append(meta)
print("Overall get {} valid pose images from {} and {}".format(
len(self.metas), self.image_base_dir, self.anno_path))
def get_heatmap(annos, height, width):
"""
Parameters
-----------
Returns
--------
"""
# 19 for coco, 15 for MPII
num_joints = 19
# the heatmap for every joints takes the maximum over all people
joints_heatmap = np.zeros((num_joints, height, width), dtype=np.float32)
# among all people
for joint in annos:
# generate heatmap for every keypoints
# loop through all people and keep the maximum
for i, points in enumerate(joint):
if points[0] < 0 or points[1] < 0:
continue
joints_heatmap = put_heatmap(joints_heatmap, i, points, 8.0)
# 0: joint index, 1:y, 2:x
joints_heatmap = joints_heatmap.transpose((1, 2, 0))
# background
joints_heatmap[:, :, -1] = np.clip(1 - np.amax(joints_heatmap, axis=2), 0.0, 1.0)
mapholder = []
for i in range(0, 19):
a = cv2.resize(np.array(joints_heatmap[:, :, i]), (hout, wout))
mapholder.append(a)
mapholder = np.array(mapholder)
joints_heatmap = mapholder.transpose(1, 2, 0)
return joints_heatmap.astype(np.float16)
def put_heatmap(heatmap, plane_idx, center, sigma):
"""
Parameters
-----------
Returns
--------
"""
center_x, center_y = center
_, height, width = heatmap.shape[:3]
th = 4.6052
delta = math.sqrt(th * 2)
x0 = int(max(0, center_x - delta * sigma + 0.5))
y0 = int(max(0, center_y - delta * sigma + 0.5))
x1 = int(min(width - 1, center_x + delta * sigma + 0.5))
y1 = int(min(height - 1, center_y + delta * sigma + 0.5))
exp_factor = 1 / 2.0 / sigma / sigma
## fast - vectorize
arr_heatmap = heatmap[plane_idx, y0:y1 + 1, x0:x1 + 1]
y_vec = (np.arange(y0, y1 + 1) - center_y)**2 # y1 included
x_vec = (np.arange(x0, x1 + 1) - center_x)**2
xv, yv = np.meshgrid(x_vec, y_vec)
arr_sum = exp_factor * (xv + yv)
arr_exp = np.exp(-arr_sum)
arr_exp[arr_sum > th] = 0
heatmap[plane_idx, y0:y1 + 1, x0:x1 + 1] = np.maximum(arr_heatmap, arr_exp)
return heatmap
def get_vectormap(annos, height, width):
"""
Parameters
-----------
Returns
--------
"""
num_joints = 19
limb = list(
zip([2, 9, 10, 2, 12, 13, 2, 3, 4, 3, 2, 6, 7, 6, 2, 1, 1, 15, 16],
[9, 10, 11, 12, 13, 14, 3, 4, 5, 17, 6, 7, 8, 18, 1, 15, 16, 17, 18]))
vectormap = np.zeros((num_joints * 2, height, width), dtype=np.float32)
counter = np.zeros((num_joints, height, width), dtype=np.int16)
for joint in annos:
if len(joint) != 19:
print('THE LENGTH IS NOT 19 ERROR:', len(joint))
for i, (a, b) in enumerate(limb):
a -= 1
b -= 1
v_start = joint[a]
v_end = joint[b]
# exclude invisible or unmarked point
if v_start[0] < -100 or v_start[1] < -100 or v_end[0] < -100 or v_end[1] < -100:
continue
vectormap = cal_vectormap(vectormap, counter, i, v_start, v_end)
vectormap = vectormap.transpose((1, 2, 0))
# normalize the PAF (otherwise longer limb gives stronger absolute strength)
nonzero_vector = np.nonzero(counter)
for i, y, x in zip(nonzero_vector[0], nonzero_vector[1], nonzero_vector[2]):
if counter[i][y][x] <= 0:
continue
vectormap[y][x][i * 2 + 0] /= counter[i][y][x]
vectormap[y][x][i * 2 + 1] /= counter[i][y][x]
mapholder = []
for i in range(0, n_pos * 2):
a = cv2.resize(np.array(vectormap[:, :, i]), (hout, wout), interpolation=cv2.INTER_AREA)
mapholder.append(a)
mapholder = np.array(mapholder)
vectormap = mapholder.transpose(1, 2, 0)
return vectormap.astype(np.float16)
def cal_vectormap(vectormap, countmap, i, v_start, v_end):
"""
Parameters
-----------
Returns
--------
"""
_, height, width = vectormap.shape[:3]
threshold = 8
vector_x = v_end[0] - v_start[0]
vector_y = v_end[1] - v_start[1]
length = math.sqrt(vector_x**2 + vector_y**2)
if length == 0:
return vectormap
min_x = max(0, int(min(v_start[0], v_end[0]) - threshold))
min_y = max(0, int(min(v_start[1], v_end[1]) - threshold))
max_x = min(width, int(max(v_start[0], v_end[0]) + threshold))
max_y = min(height, int(max(v_start[1], v_end[1]) + threshold))
norm_x = vector_x / length
norm_y = vector_y / length
for y in range(min_y, max_y):
for x in range(min_x, max_x):
bec_x = x - v_start[0]
bec_y = y - v_start[1]
dist = abs(bec_x * norm_y - bec_y * norm_x)
# orthogonal distance is < then threshold
if dist > threshold:
continue
countmap[i][y][x] += 1
vectormap[i * 2 + 0][y][x] = norm_x
vectormap[i * 2 + 1][y][x] = norm_y
return vectormap
def fast_vectormap(vectormap, countmap, i, v_start, v_end):
"""
Parameters
-----------
Returns
--------
"""
_, height, width = vectormap.shape[:3]
_, height, width = vectormap.shape[:3]
threshold = 8
vector_x = v_end[0] - v_start[0]
vector_y = v_end[1] - v_start[1]
length = math.sqrt(vector_x**2 + vector_y**2)
if length == 0:
return vectormap
min_x = max(0, int(min(v_start[0], v_end[0]) - threshold))
min_y = max(0, int(min(v_start[1], v_end[1]) - threshold))
max_x = min(width, int(max(v_start[0], v_end[0]) + threshold))
max_y = min(height, int(max(v_start[1], v_end[1]) + threshold))
norm_x = vector_x / length
norm_y = vector_y / length
x_vec = (np.arange(min_x, max_x) - v_start[0]) * norm_y
y_vec = (np.arange(min_y, max_y) - v_start[1]) * norm_x
xv, yv = np.meshgrid(x_vec, y_vec)
dist_matrix = abs(xv - yv)
filter_matrix = np.where(dist_matrix > threshold, 0, 1)
countmap[i, min_y:max_y, min_x:max_x] += filter_matrix
for y in range(max_y - min_y):
for x in range(max_x - min_x):
if filter_matrix[y, x] != 0:
vectormap[i * 2 + 0, min_y + y, min_x + x] = norm_x
vectormap[i * 2 + 1, min_y + y, min_x + x] = norm_y
return vectormap
def draw_results(images, heats_ground, heats_result, pafs_ground, pafs_result, masks, name=''):
"""Save results for debugging.
Parameters
-----------
images : a list of RGB images
heats_ground : a list of keypoint heat maps or None
heats_result : a list of keypoint heat maps or None
pafs_ground : a list of paf vector maps or None
pafs_result : a list of paf vector maps or None
masks : a list of mask for people
"""
# interval = len(images)
for i in range(len(images)):
if heats_ground is not None:
heat_ground = heats_ground[i]
if heats_result is not None:
heat_result = heats_result[i]
if pafs_ground is not None:
paf_ground = pafs_ground[i]
if pafs_result is not None:
paf_result = pafs_result[i]
if masks is not None:
# print(masks.shape)
mask = masks[i, :, :, 0]
# print(mask.shape)
mask = mask[:, :, np.newaxis]
# mask = masks[:,:,:,0]
# mask = mask.reshape(hout, wout, 1)
mask1 = np.repeat(mask, n_pos, 2)
mask2 = np.repeat(mask, n_pos * 2, 2)
# print(mask1.shape, mask2.shape)
image = images[i]
fig = plt.figure(figsize=(8, 8))
a = fig.add_subplot(2, 3, 1)
plt.imshow(image)
if pafs_ground is not None:
a = fig.add_subplot(2, 3, 2)
a.set_title('Vectormap_ground')
vectormap = paf_ground * mask2
tmp2 = vectormap.transpose((2, 0, 1))
tmp2_odd = np.amax(np.absolute(tmp2[::2, :, :]), axis=0)
tmp2_even = np.amax(np.absolute(tmp2[1::2, :, :]), axis=0)
# tmp2_odd = tmp2_odd * 255
# tmp2_odd = tmp2_odd.astype(np.int)
plt.imshow(tmp2_odd, alpha=0.3)
# tmp2_even = tmp2_even * 255
# tmp2_even = tmp2_even.astype(np.int)
plt.colorbar()
plt.imshow(tmp2_even, alpha=0.3)
if pafs_result is not None:
a = fig.add_subplot(2, 3, 3)
a.set_title('Vectormap result')
if masks is not None:
vectormap = paf_result * mask2
else:
vectormap = paf_result
tmp2 = vectormap.transpose((2, 0, 1))
tmp2_odd = np.amax(np.absolute(tmp2[::2, :, :]), axis=0)
tmp2_even = np.amax(np.absolute(tmp2[1::2, :, :]), axis=0)
plt.imshow(tmp2_odd, alpha=0.3)
plt.colorbar()
plt.imshow(tmp2_even, alpha=0.3)
if heats_result is not None:
a = fig.add_subplot(2, 3, 4)
a.set_title('Heatmap result')
if masks is not None:
heatmap = heat_result * mask1
else:
heatmap = heat_result
tmp = heatmap
tmp = np.amax(heatmap[:, :, :-1], axis=2)
plt.colorbar()
plt.imshow(tmp, alpha=0.3)
if heats_ground is not None:
a = fig.add_subplot(2, 3, 5)
a.set_title('Heatmap ground truth')
if masks is not None:
heatmap = heat_ground * mask1
else:
heatmap = heat_ground
tmp = heatmap
tmp = np.amax(heatmap[:, :, :-1], axis=2)
plt.colorbar()
plt.imshow(tmp, alpha=0.3)
if masks is not None:
a = fig.add_subplot(2, 3, 6)
a.set_title('Mask')
# print(mask.shape, tmp.shape)
plt.colorbar()
plt.imshow(mask[:, :, 0], alpha=0.3)
# plt.savefig(str(i)+'.png',dpi=300)
# plt.show()
mkpath(config.LOG.vis_path)
plt.savefig(os.path.join(config.LOG.vis_path, '%s%d.png' % (name, i)), dpi=300)
def vis_annos(image, annos, name=''):
"""Save results for debugging.
Parameters
-----------
images : single RGB image
annos : annotation, list of lists
"""
fig = plt.figure(figsize=(8, 8))
a = fig.add_subplot(1, 1, 1)
plt.imshow(image)
for people in annos:
for idx, jo in enumerate(people):
if jo[0] > 0 and jo[1] > 0:
plt.plot(jo[0], jo[1], '*')
mkpath(config.LOG.vis_path)
plt.savefig(os.path.join(config.LOG.vis_path, 'keypoints%s%d.png' % (name, i)), dpi=300)
def tf_repeat(tensor, repeats):
"""
Args:
input: A Tensor. 1-D or higher.
repeats: A list. Number of repeat for each dimension, length must be the same as the number of dimensions in input
Returns:
A Tensor. Has the same type as input. Has the shape of tensor.shape * repeats
"""
expanded_tensor = tf.expand_dims(tensor, -1)
multiples = [1] + repeats
tiled_tensor = tf.tile(expanded_tensor, multiples=multiples)
repeated_tesnor = tf.reshape(tiled_tensor, tf.shape(tensor) * repeats)
return repeated_tesnor
if __name__ == '__main__':
data_dir = '/Users/Joel/Desktop/coco'
data_type = 'val'
anno_path = '{}/annotations/person_keypoints_{}2014.json'.format(data_dir, data_type)
df_val = PoseInfo(data_dir, data_type, anno_path)
for i in range(50):
meta = df_val.metas[i]
mask_sig = meta.masks
print('shape of np mask is ', np.shape(mask_sig), type(mask_sig))
if mask_sig is not []:
mask_miss = np.ones((meta.height, meta.width), dtype=np.uint8)
for seg in mask_sig:
bin_mask = maskUtils.decode(seg)
bin_mask = np.logical_not(bin_mask)
mask_miss = np.bitwise_and(mask_miss, bin_mask)
| 35.477632 | 176 | 0.572859 | # -*- coding: utf-8 -*-
## xxx
import math
import os
from distutils.dir_util import mkpath
import cv2
import matplotlib.pyplot as plt
import numpy as np
from scipy.spatial.distance import cdist
import tensorflow as tf
from train_config import config
from pycocotools.coco import COCO, maskUtils
from tensorlayer import logging
from tensorlayer.files.utils import (del_file, folder_exists, maybe_download_and_extract)
n_pos = config.MODEL.n_pos
hout = config.MODEL.hout
wout = config.MODEL.wout
## download dataset
def load_mscoco_dataset(path='data', dataset='2017', task='person'): # TODO move to tl.files later
"""Download MSCOCO Dataset.
Both 2014 and 2017 dataset have train, validate and test sets, but 2017 version put less data into the validation set (115k train, 5k validate) i.e. has more training data.
Parameters
-----------
path : str
The path that the data is downloaded to, defaults is ``data/mscoco...``.
dataset : str
The MSCOCO dataset version, `2014` or `2017`.
task : str
person for pose estimation, caption for image captioning, instance for segmentation.
Returns
---------
train_im_path : str
Folder path of all training images.
train_ann_path : str
File path of training annotations.
val_im_path : str
Folder path of all validating images.
val_ann_path : str
File path of validating annotations.
test_im_path : str
Folder path of all testing images.
test_ann_path : None
File path of testing annotations, but as the test sets of MSCOCO 2014 and 2017 do not have annotation, returns None.
Examples
----------
>>> train_im_path, train_ann_path, val_im_path, val_ann_path, _, _ = \
... tl.files.load_mscoco_dataset('data', '2017')
References
-------------
- `MSCOCO <http://mscoco.org>`__.
"""
import zipfile
def unzip(path_to_zip_file, directory_to_extract_to):
zip_ref = zipfile.ZipFile(path_to_zip_file, 'r')
zip_ref.extractall(directory_to_extract_to)
zip_ref.close()
if dataset == "2014":
logging.info(" [============= MSCOCO 2014 =============]")
path = os.path.join(path, 'mscoco2014')
if folder_exists(os.path.join(path, "annotations")) is False:
logging.info(" downloading annotations")
os.system("wget http://images.cocodataset.org/annotations/annotations_trainval2014.zip -P {}".format(path))
unzip(os.path.join(path, "annotations_trainval2014.zip"), path)
del_file(os.path.join(path, "annotations_trainval2014.zip"))
else:
logging.info(" annotations exists")
if folder_exists(os.path.join(path, "val2014")) is False:
logging.info(" downloading validating images")
os.system("wget http://images.cocodataset.org/zips/val2014.zip -P {}".format(path))
unzip(os.path.join(path, "val2014.zip"), path)
del_file(os.path.join(path, "val2014.zip"))
else:
logging.info(" validating images exists")
if folder_exists(os.path.join(path, "train2014")) is False:
logging.info(" downloading training images")
os.system("wget http://images.cocodataset.org/zips/train2014.zip -P {}".format(path))
unzip(os.path.join(path, "train2014.zip"), path)
del_file(os.path.join(path, "train2014.zip"))
else:
logging.info(" training images exists")
if folder_exists(os.path.join(path, "test2014")) is False:
logging.info(" downloading testing images")
os.system("wget http://images.cocodataset.org/zips/test2014.zip -P {}".format(path))
unzip(os.path.join(path, "test2014.zip"), path)
del_file(os.path.join(path, "test2014.zip"))
else:
logging.info(" testing images exists")
elif dataset == "2017":
# 11.5w train, 0.5w valid, test (no annotation)
path = os.path.join(path, 'mscoco2017')
if folder_exists(os.path.join(path, "annotations")) is False:
logging.info(" downloading annotations")
os.system("wget http://images.cocodataset.org/annotations/annotations_trainval2017.zip -P {}".format(path))
unzip(os.path.join(path, "annotations_trainval2017.zip"), path)
del_file(os.path.join(path, "annotations_trainval2017.zip"))
else:
logging.info(" annotations exists")
if folder_exists(os.path.join(path, "val2017")) is False:
logging.info(" downloading validating images")
os.system("wget http://images.cocodataset.org/zips/val2017.zip -P {}".format(path))
unzip(os.path.join(path, "val2017.zip"), path)
del_file(os.path.join(path, "val2017.zip"))
else:
logging.info(" validating images exists")
if folder_exists(os.path.join(path, "train2017")) is False:
logging.info(" downloading training images")
os.system("wget http://images.cocodataset.org/zips/train2017.zip -P {}".format(path))
unzip(os.path.join(path, "train2017.zip"), path)
del_file(os.path.join(path, "train2017.zip"))
else:
logging.info(" training images exists")
if folder_exists(os.path.join(path, "test2017")) is False:
logging.info(" downloading testing images")
os.system("wget http://images.cocodataset.org/zips/test2017.zip -P {}".format(path))
unzip(os.path.join(path, "test2017.zip"), path)
del_file(os.path.join(path, "test2017.zip"))
else:
logging.info(" testing images exists")
else:
raise Exception("dataset can only be 2014 and 2017, see MSCOCO website for more details.")
# logging.info(" downloading annotations")
# print(url, tar_filename)
# maybe_download_and_extract(tar_filename, path, url, extract=True)
# del_file(os.path.join(path, tar_filename))
#
# logging.info(" downloading images")
# maybe_download_and_extract(tar_filename2, path, url2, extract=True)
# del_file(os.path.join(path, tar_filename2))
if dataset == "2014":
train_images_path = os.path.join(path, "train2014")
if task == "person":
train_annotations_file_path = os.path.join(path, "annotations", "person_keypoints_train2014.json")
elif task == "caption":
train_annotations_file_path = os.path.join(path, "annotations", "captions_train2014.json")
elif task == "instance":
train_annotations_file_path = os.path.join(path, "annotations", "instances_train2014.json")
else:
raise Exception("unknown task")
val_images_path = os.path.join(path, "val2014")
if task == "person":
val_annotations_file_path = os.path.join(path, "annotations", "person_keypoints_val2014.json")
elif task == "caption":
val_annotations_file_path = os.path.join(path, "annotations", "captions_val2014.json")
elif task == "instance":
val_annotations_file_path = os.path.join(path, "annotations", "instances_val2014.json")
test_images_path = os.path.join(path, "test2014")
test_annotations_file_path = None #os.path.join(path, "annotations", "person_keypoints_test2014.json")
else:
train_images_path = os.path.join(path, "train2017")
if task == "person":
train_annotations_file_path = os.path.join(path, "annotations", "person_keypoints_train2017.json")
elif task == "caption":
train_annotations_file_path = os.path.join(path, "annotations", "captions_train2017.json")
elif task == "instance":
train_annotations_file_path = os.path.join(path, "annotations", "instances_train2017.json")
else:
raise Exception("unknown task")
val_images_path = os.path.join(path, "val2017")
if task == "person":
val_annotations_file_path = os.path.join(path, "annotations", "person_keypoints_val2017.json")
elif task == "caption":
val_annotations_file_path = os.path.join(path, "annotations", "captions_val2017.json")
elif task == "instance":
val_annotations_file_path = os.path.join(path, "annotations", "instances_val2017.json")
test_images_path = os.path.join(path, "test2017")
test_annotations_file_path = None #os.path.join(path, "annotations", "person_keypoints_test2017.json")
return train_images_path, train_annotations_file_path, \
val_images_path, val_annotations_file_path, \
test_images_path, test_annotations_file_path
## read coco data
class CocoMeta:
""" Be used in PoseInfo. """
limb = list(
zip([2, 9, 10, 2, 12, 13, 2, 3, 4, 3, 2, 6, 7, 6, 2, 1, 1, 15, 16],
[9, 10, 11, 12, 13, 14, 3, 4, 5, 17, 6, 7, 8, 18, 1, 15, 16, 17, 18]))
def __init__(self, idx, img_url, img_meta, annotations, masks):
self.idx = idx
self.img_url = img_url
self.img = None
self.height = int(img_meta['height'])
self.width = int(img_meta['width'])
self.masks = masks
joint_list = []
for anno in annotations:
if anno.get('num_keypoints', 0) == 0:
continue
kp = np.array(anno['keypoints'])
xs = kp[0::3]
ys = kp[1::3]
vs = kp[2::3]
# if joint is marked
joint_list.append([(x, y) if v >= 1 else (-1000, -1000) for x, y, v in zip(xs, ys, vs)])
self.joint_list = []
# 对原 COCO 数据集的转换 其中第二位之所以不一样是为了计算 Neck 等于左右 shoulder 的中点
transform = list(
zip([1, 6, 7, 9, 11, 6, 8, 10, 13, 15, 17, 12, 14, 16, 3, 2, 5, 4],
[1, 7, 7, 9, 11, 6, 8, 10, 13, 15, 17, 12, 14, 16, 3, 2, 5, 4]))
for prev_joint in joint_list:
new_joint = []
for idx1, idx2 in transform:
j1 = prev_joint[idx1 - 1]
j2 = prev_joint[idx2 - 1]
if j1[0] <= 0 or j1[1] <= 0 or j2[0] <= 0 or j2[1] <= 0:
new_joint.append((-1000, -1000))
else:
new_joint.append(((j1[0] + j2[0]) / 2, (j1[1] + j2[1]) / 2))
# for background
new_joint.append((-1000, -1000))
if len(new_joint) != 19:
print('The Length of joints list should be 0 or 19 but actually:', len(new_joint))
self.joint_list.append(new_joint)
class PoseInfo:
""" Use COCO for pose estimation, returns images with people only. """
def __init__(self, image_base_dir, anno_path, with_mask):
self.metas = []
# self.data_dir = data_dir
# self.data_type = data_type
self.image_base_dir = image_base_dir
self.anno_path = anno_path
self.with_mask = with_mask
self.coco = COCO(self.anno_path)
self.get_image_annos()
self.image_list = os.listdir(self.image_base_dir)
@staticmethod
def get_keypoints(annos_info):
annolist = []
for anno in annos_info:
adjust_anno = {'keypoints': anno['keypoints'], 'num_keypoints': anno['num_keypoints']}
annolist.append(adjust_anno)
return annolist
def get_image_annos(self):
"""Read JSON file, and get and check the image list.
Skip missing images.
"""
images_ids = self.coco.getImgIds()
len_imgs = len(images_ids)
for idx in range(len_imgs):
images_info = self.coco.loadImgs(images_ids[idx])
image_path = os.path.join(self.image_base_dir, images_info[0]['file_name'])
# filter that some images might not in the list
if not os.path.exists(image_path):
print("[skip] json annotation found, but cannot found image: {}".format(image_path))
continue
annos_ids = self.coco.getAnnIds(imgIds=images_ids[idx])
annos_info = self.coco.loadAnns(annos_ids)
keypoints = self.get_keypoints(annos_info)
#############################################################################
anns = annos_info
prev_center = []
masks = []
# sort from the biggest person to the smallest one
if self.with_mask:
persons_ids = np.argsort([-a['area'] for a in anns], kind='mergesort')
for p_id in list(persons_ids):
person_meta = anns[p_id]
if person_meta["iscrowd"]:
masks.append(self.coco.annToRLE(person_meta))
continue
# skip this person if parts number is too low or if
# segmentation area is too small
if person_meta["num_keypoints"] < 5 or person_meta["area"] < 32 * 32:
masks.append(self.coco.annToRLE(person_meta))
continue
person_center = [
person_meta["bbox"][0] + person_meta["bbox"][2] / 2,
person_meta["bbox"][1] + person_meta["bbox"][3] / 2
]
# skip this person if the distance to existing person is too small
too_close = False
for pc in prev_center:
a = np.expand_dims(pc[:2], axis=0)
b = np.expand_dims(person_center, axis=0)
dist = cdist(a, b)[0]
if dist < pc[2] * 0.3:
too_close = True
break
if too_close:
# add mask of this person. we don't want to show the network
# unlabeled people
masks.append(self.coco.annToRLE(person_meta))
continue
############################################################################
total_keypoints = sum([ann.get('num_keypoints', 0) for ann in annos_info])
if total_keypoints > 0:
meta = CocoMeta(images_ids[idx], image_path, images_info[0], keypoints, masks)
self.metas.append(meta)
print("Overall get {} valid pose images from {} and {}".format(
len(self.metas), self.image_base_dir, self.anno_path))
def load_images(self):
pass
def get_image_list(self):
img_list = []
for meta in self.metas:
img_list.append(meta.img_url)
return img_list
def get_joint_list(self):
joint_list = []
for meta in self.metas:
joint_list.append(meta.joint_list)
return joint_list
def get_mask(self):
mask_list = []
for meta in self.metas:
mask_list.append(meta.masks)
return mask_list
def get_heatmap(annos, height, width):
"""
Parameters
-----------
Returns
--------
"""
# 19 for coco, 15 for MPII
num_joints = 19
# the heatmap for every joints takes the maximum over all people
joints_heatmap = np.zeros((num_joints, height, width), dtype=np.float32)
# among all people
for joint in annos:
# generate heatmap for every keypoints
# loop through all people and keep the maximum
for i, points in enumerate(joint):
if points[0] < 0 or points[1] < 0:
continue
joints_heatmap = put_heatmap(joints_heatmap, i, points, 8.0)
# 0: joint index, 1:y, 2:x
joints_heatmap = joints_heatmap.transpose((1, 2, 0))
# background
joints_heatmap[:, :, -1] = np.clip(1 - np.amax(joints_heatmap, axis=2), 0.0, 1.0)
mapholder = []
for i in range(0, 19):
a = cv2.resize(np.array(joints_heatmap[:, :, i]), (hout, wout))
mapholder.append(a)
mapholder = np.array(mapholder)
joints_heatmap = mapholder.transpose(1, 2, 0)
return joints_heatmap.astype(np.float16)
def put_heatmap(heatmap, plane_idx, center, sigma):
"""
Parameters
-----------
Returns
--------
"""
center_x, center_y = center
_, height, width = heatmap.shape[:3]
th = 4.6052
delta = math.sqrt(th * 2)
x0 = int(max(0, center_x - delta * sigma + 0.5))
y0 = int(max(0, center_y - delta * sigma + 0.5))
x1 = int(min(width - 1, center_x + delta * sigma + 0.5))
y1 = int(min(height - 1, center_y + delta * sigma + 0.5))
exp_factor = 1 / 2.0 / sigma / sigma
## fast - vectorize
arr_heatmap = heatmap[plane_idx, y0:y1 + 1, x0:x1 + 1]
y_vec = (np.arange(y0, y1 + 1) - center_y)**2 # y1 included
x_vec = (np.arange(x0, x1 + 1) - center_x)**2
xv, yv = np.meshgrid(x_vec, y_vec)
arr_sum = exp_factor * (xv + yv)
arr_exp = np.exp(-arr_sum)
arr_exp[arr_sum > th] = 0
heatmap[plane_idx, y0:y1 + 1, x0:x1 + 1] = np.maximum(arr_heatmap, arr_exp)
return heatmap
def get_vectormap(annos, height, width):
"""
Parameters
-----------
Returns
--------
"""
num_joints = 19
limb = list(
zip([2, 9, 10, 2, 12, 13, 2, 3, 4, 3, 2, 6, 7, 6, 2, 1, 1, 15, 16],
[9, 10, 11, 12, 13, 14, 3, 4, 5, 17, 6, 7, 8, 18, 1, 15, 16, 17, 18]))
vectormap = np.zeros((num_joints * 2, height, width), dtype=np.float32)
counter = np.zeros((num_joints, height, width), dtype=np.int16)
for joint in annos:
if len(joint) != 19:
print('THE LENGTH IS NOT 19 ERROR:', len(joint))
for i, (a, b) in enumerate(limb):
a -= 1
b -= 1
v_start = joint[a]
v_end = joint[b]
# exclude invisible or unmarked point
if v_start[0] < -100 or v_start[1] < -100 or v_end[0] < -100 or v_end[1] < -100:
continue
vectormap = cal_vectormap(vectormap, counter, i, v_start, v_end)
vectormap = vectormap.transpose((1, 2, 0))
# normalize the PAF (otherwise longer limb gives stronger absolute strength)
nonzero_vector = np.nonzero(counter)
for i, y, x in zip(nonzero_vector[0], nonzero_vector[1], nonzero_vector[2]):
if counter[i][y][x] <= 0:
continue
vectormap[y][x][i * 2 + 0] /= counter[i][y][x]
vectormap[y][x][i * 2 + 1] /= counter[i][y][x]
mapholder = []
for i in range(0, n_pos * 2):
a = cv2.resize(np.array(vectormap[:, :, i]), (hout, wout), interpolation=cv2.INTER_AREA)
mapholder.append(a)
mapholder = np.array(mapholder)
vectormap = mapholder.transpose(1, 2, 0)
return vectormap.astype(np.float16)
def cal_vectormap(vectormap, countmap, i, v_start, v_end):
"""
Parameters
-----------
Returns
--------
"""
_, height, width = vectormap.shape[:3]
threshold = 8
vector_x = v_end[0] - v_start[0]
vector_y = v_end[1] - v_start[1]
length = math.sqrt(vector_x**2 + vector_y**2)
if length == 0:
return vectormap
min_x = max(0, int(min(v_start[0], v_end[0]) - threshold))
min_y = max(0, int(min(v_start[1], v_end[1]) - threshold))
max_x = min(width, int(max(v_start[0], v_end[0]) + threshold))
max_y = min(height, int(max(v_start[1], v_end[1]) + threshold))
norm_x = vector_x / length
norm_y = vector_y / length
for y in range(min_y, max_y):
for x in range(min_x, max_x):
bec_x = x - v_start[0]
bec_y = y - v_start[1]
dist = abs(bec_x * norm_y - bec_y * norm_x)
# orthogonal distance is < then threshold
if dist > threshold:
continue
countmap[i][y][x] += 1
vectormap[i * 2 + 0][y][x] = norm_x
vectormap[i * 2 + 1][y][x] = norm_y
return vectormap
def fast_vectormap(vectormap, countmap, i, v_start, v_end):
"""
Parameters
-----------
Returns
--------
"""
_, height, width = vectormap.shape[:3]
_, height, width = vectormap.shape[:3]
threshold = 8
vector_x = v_end[0] - v_start[0]
vector_y = v_end[1] - v_start[1]
length = math.sqrt(vector_x**2 + vector_y**2)
if length == 0:
return vectormap
min_x = max(0, int(min(v_start[0], v_end[0]) - threshold))
min_y = max(0, int(min(v_start[1], v_end[1]) - threshold))
max_x = min(width, int(max(v_start[0], v_end[0]) + threshold))
max_y = min(height, int(max(v_start[1], v_end[1]) + threshold))
norm_x = vector_x / length
norm_y = vector_y / length
x_vec = (np.arange(min_x, max_x) - v_start[0]) * norm_y
y_vec = (np.arange(min_y, max_y) - v_start[1]) * norm_x
xv, yv = np.meshgrid(x_vec, y_vec)
dist_matrix = abs(xv - yv)
filter_matrix = np.where(dist_matrix > threshold, 0, 1)
countmap[i, min_y:max_y, min_x:max_x] += filter_matrix
for y in range(max_y - min_y):
for x in range(max_x - min_x):
if filter_matrix[y, x] != 0:
vectormap[i * 2 + 0, min_y + y, min_x + x] = norm_x
vectormap[i * 2 + 1, min_y + y, min_x + x] = norm_y
return vectormap
def draw_results(images, heats_ground, heats_result, pafs_ground, pafs_result, masks, name=''):
"""Save results for debugging.
Parameters
-----------
images : a list of RGB images
heats_ground : a list of keypoint heat maps or None
heats_result : a list of keypoint heat maps or None
pafs_ground : a list of paf vector maps or None
pafs_result : a list of paf vector maps or None
masks : a list of mask for people
"""
# interval = len(images)
for i in range(len(images)):
if heats_ground is not None:
heat_ground = heats_ground[i]
if heats_result is not None:
heat_result = heats_result[i]
if pafs_ground is not None:
paf_ground = pafs_ground[i]
if pafs_result is not None:
paf_result = pafs_result[i]
if masks is not None:
# print(masks.shape)
mask = masks[i, :, :, 0]
# print(mask.shape)
mask = mask[:, :, np.newaxis]
# mask = masks[:,:,:,0]
# mask = mask.reshape(hout, wout, 1)
mask1 = np.repeat(mask, n_pos, 2)
mask2 = np.repeat(mask, n_pos * 2, 2)
# print(mask1.shape, mask2.shape)
image = images[i]
fig = plt.figure(figsize=(8, 8))
a = fig.add_subplot(2, 3, 1)
plt.imshow(image)
if pafs_ground is not None:
a = fig.add_subplot(2, 3, 2)
a.set_title('Vectormap_ground')
vectormap = paf_ground * mask2
tmp2 = vectormap.transpose((2, 0, 1))
tmp2_odd = np.amax(np.absolute(tmp2[::2, :, :]), axis=0)
tmp2_even = np.amax(np.absolute(tmp2[1::2, :, :]), axis=0)
# tmp2_odd = tmp2_odd * 255
# tmp2_odd = tmp2_odd.astype(np.int)
plt.imshow(tmp2_odd, alpha=0.3)
# tmp2_even = tmp2_even * 255
# tmp2_even = tmp2_even.astype(np.int)
plt.colorbar()
plt.imshow(tmp2_even, alpha=0.3)
if pafs_result is not None:
a = fig.add_subplot(2, 3, 3)
a.set_title('Vectormap result')
if masks is not None:
vectormap = paf_result * mask2
else:
vectormap = paf_result
tmp2 = vectormap.transpose((2, 0, 1))
tmp2_odd = np.amax(np.absolute(tmp2[::2, :, :]), axis=0)
tmp2_even = np.amax(np.absolute(tmp2[1::2, :, :]), axis=0)
plt.imshow(tmp2_odd, alpha=0.3)
plt.colorbar()
plt.imshow(tmp2_even, alpha=0.3)
if heats_result is not None:
a = fig.add_subplot(2, 3, 4)
a.set_title('Heatmap result')
if masks is not None:
heatmap = heat_result * mask1
else:
heatmap = heat_result
tmp = heatmap
tmp = np.amax(heatmap[:, :, :-1], axis=2)
plt.colorbar()
plt.imshow(tmp, alpha=0.3)
if heats_ground is not None:
a = fig.add_subplot(2, 3, 5)
a.set_title('Heatmap ground truth')
if masks is not None:
heatmap = heat_ground * mask1
else:
heatmap = heat_ground
tmp = heatmap
tmp = np.amax(heatmap[:, :, :-1], axis=2)
plt.colorbar()
plt.imshow(tmp, alpha=0.3)
if masks is not None:
a = fig.add_subplot(2, 3, 6)
a.set_title('Mask')
# print(mask.shape, tmp.shape)
plt.colorbar()
plt.imshow(mask[:, :, 0], alpha=0.3)
# plt.savefig(str(i)+'.png',dpi=300)
# plt.show()
mkpath(config.LOG.vis_path)
plt.savefig(os.path.join(config.LOG.vis_path, '%s%d.png' % (name, i)), dpi=300)
def vis_annos(image, annos, name=''):
"""Save results for debugging.
Parameters
-----------
images : single RGB image
annos : annotation, list of lists
"""
fig = plt.figure(figsize=(8, 8))
a = fig.add_subplot(1, 1, 1)
plt.imshow(image)
for people in annos:
for idx, jo in enumerate(people):
if jo[0] > 0 and jo[1] > 0:
plt.plot(jo[0], jo[1], '*')
mkpath(config.LOG.vis_path)
plt.savefig(os.path.join(config.LOG.vis_path, 'keypoints%s%d.png' % (name, i)), dpi=300)
def tf_repeat(tensor, repeats):
"""
Args:
input: A Tensor. 1-D or higher.
repeats: A list. Number of repeat for each dimension, length must be the same as the number of dimensions in input
Returns:
A Tensor. Has the same type as input. Has the shape of tensor.shape * repeats
"""
expanded_tensor = tf.expand_dims(tensor, -1)
multiples = [1] + repeats
tiled_tensor = tf.tile(expanded_tensor, multiples=multiples)
repeated_tesnor = tf.reshape(tiled_tensor, tf.shape(tensor) * repeats)
return repeated_tesnor
if __name__ == '__main__':
data_dir = '/Users/Joel/Desktop/coco'
data_type = 'val'
anno_path = '{}/annotations/person_keypoints_{}2014.json'.format(data_dir, data_type)
df_val = PoseInfo(data_dir, data_type, anno_path)
for i in range(50):
meta = df_val.metas[i]
mask_sig = meta.masks
print('shape of np mask is ', np.shape(mask_sig), type(mask_sig))
if mask_sig is not []:
mask_miss = np.ones((meta.height, meta.width), dtype=np.uint8)
for seg in mask_sig:
bin_mask = maskUtils.decode(seg)
bin_mask = np.logical_not(bin_mask)
mask_miss = np.bitwise_and(mask_miss, bin_mask)
| 2,808 | 0 | 215 |
ff58e4450bdd8b5c7f7f6c3cd7210157a63147af | 2,650 | py | Python | passworsd_locker.py | nyamzy/Password_Locker | 6a2352aac527d2e4efe706992af8b310ca6836ad | [
"Unlicense"
] | null | null | null | passworsd_locker.py | nyamzy/Password_Locker | 6a2352aac527d2e4efe706992af8b310ca6836ad | [
"Unlicense"
] | null | null | null | passworsd_locker.py | nyamzy/Password_Locker | 6a2352aac527d2e4efe706992af8b310ca6836ad | [
"Unlicense"
] | null | null | null | class User:
'''
Class that generates new instances of users
'''
users = [] #Empty list that will store users
def __init__(self, first_name, last_name, username, email, password):
'''
init method helps to define the properties for our user objects
'''
self.first_name = first_name
self.last_name = last_name
self.username = username
self.email = email
self.password = password
def save_user(self):
'''
Method that saves the user objects into users list
'''
User.users.append(self)
def delete_user(self):
'''
Method that deletes a saved user from the users list
'''
User.users.remove(self)
@classmethod
def find_by_username(cls,username):
'''
Method that takes in a username and returns a user that matches that username
'''
for user in cls.users:
if user.username == username:
return user
@classmethod
def user_exist(cls,username):
'''
Method that checks if a user exists from the user list
'''
for user in cls.users:
if user.username == username:
return True
return False
@classmethod
def display_users(cls):
'''
Method that returns the users list
'''
return cls.users
class Credentials:
'''
Class that generates new instances of credentials
'''
accounts = [] #Empty list that will store credentials
def __init__(self, username, application, password):
'''
Initialization method that helps define properties of our credential objects
'''
self.username = username
self.application = application
self.password = password
def save_credential(self):
'''
Method that saves the credentials to the accounts list
'''
Credentials.accounts.append(self)
def delete_credential(self):
'''
Method that can delete your saved credentials
'''
Credentials.accounts.remove(self)
@classmethod
def display_credentials(cls):
'''
Method that can display credentials in the accounts list
'''
return cls.accounts
@classmethod
def credential_exist(cls,username):
'''
Method that checks if a credential exists by using the username
'''
for credential in cls.accounts:
if credential.username == username:
return True
return False
| 23.451327 | 85 | 0.582264 | class User:
'''
Class that generates new instances of users
'''
users = [] #Empty list that will store users
def __init__(self, first_name, last_name, username, email, password):
'''
init method helps to define the properties for our user objects
'''
self.first_name = first_name
self.last_name = last_name
self.username = username
self.email = email
self.password = password
def save_user(self):
'''
Method that saves the user objects into users list
'''
User.users.append(self)
def delete_user(self):
'''
Method that deletes a saved user from the users list
'''
User.users.remove(self)
@classmethod
def find_by_username(cls,username):
'''
Method that takes in a username and returns a user that matches that username
'''
for user in cls.users:
if user.username == username:
return user
@classmethod
def user_exist(cls,username):
'''
Method that checks if a user exists from the user list
'''
for user in cls.users:
if user.username == username:
return True
return False
@classmethod
def display_users(cls):
'''
Method that returns the users list
'''
return cls.users
class Credentials:
'''
Class that generates new instances of credentials
'''
accounts = [] #Empty list that will store credentials
def __init__(self, username, application, password):
'''
Initialization method that helps define properties of our credential objects
'''
self.username = username
self.application = application
self.password = password
def save_credential(self):
'''
Method that saves the credentials to the accounts list
'''
Credentials.accounts.append(self)
def delete_credential(self):
'''
Method that can delete your saved credentials
'''
Credentials.accounts.remove(self)
@classmethod
def display_credentials(cls):
'''
Method that can display credentials in the accounts list
'''
return cls.accounts
@classmethod
def credential_exist(cls,username):
'''
Method that checks if a credential exists by using the username
'''
for credential in cls.accounts:
if credential.username == username:
return True
return False
| 0 | 0 | 0 |
83216a086de92a242afcc5b4241eace0c6f254a4 | 446 | py | Python | Solutions/Problem_055.py | PraneethJain/Project-Euler | 54fe34da444803ea55c49e4a4cda3ad6d4bca3b8 | [
"MIT"
] | 2 | 2022-03-11T21:31:52.000Z | 2022-03-11T21:37:14.000Z | Solutions/Problem_055.py | PraneethJain/Project-Euler-100 | 54fe34da444803ea55c49e4a4cda3ad6d4bca3b8 | [
"MIT"
] | null | null | null | Solutions/Problem_055.py | PraneethJain/Project-Euler-100 | 54fe34da444803ea55c49e4a4cda3ad6d4bca3b8 | [
"MIT"
] | 1 | 2022-03-07T12:55:36.000Z | 2022-03-07T12:55:36.000Z | from time import time
t1 = time()
print(len([i for i in range(1, 10001) if Lychrel_Check(i)]))
print(f"Process completed in {time()-t1}s")
| 18.583333 | 60 | 0.55157 | from time import time
def palindrome_check(x: int) -> bool:
return str(x) == str(x)[::-1]
def Lychrel_Check(x):
num = x
i = 0
while i < 50:
num = num + int(str(num)[::-1])
if palindrome_check(num):
return False
i += 1
if i == 50:
return True
return False
t1 = time()
print(len([i for i in range(1, 10001) if Lychrel_Check(i)]))
print(f"Process completed in {time()-t1}s")
| 257 | 0 | 46 |
d5eb44adf893bfcb8f341289542301edb9f1004b | 1,886 | py | Python | tests/test_status_scripts.py | dem4ply/chibi_lxc | 159acfacf829d0fd182382323905ee3f699dabe0 | [
"WTFPL"
] | null | null | null | tests/test_status_scripts.py | dem4ply/chibi_lxc | 159acfacf829d0fd182382323905ee3f699dabe0 | [
"WTFPL"
] | null | null | null | tests/test_status_scripts.py | dem4ply/chibi_lxc | 159acfacf829d0fd182382323905ee3f699dabe0 | [
"WTFPL"
] | null | null | null | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import unittest
from chibi_lxc.container import Container
| 26.56338 | 77 | 0.650053 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
import unittest
from chibi_lxc.container import Container
class Centos_test( Container ):
name = 'centos_7_test'
provision_folders = {
'scripts': 'tests/scripts/'
}
status_scripts = (
'script_test.sh',
)
class Centos_one_test( Centos_test ):
name = 'centos_7_test'
provision_folders = {
'scripts': 'tests/scripts/'
}
status_scripts = (
( 'tuple_script.sh', 'asdfsadfasfd' )
)
class Centos_two_test( Centos_one_test ):
name = 'centos_7_test'
provision_folders = {
'scripts': 'tests/scripts/'
}
class Centos_child( Centos_test ):
name = 'centos_7_test'
provision_folders = {
'scripts': 'tests/scripts/'
}
status_scripts = (
'another.sh',
)
class Test_scripts( unittest.TestCase ):
@classmethod
def setUpClass( cls ):
if not Centos_test.exists:
Centos_test.create()
Centos_test.provision()
Centos_test.start()
def test_prepare_script_should_return_a_tuple( self ):
script = Centos_test.status_scripts[0]
result = Centos_test._prepare_script( 'python.py' )
self.assertEqual( ( 'python3', 'python.py' ), result )
script = Centos_test.status_scripts[0]
result = Centos_test._prepare_script( Centos_test.status_scripts[0] )
self.assertEqual( ( 'bash', script ), result )
def test_run_scripts_should_work_property( self ):
result = Centos_test.run_status_scripts()
self.assertIsNone( result )
def test_the_scripts_should_have_heritance( self ):
self.assertEqual( len( Centos_child.status_scripts ), 2 )
def test_the_scripts_should_no_repeat_by_heritance( self ):
self.assertEqual(
Centos_one_test.status_scripts, Centos_two_test.status_scripts
)
| 872 | 790 | 115 |
ad3144a0ebf2e823a28fe10ffea6b82a3c273d48 | 20,989 | py | Python | model.py | KingAndQueen/MemN2N_tensorflow | 05bb97458c36fd6c6085af6ff93f843c29eb35af | [
"MIT"
] | null | null | null | model.py | KingAndQueen/MemN2N_tensorflow | 05bb97458c36fd6c6085af6ff93f843c29eb35af | [
"MIT"
] | null | null | null | model.py | KingAndQueen/MemN2N_tensorflow | 05bb97458c36fd6c6085af6ff93f843c29eb35af | [
"MIT"
] | null | null | null | import os
import math
import random
import numpy as np
import tensorflow as tf
from sklearn import metrics
# from past.builtins import xrange
import pdb
def zero_nil_slot(t, name=None):
"""
Overwrites the nil_slot (first row) of the input Tensor with zeros.
The nil_slot is a dummy slot and should not be trained and influence
the training algorithm.
"""
with tf.name_scope(name, "zero_nil_slot", [t]) as name:
# pdb.set_trace()
t = tf.convert_to_tensor(t, name="t")
s = tf.shape(t)[1]
z = tf.zeros(tf.stack([1, s]))
return tf.concat(axis=0, values=[z, tf.slice(t, [1, 0], [-1, -1])], name=name)
def position_encoding(sentence_size, embedding_size):
"""
Position Encoding described in section 4.1 [1]
"""
encoding = np.ones((embedding_size, sentence_size), dtype=np.float32)
# ls = sentence_size + 1
# le = embedding_size + 1
# for i in range(1, le):
# for j in range(1, ls):
# encoding[i - 1, j - 1] = (i - (embedding_size + 1) / 2) * (j - (sentence_size + 1) / 2)
# encoding = 1 + 4 * encoding / embedding_size / sentence_size
# # Make position encoding of time words identity to avoid modifying them
# encoding[:, -1] = 1.0
return np.transpose(encoding)
| 43.636175 | 134 | 0.535328 | import os
import math
import random
import numpy as np
import tensorflow as tf
from sklearn import metrics
# from past.builtins import xrange
import pdb
def zero_nil_slot(t, name=None):
"""
Overwrites the nil_slot (first row) of the input Tensor with zeros.
The nil_slot is a dummy slot and should not be trained and influence
the training algorithm.
"""
with tf.name_scope(name, "zero_nil_slot", [t]) as name:
# pdb.set_trace()
t = tf.convert_to_tensor(t, name="t")
s = tf.shape(t)[1]
z = tf.zeros(tf.stack([1, s]))
return tf.concat(axis=0, values=[z, tf.slice(t, [1, 0], [-1, -1])], name=name)
def position_encoding(sentence_size, embedding_size):
"""
Position Encoding described in section 4.1 [1]
"""
encoding = np.ones((embedding_size, sentence_size), dtype=np.float32)
# ls = sentence_size + 1
# le = embedding_size + 1
# for i in range(1, le):
# for j in range(1, ls):
# encoding[i - 1, j - 1] = (i - (embedding_size + 1) / 2) * (j - (sentence_size + 1) / 2)
# encoding = 1 + 4 * encoding / embedding_size / sentence_size
# # Make position encoding of time words identity to avoid modifying them
# encoding[:, -1] = 1.0
return np.transpose(encoding)
class MemN2N(object):
def __init__(self, config, sess):
self.nwords = config.nwords
# self.init_hid = config.init_hid
self.init_std = config.init_std
self.batch_size = config.batch_size
self.nepoch = config.nepoch
self.nhop = config.nhop
self.edim = config.edim
self.sent_size = config.sent_size
self.mem_size = config.mem_size
# self.lindim = config.lindim
self.max_grad_norm = config.max_grad_norm
self.show = config.show
self.is_test = config.is_test
self.checkpoint_dir = config.checkpoint_dir
if not os.path.isdir(self.checkpoint_dir):
raise Exception(" [!] Directory %s not found" % self.checkpoint_dir)
self.input = tf.placeholder(tf.int32, [None, self.sent_size], name="input")
self.time = tf.placeholder(tf.int32, [None, self.mem_size, self.sent_size], name="time")
self.target = tf.placeholder(tf.float32, [self.batch_size, self.nwords], name="target")
self.context = tf.placeholder(tf.int32, [self.batch_size, self.mem_size, self.sent_size], name="context")
self.hid = []
self.share_list = []
self.share_list.append([])
self.lr = None
self.current_lr = config.init_lr
self.loss = None
self.step = None
self.optim = None
self.sess = sess
self.log_loss = []
self.log_perp = []
def build_memory(self):
self.global_step = tf.Variable(0, name="global_step", trainable=False)
self.A = tf.Variable(tf.random_normal([self.nwords, self.edim], stddev=0.1), name='A')
self.B = tf.Variable(tf.random_normal([self.nwords, self.edim], stddev=0.1), name='B')
# self.C = tf.Variable(tf.random_normal([self.batch_size, self.mem_size, self.edim, 1], stddev=self.init_std),name='C')
# self.C = position_encoding(self.mem_size * self.sent_size, self.edim)
# Temporal Encoding
# self.T_A = tf.Variable(tf.random_normal([self.mem_size * self.sent_size, self.edim], stddev=0.1),name='T_A',trainable=False)
# self.T_B = tf.Variable(tf.random_normal([self.mem_size * self.sent_size, self.edim], stddev=0.1),name='T_B',trainable=False)
self.T_A = position_encoding(self.mem_size * self.sent_size, self.edim)
self.T_B = position_encoding(self.mem_size * self.sent_size, self.edim)
# m_i = sum A_ij * x_ij + T_A_i
# pdb.set_trace()
self._nil_vars = set([self.A.name] + [self.B.name]) # +[self.B.name])
Ain_c = tf.nn.embedding_lookup(self.A, self.context)
Ain_t = tf.nn.embedding_lookup(self.T_A, self.time)
Ain = Ain_c * Ain_t
Bin_c = tf.nn.embedding_lookup(self.B, self.context)
Bin_t = tf.nn.embedding_lookup(self.T_B, self.time)
Bin = Bin_c * Bin_t
# c_i = sum B_ij * u + T_B_i
# Bin_c = tf.nn.embedding_lookup(self.B, self.context)
# Bin_t = tf.nn.embedding_lookup(self.T_B, self.time)
# Bin = Bin_c*Bin_t
Qin = tf.nn.embedding_lookup(self.A, self.input)
# pdb.set_trace()
Qin = tf.expand_dims(Qin, 1)
Qin = tf.tile(Qin, [1, self.mem_size, 1, 1])
self.hid.append(Qin)
# pdb.set_trace()
# Bin = tf.reduce_sum(Bin, axis=2)
# Ain = tf.reduce_sum(Ain, axis=2) # for count the sents in memory
# Ain_sents=tf.reduce_sum(Ain,axis=1) for #count the words in each sentences
# pdb.set_trace()
for hop in xrange(self.nhop):
self.hid3dim = self.hid[-1] # tf.reshape(self.hid[-1], [-1, 1, self.edim])
Aout = tf.matmul(self.hid3dim, Ain, adjoint_a=True)
Aout2dim = Aout # tf.reshape(Aout, [-1, self.mem_size])
P = tf.nn.softmax(Aout2dim)
# probs3dim = tf.transpose(self.hid3dim, [0,2,1,3])
# Bin_=tf.transpose(Bin,[0,2,1,3])
Bout = tf.matmul(Bin, P)
# Bout2dim = Bout # tf.reshape(Bout, [-1, self.edim])
# A_B=tf.concat([Aout,Bout],axis=1)
# Allout = tf.matmul(A_B, self.C)
# Allout=tf.squeeze(Allout)
# Dout = tf.add(Cout, Bout2dim)
# self.share_list[0].append(Cout)
# if self.lindim == self.edim:
self.hid.append(Bout)
# elif self.lindim == 0:
# self.hid.append(tf.nn.relu(Dout))
# else:
# F = tf.slice(Dout, [0, 0, 0], [self.batch_size, self.sent_size, self.lindim])
# G = tf.slice(Dout, [0, 0, self.lindim], [self.batch_size, self.sent_size, self.edim - self.lindim])
# K = tf.nn.relu(G)
# self.hid.append(tf.concat(axis=2, values=[F, K]))
def _inference(self, stories, queries):
self.global_step = tf.Variable(0, name="global_step", trainable=False)
with tf.variable_scope('inference'):
self._init = tf.random_normal_initializer(stddev=0.1)
# nil_word_slot = tf.zeros([1, self.edim])
# A = tf.concat(axis=0, values=[ nil_word_slot, self._init([self.nwords-1, self.edim]) ])
# C = tf.concat(axis=0, values=[ nil_word_slot, self._init([self.nwords-1, self.edim]) ])
A = tf.random_normal([self.nwords, self.edim], stddev=0.1)
C = tf.random_normal([self.nwords, self.edim], stddev=0.1)
self.A_1 = tf.Variable(A, name="A")
# Use A_1 for thee question embedding as per Adjacent Weight Sharing
# self.A_1=tf.Variable(tf.random_normal([self.nwords, self.edim], stddev=self.init_std),name='A_1')
self._encoding = tf.constant(position_encoding(self.sent_size, self.edim))
# C=tf.random_normal([self.nwords, self.edim], stddev=self.init_std)
self.C = []
for hopn in range(self.nhop):
with tf.variable_scope('hop_{}'.format(hopn)):
self.C.append(tf.Variable(C, name="C"))
q_emb = tf.nn.embedding_lookup(self.A_1, queries)
u_0 = tf.reduce_sum(q_emb * self._encoding, 1)
u = [u_0]
self._nil_vars = set([self.A_1.name] + [x.name for x in self.C])
for hopn in range(self.nhop):
if hopn == 0:
m_emb_A = tf.nn.embedding_lookup(self.A_1, stories)
m_A = tf.reduce_sum(m_emb_A * self._encoding, 2)
else:
with tf.variable_scope('hop_{}'.format(hopn - 1)):
m_emb_A = tf.nn.embedding_lookup(self.C[hopn - 1], stories)
m_A = tf.reduce_sum(m_emb_A * self._encoding, 2)
# hack to get around no reduce_dot
u_temp = tf.transpose(tf.expand_dims(u[-1], -1), [0, 2, 1])
dotted = tf.reduce_sum(m_A * u_temp, 2)
# Calculate probabilities
probs = tf.nn.softmax(dotted)
probs_temp = tf.transpose(tf.expand_dims(probs, -1), [0, 2, 1])
with tf.variable_scope('hop_{}'.format(hopn)):
m_emb_C = tf.nn.embedding_lookup(self.C[hopn], stories)
m_C = tf.reduce_sum(m_emb_C * self._encoding, 2)
c_temp = tf.transpose(m_C, [0, 2, 1])
o_k = tf.reduce_sum(c_temp * probs_temp, 2)
# Dont use projection layer for adj weight sharing
# u_k = tf.matmul(u[-1], self.H) + o_k
u_k = u[-1] + o_k
u.append(u_k)
# Use last C for output (transposed)
with tf.variable_scope('hop_{}'.format(self.nhop)):
return tf.matmul(u_k, tf.transpose(self.C[-1], [1, 0]))
def build_model(self):
# logits=self._inference(self.context,self.input)
self.build_memory()
# pdb.set_trace()
out_hid = self.hid[-1]
# out_hid = tf.reduce_sum(out_hid, axis=1) #need to be modified
# self.hid2word = tf.Variable(tf.random_normal([self.batch_size,self.mem_size,self.sent_size, 1]))
# out_hid = tf.matmul(out_hid, self.hid2word,transpose_a=True)
# out_hid=tf.squeeze(out_hid)
# self.hid2word2 = tf.Variable(tf.random_normal([self.batch_size, self.mem_size, 1]))
# out_hid = tf.matmul(out_hid, self.hid2word2, transpose_a=True)
with tf.variable_scope('cnn'):
def _variable_on_cpu(name, shape, initializer):
"""Helper to create a Variable stored on CPU memory.
Args:
name: name of the variable
shape: list of ints
initializer: initializer for Variable
Returns:
Variable Tensor
"""
with tf.device('/cpu:0'):
var = tf.get_variable(name, shape, initializer=initializer, dtype=tf.float32)
return var
def _variable_with_weight_decay(name, shape, stddev, wd):
"""Helper to create an initialized Variable with weight decay.
Note that the Variable is initialized with a truncated normal distribution.
A weight decay is added only if one is specified.
Args:
name: name of the variable
shape: list of ints
stddev: standard deviation of a truncated Gaussian
wd: add L2Loss weight decay multiplied by this float. If None, weight
decay is not added for this Variable.
Returns:
Variable Tensor
"""
var = _variable_on_cpu(
name,
shape,
tf.truncated_normal_initializer(stddev=stddev, dtype=tf.float32))
# if wd is not None:
# weight_decay = tf.multiply(tf.nn.l2_loss(var), wd, name='weight_loss')
# tf.add_to_collection('losses', weight_decay)
return var
context=out_hid
# pdb.set_trace()
# conv1
with tf.variable_scope('conv1') as scope:
kernel = _variable_with_weight_decay('weights',
shape=[2, 2, 128, 64],
stddev=5e-2,
wd=None)
# pdb.set_trace()
conv = tf.nn.conv2d(context, kernel, [1, 2, 2, 1], padding='SAME')
biases = _variable_on_cpu('biases', [64], tf.constant_initializer(0.0))
pre_activation = tf.nn.bias_add(conv, biases)
conv1 = tf.nn.relu(pre_activation, name=scope.name)
# pool1
pool1 = tf.nn.max_pool(conv1, ksize=[1, 2, 2, 1], strides=[1, 3, 2, 1],
padding='SAME', name='pool1')
# norm1
norm1 = tf.nn.lrn(pool1, 4, bias=1.0, alpha=0.001 / 9.0, beta=0.75,
name='norm1')
# conv2
# with tf.variable_scope('conv2') as scope:
# kernel = _variable_with_weight_decay('weights',
# shape=[2, 2, 64, 20],
# stddev=5e-2,
# wd=None)
# conv = tf.nn.conv2d(norm1, kernel, [1, 2, 2, 1], padding='SAME')
# biases = _variable_on_cpu('biases', [20], tf.constant_initializer(0.1))
# pre_activation = tf.nn.bias_add(conv, biases)
# conv2 = tf.nn.relu(pre_activation, name=scope.name)
#
#
# # norm2
# norm2 = tf.nn.lrn(conv2, 4, bias=1.0, alpha=0.001 / 9.0, beta=0.75,
# name='norm2')
# # pool2
# pool2 = tf.nn.max_pool(norm2, ksize=[1, 2, 2, 1],
# strides=[1, 1, 1, 1], padding='SAME', name='pool2')
# # pdb.set_trace()
out_hid = tf.reshape(norm1, [self.batch_size, -1])
v_d = int(out_hid.get_shape()[-1])
self.W = tf.Variable(tf.random_normal([v_d, self.nwords], stddev=self.init_std), name='W')
z = tf.matmul(out_hid, self.W)
self.pred = z
self.loss = tf.nn.softmax_cross_entropy_with_logits(logits=z, labels=tf.cast(self.target, tf.float32))
cross_entropy_sum = tf.reduce_sum(self.loss, name="cross_entropy_sum")
self.lr = tf.Variable(self.current_lr, trainable=False)
self.opt = tf.train.GradientDescentOptimizer(self.lr)
# params = [self.A, self.B, self.C, self.T_A, self.T_B, self.W ]
grads_and_vars = self.opt.compute_gradients(cross_entropy_sum)
# pdb.set_trace()
clipped_grads_and_vars = [(tf.clip_by_norm(gv[0], self.max_grad_norm), gv[1]) \
for gv in grads_and_vars]
nil_grads_and_vars = []
for g, v in clipped_grads_and_vars:
if v.name in self._nil_vars:
nil_grads_and_vars.append((zero_nil_slot(g), v))
else:
nil_grads_and_vars.append((g, v))
inc = self.global_step.assign_add(1)
with tf.control_dependencies([inc]):
self.optim = self.opt.apply_gradients(nil_grads_and_vars)
tf.global_variables_initializer().run()
self.saver = tf.train.Saver(tf.global_variables(), max_to_keep=1)
def train(self, data, idx2word=None):
N = int(math.ceil(len(data) / self.batch_size))
cost = 0
x = np.ndarray([self.batch_size, self.sent_size], dtype=np.float32)
time = np.ndarray([self.batch_size, self.mem_size, self.sent_size], dtype=np.int32)
target = np.zeros([self.batch_size, self.nwords]) # one-hot-encoded
context = np.ndarray([self.batch_size, self.mem_size, self.sent_size])
# x.fill(self.init_hid)
for t in xrange(self.mem_size):
for s in xrange(self.sent_size):
time[:, t, s].fill(t * self.sent_size + s)
# pdb.set_trace()
targets, predicts = [], []
for idx in range(N):
target.fill(0)
for b in range(self.batch_size):
m = random.randrange(0, len(data))
context[b] = data[m][0]
x[b] = data[m][1]
target[b][data[m][2][0]] = 1
# pdb.set_trace()
_, loss, self.step, predict_ = self.sess.run([self.optim,
self.loss,
self.global_step, self.pred],
feed_dict={
self.input: x,
self.time: time,
self.target: target,
self.context: context})
cost += np.sum(loss)
# pdb.set_trace()
predicts.extend(np.argmax(predict_, 1))
targets.extend(np.argmax(target, 1))
# if self.show: bar.finish()
accuracy = metrics.accuracy_score(targets, predicts)
return cost / N / self.batch_size, accuracy
def test(self, data, label='Test'):
N = int(math.ceil(len(data) / self.batch_size))
cost = 0
x = np.ndarray([self.batch_size, self.sent_size], dtype=np.float32)
time = np.ndarray([self.batch_size, self.mem_size, self.sent_size], dtype=np.int32)
target = np.zeros([self.batch_size, self.nwords]) # one-hot-encoded
context = np.ndarray([self.batch_size, self.mem_size, self.sent_size])
# x.fill(self.init_hid)
for t in xrange(self.mem_size):
time[:, t].fill(t)
if self.show:
from utils import ProgressBar
bar = ProgressBar(label, max=N)
m = 0
targets, predicts = [], []
for idx in xrange(N):
target.fill(0)
for b in xrange(self.batch_size):
context[b] = data[m][0]
x[b] = data[m][1]
target[b][data[m][2][0]] = 1
m += 1
if m >= len(data):
m = self.mem_size
loss, pred = self.sess.run([self.loss, self.pred], feed_dict={self.input: x,
self.time: time,
self.target: target,
self.context: context})
cost += np.sum(loss)
predicts.extend(np.argmax(pred, 1))
targets.extend(np.argmax(target, 1))
# pdb.set_trace()
accuracy = metrics.accuracy_score(targets, predicts)
return cost / N / self.batch_size, accuracy
def run(self, train_data, test_data, idx2word, FLAGS):
if not self.is_test:
for idx in xrange(self.nepoch):
train_loss, train_acc = self.train(train_data, idx2word=idx2word)
test_loss, test_acc = self.test(test_data, label='Validation')
# train_losses = np.sum(train_loss)
# test_losses = np.sum(test_loss)
# Logging
# self.log_aploss.append([train_losses, test_losses])
# self.log_perp.pend([math.exp(train_losses), math.exp(test_losses)])
state = {
'epoch': idx,
'lr': self.current_lr,
# 'train loss': train_losses,
# 'valid loss': test_losses, # math.exp(test_loss),
'valid acc:': test_acc,
'train acc:': train_acc
}
print(state)
# Learning rate annealing
if idx - 1 <= FLAGS.anneal_stop_epoch:
anneal = 2.0 ** ((idx - 1) // FLAGS.anneal_rate)
else:
anneal = 2.0 ** (FLAGS.anneal_stop_epoch // FLAGS.anneal_rate)
self.current_lr = FLAGS.init_lr / anneal
self.lr.assign(self.current_lr).eval()
# if idx > 25 and idx<100:
# current_lrself. = self.current_lr * 0.8
# self.lr.assign(self.current_lr).eval()
# if self.current_lr < 1e-5: break
if idx % 50 == 0:
self.saver.save(self.sess,
os.path.join(self.checkpoint_dir, "MemN2N.model"),
global_step=self.step.astype(int))
else:
self.load()
valid_loss, valid_acc = self.train(train_data)
test_loss, test_acc = self.test(test_data, label='Validation')
# valid_loss = np.sum(self.test(train_data, label='Validation'))
# test_loss = np.sum(self.test(test_data, label='Test'))
state = {
'valid loss': valid_loss,
'test loss': test_loss,
'test accuracy': test_acc
}
print(state)
def load(self):
print(" [*] Reading checkpoints...")
ckpt = tf.train.get_checkpoint_state(self.checkpoint_dir)
if ckpt and ckpt.model_checkpoint_path:
self.saver.restore(self.sess, ckpt.model_checkpoint_path)
else:
raise Exception(" [!] Trest mode but no checkpoint found")
| 19,460 | 0 | 238 |
36e2cce34b1c3a892796b24c86bf6dadce858234 | 1,660 | py | Python | workload/dc_workload/plot/bandwidth_sensitivity.py | vishal1303/simulator | c9429cecd1a058b2ab13cbed5c4cb802557bf315 | [
"BSD-3-Clause"
] | 2 | 2019-03-03T02:50:51.000Z | 2020-01-28T05:34:24.000Z | workload/dc_workload/plot/bandwidth_sensitivity.py | vishal1303/simulator | c9429cecd1a058b2ab13cbed5c4cb802557bf315 | [
"BSD-3-Clause"
] | null | null | null | workload/dc_workload/plot/bandwidth_sensitivity.py | vishal1303/simulator | c9429cecd1a058b2ab13cbed5c4cb802557bf315 | [
"BSD-3-Clause"
] | 1 | 2019-10-15T13:31:15.000Z | 2019-10-15T13:31:15.000Z | import sys
import os
workload = sys.argv[1]
dirname = "workload/dc_workload/all-to-all-144-"+workload
protocol = sys.argv[2]
bandwidth = ['40G', '100G']
delay = ['200ns']
load = [0.5, 0.6, 0.7, 0.8]
slowdown_val = []
for d in delay:
for l in load:
slowdown_val = []
for b in bandwidth:
try:
f = open(dirname+"/"+protocol+"-"+b+"-"+d+"-"+str(l)+".out.slowdown.all.mean", "r")
for line in f:
slowdown_val.append(line.strip())
f.close()
except:
slowdown_val.append("1")
continue
out = open(dirname+"/"+protocol+"-ANY"+"-"+d+"-"+str(l)+".out.slowdown.all.mean", "w")
out.write("arch 40 100 400")
out.write("\n")
out.write(protocol)
out.write(" ")
for s_val in slowdown_val:
out.write(s_val)
out.write(" ")
out.close()
for d in delay:
for l in load:
slowdown_val = []
for b in bandwidth:
try:
f = open(dirname+"/"+protocol+"-"+b+"-"+d+"-"+str(l)+".out.slowdown.all.99", "r")
for line in f:
slowdown_val.append(line.strip())
f.close()
except:
slowdown_val.append("1")
continue
out = open(dirname+"/"+protocol+"-ANY"+"-"+d+"-"+str(l)+".out.slowdown.all.99", "w")
out.write("arch 40 100 400")
out.write("\n")
out.write(protocol)
out.write(" ")
for s_val in slowdown_val:
out.write(s_val)
out.write(" ")
out.close()
| 29.122807 | 99 | 0.475904 | import sys
import os
workload = sys.argv[1]
dirname = "workload/dc_workload/all-to-all-144-"+workload
protocol = sys.argv[2]
bandwidth = ['40G', '100G']
delay = ['200ns']
load = [0.5, 0.6, 0.7, 0.8]
slowdown_val = []
for d in delay:
for l in load:
slowdown_val = []
for b in bandwidth:
try:
f = open(dirname+"/"+protocol+"-"+b+"-"+d+"-"+str(l)+".out.slowdown.all.mean", "r")
for line in f:
slowdown_val.append(line.strip())
f.close()
except:
slowdown_val.append("1")
continue
out = open(dirname+"/"+protocol+"-ANY"+"-"+d+"-"+str(l)+".out.slowdown.all.mean", "w")
out.write("arch 40 100 400")
out.write("\n")
out.write(protocol)
out.write(" ")
for s_val in slowdown_val:
out.write(s_val)
out.write(" ")
out.close()
for d in delay:
for l in load:
slowdown_val = []
for b in bandwidth:
try:
f = open(dirname+"/"+protocol+"-"+b+"-"+d+"-"+str(l)+".out.slowdown.all.99", "r")
for line in f:
slowdown_val.append(line.strip())
f.close()
except:
slowdown_val.append("1")
continue
out = open(dirname+"/"+protocol+"-ANY"+"-"+d+"-"+str(l)+".out.slowdown.all.99", "w")
out.write("arch 40 100 400")
out.write("\n")
out.write(protocol)
out.write(" ")
for s_val in slowdown_val:
out.write(s_val)
out.write(" ")
out.close()
| 0 | 0 | 0 |
0060cf8b7cb6ce13fc658ba97409b30dc81e273e | 30,959 | py | Python | amc/models.py | chamaken/django-amc | f5812c71dfde9ddcc286f14170885902a312e8d9 | [
"BSD-3-Clause"
] | null | null | null | amc/models.py | chamaken/django-amc | f5812c71dfde9ddcc286f14170885902a312e8d9 | [
"BSD-3-Clause"
] | null | null | null | amc/models.py | chamaken/django-amc | f5812c71dfde9ddcc286f14170885902a312e8d9 | [
"BSD-3-Clause"
] | null | null | null | import socket, uuid
from django.db import models, transaction
from django.db.models import fields, signals
from django.dispatch import receiver
from django.utils.encoding import force_text
from django.utils.functional import Promise
from django.utils.translation import ugettext_lazy as _
# based on 2017-11-28
# https://developer.apple.com/library/content/featuredarticles/iPhoneConfigurationProfileRef/Introduction/Introduction.html#//apple_ref/doc/uid/TP40010206
"""Assign default value which has choice"""
class Configuration(SimplePayload):
"""Configuration Profile Keys
At the top level, a profile property list contains the following
keys:
"""
def add_payload(self, payload):
"""add PayloadContent
Array: Optional
Array of payload dictionaries. Not present if IsEncrypted is true.
This method is introduced for profile which is not persistent.
"""
robjs = [c for c in Configuration._meta.related_objects
if c.one_to_many]
found = False
for robj in robjs:
if payload.__class__ == robj.related_model:
found = True
break
if not found:
raise ValueError('not exist in related_objects')
# more better way?
s = getattr(self, robj.get_accessor_name())
if s.filter(payload_identifier=payload.payload_identifier) \
or any([payload.payload_identifier == p.payload_identifier
for p in self._payload_contents]):
raise ValueError('duplicate PayloadIdentifier')
self._payload_contents.append(payload)
return self
def save(self, *args, **kwargs):
"""persist object
if boolean arg ``with_payloads`` is true, payloads added by
``add_payload`` will be also saved.
"""
with_payloads = kwargs.pop('with_payloads', False)
super(Configuration, self).save(*args, **kwargs)
if not with_payloads: return
with transaction.atomic():
for payload in self._payload_contents:
payload.configuration = self
payload.save(*args, **kwargs)
self._payload_contents = []
pldict = property(_as_pldict, _from_pldict)
payload_description = AMCCharField(
tag_text='PayloadDescription',
verbose_name=_('Description'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadDescription, String: Optional."
" A description of the profile, shown on the Detail"
" screen for the profile. This should be descriptive"
" enough to help the user decide whether to install the"
" profile."
)
)
payload_display_name = AMCCharField(
tag_text='PayloadDisplayName',
verbose_name=_('Display name'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadDisplayName, String: Optional."
" A human-readable name for the profile. This value is"
" displayed on the Detail screen. It does not have to be"
" unique."
)
)
payload_expiration_date = AMCDateField(
tag_text='PayloadExpirationDate',
verbose_name=_('Expiration date'),
null=True, blank=True,
help_text=_(
"PayloadExpirationDate, Date: Optional."
" A date on which a profile is considered to have"
" expired and can be" " updated over the air. This key is"
" only used if the profile is" " delivered via"
" over-the-air profile delivery."
)
)
# assign default value - original rule
payload_identifier = AMCCharField(
tag_text='PayloadIdentifier',
verbose_name=_('Identifier'),
default='.'.join(reversed(socket.getfqdn().split('.'))),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadIdentifier, String."
" A reverse-DNS style identifier"
" (com.example.myprofile, for example) that identifies"
" the profile. This string is used to determine whether"
" a new profile should replace an existing one or"
" should be added."
)
)
payload_organization = AMCCharField(
tag_text='PayloadOrganization',
verbose_name=_('Organization'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadOrganization, String: Optional"
" A human-readable string containing the name of the"
" organization that provided the profile."
)
)
payload_uuid = AMCUUIDField(
tag_text='PayloadUUID',
verbose_name=_('UUID'),
default=uuid.uuid4(),
editable=False,
help_text=_(
"PayloadUUID, String."
" A globally unique identifier for the profile. The"
" actual content is unimportant, but it must be globally"
" unique. In macOS, you can use uuidgen to generate"
" reasonable UUIDs."
)
)
payload_removal_disallowed = AMCNullBooleanField(
tag_text='PayloadRemovalDisallowed',
verbose_name=_('Removal disallowed'),
null=True, blank=True,
help_text=_(
"PayloadRemovalDisallowed, Boolean: Optional."
" Supervised only. If present and set to true, the user"
" cannot delete the profile (unless the profile has a"
" removal password and the user provides it)."
)
)
payload_type = AMCCharField(
tag_text='PayloadType',
verbose_name=_('Type'),
default='Configuration',
editable=False,
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadType, String."
" The only supported value is Configuration."
)
)
payload_version = AMCIntegerField(
tag_text='PayloadVersion',
verbose_name=_('Version'),
default=1,
editable=False,
help_text=_(
"PayloadVersion, Integer."
" The version number of the profile format. This describes"
" the version of the configuration profile as a whole, not"
" of the individual profiles within it. Currently, this"
" value should be 1."
)
)
payload_scope = AMCCharField(
tag_text='PayloadScope',
verbose_name=_('Scope'),
choices=(('User', 'User'), ('System', 'System')),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadScope, String: Optional"
" Determines if the profile should be installed for the"
" system or the user. In many cases, it determines the"
" location of the certificate items, such as"
" keychains. Though it is not possible to declare"
" different payload scopes, payloads, like VPN, may"
" automatically install their items in both scopes if"
" needed. Legal values are System and User, with User as"
" the default value. Availability: Available in macOS"
" 10.7 and later."
)
)
removal_date = AMCDateField(
tag_text='RemovalDate',
verbose_name=_('Removal date'),
null=True, blank=True,
help_text=_(
"RemovalDate, Date: Optional. "
" The date on which the profile will be automatically"
" removed."
)
)
duration_until_removal = AMCFloatField(
tag_text='DurationUntilRemoval',
verbose_name=_('Duration until removal'),
null=True, blank=True,
help_text=_(
"DurationUntilRemoval, Float: Optional."
" Number of seconds until the profile is automatically"
" removed. If the RemovalDate keys is present, whichever"
" field yields the earliest date will be used."
)
)
# ConsentText
# Dictionary: Optional
# A dictionary containing these keys and values: For each
# language in which a consent or license agreement is available,
# a key consisting of the IETF BCP 47 identifier for that
# language (for example, en or jp) and a value consisting of the
# agreement localized to that language. The agreement is
# displayed in a dialog to which the user must agree before
# installing the profile. The optional key default with its
# value consisting of the unlocalized agreement (usually in
# en). The system chooses a localized version in the order of
# preference specified by the user (macOS) or based on the
# user’s current language setting (iOS). If no exact match is
# found, the default localization is used. If there is no
# default localization, the en localization is used. If there is
# no en localization, then the first available localization is
# used. You should provide a default value if possible. No
# warning will be displayed if the user’s locale does not match
# any localization in the ConsentText dictionary.
class CommonPayload(SimplePayload):
"""Common part of each payload. i.e. Payload base class.
If a PayloadContent value is provided in a payload, each entry in the
array is a dictionary representing a configuration payload. The following
keys are common to all payloads:
"""
configuration = models.ForeignKey(
Configuration,
blank=True, null=True,
on_delete=models.CASCADE)
payload_type = AMCCharField(
tag_text='PayloadType',
verbose_name=_('Type'),
default = _('Unconfigured type'),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadType, String."
" The payload type. The payload types are described in"
" Payload-Specific Property Keys."
)
)
payload_version = AMCIntegerField(
tag_text='PayloadVersion',
verbose_name=_('Version'),
default=-1,
help_text=_(
"PayloadVersion, Integer."
" The version number of the individual payload. A profile"
" can consist of payloads with different version"
" numbers. For example, changes to the VPN software in iOS"
" might introduce a new payload version to support"
" additional features, but Mail payload versions would not"
" necessarily change in the same release."
)
)
# assign default value - original rule
payload_identifier = AMCCharField(
tag_text='PayloadIdentifier',
verbose_name=_('Identifier'),
default='.'.join(reversed(socket.getfqdn().split('.'))),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadIdentifier, String."
" A reverse-DNS-style identifier for the specific"
" payload. It is usually the same identifier as the"
" root-level PayloadIdentifier value with an additional"
" component appended."
)
)
payload_uuid = AMCUUIDField(
tag_text='PayloadUUID',
verbose_name=_('UUID'),
default=uuid.uuid4(),
editable=False,
help_text=_(
"PayloadUUID, String."
" A globally unique identifier for the payload. The actual"
" content is unimportant, but it must be globally"
" unique. In macOS, you can use uuidgen to generate"
" reasonable UUIDs."
)
)
# assign default value - original rule
payload_display_name = AMCCharField( # not nullable? differ from Configuration
tag_text='PayloadDisplayName',
verbose_name=_('Display name'),
default = _('Unconfigured display name'),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadDisplayName, String."
" A human-readable name for the profile payload. This name"
" is displayed on the Detail screen. It does not have to"
" be unique."
)
)
payload_description = AMCCharField(
tag_text='PayloadDescription',
verbose_name=_('Description'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadDescription, String: Optional."
" A human-readable description of this payload. This"
" description is shown on the Detail screen."
)
)
payload_organization = AMCCharField(
tag_text='PayloadOrganization',
verbose_name=_('Organization'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadOrganization, String: Optional."
" A human-readable string containing the name of the"
" organization that provided the profile. The payload"
" organization for a payload need not match the payload"
" organization in the enclosing profile."
)
)
class EmailPayload(CommonPayload):
"""Email payload
An email payload creates an email account on the device. In addition to
the settings common to all payloads, this payload defines the following
keys:
"""
EMAIL_ACCOUNT_TYPE_CHOICES = (
('EmailTypePOP', 'POP'),
('EmailTypeIMAP', 'IMAP'),
)
INCOMMING_MAIL_SERVER_AUTHENTICATION_CHOICES = (
('EmailAuthPassword', 'Password'),
('EmailAuthCRAMMD5', 'CRAM MD5'),
('EmailAuthNTLM', 'NTLM'),
('EmailAuthHTTPMD5', 'HTTP MD5'),
)
OUTGOING_MAIL_SERVER_AUTHENTICATION_CHOICES = (
('EmailAuthPassword', 'Password'),
('EmailAuthCRAMMD5', 'CRAM MD5'),
('EmailAuthNTLM', 'NTLM'),
('EmailAuthHTTPMD5', 'HTTP MD5'),
('EmailAuthNone', 'None'),
)
email_account_description = AMCCharField(
tag_text='EmailAccountDescription',
verbose_name=_('Email account description'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"EmailAccountDescription, String: Optional."
" A user-visible description of the email account, shown"
" in the Mail and Settings applications."
)
)
email_account_name = AMCCharField(
tag_text='EmailAccountName',
verbose_name=_('Email account name'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"EmailAccountName, String: Optional."
" The full user name for the account. This is the user"
" name in sent messages, etc."
)
)
# assign default value - original rule
email_account_type = AMCCharField(
tag_text='EmailAccountType',
verbose_name=_('Email account type'),
choices=EMAIL_ACCOUNT_TYPE_CHOICES,
default='EmailTypeIMAP',
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"EmailAccountType, String."
" Allowed values are EmailTypePOP and"
" EmailTypeIMAP. Defines the protocol to be used for that"
" account."
)
)
email_address = AMCEmailField(
tag_text='EmailAddress',
verbose_name=_('Email address'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"EmailAddress, String."
" Designates the full email address for the account. If"
" not present in the payload, the device prompts for this"
" string during profile installation."
)
)
# assign default value - original rule
incoming_mail_server_authentication = AMCCharField(
tag_text='IncomingMailServerAuthentication',
verbose_name=_('Incoming mail authentication'),
choices=INCOMMING_MAIL_SERVER_AUTHENTICATION_CHOICES,
default='EmailAuthPassword', # selfish
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"IncomingMailServerAuthentication, String."
" Designates the authentication scheme for incoming"
" mail. Allowed values are EmailAuthPassword,"
" EmailAuthCRAMMD5, EmailAuthNTLM, EmailAuthHTTPMD5, and"
" EmailAuthNone."
)
)
incoming_mail_server_host_name = AMCCharField(
tag_text='IncomingMailServerHostName',
max_length=AMCFieldMixin.char_field_max_length,
verbose_name=_('Incoming mail server'),
help_text=_(
"IncomingMailServerHostName, String."
" Designates the incoming mail server host name (or IP"
" address)."
)
)
incoming_mail_server_port_number = AMCIntegerField(
tag_text='IncomingMailServerPortNumber',
verbose_name=_('Incoming mail port'),
null=True, blank=True,
help_text=_(
"IncomingMailServerPortNumber, Integer: Optional."
" Designates the incoming mail server port number. If no"
" port number is specified, the default port for a given"
" protocol is used."
)
)
incoming_mail_server_use_ssl = AMCNullBooleanField(
tag_text='IncomingMailServerUseSSL',
verbose_name=_('Incoming SSL'),
null=True, blank=True,
help_text=_(
"IncomingMailServerUseSSL, Boolean: Optional."
" Default false. Designates whether the incoming mail"
" server uses SSL for authentication."
)
)
incoming_mail_server_username = AMCCharField(
tag_text='IncomingMailServerUsername',
verbose_name=_('Incoming user name'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"IncomingMailServerUsername, String."
" Designates the user name for the email account, usually"
" the same as the email address up to the @ character. If"
" not presentin the payload, and the account is set up to"
" require authentication for incoming email, the device"
" will prompt for this string during profile"
" installation."
)
)
incoming_password = AMCCharField(
tag_text='IncomingPassword',
verbose_name=_('Incoming password'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"IncomingPassword, String: Optional."
" Password for the Incoming Mail Server. Use only with"
" encrypted profiles."
)
)
outgoing_password = AMCCharField(
tag_text='OutgoingPassword',
verbose_name=_('Outgoing password'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"OutgoingPassword,String: Optional."
" Password for the Outgoing Mail Server. Use only with"
" encrypted profiles."
)
)
outgoing_password_same_as_incoming_password = AMCNullBooleanField(
tag_text='OutgoingPasswordSameAsIncomingPassword',
verbose_name=_('Use incomming password as outgoing'),
null=True, blank=True,
help_text=_(
"OutgoingPasswordSameAsIncomingPassword, Boolean: Optional."
" If set, the user will be prompted for the password only"
" once and it will be used for both outgoing and incoming"
" mail."
)
)
# assign default value - original rule
outgoing_mail_server_authentication = AMCCharField(
tag_text='OutgoingMailServerAuthentication',
verbose_name=_('Outgoing mail authentication'),
choices=OUTGOING_MAIL_SERVER_AUTHENTICATION_CHOICES,
default='EmailAuthNone',
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"OutgoingMailServerAuthentication, String."
" Designates the authentication scheme for outgoing"
" mail. Allowed values are EmailAuthPassword,"
" EmailAuthCRAMMD5, EmailAuthNTLM, EmailAuthHTTPMD5, and"
" EmailAuthNone."
)
)
outgoing_mail_server_host_name = AMCCharField(
tag_text='OutgoingMailServerHostName',
verbose_name=_('Outgoing mail server'),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"OutgoingMailServerHostName, String."
"Designates the outgoing mail server host name (or IP"
" address)."
)
)
outgoing_mail_server_port_number = AMCIntegerField(
tag_text='OutgoingMailServerPortNumber',
verbose_name=_('Outgoing mail port'),
null=True, blank=True,
help_text=_(
"OutgoingMailServerPortNumber, Integer: Optional."
" Designates the outgoing mail server port number. If no"
" port number is specified, ports 25, 587 and 465 are"
" used, in this order."
)
)
outgoing_mail_server_use_ssl = AMCNullBooleanField(
tag_text='OutgoingMailServerUseSSL',
verbose_name=_('Use SSL on outgoing'),
null=True, blank=True,
help_text=_(
"OutgoingMailServerUseSSL, Boolean: Optional."
" Default false. Designates whether the outgoing mail"
" server uses SSL for authentication."
)
)
outgoing_mail_server_username = AMCCharField(
tag_text='OutgoingMailServerUsername',
verbose_name=_('Outgoing mail user name'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"OutgoingMailServerUsername, String."
" Designates the user name for the email account, usually"
" the same as the email address up to the @ character. If"
" not present in the payload, and the account is set up to"
" require authentication for outgoing email, the device"
" prompts for this string during profile installation."
)
)
prevent_move = AMCNullBooleanField(
tag_text='PreventMove',
verbose_name=_('Prevent move'),
null=True, blank=True,
help_text=_(
"PreventMove, Boolean: Optional. "
" Default false. If true, messages may not be moved out"
" of this email account into another account. Also"
" prevents forwarding or replying from a different account"
" than the message was originated from. Availability:"
" Available only in iOS 5.0 and later."
)
)
prevent_app_sheet = AMCNullBooleanField(
tag_text='PreventAppSheet',
verbose_name=_('Prevent app sheet'),
null=True, blank=True,
help_text=_(
"PreventAppSheet, Boolean: Optional."
" Default false. If true, this account is not available"
" for sending mail in any app other than the Apple Mail"
" app. Availability: Available only in iOS 5.0 and"
" later."
)
)
smime_enabled = AMCNullBooleanField(
tag_text='SMIMEEnabled',
verbose_name=_('S/MIME enable'),
null=True, blank=True,
help_text=_(
"SMIMEEnabled, Boolean: Optional."
" Default false. If true, this account supports S/MIME. As"
" of iOS 10.0, this key is ignored. Availability:"
" Available only in iOS 5.0 through iOS 9.3.3."
)
)
smime_signing_enabled = AMCNullBooleanField(
tag_text='SMIMESigningEnabled',
verbose_name=_('S/MIME sign enable'),
null=True, blank=True,
help_text=_(
"SMIMESigningEnabled, Boolean: Optional."
" Default true. If set to true, S/MIME signing is enabled"
" for this account. Availability: Available only in iOS"
" 10.3 and later."
)
)
# should use UUID?
smime_signing_certificate_uuid = AMCCharField(
tag_text='SMIMESigningCertificateUUID',
verbose_name=_('S/MIME sign certificate UUID'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"SMIMESigningCertificateUUID, String: Optional."
" The PayloadUUID of the identity certificate used to sign"
" messages sent from this account. Availability: Available"
" only in iOS 5.0 and later."
)
)
smime_encryption_enabled = AMCNullBooleanField(
tag_text='SMIMEEncryptionEnabled',
verbose_name=_('S/MIME encryption enabled'),
blank=True,
help_text=_(
"SMIMEEncryptionEnabled, Boolean: Optional."
" Default false. If set to true, S/MIME encryption is on"
" by default for this account. Availability: Available"
" only in iOS 10.3 and later."
)
)
# should use UUID?
smime_encryption_certificate_uuid = AMCCharField(
tag_text='SMIMEEncryptionCertificateUUID',
verbose_name=_('S/MIME encryption certificate UUID'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"SMIMEEncryptionCertificateUUID, String: Optional."
" The PayloadUUID of the identity certificate used to"
" decrypt messages sent to this account. The public"
" certificate is attached to outgoing mail to allow"
" encrypted mail to be sent to this user. When the user"
" sends encrypted mail, the public certificate is used to"
" encrypt the copy of the mail in their Sent"
" mailbox. Availability: Available only in iOS 5.0 and"
" later."
)
)
smime_enable_per_message_switch = AMCNullBooleanField(
tag_text='SMIMEEnablePerMessageSwitch',
verbose_name=_('S/MIME per message switch enable'),
null=True, blank=True,
help_text=_(
"SMIMEEnablePerMessageSwitch, Boolean: Optional."
" Default false. If set to true, displays the per-message"
" encryption switch in the Mail Compose UI. Availability:"
" Available only in iOS 8.0 and later."
)
)
# default is specified but required?
disable_mail_recents_syncing = AMCBooleanField(
tag_text='disableMailRecentsSyncing',
verbose_name=_('Disable recents address syncing'),
default=False,
help_text=_(
"disableMailRecentsSyncing, Boolean."
" If true, this account is excluded from address Recents"
" syncing. This defaults to false. Availability: Available"
" only in iOS 6.0 and later."
)
)
allow_mail_drop = AMCNullBooleanField(
tag_text='allowMailDrop',
verbose_name=_('Allow mail drop'),
null=True, blank=True,
help_text=_(
"allowMailDrop, Boolean: Optional."
" If true, this account is allowed to use Mail Drop. The"
" default is false. Availability: Available in iOS 9.2 and"
" later."
)
)
PAYLOAD_TYPES = {
'com.apple.mail.managed': EmailPayload,
}
| 34.437152 | 154 | 0.626215 | import socket, uuid
from django.db import models, transaction
from django.db.models import fields, signals
from django.dispatch import receiver
from django.utils.encoding import force_text
from django.utils.functional import Promise
from django.utils.translation import ugettext_lazy as _
class AMCFieldMixin(object):
char_field_max_length = 127
def __init__(self, *args, **kwargs):
self.tag_text = kwargs.pop('tag_text', None)
super(AMCFieldMixin, self).__init__(*args, **kwargs)
class AMCCharField(AMCFieldMixin, fields.CharField): pass
class AMCBooleanField(AMCFieldMixin, fields.BooleanField): pass
class AMCNullBooleanField(AMCFieldMixin, fields.NullBooleanField): pass
class AMCIntegerField(AMCFieldMixin, fields.IntegerField): pass
class AMCFloatField(AMCFieldMixin, fields.FloatField): pass
class AMCDateField(AMCFieldMixin, fields.DateField): pass
class AMCEmailField(AMCFieldMixin, fields.EmailField): pass
class AMCUUIDField(AMCFieldMixin, fields.UUIDField): pass
class SimplePayload(models.Model):
class Meta:
abstract = True
def _as_pldict(self):
d = {}
concrete_model = self._meta.concrete_model
for field in concrete_model._meta.local_fields:
if not field.serialize: continue
if not hasattr(field, 'tag_text') or field.tag_text is None:
continue
v = field.value_from_object(self)
if v is None or len(str(v)) < 1: continue
# dirty hack: plistlib.dump() will cause
# TypeError: unsupported type: <class 'uuid.UUID'>
if isinstance(v, uuid.UUID): v = str(v).upper()
if isinstance(v, Promise): v = force_text(v)
d[field.tag_text] = v
return d
def _from_pldict(self, pld):
concrete_model = self._meta.concrete_model
for (k, v) in pld.items():
if v is None: continue
# XXX: linear search
for field in concrete_model._meta.local_fields:
if not field.serialize: continue
if field.tag_text == k:
setattr(self, field.name, field.to_python(v))
break
pldict = property(_as_pldict, _from_pldict)
# based on 2017-11-28
# https://developer.apple.com/library/content/featuredarticles/iPhoneConfigurationProfileRef/Introduction/Introduction.html#//apple_ref/doc/uid/TP40010206
"""Assign default value which has choice"""
class Configuration(SimplePayload):
"""Configuration Profile Keys
At the top level, a profile property list contains the following
keys:
"""
class Meta:
verbose_name = _('Configuration Profile')
def __init__(self, *args, **kwargs):
super(Configuration, self).__init__(*args, **kwargs)
self._payload_contents = []
def add_payload(self, payload):
"""add PayloadContent
Array: Optional
Array of payload dictionaries. Not present if IsEncrypted is true.
This method is introduced for profile which is not persistent.
"""
robjs = [c for c in Configuration._meta.related_objects
if c.one_to_many]
found = False
for robj in robjs:
if payload.__class__ == robj.related_model:
found = True
break
if not found:
raise ValueError('not exist in related_objects')
# more better way?
s = getattr(self, robj.get_accessor_name())
if s.filter(payload_identifier=payload.payload_identifier) \
or any([payload.payload_identifier == p.payload_identifier
for p in self._payload_contents]):
raise ValueError('duplicate PayloadIdentifier')
self._payload_contents.append(payload)
return self
def save(self, *args, **kwargs):
"""persist object
if boolean arg ``with_payloads`` is true, payloads added by
``add_payload`` will be also saved.
"""
with_payloads = kwargs.pop('with_payloads', False)
super(Configuration, self).save(*args, **kwargs)
if not with_payloads: return
with transaction.atomic():
for payload in self._payload_contents:
payload.configuration = self
payload.save(*args, **kwargs)
self._payload_contents = []
def _as_pldict(self):
pld = super(Configuration, self)._as_pldict()
[self._payload_contents.append(c)
for robj in Configuration._meta.related_objects
if robj.one_to_many
for c in getattr(self, robj.get_accessor_name()).iterator()]
if len(self._payload_contents) < 1:
return pld
pld['PayloadContent'] = [c._as_pldict() for c in self._payload_contents]
return pld
def _from_pldict(self, pld):
super(Configuration, self)._from_pldict(pld)
if not 'PayloadContent' in pld: return
for content in pld['PayloadContent']:
payload = PAYLOAD_TYPES[content['PayloadType']]()
payload._from_pldict(content)
self._payload_contents.append(payload)
return self
pldict = property(_as_pldict, _from_pldict)
payload_description = AMCCharField(
tag_text='PayloadDescription',
verbose_name=_('Description'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadDescription, String: Optional."
" A description of the profile, shown on the Detail"
" screen for the profile. This should be descriptive"
" enough to help the user decide whether to install the"
" profile."
)
)
payload_display_name = AMCCharField(
tag_text='PayloadDisplayName',
verbose_name=_('Display name'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadDisplayName, String: Optional."
" A human-readable name for the profile. This value is"
" displayed on the Detail screen. It does not have to be"
" unique."
)
)
payload_expiration_date = AMCDateField(
tag_text='PayloadExpirationDate',
verbose_name=_('Expiration date'),
null=True, blank=True,
help_text=_(
"PayloadExpirationDate, Date: Optional."
" A date on which a profile is considered to have"
" expired and can be" " updated over the air. This key is"
" only used if the profile is" " delivered via"
" over-the-air profile delivery."
)
)
# assign default value - original rule
payload_identifier = AMCCharField(
tag_text='PayloadIdentifier',
verbose_name=_('Identifier'),
default='.'.join(reversed(socket.getfqdn().split('.'))),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadIdentifier, String."
" A reverse-DNS style identifier"
" (com.example.myprofile, for example) that identifies"
" the profile. This string is used to determine whether"
" a new profile should replace an existing one or"
" should be added."
)
)
payload_organization = AMCCharField(
tag_text='PayloadOrganization',
verbose_name=_('Organization'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadOrganization, String: Optional"
" A human-readable string containing the name of the"
" organization that provided the profile."
)
)
payload_uuid = AMCUUIDField(
tag_text='PayloadUUID',
verbose_name=_('UUID'),
default=uuid.uuid4(),
editable=False,
help_text=_(
"PayloadUUID, String."
" A globally unique identifier for the profile. The"
" actual content is unimportant, but it must be globally"
" unique. In macOS, you can use uuidgen to generate"
" reasonable UUIDs."
)
)
payload_removal_disallowed = AMCNullBooleanField(
tag_text='PayloadRemovalDisallowed',
verbose_name=_('Removal disallowed'),
null=True, blank=True,
help_text=_(
"PayloadRemovalDisallowed, Boolean: Optional."
" Supervised only. If present and set to true, the user"
" cannot delete the profile (unless the profile has a"
" removal password and the user provides it)."
)
)
payload_type = AMCCharField(
tag_text='PayloadType',
verbose_name=_('Type'),
default='Configuration',
editable=False,
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadType, String."
" The only supported value is Configuration."
)
)
payload_version = AMCIntegerField(
tag_text='PayloadVersion',
verbose_name=_('Version'),
default=1,
editable=False,
help_text=_(
"PayloadVersion, Integer."
" The version number of the profile format. This describes"
" the version of the configuration profile as a whole, not"
" of the individual profiles within it. Currently, this"
" value should be 1."
)
)
payload_scope = AMCCharField(
tag_text='PayloadScope',
verbose_name=_('Scope'),
choices=(('User', 'User'), ('System', 'System')),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadScope, String: Optional"
" Determines if the profile should be installed for the"
" system or the user. In many cases, it determines the"
" location of the certificate items, such as"
" keychains. Though it is not possible to declare"
" different payload scopes, payloads, like VPN, may"
" automatically install their items in both scopes if"
" needed. Legal values are System and User, with User as"
" the default value. Availability: Available in macOS"
" 10.7 and later."
)
)
removal_date = AMCDateField(
tag_text='RemovalDate',
verbose_name=_('Removal date'),
null=True, blank=True,
help_text=_(
"RemovalDate, Date: Optional. "
" The date on which the profile will be automatically"
" removed."
)
)
duration_until_removal = AMCFloatField(
tag_text='DurationUntilRemoval',
verbose_name=_('Duration until removal'),
null=True, blank=True,
help_text=_(
"DurationUntilRemoval, Float: Optional."
" Number of seconds until the profile is automatically"
" removed. If the RemovalDate keys is present, whichever"
" field yields the earliest date will be used."
)
)
# ConsentText
# Dictionary: Optional
# A dictionary containing these keys and values: For each
# language in which a consent or license agreement is available,
# a key consisting of the IETF BCP 47 identifier for that
# language (for example, en or jp) and a value consisting of the
# agreement localized to that language. The agreement is
# displayed in a dialog to which the user must agree before
# installing the profile. The optional key default with its
# value consisting of the unlocalized agreement (usually in
# en). The system chooses a localized version in the order of
# preference specified by the user (macOS) or based on the
# user’s current language setting (iOS). If no exact match is
# found, the default localization is used. If there is no
# default localization, the en localization is used. If there is
# no en localization, then the first available localization is
# used. You should provide a default value if possible. No
# warning will be displayed if the user’s locale does not match
# any localization in the ConsentText dictionary.
class CommonPayload(SimplePayload):
"""Common part of each payload. i.e. Payload base class.
If a PayloadContent value is provided in a payload, each entry in the
array is a dictionary representing a configuration payload. The following
keys are common to all payloads:
"""
class Meta:
abstract = True
configuration = models.ForeignKey(
Configuration,
blank=True, null=True,
on_delete=models.CASCADE)
payload_type = AMCCharField(
tag_text='PayloadType',
verbose_name=_('Type'),
default = _('Unconfigured type'),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadType, String."
" The payload type. The payload types are described in"
" Payload-Specific Property Keys."
)
)
payload_version = AMCIntegerField(
tag_text='PayloadVersion',
verbose_name=_('Version'),
default=-1,
help_text=_(
"PayloadVersion, Integer."
" The version number of the individual payload. A profile"
" can consist of payloads with different version"
" numbers. For example, changes to the VPN software in iOS"
" might introduce a new payload version to support"
" additional features, but Mail payload versions would not"
" necessarily change in the same release."
)
)
# assign default value - original rule
payload_identifier = AMCCharField(
tag_text='PayloadIdentifier',
verbose_name=_('Identifier'),
default='.'.join(reversed(socket.getfqdn().split('.'))),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadIdentifier, String."
" A reverse-DNS-style identifier for the specific"
" payload. It is usually the same identifier as the"
" root-level PayloadIdentifier value with an additional"
" component appended."
)
)
payload_uuid = AMCUUIDField(
tag_text='PayloadUUID',
verbose_name=_('UUID'),
default=uuid.uuid4(),
editable=False,
help_text=_(
"PayloadUUID, String."
" A globally unique identifier for the payload. The actual"
" content is unimportant, but it must be globally"
" unique. In macOS, you can use uuidgen to generate"
" reasonable UUIDs."
)
)
# assign default value - original rule
payload_display_name = AMCCharField( # not nullable? differ from Configuration
tag_text='PayloadDisplayName',
verbose_name=_('Display name'),
default = _('Unconfigured display name'),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"PayloadDisplayName, String."
" A human-readable name for the profile payload. This name"
" is displayed on the Detail screen. It does not have to"
" be unique."
)
)
payload_description = AMCCharField(
tag_text='PayloadDescription',
verbose_name=_('Description'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadDescription, String: Optional."
" A human-readable description of this payload. This"
" description is shown on the Detail screen."
)
)
payload_organization = AMCCharField(
tag_text='PayloadOrganization',
verbose_name=_('Organization'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"PayloadOrganization, String: Optional."
" A human-readable string containing the name of the"
" organization that provided the profile. The payload"
" organization for a payload need not match the payload"
" organization in the enclosing profile."
)
)
class EmailPayload(CommonPayload):
"""Email payload
An email payload creates an email account on the device. In addition to
the settings common to all payloads, this payload defines the following
keys:
"""
class Meta:
verbose_name = _('Email Payload')
EMAIL_ACCOUNT_TYPE_CHOICES = (
('EmailTypePOP', 'POP'),
('EmailTypeIMAP', 'IMAP'),
)
INCOMMING_MAIL_SERVER_AUTHENTICATION_CHOICES = (
('EmailAuthPassword', 'Password'),
('EmailAuthCRAMMD5', 'CRAM MD5'),
('EmailAuthNTLM', 'NTLM'),
('EmailAuthHTTPMD5', 'HTTP MD5'),
)
OUTGOING_MAIL_SERVER_AUTHENTICATION_CHOICES = (
('EmailAuthPassword', 'Password'),
('EmailAuthCRAMMD5', 'CRAM MD5'),
('EmailAuthNTLM', 'NTLM'),
('EmailAuthHTTPMD5', 'HTTP MD5'),
('EmailAuthNone', 'None'),
)
def __init__(self, *args, **kwargs):
meta = self._meta
meta.get_field('payload_type').default = 'com.apple.mail.managed'
meta.get_field('payload_type').editale = False
meta.get_field('payload_version').default = 1
meta.get_field('payload_version').editable = False
super(EmailPayload, self).__init__(*args, **kwargs)
email_account_description = AMCCharField(
tag_text='EmailAccountDescription',
verbose_name=_('Email account description'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"EmailAccountDescription, String: Optional."
" A user-visible description of the email account, shown"
" in the Mail and Settings applications."
)
)
email_account_name = AMCCharField(
tag_text='EmailAccountName',
verbose_name=_('Email account name'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"EmailAccountName, String: Optional."
" The full user name for the account. This is the user"
" name in sent messages, etc."
)
)
# assign default value - original rule
email_account_type = AMCCharField(
tag_text='EmailAccountType',
verbose_name=_('Email account type'),
choices=EMAIL_ACCOUNT_TYPE_CHOICES,
default='EmailTypeIMAP',
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"EmailAccountType, String."
" Allowed values are EmailTypePOP and"
" EmailTypeIMAP. Defines the protocol to be used for that"
" account."
)
)
email_address = AMCEmailField(
tag_text='EmailAddress',
verbose_name=_('Email address'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"EmailAddress, String."
" Designates the full email address for the account. If"
" not present in the payload, the device prompts for this"
" string during profile installation."
)
)
# assign default value - original rule
incoming_mail_server_authentication = AMCCharField(
tag_text='IncomingMailServerAuthentication',
verbose_name=_('Incoming mail authentication'),
choices=INCOMMING_MAIL_SERVER_AUTHENTICATION_CHOICES,
default='EmailAuthPassword', # selfish
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"IncomingMailServerAuthentication, String."
" Designates the authentication scheme for incoming"
" mail. Allowed values are EmailAuthPassword,"
" EmailAuthCRAMMD5, EmailAuthNTLM, EmailAuthHTTPMD5, and"
" EmailAuthNone."
)
)
incoming_mail_server_host_name = AMCCharField(
tag_text='IncomingMailServerHostName',
max_length=AMCFieldMixin.char_field_max_length,
verbose_name=_('Incoming mail server'),
help_text=_(
"IncomingMailServerHostName, String."
" Designates the incoming mail server host name (or IP"
" address)."
)
)
incoming_mail_server_port_number = AMCIntegerField(
tag_text='IncomingMailServerPortNumber',
verbose_name=_('Incoming mail port'),
null=True, blank=True,
help_text=_(
"IncomingMailServerPortNumber, Integer: Optional."
" Designates the incoming mail server port number. If no"
" port number is specified, the default port for a given"
" protocol is used."
)
)
incoming_mail_server_use_ssl = AMCNullBooleanField(
tag_text='IncomingMailServerUseSSL',
verbose_name=_('Incoming SSL'),
null=True, blank=True,
help_text=_(
"IncomingMailServerUseSSL, Boolean: Optional."
" Default false. Designates whether the incoming mail"
" server uses SSL for authentication."
)
)
incoming_mail_server_username = AMCCharField(
tag_text='IncomingMailServerUsername',
verbose_name=_('Incoming user name'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"IncomingMailServerUsername, String."
" Designates the user name for the email account, usually"
" the same as the email address up to the @ character. If"
" not presentin the payload, and the account is set up to"
" require authentication for incoming email, the device"
" will prompt for this string during profile"
" installation."
)
)
incoming_password = AMCCharField(
tag_text='IncomingPassword',
verbose_name=_('Incoming password'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"IncomingPassword, String: Optional."
" Password for the Incoming Mail Server. Use only with"
" encrypted profiles."
)
)
outgoing_password = AMCCharField(
tag_text='OutgoingPassword',
verbose_name=_('Outgoing password'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"OutgoingPassword,String: Optional."
" Password for the Outgoing Mail Server. Use only with"
" encrypted profiles."
)
)
outgoing_password_same_as_incoming_password = AMCNullBooleanField(
tag_text='OutgoingPasswordSameAsIncomingPassword',
verbose_name=_('Use incomming password as outgoing'),
null=True, blank=True,
help_text=_(
"OutgoingPasswordSameAsIncomingPassword, Boolean: Optional."
" If set, the user will be prompted for the password only"
" once and it will be used for both outgoing and incoming"
" mail."
)
)
# assign default value - original rule
outgoing_mail_server_authentication = AMCCharField(
tag_text='OutgoingMailServerAuthentication',
verbose_name=_('Outgoing mail authentication'),
choices=OUTGOING_MAIL_SERVER_AUTHENTICATION_CHOICES,
default='EmailAuthNone',
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"OutgoingMailServerAuthentication, String."
" Designates the authentication scheme for outgoing"
" mail. Allowed values are EmailAuthPassword,"
" EmailAuthCRAMMD5, EmailAuthNTLM, EmailAuthHTTPMD5, and"
" EmailAuthNone."
)
)
outgoing_mail_server_host_name = AMCCharField(
tag_text='OutgoingMailServerHostName',
verbose_name=_('Outgoing mail server'),
max_length=AMCFieldMixin.char_field_max_length,
help_text=_(
"OutgoingMailServerHostName, String."
"Designates the outgoing mail server host name (or IP"
" address)."
)
)
outgoing_mail_server_port_number = AMCIntegerField(
tag_text='OutgoingMailServerPortNumber',
verbose_name=_('Outgoing mail port'),
null=True, blank=True,
help_text=_(
"OutgoingMailServerPortNumber, Integer: Optional."
" Designates the outgoing mail server port number. If no"
" port number is specified, ports 25, 587 and 465 are"
" used, in this order."
)
)
outgoing_mail_server_use_ssl = AMCNullBooleanField(
tag_text='OutgoingMailServerUseSSL',
verbose_name=_('Use SSL on outgoing'),
null=True, blank=True,
help_text=_(
"OutgoingMailServerUseSSL, Boolean: Optional."
" Default false. Designates whether the outgoing mail"
" server uses SSL for authentication."
)
)
outgoing_mail_server_username = AMCCharField(
tag_text='OutgoingMailServerUsername',
verbose_name=_('Outgoing mail user name'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"OutgoingMailServerUsername, String."
" Designates the user name for the email account, usually"
" the same as the email address up to the @ character. If"
" not present in the payload, and the account is set up to"
" require authentication for outgoing email, the device"
" prompts for this string during profile installation."
)
)
prevent_move = AMCNullBooleanField(
tag_text='PreventMove',
verbose_name=_('Prevent move'),
null=True, blank=True,
help_text=_(
"PreventMove, Boolean: Optional. "
" Default false. If true, messages may not be moved out"
" of this email account into another account. Also"
" prevents forwarding or replying from a different account"
" than the message was originated from. Availability:"
" Available only in iOS 5.0 and later."
)
)
prevent_app_sheet = AMCNullBooleanField(
tag_text='PreventAppSheet',
verbose_name=_('Prevent app sheet'),
null=True, blank=True,
help_text=_(
"PreventAppSheet, Boolean: Optional."
" Default false. If true, this account is not available"
" for sending mail in any app other than the Apple Mail"
" app. Availability: Available only in iOS 5.0 and"
" later."
)
)
smime_enabled = AMCNullBooleanField(
tag_text='SMIMEEnabled',
verbose_name=_('S/MIME enable'),
null=True, blank=True,
help_text=_(
"SMIMEEnabled, Boolean: Optional."
" Default false. If true, this account supports S/MIME. As"
" of iOS 10.0, this key is ignored. Availability:"
" Available only in iOS 5.0 through iOS 9.3.3."
)
)
smime_signing_enabled = AMCNullBooleanField(
tag_text='SMIMESigningEnabled',
verbose_name=_('S/MIME sign enable'),
null=True, blank=True,
help_text=_(
"SMIMESigningEnabled, Boolean: Optional."
" Default true. If set to true, S/MIME signing is enabled"
" for this account. Availability: Available only in iOS"
" 10.3 and later."
)
)
# should use UUID?
smime_signing_certificate_uuid = AMCCharField(
tag_text='SMIMESigningCertificateUUID',
verbose_name=_('S/MIME sign certificate UUID'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"SMIMESigningCertificateUUID, String: Optional."
" The PayloadUUID of the identity certificate used to sign"
" messages sent from this account. Availability: Available"
" only in iOS 5.0 and later."
)
)
smime_encryption_enabled = AMCNullBooleanField(
tag_text='SMIMEEncryptionEnabled',
verbose_name=_('S/MIME encryption enabled'),
blank=True,
help_text=_(
"SMIMEEncryptionEnabled, Boolean: Optional."
" Default false. If set to true, S/MIME encryption is on"
" by default for this account. Availability: Available"
" only in iOS 10.3 and later."
)
)
# should use UUID?
smime_encryption_certificate_uuid = AMCCharField(
tag_text='SMIMEEncryptionCertificateUUID',
verbose_name=_('S/MIME encryption certificate UUID'),
max_length=AMCFieldMixin.char_field_max_length,
blank=True,
help_text=_(
"SMIMEEncryptionCertificateUUID, String: Optional."
" The PayloadUUID of the identity certificate used to"
" decrypt messages sent to this account. The public"
" certificate is attached to outgoing mail to allow"
" encrypted mail to be sent to this user. When the user"
" sends encrypted mail, the public certificate is used to"
" encrypt the copy of the mail in their Sent"
" mailbox. Availability: Available only in iOS 5.0 and"
" later."
)
)
smime_enable_per_message_switch = AMCNullBooleanField(
tag_text='SMIMEEnablePerMessageSwitch',
verbose_name=_('S/MIME per message switch enable'),
null=True, blank=True,
help_text=_(
"SMIMEEnablePerMessageSwitch, Boolean: Optional."
" Default false. If set to true, displays the per-message"
" encryption switch in the Mail Compose UI. Availability:"
" Available only in iOS 8.0 and later."
)
)
# default is specified but required?
disable_mail_recents_syncing = AMCBooleanField(
tag_text='disableMailRecentsSyncing',
verbose_name=_('Disable recents address syncing'),
default=False,
help_text=_(
"disableMailRecentsSyncing, Boolean."
" If true, this account is excluded from address Recents"
" syncing. This defaults to false. Availability: Available"
" only in iOS 6.0 and later."
)
)
allow_mail_drop = AMCNullBooleanField(
tag_text='allowMailDrop',
verbose_name=_('Allow mail drop'),
null=True, blank=True,
help_text=_(
"allowMailDrop, Boolean: Optional."
" If true, this account is allowed to use Mail Drop. The"
" default is false. Availability: Available in iOS 9.2 and"
" later."
)
)
PAYLOAD_TYPES = {
'com.apple.mail.managed': EmailPayload,
}
| 2,390 | 630 | 411 |
633f15c74a9cd7f71da97d6441b0df5d693a2420 | 1,066 | py | Python | tests/test_move_drift_to_zero.py | imodpasteur/Brightfield-Drift-Correction-3D | d01dfa272a4e8326d4ac39a0f58bdd9190998836 | [
"MIT"
] | 5 | 2018-10-16T13:29:06.000Z | 2019-12-17T16:41:57.000Z | tests/test_move_drift_to_zero.py | imodpasteur/Brightfield_Drift_Tracking_3D | d01dfa272a4e8326d4ac39a0f58bdd9190998836 | [
"MIT"
] | 2 | 2018-11-09T16:28:55.000Z | 2019-02-19T15:22:03.000Z | tests/test_move_drift_to_zero.py | imodpasteur/Brightfield_Drift_Tracking_3D | d01dfa272a4e8326d4ac39a0f58bdd9190998836 | [
"MIT"
] | null | null | null | from unittest import TestCase
import numpy as np
from bfdc.drift import move_drift_to_zero
| 32.30303 | 56 | 0.641651 | from unittest import TestCase
import numpy as np
from bfdc.drift import move_drift_to_zero
class TestMove_drift_to_zero(TestCase):
def test_move_drift_to_zero(self):
table = np.ones((20,4))
table[:,0] = np.arange(20)
expected = table.copy()
expected[:,1:] = 0
result = move_drift_to_zero(table)
self.assertTrue(np.array_equiv(result,expected))
def test_move_drift_to_zero1(self):
table = np.ones((20,4))
table[:,0] = np.arange(1,21)
expected = table.copy()
expected[:,1:] = 0
result = move_drift_to_zero(table)
self.assertTrue(np.array_equiv(result,expected))
def test_move_drift_to_zero_wrong_shape(self):
table = np.ones((20, 5))
table[:, 0] = np.arange(1, 21)
with self.assertRaises(AssertionError):
result = move_drift_to_zero(table)
def test_move_drift_to_zero_wrong_shape1(self):
table = np.ones((0, 5))
with self.assertRaises(AssertionError):
result = move_drift_to_zero(table)
| 826 | 18 | 130 |
716fe86d34c53ffc1782049d4adcf7949d73b419 | 5,083 | py | Python | tests/test_responsetypes.py | atharwa-24/scrapy | 96b22046e1f68243ca380ece7daa0d65aa501697 | [
"BSD-3-Clause"
] | null | null | null | tests/test_responsetypes.py | atharwa-24/scrapy | 96b22046e1f68243ca380ece7daa0d65aa501697 | [
"BSD-3-Clause"
] | null | null | null | tests/test_responsetypes.py | atharwa-24/scrapy | 96b22046e1f68243ca380ece7daa0d65aa501697 | [
"BSD-3-Clause"
] | null | null | null | import unittest
from scrapy.http import Headers
from scrapy.http import HtmlResponse
from scrapy.http import Response
from scrapy.http import TextResponse
from scrapy.http import XmlResponse
from scrapy.responsetypes import responsetypes
if __name__ == "__main__":
unittest.main()
| 37.375 | 84 | 0.516821 | import unittest
from scrapy.http import Headers
from scrapy.http import HtmlResponse
from scrapy.http import Response
from scrapy.http import TextResponse
from scrapy.http import XmlResponse
from scrapy.responsetypes import responsetypes
class ResponseTypesTest(unittest.TestCase):
def test_from_filename(self):
mappings = [
("data.bin", Response),
("file.txt", TextResponse),
("file.xml.gz", Response),
("file.xml", XmlResponse),
("file.html", HtmlResponse),
("file.unknownext", Response),
]
for source, cls in mappings:
retcls = responsetypes.from_filename(source)
assert retcls is cls, "%s ==> %s != %s" % (source, retcls, cls)
def test_from_content_disposition(self):
mappings = [
(b'attachment; filename="data.xml"', XmlResponse),
(b"attachment; filename=data.xml", XmlResponse),
("attachment;filename=data£.tar.gz".encode("utf-8"), Response),
("attachment;filename=dataµ.tar.gz".encode("latin-1"), Response),
("attachment;filename=data高.doc".encode("gbk"), Response),
("attachment;filename=دورهdata.html".encode("cp720"),
HtmlResponse),
("attachment;filename=日本語版Wikipedia.xml".encode("iso2022_jp"),
XmlResponse),
]
for source, cls in mappings:
retcls = responsetypes.from_content_disposition(source)
assert retcls is cls, "%s ==> %s != %s" % (source, retcls, cls)
def test_from_content_type(self):
mappings = [
("text/html; charset=UTF-8", HtmlResponse),
("text/xml; charset=UTF-8", XmlResponse),
("application/xhtml+xml; charset=UTF-8", HtmlResponse),
("application/vnd.wap.xhtml+xml; charset=utf-8", HtmlResponse),
("application/xml; charset=UTF-8", XmlResponse),
("application/octet-stream", Response),
("application/x-json; encoding=UTF8;charset=UTF-8", TextResponse),
("application/json-amazonui-streaming;charset=UTF-8",
TextResponse),
]
for source, cls in mappings:
retcls = responsetypes.from_content_type(source)
assert retcls is cls, "%s ==> %s != %s" % (source, retcls, cls)
def test_from_body(self):
mappings = [
(b"\x03\x02\xdf\xdd\x23", Response),
(b"Some plain text\ndata with tabs\t and null bytes\0",
TextResponse),
(b"<html><head><title>Hello</title></head>", HtmlResponse),
(b'<?xml version="1.0" encoding="utf-8"', XmlResponse),
]
for source, cls in mappings:
retcls = responsetypes.from_body(source)
assert retcls is cls, "%s ==> %s != %s" % (source, retcls, cls)
def test_from_headers(self):
mappings = [
({
"Content-Type": ["text/html; charset=utf-8"]
}, HtmlResponse),
(
{
"Content-Type": ["text/html; charset=utf-8"],
"Content-Encoding": ["gzip"],
},
Response,
),
(
{
"Content-Type": ["application/octet-stream"],
"Content-Disposition": ["attachment; filename=data.txt"],
},
TextResponse,
),
]
for source, cls in mappings:
source = Headers(source)
retcls = responsetypes.from_headers(source)
assert retcls is cls, "%s ==> %s != %s" % (source, retcls, cls)
def test_from_args(self):
# TODO: add more tests that check precedence between the different arguments
mappings = [
({
"url": "http://www.example.com/data.csv"
}, TextResponse),
# headers takes precedence over url
(
{
"headers":
Headers({"Content-Type": ["text/html; charset=utf-8"]}),
"url":
"http://www.example.com/item/",
},
HtmlResponse,
),
(
{
"headers":
Headers({
"Content-Disposition":
['attachment; filename="data.xml.gz"']
}),
"url":
"http://www.example.com/page/",
},
Response,
),
]
for source, cls in mappings:
retcls = responsetypes.from_args(**source)
assert retcls is cls, "%s ==> %s != %s" % (source, retcls, cls)
def test_custom_mime_types_loaded(self):
# check that mime.types files shipped with scrapy are loaded
self.assertEqual(
responsetypes.mimetypes.guess_type("x.scrapytest")[0],
"x-scrapy/test")
if __name__ == "__main__":
unittest.main()
| 4,577 | 22 | 211 |
dc73fabe1a81b9eaaa8f45f1ec439f200a87964e | 53,706 | py | Python | aiida_yambo_wannier90/workflows/__init__.py | epfl-theos/aiida-yambo-wannier90 | dabfa402e779e9fc797dda15ec748b0c6c25d647 | [
"MIT"
] | null | null | null | aiida_yambo_wannier90/workflows/__init__.py | epfl-theos/aiida-yambo-wannier90 | dabfa402e779e9fc797dda15ec748b0c6c25d647 | [
"MIT"
] | 2 | 2022-02-21T14:59:22.000Z | 2022-02-21T15:57:49.000Z | aiida_yambo_wannier90/workflows/__init__.py | epfl-theos/aiida-yambo-wannier90 | dabfa402e779e9fc797dda15ec748b0c6c25d647 | [
"MIT"
] | null | null | null | #!/usr/bin/env python
"""Base class for Yambo+Wannier90 workflow."""
from email.charset import QP
import pathlib
import typing as ty
import numpy as np
from aiida import orm
from aiida.common import AttributeDict
from aiida.common.lang import type_check
from aiida.engine import ExitCode, ProcessBuilder, ToContext, WorkChain, if_
from aiida_quantumespresso.calculations.functions.seekpath_structure_analysis import (
seekpath_structure_analysis,
)
from aiida_quantumespresso.common.types import ElectronicType, SpinType
from aiida_quantumespresso.utils.mapping import prepare_process_inputs
from aiida_quantumespresso.workflows.protocols.utils import ProtocolMixin
from aiida_wannier90_workflows.common.types import (
WannierDisentanglementType,
WannierFrozenType,
WannierProjectionType,
)
from aiida_wannier90_workflows.utils.kpoints import (
get_explicit_kpoints,
get_mesh_from_kpoints,
)
from aiida_wannier90_workflows.utils.workflows.builder import set_kpoints
from aiida_wannier90_workflows.workflows import (
Wannier90BandsWorkChain,
Wannier90BaseWorkChain,
Wannier90OptimizeWorkChain,
)
from aiida_yambo.workflows.yamboconvergence import YamboConvergence
from aiida_yambo.workflows.yamborestart import YamboRestart
from aiida_yambo.workflows.yambowf import YamboWorkflow
from aiida_yambo.workflows.ypprestart import YppRestart
from aiida_yambo_wannier90.calculations.functions.kmesh import (
find_commensurate_meshes,
get_output_explicit_kpoints,
is_commensurate,
kmapper,
)
from aiida_yambo_wannier90.calculations.gw2wannier90 import Gw2wannier90Calculation
from aiida_yambo_wannier90.common.types import Gw2wannier90SortMode
from aiida_yambo_wannier90.utils.workflows import (
get_yambo_converged_workchain,
get_yambo_nscf,
)
__all__ = ["validate_inputs", "YamboWannier90WorkChain"]
# pylint: disable=too-many-lines
# pylint: disable=fixme
# TODO remove this todo disable
def validate_inputs( # pylint: disable=inconsistent-return-statements,too-many-return-statements,too-many-branches,too-many-locals
inputs: dict, ctx=None # pylint: disable=unused-argument
) -> ty.Union[None, str]:
"""Validate the inputs of the entire input namespace."""
# Must run steps sequentially
order = ["yambo", "yambo_qp", "ypp", "wannier90", "gw2wannier90", "wannier90_qp"]
non_empty = [_ in inputs for _ in order]
first_input = non_empty.index(True)
if not all(non_empty[first_input:]):
first_no_input = first_input + non_empty[first_input:].index(False)
return (
f"WorkChain must be run in order, `{order[first_input]}` is provided "
f"but `{order[first_no_input]}` is empty."
)
# Check inputs if previous steps are skipped
should_run_yambo = "yambo" in inputs
should_run_yambo_commensurate = "GW_mesh" in inputs
should_run_wannier90 = "wannier90" in inputs
should_run_yambo_qp = "yambo_qp" in inputs
should_run_ypp = "ypp" in inputs
should_run_gw2wannier90 = "gw2wannier90" in inputs
should_run_wannier90_qp = "wannier90_qp" in inputs
if should_run_yambo_qp:
yambo_qp_inputs = inputs["yambo_qp"]
if not should_run_yambo:
if "parent_folder" not in yambo_qp_inputs and not should_run_yambo_commensurate:
return "`yambo_qp.parent_folder` is empty."
if should_run_ypp:
ypp_inputs = inputs["ypp"]
if not should_run_yambo_qp:
if "QP_DB" not in ypp_inputs["ypp"]:
return "`ypp.ypp.QP_DB` is empty."
if "parent_folder" not in ypp_inputs:
return "`ypp.parent_folder` is empty."
# I need `wannier90` input to run a w90 postproc before `ypp`,
# or if there is `nnkp`, I skip the postproc.
if not should_run_wannier90:
if "nnkp_file" not in ypp_inputs["ypp"]:
return "`ypp.ypp.nnkp_file` is empty."
if should_run_gw2wannier90:
gw2wannier90_inputs = inputs["gw2wannier90"]
if not should_run_wannier90:
for tag in ["nnkp", "parent_folder"]:
if tag not in gw2wannier90_inputs:
return f"`gw2wannier90.{tag}` is empty."
if not should_run_ypp:
if "unsorted_eig" not in gw2wannier90_inputs:
return "`gw2wannier90.unsorted_eig` is empty."
if should_run_wannier90_qp:
wannier90_qp_inputs = inputs["wannier90_qp"]
if not should_run_gw2wannier90:
if "remote_input_folder" not in wannier90_qp_inputs["wannier90"]:
return "`wannier90_qp.wannier90.remote_input_folder` is empty."
class YamboWannier90WorkChain(
ProtocolMixin, WorkChain
): # pylint: disable=too-many-public-methods
"""Workchain to obtain GW-corrected maximally localised Wannier functions (MLWF)."""
@classmethod
def define(cls, spec):
"""Define the process spec."""
from aiida_wannier90_workflows.workflows.base.wannier90 import (
validate_inputs_base as validate_inputs_base_wannier90,
)
super().define(spec)
spec.input(
"structure", valid_type=orm.StructureData, help="The input structure."
)
spec.input(
"clean_workdir",
valid_type=orm.Bool,
serializer=orm.to_aiida_type,
default=lambda: orm.Bool(False),
help=(
"If True, work directories of all called calculation will be cleaned "
"at the end of execution."
),
)
spec.input(
"bands_kpoints",
valid_type=orm.KpointsData,
required=False,
help=(
"Explicit kpoints to use for the band structure. "
"If not specified, the workchain will run seekpath to generate "
"a primitive cell and a bands_kpoints. Specify either this or `bands_kpoints_distance`."
),
)
spec.input(
"bands_kpoints_distance",
valid_type=orm.Float,
serializer=orm.to_aiida_type,
required=False,
help="Minimum kpoints distance for seekpath to generate a list of kpoints along the path. "
"Specify either this or `bands_kpoints`.",
)
spec.input(
"kpoints_force_gw",
valid_type=orm.Bool,
serializer=orm.to_aiida_type,
default=lambda: orm.Bool(False),
help="If `True` will force W90 to use the GW converged k-point mesh.",
)
spec.input(
"GW_mesh",
valid_type=orm.KpointsData,
serializer=orm.to_aiida_type,
required=False,
help="GW mesh. This allow to start from yambo commensurate, skipping gw convergence",
)
spec.expose_inputs(
YamboConvergence,
namespace="yambo",
exclude=(
"clean_workdir",
"ywfl.scf.pw.structure",
"ywfl.nscf.pw.structure",
),
namespace_options={
"help": "Inputs for the `YamboConvergence` for yambo calculation.",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
YamboWorkflow,
namespace="yambo_qp",
exclude=(
"clean_workdir",
"scf.pw.structure",
"nscf.pw.structure",
),
namespace_options={
"help": (
"Inputs for the `YamboConvergence` for yambo QP calculation. "
"If not provided, it will be generated based on the previous converged inputs."
),
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
YppRestart,
namespace="ypp",
exclude=("clean_workdir",),
namespace_options={
"help": "Inputs for the `YppRestart` calculation, to be used for unsorted.eig generation. ",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
YppRestart,
namespace="ypp_QP",
exclude=("clean_workdir",),
namespace_options={
"help": "Inputs for the `YppRestart` calculation, to be used for merging QP dbs. ",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
Wannier90OptimizeWorkChain,
namespace="wannier90",
exclude=(
"clean_workdir",
"structure",
"kpoint_path",
"bands_kpoints",
"bands_kpoints_distance",
),
namespace_options={
"help": "Inputs for the `Wannier90OptimizeWorkChain` for wannier90 calculation.",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
Gw2wannier90Calculation,
namespace="gw2wannier90",
exclude=("clean_workdir",),
namespace_options={
"help": "Inputs for the `Gw2wannier90Calculation`. ",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
Wannier90BaseWorkChain,
namespace="wannier90_qp",
exclude=(
"clean_workdir",
"wannier90.structure",
"wannier90.kpoint_path",
"wannier90.bands_kpoints",
),
namespace_options={
"help": (
"Inputs for the `Wannier90BaseWorkChain` for wannier90 QP calculation. "
"If not provided, it will be generated based on the previous wannier inputs."
),
"required": True,
},
)
spec.inputs["wannier90_qp"].validator = validate_inputs_base_wannier90
spec.inputs.validator = validate_inputs
spec.output(
"primitive_structure",
valid_type=orm.StructureData,
required=False,
help="The normalized and primitivized structure for which the calculations are computed.",
)
spec.output(
"seekpath_parameters",
valid_type=orm.Dict,
required=False,
help="The parameters used in the SeeKpath call to normalize the input or relaxed structure.",
)
spec.expose_outputs(
YamboConvergence,
namespace="yambo",
namespace_options={"required": False},
)
spec.expose_outputs(
YamboWorkflow,
namespace="yambo_commensurate",
namespace_options={"required": False},
)
spec.expose_outputs(
YamboWorkflow,
namespace="yambo_qp",
namespace_options={"required": False},
)
spec.expose_outputs(
Wannier90BaseWorkChain,
namespace="wannier90_pp",
namespace_options={"required": False},
)
spec.expose_outputs(
YppRestart,
namespace="ypp",
namespace_options={"required": False},
)
spec.expose_outputs(
Wannier90OptimizeWorkChain,
namespace="wannier90",
namespace_options={"required": False},
)
spec.expose_outputs(
Gw2wannier90Calculation,
namespace="gw2wannier90",
namespace_options={"required": False},
)
spec.expose_outputs(
Wannier90BaseWorkChain,
namespace="wannier90_qp",
)
spec.output(
"band_structures.wannier90",
valid_type=orm.BandsData,
required=False,
help="The Wannier interpolated band structure at DFT level.",
)
spec.output(
"band_structures.wannier90_qp",
valid_type=orm.BandsData,
help="The Wannier interpolated band structure at G0W0 level.",
)
spec.outline(
cls.setup,
if_(cls.should_run_seekpath)(
cls.run_seekpath,
),
if_(cls.should_run_yambo_convergence)(
cls.run_yambo_convergence,
cls.inspect_yambo_convergence,
),
if_(cls.should_run_setup_kmesh)(
cls.setup_kmesh,
),
if_(cls.should_run_yambo_commensurate)(
cls.run_yambo_commensurate,
cls.inspect_yambo_commensurate,
),
# TODO run an additional yambo_qp on shifted grid to check w90_qp bands
if_(cls.should_run_yambo_qp)(
cls.run_yambo_qp,
cls.inspect_yambo_qp,
),
# if_(cls.should_run_ypp_qp)(
# cls.run_ypp_qp,
# cls.inspect_ypp_qp,
# ),
if_(cls.should_run_wannier90_pp)(
cls.run_wannier90_pp,
cls.inspect_wannier90_pp,
),
if_(cls.should_run_ypp)(
cls.run_ypp,
cls.inspect_ypp,
),
if_(cls.should_run_wannier90)(
cls.run_wannier90,
cls.inspect_wannier90,
),
if_(cls.should_run_gw2wannier90)(
cls.run_gw2wannier90,
cls.inspect_gw2wannier90,
),
cls.run_wannier90_qp,
cls.inspect_wannier90_qp,
cls.results,
)
spec.exit_code(
401,
"ERROR_SUB_PROCESS_FAILED_SETUP",
message="Unrecoverable error when running setup.",
)
spec.exit_code(
402,
"ERROR_SUB_PROCESS_FAILED_YAMBO_CONV",
message="Unrecoverable error when running yambo convergence.",
)
spec.exit_code(
403,
"ERROR_SUB_PROCESS_FAILED_SETUP_KMESH",
message="Unrecoverable error when running setup_kmesh.",
)
spec.exit_code(
404,
"ERROR_SUB_PROCESS_FAILED_WANNIER90_PP",
message="Unrecoverable error when running wannier90 postproc.",
)
spec.exit_code(
405,
"ERROR_SUB_PROCESS_FAILED_YAMBO_COMMENSURATE",
message="Unrecoverable error when running yambo on commensurate kmesh.",
)
spec.exit_code(
406,
"ERROR_SUB_PROCESS_FAILED_YAMBO_QP",
message="Unrecoverable error when running yambo QP correction.",
)
spec.exit_code(
407,
"ERROR_SUB_PROCESS_FAILED_YPP",
message="Unrecoverable error when running yambo ypp.",
)
spec.exit_code(
408,
"ERROR_SUB_PROCESS_FAILED_WANNIER90",
message="Unrecoverable error when running wannier90.",
)
spec.exit_code(
409,
"ERROR_SUB_PROCESS_FAILED_GW2WANNIER90",
message="Unrecoverable error when running gw2wannier90.",
)
spec.exit_code(
410,
"ERROR_SUB_PROCESS_FAILED_WANNIER90_QP",
message="Unrecoverable error when running wannier90 with QP-corrected eig.",
)
@classmethod
def get_protocol_filepath(cls) -> pathlib.Path:
"""Return the ``pathlib.Path`` to the ``.yaml`` file that defines the protocols."""
# pylint: disable=import-outside-toplevel
from importlib_resources import files
from . import protocols
return files(protocols) / "yambo_wannier90.yaml"
@classmethod
def get_builder_from_protocol( # pylint: disable=too-many-statements,too-many-locals
cls,
codes: ty.Dict[str, ty.Union[orm.Code, str, int]],
structure: orm.StructureData,
*,
protocol: str = None,
overrides: dict = None,
pseudo_family: str = "PseudoDojo/0.4/PBE/SR/standard/upf",
exclude_semicore: bool = False,
electronic_type=ElectronicType.METAL,
wannier_projection_type: WannierProjectionType = WannierProjectionType.ATOMIC_PROJECTORS_QE,
NLCC: bool = True,
RIM_v: bool = True,
RIM_W: bool = False,
) -> ProcessBuilder:
"""Return a builder prepopulated with inputs selected according to the chosen protocol.
:param codes: [description]
:type codes: typing.Dict[str, typing.Union[aiida.orm.Code, str, int]]
:param bxsf: [description]
:type bxsf: aiida.orm.RemoteData
:param protocol: [description], defaults to None
:type protocol: str, optional
:param overrides: [description], defaults to None
:type overrides: dict, optional
:return: [description]
:rtype: aiida.engine.ProcessBuilder
"""
# pylint: disable=import-outside-toplevel,protected-access
# from aiida_quantumespresso.workflows.protocols.utils import recursive_merge
from aiida_wannier90_workflows.utils.workflows.builder import (
recursive_merge_builder,
)
required_codes = [
"pw",
"pw2wannier90",
"wannier90",
"yambo",
"p2y",
"ypp",
"gw2wannier90",
]
if not all(_ in codes for _ in required_codes):
raise ValueError(f"`codes` must contain {required_codes}")
for key, code in codes.items():
if not isinstance(code, orm.Code):
codes[key] = orm.load_code(code)
type_check(structure, orm.StructureData)
inputs = cls.get_protocol_inputs(protocol, overrides)
inputs["structure"] = structure
# Prepare yambo
yambo_overrides = {
"ywfl": {
"scf": {"pseudo_family": pseudo_family},
"nscf": {"pseudo_family": pseudo_family},
},
}
yambo_builder = YamboConvergence.get_builder_from_protocol(
pw_code=codes["pw"],
preprocessing_code=codes["p2y"],
code=codes["yambo"],
protocol="moderate",
structure=structure,
electronic_type=electronic_type,
overrides=yambo_overrides,
NLCC=NLCC,
RIM_v=RIM_v,
RIM_W=RIM_W,
)
inputs["yambo"] = yambo_builder._inputs(prune=True)
inputs["yambo"]["ywfl"]["scf"]["pw"].pop("structure", None)
inputs["yambo"]["ywfl"]["nscf"]["pw"].pop("structure", None)
inputs["yambo"].pop("clean_workdir", None)
# Prepare wannier
# projection_type = WannierProjectionType.ATOMIC_PROJECTORS_QE
# disentanglement_type = WannierDisentanglementType.SMV
# frozen_type = WannierFrozenType.FIXED_PLUS_PROJECTABILITY
# Auto guess from projection_type
disentanglement_type = None
frozen_type = None
wannier_builder = Wannier90OptimizeWorkChain.get_builder_from_protocol(
codes,
structure,
pseudo_family=pseudo_family,
exclude_semicore=exclude_semicore,
projection_type=wannier_projection_type,
disentanglement_type=disentanglement_type,
frozen_type=frozen_type,
)
# No reference PW bands, so we stop optimization
wannier_builder.optimize_disproj = False
inputs["wannier90"] = wannier_builder._inputs(prune=True)
inputs["wannier90"].pop("structure", None)
inputs["wannier90"].pop("clean_workdir", None)
# TODO Prepare yambo_qp
# yambo_qp_builder = YamboRestart.get_builder_from_protocol(
# pw_code=codes["pw"],
# preprocessing_code=codes["p2y"],
# code=codes["yambo"],
# protocol="moderate",
# NLCC=NLCC,
# RIM_v=RIM_v,
# RIM_W=RIM_W,
# )
# inputs["yambo_qp"] = yambo_qp_builder._inputs(prune=True)
inputs["yambo_qp"] = inputs["yambo"]["ywfl"]
inputs["yambo_qp"].pop("clean_workdir", None)
# Ypp; without a parent_folder for now. We should set it during the input preparation
ypp_builder = YppRestart.get_builder_from_protocol(
code=codes["ypp"],
protocol="Wannier",
)
# ypp_builder.ypp.QP_calculations = List(
# list=[1948, 1980, 2006, 2064, 2151, 2176, 2215, 2253]
# )
# ypp_builder.QP_DB = load_node(2329)
inputs["ypp"] = ypp_builder._inputs(prune=True)
inputs["ypp"].pop("clean_workdir", None)
# ypp_QP
ypp_builder = YppRestart.get_builder_from_protocol(
code=codes["ypp"],
protocol="merge_QP",
)
inputs["ypp_QP"] = ypp_builder._inputs(prune=True)
inputs["ypp_QP"].pop(
"clean_workdir", None
) # but actually I want to clean the wdir
# Prepare gw2wannier90
inputs["gw2wannier90"] = {
"code": codes["gw2wannier90"],
}
# Prepare wannier90_qp
wannier90_qp_builder = Wannier90BaseWorkChain.get_builder_from_protocol(
code=codes["wannier90"],
structure=structure,
pseudo_family=pseudo_family,
overrides={
"meta_parameters": {
"exclude_semicore": exclude_semicore,
}
},
electronic_type=electronic_type,
)
params = wannier90_qp_builder.wannier90.parameters.get_dict()
params["bands_plot"] = True
wannier90_qp_builder.wannier90.parameters = orm.Dict(dict=params)
inputs["wannier90_qp"] = wannier90_qp_builder._inputs(prune=True)
inputs["wannier90_qp"]["wannier90"].pop("structure", None)
inputs["wannier90_qp"].pop("clean_workdir", None)
builder = cls.get_builder()
builder = recursive_merge_builder(builder, inputs)
return builder
def setup(self) -> None: # pylint: disable=inconsistent-return-statements
"""Initialize context variables."""
self.ctx.current_structure = self.inputs.structure
if "bands_kpoints" in self.inputs:
self.ctx.current_bands_kpoints = self.inputs.bands_kpoints
# Converged mesh from YamboConvergence
self.ctx.kpoints_gw_conv = None
if self.should_run_setup_kmesh() and not self.should_run_yambo_convergence() and not "GW_mesh" in self.inputs:
# `setup_kmesh` need `self.ctx.kpoints_gw_conv`, I assume that
# the parent of `yambo_qp` is a converged mesh.
# Since the workchain runs sequentially, the `yambo_qp` must be
# in the workchain inputs.
if "yambo_qp" in self.inputs:
parent_folder = self.inputs.yambo_qp.parent_folder
elif "ypp" in self.inputs:
parent_folder = self.inputs.ypp.parent_folder
# The creator is a YamboCalculation, caller is a YamboRestart
wkchain_gw = parent_folder.creator.caller
# Its parent_folder is the remote_folder of a pw.x nscf
calc_nscf = wkchain_gw.inputs.parent_folder.creator
self.ctx.kpoints_gw_conv = calc_nscf.inputs.kpoints
# Input Wannier90 mesh
self.ctx.kpoints_w90_input = None
if self.should_run_wannier90():
self.ctx.kpoints_w90_input = self.inputs.wannier90.nscf.kpoints
if (
not self.should_run_yambo_convergence()
and not self.inputs.kpoints_force_gw
# If starting wannier90+gw2wannier90+wannier90_qp from unsorted.eig,
# then I don't know the gw converged mesh
and self.ctx.kpoints_gw_conv is not None
):
kmesh_gw_conv = get_mesh_from_kpoints(self.ctx.kpoints_gw_conv)
kmesh_w90_input = get_mesh_from_kpoints(self.ctx.kpoints_w90_input)
if not is_commensurate(kmesh_gw_conv, kmesh_w90_input) and not 'GW_mesh' in self.inputs:
self.report(
f"Skipping GW convergence, but GW converged mesh {kmesh_gw_conv} "
f"is not commensurate with W90 input mesh {kmesh_w90_input}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_SETUP
# Commensurate meshes for GW and W90
self.ctx.kpoints_gw = None
# Initialize with input mesh
self.ctx.kpoints_w90 = self.ctx.kpoints_w90_input
def should_run_seekpath(self):
"""Run seekpath if the `inputs.bands_kpoints` is not provided."""
return "bands_kpoints" not in self.inputs
def run_seekpath(self):
"""Run the structure through SeeKpath to get the primitive and normalized structure."""
args = {
"structure": self.inputs.structure,
"metadata": {"call_link_label": "seekpath_structure_analysis"},
}
if "bands_kpoints_distance" in self.inputs:
args["reference_distance"] = self.inputs["bands_kpoints_distance"]
result = seekpath_structure_analysis(**args)
self.ctx.current_structure = result["primitive_structure"]
self.ctx.current_bands_kpoints = result["explicit_kpoints"]
structure_formula = self.inputs.structure.get_formula()
primitive_structure_formula = result["primitive_structure"].get_formula()
self.report(
f"launching seekpath: {structure_formula} -> {primitive_structure_formula}"
)
self.out("primitive_structure", result["primitive_structure"])
self.out("seekpath_parameters", result["parameters"])
def should_run_yambo_convergence(self) -> bool:
"""Whether to run yambo convergence."""
if "yambo" in self.inputs:
return True
return False
def prepare_yambo_convergence_inputs(self) -> AttributeDict:
"""Prepare inputs for ``YamboConvergence``."""
inputs = AttributeDict(self.exposed_inputs(YamboConvergence, namespace="yambo"))
inputs.ywfl.scf.pw.structure = self.ctx.current_structure
inputs.ywfl.nscf.pw.structure = self.ctx.current_structure
return inputs
def run_yambo_convergence(self) -> ty.Dict:
"""Run the ``YamboConvergence``."""
inputs = self.prepare_yambo_convergence_inputs()
inputs.metadata.call_link_label = "yambo_convergence"
inputs = prepare_process_inputs(YamboConvergence, inputs)
running = self.submit(YamboConvergence, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(wkchain_yambo_conv=running)
def inspect_yambo_convergence( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Wan2skeafCalculation` successfully finished."""
wkchain = self.ctx.wkchain_yambo_conv
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YAMBO_CONV
# Find the converged kmesh
converged_wkchain = get_yambo_converged_workchain(wkchain)
nscf_wkchain = get_yambo_nscf(converged_wkchain)
self.ctx.kpoints_gw_conv = nscf_wkchain.inputs.kpoints
def should_run_setup_kmesh(self) -> bool:
"""Whether to run setup_kmesh."""
if "GW_mesh" in self.inputs:
self.ctx.kpoints_gw_conv = self.inputs.GW_mesh
return self.should_run_yambo_convergence() or self.should_run_wannier90_pp()
def setup_kmesh(self) -> None:
"""Find commensurate kmeshes for both Yambo and Wannier90."""
kpoints_gw_conv = self.ctx.kpoints_gw_conv
kpoints_w90_input = self.ctx.kpoints_w90_input
kmesh_gw_conv = get_mesh_from_kpoints(kpoints_gw_conv)
kmesh_w90_input = get_mesh_from_kpoints(kpoints_w90_input)
if self.inputs.kpoints_force_gw:
self.ctx.kpoints_gw = kpoints_gw_conv
self.ctx.kpoints_w90 = get_explicit_kpoints(kpoints_gw_conv)
self.report(
f"Converged GW kmesh = {kmesh_gw_conv}, W90 input kmesh = {kmesh_w90_input}. "
f"Force W90 using GW kmesh = {kmesh_gw_conv}."
)
return
result = find_commensurate_meshes( # pylint: disable=unexpected-keyword-arg
dense_mesh=kpoints_gw_conv,
coarse_mesh=kpoints_w90_input,
metadata={"call_link_label": "find_commensurate_meshes"},
)
kpoints_dense = result["dense_mesh"]
kpoints_coarse = result["coarse_mesh"]
kmesh_dense = get_mesh_from_kpoints(kpoints_dense)
kmesh_coarse = get_mesh_from_kpoints(kpoints_coarse)
self.report(
f"Converged GW kmesh = {kmesh_gw_conv}, W90 input kmesh = {kmesh_w90_input}. "
f"Found commensurate meshes GW = {kmesh_dense}, W90 = {kmesh_coarse}."
)
# Use theses meshes before submitting the corresponding workflow
if np.allclose(kmesh_coarse, kmesh_w90_input):
self.ctx.kpoints_w90 = kpoints_w90_input
else:
self.ctx.kpoints_w90 = get_explicit_kpoints(kpoints_coarse)
if np.allclose(kmesh_dense, kmesh_gw_conv):
self.ctx.kpoints_gw = kpoints_gw_conv
else:
self.ctx.kpoints_gw = kpoints_dense
def should_run_yambo_commensurate(self) -> bool:
"""Whether to run again yambo on the commensurate kmesh."""
if "GW_mesh" in self.inputs and not 'parent_folder' in self.inputs["yambo_qp"]:
return True
if not self.should_run_yambo_convergence():
return False
if self.ctx.kpoints_gw_conv != self.ctx.kpoints_gw:
return True
return False
def prepare_yambo_commensurate_inputs(self) -> AttributeDict:
"""Prepare inputs for yambo commensurate."""
# Get and reuse the converged input from YamboWorkflow
# pylint: disable=protected-access
inputs = AttributeDict(self.exposed_inputs(YamboWorkflow, namespace="yambo_qp"))
if "QP_subset_dict" in inputs:
del inputs.QP_subset_dict
inputs.scf.pw.structure = self.ctx.current_structure
inputs.nscf.pw.structure = self.ctx.current_structure
if self.should_run_yambo_convergence():
converged_wkchain = get_yambo_converged_workchain(self.ctx.wkchain_yambo_conv)
inputs.yres.yambo.parameters = converged_wkchain.inputs._construct_attribute_dict(True)
# Use commensurate mesh
inputs.nscf.kpoints = self.ctx.kpoints_gw
# Set parallelization, mpi_procs, npool, ...
# `inputs.yambo_qp` always exists, but `inputs.yambo` might be empty
if "scf" in inputs and "scf" in self.inputs.yambo_qp:
inputs.scf.pw.metadata = self.inputs.yambo_qp.scf.pw.metadata
if "parallelization" in self.inputs.yambo_qp.scf.pw:
inputs.scf.pw.parallelization = (
self.inputs.yambo_qp.scf.pw.parallelization
)
if "pw" in inputs.nscf and "pw" in self.inputs.yambo_qp.nscf:
inputs.nscf.pw.metadata = self.inputs.yambo_qp.nscf.pw.metadata
if "parallelization" in self.inputs.yambo_qp.nscf.pw:
inputs.nscf.pw.parallelization = (
self.inputs.yambo_qp.nscf.pw.parallelization
)
return inputs
def run_yambo_commensurate(self) -> ty.Dict:
"""Run the `YamboWorkflow`."""
inputs = self.prepare_yambo_commensurate_inputs()
inputs.metadata.call_link_label = "yambo_commensurate"
inputs = prepare_process_inputs(YamboWorkflow, inputs)
running = self.submit(YamboWorkflow, **inputs)
self.report(
f"launching {running.process_label}<{running.pk}> for yambo_commensurate"
)
return ToContext(wkchain_yambo_commensurate=running)
def inspect_yambo_commensurate( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `YamboWorkflow` successfully finished."""
wkchain = self.ctx.wkchain_yambo_commensurate
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YAMBO_COMMENSURATE
def should_run_yambo_qp(self) -> bool:
"""Whether to run yambo_qp."""
if "yambo_qp" in self.inputs:
return True
return False
def prepare_yambo_qp_inputs(self) -> AttributeDict:
"""Prepare inputs for yambo QP."""
# pylint: disable=too-many-locals
# Get the converged input from YamboWorkflow
inputs = AttributeDict(self.exposed_inputs(YamboWorkflow, namespace="yambo_qp"))
yambo_params = inputs.yres.yambo.parameters.get_dict()
# Prepare QPkrange
if self.should_run_wannier90():
# w90_calc_inputs = self.ctx.wkchain_wannier90.inputs.wannier90.wannier90
w90_calc_inputs = self.inputs.wannier90.wannier90.wannier90
else:
w90_calc_inputs = self.inputs.wannier90_qp.wannier90
w90_params = w90_calc_inputs.parameters.get_dict()
num_bands = w90_params["num_bands"]
exclude_bands = w90_params.get("exclude_bands", [0])
start_band = max(exclude_bands) + 1
end_band = start_band + num_bands - 1
if self.should_run_yambo_commensurate():
parent_wkchain = self.ctx.wkchain_yambo_commensurate
yambo_params = parent_wkchain.inputs.yres.yambo.parameters.get_dict()
else:
if self.should_run_yambo_convergence():
parent_wkchain = get_yambo_converged_workchain(
self.ctx.wkchain_yambo_conv
)
yambo_params = parent_wkchain.inputs.yres.yambo.parameters.get_dict()
else:
# Assume the inputs.parent_folder is generated inside a YamboWorkflow
parent_folder = inputs.parent_folder
# The creator is a YamboCalculation, caller is a YamboRestart
parent_wkchain = parent_folder.creator.caller
# Assume its caller is a YamboWorkflow
parent_wkchain = parent_wkchain.caller
# Reuse converged inputs? Better keep the user provided inputs
# inputs = parent_wkchain.inputs._construct_attribute_dict(True)
nscf_wkchain = get_yambo_nscf(parent_wkchain)
gw_kpoints = (
get_output_explicit_kpoints( # pylint: disable=unexpected-keyword-arg
retrieved=nscf_wkchain.outputs.retrieved,
metadata={"call_link_label": "get_output_explicit_kpoints"},
)
)
qpkrange = kmapper( # pylint: disable=unexpected-keyword-arg
dense_mesh=gw_kpoints,
coarse_mesh=self.ctx.kpoints_w90,
start_band=orm.Int(start_band),
end_band=orm.Int(end_band),
metadata={"call_link_label": "kmapper"},
)
qpkrange = qpkrange.get_list()
# Set QPkrange in GW parameters
# yambo_params["variables"]["QPkrange"] = [qpkrange, ""]
# To be set from input
if not hasattr(inputs, "QP_subset_dict"):
inputs.QP_subset_dict = orm.Dict(
dict={
"qp_per_subset": 50,
"parallel_runs": 4,
"explicit": qpkrange,
}
)
else:
QP_subset_dict = inputs.QP_subset_dict.get_dict()
QP_subset_dict["explicit"] = qpkrange
inputs.QP_subset_dict = orm.Dict(dict=QP_subset_dict)
inputs.scf.pw.structure = self.ctx.current_structure
inputs.nscf.pw.structure = self.ctx.current_structure
inputs.yres.yambo.parameters = orm.Dict(dict=yambo_params)
inputs.parent_folder = parent_wkchain.outputs.remote_folder
# Use converged output folder
settings: dict = inputs.yres.yambo.settings.get_dict()
# TODO is this correct?
settings.update({"INITIALISE": False, "COPY_SAVE": True, "COPY_DBS": True})
inputs.yres.yambo.settings = orm.Dict(dict=settings)
return inputs
def run_yambo_qp(self) -> ty.Dict:
"""Run the `YamboRestart` for QP."""
inputs = self.prepare_yambo_qp_inputs()
inputs.metadata.call_link_label = "yambo_qp"
inputs = prepare_process_inputs(YamboWorkflow, inputs)
running = self.submit(YamboWorkflow, **inputs)
self.report(f"launching {running.process_label}<{running.pk}> for yambo_qp")
return ToContext(wkchain_yambo_qp=running)
def inspect_yambo_qp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `YamboWorkflow` successfully finished."""
wkchain = self.ctx.wkchain_yambo_qp
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YAMBO_QP
def should_run_ypp_qp(self) -> bool:
"""Whether to run ypp_QP."""
if "ypp_QP" in self.inputs:
if "parent_folder" in self.inputs.ypp_QP:
self.ctx.wkchain_yambo_qp = (
self.inputs.ypp_QP.outputs.remote_folder.creator.caller.caller
)
QP_list = (
self.ctx.wkchain_yambo_qp.outputs.splitted_QP_calculations.get_list()
)
if len(QP_list) > 1:
return True
return False
def prepare_ypp_inputs_qp(self) -> AttributeDict:
"""Prepare inputs for ypp."""
inputs = AttributeDict(self.exposed_inputs(YppRestart, namespace="ypp_QP"))
inputs.ypp.QP_calculations = (
self.ctx.wkchain_yambo_qp.outputs.splitted_QP_calculations
)
inputs.parent_folder = self.ctx.wkchain_yambo_qp.called[0].inputs.parent_folder
return inputs
def run_ypp_qp(self) -> ty.Dict:
"""Run the ``YppRestart``."""
inputs = self.prepare_ypp_inputs_qp()
inputs.metadata.call_link_label = "ypp_QP"
inputs = prepare_process_inputs(YppRestart, inputs)
running = self.submit(YppRestart, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(wkchain_ypp_QP=running)
def inspect_ypp_qp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the ``YppRestart`` successfully finished."""
wkchain = self.ctx.wkchain_ypp_QP
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YPP
def should_run_wannier90_pp(self) -> bool:
"""Whether to run wannier."""
if self.should_run_ypp() and "nnkp_file" not in self.inputs.ypp.ypp:
return True
return False
def prepare_wannier90_pp_inputs(self) -> AttributeDict:
"""Prepare inputs for wannier90_pp, only for generating nnkp file."""
inputs = AttributeDict(
self.exposed_inputs(Wannier90OptimizeWorkChain, namespace="wannier90")
)["wannier90"]
inputs.wannier90.structure = self.ctx.current_structure
inputs.wannier90.bands_kpoints = self.ctx.current_bands_kpoints
# Use commensurate kmesh
if self.ctx.kpoints_w90_input != self.ctx.kpoints_w90:
set_kpoints(
inputs, self.ctx.kpoints_w90, process_class=Wannier90BaseWorkChain
)
# Only for nnkp, no BandsData for shifting windows
inputs.shift_energy_windows = False
# Add `postproc_setup`
if "settings" in inputs.wannier90:
settings = inputs.wannier90["settings"].get_dict()
else:
settings = {}
settings["postproc_setup"] = True
inputs.wannier90["settings"] = settings
return inputs
def run_wannier90_pp(self) -> ty.Dict:
"""Run the `Wannier90BaseWorkChain` for postproc."""
inputs = self.prepare_wannier90_pp_inputs()
inputs.metadata.call_link_label = "wannier90_pp"
inputs = prepare_process_inputs(Wannier90BaseWorkChain, inputs)
running = self.submit(Wannier90BaseWorkChain, **inputs)
self.report(f"launching {running.process_label}<{running.pk}> for postproc")
return ToContext(wkchain_wannier90_pp=running)
def inspect_wannier90_pp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Wannier90BaseWorkChain` successfully finished."""
wkchain = self.ctx.wkchain_wannier90_pp
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_WANNIER90_PP
def should_run_ypp(self) -> bool:
"""Whether to run ypp."""
if "ypp" in self.inputs:
return True
return False
def prepare_ypp_inputs(self) -> AttributeDict:
"""Prepare inputs for ypp."""
inputs = AttributeDict(self.exposed_inputs(YppRestart, namespace="ypp"))
# if self.should_run_ypp_qp():
# ypp_wkchain = self.ctx.wkchain_ypp_QP
# # Working if merge is not needed
# inputs.ypp.QP_DB = ypp_wkchain.outputs.QP_DB
# inputs.parent_folder = ypp_wkchain.outputs.remote_folder
if self.should_run_yambo_qp():
yambo_wkchain = self.ctx.wkchain_yambo_qp
# Working if merge is not needed
if "merged_QP" in yambo_wkchain.outputs:
inputs.ypp.QP_DB = yambo_wkchain.outputs.merged_QP
else:
inputs.ypp.QP_DB = yambo_wkchain.outputs.QP_DB
inputs.parent_folder = self.ctx.wkchain_yambo_qp.called[
0
].inputs.parent_folder
if self.should_run_wannier90_pp():
inputs.ypp.nnkp_file = self.ctx.wkchain_wannier90_pp.outputs.nnkp_file
return inputs
def run_ypp(self) -> ty.Dict:
"""Run the ``YppRestart``."""
inputs = self.prepare_ypp_inputs()
inputs.metadata.call_link_label = "ypp"
inputs = prepare_process_inputs(YppRestart, inputs)
running = self.submit(YppRestart, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(wkchain_ypp=running)
def inspect_ypp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the ``YppRestart`` successfully finished."""
wkchain = self.ctx.wkchain_ypp
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YPP
def should_run_wannier90(self) -> bool:
"""Whether to run wannier."""
if "wannier90" in self.inputs:
return True
return False
def prepare_wannier90_inputs(self) -> AttributeDict:
"""Prepare inputs for wannier90."""
inputs = AttributeDict(
self.exposed_inputs(Wannier90OptimizeWorkChain, namespace="wannier90")
)
inputs.structure = self.ctx.current_structure
inputs.bands_kpoints = self.ctx.current_bands_kpoints
# Use commensurate kmesh
if self.ctx.kpoints_w90_input != self.ctx.kpoints_w90:
set_kpoints(
inputs, self.ctx.kpoints_w90, process_class=Wannier90OptimizeWorkChain
)
return inputs
def run_wannier90(self) -> ty.Dict:
"""Run the `Wannier90BandsWorkChain`."""
inputs = self.prepare_wannier90_inputs()
inputs.metadata.call_link_label = "wannier90"
inputs = prepare_process_inputs(Wannier90OptimizeWorkChain, inputs)
running = self.submit(Wannier90OptimizeWorkChain, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(wkchain_wannier90=running)
def inspect_wannier90( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Wannier90BandsWorkChain` successfully finished."""
wkchain = self.ctx.wkchain_wannier90
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_WANNIER90
def should_run_gw2wannier90(self) -> bool:
"""Whether to run gw2wannier90."""
if "gw2wannier90" in self.inputs:
return True
return False
def prepare_gw2wannier90_inputs(self) -> AttributeDict:
"""Prepare inputs for gw2wannier90."""
inputs = AttributeDict(
self.exposed_inputs(Gw2wannier90Calculation, namespace="gw2wannier90")
)
if self.should_run_wannier90():
w90_wkchain = self.ctx.wkchain_wannier90
inputs.nnkp = w90_wkchain.outputs.wannier90_pp.nnkp_file
inputs.parent_folder = w90_wkchain.outputs.wannier90.remote_folder
if self.should_run_ypp():
inputs.unsorted_eig = self.ctx.wkchain_ypp.outputs.unsorted_eig_file
return inputs
def run_gw2wannier90(self) -> ty.Dict:
"""Run the ``gw2wannier90``."""
inputs = self.prepare_gw2wannier90_inputs()
inputs.metadata.call_link_label = "gw2wannier90"
inputs = prepare_process_inputs(Gw2wannier90Calculation, inputs)
running = self.submit(Gw2wannier90Calculation, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(calc_gw2wannier90=running)
def inspect_gw2wannier90( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Gw2wannier90Calculation` successfully finished."""
calc = self.ctx.calc_gw2wannier90
if not calc.is_finished_ok:
self.report(
f"{calc.process_label} failed with exit status {calc.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_GW2WANNIER90
def prepare_wannier90_qp_inputs(self) -> AttributeDict:
"""Prepare inputs for gw2wannier90."""
inputs = AttributeDict(
self.exposed_inputs(Wannier90BaseWorkChain, namespace="wannier90_qp")
)
inputs.wannier90.structure = self.ctx.current_structure
inputs.wannier90.bands_kpoints = self.ctx.current_bands_kpoints
if self.ctx.kpoints_w90_input != self.ctx.kpoints_w90:
set_kpoints(
inputs, self.ctx.kpoints_w90, process_class=Wannier90BaseWorkChain
)
params = inputs.wannier90.parameters.get_dict()
params["bands_plot"] = True
if self.should_run_wannier90():
w90calc = self.ctx.wkchain_wannier90.outputs.wannier90.remote_folder.creator
w90calc_params = w90calc.inputs.parameters.get_dict()
fermi_energy = w90calc_params["fermi_energy"]
params["fermi_energy"] = fermi_energy
# TODO I should just restart w/o wannierisation
# I reuse parameters from previous calculation, overwriting the user inputs
if inputs.shift_energy_windows:
keys = ("dis_froz_min", "dis_froz_max", "dis_win_min", "dis_win_max")
for key in keys:
if key in w90calc_params:
params[key] = w90calc_params[key]
inputs.shift_energy_windows = False
if self.inputs.gw2wannier90.sort_mode in [
Gw2wannier90SortMode.DEFAULT_AND_CHK,
Gw2wannier90SortMode.NO_SORT,
]:
params["restart"] = "plot"
inputs.wannier90.parameters = orm.Dict(dict=params)
if self.should_run_gw2wannier90():
inputs.wannier90.remote_input_folder = (
self.ctx.calc_gw2wannier90.outputs.remote_folder
)
return inputs
def run_wannier90_qp(self) -> ty.Dict:
"""Run the `wannier90 qp`."""
inputs = self.prepare_wannier90_qp_inputs()
inputs.metadata.call_link_label = "wannier90_qp"
inputs = prepare_process_inputs(Wannier90BaseWorkChain, inputs)
running = self.submit(Wannier90BaseWorkChain, **inputs)
self.report(f"launching {running.process_label}<{running.pk}> for wannier90_qp")
return ToContext(wkchain_wannier90_qp=running)
def inspect_wannier90_qp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Wannier90BaseWorkChain` successfully finished."""
wkchain = self.ctx.wkchain_wannier90_qp
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_WANNIER90_QP
def results(self) -> None:
"""Attach the relevant output nodes."""
if "wkchain_yambo_conv" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_yambo_conv,
YamboConvergence,
namespace="yambo",
)
)
if "wkchain_yambo_commensurate" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_yambo_commensurate,
YamboWorkflow,
namespace="yambo_commensurate",
)
)
if "wkchain_yambo_qp" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_yambo_qp,
YamboRestart,
namespace="yambo_qp",
)
)
if "wkchain_wannier90_pp" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_wannier90_pp,
Wannier90BaseWorkChain,
namespace="wannier90_pp",
)
)
if "wkchain_ypp" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_ypp,
YppRestart,
namespace="ypp",
)
)
if "wkchain_wannier90" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_wannier90,
Wannier90OptimizeWorkChain,
namespace="wannier90",
)
)
if "calc_gw2wannier90" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.calc_gw2wannier90,
Gw2wannier90Calculation,
namespace="gw2wannier90",
)
)
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_wannier90_qp,
Wannier90BaseWorkChain,
namespace="wannier90_qp",
)
)
if self.should_run_wannier90():
bands_w90 = self.outputs["wannier90"]["band_structure"]
self.out("band_structures.wannier90", bands_w90)
bands_w90qp = self.outputs["wannier90_qp"]["interpolated_bands"]
self.out("band_structures.wannier90_qp", bands_w90qp)
self.report(f"{self.get_name()} successfully completed")
def on_terminated(self):
"""Clean the working directories of all child calculations if `clean_workdir=True` in the inputs."""
super().on_terminated()
if not self.inputs.clean_workdir:
self.report("remote folders will not be cleaned")
return
cleaned_calcs = []
for called_descendant in self.node.called_descendants:
if isinstance(called_descendant, orm.CalcJobNode):
try:
called_descendant.outputs.remote_folder._clean() # pylint: disable=protected-access
cleaned_calcs.append(called_descendant.pk)
except (OSError, KeyError):
pass
if cleaned_calcs:
self.report(
f"cleaned remote folders of calculations: {' '.join(map(str, cleaned_calcs))}"
)
| 37.714888 | 131 | 0.615853 | #!/usr/bin/env python
"""Base class for Yambo+Wannier90 workflow."""
from email.charset import QP
import pathlib
import typing as ty
import numpy as np
from aiida import orm
from aiida.common import AttributeDict
from aiida.common.lang import type_check
from aiida.engine import ExitCode, ProcessBuilder, ToContext, WorkChain, if_
from aiida_quantumespresso.calculations.functions.seekpath_structure_analysis import (
seekpath_structure_analysis,
)
from aiida_quantumespresso.common.types import ElectronicType, SpinType
from aiida_quantumespresso.utils.mapping import prepare_process_inputs
from aiida_quantumespresso.workflows.protocols.utils import ProtocolMixin
from aiida_wannier90_workflows.common.types import (
WannierDisentanglementType,
WannierFrozenType,
WannierProjectionType,
)
from aiida_wannier90_workflows.utils.kpoints import (
get_explicit_kpoints,
get_mesh_from_kpoints,
)
from aiida_wannier90_workflows.utils.workflows.builder import set_kpoints
from aiida_wannier90_workflows.workflows import (
Wannier90BandsWorkChain,
Wannier90BaseWorkChain,
Wannier90OptimizeWorkChain,
)
from aiida_yambo.workflows.yamboconvergence import YamboConvergence
from aiida_yambo.workflows.yamborestart import YamboRestart
from aiida_yambo.workflows.yambowf import YamboWorkflow
from aiida_yambo.workflows.ypprestart import YppRestart
from aiida_yambo_wannier90.calculations.functions.kmesh import (
find_commensurate_meshes,
get_output_explicit_kpoints,
is_commensurate,
kmapper,
)
from aiida_yambo_wannier90.calculations.gw2wannier90 import Gw2wannier90Calculation
from aiida_yambo_wannier90.common.types import Gw2wannier90SortMode
from aiida_yambo_wannier90.utils.workflows import (
get_yambo_converged_workchain,
get_yambo_nscf,
)
__all__ = ["validate_inputs", "YamboWannier90WorkChain"]
# pylint: disable=too-many-lines
# pylint: disable=fixme
# TODO remove this todo disable
def validate_inputs( # pylint: disable=inconsistent-return-statements,too-many-return-statements,too-many-branches,too-many-locals
inputs: dict, ctx=None # pylint: disable=unused-argument
) -> ty.Union[None, str]:
"""Validate the inputs of the entire input namespace."""
# Must run steps sequentially
order = ["yambo", "yambo_qp", "ypp", "wannier90", "gw2wannier90", "wannier90_qp"]
non_empty = [_ in inputs for _ in order]
first_input = non_empty.index(True)
if not all(non_empty[first_input:]):
first_no_input = first_input + non_empty[first_input:].index(False)
return (
f"WorkChain must be run in order, `{order[first_input]}` is provided "
f"but `{order[first_no_input]}` is empty."
)
# Check inputs if previous steps are skipped
should_run_yambo = "yambo" in inputs
should_run_yambo_commensurate = "GW_mesh" in inputs
should_run_wannier90 = "wannier90" in inputs
should_run_yambo_qp = "yambo_qp" in inputs
should_run_ypp = "ypp" in inputs
should_run_gw2wannier90 = "gw2wannier90" in inputs
should_run_wannier90_qp = "wannier90_qp" in inputs
if should_run_yambo_qp:
yambo_qp_inputs = inputs["yambo_qp"]
if not should_run_yambo:
if "parent_folder" not in yambo_qp_inputs and not should_run_yambo_commensurate:
return "`yambo_qp.parent_folder` is empty."
if should_run_ypp:
ypp_inputs = inputs["ypp"]
if not should_run_yambo_qp:
if "QP_DB" not in ypp_inputs["ypp"]:
return "`ypp.ypp.QP_DB` is empty."
if "parent_folder" not in ypp_inputs:
return "`ypp.parent_folder` is empty."
# I need `wannier90` input to run a w90 postproc before `ypp`,
# or if there is `nnkp`, I skip the postproc.
if not should_run_wannier90:
if "nnkp_file" not in ypp_inputs["ypp"]:
return "`ypp.ypp.nnkp_file` is empty."
if should_run_gw2wannier90:
gw2wannier90_inputs = inputs["gw2wannier90"]
if not should_run_wannier90:
for tag in ["nnkp", "parent_folder"]:
if tag not in gw2wannier90_inputs:
return f"`gw2wannier90.{tag}` is empty."
if not should_run_ypp:
if "unsorted_eig" not in gw2wannier90_inputs:
return "`gw2wannier90.unsorted_eig` is empty."
if should_run_wannier90_qp:
wannier90_qp_inputs = inputs["wannier90_qp"]
if not should_run_gw2wannier90:
if "remote_input_folder" not in wannier90_qp_inputs["wannier90"]:
return "`wannier90_qp.wannier90.remote_input_folder` is empty."
class YamboWannier90WorkChain(
ProtocolMixin, WorkChain
): # pylint: disable=too-many-public-methods
"""Workchain to obtain GW-corrected maximally localised Wannier functions (MLWF)."""
@classmethod
def define(cls, spec):
"""Define the process spec."""
from aiida_wannier90_workflows.workflows.base.wannier90 import (
validate_inputs_base as validate_inputs_base_wannier90,
)
super().define(spec)
spec.input(
"structure", valid_type=orm.StructureData, help="The input structure."
)
spec.input(
"clean_workdir",
valid_type=orm.Bool,
serializer=orm.to_aiida_type,
default=lambda: orm.Bool(False),
help=(
"If True, work directories of all called calculation will be cleaned "
"at the end of execution."
),
)
spec.input(
"bands_kpoints",
valid_type=orm.KpointsData,
required=False,
help=(
"Explicit kpoints to use for the band structure. "
"If not specified, the workchain will run seekpath to generate "
"a primitive cell and a bands_kpoints. Specify either this or `bands_kpoints_distance`."
),
)
spec.input(
"bands_kpoints_distance",
valid_type=orm.Float,
serializer=orm.to_aiida_type,
required=False,
help="Minimum kpoints distance for seekpath to generate a list of kpoints along the path. "
"Specify either this or `bands_kpoints`.",
)
spec.input(
"kpoints_force_gw",
valid_type=orm.Bool,
serializer=orm.to_aiida_type,
default=lambda: orm.Bool(False),
help="If `True` will force W90 to use the GW converged k-point mesh.",
)
spec.input(
"GW_mesh",
valid_type=orm.KpointsData,
serializer=orm.to_aiida_type,
required=False,
help="GW mesh. This allow to start from yambo commensurate, skipping gw convergence",
)
spec.expose_inputs(
YamboConvergence,
namespace="yambo",
exclude=(
"clean_workdir",
"ywfl.scf.pw.structure",
"ywfl.nscf.pw.structure",
),
namespace_options={
"help": "Inputs for the `YamboConvergence` for yambo calculation.",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
YamboWorkflow,
namespace="yambo_qp",
exclude=(
"clean_workdir",
"scf.pw.structure",
"nscf.pw.structure",
),
namespace_options={
"help": (
"Inputs for the `YamboConvergence` for yambo QP calculation. "
"If not provided, it will be generated based on the previous converged inputs."
),
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
YppRestart,
namespace="ypp",
exclude=("clean_workdir",),
namespace_options={
"help": "Inputs for the `YppRestart` calculation, to be used for unsorted.eig generation. ",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
YppRestart,
namespace="ypp_QP",
exclude=("clean_workdir",),
namespace_options={
"help": "Inputs for the `YppRestart` calculation, to be used for merging QP dbs. ",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
Wannier90OptimizeWorkChain,
namespace="wannier90",
exclude=(
"clean_workdir",
"structure",
"kpoint_path",
"bands_kpoints",
"bands_kpoints_distance",
),
namespace_options={
"help": "Inputs for the `Wannier90OptimizeWorkChain` for wannier90 calculation.",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
Gw2wannier90Calculation,
namespace="gw2wannier90",
exclude=("clean_workdir",),
namespace_options={
"help": "Inputs for the `Gw2wannier90Calculation`. ",
"required": False,
"populate_defaults": False,
},
)
spec.expose_inputs(
Wannier90BaseWorkChain,
namespace="wannier90_qp",
exclude=(
"clean_workdir",
"wannier90.structure",
"wannier90.kpoint_path",
"wannier90.bands_kpoints",
),
namespace_options={
"help": (
"Inputs for the `Wannier90BaseWorkChain` for wannier90 QP calculation. "
"If not provided, it will be generated based on the previous wannier inputs."
),
"required": True,
},
)
spec.inputs["wannier90_qp"].validator = validate_inputs_base_wannier90
spec.inputs.validator = validate_inputs
spec.output(
"primitive_structure",
valid_type=orm.StructureData,
required=False,
help="The normalized and primitivized structure for which the calculations are computed.",
)
spec.output(
"seekpath_parameters",
valid_type=orm.Dict,
required=False,
help="The parameters used in the SeeKpath call to normalize the input or relaxed structure.",
)
spec.expose_outputs(
YamboConvergence,
namespace="yambo",
namespace_options={"required": False},
)
spec.expose_outputs(
YamboWorkflow,
namespace="yambo_commensurate",
namespace_options={"required": False},
)
spec.expose_outputs(
YamboWorkflow,
namespace="yambo_qp",
namespace_options={"required": False},
)
spec.expose_outputs(
Wannier90BaseWorkChain,
namespace="wannier90_pp",
namespace_options={"required": False},
)
spec.expose_outputs(
YppRestart,
namespace="ypp",
namespace_options={"required": False},
)
spec.expose_outputs(
Wannier90OptimizeWorkChain,
namespace="wannier90",
namespace_options={"required": False},
)
spec.expose_outputs(
Gw2wannier90Calculation,
namespace="gw2wannier90",
namespace_options={"required": False},
)
spec.expose_outputs(
Wannier90BaseWorkChain,
namespace="wannier90_qp",
)
spec.output(
"band_structures.wannier90",
valid_type=orm.BandsData,
required=False,
help="The Wannier interpolated band structure at DFT level.",
)
spec.output(
"band_structures.wannier90_qp",
valid_type=orm.BandsData,
help="The Wannier interpolated band structure at G0W0 level.",
)
spec.outline(
cls.setup,
if_(cls.should_run_seekpath)(
cls.run_seekpath,
),
if_(cls.should_run_yambo_convergence)(
cls.run_yambo_convergence,
cls.inspect_yambo_convergence,
),
if_(cls.should_run_setup_kmesh)(
cls.setup_kmesh,
),
if_(cls.should_run_yambo_commensurate)(
cls.run_yambo_commensurate,
cls.inspect_yambo_commensurate,
),
# TODO run an additional yambo_qp on shifted grid to check w90_qp bands
if_(cls.should_run_yambo_qp)(
cls.run_yambo_qp,
cls.inspect_yambo_qp,
),
# if_(cls.should_run_ypp_qp)(
# cls.run_ypp_qp,
# cls.inspect_ypp_qp,
# ),
if_(cls.should_run_wannier90_pp)(
cls.run_wannier90_pp,
cls.inspect_wannier90_pp,
),
if_(cls.should_run_ypp)(
cls.run_ypp,
cls.inspect_ypp,
),
if_(cls.should_run_wannier90)(
cls.run_wannier90,
cls.inspect_wannier90,
),
if_(cls.should_run_gw2wannier90)(
cls.run_gw2wannier90,
cls.inspect_gw2wannier90,
),
cls.run_wannier90_qp,
cls.inspect_wannier90_qp,
cls.results,
)
spec.exit_code(
401,
"ERROR_SUB_PROCESS_FAILED_SETUP",
message="Unrecoverable error when running setup.",
)
spec.exit_code(
402,
"ERROR_SUB_PROCESS_FAILED_YAMBO_CONV",
message="Unrecoverable error when running yambo convergence.",
)
spec.exit_code(
403,
"ERROR_SUB_PROCESS_FAILED_SETUP_KMESH",
message="Unrecoverable error when running setup_kmesh.",
)
spec.exit_code(
404,
"ERROR_SUB_PROCESS_FAILED_WANNIER90_PP",
message="Unrecoverable error when running wannier90 postproc.",
)
spec.exit_code(
405,
"ERROR_SUB_PROCESS_FAILED_YAMBO_COMMENSURATE",
message="Unrecoverable error when running yambo on commensurate kmesh.",
)
spec.exit_code(
406,
"ERROR_SUB_PROCESS_FAILED_YAMBO_QP",
message="Unrecoverable error when running yambo QP correction.",
)
spec.exit_code(
407,
"ERROR_SUB_PROCESS_FAILED_YPP",
message="Unrecoverable error when running yambo ypp.",
)
spec.exit_code(
408,
"ERROR_SUB_PROCESS_FAILED_WANNIER90",
message="Unrecoverable error when running wannier90.",
)
spec.exit_code(
409,
"ERROR_SUB_PROCESS_FAILED_GW2WANNIER90",
message="Unrecoverable error when running gw2wannier90.",
)
spec.exit_code(
410,
"ERROR_SUB_PROCESS_FAILED_WANNIER90_QP",
message="Unrecoverable error when running wannier90 with QP-corrected eig.",
)
@classmethod
def get_protocol_filepath(cls) -> pathlib.Path:
"""Return the ``pathlib.Path`` to the ``.yaml`` file that defines the protocols."""
# pylint: disable=import-outside-toplevel
from importlib_resources import files
from . import protocols
return files(protocols) / "yambo_wannier90.yaml"
@classmethod
def get_builder_from_protocol( # pylint: disable=too-many-statements,too-many-locals
cls,
codes: ty.Dict[str, ty.Union[orm.Code, str, int]],
structure: orm.StructureData,
*,
protocol: str = None,
overrides: dict = None,
pseudo_family: str = "PseudoDojo/0.4/PBE/SR/standard/upf",
exclude_semicore: bool = False,
electronic_type=ElectronicType.METAL,
wannier_projection_type: WannierProjectionType = WannierProjectionType.ATOMIC_PROJECTORS_QE,
NLCC: bool = True,
RIM_v: bool = True,
RIM_W: bool = False,
) -> ProcessBuilder:
"""Return a builder prepopulated with inputs selected according to the chosen protocol.
:param codes: [description]
:type codes: typing.Dict[str, typing.Union[aiida.orm.Code, str, int]]
:param bxsf: [description]
:type bxsf: aiida.orm.RemoteData
:param protocol: [description], defaults to None
:type protocol: str, optional
:param overrides: [description], defaults to None
:type overrides: dict, optional
:return: [description]
:rtype: aiida.engine.ProcessBuilder
"""
# pylint: disable=import-outside-toplevel,protected-access
# from aiida_quantumespresso.workflows.protocols.utils import recursive_merge
from aiida_wannier90_workflows.utils.workflows.builder import (
recursive_merge_builder,
)
required_codes = [
"pw",
"pw2wannier90",
"wannier90",
"yambo",
"p2y",
"ypp",
"gw2wannier90",
]
if not all(_ in codes for _ in required_codes):
raise ValueError(f"`codes` must contain {required_codes}")
for key, code in codes.items():
if not isinstance(code, orm.Code):
codes[key] = orm.load_code(code)
type_check(structure, orm.StructureData)
inputs = cls.get_protocol_inputs(protocol, overrides)
inputs["structure"] = structure
# Prepare yambo
yambo_overrides = {
"ywfl": {
"scf": {"pseudo_family": pseudo_family},
"nscf": {"pseudo_family": pseudo_family},
},
}
yambo_builder = YamboConvergence.get_builder_from_protocol(
pw_code=codes["pw"],
preprocessing_code=codes["p2y"],
code=codes["yambo"],
protocol="moderate",
structure=structure,
electronic_type=electronic_type,
overrides=yambo_overrides,
NLCC=NLCC,
RIM_v=RIM_v,
RIM_W=RIM_W,
)
inputs["yambo"] = yambo_builder._inputs(prune=True)
inputs["yambo"]["ywfl"]["scf"]["pw"].pop("structure", None)
inputs["yambo"]["ywfl"]["nscf"]["pw"].pop("structure", None)
inputs["yambo"].pop("clean_workdir", None)
# Prepare wannier
# projection_type = WannierProjectionType.ATOMIC_PROJECTORS_QE
# disentanglement_type = WannierDisentanglementType.SMV
# frozen_type = WannierFrozenType.FIXED_PLUS_PROJECTABILITY
# Auto guess from projection_type
disentanglement_type = None
frozen_type = None
wannier_builder = Wannier90OptimizeWorkChain.get_builder_from_protocol(
codes,
structure,
pseudo_family=pseudo_family,
exclude_semicore=exclude_semicore,
projection_type=wannier_projection_type,
disentanglement_type=disentanglement_type,
frozen_type=frozen_type,
)
# No reference PW bands, so we stop optimization
wannier_builder.optimize_disproj = False
inputs["wannier90"] = wannier_builder._inputs(prune=True)
inputs["wannier90"].pop("structure", None)
inputs["wannier90"].pop("clean_workdir", None)
# TODO Prepare yambo_qp
# yambo_qp_builder = YamboRestart.get_builder_from_protocol(
# pw_code=codes["pw"],
# preprocessing_code=codes["p2y"],
# code=codes["yambo"],
# protocol="moderate",
# NLCC=NLCC,
# RIM_v=RIM_v,
# RIM_W=RIM_W,
# )
# inputs["yambo_qp"] = yambo_qp_builder._inputs(prune=True)
inputs["yambo_qp"] = inputs["yambo"]["ywfl"]
inputs["yambo_qp"].pop("clean_workdir", None)
# Ypp; without a parent_folder for now. We should set it during the input preparation
ypp_builder = YppRestart.get_builder_from_protocol(
code=codes["ypp"],
protocol="Wannier",
)
# ypp_builder.ypp.QP_calculations = List(
# list=[1948, 1980, 2006, 2064, 2151, 2176, 2215, 2253]
# )
# ypp_builder.QP_DB = load_node(2329)
inputs["ypp"] = ypp_builder._inputs(prune=True)
inputs["ypp"].pop("clean_workdir", None)
# ypp_QP
ypp_builder = YppRestart.get_builder_from_protocol(
code=codes["ypp"],
protocol="merge_QP",
)
inputs["ypp_QP"] = ypp_builder._inputs(prune=True)
inputs["ypp_QP"].pop(
"clean_workdir", None
) # but actually I want to clean the wdir
# Prepare gw2wannier90
inputs["gw2wannier90"] = {
"code": codes["gw2wannier90"],
}
# Prepare wannier90_qp
wannier90_qp_builder = Wannier90BaseWorkChain.get_builder_from_protocol(
code=codes["wannier90"],
structure=structure,
pseudo_family=pseudo_family,
overrides={
"meta_parameters": {
"exclude_semicore": exclude_semicore,
}
},
electronic_type=electronic_type,
)
params = wannier90_qp_builder.wannier90.parameters.get_dict()
params["bands_plot"] = True
wannier90_qp_builder.wannier90.parameters = orm.Dict(dict=params)
inputs["wannier90_qp"] = wannier90_qp_builder._inputs(prune=True)
inputs["wannier90_qp"]["wannier90"].pop("structure", None)
inputs["wannier90_qp"].pop("clean_workdir", None)
builder = cls.get_builder()
builder = recursive_merge_builder(builder, inputs)
return builder
def setup(self) -> None: # pylint: disable=inconsistent-return-statements
"""Initialize context variables."""
self.ctx.current_structure = self.inputs.structure
if "bands_kpoints" in self.inputs:
self.ctx.current_bands_kpoints = self.inputs.bands_kpoints
# Converged mesh from YamboConvergence
self.ctx.kpoints_gw_conv = None
if self.should_run_setup_kmesh() and not self.should_run_yambo_convergence() and not "GW_mesh" in self.inputs:
# `setup_kmesh` need `self.ctx.kpoints_gw_conv`, I assume that
# the parent of `yambo_qp` is a converged mesh.
# Since the workchain runs sequentially, the `yambo_qp` must be
# in the workchain inputs.
if "yambo_qp" in self.inputs:
parent_folder = self.inputs.yambo_qp.parent_folder
elif "ypp" in self.inputs:
parent_folder = self.inputs.ypp.parent_folder
# The creator is a YamboCalculation, caller is a YamboRestart
wkchain_gw = parent_folder.creator.caller
# Its parent_folder is the remote_folder of a pw.x nscf
calc_nscf = wkchain_gw.inputs.parent_folder.creator
self.ctx.kpoints_gw_conv = calc_nscf.inputs.kpoints
# Input Wannier90 mesh
self.ctx.kpoints_w90_input = None
if self.should_run_wannier90():
self.ctx.kpoints_w90_input = self.inputs.wannier90.nscf.kpoints
if (
not self.should_run_yambo_convergence()
and not self.inputs.kpoints_force_gw
# If starting wannier90+gw2wannier90+wannier90_qp from unsorted.eig,
# then I don't know the gw converged mesh
and self.ctx.kpoints_gw_conv is not None
):
kmesh_gw_conv = get_mesh_from_kpoints(self.ctx.kpoints_gw_conv)
kmesh_w90_input = get_mesh_from_kpoints(self.ctx.kpoints_w90_input)
if not is_commensurate(kmesh_gw_conv, kmesh_w90_input) and not 'GW_mesh' in self.inputs:
self.report(
f"Skipping GW convergence, but GW converged mesh {kmesh_gw_conv} "
f"is not commensurate with W90 input mesh {kmesh_w90_input}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_SETUP
# Commensurate meshes for GW and W90
self.ctx.kpoints_gw = None
# Initialize with input mesh
self.ctx.kpoints_w90 = self.ctx.kpoints_w90_input
def should_run_seekpath(self):
"""Run seekpath if the `inputs.bands_kpoints` is not provided."""
return "bands_kpoints" not in self.inputs
def run_seekpath(self):
"""Run the structure through SeeKpath to get the primitive and normalized structure."""
args = {
"structure": self.inputs.structure,
"metadata": {"call_link_label": "seekpath_structure_analysis"},
}
if "bands_kpoints_distance" in self.inputs:
args["reference_distance"] = self.inputs["bands_kpoints_distance"]
result = seekpath_structure_analysis(**args)
self.ctx.current_structure = result["primitive_structure"]
self.ctx.current_bands_kpoints = result["explicit_kpoints"]
structure_formula = self.inputs.structure.get_formula()
primitive_structure_formula = result["primitive_structure"].get_formula()
self.report(
f"launching seekpath: {structure_formula} -> {primitive_structure_formula}"
)
self.out("primitive_structure", result["primitive_structure"])
self.out("seekpath_parameters", result["parameters"])
def should_run_yambo_convergence(self) -> bool:
"""Whether to run yambo convergence."""
if "yambo" in self.inputs:
return True
return False
def prepare_yambo_convergence_inputs(self) -> AttributeDict:
"""Prepare inputs for ``YamboConvergence``."""
inputs = AttributeDict(self.exposed_inputs(YamboConvergence, namespace="yambo"))
inputs.ywfl.scf.pw.structure = self.ctx.current_structure
inputs.ywfl.nscf.pw.structure = self.ctx.current_structure
return inputs
def run_yambo_convergence(self) -> ty.Dict:
"""Run the ``YamboConvergence``."""
inputs = self.prepare_yambo_convergence_inputs()
inputs.metadata.call_link_label = "yambo_convergence"
inputs = prepare_process_inputs(YamboConvergence, inputs)
running = self.submit(YamboConvergence, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(wkchain_yambo_conv=running)
def inspect_yambo_convergence( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Wan2skeafCalculation` successfully finished."""
wkchain = self.ctx.wkchain_yambo_conv
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YAMBO_CONV
# Find the converged kmesh
converged_wkchain = get_yambo_converged_workchain(wkchain)
nscf_wkchain = get_yambo_nscf(converged_wkchain)
self.ctx.kpoints_gw_conv = nscf_wkchain.inputs.kpoints
def should_run_setup_kmesh(self) -> bool:
"""Whether to run setup_kmesh."""
if "GW_mesh" in self.inputs:
self.ctx.kpoints_gw_conv = self.inputs.GW_mesh
return self.should_run_yambo_convergence() or self.should_run_wannier90_pp()
def setup_kmesh(self) -> None:
"""Find commensurate kmeshes for both Yambo and Wannier90."""
kpoints_gw_conv = self.ctx.kpoints_gw_conv
kpoints_w90_input = self.ctx.kpoints_w90_input
kmesh_gw_conv = get_mesh_from_kpoints(kpoints_gw_conv)
kmesh_w90_input = get_mesh_from_kpoints(kpoints_w90_input)
if self.inputs.kpoints_force_gw:
self.ctx.kpoints_gw = kpoints_gw_conv
self.ctx.kpoints_w90 = get_explicit_kpoints(kpoints_gw_conv)
self.report(
f"Converged GW kmesh = {kmesh_gw_conv}, W90 input kmesh = {kmesh_w90_input}. "
f"Force W90 using GW kmesh = {kmesh_gw_conv}."
)
return
result = find_commensurate_meshes( # pylint: disable=unexpected-keyword-arg
dense_mesh=kpoints_gw_conv,
coarse_mesh=kpoints_w90_input,
metadata={"call_link_label": "find_commensurate_meshes"},
)
kpoints_dense = result["dense_mesh"]
kpoints_coarse = result["coarse_mesh"]
kmesh_dense = get_mesh_from_kpoints(kpoints_dense)
kmesh_coarse = get_mesh_from_kpoints(kpoints_coarse)
self.report(
f"Converged GW kmesh = {kmesh_gw_conv}, W90 input kmesh = {kmesh_w90_input}. "
f"Found commensurate meshes GW = {kmesh_dense}, W90 = {kmesh_coarse}."
)
# Use theses meshes before submitting the corresponding workflow
if np.allclose(kmesh_coarse, kmesh_w90_input):
self.ctx.kpoints_w90 = kpoints_w90_input
else:
self.ctx.kpoints_w90 = get_explicit_kpoints(kpoints_coarse)
if np.allclose(kmesh_dense, kmesh_gw_conv):
self.ctx.kpoints_gw = kpoints_gw_conv
else:
self.ctx.kpoints_gw = kpoints_dense
def should_run_yambo_commensurate(self) -> bool:
"""Whether to run again yambo on the commensurate kmesh."""
if "GW_mesh" in self.inputs and not 'parent_folder' in self.inputs["yambo_qp"]:
return True
if not self.should_run_yambo_convergence():
return False
if self.ctx.kpoints_gw_conv != self.ctx.kpoints_gw:
return True
return False
def prepare_yambo_commensurate_inputs(self) -> AttributeDict:
"""Prepare inputs for yambo commensurate."""
# Get and reuse the converged input from YamboWorkflow
# pylint: disable=protected-access
inputs = AttributeDict(self.exposed_inputs(YamboWorkflow, namespace="yambo_qp"))
if "QP_subset_dict" in inputs:
del inputs.QP_subset_dict
inputs.scf.pw.structure = self.ctx.current_structure
inputs.nscf.pw.structure = self.ctx.current_structure
if self.should_run_yambo_convergence():
converged_wkchain = get_yambo_converged_workchain(self.ctx.wkchain_yambo_conv)
inputs.yres.yambo.parameters = converged_wkchain.inputs._construct_attribute_dict(True)
# Use commensurate mesh
inputs.nscf.kpoints = self.ctx.kpoints_gw
# Set parallelization, mpi_procs, npool, ...
# `inputs.yambo_qp` always exists, but `inputs.yambo` might be empty
if "scf" in inputs and "scf" in self.inputs.yambo_qp:
inputs.scf.pw.metadata = self.inputs.yambo_qp.scf.pw.metadata
if "parallelization" in self.inputs.yambo_qp.scf.pw:
inputs.scf.pw.parallelization = (
self.inputs.yambo_qp.scf.pw.parallelization
)
if "pw" in inputs.nscf and "pw" in self.inputs.yambo_qp.nscf:
inputs.nscf.pw.metadata = self.inputs.yambo_qp.nscf.pw.metadata
if "parallelization" in self.inputs.yambo_qp.nscf.pw:
inputs.nscf.pw.parallelization = (
self.inputs.yambo_qp.nscf.pw.parallelization
)
return inputs
def run_yambo_commensurate(self) -> ty.Dict:
"""Run the `YamboWorkflow`."""
inputs = self.prepare_yambo_commensurate_inputs()
inputs.metadata.call_link_label = "yambo_commensurate"
inputs = prepare_process_inputs(YamboWorkflow, inputs)
running = self.submit(YamboWorkflow, **inputs)
self.report(
f"launching {running.process_label}<{running.pk}> for yambo_commensurate"
)
return ToContext(wkchain_yambo_commensurate=running)
def inspect_yambo_commensurate( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `YamboWorkflow` successfully finished."""
wkchain = self.ctx.wkchain_yambo_commensurate
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YAMBO_COMMENSURATE
def should_run_yambo_qp(self) -> bool:
"""Whether to run yambo_qp."""
if "yambo_qp" in self.inputs:
return True
return False
def prepare_yambo_qp_inputs(self) -> AttributeDict:
"""Prepare inputs for yambo QP."""
# pylint: disable=too-many-locals
# Get the converged input from YamboWorkflow
inputs = AttributeDict(self.exposed_inputs(YamboWorkflow, namespace="yambo_qp"))
yambo_params = inputs.yres.yambo.parameters.get_dict()
# Prepare QPkrange
if self.should_run_wannier90():
# w90_calc_inputs = self.ctx.wkchain_wannier90.inputs.wannier90.wannier90
w90_calc_inputs = self.inputs.wannier90.wannier90.wannier90
else:
w90_calc_inputs = self.inputs.wannier90_qp.wannier90
w90_params = w90_calc_inputs.parameters.get_dict()
num_bands = w90_params["num_bands"]
exclude_bands = w90_params.get("exclude_bands", [0])
start_band = max(exclude_bands) + 1
end_band = start_band + num_bands - 1
if self.should_run_yambo_commensurate():
parent_wkchain = self.ctx.wkchain_yambo_commensurate
yambo_params = parent_wkchain.inputs.yres.yambo.parameters.get_dict()
else:
if self.should_run_yambo_convergence():
parent_wkchain = get_yambo_converged_workchain(
self.ctx.wkchain_yambo_conv
)
yambo_params = parent_wkchain.inputs.yres.yambo.parameters.get_dict()
else:
# Assume the inputs.parent_folder is generated inside a YamboWorkflow
parent_folder = inputs.parent_folder
# The creator is a YamboCalculation, caller is a YamboRestart
parent_wkchain = parent_folder.creator.caller
# Assume its caller is a YamboWorkflow
parent_wkchain = parent_wkchain.caller
# Reuse converged inputs? Better keep the user provided inputs
# inputs = parent_wkchain.inputs._construct_attribute_dict(True)
nscf_wkchain = get_yambo_nscf(parent_wkchain)
gw_kpoints = (
get_output_explicit_kpoints( # pylint: disable=unexpected-keyword-arg
retrieved=nscf_wkchain.outputs.retrieved,
metadata={"call_link_label": "get_output_explicit_kpoints"},
)
)
qpkrange = kmapper( # pylint: disable=unexpected-keyword-arg
dense_mesh=gw_kpoints,
coarse_mesh=self.ctx.kpoints_w90,
start_band=orm.Int(start_band),
end_band=orm.Int(end_band),
metadata={"call_link_label": "kmapper"},
)
qpkrange = qpkrange.get_list()
# Set QPkrange in GW parameters
# yambo_params["variables"]["QPkrange"] = [qpkrange, ""]
# To be set from input
if not hasattr(inputs, "QP_subset_dict"):
inputs.QP_subset_dict = orm.Dict(
dict={
"qp_per_subset": 50,
"parallel_runs": 4,
"explicit": qpkrange,
}
)
else:
QP_subset_dict = inputs.QP_subset_dict.get_dict()
QP_subset_dict["explicit"] = qpkrange
inputs.QP_subset_dict = orm.Dict(dict=QP_subset_dict)
inputs.scf.pw.structure = self.ctx.current_structure
inputs.nscf.pw.structure = self.ctx.current_structure
inputs.yres.yambo.parameters = orm.Dict(dict=yambo_params)
inputs.parent_folder = parent_wkchain.outputs.remote_folder
# Use converged output folder
settings: dict = inputs.yres.yambo.settings.get_dict()
# TODO is this correct?
settings.update({"INITIALISE": False, "COPY_SAVE": True, "COPY_DBS": True})
inputs.yres.yambo.settings = orm.Dict(dict=settings)
return inputs
def run_yambo_qp(self) -> ty.Dict:
"""Run the `YamboRestart` for QP."""
inputs = self.prepare_yambo_qp_inputs()
inputs.metadata.call_link_label = "yambo_qp"
inputs = prepare_process_inputs(YamboWorkflow, inputs)
running = self.submit(YamboWorkflow, **inputs)
self.report(f"launching {running.process_label}<{running.pk}> for yambo_qp")
return ToContext(wkchain_yambo_qp=running)
def inspect_yambo_qp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `YamboWorkflow` successfully finished."""
wkchain = self.ctx.wkchain_yambo_qp
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YAMBO_QP
def should_run_ypp_qp(self) -> bool:
"""Whether to run ypp_QP."""
if "ypp_QP" in self.inputs:
if "parent_folder" in self.inputs.ypp_QP:
self.ctx.wkchain_yambo_qp = (
self.inputs.ypp_QP.outputs.remote_folder.creator.caller.caller
)
QP_list = (
self.ctx.wkchain_yambo_qp.outputs.splitted_QP_calculations.get_list()
)
if len(QP_list) > 1:
return True
return False
def prepare_ypp_inputs_qp(self) -> AttributeDict:
"""Prepare inputs for ypp."""
inputs = AttributeDict(self.exposed_inputs(YppRestart, namespace="ypp_QP"))
inputs.ypp.QP_calculations = (
self.ctx.wkchain_yambo_qp.outputs.splitted_QP_calculations
)
inputs.parent_folder = self.ctx.wkchain_yambo_qp.called[0].inputs.parent_folder
return inputs
def run_ypp_qp(self) -> ty.Dict:
"""Run the ``YppRestart``."""
inputs = self.prepare_ypp_inputs_qp()
inputs.metadata.call_link_label = "ypp_QP"
inputs = prepare_process_inputs(YppRestart, inputs)
running = self.submit(YppRestart, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(wkchain_ypp_QP=running)
def inspect_ypp_qp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the ``YppRestart`` successfully finished."""
wkchain = self.ctx.wkchain_ypp_QP
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YPP
def should_run_wannier90_pp(self) -> bool:
"""Whether to run wannier."""
if self.should_run_ypp() and "nnkp_file" not in self.inputs.ypp.ypp:
return True
return False
def prepare_wannier90_pp_inputs(self) -> AttributeDict:
"""Prepare inputs for wannier90_pp, only for generating nnkp file."""
inputs = AttributeDict(
self.exposed_inputs(Wannier90OptimizeWorkChain, namespace="wannier90")
)["wannier90"]
inputs.wannier90.structure = self.ctx.current_structure
inputs.wannier90.bands_kpoints = self.ctx.current_bands_kpoints
# Use commensurate kmesh
if self.ctx.kpoints_w90_input != self.ctx.kpoints_w90:
set_kpoints(
inputs, self.ctx.kpoints_w90, process_class=Wannier90BaseWorkChain
)
# Only for nnkp, no BandsData for shifting windows
inputs.shift_energy_windows = False
# Add `postproc_setup`
if "settings" in inputs.wannier90:
settings = inputs.wannier90["settings"].get_dict()
else:
settings = {}
settings["postproc_setup"] = True
inputs.wannier90["settings"] = settings
return inputs
def run_wannier90_pp(self) -> ty.Dict:
"""Run the `Wannier90BaseWorkChain` for postproc."""
inputs = self.prepare_wannier90_pp_inputs()
inputs.metadata.call_link_label = "wannier90_pp"
inputs = prepare_process_inputs(Wannier90BaseWorkChain, inputs)
running = self.submit(Wannier90BaseWorkChain, **inputs)
self.report(f"launching {running.process_label}<{running.pk}> for postproc")
return ToContext(wkchain_wannier90_pp=running)
def inspect_wannier90_pp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Wannier90BaseWorkChain` successfully finished."""
wkchain = self.ctx.wkchain_wannier90_pp
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_WANNIER90_PP
def should_run_ypp(self) -> bool:
"""Whether to run ypp."""
if "ypp" in self.inputs:
return True
return False
def prepare_ypp_inputs(self) -> AttributeDict:
"""Prepare inputs for ypp."""
inputs = AttributeDict(self.exposed_inputs(YppRestart, namespace="ypp"))
# if self.should_run_ypp_qp():
# ypp_wkchain = self.ctx.wkchain_ypp_QP
# # Working if merge is not needed
# inputs.ypp.QP_DB = ypp_wkchain.outputs.QP_DB
# inputs.parent_folder = ypp_wkchain.outputs.remote_folder
if self.should_run_yambo_qp():
yambo_wkchain = self.ctx.wkchain_yambo_qp
# Working if merge is not needed
if "merged_QP" in yambo_wkchain.outputs:
inputs.ypp.QP_DB = yambo_wkchain.outputs.merged_QP
else:
inputs.ypp.QP_DB = yambo_wkchain.outputs.QP_DB
inputs.parent_folder = self.ctx.wkchain_yambo_qp.called[
0
].inputs.parent_folder
if self.should_run_wannier90_pp():
inputs.ypp.nnkp_file = self.ctx.wkchain_wannier90_pp.outputs.nnkp_file
return inputs
def run_ypp(self) -> ty.Dict:
"""Run the ``YppRestart``."""
inputs = self.prepare_ypp_inputs()
inputs.metadata.call_link_label = "ypp"
inputs = prepare_process_inputs(YppRestart, inputs)
running = self.submit(YppRestart, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(wkchain_ypp=running)
def inspect_ypp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the ``YppRestart`` successfully finished."""
wkchain = self.ctx.wkchain_ypp
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_YPP
def should_run_wannier90(self) -> bool:
"""Whether to run wannier."""
if "wannier90" in self.inputs:
return True
return False
def prepare_wannier90_inputs(self) -> AttributeDict:
"""Prepare inputs for wannier90."""
inputs = AttributeDict(
self.exposed_inputs(Wannier90OptimizeWorkChain, namespace="wannier90")
)
inputs.structure = self.ctx.current_structure
inputs.bands_kpoints = self.ctx.current_bands_kpoints
# Use commensurate kmesh
if self.ctx.kpoints_w90_input != self.ctx.kpoints_w90:
set_kpoints(
inputs, self.ctx.kpoints_w90, process_class=Wannier90OptimizeWorkChain
)
return inputs
def run_wannier90(self) -> ty.Dict:
"""Run the `Wannier90BandsWorkChain`."""
inputs = self.prepare_wannier90_inputs()
inputs.metadata.call_link_label = "wannier90"
inputs = prepare_process_inputs(Wannier90OptimizeWorkChain, inputs)
running = self.submit(Wannier90OptimizeWorkChain, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(wkchain_wannier90=running)
def inspect_wannier90( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Wannier90BandsWorkChain` successfully finished."""
wkchain = self.ctx.wkchain_wannier90
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_WANNIER90
def should_run_gw2wannier90(self) -> bool:
"""Whether to run gw2wannier90."""
if "gw2wannier90" in self.inputs:
return True
return False
def prepare_gw2wannier90_inputs(self) -> AttributeDict:
"""Prepare inputs for gw2wannier90."""
inputs = AttributeDict(
self.exposed_inputs(Gw2wannier90Calculation, namespace="gw2wannier90")
)
if self.should_run_wannier90():
w90_wkchain = self.ctx.wkchain_wannier90
inputs.nnkp = w90_wkchain.outputs.wannier90_pp.nnkp_file
inputs.parent_folder = w90_wkchain.outputs.wannier90.remote_folder
if self.should_run_ypp():
inputs.unsorted_eig = self.ctx.wkchain_ypp.outputs.unsorted_eig_file
return inputs
def run_gw2wannier90(self) -> ty.Dict:
"""Run the ``gw2wannier90``."""
inputs = self.prepare_gw2wannier90_inputs()
inputs.metadata.call_link_label = "gw2wannier90"
inputs = prepare_process_inputs(Gw2wannier90Calculation, inputs)
running = self.submit(Gw2wannier90Calculation, **inputs)
self.report(f"launching {running.process_label}<{running.pk}>")
return ToContext(calc_gw2wannier90=running)
def inspect_gw2wannier90( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Gw2wannier90Calculation` successfully finished."""
calc = self.ctx.calc_gw2wannier90
if not calc.is_finished_ok:
self.report(
f"{calc.process_label} failed with exit status {calc.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_GW2WANNIER90
def prepare_wannier90_qp_inputs(self) -> AttributeDict:
"""Prepare inputs for gw2wannier90."""
inputs = AttributeDict(
self.exposed_inputs(Wannier90BaseWorkChain, namespace="wannier90_qp")
)
inputs.wannier90.structure = self.ctx.current_structure
inputs.wannier90.bands_kpoints = self.ctx.current_bands_kpoints
if self.ctx.kpoints_w90_input != self.ctx.kpoints_w90:
set_kpoints(
inputs, self.ctx.kpoints_w90, process_class=Wannier90BaseWorkChain
)
params = inputs.wannier90.parameters.get_dict()
params["bands_plot"] = True
if self.should_run_wannier90():
w90calc = self.ctx.wkchain_wannier90.outputs.wannier90.remote_folder.creator
w90calc_params = w90calc.inputs.parameters.get_dict()
fermi_energy = w90calc_params["fermi_energy"]
params["fermi_energy"] = fermi_energy
# TODO I should just restart w/o wannierisation
# I reuse parameters from previous calculation, overwriting the user inputs
if inputs.shift_energy_windows:
keys = ("dis_froz_min", "dis_froz_max", "dis_win_min", "dis_win_max")
for key in keys:
if key in w90calc_params:
params[key] = w90calc_params[key]
inputs.shift_energy_windows = False
if self.inputs.gw2wannier90.sort_mode in [
Gw2wannier90SortMode.DEFAULT_AND_CHK,
Gw2wannier90SortMode.NO_SORT,
]:
params["restart"] = "plot"
inputs.wannier90.parameters = orm.Dict(dict=params)
if self.should_run_gw2wannier90():
inputs.wannier90.remote_input_folder = (
self.ctx.calc_gw2wannier90.outputs.remote_folder
)
return inputs
def run_wannier90_qp(self) -> ty.Dict:
"""Run the `wannier90 qp`."""
inputs = self.prepare_wannier90_qp_inputs()
inputs.metadata.call_link_label = "wannier90_qp"
inputs = prepare_process_inputs(Wannier90BaseWorkChain, inputs)
running = self.submit(Wannier90BaseWorkChain, **inputs)
self.report(f"launching {running.process_label}<{running.pk}> for wannier90_qp")
return ToContext(wkchain_wannier90_qp=running)
def inspect_wannier90_qp( # pylint: disable=inconsistent-return-statements
self,
) -> ty.Union[None, ExitCode]:
"""Verify that the `Wannier90BaseWorkChain` successfully finished."""
wkchain = self.ctx.wkchain_wannier90_qp
if not wkchain.is_finished_ok:
self.report(
f"{wkchain.process_label} failed with exit status {wkchain.exit_status}"
)
return self.exit_codes.ERROR_SUB_PROCESS_FAILED_WANNIER90_QP
def results(self) -> None:
"""Attach the relevant output nodes."""
if "wkchain_yambo_conv" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_yambo_conv,
YamboConvergence,
namespace="yambo",
)
)
if "wkchain_yambo_commensurate" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_yambo_commensurate,
YamboWorkflow,
namespace="yambo_commensurate",
)
)
if "wkchain_yambo_qp" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_yambo_qp,
YamboRestart,
namespace="yambo_qp",
)
)
if "wkchain_wannier90_pp" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_wannier90_pp,
Wannier90BaseWorkChain,
namespace="wannier90_pp",
)
)
if "wkchain_ypp" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_ypp,
YppRestart,
namespace="ypp",
)
)
if "wkchain_wannier90" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_wannier90,
Wannier90OptimizeWorkChain,
namespace="wannier90",
)
)
if "calc_gw2wannier90" in self.ctx:
self.out_many(
self.exposed_outputs(
self.ctx.calc_gw2wannier90,
Gw2wannier90Calculation,
namespace="gw2wannier90",
)
)
self.out_many(
self.exposed_outputs(
self.ctx.wkchain_wannier90_qp,
Wannier90BaseWorkChain,
namespace="wannier90_qp",
)
)
if self.should_run_wannier90():
bands_w90 = self.outputs["wannier90"]["band_structure"]
self.out("band_structures.wannier90", bands_w90)
bands_w90qp = self.outputs["wannier90_qp"]["interpolated_bands"]
self.out("band_structures.wannier90_qp", bands_w90qp)
self.report(f"{self.get_name()} successfully completed")
def on_terminated(self):
"""Clean the working directories of all child calculations if `clean_workdir=True` in the inputs."""
super().on_terminated()
if not self.inputs.clean_workdir:
self.report("remote folders will not be cleaned")
return
cleaned_calcs = []
for called_descendant in self.node.called_descendants:
if isinstance(called_descendant, orm.CalcJobNode):
try:
called_descendant.outputs.remote_folder._clean() # pylint: disable=protected-access
cleaned_calcs.append(called_descendant.pk)
except (OSError, KeyError):
pass
if cleaned_calcs:
self.report(
f"cleaned remote folders of calculations: {' '.join(map(str, cleaned_calcs))}"
)
| 0 | 0 | 0 |
c2388909aeb1b544e29775aad8f649fbd2155007 | 1,413 | py | Python | test/file_length_test.py | CheckiePy/CheckiePyCore | 475ae75c4a30e4d7444fef218ffa7928fd4df4e2 | [
"MIT"
] | 2 | 2017-08-27T15:04:09.000Z | 2017-08-27T21:05:44.000Z | test/file_length_test.py | acsproj/acscore | 475ae75c4a30e4d7444fef218ffa7928fd4df4e2 | [
"MIT"
] | 2 | 2017-07-27T13:51:44.000Z | 2017-08-05T06:54:10.000Z | test/file_length_test.py | CheckiePy/CheckiePyCore | 475ae75c4a30e4d7444fef218ffa7928fd4df4e2 | [
"MIT"
] | 3 | 2017-05-31T21:20:18.000Z | 2017-08-03T20:16:47.000Z | import unittest
from unittest.mock import patch
from unittest.mock import mock_open
from acscore import metrics
| 31.4 | 100 | 0.599434 | import unittest
from unittest.mock import patch
from unittest.mock import mock_open
from acscore import metrics
class FileLengthTest(unittest.TestCase):
def setUp(self):
self.file_length = metrics.FileLength()
self.data = {'5': 10, '35': 5, '100': 4, '105': 6}
def test_count(self):
with patch('acscore.metric.file_length.open', mock_open(read_data='hello\n\n\n\n\world\n')):
result = self.file_length.count('')
self.assertEqual({'5': 1}, result)
def test_discretize(self):
result = self.file_length.discretize(self.data)
expected = {
'From0To40': 0.6,
'From41To200': 0.4,
'From201To600': 0.0,
'From601To1500': 0.0,
'From1501To5000': 0.0,
'From5000ToInf': 0.0,
}
self.assertEqual(expected, result)
def test_inspect(self):
# Test with ok file
discrete = self.file_length.discretize(self.data)
result1 = self.file_length.inspect(discrete, {'10': 1})
self.assertEqual({}, result1)
# Test with too long file
result2 = self.file_length.inspect(discrete, {'1000': 1})
expected = {
metrics.FileLength.TOO_MANY_LINES: {
'message': metrics.FileLength.inspections[metrics.FileLength.TOO_MANY_LINES]
}
}
self.assertEqual(expected, result2)
| 1,149 | 19 | 130 |
427037851f7b1122a9ab4c11e0ee49024ff39e56 | 850 | py | Python | src/biz/item.py | emarinizquierdo/gae-vue-flask-starter | 0fb504653f9391bccd25cc9df1ec1326f1dae159 | [
"MIT"
] | null | null | null | src/biz/item.py | emarinizquierdo/gae-vue-flask-starter | 0fb504653f9391bccd25cc9df1ec1326f1dae159 | [
"MIT"
] | null | null | null | src/biz/item.py | emarinizquierdo/gae-vue-flask-starter | 0fb504653f9391bccd25cc9df1ec1326f1dae159 | [
"MIT"
] | null | null | null | import logging
from google.appengine.ext import ndb
from flask_restplus import abort
from src.beans.item import Item
import uuid
| 15.454545 | 74 | 0.603529 | import logging
from google.appengine.ext import ndb
from flask_restplus import abort
from src.beans.item import Item
import uuid
def create(args):
if(not args.get('id', False)):
args['id'] = str(uuid.uuid4())
item = Item(
**args
)
item.key = ndb.Key(Item, args['id'])
item.put()
return item
def update(id, args):
get(id)
args['id'] = id
return create(args)
def get(id):
item = ndb.Key(Item, id).get()
if(item is None):
abort(404, 'Item not found')
return item
def list(offset, page_size):
items = Item.query().order(Item.title).fetch(page_size, offset=offset)
return items
def delete(id):
item_key = ndb.Key(Item, id)
item = item_key.get()
if(item is None):
abort(404, 'Item not found')
item_key.delete()
return None | 604 | 0 | 115 |
60cd8f0f69befb4da854068b393a74d0e5e25a9d | 2,691 | py | Python | mysql_tracer/args_parser.py | anthonyrichir/py-mysql-tracer | bd6623781d8af3ffc4fb0f7cbd4c7deffc55c8d0 | [
"MIT"
] | 1 | 2020-11-23T14:30:53.000Z | 2020-11-23T14:30:53.000Z | mysql_tracer/args_parser.py | anthonyrichir/py-mysql-tracer | bd6623781d8af3ffc4fb0f7cbd4c7deffc55c8d0 | [
"MIT"
] | 3 | 2019-03-11T08:35:26.000Z | 2021-02-04T16:01:45.000Z | mysql_tracer/args_parser.py | anthonyrichir/py-mysql-tracer | bd6623781d8af3ffc4fb0f7cbd4c7deffc55c8d0 | [
"MIT"
] | 1 | 2020-04-18T19:55:43.000Z | 2020-04-18T19:55:43.000Z | """
CLI script to run MySQL SELECT statements
It produces a copy of provided file with additional metadata and an export of results in CSV format
"""
import argparse
def get_main_args_parser(parents, defaults):
"""
Parser for the arguments required to run mysql_tracer.
:param parents: a list of parent argument parsers. They must NOT define a help option or else they will clash.
:param defaults: a dictionary with default values. All actions with default values are set to not required.
:return: an argument parser
"""
parser = argparse.ArgumentParser(parents=parents + [get_database_args_parser()],
description=__doc__,
formatter_class=argparse.RawTextHelpFormatter)
parser.set_defaults(**{
'port': 3306,
**defaults
})
query = parser.add_argument_group(title='Queries')
query.add_argument('query', nargs='+', help='Path to a file containing a single sql statement')
export = parser.add_argument_group(title='Export')
excl_actions = export.add_mutually_exclusive_group()
excl_actions.add_argument('-d', '--destination', help='Directory where to export results')
excl_actions.add_argument('--display', action='store_true', help='Do not export results but display them to stdout')
# noinspection PyProtectedMember
for action in parser._actions:
if action.required and action.default is not None:
action.required = False
return parser
def get_log_args_parser():
"""
Parser for the arguments required to set logger level
:return: an argument parser
"""
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument('--log-level', choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'],
help='Verbosity level of the logger')
return parser | 38.442857 | 120 | 0.680788 | """
CLI script to run MySQL SELECT statements
It produces a copy of provided file with additional metadata and an export of results in CSV format
"""
import argparse
def get_main_args_parser(parents, defaults):
"""
Parser for the arguments required to run mysql_tracer.
:param parents: a list of parent argument parsers. They must NOT define a help option or else they will clash.
:param defaults: a dictionary with default values. All actions with default values are set to not required.
:return: an argument parser
"""
parser = argparse.ArgumentParser(parents=parents + [get_database_args_parser()],
description=__doc__,
formatter_class=argparse.RawTextHelpFormatter)
parser.set_defaults(**{
'port': 3306,
**defaults
})
query = parser.add_argument_group(title='Queries')
query.add_argument('query', nargs='+', help='Path to a file containing a single sql statement')
export = parser.add_argument_group(title='Export')
excl_actions = export.add_mutually_exclusive_group()
excl_actions.add_argument('-d', '--destination', help='Directory where to export results')
excl_actions.add_argument('--display', action='store_true', help='Do not export results but display them to stdout')
# noinspection PyProtectedMember
for action in parser._actions:
if action.required and action.default is not None:
action.required = False
return parser
def get_database_args_parser():
parser = argparse.ArgumentParser(add_help=False)
db = parser.add_argument_group(title='Database')
db.add_argument('--host', required=True, help='MySQL server host')
db.add_argument('--port', type=int, help='MySQL server port')
db.add_argument('--user', required=True, help='MySQL database user')
db.add_argument('--database', help='MySQL database name')
pwd = parser.add_argument_group(title='Password')
pwd.add_argument('-a', '--ask-password', action='store_true',
help='Ask password; do not try to retrieve password from keyring')
pwd.add_argument('-s', '--store-password', action='store_true',
help='Store password into keyring after connecting to the database')
return parser
def get_log_args_parser():
"""
Parser for the arguments required to set logger level
:return: an argument parser
"""
parser = argparse.ArgumentParser(add_help=False)
parser.add_argument('--log-level', choices=['DEBUG', 'INFO', 'WARNING', 'ERROR', 'CRITICAL'],
help='Verbosity level of the logger')
return parser | 775 | 0 | 23 |
98ef60af778a5360bdf3cd003a34205063618009 | 614 | py | Python | desafio010.py | marcelocmedeiros/RevisaoPython | 04c602bf17e8ab37c9660337a8f8497eb498e10d | [
"MIT"
] | null | null | null | desafio010.py | marcelocmedeiros/RevisaoPython | 04c602bf17e8ab37c9660337a8f8497eb498e10d | [
"MIT"
] | null | null | null | desafio010.py | marcelocmedeiros/RevisaoPython | 04c602bf17e8ab37c9660337a8f8497eb498e10d | [
"MIT"
] | null | null | null | # Marcelo Campos de Medeiros
# ADS UNIFIP
# REVISÃO DE PYTHON
# AULA 07 GUSTAVO GUANABARA
'''
Faça um programa que leia quanto dinheiro uma pessoa tem e mostre o valor em dolares.
Considerando o dolar U$ 1.00 == R$4.50
'''
print('='*30)
print('{:$^30}'.format(' DOLARES '))
print('='*30)
valor = float(input('Qual valor em Real deseja converter em Dolar:'))
dolar = valor / 4.50
print('Você informou R$ {:.2f} reais que no valor do câmbio de hoje é U$ {:.2f} dolares'.format(valor, dolar))
print('Você informou R$ {:.2f} reais que no valor do câmbio de hoje é U$ {:.2f} dolares'.format(valor, valor/4.50)) | 30.7 | 115 | 0.680782 | # Marcelo Campos de Medeiros
# ADS UNIFIP
# REVISÃO DE PYTHON
# AULA 07 GUSTAVO GUANABARA
'''
Faça um programa que leia quanto dinheiro uma pessoa tem e mostre o valor em dolares.
Considerando o dolar U$ 1.00 == R$4.50
'''
print('='*30)
print('{:$^30}'.format(' DOLARES '))
print('='*30)
valor = float(input('Qual valor em Real deseja converter em Dolar:'))
dolar = valor / 4.50
print('Você informou R$ {:.2f} reais que no valor do câmbio de hoje é U$ {:.2f} dolares'.format(valor, dolar))
print('Você informou R$ {:.2f} reais que no valor do câmbio de hoje é U$ {:.2f} dolares'.format(valor, valor/4.50)) | 0 | 0 | 0 |
f311daaedf6efa986a65ec10a800fd4a629bcf04 | 2,016 | py | Python | aramPredict/aramRecorder.py | beeedy/LOL | 95ed815593a25e7e86d106ddf20e2ce054709ad1 | [
"MIT"
] | null | null | null | aramPredict/aramRecorder.py | beeedy/LOL | 95ed815593a25e7e86d106ddf20e2ce054709ad1 | [
"MIT"
] | null | null | null | aramPredict/aramRecorder.py | beeedy/LOL | 95ed815593a25e7e86d106ddf20e2ce054709ad1 | [
"MIT"
] | null | null | null | import urllib2
import simplejson
import time
from BeautifulSoup import BeautifulSoup
allGames = []
lastGame = []
try:
with open('aramGames.txt', 'r') as gameFile:
allGames = simplejson.load(gameFile)
lastGame = allGames[-1]
except:
print("Could not find list of previously recorded games, making new file now...")
while True:
#this is the URL for lolnexus' most recent ARAM's
games = []
num1game = []
for i in range(1, 5):
# get games from all the pages!
soup = BeautifulSoup(urllib2.urlopen("http://www.lolnexus.com/recent-games?filter-region=1&filter-game-map=7&filter-queue-type=12&filter-sort=2&page={}".format(i)))
tempGames = soup.body.findAll('div', {'class' : 'game-body'})
for temp in tempGames:
games.append(temp)
print("Checking for new games...")
for i in range(len(games)):
game = games[i]
team1 = game.findAll('div', {'class' : 'team-1'})[0]
team2 = game.findAll('div', {'class' : 'team-2'})[0]
team1 = [[a.i['title'], a.h4.findAll(text=True)[0]] for a in team1.findAll('div', {'class' : 'player'})]
team2 = [[a.i['title'], a.h4.findAll(text=True)[0]] for a in team2.findAll('div', {'class' : 'player'})]
teams = [team1, team2]
if i == 0:
# this is the most recent game, record it so we know when to stop next time
num1game = teams
if not compare_games(teams, lastGame):
# make sure we don't already have this game recorded
allGames.append(teams)
else:
break
print("Recorded new game! Currently saved {} games".format(len(allGames)))
lastGame = num1game
with open('aramGames.txt', 'w') as gameFile:
simplejson.dump(allGames, gameFile)
time.sleep(20)
| 29.217391 | 166 | 0.681052 | import urllib2
import simplejson
import time
from BeautifulSoup import BeautifulSoup
allGames = []
lastGame = []
def compare_games(game1, game2):
# returns true if the two game are the same, otherwise false
game1 = [name for teams in game1 for player in teams for name in player]
game2 = [name for teams in game2 for player in teams for name in player]
if len(game1) != len(game2):
return False
for i in range(len(game1)):
if game1[i] != game2[i]:
return False
return True
try:
with open('aramGames.txt', 'r') as gameFile:
allGames = simplejson.load(gameFile)
lastGame = allGames[-1]
except:
print("Could not find list of previously recorded games, making new file now...")
while True:
#this is the URL for lolnexus' most recent ARAM's
games = []
num1game = []
for i in range(1, 5):
# get games from all the pages!
soup = BeautifulSoup(urllib2.urlopen("http://www.lolnexus.com/recent-games?filter-region=1&filter-game-map=7&filter-queue-type=12&filter-sort=2&page={}".format(i)))
tempGames = soup.body.findAll('div', {'class' : 'game-body'})
for temp in tempGames:
games.append(temp)
print("Checking for new games...")
for i in range(len(games)):
game = games[i]
team1 = game.findAll('div', {'class' : 'team-1'})[0]
team2 = game.findAll('div', {'class' : 'team-2'})[0]
team1 = [[a.i['title'], a.h4.findAll(text=True)[0]] for a in team1.findAll('div', {'class' : 'player'})]
team2 = [[a.i['title'], a.h4.findAll(text=True)[0]] for a in team2.findAll('div', {'class' : 'player'})]
teams = [team1, team2]
if i == 0:
# this is the most recent game, record it so we know when to stop next time
num1game = teams
if not compare_games(teams, lastGame):
# make sure we don't already have this game recorded
allGames.append(teams)
else:
break
print("Recorded new game! Currently saved {} games".format(len(allGames)))
lastGame = num1game
with open('aramGames.txt', 'w') as gameFile:
simplejson.dump(allGames, gameFile)
time.sleep(20)
| 353 | 0 | 23 |
600010543b450b662f293eb38c61a1d45a1f1435 | 1,691 | py | Python | higher_lower_game/server.py | NozomuYoshida/flask_training | bfad76dbecfdee66063e8d2e556002f0e41cf3e7 | [
"MIT"
] | null | null | null | higher_lower_game/server.py | NozomuYoshida/flask_training | bfad76dbecfdee66063e8d2e556002f0e41cf3e7 | [
"MIT"
] | null | null | null | higher_lower_game/server.py | NozomuYoshida/flask_training | bfad76dbecfdee66063e8d2e556002f0e41cf3e7 | [
"MIT"
] | null | null | null | from flask import Flask
from random import randint
app = Flask(__name__)
@app.route('/')
@make_h1
target_number = randint(1, 10)
@app.route('/<int:input_number>')
# Decorator doesn't work so it's uncommented
# @make_h1
if __name__ == '__main__':
app.run(debug=True)from flask import Flask
from random import randint
app = Flask(__name__)
@app.route('/')
@make_h1
target_number = randint(1, 10)
@app.route('/<int:input_number>')
# Decorator doesn't work so it's uncommented
# @make_h1
if __name__ == '__main__':
app.run(debug=True)
| 22.25 | 95 | 0.661147 | from flask import Flask
from random import randint
app = Flask(__name__)
def make_h1(fn):
def wrapper(*args):
return '<h1>' + fn() + '</h1>'
wrapper.__name__ = fn.__name__
return wrapper
@app.route('/')
@make_h1
def home():
return 'Guess a number between 0 and 9<br>' \
'<img src="https://media.giphy.com/media/3o7aCSPqXE5C6T8tBC/giphy.gif" witdh=200px>'
target_number = randint(1, 10)
@app.route('/<int:input_number>')
# Decorator doesn't work so it's uncommented
# @make_h1
def show_result(input_number):
if input_number == target_number:
return f'You are right! {target_number} is the answer!'
elif input_number > target_number:
return f'It"s higher!'
elif input_number < target_number:
return f'It"s lower!'
if __name__ == '__main__':
app.run(debug=True)from flask import Flask
from random import randint
app = Flask(__name__)
def make_h1(fn):
def wrapper(*args):
return '<h1>' + fn() + '</h1>'
wrapper.__name__ = fn.__name__
return wrapper
@app.route('/')
@make_h1
def home():
return 'Guess a number between 0 and 9<br>' \
'<img src="https://media.giphy.com/media/3o7aCSPqXE5C6T8tBC/giphy.gif" witdh=200px>'
target_number = randint(1, 10)
@app.route('/<int:input_number>')
# Decorator doesn't work so it's uncommented
# @make_h1
def show_result(input_number):
if input_number == target_number:
return f'You are right! {target_number} is the answer!'
elif input_number > target_number:
return f'It"s higher!'
elif input_number < target_number:
return f'It"s lower!'
if __name__ == '__main__':
app.run(debug=True)
| 996 | 0 | 134 |
d0c445a81d6ae8b0686f0f1e383ba4a8862e94b4 | 349 | py | Python | tester.py | justinmilner1/Connect4-master | 9cd16b1c23c5a0de07177dd332e53d4574269d28 | [
"MIT"
] | null | null | null | tester.py | justinmilner1/Connect4-master | 9cd16b1c23c5a0de07177dd332e53d4574269d28 | [
"MIT"
] | null | null | null | tester.py | justinmilner1/Connect4-master | 9cd16b1c23c5a0de07177dd332e53d4574269d28 | [
"MIT"
] | null | null | null | import sys
from kaggle_environments import evaluate, make, utils
out = sys.stdout
submission = utils.read_file("/kaggle/working/main.py")
agent = utils.get_last_callable(submission)
sys.stdout = out
env = make("connectx", debug=True)
env.run([agent, agent])
print("Success!" if env.state[0].status == env.state[1].status == "DONE" else "Failed...") | 34.9 | 90 | 0.73639 | import sys
from kaggle_environments import evaluate, make, utils
out = sys.stdout
submission = utils.read_file("/kaggle/working/main.py")
agent = utils.get_last_callable(submission)
sys.stdout = out
env = make("connectx", debug=True)
env.run([agent, agent])
print("Success!" if env.state[0].status == env.state[1].status == "DONE" else "Failed...") | 0 | 0 | 0 |
7c1a85ac0c22e9d1447e5461c289ad2158878198 | 2,988 | py | Python | lockheed_141310/routes/auth.py | Dr-N0/MASA-141310 | a0eed9f97c730ebe8c3e3455fa501b2fc72cf101 | [
"MIT"
] | null | null | null | lockheed_141310/routes/auth.py | Dr-N0/MASA-141310 | a0eed9f97c730ebe8c3e3455fa501b2fc72cf101 | [
"MIT"
] | null | null | null | lockheed_141310/routes/auth.py | Dr-N0/MASA-141310 | a0eed9f97c730ebe8c3e3455fa501b2fc72cf101 | [
"MIT"
] | null | null | null | from flask import Blueprint, request, jsonify
from flask_jwt_extended import create_access_token, create_refresh_token, set_access_cookies, set_refresh_cookies, \
jwt_required, jwt_refresh_token_required, get_jwt_identity, get_raw_jwt
from flask_cors import cross_origin
from lockheed_141310 import blacklist
from lockheed_141310.utils import authenticate
from lockheed_141310.models import Users
auth_bp = Blueprint('auth', __name__)
@auth_bp.route('/login', methods=['POST'])
@cross_origin(supports_credentials=True)
def login():
"""
Validates a user given their username and password in a json, and returns an httponly cookie with an access token
and a refresh token.
"""
if not request.is_json:
return jsonify({"status": "error",
"message": "missing json in request"}), 422
username = request.json.get('username', None)
password = request.json.get('password', None)
if not username:
return jsonify({"status": "error",
"message": "missing username parameter"}), 422
if not password:
return jsonify({"status": "error",
"message": "missing password parameter"}), 422
if not authenticate(username, password):
return jsonify({"status": "error",
"message": "invalid credentials"}), 422
user = Users.query.filter_by(username=username).first()
if not user.active and not user.owner:
return jsonify({
"status": "error",
"message": "Account not activated"
}), 422
access_token = create_access_token(identity=user)
refresh_token = create_refresh_token(identity=user)
resp = jsonify({"status": "success"})
set_access_cookies(resp, access_token)
set_refresh_cookies(resp, refresh_token)
return resp, 200
@auth_bp.route('/refresh', methods=['POST'])
@jwt_refresh_token_required
@cross_origin(supports_credentials=True)
def refresh():
"""
Checks for a refresh token and then hands the user a valid access token
"""
current_username = get_jwt_identity()
current_user = Users.query.filter_by(username=current_username).first()
access_token = create_access_token(identity=current_user)
resp = jsonify({"status": "success"})
set_access_cookies(resp, access_token)
return resp, 200
@auth_bp.route('/logout', methods=['DELETE'])
@jwt_required
@cross_origin(supports_credentials=True)
def logout():
"""
Invalidates the user's access token
:TODO: make the blacklist some kind of persistent storage, otherwise we can't have multiple workers
"""
jti = get_raw_jwt()['jti']
blacklist.add(jti)
print(blacklist)
return jsonify({"status": "success",
"message": "token successfully revoked"}), 200
@auth_bp.route('/check', methods=['GET'])
@jwt_required
@cross_origin(supports_credentials=True)
| 33.954545 | 117 | 0.683066 | from flask import Blueprint, request, jsonify
from flask_jwt_extended import create_access_token, create_refresh_token, set_access_cookies, set_refresh_cookies, \
jwt_required, jwt_refresh_token_required, get_jwt_identity, get_raw_jwt
from flask_cors import cross_origin
from lockheed_141310 import blacklist
from lockheed_141310.utils import authenticate
from lockheed_141310.models import Users
auth_bp = Blueprint('auth', __name__)
@auth_bp.route('/login', methods=['POST'])
@cross_origin(supports_credentials=True)
def login():
"""
Validates a user given their username and password in a json, and returns an httponly cookie with an access token
and a refresh token.
"""
if not request.is_json:
return jsonify({"status": "error",
"message": "missing json in request"}), 422
username = request.json.get('username', None)
password = request.json.get('password', None)
if not username:
return jsonify({"status": "error",
"message": "missing username parameter"}), 422
if not password:
return jsonify({"status": "error",
"message": "missing password parameter"}), 422
if not authenticate(username, password):
return jsonify({"status": "error",
"message": "invalid credentials"}), 422
user = Users.query.filter_by(username=username).first()
if not user.active and not user.owner:
return jsonify({
"status": "error",
"message": "Account not activated"
}), 422
access_token = create_access_token(identity=user)
refresh_token = create_refresh_token(identity=user)
resp = jsonify({"status": "success"})
set_access_cookies(resp, access_token)
set_refresh_cookies(resp, refresh_token)
return resp, 200
@auth_bp.route('/refresh', methods=['POST'])
@jwt_refresh_token_required
@cross_origin(supports_credentials=True)
def refresh():
"""
Checks for a refresh token and then hands the user a valid access token
"""
current_username = get_jwt_identity()
current_user = Users.query.filter_by(username=current_username).first()
access_token = create_access_token(identity=current_user)
resp = jsonify({"status": "success"})
set_access_cookies(resp, access_token)
return resp, 200
@auth_bp.route('/logout', methods=['DELETE'])
@jwt_required
@cross_origin(supports_credentials=True)
def logout():
"""
Invalidates the user's access token
:TODO: make the blacklist some kind of persistent storage, otherwise we can't have multiple workers
"""
jti = get_raw_jwt()['jti']
blacklist.add(jti)
print(blacklist)
return jsonify({"status": "success",
"message": "token successfully revoked"}), 200
@auth_bp.route('/check', methods=['GET'])
@jwt_required
@cross_origin(supports_credentials=True)
def check():
return jsonify({
"status": "success"
}), 200
| 52 | 0 | 22 |
585a08a14e6d487f754e1a15bfaed5ccfa344e19 | 185 | py | Python | djaveLogin/superuser_required.py | dasmith2/djaveLogin | 22841cf79eed2b866b69dca7cfd148575c74abc3 | [
"MIT"
] | null | null | null | djaveLogin/superuser_required.py | dasmith2/djaveLogin | 22841cf79eed2b866b69dca7cfd148575c74abc3 | [
"MIT"
] | null | null | null | djaveLogin/superuser_required.py | dasmith2/djaveLogin | 22841cf79eed2b866b69dca7cfd148575c74abc3 | [
"MIT"
] | null | null | null | from djaveLogin.base_login_decorator import base_login_decorator
| 26.428571 | 64 | 0.843243 | from djaveLogin.base_login_decorator import base_login_decorator
class superuser_required(base_login_decorator):
def is_allowed(self, request):
return request.user.is_superuser
| 46 | 26 | 47 |
ff5eba1c8bf80a95e3804ac827016ae303fac31a | 1,000 | py | Python | hypixelio/models/recent_games/recent_games.py | FoxNerdSaysMoo/HypixelIO | aca8fd6535c0afb2bb733172db2dcbd68590118d | [
"MIT"
] | 16 | 2020-10-28T01:49:31.000Z | 2022-03-13T23:19:31.000Z | hypixelio/models/recent_games/recent_games.py | FoxNerdSaysMoo/HypixelIO | aca8fd6535c0afb2bb733172db2dcbd68590118d | [
"MIT"
] | 20 | 2021-03-17T07:32:14.000Z | 2022-03-07T02:48:00.000Z | hypixelio/models/recent_games/recent_games.py | FoxNerdSaysMoo/HypixelIO | aca8fd6535c0afb2bb733172db2dcbd68590118d | [
"MIT"
] | 5 | 2020-10-21T13:53:27.000Z | 2021-09-02T15:47:45.000Z | import typing as t
from .recent_game_info import RecentGameInfo
| 25 | 69 | 0.592 | import typing as t
from .recent_game_info import RecentGameInfo
class RecentGames:
def __init__(self, data: dict) -> None:
"""
Parameters
----------
data: dict
The JSON data received from the Hypixel API.
"""
self.UUID = data["uuid"]
self.GAMES = [RecentGameInfo(game) for game in data["games"]]
def __len__(self) -> int:
return len(self.GAMES)
def __getitem__(self, key: int) -> RecentGameInfo:
return self.GAMES[key]
def __setitem__(self, key: int, value: RecentGameInfo) -> None:
self.GAMES[key] = value
def __iter__(self) -> t.Iterator:
return iter(self.GAMES)
def __str__(self) -> str:
return self.UUID
def __repr__(self) -> str:
return f'<{self.__class__.__name__} uuid="{self.UUID}">'
def __hash__(self) -> int:
return hash(self.UUID)
def __eq__(self, other: "RecentGames") -> bool:
return self.UUID == other.UUID
| 413 | 498 | 23 |
d2afdcdf348b346003031b19b7ad92ffebb3c6bd | 3,785 | py | Python | io_scene_halo/file_qua/import_qua.py | AerialDave144/Halo-Asset-Blender-Development-Toolset | f1b0c0b22806ebabaf0126ad864896193c02307f | [
"MIT"
] | 36 | 2020-11-29T04:36:19.000Z | 2022-03-16T22:54:45.000Z | io_scene_halo/file_qua/import_qua.py | AerialDave144/Halo-Asset-Blender-Development-Toolset | f1b0c0b22806ebabaf0126ad864896193c02307f | [
"MIT"
] | 18 | 2020-05-24T07:07:55.000Z | 2020-08-24T20:34:14.000Z | io_scene_halo/file_qua/import_qua.py | AerialDave144/Halo-Asset-Blender-Development-Toolset | f1b0c0b22806ebabaf0126ad864896193c02307f | [
"MIT"
] | 15 | 2020-12-02T13:28:52.000Z | 2022-03-12T00:14:10.000Z | # ##### BEGIN MIT LICENSE BLOCK #####
#
# MIT License
#
# Copyright (c) 2021 Steven Garcia
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# ##### END MIT LICENSE BLOCK #####
import bpy
from ..global_functions import global_functions
if __name__ == '__main__':
bpy.ops.import_scene.qua()
| 33.495575 | 144 | 0.632232 | # ##### BEGIN MIT LICENSE BLOCK #####
#
# MIT License
#
# Copyright (c) 2021 Steven Garcia
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# ##### END MIT LICENSE BLOCK #####
import bpy
from ..global_functions import global_functions
class QUAAsset(global_functions.HaloAsset):
class Scene:
def __init__(self, version, name):
self.version = version
self.name = name
class Units:
def __init__(self, name, path, bit_0, bit_1, bit_2):
self.name = name
self.path = path
self.bit_0 = bit_0
self.bit_1 = bit_1
self.bit_2 = bit_2
class Scenery:
def __init__(self, name, path, bit_0, bit_1, bit_2):
self.name = name
self.path = path
self.bit_0 = bit_0
self.bit_1 = bit_1
self.bit_2 = bit_2
class EffectsScenery:
def __init__(self, name, path, bit_0, bit_1, bit_2):
self.name = name
self.path = path
self.bit_0 = bit_0
self.bit_1 = bit_1
self.bit_2 = bit_2
class Shots:
def __init__(self, frames, audio_data):
self.frames = frames
self.audio_data = audio_data
class ExtraShots:
def __init__(self, frames, audio_data):
self.frames = frames
self.audio_data = audio_data
class Frames:
def __init__(self, position, up, forward, fov, aperture, focal_length, depth_of_field, near_focal, far_focal, focal_depth, blur_amount):
self.position = position
self.up = up
self.forward = forward
self.fov = fov
self.aperture = aperture
self.focal_length = focal_length
self.depth_of_field = depth_of_field
self.near_focal = near_focal
self.far_focal = far_focal
self.focal_depth = focal_depth
self.blur_amount = blur_amount
class AudioData:
def __init__(self, filepath, frame, name):
self.filepath = filepath
self.frame = frame
self.name = name
def __init__(self, context):
self.version = 5
self.name = "placeholder"
self.shots = []
self.units = []
self.scenery = []
self.effects_scenery = []
self.extra_cameras = []
self.extra_shots = []
if self.left() != 0: # is something wrong with the parser?
raise RuntimeError("%s elements left after parse end" % self.left())
def load_file(context, filepath, report):
ass_file = QUAAsset(filepath)
report({'INFO'}, "Import completed successfully")
return {'FINISHED'}
if __name__ == '__main__':
bpy.ops.import_scene.qua()
| 1,980 | 453 | 46 |
c2cb8e361edb618da72b97d79636d8f17f5e347a | 1,879 | py | Python | game.py | Laterus/Onzozo | d0e7cf61f2bffff808a1c6c6b27ec8f2b1733372 | [
"Apache-2.0"
] | null | null | null | game.py | Laterus/Onzozo | d0e7cf61f2bffff808a1c6c6b27ec8f2b1733372 | [
"Apache-2.0"
] | null | null | null | game.py | Laterus/Onzozo | d0e7cf61f2bffff808a1c6c6b27ec8f2b1733372 | [
"Apache-2.0"
] | null | null | null | #!/usr/local/bin/python3
import discord
import asyncio
import core.battle_lobby as battle_lobby
from core.common import SERVSET
CLIENT = discord.Client()
@CLIENT.event
@CLIENT.event
if __name__ == '__main__':
main()
| 28.044776 | 63 | 0.588079 | #!/usr/local/bin/python3
import discord
import asyncio
import core.battle_lobby as battle_lobby
from core.common import SERVSET
CLIENT = discord.Client()
@CLIENT.event
async def on_ready():
print ('Logged in as '+CLIENT.user.name)
await setup_battle_lobby()
@CLIENT.event
async def on_reaction_add(reaction, user):
pass
async def setup_battle_lobby():
@CLIENT.event
async def on_message(message):
if not message.channel.name == 'battle_lobby':
return
if message.content.startswith('//'):
BTLLOB.cmdparse(message)
await message.delete()
else:
if message.author != CLIENT.user:
await message.delete()
G = CLIENT.get_guild(SERVSET['server']['id'])
for category in G.categories:
if category.name == 'Onzozo':
C = category
for chan in C.channels:
if chan.name == 'battle_lobby':
BTLLOBCHAN = chan
BTLLOB = battle_lobby.battle_lobby()
await BTLLOBCHAN.purge()
TOPMSG = await BTLLOBCHAN.send(embed=BTLLOB.top_help_msg())
while True:
STATUS = BTLLOB.get_lobby_status()
async for msg in BTLLOBCHAN.history():
try:
PID = msg.embeds[0].author.name.split(' ')[0]
except (ValueError, IndexError):
pass
if PID not in STATUS.keys():
if not msg.id == TOPMSG.id:
await msg.delete()
elif PID in STATUS.keys():
print (PID)
await msg.edit(embed=STATUS.pop(PID))
for pid, emb in STATUS.items():
await BTLLOBCHAN.send(embed=STATUS[pid])
await asyncio.sleep(2)
def main():
for line in open(SERVSET['tokenfile'], 'r'):
TOKEN = line.rstrip('\n')
CLIENT.run(TOKEN)
if __name__ == '__main__':
main()
| 1,564 | 0 | 90 |
4a627767e3c0444e52809ca3ac8b06284df2c7e6 | 7,989 | py | Python | setting - backup.py | robintptsai/ms101robin | 8b090d2e4795d8a7ac8bb6011b0704c40cb8af86 | [
"MIT"
] | null | null | null | setting - backup.py | robintptsai/ms101robin | 8b090d2e4795d8a7ac8bb6011b0704c40cb8af86 | [
"MIT"
] | null | null | null | setting - backup.py | robintptsai/ms101robin | 8b090d2e4795d8a7ac8bb6011b0704c40cb8af86 | [
"MIT"
] | null | null | null | # -*- coding: utf-8 -*-
from datetime import timedelta
from os import environ
import re
from urllib import quote
DOODLE_VERSION = '1.4' # current Doodle version
CHECK_NEW_VERSION = True # whether check the latest version
THREAD_SAFE = environ.get('APPENGINE_RUNTIME') == 'python27' # whether enable thread safe mode, no need to change
APPID = environ['APPLICATION_ID'] # application ID, no need to change
IS_PRODUCTION_SERVER = not APPID.startswith('dev~') # whether in production server, no need to change
CURRENT_VERSION_ID = environ['CURRENT_VERSION_ID'] # deployed version id, no need to change
BLOG_TITLE = u'' # blog title
BLOG_SUB_TITLE = u''# blog sub title
BLOG_DESCRIPTION = BLOG_SUB_TITLE # blog description for feed
BLOG_AUTHOR = '' # blog author
MAJOR_DOMAIN = environ['HTTP_HOST'] # major domain, if you don't want to generate *.appspot.com domain, you can set it to your Google Apps domain
# eg:
# MAJOR_DOMAIN = environ['HTTP_HOST']
# MAJOR_DOMAIN = 'abcdegf.appspot.com'
# MAJOR_DOMAIN = 'www.abcdegf.com'
ONLY_USE_MAJOR_DOMAIN = False # whether only use major domain, if True, all requests of other domains will be redirect to the major domain
FEED_DOMAIN = '' # the domain of the feed, you can set it to a sub domain if you don't want to use a directory
MAJOR_HOST_URL = 'http://' + MAJOR_DOMAIN
if FEED_DOMAIN:
BLOG_FEED_URL = 'http://%s/' % FEED_DOMAIN # the blog article feed URL
BLOG_COMMENT_FEED_URL = 'http://%s/comment' % FEED_DOMAIN # the blog comment feed URL
else:
BLOG_FEED_URL = MAJOR_HOST_URL + '/feed'
BLOG_COMMENT_FEED_URL = MAJOR_HOST_URL + '/comment-feed'
QUOTED_BLOG_FEED_URL = quote(BLOG_FEED_URL, '')
BLOG_HOME_RELATIVE_PATH = '/' # the relative path of the blog home page, you can change it to '/blog/' or others
BLOG_HOME_FULL_URL = MAJOR_HOST_URL + BLOG_HOME_RELATIVE_PATH # # the full url of the blog home page
BLOG_WAP_RELATIVE_PATH = BLOG_HOME_RELATIVE_PATH + 'wap/' # the relative path of the blog wap page
BLOG_ADMIN_RELATIVE_PATH = BLOG_HOME_RELATIVE_PATH + 'admin/' # the relative path of the blog admin page
# if you modified above pathes, you should also change yaml files and previewParserPath of \static\markitup\sets\bbcode\set.js
SOCIAL_MEDIAS = [
{'icon': 'atom', 'url': '/comment-feed', 'title': 'subscribe comments', 'text': 'Comments Feed', 'rel': 'nofollow'}
] # social media links
NAV_LINKS = [
{'url': '/', 'text': 'Home', 'level': 1},
{'url': BLOG_WAP_RELATIVE_PATH, 'text': 'Wap', 'level': 1},
] # navigation bar links
LINKS = [
{'url': 'http://code.google.com/appengine/', 'text': 'Google App Engine', 'rel': 'nofollow'},
] # links for sidebar
GOOGLE_ANALYTICS_ID = '' # Google Analytics web property ID, leave it as empty if you don't use it
GOOGLE_CSE_ID = '' # Google Custom Search ID, left it as empty if you don't use it. You can get it from http://www.google.com/cse/manage/create
DISPLAY_PERFORMANCE_TO_EVERYONE = False # whether display the performance information for everyone. If False, only administrator can see it. Notice: enable it may make the user agent cannot reuse the cache since the ETag might be changed.
ADMIN_EMAIL = '' # admin email address for sending and receiving email
EMAIL_WRITERS = [ADMIN_EMAIL] # the mail list contains who are allowed to post articles by email
APP_SENDER = u'%s <no-reply@%s.appspotmail.com>' % (BLOG_TITLE, APPID) # for sending email to others
MAX_SEND_TO = 5 # Max allowed recipients per comment notification email. You can set it to 0 to disable notification. Note: If you doesn't enable billing, there is a quota that limited to 8 recipients/minute.
SEND_LEVEL = 1 | 2 # what knid of users can send notification email, see USER_FLAGS in model.py for available values
NOTIFY_WHEN_REPLY = True # whether send notification to admin when receive new comment
SEND_INTERVAL = 600 # the shortest sending interval in seconds (similarly hereafter). 0 means don't check the interval. During the interval, the admin will receive notification only once.
ADMIN_PASSWORD = '' # admin password for login Google Calendar to send SMS notification, using AuthSub to login if it's empty. Warning: it's not recommend to set password because you may take a risk of password leaking, so do keep your setting.py file safe and private.
NOTIFY_FEED_URL = 'http://www.google.com/calendar/feeds/default/private/full' # the feed path for Google Calendar, only available when using password to login.
LANGUAGE = 'en' # the main language your blog articles use
THEMES = ['null', 'iphonsta', 'freshpress'] # themes
JQUERY_VERSION = '1.7.1' # jQuery version
ZEPTO_VERSION = '0.8' # Zepto.js version
LOCAL_TIME_ZONE = '' # the time zone name defined in pytz, using LOCAL_TIME_DELTA if it's empty. Note: pytz can handle the daylight saving time, but slower. If you don't need this function, you can delete pytz folder to save the uploading time.
LOCAL_TIME_DELTA = timedelta(hours=8) # time difference between local time zone and UTC
DATE_FORMAT = '%Y-%m-%d' # date format
SECONDE_FORMAT = '%Y-%m-%d %H:%M:%S' # time format to second
MINUTE_FORMAT = '%Y-%m-%d %H:%M' # time format to minute
ARTICLES_PER_PAGE = 10 # articles per page
COMMENTS_PER_PAGE = 10 # comments per page
RELATIVE_ARTICLES = 5 # relative articles
ARTICLES_FOR_FEED = 10 # articles in feed
LATEST_COMMENTS_FOR_SIDEBAR = 5 # latest comments displayed at sidebar
LATEST_COMMENTS_LENGTH = 20 # the max words of each latest comments at sidebar
LATEST_COMMENTS_FOR_FEED = 10 # latest comments in comment feed
RECENT_TWEETS = 5 # recent tweets displayed at sidebar
ARTICLES_CACHE_TIME = 3600 # articles cache time, 0 means forever (not recommend).
ARTICLE_CACHE_TIME = 600 # single article cache time
FEED_CACHE_TIME = 3600 # feed cache time
SITEMAP_CACHE_TIME = 86400 # sitemap cache time
COMMENTS_CACHE_TIME = 600 # comments cache time
CATEGORY_CACHE_TIME = 86400 # category cache time
TAGS_CACHE_TIME = 86400 # tags cache time
SIDEBAR_BAR_CACHE_TIME = 600 # sidebar bar cache time
USER_CACHE_TIME = 0 # user data cache time
SUBSCRIBER_CACHE_TIME = 21600 # single feed subscribers cache time
SUBSCRIBERS_CACHE_TIME = 86400 # total feed subscribers cache time
COUNTER_TASK_DELAY = 200 # counter task delay time
CATEGORY_PATH_DELIMETER = ',' # category path delimeter, make sure your category name won't include this character. Don't change it latter.
SUMMARY_DELIMETER = re.compile(r'\r?\n\r?\n\[cut1\]\r?\n') # separate summary and content, the part before the delimeter is summary, the part without the delimeter is content
SUMMARY_DELIMETER2 = re.compile(r'\r?\n\r?\n\[cut2\]\r?\n') # separate summary and content, the part before the delimeter is summary, the part after the delimeter is content
# If an article has 2 kinds of delimeters, use the first kind. If an article has several delimeters, use the first one.
OUTPUT_FULLTEXT_FOR_FEED = True # whether output fulltext or summary for feed
if IS_PRODUCTION_SERVER:
HUBS = ['http://pubsubhubbub.appspot.com/'] # the PubSubHubbub server list, leave it as blank if you don't use it. See http://code.google.com/p/pubsubhubbub/wiki/Hubs for more details.
XML_RPC_ENDPOINTS = ['http://blogsearch.google.com/ping/RPC2', 'http://rpc.pingomatic.com/', 'http://ping.baidu.com/ping/RPC2'] # XML-RPC end points, leave it as blank if you don't use it.
else:
HUBS = []
XML_RPC_ENDPOINTS = []
ENABLE_TAG_CLOUD = True # whether enable tag cloud
REPLACE_SPECIAL_CHARACTERS_FOR_URL = False # whether replace ' ', '"', '<', '>', '&', '#', '%' to "-" when generating article URL
if REPLACE_SPECIAL_CHARACTERS_FOR_URL:
URL_SPECIAL_CHARACTERS = re.compile(r'[\s\"\'&#<>%]+')
URL_REPLACE_CHARACTER = '-'
ONLINE_VISITORS_EXPIRY_TIME = 600 # expiry time of online visitors, not counting it if it's not bigger than 0 (the responses will be a little faster)
# below settings is used for Twitter integration, see "Manage blog" - "Twitter" page for setting up details.
TWITTER_CONSUMER_KEY = '' # Twitter consumer key
TWITTER_CONSUMER_SECRET = '' # Twitter consumer secret
| 61.930233 | 269 | 0.758042 | # -*- coding: utf-8 -*-
from datetime import timedelta
from os import environ
import re
from urllib import quote
DOODLE_VERSION = '1.4' # current Doodle version
CHECK_NEW_VERSION = True # whether check the latest version
THREAD_SAFE = environ.get('APPENGINE_RUNTIME') == 'python27' # whether enable thread safe mode, no need to change
APPID = environ['APPLICATION_ID'] # application ID, no need to change
IS_PRODUCTION_SERVER = not APPID.startswith('dev~') # whether in production server, no need to change
CURRENT_VERSION_ID = environ['CURRENT_VERSION_ID'] # deployed version id, no need to change
BLOG_TITLE = u'' # blog title
BLOG_SUB_TITLE = u''# blog sub title
BLOG_DESCRIPTION = BLOG_SUB_TITLE # blog description for feed
BLOG_AUTHOR = '' # blog author
MAJOR_DOMAIN = environ['HTTP_HOST'] # major domain, if you don't want to generate *.appspot.com domain, you can set it to your Google Apps domain
# eg:
# MAJOR_DOMAIN = environ['HTTP_HOST']
# MAJOR_DOMAIN = 'abcdegf.appspot.com'
# MAJOR_DOMAIN = 'www.abcdegf.com'
ONLY_USE_MAJOR_DOMAIN = False # whether only use major domain, if True, all requests of other domains will be redirect to the major domain
FEED_DOMAIN = '' # the domain of the feed, you can set it to a sub domain if you don't want to use a directory
MAJOR_HOST_URL = 'http://' + MAJOR_DOMAIN
if FEED_DOMAIN:
BLOG_FEED_URL = 'http://%s/' % FEED_DOMAIN # the blog article feed URL
BLOG_COMMENT_FEED_URL = 'http://%s/comment' % FEED_DOMAIN # the blog comment feed URL
else:
BLOG_FEED_URL = MAJOR_HOST_URL + '/feed'
BLOG_COMMENT_FEED_URL = MAJOR_HOST_URL + '/comment-feed'
QUOTED_BLOG_FEED_URL = quote(BLOG_FEED_URL, '')
BLOG_HOME_RELATIVE_PATH = '/' # the relative path of the blog home page, you can change it to '/blog/' or others
BLOG_HOME_FULL_URL = MAJOR_HOST_URL + BLOG_HOME_RELATIVE_PATH # # the full url of the blog home page
BLOG_WAP_RELATIVE_PATH = BLOG_HOME_RELATIVE_PATH + 'wap/' # the relative path of the blog wap page
BLOG_ADMIN_RELATIVE_PATH = BLOG_HOME_RELATIVE_PATH + 'admin/' # the relative path of the blog admin page
# if you modified above pathes, you should also change yaml files and previewParserPath of \static\markitup\sets\bbcode\set.js
SOCIAL_MEDIAS = [
{'icon': 'atom', 'url': '/comment-feed', 'title': 'subscribe comments', 'text': 'Comments Feed', 'rel': 'nofollow'}
] # social media links
NAV_LINKS = [
{'url': '/', 'text': 'Home', 'level': 1},
{'url': BLOG_WAP_RELATIVE_PATH, 'text': 'Wap', 'level': 1},
] # navigation bar links
LINKS = [
{'url': 'http://code.google.com/appengine/', 'text': 'Google App Engine', 'rel': 'nofollow'},
] # links for sidebar
GOOGLE_ANALYTICS_ID = '' # Google Analytics web property ID, leave it as empty if you don't use it
GOOGLE_CSE_ID = '' # Google Custom Search ID, left it as empty if you don't use it. You can get it from http://www.google.com/cse/manage/create
DISPLAY_PERFORMANCE_TO_EVERYONE = False # whether display the performance information for everyone. If False, only administrator can see it. Notice: enable it may make the user agent cannot reuse the cache since the ETag might be changed.
ADMIN_EMAIL = '' # admin email address for sending and receiving email
EMAIL_WRITERS = [ADMIN_EMAIL] # the mail list contains who are allowed to post articles by email
APP_SENDER = u'%s <no-reply@%s.appspotmail.com>' % (BLOG_TITLE, APPID) # for sending email to others
MAX_SEND_TO = 5 # Max allowed recipients per comment notification email. You can set it to 0 to disable notification. Note: If you doesn't enable billing, there is a quota that limited to 8 recipients/minute.
SEND_LEVEL = 1 | 2 # what knid of users can send notification email, see USER_FLAGS in model.py for available values
NOTIFY_WHEN_REPLY = True # whether send notification to admin when receive new comment
SEND_INTERVAL = 600 # the shortest sending interval in seconds (similarly hereafter). 0 means don't check the interval. During the interval, the admin will receive notification only once.
ADMIN_PASSWORD = '' # admin password for login Google Calendar to send SMS notification, using AuthSub to login if it's empty. Warning: it's not recommend to set password because you may take a risk of password leaking, so do keep your setting.py file safe and private.
NOTIFY_FEED_URL = 'http://www.google.com/calendar/feeds/default/private/full' # the feed path for Google Calendar, only available when using password to login.
LANGUAGE = 'en' # the main language your blog articles use
THEMES = ['null', 'iphonsta', 'freshpress'] # themes
JQUERY_VERSION = '1.7.1' # jQuery version
ZEPTO_VERSION = '0.8' # Zepto.js version
LOCAL_TIME_ZONE = '' # the time zone name defined in pytz, using LOCAL_TIME_DELTA if it's empty. Note: pytz can handle the daylight saving time, but slower. If you don't need this function, you can delete pytz folder to save the uploading time.
LOCAL_TIME_DELTA = timedelta(hours=8) # time difference between local time zone and UTC
DATE_FORMAT = '%Y-%m-%d' # date format
SECONDE_FORMAT = '%Y-%m-%d %H:%M:%S' # time format to second
MINUTE_FORMAT = '%Y-%m-%d %H:%M' # time format to minute
ARTICLES_PER_PAGE = 10 # articles per page
COMMENTS_PER_PAGE = 10 # comments per page
RELATIVE_ARTICLES = 5 # relative articles
ARTICLES_FOR_FEED = 10 # articles in feed
LATEST_COMMENTS_FOR_SIDEBAR = 5 # latest comments displayed at sidebar
LATEST_COMMENTS_LENGTH = 20 # the max words of each latest comments at sidebar
LATEST_COMMENTS_FOR_FEED = 10 # latest comments in comment feed
RECENT_TWEETS = 5 # recent tweets displayed at sidebar
ARTICLES_CACHE_TIME = 3600 # articles cache time, 0 means forever (not recommend).
ARTICLE_CACHE_TIME = 600 # single article cache time
FEED_CACHE_TIME = 3600 # feed cache time
SITEMAP_CACHE_TIME = 86400 # sitemap cache time
COMMENTS_CACHE_TIME = 600 # comments cache time
CATEGORY_CACHE_TIME = 86400 # category cache time
TAGS_CACHE_TIME = 86400 # tags cache time
SIDEBAR_BAR_CACHE_TIME = 600 # sidebar bar cache time
USER_CACHE_TIME = 0 # user data cache time
SUBSCRIBER_CACHE_TIME = 21600 # single feed subscribers cache time
SUBSCRIBERS_CACHE_TIME = 86400 # total feed subscribers cache time
COUNTER_TASK_DELAY = 200 # counter task delay time
CATEGORY_PATH_DELIMETER = ',' # category path delimeter, make sure your category name won't include this character. Don't change it latter.
SUMMARY_DELIMETER = re.compile(r'\r?\n\r?\n\[cut1\]\r?\n') # separate summary and content, the part before the delimeter is summary, the part without the delimeter is content
SUMMARY_DELIMETER2 = re.compile(r'\r?\n\r?\n\[cut2\]\r?\n') # separate summary and content, the part before the delimeter is summary, the part after the delimeter is content
# If an article has 2 kinds of delimeters, use the first kind. If an article has several delimeters, use the first one.
OUTPUT_FULLTEXT_FOR_FEED = True # whether output fulltext or summary for feed
if IS_PRODUCTION_SERVER:
HUBS = ['http://pubsubhubbub.appspot.com/'] # the PubSubHubbub server list, leave it as blank if you don't use it. See http://code.google.com/p/pubsubhubbub/wiki/Hubs for more details.
XML_RPC_ENDPOINTS = ['http://blogsearch.google.com/ping/RPC2', 'http://rpc.pingomatic.com/', 'http://ping.baidu.com/ping/RPC2'] # XML-RPC end points, leave it as blank if you don't use it.
else:
HUBS = []
XML_RPC_ENDPOINTS = []
ENABLE_TAG_CLOUD = True # whether enable tag cloud
REPLACE_SPECIAL_CHARACTERS_FOR_URL = False # whether replace ' ', '"', '<', '>', '&', '#', '%' to "-" when generating article URL
if REPLACE_SPECIAL_CHARACTERS_FOR_URL:
URL_SPECIAL_CHARACTERS = re.compile(r'[\s\"\'&#<>%]+')
URL_REPLACE_CHARACTER = '-'
ONLINE_VISITORS_EXPIRY_TIME = 600 # expiry time of online visitors, not counting it if it's not bigger than 0 (the responses will be a little faster)
# below settings is used for Twitter integration, see "Manage blog" - "Twitter" page for setting up details.
TWITTER_CONSUMER_KEY = '' # Twitter consumer key
TWITTER_CONSUMER_SECRET = '' # Twitter consumer secret
| 0 | 0 | 0 |
1b87dddeb5d3419f3ab313b67e06d648d48d1b1c | 84 | py | Python | config.py | mathur/mushroom_classifier | acc8f5d01b131603f85a0e5ffc8e72a6e686442c | [
"Apache-2.0"
] | 7 | 2016-04-26T21:15:35.000Z | 2019-11-16T22:23:02.000Z | config.py | mathur/mushroom_classifier | acc8f5d01b131603f85a0e5ffc8e72a6e686442c | [
"Apache-2.0"
] | null | null | null | config.py | mathur/mushroom_classifier | acc8f5d01b131603f85a0e5ffc8e72a6e686442c | [
"Apache-2.0"
] | 1 | 2019-01-14T10:41:30.000Z | 2019-01-14T10:41:30.000Z | LEARNING_RATE = 0.2
NUM_TRAINING_ITERATIONS = 50000
CONVERGENCE_THRESHOLD = 0.000001 | 28 | 32 | 0.845238 | LEARNING_RATE = 0.2
NUM_TRAINING_ITERATIONS = 50000
CONVERGENCE_THRESHOLD = 0.000001 | 0 | 0 | 0 |
76e2cf3e2e3f13da61d00dd1332f195aba94446e | 157 | py | Python | py-env/bin/django-admin.py | ipmLessing/dj-cms | ed061e4c33a99f6505d19ce2e0cd54363aa62b0b | [
"MIT"
] | null | null | null | py-env/bin/django-admin.py | ipmLessing/dj-cms | ed061e4c33a99f6505d19ce2e0cd54363aa62b0b | [
"MIT"
] | 5 | 2020-06-06T01:00:13.000Z | 2021-06-09T18:49:18.000Z | py-env/bin/django-admin.py | ipmLessing/dj-cms | ed061e4c33a99f6505d19ce2e0cd54363aa62b0b | [
"MIT"
] | null | null | null | #!/home/kasengchou/git/dj-cms/py-env/bin/python3.6
from django.core import management
if __name__ == "__main__":
management.execute_from_command_line()
| 26.166667 | 50 | 0.770701 | #!/home/kasengchou/git/dj-cms/py-env/bin/python3.6
from django.core import management
if __name__ == "__main__":
management.execute_from_command_line()
| 0 | 0 | 0 |
f77e17739df7045ad055482aa2a1ef729e47ec68 | 10,639 | py | Python | beamlines/nanomax/macro_attenuate.py | Lexelius/contrast | 175a289e33775bc5b7a6a2a65c6b13761c618272 | [
"MIT"
] | 3 | 2021-05-20T07:49:53.000Z | 2021-07-12T11:27:39.000Z | beamlines/nanomax/macro_attenuate.py | alexbjorling/contrast | ef7d6d8c51fb922e89c1c46db734e3c09f88a9fc | [
"MIT"
] | 1 | 2021-04-20T10:09:17.000Z | 2021-04-20T10:09:17.000Z | beamlines/nanomax/macro_attenuate.py | alexbjorling/contrast | ef7d6d8c51fb922e89c1c46db734e3c09f88a9fc | [
"MIT"
] | 2 | 2021-08-03T15:13:06.000Z | 2021-09-02T09:47:37.000Z | """
Module providing a macro to automatically absorb X percent of the
beam using the absorbers at the NanoMAX beamline
"""
import os
import numpy as np
from contrast.environment import env, macro, register_shortcut, runCommand
# ToDo
# - avoid elements with absorption edges close to the current energy
# - way of printing the closest possible absorption values
@macro
class attenuate(object):
"""
Sets the attenuators to absorb X percent of the beam depending
on the current photon beam enegery.
usage / examples:
%attenuate # show current attenuator setting / value
%attenuate 0.2 # attenuate to 20% beam intensity
%attenuate 0.1 ['Si','Al'] # attenuate to 10% but only use Si and Al
# ['Al','Ti','Si','Cu','Fe','Mo','Ta','Ag']
%attenuate 0.2 how='unsafe' # attenuate to 20% beam intensity without
# manually confirming the motor movement
# ... for the usement in macros
"""
############################################################################
# absorber settings at the NanoMAX beamline - status 2019-10-06
############################################################################
elements = ['Al', 'Ti', 'Si', 'Cu', None, 'Fe', 'Mo', 'Ta', 'Ag']
position = [-40000, -29000, -18000, -9000, 0, 11000, 21000, 33000, 41000]
carriers = ['attenuator1_x', 'attenuator2_x',
'attenuator3_x', 'attenuator4_x']
thickness = [[ 25, 50, 100, 100], # in um
[ 20, 40, 80, 160],
[ 250, 500, 1000, 1000],
[ 20, 40, 80, 160],
[ 0, 0, 0, 0],
[ 50, 100, 200, 400],
[ 15, 30, 60, 120],
[ 20, 40, 80, 160],
[ 25, 50, 100, 200]]
thickness = np.array(thickness)
############################################################################
# loading offline data between 5 and 25 keV
# taken from http://henke.lbl.gov/optical_constants/filter2.html
############################################################################
absorption_data = {}
base = os.path.dirname(os.path.realpath(__file__))
base += '/attenuation/attenuation_1um_'
for element in [x for x in elements if not(x==None)]:
fpath = base + element + '.txt'
data = np.loadtxt(fpath, skiprows=2)
absorption_data[element] = data
############################################################################
# methods
############################################################################
| 43.96281 | 125 | 0.51565 | """
Module providing a macro to automatically absorb X percent of the
beam using the absorbers at the NanoMAX beamline
"""
import os
import numpy as np
from contrast.environment import env, macro, register_shortcut, runCommand
# ToDo
# - avoid elements with absorption edges close to the current energy
# - way of printing the closest possible absorption values
@macro
class attenuate(object):
"""
Sets the attenuators to absorb X percent of the beam depending
on the current photon beam enegery.
usage / examples:
%attenuate # show current attenuator setting / value
%attenuate 0.2 # attenuate to 20% beam intensity
%attenuate 0.1 ['Si','Al'] # attenuate to 10% but only use Si and Al
# ['Al','Ti','Si','Cu','Fe','Mo','Ta','Ag']
%attenuate 0.2 how='unsafe' # attenuate to 20% beam intensity without
# manually confirming the motor movement
# ... for the usement in macros
"""
############################################################################
# absorber settings at the NanoMAX beamline - status 2019-10-06
############################################################################
elements = ['Al', 'Ti', 'Si', 'Cu', None, 'Fe', 'Mo', 'Ta', 'Ag']
position = [-40000, -29000, -18000, -9000, 0, 11000, 21000, 33000, 41000]
carriers = ['attenuator1_x', 'attenuator2_x',
'attenuator3_x', 'attenuator4_x']
thickness = [[ 25, 50, 100, 100], # in um
[ 20, 40, 80, 160],
[ 250, 500, 1000, 1000],
[ 20, 40, 80, 160],
[ 0, 0, 0, 0],
[ 50, 100, 200, 400],
[ 15, 30, 60, 120],
[ 20, 40, 80, 160],
[ 25, 50, 100, 200]]
thickness = np.array(thickness)
############################################################################
# loading offline data between 5 and 25 keV
# taken from http://henke.lbl.gov/optical_constants/filter2.html
############################################################################
absorption_data = {}
base = os.path.dirname(os.path.realpath(__file__))
base += '/attenuation/attenuation_1um_'
for element in [x for x in elements if not(x==None)]:
fpath = base + element + '.txt'
data = np.loadtxt(fpath, skiprows=2)
absorption_data[element] = data
############################################################################
# methods
############################################################################
def __init__(self, attenuate_to=None, use_ele=['Al', 'Ti', 'Si', 'Cu', 'Fe', 'Mo', 'Ta', 'Ag'], how='safe', verbosity=3):
self.attenuate_to = attenuate_to
self.how = how
self.verbosity = verbosity
self.use_ele = use_ele
self.use_ele.append(None)
def get_current_energy(self):
runCommand('wms energy')
#print(env)
self.photon_energy = env.lastMacroResult
def calculate_transmission_of_1um(self):
# linear interpolation of T(E) in log log
self.transmission_1um = {}
for element in [x for x in self.elements if not(x==None)]:
T_log = np.interp(x = np.log(self.photon_energy),
xp = np.log(self.absorption_data[element][:,0]),
fp = np.log(self.absorption_data[element][:,1]))
self.transmission_1um[element] = np.exp(T_log)
def calculate_transmission_of_actual_foils(self):
self.transmission = 1.*np.ones_like(self.thickness)
for i, element in enumerate(self.elements):
for j, carrier in enumerate(self.carriers):
if not(element==None):
d_um = self.thickness[i,j]
T = (self.transmission_1um[element])**d_um
self.transmission[i,j] = 1.*T
def calcualte_possible_permutations(self):
self.T_tot = [[T1*T2*T3*T4, i1, i2, i3, i4,
[self.elements[i1], self.elements[i2],
self.elements[i3], self.elements[i4]]]
for i1, T1 in enumerate(self.transmission[:,0])
for i2, T2 in enumerate(self.transmission[:,1])
for i3, T3 in enumerate(self.transmission[:,2])
for i4, T4 in enumerate(self.transmission[:,3]) ]
self.T_tot = np.array(self.T_tot)
self.T_tot = self.T_tot[np.argsort(self.T_tot[:,0])]
def run_command(self, command):
runCommand(command)
def get_current_carrier_positions(self):
carrier_positions = []
for carrier in sorted(self.carriers):
runCommand('wms '+carrier)
carrier_positions.append(env.lastMacroResult)
return np.array(carrier_positions)
def estiamte_carrier_index(self, position):
array = np.asarray(self.position)
idx = (np.abs(array - position)).argmin()
return idx
def show_current_attenuation(self, printing=True):
carrier_positions = self.get_current_carrier_positions()
carrier_indices = np.array([self.estiamte_carrier_index(pos) for
pos in carrier_positions])
self.get_current_energy()
self.calculate_transmission_of_1um()
self.calculate_transmission_of_actual_foils()
self.T_currently = 1
for j, i in enumerate(carrier_indices):
self.T_currently *= self.transmission[i,j]
if printing:
print('currently:')
print(' absorption ', str(1-self.T_currently))
print(' transmission', str(self.T_currently))
print('with:')
for i_carrier, i_pos in enumerate(carrier_indices):
i_pos = int(i_pos)
line = ' ' + self.carriers[i_carrier]
line += ' '+ str(carrier_positions[i_carrier]).rjust(10)
line += ' #' + str(self.thickness[i_pos, i_carrier]).rjust(5)
line += ' um of ' + str(self.elements[i_pos])
print(line)
def input_validation(self):
if self.attenuate_to == None:
self.show_current_attenuation()
return False
elif not(isinstance(self.attenuate_to, (int, float))):
print('no number given as attenuation value')
return False
else:
return True
def check_possible_permutations_for_elements(self):
self.T_allowed = []
for permutation in self.T_tot:
works = 0
for have_to_use in permutation[5]:
if have_to_use in self.use_ele: works+=1
if works == len(permutation[5]):
self.T_allowed.append(permutation)
self.T_allowed = np.array(self.T_allowed)
def run(self):
if self.input_validation():
self.get_current_energy()
self.calculate_transmission_of_1um()
self.calculate_transmission_of_actual_foils()
self.calcualte_possible_permutations()
self.check_possible_permutations_for_elements()
self.T_min = 1.*self.T_allowed[0,0]
try:
if self.attenuate_to == 'max':
print('choosing maximal possible attenuation')
self.T_choosen = 1.*self.T_allowed[0,:]
self.attenuate_to = 1.-self.T_choosen[0]
# is the choosen absorption value reachable?
elif ((self.attenuate_to > 1) or
(round(1-self.T_min,3 ) <= self.attenuate_to)):
print('absorption of', self.attenuate_to,
'cannot be reached')
print('instead choosing maximum possible attenuation')
self.T_choosen = 1.*self.T_allowed[0,:]
# which combination gives the closest result?
else:
self.T_choosen = list(filter(lambda i: i[0] <= 1-self.attenuate_to,
self.T_allowed))[-1]
except ValueError:
print("Oops! That was no valid input")
# get needed mv motor commands
commands = []
for i_carrier, i_pos in enumerate(self.T_choosen[1:1+len(self.carriers)]):
i_pos = int(i_pos)
command = 'mv ' + str(self.carriers[i_carrier])
command += ' ' + str(self.position[i_pos]).ljust(8)
commands.append(command)
# print an output
if self.verbosity>=3 or self.how=='safe':
print('aimed for:')
print(' absorption ', self.attenuate_to)
print(' transmission', max(0, 1-self.attenuate_to))
print(' at currently', self.photon_energy, 'eV')
print('can achieve:')
print(' absorption ', str(1-self.T_choosen[0]))
print(' transmission', str(self.T_choosen[0]))
print('with motor setting:')
for i_carrier, i_pos in enumerate(self.T_choosen[1:1+len(self.carriers)]):
i_pos = int(i_pos)
line = ' ' + commands[i_carrier]
line += '#' + str(self.thickness[i_pos, i_carrier]).rjust(5)
line += ' um of ' + str(self.elements[i_pos])
print(line)
# move motors
if self.how=='safe':
yes = ['yes', 'y', '1', 'true']
user_input = input('Proceed to move motors? [Y/n] ').lower()
if user_input in yes:
# run all motor movement commands
for command in commands: self.run_command(command)
# check that the motors have moved to the calculated position
self.show_current_attenuation(printing=False)
if self.T_currently != self.T_choosen[0]:
print('\x1b[0;49;91[ERROR] mattenuation was NOT set\x1b[0m')
else:
print('\x1b[0;49;92msuccessfully set the attenuation\x1b[0m')
else:
for command in commands: self.run_command(command)
| 7,529 | 0 | 324 |
3db73e8c7ab851e3debd47b47d9e8e2c7205a5e1 | 1,004,576 | py | Python | models_SHOT_convex/watercontamination0303r.py | grossmann-group/pyomo-MINLP-benchmarking | 714f0a0dffd61675649a805683c0627af6b4929e | [
"MIT"
] | null | null | null | models_SHOT_convex/watercontamination0303r.py | grossmann-group/pyomo-MINLP-benchmarking | 714f0a0dffd61675649a805683c0627af6b4929e | [
"MIT"
] | null | null | null | models_SHOT_convex/watercontamination0303r.py | grossmann-group/pyomo-MINLP-benchmarking | 714f0a0dffd61675649a805683c0627af6b4929e | [
"MIT"
] | null | null | null | # MINLP written by GAMS Convert at 01/15/21 11:37:41
#
# Equation counts
# Total E G L N X C B
# 557 187 0 370 0 0 0 0
#
# Variable counts
# x b i s1s s2s sc si
# Total cont binary integer sos1 sos2 scont sint
# 385 371 14 0 0 0 0 0
# FX 0 0 0 0 0 0 0 0
#
# Nonzero counts
# Total const NL DLL
# 1310 1125 185 0
#
# Reformulation has removed 1 variable and 1 equation
from pyomo.environ import *
model = m = ConcreteModel()
m.x1 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x2 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x3 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x4 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x5 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x6 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x7 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x8 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x9 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x10 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x11 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x12 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x13 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x14 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x15 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x16 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x17 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x18 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x19 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x20 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x21 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x22 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x23 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x24 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x25 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x26 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x27 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x28 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x29 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x30 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x31 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x32 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x33 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x34 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x35 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x36 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x37 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x38 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x39 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x40 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x41 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x42 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x43 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x44 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x45 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x46 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x47 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x48 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x49 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x50 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x51 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x52 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x53 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x54 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x55 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x56 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x57 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x58 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x59 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x60 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x61 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x62 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x63 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x64 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x65 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x66 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x67 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x68 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x69 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x70 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x71 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x72 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x73 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x74 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x75 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x76 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x77 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x78 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x79 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x80 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x81 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x82 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x83 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x84 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x85 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x86 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x87 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x88 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x89 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x90 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x91 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x92 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x93 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x94 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x95 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x96 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x97 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x98 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x99 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x100 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x101 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x102 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x103 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x104 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x105 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x106 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x107 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x108 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x109 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x110 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x111 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x112 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x113 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x114 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x115 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x116 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x117 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x118 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x119 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x120 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x121 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x122 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x123 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x124 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x125 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x126 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x127 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x128 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x129 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x130 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x131 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x132 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x133 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x134 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x135 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x136 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x137 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x138 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x139 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x140 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x141 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x142 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x143 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x144 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x145 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x146 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x147 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x148 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x149 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x150 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x151 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x152 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x153 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x154 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x155 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x156 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x157 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x158 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x159 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x160 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x161 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x162 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x163 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x164 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x165 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x166 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x167 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x168 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x169 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x170 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x171 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x172 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x173 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x174 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x175 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x176 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x177 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x178 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x179 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x180 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x181 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x182 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x183 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x184 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x185 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x186 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x187 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x188 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x189 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x190 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x191 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x192 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x193 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x194 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x195 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x196 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x197 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x198 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x199 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x200 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x201 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x202 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x203 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x204 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x205 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x206 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x207 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x208 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x209 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x210 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x211 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x212 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x213 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x214 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x215 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x216 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x217 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x218 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x219 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x220 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x221 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x222 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x223 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x224 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x225 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x226 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x227 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x228 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x229 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x230 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x231 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x232 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x233 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x234 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x235 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x236 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x237 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x238 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x239 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x240 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x241 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x242 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x243 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x244 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x245 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x246 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x247 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x248 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x249 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x250 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x251 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x252 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x253 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x254 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x255 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x256 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x257 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x258 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x259 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x260 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x261 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x262 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x263 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x264 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x265 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x266 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x267 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x268 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x269 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x270 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x271 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x272 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x273 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x274 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x275 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x276 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x277 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x278 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x279 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x280 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x281 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x282 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x283 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x284 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x285 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x286 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x287 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x288 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x289 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x290 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x291 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x292 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x293 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x294 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x295 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x296 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x297 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x298 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x299 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x300 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x301 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x302 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x303 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x304 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x305 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x306 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x307 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x308 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x309 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x310 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x311 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x312 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x313 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x314 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x315 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x316 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x317 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x318 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x319 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x320 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x321 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x322 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x323 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x324 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x325 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x326 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x327 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x328 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x329 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x330 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x331 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x332 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x333 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x334 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x335 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x336 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x337 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x338 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x339 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x340 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x341 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x342 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x343 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x344 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x345 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x346 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x347 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x348 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x349 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x350 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x351 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x352 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x353 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x354 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x355 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x356 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x357 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x358 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x359 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x360 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x361 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x362 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x363 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x364 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x365 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x366 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x367 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x368 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x369 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x370 = Var(within=Reals,bounds=(None,None),initialize=0)
m.b371 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b372 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b373 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b374 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b375 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b376 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b377 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b378 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b379 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b380 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b381 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b382 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b383 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b384 = Var(within=Binary,bounds=(0,1),initialize=0)
m.obj = Objective(expr=8.97486180308713*m.x1**2 + 0.0001*m.x1*m.x2 + 0.0001*m.x1*m.x3 + 0.0001*m.x1*m.x4 + 0.0001*m.x1*
m.x5 + 0.0001*m.x1*m.x6 + 0.0001*m.x1*m.x7 + 0.0001*m.x1*m.x8 + 0.0001*m.x1*m.x9 + 0.0001*m.x1*
m.x10 + 0.0001*m.x1*m.x11 + 0.0001*m.x1*m.x12 + 7.2765641293107*m.x1*m.x13 + 0.0001*m.x1*m.x14 +
0.0001*m.x1*m.x15 + 0.0001*m.x1*m.x16 + 0.0001*m.x1*m.x17 + 0.0001*m.x1*m.x18 + 0.0001*m.x1*m.x19
+ 0.0001*m.x1*m.x20 + 0.0001*m.x1*m.x21 + 0.0001*m.x1*m.x22 + 0.0001*m.x1*m.x23 + 0.0001*m.x1*
m.x24 + 0.0001*m.x1*m.x25 + 0.0001*m.x1*m.x26 + 0.0001*m.x1*m.x27 + 0.0001*m.x1*m.x28 + 0.0001*
m.x1*m.x29 + 0.0001*m.x1*m.x30 + 0.0001*m.x1*m.x31 + 0.0001*m.x1*m.x32 + 0.0001*m.x1*m.x33 +
0.0001*m.x1*m.x34 + 0.0001*m.x1*m.x35 + 6.87832202410539*m.x1*m.x36 + 0.0001*m.x1*m.x37 + 0.0001*
m.x1*m.x38 + 0.0001*m.x1*m.x39 + 0.0001*m.x1*m.x40 + 0.0001*m.x1*m.x41 + 0.0001*m.x1*m.x42 +
0.0001*m.x1*m.x43 + 0.0001*m.x1*m.x44 + 0.0001*m.x1*m.x45 + 0.0001*m.x1*m.x46 + 0.0001*m.x1*m.x47
+ 0.0001*m.x1*m.x48 + 0.0001*m.x1*m.x49 + 0.0001*m.x1*m.x50 + 0.0001*m.x1*m.x51 + 0.0001*m.x1*
m.x52 + 0.0001*m.x1*m.x53 + 0.0001*m.x1*m.x54 + 0.0001*m.x1*m.x55 + 0.0001*m.x1*m.x56 + 0.0001*
m.x1*m.x57 + 0.0001*m.x1*m.x58 + 0.0001*m.x1*m.x59 + 0.0001*m.x1*m.x60 + 0.0001*m.x1*m.x61 +
0.0001*m.x1*m.x62 + 0.0001*m.x1*m.x63 + 0.0001*m.x1*m.x64 + 0.0001*m.x1*m.x65 + 0.0001*m.x1*m.x66
+ 0.0001*m.x1*m.x67 + 0.0001*m.x1*m.x68 + 0.0001*m.x1*m.x69 + 0.0001*m.x1*m.x70 + 0.0001*m.x1*
m.x71 + 0.0001*m.x1*m.x72 + 0.0001*m.x1*m.x73 + 0.0001*m.x1*m.x74 + 0.0001*m.x1*m.x75 + 0.0001*
m.x1*m.x76 + 0.0001*m.x1*m.x77 + 0.0001*m.x1*m.x78 + 0.0001*m.x1*m.x79 + 0.0001*m.x1*m.x80 +
0.0001*m.x1*m.x81 + 0.0001*m.x1*m.x82 + 0.0001*m.x1*m.x83 + 0.0001*m.x1*m.x84 + 0.0001*m.x1*m.x85
+ 0.0001*m.x1*m.x86 + 0.0001*m.x1*m.x87 + 0.0001*m.x1*m.x88 + 0.0001*m.x1*m.x89 + 0.0001*m.x1*
m.x90 + 0.0001*m.x1*m.x91 + 0.0001*m.x1*m.x92 + 0.0001*m.x1*m.x93 + 0.0001*m.x1*m.x94 + 0.0001*
m.x1*m.x95 + 0.0001*m.x1*m.x96 + 0.0001*m.x1*m.x97 + 0.0001*m.x1*m.x98 + 0.0001*m.x1*m.x99 +
0.0001*m.x1*m.x100 + 0.0001*m.x1*m.x101 + 0.0001*m.x1*m.x102 + 0.0001*m.x1*m.x103 + 0.0001*m.x1*
m.x104 + 0.0001*m.x1*m.x105 + 0.0001*m.x1*m.x106 + 0.0001*m.x1*m.x107 + 0.0001*m.x1*m.x108 +
0.0001*m.x1*m.x109 + 0.0001*m.x1*m.x110 + 0.0001*m.x1*m.x111 + 0.0001*m.x1*m.x112 + 0.0001*m.x1*
m.x113 + 0.0001*m.x1*m.x114 + 0.0001*m.x1*m.x115 + 0.0001*m.x1*m.x116 + 0.0001*m.x1*m.x117 +
0.0001*m.x1*m.x118 + 0.0001*m.x1*m.x119 + 0.0001*m.x1*m.x120 + 0.0001*m.x1*m.x121 + 0.0001*m.x1*
m.x122 + 0.0001*m.x1*m.x123 + 0.0001*m.x1*m.x124 + 0.0001*m.x1*m.x125 + 0.0001*m.x1*m.x126 +
0.0001*m.x1*m.x127 + 0.0001*m.x1*m.x128 + 0.0001*m.x1*m.x129 + 3.76549448672075*m.x1*m.x130 +
0.0001*m.x1*m.x131 + 0.0001*m.x1*m.x132 + 0.0001*m.x1*m.x133 + 0.0001*m.x1*m.x134 + 0.0001*m.x1*
m.x135 + 0.0001*m.x1*m.x136 + 0.0001*m.x1*m.x137 + 0.0001*m.x1*m.x138 + 0.0001*m.x1*m.x139 +
0.0001*m.x1*m.x140 + 0.0001*m.x1*m.x141 + 0.0001*m.x1*m.x142 + 0.0001*m.x1*m.x143 + 0.0001*m.x1*
m.x144 + 0.0001*m.x1*m.x145 + 0.0001*m.x1*m.x146 + 0.0001*m.x1*m.x147 + 0.0001*m.x1*m.x148 +
0.0001*m.x1*m.x149 + 0.0001*m.x1*m.x150 + 0.0001*m.x1*m.x151 + 0.0001*m.x1*m.x152 + 0.0001*m.x1*
m.x153 + 0.0001*m.x1*m.x154 + 0.0001*m.x1*m.x155 + 0.0001*m.x1*m.x156 + 0.0001*m.x1*m.x157 +
0.0001*m.x1*m.x158 + 0.0001*m.x1*m.x159 + 0.0001*m.x1*m.x160 + 0.0001*m.x1*m.x161 + 0.0001*m.x1*
m.x162 + 0.0001*m.x1*m.x163 + 0.0001*m.x1*m.x164 + 0.0001*m.x1*m.x165 + 0.0001*m.x1*m.x166 +
0.0001*m.x1*m.x167 + 0.0001*m.x1*m.x168 + 0.0001*m.x1*m.x169 + 0.0001*m.x1*m.x170 + 0.0001*m.x1*
m.x171 + 0.0001*m.x1*m.x172 + 0.0001*m.x1*m.x173 + 0.0001*m.x1*m.x174 + 0.0001*m.x1*m.x175 +
0.0001*m.x1*m.x176 + 0.0001*m.x1*m.x177 + 0.0001*m.x1*m.x178 + 0.0001*m.x1*m.x179 + 0.0001*m.x1*
m.x180 + 0.0001*m.x1*m.x181 + 0.0001*m.x1*m.x182 + 0.0001*m.x1*m.x183 + 0.0001*m.x1*m.x184 +
0.0001*m.x1*m.x185 + 0.0001*m.x2*m.x1 + 8.8693928761105*m.x2**2 + 0.0001*m.x2*m.x3 + 0.0001*m.x2*
m.x4 + 0.0001*m.x2*m.x5 + 0.0001*m.x2*m.x6 + 0.0001*m.x2*m.x7 + 0.0001*m.x2*m.x8 + 0.0001*m.x2*
m.x9 + 0.0001*m.x2*m.x10 + 0.0001*m.x2*m.x11 + 0.0001*m.x2*m.x12 + 0.0001*m.x2*m.x13 +
7.28961579614963*m.x2*m.x14 + 0.0001*m.x2*m.x15 + 0.0001*m.x2*m.x16 + 0.0001*m.x2*m.x17 + 0.0001*
m.x2*m.x18 + 0.0001*m.x2*m.x19 + 0.0001*m.x2*m.x20 + 0.0001*m.x2*m.x21 + 0.0001*m.x2*m.x22 +
0.0001*m.x2*m.x23 + 0.0001*m.x2*m.x24 + 1.78057905770917*m.x2*m.x25 + 0.0001*m.x2*m.x26 + 0.0001*
m.x2*m.x27 + 0.0001*m.x2*m.x28 + 0.0001*m.x2*m.x29 + 0.0001*m.x2*m.x30 + 0.0001*m.x2*m.x31 +
0.0001*m.x2*m.x32 + 0.0001*m.x2*m.x33 + 0.0001*m.x2*m.x34 + 0.0001*m.x2*m.x35 + 0.0001*m.x2*m.x36
+ 6.89065937102382*m.x2*m.x37 + 0.0001*m.x2*m.x38 + 0.0001*m.x2*m.x39 + 0.0001*m.x2*m.x40 +
0.0001*m.x2*m.x41 + 0.0001*m.x2*m.x42 + 0.0001*m.x2*m.x43 + 0.0001*m.x2*m.x44 + 0.0001*m.x2*m.x45
+ 0.0001*m.x2*m.x46 + 0.0001*m.x2*m.x47 + 0.0001*m.x2*m.x48 + 0.0001*m.x2*m.x49 + 0.0001*m.x2*
m.x50 + 0.0001*m.x2*m.x51 + 0.0001*m.x2*m.x52 + 0.0001*m.x2*m.x53 + 0.0001*m.x2*m.x54 + 0.0001*
m.x2*m.x55 + 0.0001*m.x2*m.x56 + 0.0001*m.x2*m.x57 + 0.0001*m.x2*m.x58 + 0.0001*m.x2*m.x59 +
0.0001*m.x2*m.x60 + 0.0001*m.x2*m.x61 + 0.0001*m.x2*m.x62 + 0.0001*m.x2*m.x63 + 0.0001*m.x2*m.x64
+ 0.0001*m.x2*m.x65 + 0.0001*m.x2*m.x66 + 0.0001*m.x2*m.x67 + 0.0001*m.x2*m.x68 + 0.0001*m.x2*
m.x69 + 0.0001*m.x2*m.x70 + 0.0001*m.x2*m.x71 + 0.0001*m.x2*m.x72 + 0.0001*m.x2*m.x73 + 0.0001*
m.x2*m.x74 + 0.0001*m.x2*m.x75 + 0.0001*m.x2*m.x76 + 0.0001*m.x2*m.x77 + 0.0001*m.x2*m.x78 +
0.0001*m.x2*m.x79 + 0.0001*m.x2*m.x80 + 0.0001*m.x2*m.x81 + 0.0001*m.x2*m.x82 + 0.0001*m.x2*m.x83
+ 0.0001*m.x2*m.x84 + 0.0001*m.x2*m.x85 + 0.0001*m.x2*m.x86 + 0.0001*m.x2*m.x87 + 0.0001*m.x2*
m.x88 + 0.0001*m.x2*m.x89 + 0.0001*m.x2*m.x90 + 0.0001*m.x2*m.x91 + 0.0001*m.x2*m.x92 + 0.0001*
m.x2*m.x93 + 0.0001*m.x2*m.x94 + 0.0001*m.x2*m.x95 + 0.0001*m.x2*m.x96 + 0.0001*m.x2*m.x97 +
0.0001*m.x2*m.x98 + 0.0001*m.x2*m.x99 + 0.0001*m.x2*m.x100 + 0.0001*m.x2*m.x101 + 0.0001*m.x2*
m.x102 + 0.0001*m.x2*m.x103 + 0.0001*m.x2*m.x104 + 0.0001*m.x2*m.x105 + 0.0001*m.x2*m.x106 +
0.0001*m.x2*m.x107 + 0.0001*m.x2*m.x108 + 0.0001*m.x2*m.x109 + 0.0001*m.x2*m.x110 + 0.0001*m.x2*
m.x111 + 0.0001*m.x2*m.x112 + 0.0001*m.x2*m.x113 + 0.0001*m.x2*m.x114 + 0.0001*m.x2*m.x115 +
0.0001*m.x2*m.x116 + 0.0001*m.x2*m.x117 + 0.0001*m.x2*m.x118 + 0.0001*m.x2*m.x119 + 0.0001*m.x2*
m.x120 + 0.0001*m.x2*m.x121 + 0.0001*m.x2*m.x122 + 0.0001*m.x2*m.x123 + 0.0001*m.x2*m.x124 +
0.0001*m.x2*m.x125 + 0.0001*m.x2*m.x126 + 0.0001*m.x2*m.x127 + 0.0001*m.x2*m.x128 + 0.0001*m.x2*
m.x129 + 0.0001*m.x2*m.x130 + 3.77224840915951*m.x2*m.x131 + 0.0001*m.x2*m.x132 + 0.0001*m.x2*
m.x133 + 0.0001*m.x2*m.x134 + 0.0001*m.x2*m.x135 + 0.0001*m.x2*m.x136 + 0.0001*m.x2*m.x137 +
0.0001*m.x2*m.x138 + 0.0001*m.x2*m.x139 + 0.0001*m.x2*m.x140 + 0.0001*m.x2*m.x141 + 0.0001*m.x2*
m.x142 + 0.0001*m.x2*m.x143 + 0.0001*m.x2*m.x144 + 0.0001*m.x2*m.x145 + 0.0001*m.x2*m.x146 +
0.0001*m.x2*m.x147 + 0.0001*m.x2*m.x148 + 0.0001*m.x2*m.x149 + 0.0001*m.x2*m.x150 + 0.0001*m.x2*
m.x151 + 0.0001*m.x2*m.x152 + 0.0001*m.x2*m.x153 + 0.0001*m.x2*m.x154 + 0.0001*m.x2*m.x155 +
0.0001*m.x2*m.x156 + 0.0001*m.x2*m.x157 + 0.0001*m.x2*m.x158 + 0.0001*m.x2*m.x159 + 0.0001*m.x2*
m.x160 + 0.0001*m.x2*m.x161 + 0.0001*m.x2*m.x162 + 0.0001*m.x2*m.x163 + 0.0001*m.x2*m.x164 +
0.0001*m.x2*m.x165 + 0.0001*m.x2*m.x166 + 0.0001*m.x2*m.x167 + 0.0001*m.x2*m.x168 + 0.0001*m.x2*
m.x169 + 0.0001*m.x2*m.x170 + 0.0001*m.x2*m.x171 + 0.0001*m.x2*m.x172 + 0.0001*m.x2*m.x173 +
0.0001*m.x2*m.x174 + 0.0001*m.x2*m.x175 + 0.0001*m.x2*m.x176 + 0.0001*m.x2*m.x177 + 0.0001*m.x2*
m.x178 + 0.0001*m.x2*m.x179 + 0.0001*m.x2*m.x180 + 0.0001*m.x2*m.x181 + 0.0001*m.x2*m.x182 +
0.0001*m.x2*m.x183 + 0.0001*m.x2*m.x184 + 0.0001*m.x2*m.x185 + 0.0001*m.x3*m.x1 + 0.0001*m.x3*
m.x2 + 8.8693928761105*m.x3**2 + 0.0001*m.x3*m.x4 + 0.0001*m.x3*m.x5 + 0.0001*m.x3*m.x6 + 0.0001*
m.x3*m.x7 + 0.0001*m.x3*m.x8 + 0.0001*m.x3*m.x9 + 0.0001*m.x3*m.x10 + 0.0001*m.x3*m.x11 + 0.0001*
m.x3*m.x12 + 0.0001*m.x3*m.x13 + 0.0001*m.x3*m.x14 + 7.28961579614963*m.x3*m.x15 + 0.0001*m.x3*
m.x16 + 0.0001*m.x3*m.x17 + 0.0001*m.x3*m.x18 + 0.0001*m.x3*m.x19 + 0.0001*m.x3*m.x20 + 0.0001*
m.x3*m.x21 + 0.0001*m.x3*m.x22 + 0.0001*m.x3*m.x23 + 0.0001*m.x3*m.x24 + 0.0001*m.x3*m.x25 +
1.75275431443054*m.x3*m.x26 + 0.0001*m.x3*m.x27 + 0.0001*m.x3*m.x28 + 0.0001*m.x3*m.x29 + 0.0001*
m.x3*m.x30 + 0.0001*m.x3*m.x31 + 0.0001*m.x3*m.x32 + 0.0001*m.x3*m.x33 + 0.0001*m.x3*m.x34 +
0.0001*m.x3*m.x35 + 0.0001*m.x3*m.x36 + 0.0001*m.x3*m.x37 + 6.89065937102382*m.x3*m.x38 + 0.0001*
m.x3*m.x39 + 0.0001*m.x3*m.x40 + 0.0001*m.x3*m.x41 + 0.0001*m.x3*m.x42 + 0.0001*m.x3*m.x43 +
0.0001*m.x3*m.x44 + 0.0001*m.x3*m.x45 + 0.0001*m.x3*m.x46 + 0.0001*m.x3*m.x47 + 0.0001*m.x3*m.x48
+ 0.0001*m.x3*m.x49 + 0.0001*m.x3*m.x50 + 0.0001*m.x3*m.x51 + 0.0001*m.x3*m.x52 + 0.0001*m.x3*
m.x53 + 0.0001*m.x3*m.x54 + 0.0001*m.x3*m.x55 + 0.0001*m.x3*m.x56 + 0.0001*m.x3*m.x57 + 0.0001*
m.x3*m.x58 + 0.0001*m.x3*m.x59 + 0.0001*m.x3*m.x60 + 0.0001*m.x3*m.x61 + 0.0001*m.x3*m.x62 +
0.0001*m.x3*m.x63 + 0.0001*m.x3*m.x64 + 0.0001*m.x3*m.x65 + 0.0001*m.x3*m.x66 + 0.0001*m.x3*m.x67
+ 0.0001*m.x3*m.x68 + 0.0001*m.x3*m.x69 + 0.0001*m.x3*m.x70 + 0.0001*m.x3*m.x71 + 0.0001*m.x3*
m.x72 + 0.0001*m.x3*m.x73 + 0.0001*m.x3*m.x74 + 0.0001*m.x3*m.x75 + 0.0001*m.x3*m.x76 + 0.0001*
m.x3*m.x77 + 0.0001*m.x3*m.x78 + 0.0001*m.x3*m.x79 + 0.0001*m.x3*m.x80 + 0.0001*m.x3*m.x81 +
0.0001*m.x3*m.x82 + 0.0001*m.x3*m.x83 + 0.0001*m.x3*m.x84 + 0.0001*m.x3*m.x85 + 0.0001*m.x3*m.x86
+ 0.0001*m.x3*m.x87 + 0.0001*m.x3*m.x88 + 0.0001*m.x3*m.x89 + 0.0001*m.x3*m.x90 + 0.0001*m.x3*
m.x91 + 0.0001*m.x3*m.x92 + 0.0001*m.x3*m.x93 + 0.0001*m.x3*m.x94 + 0.0001*m.x3*m.x95 + 0.0001*
m.x3*m.x96 + 0.0001*m.x3*m.x97 + 0.0001*m.x3*m.x98 + 0.0001*m.x3*m.x99 + 0.0001*m.x3*m.x100 +
0.0001*m.x3*m.x101 + 0.0001*m.x3*m.x102 + 0.0001*m.x3*m.x103 + 0.0001*m.x3*m.x104 + 0.0001*m.x3*
m.x105 + 0.0001*m.x3*m.x106 + 0.0001*m.x3*m.x107 + 0.0001*m.x3*m.x108 + 0.0001*m.x3*m.x109 +
0.0001*m.x3*m.x110 + 0.0001*m.x3*m.x111 + 0.0001*m.x3*m.x112 + 0.0001*m.x3*m.x113 + 0.0001*m.x3*
m.x114 + 0.0001*m.x3*m.x115 + 0.0001*m.x3*m.x116 + 0.0001*m.x3*m.x117 + 0.0001*m.x3*m.x118 +
0.0001*m.x3*m.x119 + 0.0001*m.x3*m.x120 + 0.0001*m.x3*m.x121 + 0.0001*m.x3*m.x122 + 0.0001*m.x3*
m.x123 + 0.0001*m.x3*m.x124 + 0.0001*m.x3*m.x125 + 0.0001*m.x3*m.x126 + 0.0001*m.x3*m.x127 +
0.0001*m.x3*m.x128 + 0.0001*m.x3*m.x129 + 0.0001*m.x3*m.x130 + 0.0001*m.x3*m.x131 +
3.76257545380017*m.x3*m.x132 + 0.0001*m.x3*m.x133 + 0.0001*m.x3*m.x134 + 0.0001*m.x3*m.x135 +
0.0001*m.x3*m.x136 + 0.0001*m.x3*m.x137 + 0.0001*m.x3*m.x138 + 0.0001*m.x3*m.x139 + 0.0001*m.x3*
m.x140 + 0.0001*m.x3*m.x141 + 0.0001*m.x3*m.x142 + 0.0001*m.x3*m.x143 + 0.0001*m.x3*m.x144 +
0.0001*m.x3*m.x145 + 0.0001*m.x3*m.x146 + 0.0001*m.x3*m.x147 + 0.0001*m.x3*m.x148 + 0.0001*m.x3*
m.x149 + 0.0001*m.x3*m.x150 + 0.0001*m.x3*m.x151 + 0.0001*m.x3*m.x152 + 0.0001*m.x3*m.x153 +
0.0001*m.x3*m.x154 + 0.0001*m.x3*m.x155 + 0.0001*m.x3*m.x156 + 0.0001*m.x3*m.x157 + 0.0001*m.x3*
m.x158 + 0.0001*m.x3*m.x159 + 0.0001*m.x3*m.x160 + 0.0001*m.x3*m.x161 + 0.0001*m.x3*m.x162 +
0.0001*m.x3*m.x163 + 0.0001*m.x3*m.x164 + 0.0001*m.x3*m.x165 + 0.0001*m.x3*m.x166 + 0.0001*m.x3*
m.x167 + 0.0001*m.x3*m.x168 + 0.0001*m.x3*m.x169 + 0.0001*m.x3*m.x170 + 0.0001*m.x3*m.x171 +
0.0001*m.x3*m.x172 + 0.0001*m.x3*m.x173 + 0.0001*m.x3*m.x174 + 0.0001*m.x3*m.x175 + 0.0001*m.x3*
m.x176 + 0.0001*m.x3*m.x177 + 0.0001*m.x3*m.x178 + 0.0001*m.x3*m.x179 + 0.0001*m.x3*m.x180 +
0.0001*m.x3*m.x181 + 0.0001*m.x3*m.x182 + 0.0001*m.x3*m.x183 + 0.0001*m.x3*m.x184 + 0.0001*m.x3*
m.x185 + 0.0001*m.x4*m.x1 + 0.0001*m.x4*m.x2 + 0.0001*m.x4*m.x3 + 8.8693928761105*m.x4**2 +
0.0001*m.x4*m.x5 + 0.0001*m.x4*m.x6 + 0.0001*m.x4*m.x7 + 0.0001*m.x4*m.x8 + 0.0001*m.x4*m.x9 +
0.0001*m.x4*m.x10 + 0.0001*m.x4*m.x11 + 0.0001*m.x4*m.x12 + 0.0001*m.x4*m.x13 + 0.0001*m.x4*m.x14
+ 0.0001*m.x4*m.x15 + 7.24661736061512*m.x4*m.x16 + 0.0001*m.x4*m.x17 + 0.0001*m.x4*m.x18 +
0.0001*m.x4*m.x19 + 0.0001*m.x4*m.x20 + 0.0001*m.x4*m.x21 + 0.0001*m.x4*m.x22 + 0.0001*m.x4*m.x23
+ 0.0001*m.x4*m.x24 + 0.0001*m.x4*m.x25 + 0.0001*m.x4*m.x26 + 1.75563715981236*m.x4*m.x27 +
0.0001*m.x4*m.x28 + 0.0001*m.x4*m.x29 + 0.0001*m.x4*m.x30 + 0.0001*m.x4*m.x31 + 0.0001*m.x4*m.x32
+ 0.0001*m.x4*m.x33 + 0.0001*m.x4*m.x34 + 0.0001*m.x4*m.x35 + 0.0001*m.x4*m.x36 + 0.0001*m.x4*
m.x37 + 0.0001*m.x4*m.x38 + 7.15893955401573*m.x4*m.x39 + 0.0001*m.x4*m.x40 + 0.0001*m.x4*m.x41
+ 0.0001*m.x4*m.x42 + 0.0001*m.x4*m.x43 + 0.0001*m.x4*m.x44 + 0.0001*m.x4*m.x45 + 0.0001*m.x4*
m.x46 + 0.0001*m.x4*m.x47 + 0.0001*m.x4*m.x48 + 0.0001*m.x4*m.x49 + 0.0001*m.x4*m.x50 + 0.0001*
m.x4*m.x51 + 0.0001*m.x4*m.x52 + 0.0001*m.x4*m.x53 + 0.0001*m.x4*m.x54 + 0.0001*m.x4*m.x55 +
0.0001*m.x4*m.x56 + 0.0001*m.x4*m.x57 + 0.0001*m.x4*m.x58 + 0.0001*m.x4*m.x59 + 0.0001*m.x4*m.x60
+ 0.0001*m.x4*m.x61 + 0.0001*m.x4*m.x62 + 0.0001*m.x4*m.x63 + 0.0001*m.x4*m.x64 + 0.0001*m.x4*
m.x65 + 0.0001*m.x4*m.x66 + 0.0001*m.x4*m.x67 + 0.0001*m.x4*m.x68 + 0.0001*m.x4*m.x69 + 0.0001*
m.x4*m.x70 + 0.0001*m.x4*m.x71 + 0.0001*m.x4*m.x72 + 0.0001*m.x4*m.x73 + 0.0001*m.x4*m.x74 +
0.0001*m.x4*m.x75 + 0.0001*m.x4*m.x76 + 0.0001*m.x4*m.x77 + 0.0001*m.x4*m.x78 + 0.0001*m.x4*m.x79
+ 0.0001*m.x4*m.x80 + 0.0001*m.x4*m.x81 + 0.0001*m.x4*m.x82 + 0.0001*m.x4*m.x83 + 0.0001*m.x4*
m.x84 + 0.0001*m.x4*m.x85 + 0.0001*m.x4*m.x86 + 0.0001*m.x4*m.x87 + 0.0001*m.x4*m.x88 + 0.0001*
m.x4*m.x89 + 0.0001*m.x4*m.x90 + 0.0001*m.x4*m.x91 + 0.0001*m.x4*m.x92 + 0.0001*m.x4*m.x93 +
0.0001*m.x4*m.x94 + 0.0001*m.x4*m.x95 + 0.0001*m.x4*m.x96 + 0.0001*m.x4*m.x97 + 0.0001*m.x4*m.x98
+ 0.0001*m.x4*m.x99 + 0.0001*m.x4*m.x100 + 0.0001*m.x4*m.x101 + 0.0001*m.x4*m.x102 + 0.0001*m.x4
*m.x103 + 0.0001*m.x4*m.x104 + 0.0001*m.x4*m.x105 + 0.0001*m.x4*m.x106 + 0.0001*m.x4*m.x107 +
0.0001*m.x4*m.x108 + 0.0001*m.x4*m.x109 + 0.0001*m.x4*m.x110 + 0.0001*m.x4*m.x111 + 0.0001*m.x4*
m.x112 + 0.0001*m.x4*m.x113 + 0.0001*m.x4*m.x114 + 0.0001*m.x4*m.x115 + 0.0001*m.x4*m.x116 +
0.0001*m.x4*m.x117 + 0.0001*m.x4*m.x118 + 0.0001*m.x4*m.x119 + 0.0001*m.x4*m.x120 + 0.0001*m.x4*
m.x121 + 0.0001*m.x4*m.x122 + 0.0001*m.x4*m.x123 + 0.0001*m.x4*m.x124 + 0.0001*m.x4*m.x125 +
0.0001*m.x4*m.x126 + 0.0001*m.x4*m.x127 + 0.0001*m.x4*m.x128 + 0.0001*m.x4*m.x129 + 0.0001*m.x4*
m.x130 + 0.0001*m.x4*m.x131 + 0.0001*m.x4*m.x132 + 3.72778316578126*m.x4*m.x133 + 0.0001*m.x4*
m.x134 + 0.0001*m.x4*m.x135 + 0.0001*m.x4*m.x136 + 0.0001*m.x4*m.x137 + 0.0001*m.x4*m.x138 +
0.0001*m.x4*m.x139 + 0.0001*m.x4*m.x140 + 0.0001*m.x4*m.x141 + 0.0001*m.x4*m.x142 + 0.0001*m.x4*
m.x143 + 0.0001*m.x4*m.x144 + 0.0001*m.x4*m.x145 + 0.0001*m.x4*m.x146 + 0.0001*m.x4*m.x147 +
0.0001*m.x4*m.x148 + 0.0001*m.x4*m.x149 + 0.0001*m.x4*m.x150 + 0.0001*m.x4*m.x151 + 0.0001*m.x4*
m.x152 + 0.0001*m.x4*m.x153 + 0.0001*m.x4*m.x154 + 0.0001*m.x4*m.x155 + 0.0001*m.x4*m.x156 +
0.0001*m.x4*m.x157 + 0.0001*m.x4*m.x158 + 0.0001*m.x4*m.x159 + 0.0001*m.x4*m.x160 + 0.0001*m.x4*
m.x161 + 0.0001*m.x4*m.x162 + 0.0001*m.x4*m.x163 + 0.0001*m.x4*m.x164 + 0.0001*m.x4*m.x165 +
0.0001*m.x4*m.x166 + 0.0001*m.x4*m.x167 + 0.0001*m.x4*m.x168 + 0.0001*m.x4*m.x169 + 0.0001*m.x4*
m.x170 + 0.0001*m.x4*m.x171 + 0.0001*m.x4*m.x172 + 0.0001*m.x4*m.x173 + 0.0001*m.x4*m.x174 +
0.0001*m.x4*m.x175 + 0.0001*m.x4*m.x176 + 0.0001*m.x4*m.x177 + 0.0001*m.x4*m.x178 + 0.0001*m.x4*
m.x179 + 0.0001*m.x4*m.x180 + 0.0001*m.x4*m.x181 + 0.0001*m.x4*m.x182 + 0.0001*m.x4*m.x183 +
0.0001*m.x4*m.x184 + 0.0001*m.x4*m.x185 + 0.0001*m.x5*m.x1 + 0.0001*m.x5*m.x2 + 0.0001*m.x5*m.x3
+ 0.0001*m.x5*m.x4 + 9.10479587663686*m.x5**2 + 0.0001*m.x5*m.x6 + 0.0001*m.x5*m.x7 + 0.0001*
m.x5*m.x8 + 0.0001*m.x5*m.x9 + 0.0001*m.x5*m.x10 + 0.0001*m.x5*m.x11 + 0.0001*m.x5*m.x12 + 0.0001
*m.x5*m.x13 + 0.0001*m.x5*m.x14 + 0.0001*m.x5*m.x15 + 0.0001*m.x5*m.x16 + 7.26656408673387*m.x5*
m.x17 + 0.0001*m.x5*m.x18 + 0.0001*m.x5*m.x19 + 0.0001*m.x5*m.x20 + 0.0001*m.x5*m.x21 + 0.0001*
m.x5*m.x22 + 0.0001*m.x5*m.x23 + 0.0001*m.x5*m.x24 + 0.0001*m.x5*m.x25 + 0.0001*m.x5*m.x26 +
0.0001*m.x5*m.x27 + 1.76040038778825*m.x5*m.x28 + 0.0001*m.x5*m.x29 + 0.0001*m.x5*m.x30 + 0.0001*
m.x5*m.x31 + 0.0001*m.x5*m.x32 + 0.0001*m.x5*m.x33 + 0.0001*m.x5*m.x34 + 0.0001*m.x5*m.x35 +
0.0001*m.x5*m.x36 + 0.0001*m.x5*m.x37 + 0.0001*m.x5*m.x38 + 0.0001*m.x5*m.x39 + 7.17752787044043*
m.x5*m.x40 + 0.0001*m.x5*m.x41 + 0.0001*m.x5*m.x42 + 0.0001*m.x5*m.x43 + 0.0001*m.x5*m.x44 +
0.0001*m.x5*m.x45 + 0.0001*m.x5*m.x46 + 0.0001*m.x5*m.x47 + 0.0001*m.x5*m.x48 + 0.0001*m.x5*m.x49
+ 0.0001*m.x5*m.x50 + 0.0001*m.x5*m.x51 + 0.0001*m.x5*m.x52 + 0.0001*m.x5*m.x53 + 0.0001*m.x5*
m.x54 + 0.0001*m.x5*m.x55 + 0.0001*m.x5*m.x56 + 0.0001*m.x5*m.x57 + 0.0001*m.x5*m.x58 + 0.0001*
m.x5*m.x59 + 0.0001*m.x5*m.x60 + 0.0001*m.x5*m.x61 + 0.0001*m.x5*m.x62 + 0.0001*m.x5*m.x63 +
0.0001*m.x5*m.x64 + 0.0001*m.x5*m.x65 + 0.0001*m.x5*m.x66 + 0.0001*m.x5*m.x67 + 0.0001*m.x5*m.x68
+ 0.0001*m.x5*m.x69 + 0.0001*m.x5*m.x70 + 0.0001*m.x5*m.x71 + 0.0001*m.x5*m.x72 + 0.0001*m.x5*
m.x73 + 0.0001*m.x5*m.x74 + 0.0001*m.x5*m.x75 + 0.0001*m.x5*m.x76 + 0.0001*m.x5*m.x77 + 0.0001*
m.x5*m.x78 + 0.0001*m.x5*m.x79 + 0.0001*m.x5*m.x80 + 0.0001*m.x5*m.x81 + 0.0001*m.x5*m.x82 +
0.0001*m.x5*m.x83 + 0.0001*m.x5*m.x84 + 0.0001*m.x5*m.x85 + 0.0001*m.x5*m.x86 + 0.0001*m.x5*m.x87
+ 0.0001*m.x5*m.x88 + 0.0001*m.x5*m.x89 + 0.0001*m.x5*m.x90 + 0.0001*m.x5*m.x91 + 0.0001*m.x5*
m.x92 + 0.0001*m.x5*m.x93 + 0.0001*m.x5*m.x94 + 0.0001*m.x5*m.x95 + 0.0001*m.x5*m.x96 + 0.0001*
m.x5*m.x97 + 0.0001*m.x5*m.x98 + 0.0001*m.x5*m.x99 + 0.0001*m.x5*m.x100 + 0.0001*m.x5*m.x101 +
0.0001*m.x5*m.x102 + 0.0001*m.x5*m.x103 + 0.0001*m.x5*m.x104 + 0.0001*m.x5*m.x105 + 0.0001*m.x5*
m.x106 + 0.0001*m.x5*m.x107 + 0.0001*m.x5*m.x108 + 0.0001*m.x5*m.x109 + 0.0001*m.x5*m.x110 +
0.0001*m.x5*m.x111 + 0.0001*m.x5*m.x112 + 0.0001*m.x5*m.x113 + 0.0001*m.x5*m.x114 + 0.0001*m.x5*
m.x115 + 0.0001*m.x5*m.x116 + 0.0001*m.x5*m.x117 + 0.0001*m.x5*m.x118 + 0.0001*m.x5*m.x119 +
0.0001*m.x5*m.x120 + 0.0001*m.x5*m.x121 + 0.0001*m.x5*m.x122 + 0.0001*m.x5*m.x123 + 0.0001*m.x5*
m.x124 + 0.0001*m.x5*m.x125 + 0.0001*m.x5*m.x126 + 0.0001*m.x5*m.x127 + 0.0001*m.x5*m.x128 +
0.0001*m.x5*m.x129 + 0.0001*m.x5*m.x130 + 0.0001*m.x5*m.x131 + 0.0001*m.x5*m.x132 + 0.0001*m.x5*
m.x133 + 3.73746229794978*m.x5*m.x134 + 0.0001*m.x5*m.x135 + 0.0001*m.x5*m.x136 + 0.0001*m.x5*
m.x137 + 0.0001*m.x5*m.x138 + 0.0001*m.x5*m.x139 + 0.0001*m.x5*m.x140 + 0.0001*m.x5*m.x141 +
0.0001*m.x5*m.x142 + 0.0001*m.x5*m.x143 + 0.0001*m.x5*m.x144 + 0.0001*m.x5*m.x145 + 0.0001*m.x5*
m.x146 + 0.0001*m.x5*m.x147 + 0.0001*m.x5*m.x148 + 0.0001*m.x5*m.x149 + 0.0001*m.x5*m.x150 +
0.0001*m.x5*m.x151 + 0.0001*m.x5*m.x152 + 0.0001*m.x5*m.x153 + 0.0001*m.x5*m.x154 + 0.0001*m.x5*
m.x155 + 0.0001*m.x5*m.x156 + 0.0001*m.x5*m.x157 + 0.0001*m.x5*m.x158 + 0.0001*m.x5*m.x159 +
0.0001*m.x5*m.x160 + 0.0001*m.x5*m.x161 + 0.0001*m.x5*m.x162 + 0.0001*m.x5*m.x163 + 0.0001*m.x5*
m.x164 + 0.0001*m.x5*m.x165 + 0.0001*m.x5*m.x166 + 0.0001*m.x5*m.x167 + 0.0001*m.x5*m.x168 +
0.0001*m.x5*m.x169 + 0.0001*m.x5*m.x170 + 0.0001*m.x5*m.x171 + 0.0001*m.x5*m.x172 + 0.0001*m.x5*
m.x173 + 0.0001*m.x5*m.x174 + 0.0001*m.x5*m.x175 + 0.0001*m.x5*m.x176 + 0.0001*m.x5*m.x177 +
0.0001*m.x5*m.x178 + 0.0001*m.x5*m.x179 + 0.0001*m.x5*m.x180 + 0.0001*m.x5*m.x181 + 0.0001*m.x5*
m.x182 + 0.0001*m.x5*m.x183 + 0.0001*m.x5*m.x184 + 0.0001*m.x5*m.x185 + 0.0001*m.x6*m.x1 + 0.0001
*m.x6*m.x2 + 0.0001*m.x6*m.x3 + 0.0001*m.x6*m.x4 + 0.0001*m.x6*m.x5 + 9.10479587663686*m.x6**2 +
0.0001*m.x6*m.x7 + 0.0001*m.x6*m.x8 + 0.0001*m.x6*m.x9 + 0.0001*m.x6*m.x10 + 0.0001*m.x6*m.x11 +
0.0001*m.x6*m.x12 + 0.0001*m.x6*m.x13 + 0.0001*m.x6*m.x14 + 0.0001*m.x6*m.x15 + 0.0001*m.x6*m.x16
+ 0.0001*m.x6*m.x17 + 7.26556099733353*m.x6*m.x18 + 0.0001*m.x6*m.x19 + 0.0001*m.x6*m.x20 +
0.0001*m.x6*m.x21 + 0.0001*m.x6*m.x22 + 0.0001*m.x6*m.x23 + 0.0001*m.x6*m.x24 + 0.0001*m.x6*m.x25
+ 0.0001*m.x6*m.x26 + 0.0001*m.x6*m.x27 + 0.0001*m.x6*m.x28 + 1.76849613599461*m.x6*m.x29 +
0.0001*m.x6*m.x30 + 0.0001*m.x6*m.x31 + 0.0001*m.x6*m.x32 + 0.0001*m.x6*m.x33 + 0.0001*m.x6*m.x34
+ 0.0001*m.x6*m.x35 + 0.0001*m.x6*m.x36 + 0.0001*m.x6*m.x37 + 0.0001*m.x6*m.x38 + 0.0001*m.x6*
m.x39 + 0.0001*m.x6*m.x40 + 7.17765398594047*m.x6*m.x41 + 0.0001*m.x6*m.x42 + 0.0001*m.x6*m.x43
+ 0.0001*m.x6*m.x44 + 0.0001*m.x6*m.x45 + 0.0001*m.x6*m.x46 + 0.0001*m.x6*m.x47 + 0.0001*m.x6*
m.x48 + 0.0001*m.x6*m.x49 + 0.0001*m.x6*m.x50 + 0.0001*m.x6*m.x51 + 0.0001*m.x6*m.x52 + 0.0001*
m.x6*m.x53 + 0.0001*m.x6*m.x54 + 0.0001*m.x6*m.x55 + 0.0001*m.x6*m.x56 + 0.0001*m.x6*m.x57 +
0.0001*m.x6*m.x58 + 0.0001*m.x6*m.x59 + 0.0001*m.x6*m.x60 + 0.0001*m.x6*m.x61 + 0.0001*m.x6*m.x62
+ 0.0001*m.x6*m.x63 + 0.0001*m.x6*m.x64 + 0.0001*m.x6*m.x65 + 0.0001*m.x6*m.x66 + 0.0001*m.x6*
m.x67 + 0.0001*m.x6*m.x68 + 0.0001*m.x6*m.x69 + 0.0001*m.x6*m.x70 + 0.0001*m.x6*m.x71 + 0.0001*
m.x6*m.x72 + 0.0001*m.x6*m.x73 + 0.0001*m.x6*m.x74 + 0.0001*m.x6*m.x75 + 0.0001*m.x6*m.x76 +
0.0001*m.x6*m.x77 + 0.0001*m.x6*m.x78 + 0.0001*m.x6*m.x79 + 0.0001*m.x6*m.x80 + 0.0001*m.x6*m.x81
+ 0.0001*m.x6*m.x82 + 0.0001*m.x6*m.x83 + 0.0001*m.x6*m.x84 + 0.0001*m.x6*m.x85 + 0.0001*m.x6*
m.x86 + 0.0001*m.x6*m.x87 + 0.0001*m.x6*m.x88 + 0.0001*m.x6*m.x89 + 0.0001*m.x6*m.x90 + 0.0001*
m.x6*m.x91 + 0.0001*m.x6*m.x92 + 0.0001*m.x6*m.x93 + 0.0001*m.x6*m.x94 + 0.0001*m.x6*m.x95 +
0.0001*m.x6*m.x96 + 0.0001*m.x6*m.x97 + 0.0001*m.x6*m.x98 + 0.0001*m.x6*m.x99 + 0.0001*m.x6*
m.x100 + 0.0001*m.x6*m.x101 + 0.0001*m.x6*m.x102 + 0.0001*m.x6*m.x103 + 0.0001*m.x6*m.x104 +
0.0001*m.x6*m.x105 + 0.0001*m.x6*m.x106 + 0.0001*m.x6*m.x107 + 0.0001*m.x6*m.x108 + 0.0001*m.x6*
m.x109 + 0.0001*m.x6*m.x110 + 0.0001*m.x6*m.x111 + 0.0001*m.x6*m.x112 + 0.0001*m.x6*m.x113 +
0.0001*m.x6*m.x114 + 0.0001*m.x6*m.x115 + 0.0001*m.x6*m.x116 + 0.0001*m.x6*m.x117 + 0.0001*m.x6*
m.x118 + 0.0001*m.x6*m.x119 + 0.0001*m.x6*m.x120 + 0.0001*m.x6*m.x121 + 0.0001*m.x6*m.x122 +
0.0001*m.x6*m.x123 + 0.0001*m.x6*m.x124 + 0.0001*m.x6*m.x125 + 0.0001*m.x6*m.x126 + 0.0001*m.x6*
m.x127 + 0.0001*m.x6*m.x128 + 0.0001*m.x6*m.x129 + 0.0001*m.x6*m.x130 + 0.0001*m.x6*m.x131 +
0.0001*m.x6*m.x132 + 0.0001*m.x6*m.x133 + 0.0001*m.x6*m.x134 + 3.80077230205016*m.x6*m.x135 +
0.0001*m.x6*m.x136 + 0.0001*m.x6*m.x137 + 0.0001*m.x6*m.x138 + 0.0001*m.x6*m.x139 + 0.0001*m.x6*
m.x140 + 0.0001*m.x6*m.x141 + 0.0001*m.x6*m.x142 + 0.0001*m.x6*m.x143 + 0.0001*m.x6*m.x144 +
0.0001*m.x6*m.x145 + 0.0001*m.x6*m.x146 + 0.0001*m.x6*m.x147 + 0.0001*m.x6*m.x148 + 0.0001*m.x6*
m.x149 + 0.0001*m.x6*m.x150 + 0.0001*m.x6*m.x151 + 0.0001*m.x6*m.x152 + 0.0001*m.x6*m.x153 +
0.0001*m.x6*m.x154 + 0.0001*m.x6*m.x155 + 0.0001*m.x6*m.x156 + 0.0001*m.x6*m.x157 + 0.0001*m.x6*
m.x158 + 0.0001*m.x6*m.x159 + 0.0001*m.x6*m.x160 + 0.0001*m.x6*m.x161 + 0.0001*m.x6*m.x162 +
0.0001*m.x6*m.x163 + 0.0001*m.x6*m.x164 + 0.0001*m.x6*m.x165 + 0.0001*m.x6*m.x166 + 0.0001*m.x6*
m.x167 + 0.0001*m.x6*m.x168 + 0.0001*m.x6*m.x169 + 0.0001*m.x6*m.x170 + 0.0001*m.x6*m.x171 +
0.0001*m.x6*m.x172 + 0.0001*m.x6*m.x173 + 0.0001*m.x6*m.x174 + 0.0001*m.x6*m.x175 + 0.0001*m.x6*
m.x176 + 0.0001*m.x6*m.x177 + 0.0001*m.x6*m.x178 + 0.0001*m.x6*m.x179 + 0.0001*m.x6*m.x180 +
0.0001*m.x6*m.x181 + 0.0001*m.x6*m.x182 + 0.0001*m.x6*m.x183 + 0.0001*m.x6*m.x184 + 0.0001*m.x6*
m.x185 + 0.0001*m.x7*m.x1 + 0.0001*m.x7*m.x2 + 0.0001*m.x7*m.x3 + 0.0001*m.x7*m.x4 + 0.0001*m.x7*
m.x5 + 0.0001*m.x7*m.x6 + 9.10479587663686*m.x7**2 + 0.0001*m.x7*m.x8 + 0.0001*m.x7*m.x9 + 0.0001
*m.x7*m.x10 + 0.0001*m.x7*m.x11 + 0.0001*m.x7*m.x12 + 0.0001*m.x7*m.x13 + 0.0001*m.x7*m.x14 +
0.0001*m.x7*m.x15 + 0.0001*m.x7*m.x16 + 0.0001*m.x7*m.x17 + 0.0001*m.x7*m.x18 + 7.41338218097586*
m.x7*m.x19 + 0.0001*m.x7*m.x20 + 0.0001*m.x7*m.x21 + 0.0001*m.x7*m.x22 + 0.0001*m.x7*m.x23 +
0.0001*m.x7*m.x24 + 0.0001*m.x7*m.x25 + 0.0001*m.x7*m.x26 + 0.0001*m.x7*m.x27 + 0.0001*m.x7*m.x28
+ 0.0001*m.x7*m.x29 + 1.72684751084366*m.x7*m.x30 + 0.0001*m.x7*m.x31 + 0.0001*m.x7*m.x32 +
0.0001*m.x7*m.x33 + 0.0001*m.x7*m.x34 + 0.0001*m.x7*m.x35 + 0.0001*m.x7*m.x36 + 0.0001*m.x7*m.x37
+ 0.0001*m.x7*m.x38 + 0.0001*m.x7*m.x39 + 0.0001*m.x7*m.x40 + 0.0001*m.x7*m.x41 +
7.14703239270426*m.x7*m.x42 + 0.0001*m.x7*m.x43 + 0.0001*m.x7*m.x44 + 0.0001*m.x7*m.x45 + 0.0001*
m.x7*m.x46 + 0.0001*m.x7*m.x47 + 0.0001*m.x7*m.x48 + 0.0001*m.x7*m.x49 + 0.0001*m.x7*m.x50 +
0.0001*m.x7*m.x51 + 0.0001*m.x7*m.x52 + 0.0001*m.x7*m.x53 + 0.0001*m.x7*m.x54 + 0.0001*m.x7*m.x55
+ 0.0001*m.x7*m.x56 + 0.0001*m.x7*m.x57 + 0.0001*m.x7*m.x58 + 0.0001*m.x7*m.x59 + 0.0001*m.x7*
m.x60 + 0.0001*m.x7*m.x61 + 0.0001*m.x7*m.x62 + 0.0001*m.x7*m.x63 + 0.0001*m.x7*m.x64 + 0.0001*
m.x7*m.x65 + 0.0001*m.x7*m.x66 + 0.0001*m.x7*m.x67 + 0.0001*m.x7*m.x68 + 0.0001*m.x7*m.x69 +
0.0001*m.x7*m.x70 + 0.0001*m.x7*m.x71 + 0.0001*m.x7*m.x72 + 0.0001*m.x7*m.x73 + 0.0001*m.x7*m.x74
+ 0.0001*m.x7*m.x75 + 0.0001*m.x7*m.x76 + 0.0001*m.x7*m.x77 + 0.0001*m.x7*m.x78 + 0.0001*m.x7*
m.x79 + 0.0001*m.x7*m.x80 + 0.0001*m.x7*m.x81 + 0.0001*m.x7*m.x82 + 0.0001*m.x7*m.x83 + 0.0001*
m.x7*m.x84 + 0.0001*m.x7*m.x85 + 0.0001*m.x7*m.x86 + 0.0001*m.x7*m.x87 + 0.0001*m.x7*m.x88 +
0.0001*m.x7*m.x89 + 0.0001*m.x7*m.x90 + 0.0001*m.x7*m.x91 + 0.0001*m.x7*m.x92 + 0.0001*m.x7*m.x93
+ 0.0001*m.x7*m.x94 + 0.0001*m.x7*m.x95 + 0.0001*m.x7*m.x96 + 0.0001*m.x7*m.x97 + 0.0001*m.x7*
m.x98 + 0.0001*m.x7*m.x99 + 0.0001*m.x7*m.x100 + 0.0001*m.x7*m.x101 + 0.0001*m.x7*m.x102 + 0.0001
*m.x7*m.x103 + 0.0001*m.x7*m.x104 + 0.0001*m.x7*m.x105 + 0.0001*m.x7*m.x106 + 0.0001*m.x7*m.x107
+ 0.0001*m.x7*m.x108 + 0.0001*m.x7*m.x109 + 0.0001*m.x7*m.x110 + 0.0001*m.x7*m.x111 + 0.0001*
m.x7*m.x112 + 0.0001*m.x7*m.x113 + 0.0001*m.x7*m.x114 + 0.0001*m.x7*m.x115 + 0.0001*m.x7*m.x116
+ 0.0001*m.x7*m.x117 + 0.0001*m.x7*m.x118 + 0.0001*m.x7*m.x119 + 0.0001*m.x7*m.x120 + 0.0001*
m.x7*m.x121 + 0.0001*m.x7*m.x122 + 0.0001*m.x7*m.x123 + 0.0001*m.x7*m.x124 + 0.0001*m.x7*m.x125
+ 0.0001*m.x7*m.x126 + 0.0001*m.x7*m.x127 + 0.0001*m.x7*m.x128 + 0.0001*m.x7*m.x129 + 0.0001*
m.x7*m.x130 + 0.0001*m.x7*m.x131 + 0.0001*m.x7*m.x132 + 0.0001*m.x7*m.x133 + 0.0001*m.x7*m.x134
+ 0.0001*m.x7*m.x135 + 3.87695415522262*m.x7*m.x136 + 0.0001*m.x7*m.x137 + 0.0001*m.x7*m.x138 +
0.0001*m.x7*m.x139 + 0.0001*m.x7*m.x140 + 0.0001*m.x7*m.x141 + 0.0001*m.x7*m.x142 + 0.0001*m.x7*
m.x143 + 0.0001*m.x7*m.x144 + 0.0001*m.x7*m.x145 + 0.0001*m.x7*m.x146 + 0.0001*m.x7*m.x147 +
0.0001*m.x7*m.x148 + 0.0001*m.x7*m.x149 + 0.0001*m.x7*m.x150 + 0.0001*m.x7*m.x151 + 0.0001*m.x7*
m.x152 + 0.0001*m.x7*m.x153 + 0.0001*m.x7*m.x154 + 0.0001*m.x7*m.x155 + 0.0001*m.x7*m.x156 +
0.0001*m.x7*m.x157 + 0.0001*m.x7*m.x158 + 0.0001*m.x7*m.x159 + 0.0001*m.x7*m.x160 + 0.0001*m.x7*
m.x161 + 0.0001*m.x7*m.x162 + 0.0001*m.x7*m.x163 + 0.0001*m.x7*m.x164 + 0.0001*m.x7*m.x165 +
0.0001*m.x7*m.x166 + 0.0001*m.x7*m.x167 + 0.0001*m.x7*m.x168 + 0.0001*m.x7*m.x169 + 0.0001*m.x7*
m.x170 + 0.0001*m.x7*m.x171 + 0.0001*m.x7*m.x172 + 0.0001*m.x7*m.x173 + 0.0001*m.x7*m.x174 +
0.0001*m.x7*m.x175 + 0.0001*m.x7*m.x176 + 0.0001*m.x7*m.x177 + 0.0001*m.x7*m.x178 + 0.0001*m.x7*
m.x179 + 0.0001*m.x7*m.x180 + 0.0001*m.x7*m.x181 + 0.0001*m.x7*m.x182 + 0.0001*m.x7*m.x183 +
0.0001*m.x7*m.x184 + 0.0001*m.x7*m.x185 + 0.0001*m.x8*m.x1 + 0.0001*m.x8*m.x2 + 0.0001*m.x8*m.x3
+ 0.0001*m.x8*m.x4 + 0.0001*m.x8*m.x5 + 0.0001*m.x8*m.x6 + 0.0001*m.x8*m.x7 + 8.28654036729117*
m.x8**2 + 0.0001*m.x8*m.x9 + 0.0001*m.x8*m.x10 + 0.0001*m.x8*m.x11 + 0.0001*m.x8*m.x12 + 0.0001*
m.x8*m.x13 + 0.0001*m.x8*m.x14 + 0.0001*m.x8*m.x15 + 0.0001*m.x8*m.x16 + 0.0001*m.x8*m.x17 +
0.0001*m.x8*m.x18 + 0.0001*m.x8*m.x19 + 7.4520596959325*m.x8*m.x20 + 0.0001*m.x8*m.x21 + 0.0001*
m.x8*m.x22 + 0.0001*m.x8*m.x23 + 0.0001*m.x8*m.x24 + 0.0001*m.x8*m.x25 + 0.0001*m.x8*m.x26 +
0.0001*m.x8*m.x27 + 0.0001*m.x8*m.x28 + 0.0001*m.x8*m.x29 + 0.0001*m.x8*m.x30 + 1.73585651671266*
m.x8*m.x31 + 0.0001*m.x8*m.x32 + 0.0001*m.x8*m.x33 + 0.0001*m.x8*m.x34 + 0.0001*m.x8*m.x35 +
0.0001*m.x8*m.x36 + 0.0001*m.x8*m.x37 + 0.0001*m.x8*m.x38 + 0.0001*m.x8*m.x39 + 0.0001*m.x8*m.x40
+ 0.0001*m.x8*m.x41 + 0.0001*m.x8*m.x42 + 7.18432027380264*m.x8*m.x43 + 0.0001*m.x8*m.x44 +
0.0001*m.x8*m.x45 + 0.0001*m.x8*m.x46 + 0.0001*m.x8*m.x47 + 0.0001*m.x8*m.x48 + 0.0001*m.x8*m.x49
+ 0.0001*m.x8*m.x50 + 0.0001*m.x8*m.x51 + 0.0001*m.x8*m.x52 + 0.0001*m.x8*m.x53 + 0.0001*m.x8*
m.x54 + 0.0001*m.x8*m.x55 + 0.0001*m.x8*m.x56 + 0.0001*m.x8*m.x57 + 0.0001*m.x8*m.x58 + 0.0001*
m.x8*m.x59 + 0.0001*m.x8*m.x60 + 0.0001*m.x8*m.x61 + 0.0001*m.x8*m.x62 + 0.0001*m.x8*m.x63 +
0.0001*m.x8*m.x64 + 0.0001*m.x8*m.x65 + 0.0001*m.x8*m.x66 + 0.0001*m.x8*m.x67 + 0.0001*m.x8*m.x68
+ 0.0001*m.x8*m.x69 + 0.0001*m.x8*m.x70 + 0.0001*m.x8*m.x71 + 0.0001*m.x8*m.x72 + 0.0001*m.x8*
m.x73 + 0.0001*m.x8*m.x74 + 0.0001*m.x8*m.x75 + 0.0001*m.x8*m.x76 + 0.0001*m.x8*m.x77 + 0.0001*
m.x8*m.x78 + 0.0001*m.x8*m.x79 + 0.0001*m.x8*m.x80 + 0.0001*m.x8*m.x81 + 0.0001*m.x8*m.x82 +
0.0001*m.x8*m.x83 + 0.0001*m.x8*m.x84 + 0.0001*m.x8*m.x85 + 0.0001*m.x8*m.x86 + 0.0001*m.x8*m.x87
+ 0.0001*m.x8*m.x88 + 0.0001*m.x8*m.x89 + 0.0001*m.x8*m.x90 + 0.0001*m.x8*m.x91 + 0.0001*m.x8*
m.x92 + 0.0001*m.x8*m.x93 + 0.0001*m.x8*m.x94 + 0.0001*m.x8*m.x95 + 0.0001*m.x8*m.x96 + 0.0001*
m.x8*m.x97 + 0.0001*m.x8*m.x98 + 0.0001*m.x8*m.x99 + 0.0001*m.x8*m.x100 + 0.0001*m.x8*m.x101 +
0.0001*m.x8*m.x102 + 0.0001*m.x8*m.x103 + 0.0001*m.x8*m.x104 + 0.0001*m.x8*m.x105 + 0.0001*m.x8*
m.x106 + 0.0001*m.x8*m.x107 + 0.0001*m.x8*m.x108 + 0.0001*m.x8*m.x109 + 0.0001*m.x8*m.x110 +
0.0001*m.x8*m.x111 + 0.0001*m.x8*m.x112 + 0.0001*m.x8*m.x113 + 0.0001*m.x8*m.x114 + 0.0001*m.x8*
m.x115 + 0.0001*m.x8*m.x116 + 0.0001*m.x8*m.x117 + 0.0001*m.x8*m.x118 + 0.0001*m.x8*m.x119 +
0.0001*m.x8*m.x120 + 0.0001*m.x8*m.x121 + 0.0001*m.x8*m.x122 + 0.0001*m.x8*m.x123 + 0.0001*m.x8*
m.x124 + 0.0001*m.x8*m.x125 + 0.0001*m.x8*m.x126 + 0.0001*m.x8*m.x127 + 0.0001*m.x8*m.x128 +
0.0001*m.x8*m.x129 + 0.0001*m.x8*m.x130 + 0.0001*m.x8*m.x131 + 0.0001*m.x8*m.x132 + 0.0001*m.x8*
m.x133 + 0.0001*m.x8*m.x134 + 0.0001*m.x8*m.x135 + 0.0001*m.x8*m.x136 + 3.89718096986595*m.x8*
m.x137 + 0.0001*m.x8*m.x138 + 0.0001*m.x8*m.x139 + 0.0001*m.x8*m.x140 + 0.0001*m.x8*m.x141 +
0.0001*m.x8*m.x142 + 0.0001*m.x8*m.x143 + 0.0001*m.x8*m.x144 + 0.0001*m.x8*m.x145 + 0.0001*m.x8*
m.x146 + 0.0001*m.x8*m.x147 + 0.0001*m.x8*m.x148 + 0.0001*m.x8*m.x149 + 0.0001*m.x8*m.x150 +
0.0001*m.x8*m.x151 + 0.0001*m.x8*m.x152 + 0.0001*m.x8*m.x153 + 0.0001*m.x8*m.x154 + 0.0001*m.x8*
m.x155 + 0.0001*m.x8*m.x156 + 0.0001*m.x8*m.x157 + 0.0001*m.x8*m.x158 + 0.0001*m.x8*m.x159 +
0.0001*m.x8*m.x160 + 0.0001*m.x8*m.x161 + 0.0001*m.x8*m.x162 + 0.0001*m.x8*m.x163 + 0.0001*m.x8*
m.x164 + 0.0001*m.x8*m.x165 + 0.0001*m.x8*m.x166 + 0.0001*m.x8*m.x167 + 0.0001*m.x8*m.x168 +
0.0001*m.x8*m.x169 + 0.0001*m.x8*m.x170 + 0.0001*m.x8*m.x171 + 0.0001*m.x8*m.x172 + 0.0001*m.x8*
m.x173 + 0.0001*m.x8*m.x174 + 0.0001*m.x8*m.x175 + 0.0001*m.x8*m.x176 + 0.0001*m.x8*m.x177 +
0.0001*m.x8*m.x178 + 0.0001*m.x8*m.x179 + 0.0001*m.x8*m.x180 + 0.0001*m.x8*m.x181 + 0.0001*m.x8*
m.x182 + 0.0001*m.x8*m.x183 + 0.0001*m.x8*m.x184 + 0.0001*m.x8*m.x185 + 0.0001*m.x9*m.x1 + 0.0001
*m.x9*m.x2 + 0.0001*m.x9*m.x3 + 0.0001*m.x9*m.x4 + 0.0001*m.x9*m.x5 + 0.0001*m.x9*m.x6 + 0.0001*
m.x9*m.x7 + 0.0001*m.x9*m.x8 + 8.28654036729117*m.x9**2 + 0.0001*m.x9*m.x10 + 0.0001*m.x9*m.x11
+ 0.0001*m.x9*m.x12 + 0.0001*m.x9*m.x13 + 0.0001*m.x9*m.x14 + 0.0001*m.x9*m.x15 + 0.0001*m.x9*
m.x16 + 0.0001*m.x9*m.x17 + 0.0001*m.x9*m.x18 + 0.0001*m.x9*m.x19 + 0.0001*m.x9*m.x20 +
7.4520596959325*m.x9*m.x21 + 0.0001*m.x9*m.x22 + 0.0001*m.x9*m.x23 + 0.0001*m.x9*m.x24 + 0.0001*
m.x9*m.x25 + 0.0001*m.x9*m.x26 + 0.0001*m.x9*m.x27 + 0.0001*m.x9*m.x28 + 0.0001*m.x9*m.x29 +
0.0001*m.x9*m.x30 + 0.0001*m.x9*m.x31 + 1.81124027188761*m.x9*m.x32 + 0.0001*m.x9*m.x33 + 0.0001*
m.x9*m.x34 + 0.0001*m.x9*m.x35 + 0.0001*m.x9*m.x36 + 0.0001*m.x9*m.x37 + 0.0001*m.x9*m.x38 +
0.0001*m.x9*m.x39 + 0.0001*m.x9*m.x40 + 0.0001*m.x9*m.x41 + 0.0001*m.x9*m.x42 + 0.0001*m.x9*m.x43
+ 7.18432027380264*m.x9*m.x44 + 0.0001*m.x9*m.x45 + 0.0001*m.x9*m.x46 + 0.0001*m.x9*m.x47 +
0.0001*m.x9*m.x48 + 0.0001*m.x9*m.x49 + 0.0001*m.x9*m.x50 + 0.0001*m.x9*m.x51 + 0.0001*m.x9*m.x52
+ 0.0001*m.x9*m.x53 + 0.0001*m.x9*m.x54 + 0.0001*m.x9*m.x55 + 0.0001*m.x9*m.x56 + 0.0001*m.x9*
m.x57 + 0.0001*m.x9*m.x58 + 0.0001*m.x9*m.x59 + 0.0001*m.x9*m.x60 + 0.0001*m.x9*m.x61 + 0.0001*
m.x9*m.x62 + 0.0001*m.x9*m.x63 + 0.0001*m.x9*m.x64 + 0.0001*m.x9*m.x65 + 0.0001*m.x9*m.x66 +
0.0001*m.x9*m.x67 + 0.0001*m.x9*m.x68 + 0.0001*m.x9*m.x69 + 0.0001*m.x9*m.x70 + 0.0001*m.x9*m.x71
+ 0.0001*m.x9*m.x72 + 0.0001*m.x9*m.x73 + 0.0001*m.x9*m.x74 + 0.0001*m.x9*m.x75 + 0.0001*m.x9*
m.x76 + 0.0001*m.x9*m.x77 + 0.0001*m.x9*m.x78 + 0.0001*m.x9*m.x79 + 0.0001*m.x9*m.x80 + 0.0001*
m.x9*m.x81 + 0.0001*m.x9*m.x82 + 0.0001*m.x9*m.x83 + 0.0001*m.x9*m.x84 + 0.0001*m.x9*m.x85 +
0.0001*m.x9*m.x86 + 0.0001*m.x9*m.x87 + 0.0001*m.x9*m.x88 + 0.0001*m.x9*m.x89 + 0.0001*m.x9*m.x90
+ 0.0001*m.x9*m.x91 + 0.0001*m.x9*m.x92 + 0.0001*m.x9*m.x93 + 0.0001*m.x9*m.x94 + 0.0001*m.x9*
m.x95 + 0.0001*m.x9*m.x96 + 0.0001*m.x9*m.x97 + 0.0001*m.x9*m.x98 + 0.0001*m.x9*m.x99 + 0.0001*
m.x9*m.x100 + 0.0001*m.x9*m.x101 + 0.0001*m.x9*m.x102 + 0.0001*m.x9*m.x103 + 0.0001*m.x9*m.x104
+ 0.0001*m.x9*m.x105 + 0.0001*m.x9*m.x106 + 0.0001*m.x9*m.x107 + 0.0001*m.x9*m.x108 + 0.0001*
m.x9*m.x109 + 0.0001*m.x9*m.x110 + 0.0001*m.x9*m.x111 + 0.0001*m.x9*m.x112 + 0.0001*m.x9*m.x113
+ 0.0001*m.x9*m.x114 + 0.0001*m.x9*m.x115 + 0.0001*m.x9*m.x116 + 0.0001*m.x9*m.x117 + 0.0001*
m.x9*m.x118 + 0.0001*m.x9*m.x119 + 0.0001*m.x9*m.x120 + 0.0001*m.x9*m.x121 + 0.0001*m.x9*m.x122
+ 0.0001*m.x9*m.x123 + 0.0001*m.x9*m.x124 + 0.0001*m.x9*m.x125 + 0.0001*m.x9*m.x126 + 0.0001*
m.x9*m.x127 + 0.0001*m.x9*m.x128 + 0.0001*m.x9*m.x129 + 0.0001*m.x9*m.x130 + 0.0001*m.x9*m.x131
+ 0.0001*m.x9*m.x132 + 0.0001*m.x9*m.x133 + 0.0001*m.x9*m.x134 + 0.0001*m.x9*m.x135 + 0.0001*
m.x9*m.x136 + 0.0001*m.x9*m.x137 + 3.92192189312951*m.x9*m.x138 + 0.0001*m.x9*m.x139 + 0.0001*
m.x9*m.x140 + 0.0001*m.x9*m.x141 + 0.0001*m.x9*m.x142 + 0.0001*m.x9*m.x143 + 0.0001*m.x9*m.x144
+ 0.0001*m.x9*m.x145 + 0.0001*m.x9*m.x146 + 0.0001*m.x9*m.x147 + 0.0001*m.x9*m.x148 + 0.0001*
m.x9*m.x149 + 0.0001*m.x9*m.x150 + 0.0001*m.x9*m.x151 + 0.0001*m.x9*m.x152 + 0.0001*m.x9*m.x153
+ 0.0001*m.x9*m.x154 + 0.0001*m.x9*m.x155 + 0.0001*m.x9*m.x156 + 0.0001*m.x9*m.x157 + 0.0001*
m.x9*m.x158 + 0.0001*m.x9*m.x159 + 0.0001*m.x9*m.x160 + 0.0001*m.x9*m.x161 + 0.0001*m.x9*m.x162
+ 0.0001*m.x9*m.x163 + 0.0001*m.x9*m.x164 + 0.0001*m.x9*m.x165 + 0.0001*m.x9*m.x166 + 0.0001*
m.x9*m.x167 + 0.0001*m.x9*m.x168 + 0.0001*m.x9*m.x169 + 0.0001*m.x9*m.x170 + 0.0001*m.x9*m.x171
+ 0.0001*m.x9*m.x172 + 0.0001*m.x9*m.x173 + 0.0001*m.x9*m.x174 + 0.0001*m.x9*m.x175 + 0.0001*
m.x9*m.x176 + 0.0001*m.x9*m.x177 + 0.0001*m.x9*m.x178 + 0.0001*m.x9*m.x179 + 0.0001*m.x9*m.x180
+ 0.0001*m.x9*m.x181 + 0.0001*m.x9*m.x182 + 0.0001*m.x9*m.x183 + 0.0001*m.x9*m.x184 + 0.0001*
m.x9*m.x185 + 0.0001*m.x10*m.x1 + 0.0001*m.x10*m.x2 + 0.0001*m.x10*m.x3 + 0.0001*m.x10*m.x4 +
0.0001*m.x10*m.x5 + 0.0001*m.x10*m.x6 + 0.0001*m.x10*m.x7 + 0.0001*m.x10*m.x8 + 0.0001*m.x10*m.x9
+ 8.28654036729117*m.x10**2 + 0.0001*m.x10*m.x11 + 0.0001*m.x10*m.x12 + 0.0001*m.x10*m.x13 +
0.0001*m.x10*m.x14 + 0.0001*m.x10*m.x15 + 0.0001*m.x10*m.x16 + 0.0001*m.x10*m.x17 + 0.0001*m.x10*
m.x18 + 0.0001*m.x10*m.x19 + 0.0001*m.x10*m.x20 + 0.0001*m.x10*m.x21 + 6.8341836279463*m.x10*
m.x22 + 0.0001*m.x10*m.x23 + 0.0001*m.x10*m.x24 + 0.0001*m.x10*m.x25 + 0.0001*m.x10*m.x26 +
0.0001*m.x10*m.x27 + 0.0001*m.x10*m.x28 + 0.0001*m.x10*m.x29 + 0.0001*m.x10*m.x30 + 0.0001*m.x10*
m.x31 + 0.0001*m.x10*m.x32 + 1.86248826671711*m.x10*m.x33 + 0.0001*m.x10*m.x34 + 0.0001*m.x10*
m.x35 + 0.0001*m.x10*m.x36 + 0.0001*m.x10*m.x37 + 0.0001*m.x10*m.x38 + 0.0001*m.x10*m.x39 +
0.0001*m.x10*m.x40 + 0.0001*m.x10*m.x41 + 0.0001*m.x10*m.x42 + 0.0001*m.x10*m.x43 + 0.0001*m.x10*
m.x44 + 7.27171135638595*m.x10*m.x45 + 0.0001*m.x10*m.x46 + 0.0001*m.x10*m.x47 + 0.0001*m.x10*
m.x48 + 0.0001*m.x10*m.x49 + 0.0001*m.x10*m.x50 + 0.0001*m.x10*m.x51 + 0.0001*m.x10*m.x52 +
0.0001*m.x10*m.x53 + 0.0001*m.x10*m.x54 + 0.0001*m.x10*m.x55 + 0.0001*m.x10*m.x56 + 0.0001*m.x10*
m.x57 + 0.0001*m.x10*m.x58 + 0.0001*m.x10*m.x59 + 0.0001*m.x10*m.x60 + 0.0001*m.x10*m.x61 +
0.0001*m.x10*m.x62 + 0.0001*m.x10*m.x63 + 0.0001*m.x10*m.x64 + 0.0001*m.x10*m.x65 + 0.0001*m.x10*
m.x66 + 0.0001*m.x10*m.x67 + 0.0001*m.x10*m.x68 + 0.0001*m.x10*m.x69 + 0.0001*m.x10*m.x70 +
0.0001*m.x10*m.x71 + 0.0001*m.x10*m.x72 + 0.0001*m.x10*m.x73 + 0.0001*m.x10*m.x74 + 0.0001*m.x10*
m.x75 + 0.0001*m.x10*m.x76 + 0.0001*m.x10*m.x77 + 0.0001*m.x10*m.x78 + 0.0001*m.x10*m.x79 +
0.0001*m.x10*m.x80 + 0.0001*m.x10*m.x81 + 0.0001*m.x10*m.x82 + 0.0001*m.x10*m.x83 + 0.0001*m.x10*
m.x84 + 0.0001*m.x10*m.x85 + 0.0001*m.x10*m.x86 + 0.0001*m.x10*m.x87 + 0.0001*m.x10*m.x88 +
0.0001*m.x10*m.x89 + 0.0001*m.x10*m.x90 + 0.0001*m.x10*m.x91 + 0.0001*m.x10*m.x92 + 0.0001*m.x10*
m.x93 + 0.0001*m.x10*m.x94 + 0.0001*m.x10*m.x95 + 0.0001*m.x10*m.x96 + 0.0001*m.x10*m.x97 +
0.0001*m.x10*m.x98 + 0.0001*m.x10*m.x99 + 0.0001*m.x10*m.x100 + 0.0001*m.x10*m.x101 + 0.0001*
m.x10*m.x102 + 0.0001*m.x10*m.x103 + 0.0001*m.x10*m.x104 + 0.0001*m.x10*m.x105 + 0.0001*m.x10*
m.x106 + 0.0001*m.x10*m.x107 + 0.0001*m.x10*m.x108 + 0.0001*m.x10*m.x109 + 0.0001*m.x10*m.x110 +
0.0001*m.x10*m.x111 + 0.0001*m.x10*m.x112 + 0.0001*m.x10*m.x113 + 0.0001*m.x10*m.x114 + 0.0001*
m.x10*m.x115 + 0.0001*m.x10*m.x116 + 0.0001*m.x10*m.x117 + 0.0001*m.x10*m.x118 + 0.0001*m.x10*
m.x119 + 0.0001*m.x10*m.x120 + 0.0001*m.x10*m.x121 + 0.0001*m.x10*m.x122 + 0.0001*m.x10*m.x123 +
0.0001*m.x10*m.x124 + 0.0001*m.x10*m.x125 + 0.0001*m.x10*m.x126 + 0.0001*m.x10*m.x127 + 0.0001*
m.x10*m.x128 + 0.0001*m.x10*m.x129 + 0.0001*m.x10*m.x130 + 0.0001*m.x10*m.x131 + 0.0001*m.x10*
m.x132 + 0.0001*m.x10*m.x133 + 0.0001*m.x10*m.x134 + 0.0001*m.x10*m.x135 + 0.0001*m.x10*m.x136 +
0.0001*m.x10*m.x137 + 0.0001*m.x10*m.x138 + 4.04894461999615*m.x10*m.x139 + 0.0001*m.x10*m.x140
+ 0.0001*m.x10*m.x141 + 0.0001*m.x10*m.x142 + 0.0001*m.x10*m.x143 + 0.0001*m.x10*m.x144 + 0.0001
*m.x10*m.x145 + 0.0001*m.x10*m.x146 + 0.0001*m.x10*m.x147 + 0.0001*m.x10*m.x148 + 0.0001*m.x10*
m.x149 + 0.0001*m.x10*m.x150 + 0.0001*m.x10*m.x151 + 0.0001*m.x10*m.x152 + 0.0001*m.x10*m.x153 +
0.0001*m.x10*m.x154 + 0.0001*m.x10*m.x155 + 0.0001*m.x10*m.x156 + 0.0001*m.x10*m.x157 + 0.0001*
m.x10*m.x158 + 0.0001*m.x10*m.x159 + 0.0001*m.x10*m.x160 + 0.0001*m.x10*m.x161 + 0.0001*m.x10*
m.x162 + 0.0001*m.x10*m.x163 + 0.0001*m.x10*m.x164 + 0.0001*m.x10*m.x165 + 0.0001*m.x10*m.x166 +
0.0001*m.x10*m.x167 + 0.0001*m.x10*m.x168 + 0.0001*m.x10*m.x169 + 0.0001*m.x10*m.x170 + 0.0001*
m.x10*m.x171 + 0.0001*m.x10*m.x172 + 0.0001*m.x10*m.x173 + 0.0001*m.x10*m.x174 + 0.0001*m.x10*
m.x175 + 0.0001*m.x10*m.x176 + 0.0001*m.x10*m.x177 + 0.0001*m.x10*m.x178 + 0.0001*m.x10*m.x179 +
0.0001*m.x10*m.x180 + 0.0001*m.x10*m.x181 + 0.0001*m.x10*m.x182 + 0.0001*m.x10*m.x183 + 0.0001*
m.x10*m.x184 + 0.0001*m.x10*m.x185 + 0.0001*m.x11*m.x1 + 0.0001*m.x11*m.x2 + 0.0001*m.x11*m.x3 +
0.0001*m.x11*m.x4 + 0.0001*m.x11*m.x5 + 0.0001*m.x11*m.x6 + 0.0001*m.x11*m.x7 + 0.0001*m.x11*m.x8
+ 0.0001*m.x11*m.x9 + 0.0001*m.x11*m.x10 + 8.37787001988959*m.x11**2 + 0.0001*m.x11*m.x12 +
0.0001*m.x11*m.x13 + 0.0001*m.x11*m.x14 + 0.0001*m.x11*m.x15 + 0.0001*m.x11*m.x16 + 0.0001*m.x11*
m.x17 + 0.0001*m.x11*m.x18 + 0.0001*m.x11*m.x19 + 0.0001*m.x11*m.x20 + 0.0001*m.x11*m.x21 +
0.0001*m.x11*m.x22 + 6.75846262215549*m.x11*m.x23 + 0.0001*m.x11*m.x24 + 0.0001*m.x11*m.x25 +
0.0001*m.x11*m.x26 + 0.0001*m.x11*m.x27 + 0.0001*m.x11*m.x28 + 0.0001*m.x11*m.x29 + 0.0001*m.x11*
m.x30 + 0.0001*m.x11*m.x31 + 0.0001*m.x11*m.x32 + 0.0001*m.x11*m.x33 + 1.84161801636613*m.x11*
m.x34 + 0.0001*m.x11*m.x35 + 0.0001*m.x11*m.x36 + 0.0001*m.x11*m.x37 + 0.0001*m.x11*m.x38 +
0.0001*m.x11*m.x39 + 0.0001*m.x11*m.x40 + 0.0001*m.x11*m.x41 + 0.0001*m.x11*m.x42 + 0.0001*m.x11*
m.x43 + 0.0001*m.x11*m.x44 + 0.0001*m.x11*m.x45 + 7.19114258438939*m.x11*m.x46 + 0.0001*m.x11*
m.x47 + 0.0001*m.x11*m.x48 + 0.0001*m.x11*m.x49 + 0.0001*m.x11*m.x50 + 0.0001*m.x11*m.x51 +
0.0001*m.x11*m.x52 + 0.0001*m.x11*m.x53 + 0.0001*m.x11*m.x54 + 0.0001*m.x11*m.x55 + 0.0001*m.x11*
m.x56 + 0.0001*m.x11*m.x57 + 0.0001*m.x11*m.x58 + 0.0001*m.x11*m.x59 + 0.0001*m.x11*m.x60 +
0.0001*m.x11*m.x61 + 0.0001*m.x11*m.x62 + 0.0001*m.x11*m.x63 + 0.0001*m.x11*m.x64 + 0.0001*m.x11*
m.x65 + 0.0001*m.x11*m.x66 + 0.0001*m.x11*m.x67 + 0.0001*m.x11*m.x68 + 0.0001*m.x11*m.x69 +
0.0001*m.x11*m.x70 + 0.0001*m.x11*m.x71 + 0.0001*m.x11*m.x72 + 0.0001*m.x11*m.x73 + 0.0001*m.x11*
m.x74 + 0.0001*m.x11*m.x75 + 0.0001*m.x11*m.x76 + 0.0001*m.x11*m.x77 + 0.0001*m.x11*m.x78 +
0.0001*m.x11*m.x79 + 0.0001*m.x11*m.x80 + 0.0001*m.x11*m.x81 + 0.0001*m.x11*m.x82 + 0.0001*m.x11*
m.x83 + 0.0001*m.x11*m.x84 + 0.0001*m.x11*m.x85 + 0.0001*m.x11*m.x86 + 0.0001*m.x11*m.x87 +
0.0001*m.x11*m.x88 + 0.0001*m.x11*m.x89 + 0.0001*m.x11*m.x90 + 0.0001*m.x11*m.x91 + 0.0001*m.x11*
m.x92 + 0.0001*m.x11*m.x93 + 0.0001*m.x11*m.x94 + 0.0001*m.x11*m.x95 + 0.0001*m.x11*m.x96 +
0.0001*m.x11*m.x97 + 0.0001*m.x11*m.x98 + 0.0001*m.x11*m.x99 + 0.0001*m.x11*m.x100 + 0.0001*m.x11
*m.x101 + 0.0001*m.x11*m.x102 + 0.0001*m.x11*m.x103 + 0.0001*m.x11*m.x104 + 0.0001*m.x11*m.x105
+ 0.0001*m.x11*m.x106 + 0.0001*m.x11*m.x107 + 0.0001*m.x11*m.x108 + 0.0001*m.x11*m.x109 + 0.0001
*m.x11*m.x110 + 0.0001*m.x11*m.x111 + 0.0001*m.x11*m.x112 + 0.0001*m.x11*m.x113 + 0.0001*m.x11*
m.x114 + 0.0001*m.x11*m.x115 + 0.0001*m.x11*m.x116 + 0.0001*m.x11*m.x117 + 0.0001*m.x11*m.x118 +
0.0001*m.x11*m.x119 + 0.0001*m.x11*m.x120 + 0.0001*m.x11*m.x121 + 0.0001*m.x11*m.x122 + 0.0001*
m.x11*m.x123 + 0.0001*m.x11*m.x124 + 0.0001*m.x11*m.x125 + 0.0001*m.x11*m.x126 + 0.0001*m.x11*
m.x127 + 0.0001*m.x11*m.x128 + 0.0001*m.x11*m.x129 + 0.0001*m.x11*m.x130 + 0.0001*m.x11*m.x131 +
0.0001*m.x11*m.x132 + 0.0001*m.x11*m.x133 + 0.0001*m.x11*m.x134 + 0.0001*m.x11*m.x135 + 0.0001*
m.x11*m.x136 + 0.0001*m.x11*m.x137 + 0.0001*m.x11*m.x138 + 0.0001*m.x11*m.x139 + 4.00357255534043
*m.x11*m.x140 + 0.0001*m.x11*m.x141 + 0.0001*m.x11*m.x142 + 0.0001*m.x11*m.x143 + 0.0001*m.x11*
m.x144 + 0.0001*m.x11*m.x145 + 0.0001*m.x11*m.x146 + 0.0001*m.x11*m.x147 + 0.0001*m.x11*m.x148 +
0.0001*m.x11*m.x149 + 0.0001*m.x11*m.x150 + 0.0001*m.x11*m.x151 + 0.0001*m.x11*m.x152 + 0.0001*
m.x11*m.x153 + 0.0001*m.x11*m.x154 + 0.0001*m.x11*m.x155 + 0.0001*m.x11*m.x156 + 0.0001*m.x11*
m.x157 + 0.0001*m.x11*m.x158 + 0.0001*m.x11*m.x159 + 0.0001*m.x11*m.x160 + 0.0001*m.x11*m.x161 +
0.0001*m.x11*m.x162 + 0.0001*m.x11*m.x163 + 0.0001*m.x11*m.x164 + 0.0001*m.x11*m.x165 + 0.0001*
m.x11*m.x166 + 0.0001*m.x11*m.x167 + 0.0001*m.x11*m.x168 + 0.0001*m.x11*m.x169 + 0.0001*m.x11*
m.x170 + 0.0001*m.x11*m.x171 + 0.0001*m.x11*m.x172 + 0.0001*m.x11*m.x173 + 0.0001*m.x11*m.x174 +
0.0001*m.x11*m.x175 + 0.0001*m.x11*m.x176 + 0.0001*m.x11*m.x177 + 0.0001*m.x11*m.x178 + 0.0001*
m.x11*m.x179 + 0.0001*m.x11*m.x180 + 0.0001*m.x11*m.x181 + 0.0001*m.x11*m.x182 + 0.0001*m.x11*
m.x183 + 0.0001*m.x11*m.x184 + 0.0001*m.x11*m.x185 + 0.0001*m.x12*m.x1 + 0.0001*m.x12*m.x2 +
0.0001*m.x12*m.x3 + 0.0001*m.x12*m.x4 + 0.0001*m.x12*m.x5 + 0.0001*m.x12*m.x6 + 0.0001*m.x12*m.x7
+ 0.0001*m.x12*m.x8 + 0.0001*m.x12*m.x9 + 0.0001*m.x12*m.x10 + 0.0001*m.x12*m.x11 +
8.37787001988959*m.x12**2 + 0.0001*m.x12*m.x13 + 0.0001*m.x12*m.x14 + 0.0001*m.x12*m.x15 + 0.0001
*m.x12*m.x16 + 0.0001*m.x12*m.x17 + 0.0001*m.x12*m.x18 + 0.0001*m.x12*m.x19 + 0.0001*m.x12*m.x20
+ 0.0001*m.x12*m.x21 + 0.0001*m.x12*m.x22 + 0.0001*m.x12*m.x23 + 6.75846262215549*m.x12*m.x24 +
0.0001*m.x12*m.x25 + 0.0001*m.x12*m.x26 + 0.0001*m.x12*m.x27 + 0.0001*m.x12*m.x28 + 0.0001*m.x12*
m.x29 + 0.0001*m.x12*m.x30 + 0.0001*m.x12*m.x31 + 0.0001*m.x12*m.x32 + 0.0001*m.x12*m.x33 +
0.0001*m.x12*m.x34 + 1.85389551205678*m.x12*m.x35 + 0.0001*m.x12*m.x36 + 0.0001*m.x12*m.x37 +
0.0001*m.x12*m.x38 + 0.0001*m.x12*m.x39 + 0.0001*m.x12*m.x40 + 0.0001*m.x12*m.x41 + 0.0001*m.x12*
m.x42 + 0.0001*m.x12*m.x43 + 0.0001*m.x12*m.x44 + 0.0001*m.x12*m.x45 + 0.0001*m.x12*m.x46 +
7.19114258438938*m.x12*m.x47 + 0.0001*m.x12*m.x48 + 0.0001*m.x12*m.x49 + 0.0001*m.x12*m.x50 +
0.0001*m.x12*m.x51 + 0.0001*m.x12*m.x52 + 0.0001*m.x12*m.x53 + 0.0001*m.x12*m.x54 + 0.0001*m.x12*
m.x55 + 0.0001*m.x12*m.x56 + 0.0001*m.x12*m.x57 + 0.0001*m.x12*m.x58 + 0.0001*m.x12*m.x59 +
0.0001*m.x12*m.x60 + 0.0001*m.x12*m.x61 + 0.0001*m.x12*m.x62 + 0.0001*m.x12*m.x63 + 0.0001*m.x12*
m.x64 + 0.0001*m.x12*m.x65 + 0.0001*m.x12*m.x66 + 0.0001*m.x12*m.x67 + 0.0001*m.x12*m.x68 +
0.0001*m.x12*m.x69 + 0.0001*m.x12*m.x70 + 0.0001*m.x12*m.x71 + 0.0001*m.x12*m.x72 + 0.0001*m.x12*
m.x73 + 0.0001*m.x12*m.x74 + 0.0001*m.x12*m.x75 + 0.0001*m.x12*m.x76 + 0.0001*m.x12*m.x77 +
0.0001*m.x12*m.x78 + 0.0001*m.x12*m.x79 + 0.0001*m.x12*m.x80 + 0.0001*m.x12*m.x81 + 0.0001*m.x12*
m.x82 + 0.0001*m.x12*m.x83 + 0.0001*m.x12*m.x84 + 0.0001*m.x12*m.x85 + 0.0001*m.x12*m.x86 +
0.0001*m.x12*m.x87 + 0.0001*m.x12*m.x88 + 0.0001*m.x12*m.x89 + 0.0001*m.x12*m.x90 + 0.0001*m.x12*
m.x91 + 0.0001*m.x12*m.x92 + 0.0001*m.x12*m.x93 + 0.0001*m.x12*m.x94 + 0.0001*m.x12*m.x95 +
0.0001*m.x12*m.x96 + 0.0001*m.x12*m.x97 + 0.0001*m.x12*m.x98 + 0.0001*m.x12*m.x99 + 0.0001*m.x12*
m.x100 + 0.0001*m.x12*m.x101 + 0.0001*m.x12*m.x102 + 0.0001*m.x12*m.x103 + 0.0001*m.x12*m.x104 +
0.0001*m.x12*m.x105 + 0.0001*m.x12*m.x106 + 0.0001*m.x12*m.x107 + 0.0001*m.x12*m.x108 + 0.0001*
m.x12*m.x109 + 0.0001*m.x12*m.x110 + 0.0001*m.x12*m.x111 + 0.0001*m.x12*m.x112 + 0.0001*m.x12*
m.x113 + 0.0001*m.x12*m.x114 + 0.0001*m.x12*m.x115 + 0.0001*m.x12*m.x116 + 0.0001*m.x12*m.x117 +
0.0001*m.x12*m.x118 + 0.0001*m.x12*m.x119 + 0.0001*m.x12*m.x120 + 0.0001*m.x12*m.x121 + 0.0001*
m.x12*m.x122 + 0.0001*m.x12*m.x123 + 0.0001*m.x12*m.x124 + 0.0001*m.x12*m.x125 + 0.0001*m.x12*
m.x126 + 0.0001*m.x12*m.x127 + 0.0001*m.x12*m.x128 + 0.0001*m.x12*m.x129 + 0.0001*m.x12*m.x130 +
0.0001*m.x12*m.x131 + 0.0001*m.x12*m.x132 + 0.0001*m.x12*m.x133 + 0.0001*m.x12*m.x134 + 0.0001*
m.x12*m.x135 + 0.0001*m.x12*m.x136 + 0.0001*m.x12*m.x137 + 0.0001*m.x12*m.x138 + 0.0001*m.x12*
m.x139 + 0.0001*m.x12*m.x140 + 3.99239821446817*m.x12*m.x141 + 0.0001*m.x12*m.x142 + 0.0001*m.x12
*m.x143 + 0.0001*m.x12*m.x144 + 0.0001*m.x12*m.x145 + 0.0001*m.x12*m.x146 + 0.0001*m.x12*m.x147
+ 0.0001*m.x12*m.x148 + 0.0001*m.x12*m.x149 + 0.0001*m.x12*m.x150 + 0.0001*m.x12*m.x151 + 0.0001
*m.x12*m.x152 + 0.0001*m.x12*m.x153 + 0.0001*m.x12*m.x154 + 0.0001*m.x12*m.x155 + 0.0001*m.x12*
m.x156 + 0.0001*m.x12*m.x157 + 0.0001*m.x12*m.x158 + 0.0001*m.x12*m.x159 + 0.0001*m.x12*m.x160 +
0.0001*m.x12*m.x161 + 0.0001*m.x12*m.x162 + 0.0001*m.x12*m.x163 + 0.0001*m.x12*m.x164 + 0.0001*
m.x12*m.x165 + 0.0001*m.x12*m.x166 + 0.0001*m.x12*m.x167 + 0.0001*m.x12*m.x168 + 0.0001*m.x12*
m.x169 + 0.0001*m.x12*m.x170 + 0.0001*m.x12*m.x171 + 0.0001*m.x12*m.x172 + 0.0001*m.x12*m.x173 +
0.0001*m.x12*m.x174 + 0.0001*m.x12*m.x175 + 0.0001*m.x12*m.x176 + 0.0001*m.x12*m.x177 + 0.0001*
m.x12*m.x178 + 0.0001*m.x12*m.x179 + 0.0001*m.x12*m.x180 + 0.0001*m.x12*m.x181 + 0.0001*m.x12*
m.x182 + 0.0001*m.x12*m.x183 + 0.0001*m.x12*m.x184 + 0.0001*m.x12*m.x185 + 7.2765641293107*m.x13*
m.x1 + 0.0001*m.x13*m.x2 + 0.0001*m.x13*m.x3 + 0.0001*m.x13*m.x4 + 0.0001*m.x13*m.x5 + 0.0001*
m.x13*m.x6 + 0.0001*m.x13*m.x7 + 0.0001*m.x13*m.x8 + 0.0001*m.x13*m.x9 + 0.0001*m.x13*m.x10 +
0.0001*m.x13*m.x11 + 0.0001*m.x13*m.x12 + 5.89963598622892*m.x13**2 + 0.0001*m.x13*m.x14 + 0.0001
*m.x13*m.x15 + 0.0001*m.x13*m.x16 + 0.0001*m.x13*m.x17 + 0.0001*m.x13*m.x18 + 0.0001*m.x13*m.x19
+ 0.0001*m.x13*m.x20 + 0.0001*m.x13*m.x21 + 0.0001*m.x13*m.x22 + 0.0001*m.x13*m.x23 + 0.0001*
m.x13*m.x24 + 0.0001*m.x13*m.x25 + 0.0001*m.x13*m.x26 + 0.0001*m.x13*m.x27 + 0.0001*m.x13*m.x28
+ 0.0001*m.x13*m.x29 + 0.0001*m.x13*m.x30 + 0.0001*m.x13*m.x31 + 0.0001*m.x13*m.x32 + 0.0001*
m.x13*m.x33 + 0.0001*m.x13*m.x34 + 0.0001*m.x13*m.x35 + 5.57675338980047*m.x13*m.x36 + 0.0001*
m.x13*m.x37 + 0.0001*m.x13*m.x38 + 0.0001*m.x13*m.x39 + 0.0001*m.x13*m.x40 + 0.0001*m.x13*m.x41
+ 0.0001*m.x13*m.x42 + 0.0001*m.x13*m.x43 + 0.0001*m.x13*m.x44 + 0.0001*m.x13*m.x45 + 0.0001*
m.x13*m.x46 + 0.0001*m.x13*m.x47 + 0.0001*m.x13*m.x48 + 0.0001*m.x13*m.x49 + 0.0001*m.x13*m.x50
+ 0.0001*m.x13*m.x51 + 0.0001*m.x13*m.x52 + 0.0001*m.x13*m.x53 + 0.0001*m.x13*m.x54 + 0.0001*
m.x13*m.x55 + 0.0001*m.x13*m.x56 + 0.0001*m.x13*m.x57 + 0.0001*m.x13*m.x58 + 0.0001*m.x13*m.x59
+ 0.0001*m.x13*m.x60 + 0.0001*m.x13*m.x61 + 0.0001*m.x13*m.x62 + 0.0001*m.x13*m.x63 + 0.0001*
m.x13*m.x64 + 0.0001*m.x13*m.x65 + 0.0001*m.x13*m.x66 + 0.0001*m.x13*m.x67 + 0.0001*m.x13*m.x68
+ 0.0001*m.x13*m.x69 + 0.0001*m.x13*m.x70 + 0.0001*m.x13*m.x71 + 0.0001*m.x13*m.x72 + 0.0001*
m.x13*m.x73 + 0.0001*m.x13*m.x74 + 0.0001*m.x13*m.x75 + 0.0001*m.x13*m.x76 + 0.0001*m.x13*m.x77
+ 0.0001*m.x13*m.x78 + 0.0001*m.x13*m.x79 + 0.0001*m.x13*m.x80 + 0.0001*m.x13*m.x81 + 0.0001*
m.x13*m.x82 + 0.0001*m.x13*m.x83 + 0.0001*m.x13*m.x84 + 0.0001*m.x13*m.x85 + 0.0001*m.x13*m.x86
+ 0.0001*m.x13*m.x87 + 0.0001*m.x13*m.x88 + 0.0001*m.x13*m.x89 + 0.0001*m.x13*m.x90 + 0.0001*
m.x13*m.x91 + 0.0001*m.x13*m.x92 + 0.0001*m.x13*m.x93 + 0.0001*m.x13*m.x94 + 0.0001*m.x13*m.x95
+ 0.0001*m.x13*m.x96 + 0.0001*m.x13*m.x97 + 0.0001*m.x13*m.x98 + 0.0001*m.x13*m.x99 + 0.0001*
m.x13*m.x100 + 0.0001*m.x13*m.x101 + 0.0001*m.x13*m.x102 + 0.0001*m.x13*m.x103 + 0.0001*m.x13*
m.x104 + 0.0001*m.x13*m.x105 + 0.0001*m.x13*m.x106 + 0.0001*m.x13*m.x107 + 0.0001*m.x13*m.x108 +
0.0001*m.x13*m.x109 + 0.0001*m.x13*m.x110 + 0.0001*m.x13*m.x111 + 0.0001*m.x13*m.x112 + 0.0001*
m.x13*m.x113 + 0.0001*m.x13*m.x114 + 0.0001*m.x13*m.x115 + 0.0001*m.x13*m.x116 + 0.0001*m.x13*
m.x117 + 0.0001*m.x13*m.x118 + 0.0001*m.x13*m.x119 + 0.0001*m.x13*m.x120 + 0.0001*m.x13*m.x121 +
0.0001*m.x13*m.x122 + 0.0001*m.x13*m.x123 + 0.0001*m.x13*m.x124 + 0.0001*m.x13*m.x125 + 0.0001*
m.x13*m.x126 + 0.0001*m.x13*m.x127 + 0.0001*m.x13*m.x128 + 0.0001*m.x13*m.x129 + 3.05296742049278
*m.x13*m.x130 + 0.0001*m.x13*m.x131 + 0.0001*m.x13*m.x132 + 0.0001*m.x13*m.x133 + 0.0001*m.x13*
m.x134 + 0.0001*m.x13*m.x135 + 0.0001*m.x13*m.x136 + 0.0001*m.x13*m.x137 + 0.0001*m.x13*m.x138 +
0.0001*m.x13*m.x139 + 0.0001*m.x13*m.x140 + 0.0001*m.x13*m.x141 + 0.0001*m.x13*m.x142 + 0.0001*
m.x13*m.x143 + 0.0001*m.x13*m.x144 + 0.0001*m.x13*m.x145 + 0.0001*m.x13*m.x146 + 0.0001*m.x13*
m.x147 + 0.0001*m.x13*m.x148 + 0.0001*m.x13*m.x149 + 0.0001*m.x13*m.x150 + 0.0001*m.x13*m.x151 +
0.0001*m.x13*m.x152 + 0.0001*m.x13*m.x153 + 0.0001*m.x13*m.x154 + 0.0001*m.x13*m.x155 + 0.0001*
m.x13*m.x156 + 0.0001*m.x13*m.x157 + 0.0001*m.x13*m.x158 + 0.0001*m.x13*m.x159 + 0.0001*m.x13*
m.x160 + 0.0001*m.x13*m.x161 + 0.0001*m.x13*m.x162 + 0.0001*m.x13*m.x163 + 0.0001*m.x13*m.x164 +
0.0001*m.x13*m.x165 + 0.0001*m.x13*m.x166 + 0.0001*m.x13*m.x167 + 0.0001*m.x13*m.x168 + 0.0001*
m.x13*m.x169 + 0.0001*m.x13*m.x170 + 0.0001*m.x13*m.x171 + 0.0001*m.x13*m.x172 + 0.0001*m.x13*
m.x173 + 0.0001*m.x13*m.x174 + 0.0001*m.x13*m.x175 + 0.0001*m.x13*m.x176 + 0.0001*m.x13*m.x177 +
0.0001*m.x13*m.x178 + 0.0001*m.x13*m.x179 + 0.0001*m.x13*m.x180 + 0.0001*m.x13*m.x181 + 0.0001*
m.x13*m.x182 + 0.0001*m.x13*m.x183 + 0.0001*m.x13*m.x184 + 0.0001*m.x13*m.x185 + 0.0001*m.x14*
m.x1 + 7.28961579614963*m.x14*m.x2 + 0.0001*m.x14*m.x3 + 0.0001*m.x14*m.x4 + 0.0001*m.x14*m.x5 +
0.0001*m.x14*m.x6 + 0.0001*m.x14*m.x7 + 0.0001*m.x14*m.x8 + 0.0001*m.x14*m.x9 + 0.0001*m.x14*
m.x10 + 0.0001*m.x14*m.x11 + 0.0001*m.x14*m.x12 + 0.0001*m.x14*m.x13 + 5.99122480380934*m.x14**2
+ 0.0001*m.x14*m.x15 + 0.0001*m.x14*m.x16 + 0.0001*m.x14*m.x17 + 0.0001*m.x14*m.x18 + 0.0001*
m.x14*m.x19 + 0.0001*m.x14*m.x20 + 0.0001*m.x14*m.x21 + 0.0001*m.x14*m.x22 + 0.0001*m.x14*m.x23
+ 0.0001*m.x14*m.x24 + 1.46344441732589*m.x14*m.x25 + 0.0001*m.x14*m.x26 + 0.0001*m.x14*m.x27 +
0.0001*m.x14*m.x28 + 0.0001*m.x14*m.x29 + 0.0001*m.x14*m.x30 + 0.0001*m.x14*m.x31 + 0.0001*m.x14*
m.x32 + 0.0001*m.x14*m.x33 + 0.0001*m.x14*m.x34 + 0.0001*m.x14*m.x35 + 0.0001*m.x14*m.x36 +
5.66332953599568*m.x14*m.x37 + 0.0001*m.x14*m.x38 + 0.0001*m.x14*m.x39 + 0.0001*m.x14*m.x40 +
0.0001*m.x14*m.x41 + 0.0001*m.x14*m.x42 + 0.0001*m.x14*m.x43 + 0.0001*m.x14*m.x44 + 0.0001*m.x14*
m.x45 + 0.0001*m.x14*m.x46 + 0.0001*m.x14*m.x47 + 0.0001*m.x14*m.x48 + 0.0001*m.x14*m.x49 +
0.0001*m.x14*m.x50 + 0.0001*m.x14*m.x51 + 0.0001*m.x14*m.x52 + 0.0001*m.x14*m.x53 + 0.0001*m.x14*
m.x54 + 0.0001*m.x14*m.x55 + 0.0001*m.x14*m.x56 + 0.0001*m.x14*m.x57 + 0.0001*m.x14*m.x58 +
0.0001*m.x14*m.x59 + 0.0001*m.x14*m.x60 + 0.0001*m.x14*m.x61 + 0.0001*m.x14*m.x62 + 0.0001*m.x14*
m.x63 + 0.0001*m.x14*m.x64 + 0.0001*m.x14*m.x65 + 0.0001*m.x14*m.x66 + 0.0001*m.x14*m.x67 +
0.0001*m.x14*m.x68 + 0.0001*m.x14*m.x69 + 0.0001*m.x14*m.x70 + 0.0001*m.x14*m.x71 + 0.0001*m.x14*
m.x72 + 0.0001*m.x14*m.x73 + 0.0001*m.x14*m.x74 + 0.0001*m.x14*m.x75 + 0.0001*m.x14*m.x76 +
0.0001*m.x14*m.x77 + 0.0001*m.x14*m.x78 + 0.0001*m.x14*m.x79 + 0.0001*m.x14*m.x80 + 0.0001*m.x14*
m.x81 + 0.0001*m.x14*m.x82 + 0.0001*m.x14*m.x83 + 0.0001*m.x14*m.x84 + 0.0001*m.x14*m.x85 +
0.0001*m.x14*m.x86 + 0.0001*m.x14*m.x87 + 0.0001*m.x14*m.x88 + 0.0001*m.x14*m.x89 + 0.0001*m.x14*
m.x90 + 0.0001*m.x14*m.x91 + 0.0001*m.x14*m.x92 + 0.0001*m.x14*m.x93 + 0.0001*m.x14*m.x94 +
0.0001*m.x14*m.x95 + 0.0001*m.x14*m.x96 + 0.0001*m.x14*m.x97 + 0.0001*m.x14*m.x98 + 0.0001*m.x14*
m.x99 + 0.0001*m.x14*m.x100 + 0.0001*m.x14*m.x101 + 0.0001*m.x14*m.x102 + 0.0001*m.x14*m.x103 +
0.0001*m.x14*m.x104 + 0.0001*m.x14*m.x105 + 0.0001*m.x14*m.x106 + 0.0001*m.x14*m.x107 + 0.0001*
m.x14*m.x108 + 0.0001*m.x14*m.x109 + 0.0001*m.x14*m.x110 + 0.0001*m.x14*m.x111 + 0.0001*m.x14*
m.x112 + 0.0001*m.x14*m.x113 + 0.0001*m.x14*m.x114 + 0.0001*m.x14*m.x115 + 0.0001*m.x14*m.x116 +
0.0001*m.x14*m.x117 + 0.0001*m.x14*m.x118 + 0.0001*m.x14*m.x119 + 0.0001*m.x14*m.x120 + 0.0001*
m.x14*m.x121 + 0.0001*m.x14*m.x122 + 0.0001*m.x14*m.x123 + 0.0001*m.x14*m.x124 + 0.0001*m.x14*
m.x125 + 0.0001*m.x14*m.x126 + 0.0001*m.x14*m.x127 + 0.0001*m.x14*m.x128 + 0.0001*m.x14*m.x129 +
0.0001*m.x14*m.x130 + 3.10036242205314*m.x14*m.x131 + 0.0001*m.x14*m.x132 + 0.0001*m.x14*m.x133
+ 0.0001*m.x14*m.x134 + 0.0001*m.x14*m.x135 + 0.0001*m.x14*m.x136 + 0.0001*m.x14*m.x137 + 0.0001
*m.x14*m.x138 + 0.0001*m.x14*m.x139 + 0.0001*m.x14*m.x140 + 0.0001*m.x14*m.x141 + 0.0001*m.x14*
m.x142 + 0.0001*m.x14*m.x143 + 0.0001*m.x14*m.x144 + 0.0001*m.x14*m.x145 + 0.0001*m.x14*m.x146 +
0.0001*m.x14*m.x147 + 0.0001*m.x14*m.x148 + 0.0001*m.x14*m.x149 + 0.0001*m.x14*m.x150 + 0.0001*
m.x14*m.x151 + 0.0001*m.x14*m.x152 + 0.0001*m.x14*m.x153 + 0.0001*m.x14*m.x154 + 0.0001*m.x14*
m.x155 + 0.0001*m.x14*m.x156 + 0.0001*m.x14*m.x157 + 0.0001*m.x14*m.x158 + 0.0001*m.x14*m.x159 +
0.0001*m.x14*m.x160 + 0.0001*m.x14*m.x161 + 0.0001*m.x14*m.x162 + 0.0001*m.x14*m.x163 + 0.0001*
m.x14*m.x164 + 0.0001*m.x14*m.x165 + 0.0001*m.x14*m.x166 + 0.0001*m.x14*m.x167 + 0.0001*m.x14*
m.x168 + 0.0001*m.x14*m.x169 + 0.0001*m.x14*m.x170 + 0.0001*m.x14*m.x171 + 0.0001*m.x14*m.x172 +
0.0001*m.x14*m.x173 + 0.0001*m.x14*m.x174 + 0.0001*m.x14*m.x175 + 0.0001*m.x14*m.x176 + 0.0001*
m.x14*m.x177 + 0.0001*m.x14*m.x178 + 0.0001*m.x14*m.x179 + 0.0001*m.x14*m.x180 + 0.0001*m.x14*
m.x181 + 0.0001*m.x14*m.x182 + 0.0001*m.x14*m.x183 + 0.0001*m.x14*m.x184 + 0.0001*m.x14*m.x185 +
0.0001*m.x15*m.x1 + 0.0001*m.x15*m.x2 + 7.28961579614963*m.x15*m.x3 + 0.0001*m.x15*m.x4 + 0.0001*
m.x15*m.x5 + 0.0001*m.x15*m.x6 + 0.0001*m.x15*m.x7 + 0.0001*m.x15*m.x8 + 0.0001*m.x15*m.x9 +
0.0001*m.x15*m.x10 + 0.0001*m.x15*m.x11 + 0.0001*m.x15*m.x12 + 0.0001*m.x15*m.x13 + 0.0001*m.x15*
m.x14 + 5.99122480380933*m.x15**2 + 0.0001*m.x15*m.x16 + 0.0001*m.x15*m.x17 + 0.0001*m.x15*m.x18
+ 0.0001*m.x15*m.x19 + 0.0001*m.x15*m.x20 + 0.0001*m.x15*m.x21 + 0.0001*m.x15*m.x22 + 0.0001*
m.x15*m.x23 + 0.0001*m.x15*m.x24 + 0.0001*m.x15*m.x25 + 1.44057575028709*m.x15*m.x26 + 0.0001*
m.x15*m.x27 + 0.0001*m.x15*m.x28 + 0.0001*m.x15*m.x29 + 0.0001*m.x15*m.x30 + 0.0001*m.x15*m.x31
+ 0.0001*m.x15*m.x32 + 0.0001*m.x15*m.x33 + 0.0001*m.x15*m.x34 + 0.0001*m.x15*m.x35 + 0.0001*
m.x15*m.x36 + 0.0001*m.x15*m.x37 + 5.66332953599568*m.x15*m.x38 + 0.0001*m.x15*m.x39 + 0.0001*
m.x15*m.x40 + 0.0001*m.x15*m.x41 + 0.0001*m.x15*m.x42 + 0.0001*m.x15*m.x43 + 0.0001*m.x15*m.x44
+ 0.0001*m.x15*m.x45 + 0.0001*m.x15*m.x46 + 0.0001*m.x15*m.x47 + 0.0001*m.x15*m.x48 + 0.0001*
m.x15*m.x49 + 0.0001*m.x15*m.x50 + 0.0001*m.x15*m.x51 + 0.0001*m.x15*m.x52 + 0.0001*m.x15*m.x53
+ 0.0001*m.x15*m.x54 + 0.0001*m.x15*m.x55 + 0.0001*m.x15*m.x56 + 0.0001*m.x15*m.x57 + 0.0001*
m.x15*m.x58 + 0.0001*m.x15*m.x59 + 0.0001*m.x15*m.x60 + 0.0001*m.x15*m.x61 + 0.0001*m.x15*m.x62
+ 0.0001*m.x15*m.x63 + 0.0001*m.x15*m.x64 + 0.0001*m.x15*m.x65 + 0.0001*m.x15*m.x66 + 0.0001*
m.x15*m.x67 + 0.0001*m.x15*m.x68 + 0.0001*m.x15*m.x69 + 0.0001*m.x15*m.x70 + 0.0001*m.x15*m.x71
+ 0.0001*m.x15*m.x72 + 0.0001*m.x15*m.x73 + 0.0001*m.x15*m.x74 + 0.0001*m.x15*m.x75 + 0.0001*
m.x15*m.x76 + 0.0001*m.x15*m.x77 + 0.0001*m.x15*m.x78 + 0.0001*m.x15*m.x79 + 0.0001*m.x15*m.x80
+ 0.0001*m.x15*m.x81 + 0.0001*m.x15*m.x82 + 0.0001*m.x15*m.x83 + 0.0001*m.x15*m.x84 + 0.0001*
m.x15*m.x85 + 0.0001*m.x15*m.x86 + 0.0001*m.x15*m.x87 + 0.0001*m.x15*m.x88 + 0.0001*m.x15*m.x89
+ 0.0001*m.x15*m.x90 + 0.0001*m.x15*m.x91 + 0.0001*m.x15*m.x92 + 0.0001*m.x15*m.x93 + 0.0001*
m.x15*m.x94 + 0.0001*m.x15*m.x95 + 0.0001*m.x15*m.x96 + 0.0001*m.x15*m.x97 + 0.0001*m.x15*m.x98
+ 0.0001*m.x15*m.x99 + 0.0001*m.x15*m.x100 + 0.0001*m.x15*m.x101 + 0.0001*m.x15*m.x102 + 0.0001*
m.x15*m.x103 + 0.0001*m.x15*m.x104 + 0.0001*m.x15*m.x105 + 0.0001*m.x15*m.x106 + 0.0001*m.x15*
m.x107 + 0.0001*m.x15*m.x108 + 0.0001*m.x15*m.x109 + 0.0001*m.x15*m.x110 + 0.0001*m.x15*m.x111 +
0.0001*m.x15*m.x112 + 0.0001*m.x15*m.x113 + 0.0001*m.x15*m.x114 + 0.0001*m.x15*m.x115 + 0.0001*
m.x15*m.x116 + 0.0001*m.x15*m.x117 + 0.0001*m.x15*m.x118 + 0.0001*m.x15*m.x119 + 0.0001*m.x15*
m.x120 + 0.0001*m.x15*m.x121 + 0.0001*m.x15*m.x122 + 0.0001*m.x15*m.x123 + 0.0001*m.x15*m.x124 +
0.0001*m.x15*m.x125 + 0.0001*m.x15*m.x126 + 0.0001*m.x15*m.x127 + 0.0001*m.x15*m.x128 + 0.0001*
m.x15*m.x129 + 0.0001*m.x15*m.x130 + 0.0001*m.x15*m.x131 + 3.09241239019915*m.x15*m.x132 + 0.0001
*m.x15*m.x133 + 0.0001*m.x15*m.x134 + 0.0001*m.x15*m.x135 + 0.0001*m.x15*m.x136 + 0.0001*m.x15*
m.x137 + 0.0001*m.x15*m.x138 + 0.0001*m.x15*m.x139 + 0.0001*m.x15*m.x140 + 0.0001*m.x15*m.x141 +
0.0001*m.x15*m.x142 + 0.0001*m.x15*m.x143 + 0.0001*m.x15*m.x144 + 0.0001*m.x15*m.x145 + 0.0001*
m.x15*m.x146 + 0.0001*m.x15*m.x147 + 0.0001*m.x15*m.x148 + 0.0001*m.x15*m.x149 + 0.0001*m.x15*
m.x150 + 0.0001*m.x15*m.x151 + 0.0001*m.x15*m.x152 + 0.0001*m.x15*m.x153 + 0.0001*m.x15*m.x154 +
0.0001*m.x15*m.x155 + 0.0001*m.x15*m.x156 + 0.0001*m.x15*m.x157 + 0.0001*m.x15*m.x158 + 0.0001*
m.x15*m.x159 + 0.0001*m.x15*m.x160 + 0.0001*m.x15*m.x161 + 0.0001*m.x15*m.x162 + 0.0001*m.x15*
m.x163 + 0.0001*m.x15*m.x164 + 0.0001*m.x15*m.x165 + 0.0001*m.x15*m.x166 + 0.0001*m.x15*m.x167 +
0.0001*m.x15*m.x168 + 0.0001*m.x15*m.x169 + 0.0001*m.x15*m.x170 + 0.0001*m.x15*m.x171 + 0.0001*
m.x15*m.x172 + 0.0001*m.x15*m.x173 + 0.0001*m.x15*m.x174 + 0.0001*m.x15*m.x175 + 0.0001*m.x15*
m.x176 + 0.0001*m.x15*m.x177 + 0.0001*m.x15*m.x178 + 0.0001*m.x15*m.x179 + 0.0001*m.x15*m.x180 +
0.0001*m.x15*m.x181 + 0.0001*m.x15*m.x182 + 0.0001*m.x15*m.x183 + 0.0001*m.x15*m.x184 + 0.0001*
m.x15*m.x185 + 0.0001*m.x16*m.x1 + 0.0001*m.x16*m.x2 + 0.0001*m.x16*m.x3 + 7.24661736061512*m.x16
*m.x4 + 0.0001*m.x16*m.x5 + 0.0001*m.x16*m.x6 + 0.0001*m.x16*m.x7 + 0.0001*m.x16*m.x8 + 0.0001*
m.x16*m.x9 + 0.0001*m.x16*m.x10 + 0.0001*m.x16*m.x11 + 0.0001*m.x16*m.x12 + 0.0001*m.x16*m.x13 +
0.0001*m.x16*m.x14 + 0.0001*m.x16*m.x15 + 5.92075394515698*m.x16**2 + 0.0001*m.x16*m.x17 + 0.0001
*m.x16*m.x18 + 0.0001*m.x16*m.x19 + 0.0001*m.x16*m.x20 + 0.0001*m.x16*m.x21 + 0.0001*m.x16*m.x22
+ 0.0001*m.x16*m.x23 + 0.0001*m.x16*m.x24 + 0.0001*m.x16*m.x25 + 0.0001*m.x16*m.x26 +
1.43443424552376*m.x16*m.x27 + 0.0001*m.x16*m.x28 + 0.0001*m.x16*m.x29 + 0.0001*m.x16*m.x30 +
0.0001*m.x16*m.x31 + 0.0001*m.x16*m.x32 + 0.0001*m.x16*m.x33 + 0.0001*m.x16*m.x34 + 0.0001*m.x16*
m.x35 + 0.0001*m.x16*m.x36 + 0.0001*m.x16*m.x37 + 0.0001*m.x16*m.x38 + 5.84911816127454*m.x16*
m.x39 + 0.0001*m.x16*m.x40 + 0.0001*m.x16*m.x41 + 0.0001*m.x16*m.x42 + 0.0001*m.x16*m.x43 +
0.0001*m.x16*m.x44 + 0.0001*m.x16*m.x45 + 0.0001*m.x16*m.x46 + 0.0001*m.x16*m.x47 + 0.0001*m.x16*
m.x48 + 0.0001*m.x16*m.x49 + 0.0001*m.x16*m.x50 + 0.0001*m.x16*m.x51 + 0.0001*m.x16*m.x52 +
0.0001*m.x16*m.x53 + 0.0001*m.x16*m.x54 + 0.0001*m.x16*m.x55 + 0.0001*m.x16*m.x56 + 0.0001*m.x16*
m.x57 + 0.0001*m.x16*m.x58 + 0.0001*m.x16*m.x59 + 0.0001*m.x16*m.x60 + 0.0001*m.x16*m.x61 +
0.0001*m.x16*m.x62 + 0.0001*m.x16*m.x63 + 0.0001*m.x16*m.x64 + 0.0001*m.x16*m.x65 + 0.0001*m.x16*
m.x66 + 0.0001*m.x16*m.x67 + 0.0001*m.x16*m.x68 + 0.0001*m.x16*m.x69 + 0.0001*m.x16*m.x70 +
0.0001*m.x16*m.x71 + 0.0001*m.x16*m.x72 + 0.0001*m.x16*m.x73 + 0.0001*m.x16*m.x74 + 0.0001*m.x16*
m.x75 + 0.0001*m.x16*m.x76 + 0.0001*m.x16*m.x77 + 0.0001*m.x16*m.x78 + 0.0001*m.x16*m.x79 +
0.0001*m.x16*m.x80 + 0.0001*m.x16*m.x81 + 0.0001*m.x16*m.x82 + 0.0001*m.x16*m.x83 + 0.0001*m.x16*
m.x84 + 0.0001*m.x16*m.x85 + 0.0001*m.x16*m.x86 + 0.0001*m.x16*m.x87 + 0.0001*m.x16*m.x88 +
0.0001*m.x16*m.x89 + 0.0001*m.x16*m.x90 + 0.0001*m.x16*m.x91 + 0.0001*m.x16*m.x92 + 0.0001*m.x16*
m.x93 + 0.0001*m.x16*m.x94 + 0.0001*m.x16*m.x95 + 0.0001*m.x16*m.x96 + 0.0001*m.x16*m.x97 +
0.0001*m.x16*m.x98 + 0.0001*m.x16*m.x99 + 0.0001*m.x16*m.x100 + 0.0001*m.x16*m.x101 + 0.0001*
m.x16*m.x102 + 0.0001*m.x16*m.x103 + 0.0001*m.x16*m.x104 + 0.0001*m.x16*m.x105 + 0.0001*m.x16*
m.x106 + 0.0001*m.x16*m.x107 + 0.0001*m.x16*m.x108 + 0.0001*m.x16*m.x109 + 0.0001*m.x16*m.x110 +
0.0001*m.x16*m.x111 + 0.0001*m.x16*m.x112 + 0.0001*m.x16*m.x113 + 0.0001*m.x16*m.x114 + 0.0001*
m.x16*m.x115 + 0.0001*m.x16*m.x116 + 0.0001*m.x16*m.x117 + 0.0001*m.x16*m.x118 + 0.0001*m.x16*
m.x119 + 0.0001*m.x16*m.x120 + 0.0001*m.x16*m.x121 + 0.0001*m.x16*m.x122 + 0.0001*m.x16*m.x123 +
0.0001*m.x16*m.x124 + 0.0001*m.x16*m.x125 + 0.0001*m.x16*m.x126 + 0.0001*m.x16*m.x127 + 0.0001*
m.x16*m.x128 + 0.0001*m.x16*m.x129 + 0.0001*m.x16*m.x130 + 0.0001*m.x16*m.x131 + 0.0001*m.x16*
m.x132 + 3.04574536914387*m.x16*m.x133 + 0.0001*m.x16*m.x134 + 0.0001*m.x16*m.x135 + 0.0001*m.x16
*m.x136 + 0.0001*m.x16*m.x137 + 0.0001*m.x16*m.x138 + 0.0001*m.x16*m.x139 + 0.0001*m.x16*m.x140
+ 0.0001*m.x16*m.x141 + 0.0001*m.x16*m.x142 + 0.0001*m.x16*m.x143 + 0.0001*m.x16*m.x144 + 0.0001
*m.x16*m.x145 + 0.0001*m.x16*m.x146 + 0.0001*m.x16*m.x147 + 0.0001*m.x16*m.x148 + 0.0001*m.x16*
m.x149 + 0.0001*m.x16*m.x150 + 0.0001*m.x16*m.x151 + 0.0001*m.x16*m.x152 + 0.0001*m.x16*m.x153 +
0.0001*m.x16*m.x154 + 0.0001*m.x16*m.x155 + 0.0001*m.x16*m.x156 + 0.0001*m.x16*m.x157 + 0.0001*
m.x16*m.x158 + 0.0001*m.x16*m.x159 + 0.0001*m.x16*m.x160 + 0.0001*m.x16*m.x161 + 0.0001*m.x16*
m.x162 + 0.0001*m.x16*m.x163 + 0.0001*m.x16*m.x164 + 0.0001*m.x16*m.x165 + 0.0001*m.x16*m.x166 +
0.0001*m.x16*m.x167 + 0.0001*m.x16*m.x168 + 0.0001*m.x16*m.x169 + 0.0001*m.x16*m.x170 + 0.0001*
m.x16*m.x171 + 0.0001*m.x16*m.x172 + 0.0001*m.x16*m.x173 + 0.0001*m.x16*m.x174 + 0.0001*m.x16*
m.x175 + 0.0001*m.x16*m.x176 + 0.0001*m.x16*m.x177 + 0.0001*m.x16*m.x178 + 0.0001*m.x16*m.x179 +
0.0001*m.x16*m.x180 + 0.0001*m.x16*m.x181 + 0.0001*m.x16*m.x182 + 0.0001*m.x16*m.x183 + 0.0001*
m.x16*m.x184 + 0.0001*m.x16*m.x185 + 0.0001*m.x17*m.x1 + 0.0001*m.x17*m.x2 + 0.0001*m.x17*m.x3 +
0.0001*m.x17*m.x4 + 7.26656408673387*m.x17*m.x5 + 0.0001*m.x17*m.x6 + 0.0001*m.x17*m.x7 + 0.0001*
m.x17*m.x8 + 0.0001*m.x17*m.x9 + 0.0001*m.x17*m.x10 + 0.0001*m.x17*m.x11 + 0.0001*m.x17*m.x12 +
0.0001*m.x17*m.x13 + 0.0001*m.x17*m.x14 + 0.0001*m.x17*m.x15 + 0.0001*m.x17*m.x16 +
5.79947002171425*m.x17**2 + 0.0001*m.x17*m.x18 + 0.0001*m.x17*m.x19 + 0.0001*m.x17*m.x20 + 0.0001
*m.x17*m.x21 + 0.0001*m.x17*m.x22 + 0.0001*m.x17*m.x23 + 0.0001*m.x17*m.x24 + 0.0001*m.x17*m.x25
+ 0.0001*m.x17*m.x26 + 0.0001*m.x17*m.x27 + 1.40499695900221*m.x17*m.x28 + 0.0001*m.x17*m.x29 +
0.0001*m.x17*m.x30 + 0.0001*m.x17*m.x31 + 0.0001*m.x17*m.x32 + 0.0001*m.x17*m.x33 + 0.0001*m.x17*
m.x34 + 0.0001*m.x17*m.x35 + 0.0001*m.x17*m.x36 + 0.0001*m.x17*m.x37 + 0.0001*m.x17*m.x38 +
0.0001*m.x17*m.x39 + 5.72841015580757*m.x17*m.x40 + 0.0001*m.x17*m.x41 + 0.0001*m.x17*m.x42 +
0.0001*m.x17*m.x43 + 0.0001*m.x17*m.x44 + 0.0001*m.x17*m.x45 + 0.0001*m.x17*m.x46 + 0.0001*m.x17*
m.x47 + 0.0001*m.x17*m.x48 + 0.0001*m.x17*m.x49 + 0.0001*m.x17*m.x50 + 0.0001*m.x17*m.x51 +
0.0001*m.x17*m.x52 + 0.0001*m.x17*m.x53 + 0.0001*m.x17*m.x54 + 0.0001*m.x17*m.x55 + 0.0001*m.x17*
m.x56 + 0.0001*m.x17*m.x57 + 0.0001*m.x17*m.x58 + 0.0001*m.x17*m.x59 + 0.0001*m.x17*m.x60 +
0.0001*m.x17*m.x61 + 0.0001*m.x17*m.x62 + 0.0001*m.x17*m.x63 + 0.0001*m.x17*m.x64 + 0.0001*m.x17*
m.x65 + 0.0001*m.x17*m.x66 + 0.0001*m.x17*m.x67 + 0.0001*m.x17*m.x68 + 0.0001*m.x17*m.x69 +
0.0001*m.x17*m.x70 + 0.0001*m.x17*m.x71 + 0.0001*m.x17*m.x72 + 0.0001*m.x17*m.x73 + 0.0001*m.x17*
m.x74 + 0.0001*m.x17*m.x75 + 0.0001*m.x17*m.x76 + 0.0001*m.x17*m.x77 + 0.0001*m.x17*m.x78 +
0.0001*m.x17*m.x79 + 0.0001*m.x17*m.x80 + 0.0001*m.x17*m.x81 + 0.0001*m.x17*m.x82 + 0.0001*m.x17*
m.x83 + 0.0001*m.x17*m.x84 + 0.0001*m.x17*m.x85 + 0.0001*m.x17*m.x86 + 0.0001*m.x17*m.x87 +
0.0001*m.x17*m.x88 + 0.0001*m.x17*m.x89 + 0.0001*m.x17*m.x90 + 0.0001*m.x17*m.x91 + 0.0001*m.x17*
m.x92 + 0.0001*m.x17*m.x93 + 0.0001*m.x17*m.x94 + 0.0001*m.x17*m.x95 + 0.0001*m.x17*m.x96 +
0.0001*m.x17*m.x97 + 0.0001*m.x17*m.x98 + 0.0001*m.x17*m.x99 + 0.0001*m.x17*m.x100 + 0.0001*m.x17
*m.x101 + 0.0001*m.x17*m.x102 + 0.0001*m.x17*m.x103 + 0.0001*m.x17*m.x104 + 0.0001*m.x17*m.x105
+ 0.0001*m.x17*m.x106 + 0.0001*m.x17*m.x107 + 0.0001*m.x17*m.x108 + 0.0001*m.x17*m.x109 + 0.0001
*m.x17*m.x110 + 0.0001*m.x17*m.x111 + 0.0001*m.x17*m.x112 + 0.0001*m.x17*m.x113 + 0.0001*m.x17*
m.x114 + 0.0001*m.x17*m.x115 + 0.0001*m.x17*m.x116 + 0.0001*m.x17*m.x117 + 0.0001*m.x17*m.x118 +
0.0001*m.x17*m.x119 + 0.0001*m.x17*m.x120 + 0.0001*m.x17*m.x121 + 0.0001*m.x17*m.x122 + 0.0001*
m.x17*m.x123 + 0.0001*m.x17*m.x124 + 0.0001*m.x17*m.x125 + 0.0001*m.x17*m.x126 + 0.0001*m.x17*
m.x127 + 0.0001*m.x17*m.x128 + 0.0001*m.x17*m.x129 + 0.0001*m.x17*m.x130 + 0.0001*m.x17*m.x131 +
0.0001*m.x17*m.x132 + 0.0001*m.x17*m.x133 + 2.9828914391795*m.x17*m.x134 + 0.0001*m.x17*m.x135 +
0.0001*m.x17*m.x136 + 0.0001*m.x17*m.x137 + 0.0001*m.x17*m.x138 + 0.0001*m.x17*m.x139 + 0.0001*
m.x17*m.x140 + 0.0001*m.x17*m.x141 + 0.0001*m.x17*m.x142 + 0.0001*m.x17*m.x143 + 0.0001*m.x17*
m.x144 + 0.0001*m.x17*m.x145 + 0.0001*m.x17*m.x146 + 0.0001*m.x17*m.x147 + 0.0001*m.x17*m.x148 +
0.0001*m.x17*m.x149 + 0.0001*m.x17*m.x150 + 0.0001*m.x17*m.x151 + 0.0001*m.x17*m.x152 + 0.0001*
m.x17*m.x153 + 0.0001*m.x17*m.x154 + 0.0001*m.x17*m.x155 + 0.0001*m.x17*m.x156 + 0.0001*m.x17*
m.x157 + 0.0001*m.x17*m.x158 + 0.0001*m.x17*m.x159 + 0.0001*m.x17*m.x160 + 0.0001*m.x17*m.x161 +
0.0001*m.x17*m.x162 + 0.0001*m.x17*m.x163 + 0.0001*m.x17*m.x164 + 0.0001*m.x17*m.x165 + 0.0001*
m.x17*m.x166 + 0.0001*m.x17*m.x167 + 0.0001*m.x17*m.x168 + 0.0001*m.x17*m.x169 + 0.0001*m.x17*
m.x170 + 0.0001*m.x17*m.x171 + 0.0001*m.x17*m.x172 + 0.0001*m.x17*m.x173 + 0.0001*m.x17*m.x174 +
0.0001*m.x17*m.x175 + 0.0001*m.x17*m.x176 + 0.0001*m.x17*m.x177 + 0.0001*m.x17*m.x178 + 0.0001*
m.x17*m.x179 + 0.0001*m.x17*m.x180 + 0.0001*m.x17*m.x181 + 0.0001*m.x17*m.x182 + 0.0001*m.x17*
m.x183 + 0.0001*m.x17*m.x184 + 0.0001*m.x17*m.x185 + 0.0001*m.x18*m.x1 + 0.0001*m.x18*m.x2 +
0.0001*m.x18*m.x3 + 0.0001*m.x18*m.x4 + 0.0001*m.x18*m.x5 + 7.26556099733353*m.x18*m.x6 + 0.0001*
m.x18*m.x7 + 0.0001*m.x18*m.x8 + 0.0001*m.x18*m.x9 + 0.0001*m.x18*m.x10 + 0.0001*m.x18*m.x11 +
0.0001*m.x18*m.x12 + 0.0001*m.x18*m.x13 + 0.0001*m.x18*m.x14 + 0.0001*m.x18*m.x15 + 0.0001*m.x18*
m.x16 + 0.0001*m.x18*m.x17 + 5.7978689995367*m.x18**2 + 0.0001*m.x18*m.x19 + 0.0001*m.x18*m.x20
+ 0.0001*m.x18*m.x21 + 0.0001*m.x18*m.x22 + 0.0001*m.x18*m.x23 + 0.0001*m.x18*m.x24 + 0.0001*
m.x18*m.x25 + 0.0001*m.x18*m.x26 + 0.0001*m.x18*m.x27 + 0.0001*m.x18*m.x28 + 1.41126335218548*
m.x18*m.x29 + 0.0001*m.x18*m.x30 + 0.0001*m.x18*m.x31 + 0.0001*m.x18*m.x32 + 0.0001*m.x18*m.x33
+ 0.0001*m.x18*m.x34 + 0.0001*m.x18*m.x35 + 0.0001*m.x18*m.x36 + 0.0001*m.x18*m.x37 + 0.0001*
m.x18*m.x38 + 0.0001*m.x18*m.x39 + 0.0001*m.x18*m.x40 + 5.72772003780067*m.x18*m.x41 + 0.0001*
m.x18*m.x42 + 0.0001*m.x18*m.x43 + 0.0001*m.x18*m.x44 + 0.0001*m.x18*m.x45 + 0.0001*m.x18*m.x46
+ 0.0001*m.x18*m.x47 + 0.0001*m.x18*m.x48 + 0.0001*m.x18*m.x49 + 0.0001*m.x18*m.x50 + 0.0001*
m.x18*m.x51 + 0.0001*m.x18*m.x52 + 0.0001*m.x18*m.x53 + 0.0001*m.x18*m.x54 + 0.0001*m.x18*m.x55
+ 0.0001*m.x18*m.x56 + 0.0001*m.x18*m.x57 + 0.0001*m.x18*m.x58 + 0.0001*m.x18*m.x59 + 0.0001*
m.x18*m.x60 + 0.0001*m.x18*m.x61 + 0.0001*m.x18*m.x62 + 0.0001*m.x18*m.x63 + 0.0001*m.x18*m.x64
+ 0.0001*m.x18*m.x65 + 0.0001*m.x18*m.x66 + 0.0001*m.x18*m.x67 + 0.0001*m.x18*m.x68 + 0.0001*
m.x18*m.x69 + 0.0001*m.x18*m.x70 + 0.0001*m.x18*m.x71 + 0.0001*m.x18*m.x72 + 0.0001*m.x18*m.x73
+ 0.0001*m.x18*m.x74 + 0.0001*m.x18*m.x75 + 0.0001*m.x18*m.x76 + 0.0001*m.x18*m.x77 + 0.0001*
m.x18*m.x78 + 0.0001*m.x18*m.x79 + 0.0001*m.x18*m.x80 + 0.0001*m.x18*m.x81 + 0.0001*m.x18*m.x82
+ 0.0001*m.x18*m.x83 + 0.0001*m.x18*m.x84 + 0.0001*m.x18*m.x85 + 0.0001*m.x18*m.x86 + 0.0001*
m.x18*m.x87 + 0.0001*m.x18*m.x88 + 0.0001*m.x18*m.x89 + 0.0001*m.x18*m.x90 + 0.0001*m.x18*m.x91
+ 0.0001*m.x18*m.x92 + 0.0001*m.x18*m.x93 + 0.0001*m.x18*m.x94 + 0.0001*m.x18*m.x95 + 0.0001*
m.x18*m.x96 + 0.0001*m.x18*m.x97 + 0.0001*m.x18*m.x98 + 0.0001*m.x18*m.x99 + 0.0001*m.x18*m.x100
+ 0.0001*m.x18*m.x101 + 0.0001*m.x18*m.x102 + 0.0001*m.x18*m.x103 + 0.0001*m.x18*m.x104 + 0.0001
*m.x18*m.x105 + 0.0001*m.x18*m.x106 + 0.0001*m.x18*m.x107 + 0.0001*m.x18*m.x108 + 0.0001*m.x18*
m.x109 + 0.0001*m.x18*m.x110 + 0.0001*m.x18*m.x111 + 0.0001*m.x18*m.x112 + 0.0001*m.x18*m.x113 +
0.0001*m.x18*m.x114 + 0.0001*m.x18*m.x115 + 0.0001*m.x18*m.x116 + 0.0001*m.x18*m.x117 + 0.0001*
m.x18*m.x118 + 0.0001*m.x18*m.x119 + 0.0001*m.x18*m.x120 + 0.0001*m.x18*m.x121 + 0.0001*m.x18*
m.x122 + 0.0001*m.x18*m.x123 + 0.0001*m.x18*m.x124 + 0.0001*m.x18*m.x125 + 0.0001*m.x18*m.x126 +
0.0001*m.x18*m.x127 + 0.0001*m.x18*m.x128 + 0.0001*m.x18*m.x129 + 0.0001*m.x18*m.x130 + 0.0001*
m.x18*m.x131 + 0.0001*m.x18*m.x132 + 0.0001*m.x18*m.x133 + 0.0001*m.x18*m.x134 + 3.03300046678543
*m.x18*m.x135 + 0.0001*m.x18*m.x136 + 0.0001*m.x18*m.x137 + 0.0001*m.x18*m.x138 + 0.0001*m.x18*
m.x139 + 0.0001*m.x18*m.x140 + 0.0001*m.x18*m.x141 + 0.0001*m.x18*m.x142 + 0.0001*m.x18*m.x143 +
0.0001*m.x18*m.x144 + 0.0001*m.x18*m.x145 + 0.0001*m.x18*m.x146 + 0.0001*m.x18*m.x147 + 0.0001*
m.x18*m.x148 + 0.0001*m.x18*m.x149 + 0.0001*m.x18*m.x150 + 0.0001*m.x18*m.x151 + 0.0001*m.x18*
m.x152 + 0.0001*m.x18*m.x153 + 0.0001*m.x18*m.x154 + 0.0001*m.x18*m.x155 + 0.0001*m.x18*m.x156 +
0.0001*m.x18*m.x157 + 0.0001*m.x18*m.x158 + 0.0001*m.x18*m.x159 + 0.0001*m.x18*m.x160 + 0.0001*
m.x18*m.x161 + 0.0001*m.x18*m.x162 + 0.0001*m.x18*m.x163 + 0.0001*m.x18*m.x164 + 0.0001*m.x18*
m.x165 + 0.0001*m.x18*m.x166 + 0.0001*m.x18*m.x167 + 0.0001*m.x18*m.x168 + 0.0001*m.x18*m.x169 +
0.0001*m.x18*m.x170 + 0.0001*m.x18*m.x171 + 0.0001*m.x18*m.x172 + 0.0001*m.x18*m.x173 + 0.0001*
m.x18*m.x174 + 0.0001*m.x18*m.x175 + 0.0001*m.x18*m.x176 + 0.0001*m.x18*m.x177 + 0.0001*m.x18*
m.x178 + 0.0001*m.x18*m.x179 + 0.0001*m.x18*m.x180 + 0.0001*m.x18*m.x181 + 0.0001*m.x18*m.x182 +
0.0001*m.x18*m.x183 + 0.0001*m.x18*m.x184 + 0.0001*m.x18*m.x185 + 0.0001*m.x19*m.x1 + 0.0001*
m.x19*m.x2 + 0.0001*m.x19*m.x3 + 0.0001*m.x19*m.x4 + 0.0001*m.x19*m.x5 + 0.0001*m.x19*m.x6 +
7.41338218097586*m.x19*m.x7 + 0.0001*m.x19*m.x8 + 0.0001*m.x19*m.x9 + 0.0001*m.x19*m.x10 + 0.0001
*m.x19*m.x11 + 0.0001*m.x19*m.x12 + 0.0001*m.x19*m.x13 + 0.0001*m.x19*m.x14 + 0.0001*m.x19*m.x15
+ 0.0001*m.x19*m.x16 + 0.0001*m.x19*m.x17 + 0.0001*m.x19*m.x18 + 6.03618878752295*m.x19**2 +
0.0001*m.x19*m.x20 + 0.0001*m.x19*m.x21 + 0.0001*m.x19*m.x22 + 0.0001*m.x19*m.x23 + 0.0001*m.x19*
m.x24 + 0.0001*m.x19*m.x25 + 0.0001*m.x19*m.x26 + 0.0001*m.x19*m.x27 + 0.0001*m.x19*m.x28 +
0.0001*m.x19*m.x29 + 1.40606311251092*m.x19*m.x30 + 0.0001*m.x19*m.x31 + 0.0001*m.x19*m.x32 +
0.0001*m.x19*m.x33 + 0.0001*m.x19*m.x34 + 0.0001*m.x19*m.x35 + 0.0001*m.x19*m.x36 + 0.0001*m.x19*
m.x37 + 0.0001*m.x19*m.x38 + 0.0001*m.x19*m.x39 + 0.0001*m.x19*m.x40 + 0.0001*m.x19*m.x41 +
5.81931980408252*m.x19*m.x42 + 0.0001*m.x19*m.x43 + 0.0001*m.x19*m.x44 + 0.0001*m.x19*m.x45 +
0.0001*m.x19*m.x46 + 0.0001*m.x19*m.x47 + 0.0001*m.x19*m.x48 + 0.0001*m.x19*m.x49 + 0.0001*m.x19*
m.x50 + 0.0001*m.x19*m.x51 + 0.0001*m.x19*m.x52 + 0.0001*m.x19*m.x53 + 0.0001*m.x19*m.x54 +
0.0001*m.x19*m.x55 + 0.0001*m.x19*m.x56 + 0.0001*m.x19*m.x57 + 0.0001*m.x19*m.x58 + 0.0001*m.x19*
m.x59 + 0.0001*m.x19*m.x60 + 0.0001*m.x19*m.x61 + 0.0001*m.x19*m.x62 + 0.0001*m.x19*m.x63 +
0.0001*m.x19*m.x64 + 0.0001*m.x19*m.x65 + 0.0001*m.x19*m.x66 + 0.0001*m.x19*m.x67 + 0.0001*m.x19*
m.x68 + 0.0001*m.x19*m.x69 + 0.0001*m.x19*m.x70 + 0.0001*m.x19*m.x71 + 0.0001*m.x19*m.x72 +
0.0001*m.x19*m.x73 + 0.0001*m.x19*m.x74 + 0.0001*m.x19*m.x75 + 0.0001*m.x19*m.x76 + 0.0001*m.x19*
m.x77 + 0.0001*m.x19*m.x78 + 0.0001*m.x19*m.x79 + 0.0001*m.x19*m.x80 + 0.0001*m.x19*m.x81 +
0.0001*m.x19*m.x82 + 0.0001*m.x19*m.x83 + 0.0001*m.x19*m.x84 + 0.0001*m.x19*m.x85 + 0.0001*m.x19*
m.x86 + 0.0001*m.x19*m.x87 + 0.0001*m.x19*m.x88 + 0.0001*m.x19*m.x89 + 0.0001*m.x19*m.x90 +
0.0001*m.x19*m.x91 + 0.0001*m.x19*m.x92 + 0.0001*m.x19*m.x93 + 0.0001*m.x19*m.x94 + 0.0001*m.x19*
m.x95 + 0.0001*m.x19*m.x96 + 0.0001*m.x19*m.x97 + 0.0001*m.x19*m.x98 + 0.0001*m.x19*m.x99 +
0.0001*m.x19*m.x100 + 0.0001*m.x19*m.x101 + 0.0001*m.x19*m.x102 + 0.0001*m.x19*m.x103 + 0.0001*
m.x19*m.x104 + 0.0001*m.x19*m.x105 + 0.0001*m.x19*m.x106 + 0.0001*m.x19*m.x107 + 0.0001*m.x19*
m.x108 + 0.0001*m.x19*m.x109 + 0.0001*m.x19*m.x110 + 0.0001*m.x19*m.x111 + 0.0001*m.x19*m.x112 +
0.0001*m.x19*m.x113 + 0.0001*m.x19*m.x114 + 0.0001*m.x19*m.x115 + 0.0001*m.x19*m.x116 + 0.0001*
m.x19*m.x117 + 0.0001*m.x19*m.x118 + 0.0001*m.x19*m.x119 + 0.0001*m.x19*m.x120 + 0.0001*m.x19*
m.x121 + 0.0001*m.x19*m.x122 + 0.0001*m.x19*m.x123 + 0.0001*m.x19*m.x124 + 0.0001*m.x19*m.x125 +
0.0001*m.x19*m.x126 + 0.0001*m.x19*m.x127 + 0.0001*m.x19*m.x128 + 0.0001*m.x19*m.x129 + 0.0001*
m.x19*m.x130 + 0.0001*m.x19*m.x131 + 0.0001*m.x19*m.x132 + 0.0001*m.x19*m.x133 + 0.0001*m.x19*
m.x134 + 0.0001*m.x19*m.x135 + 3.15673633542148*m.x19*m.x136 + 0.0001*m.x19*m.x137 + 0.0001*m.x19
*m.x138 + 0.0001*m.x19*m.x139 + 0.0001*m.x19*m.x140 + 0.0001*m.x19*m.x141 + 0.0001*m.x19*m.x142
+ 0.0001*m.x19*m.x143 + 0.0001*m.x19*m.x144 + 0.0001*m.x19*m.x145 + 0.0001*m.x19*m.x146 + 0.0001
*m.x19*m.x147 + 0.0001*m.x19*m.x148 + 0.0001*m.x19*m.x149 + 0.0001*m.x19*m.x150 + 0.0001*m.x19*
m.x151 + 0.0001*m.x19*m.x152 + 0.0001*m.x19*m.x153 + 0.0001*m.x19*m.x154 + 0.0001*m.x19*m.x155 +
0.0001*m.x19*m.x156 + 0.0001*m.x19*m.x157 + 0.0001*m.x19*m.x158 + 0.0001*m.x19*m.x159 + 0.0001*
m.x19*m.x160 + 0.0001*m.x19*m.x161 + 0.0001*m.x19*m.x162 + 0.0001*m.x19*m.x163 + 0.0001*m.x19*
m.x164 + 0.0001*m.x19*m.x165 + 0.0001*m.x19*m.x166 + 0.0001*m.x19*m.x167 + 0.0001*m.x19*m.x168 +
0.0001*m.x19*m.x169 + 0.0001*m.x19*m.x170 + 0.0001*m.x19*m.x171 + 0.0001*m.x19*m.x172 + 0.0001*
m.x19*m.x173 + 0.0001*m.x19*m.x174 + 0.0001*m.x19*m.x175 + 0.0001*m.x19*m.x176 + 0.0001*m.x19*
m.x177 + 0.0001*m.x19*m.x178 + 0.0001*m.x19*m.x179 + 0.0001*m.x19*m.x180 + 0.0001*m.x19*m.x181 +
0.0001*m.x19*m.x182 + 0.0001*m.x19*m.x183 + 0.0001*m.x19*m.x184 + 0.0001*m.x19*m.x185 + 0.0001*
m.x20*m.x1 + 0.0001*m.x20*m.x2 + 0.0001*m.x20*m.x3 + 0.0001*m.x20*m.x4 + 0.0001*m.x20*m.x5 +
0.0001*m.x20*m.x6 + 0.0001*m.x20*m.x7 + 7.4520596959325*m.x20*m.x8 + 0.0001*m.x20*m.x9 + 0.0001*
m.x20*m.x10 + 0.0001*m.x20*m.x11 + 0.0001*m.x20*m.x12 + 0.0001*m.x20*m.x13 + 0.0001*m.x20*m.x14
+ 0.0001*m.x20*m.x15 + 0.0001*m.x20*m.x16 + 0.0001*m.x20*m.x17 + 0.0001*m.x20*m.x18 + 0.0001*
m.x20*m.x19 + 6.70161486626286*m.x20**2 + 0.0001*m.x20*m.x21 + 0.0001*m.x20*m.x22 + 0.0001*m.x20*
m.x23 + 0.0001*m.x20*m.x24 + 0.0001*m.x20*m.x25 + 0.0001*m.x20*m.x26 + 0.0001*m.x20*m.x27 +
0.0001*m.x20*m.x28 + 0.0001*m.x20*m.x29 + 0.0001*m.x20*m.x30 + 1.56105826810654*m.x20*m.x31 +
0.0001*m.x20*m.x32 + 0.0001*m.x20*m.x33 + 0.0001*m.x20*m.x34 + 0.0001*m.x20*m.x35 + 0.0001*m.x20*
m.x36 + 0.0001*m.x20*m.x37 + 0.0001*m.x20*m.x38 + 0.0001*m.x20*m.x39 + 0.0001*m.x20*m.x40 +
0.0001*m.x20*m.x41 + 0.0001*m.x20*m.x42 + 6.46083797120433*m.x20*m.x43 + 0.0001*m.x20*m.x44 +
0.0001*m.x20*m.x45 + 0.0001*m.x20*m.x46 + 0.0001*m.x20*m.x47 + 0.0001*m.x20*m.x48 + 0.0001*m.x20*
m.x49 + 0.0001*m.x20*m.x50 + 0.0001*m.x20*m.x51 + 0.0001*m.x20*m.x52 + 0.0001*m.x20*m.x53 +
0.0001*m.x20*m.x54 + 0.0001*m.x20*m.x55 + 0.0001*m.x20*m.x56 + 0.0001*m.x20*m.x57 + 0.0001*m.x20*
m.x58 + 0.0001*m.x20*m.x59 + 0.0001*m.x20*m.x60 + 0.0001*m.x20*m.x61 + 0.0001*m.x20*m.x62 +
0.0001*m.x20*m.x63 + 0.0001*m.x20*m.x64 + 0.0001*m.x20*m.x65 + 0.0001*m.x20*m.x66 + 0.0001*m.x20*
m.x67 + 0.0001*m.x20*m.x68 + 0.0001*m.x20*m.x69 + 0.0001*m.x20*m.x70 + 0.0001*m.x20*m.x71 +
0.0001*m.x20*m.x72 + 0.0001*m.x20*m.x73 + 0.0001*m.x20*m.x74 + 0.0001*m.x20*m.x75 + 0.0001*m.x20*
m.x76 + 0.0001*m.x20*m.x77 + 0.0001*m.x20*m.x78 + 0.0001*m.x20*m.x79 + 0.0001*m.x20*m.x80 +
0.0001*m.x20*m.x81 + 0.0001*m.x20*m.x82 + 0.0001*m.x20*m.x83 + 0.0001*m.x20*m.x84 + 0.0001*m.x20*
m.x85 + 0.0001*m.x20*m.x86 + 0.0001*m.x20*m.x87 + 0.0001*m.x20*m.x88 + 0.0001*m.x20*m.x89 +
0.0001*m.x20*m.x90 + 0.0001*m.x20*m.x91 + 0.0001*m.x20*m.x92 + 0.0001*m.x20*m.x93 + 0.0001*m.x20*
m.x94 + 0.0001*m.x20*m.x95 + 0.0001*m.x20*m.x96 + 0.0001*m.x20*m.x97 + 0.0001*m.x20*m.x98 +
0.0001*m.x20*m.x99 + 0.0001*m.x20*m.x100 + 0.0001*m.x20*m.x101 + 0.0001*m.x20*m.x102 + 0.0001*
m.x20*m.x103 + 0.0001*m.x20*m.x104 + 0.0001*m.x20*m.x105 + 0.0001*m.x20*m.x106 + 0.0001*m.x20*
m.x107 + 0.0001*m.x20*m.x108 + 0.0001*m.x20*m.x109 + 0.0001*m.x20*m.x110 + 0.0001*m.x20*m.x111 +
0.0001*m.x20*m.x112 + 0.0001*m.x20*m.x113 + 0.0001*m.x20*m.x114 + 0.0001*m.x20*m.x115 + 0.0001*
m.x20*m.x116 + 0.0001*m.x20*m.x117 + 0.0001*m.x20*m.x118 + 0.0001*m.x20*m.x119 + 0.0001*m.x20*
m.x120 + 0.0001*m.x20*m.x121 + 0.0001*m.x20*m.x122 + 0.0001*m.x20*m.x123 + 0.0001*m.x20*m.x124 +
0.0001*m.x20*m.x125 + 0.0001*m.x20*m.x126 + 0.0001*m.x20*m.x127 + 0.0001*m.x20*m.x128 + 0.0001*
m.x20*m.x129 + 0.0001*m.x20*m.x130 + 0.0001*m.x20*m.x131 + 0.0001*m.x20*m.x132 + 0.0001*m.x20*
m.x133 + 0.0001*m.x20*m.x134 + 0.0001*m.x20*m.x135 + 0.0001*m.x20*m.x136 + 3.50472792610672*m.x20
*m.x137 + 0.0001*m.x20*m.x138 + 0.0001*m.x20*m.x139 + 0.0001*m.x20*m.x140 + 0.0001*m.x20*m.x141
+ 0.0001*m.x20*m.x142 + 0.0001*m.x20*m.x143 + 0.0001*m.x20*m.x144 + 0.0001*m.x20*m.x145 + 0.0001
*m.x20*m.x146 + 0.0001*m.x20*m.x147 + 0.0001*m.x20*m.x148 + 0.0001*m.x20*m.x149 + 0.0001*m.x20*
m.x150 + 0.0001*m.x20*m.x151 + 0.0001*m.x20*m.x152 + 0.0001*m.x20*m.x153 + 0.0001*m.x20*m.x154 +
0.0001*m.x20*m.x155 + 0.0001*m.x20*m.x156 + 0.0001*m.x20*m.x157 + 0.0001*m.x20*m.x158 + 0.0001*
m.x20*m.x159 + 0.0001*m.x20*m.x160 + 0.0001*m.x20*m.x161 + 0.0001*m.x20*m.x162 + 0.0001*m.x20*
m.x163 + 0.0001*m.x20*m.x164 + 0.0001*m.x20*m.x165 + 0.0001*m.x20*m.x166 + 0.0001*m.x20*m.x167 +
0.0001*m.x20*m.x168 + 0.0001*m.x20*m.x169 + 0.0001*m.x20*m.x170 + 0.0001*m.x20*m.x171 + 0.0001*
m.x20*m.x172 + 0.0001*m.x20*m.x173 + 0.0001*m.x20*m.x174 + 0.0001*m.x20*m.x175 + 0.0001*m.x20*
m.x176 + 0.0001*m.x20*m.x177 + 0.0001*m.x20*m.x178 + 0.0001*m.x20*m.x179 + 0.0001*m.x20*m.x180 +
0.0001*m.x20*m.x181 + 0.0001*m.x20*m.x182 + 0.0001*m.x20*m.x183 + 0.0001*m.x20*m.x184 + 0.0001*
m.x20*m.x185 + 0.0001*m.x21*m.x1 + 0.0001*m.x21*m.x2 + 0.0001*m.x21*m.x3 + 0.0001*m.x21*m.x4 +
0.0001*m.x21*m.x5 + 0.0001*m.x21*m.x6 + 0.0001*m.x21*m.x7 + 0.0001*m.x21*m.x8 + 7.4520596959325*
m.x21*m.x9 + 0.0001*m.x21*m.x10 + 0.0001*m.x21*m.x11 + 0.0001*m.x21*m.x12 + 0.0001*m.x21*m.x13 +
0.0001*m.x21*m.x14 + 0.0001*m.x21*m.x15 + 0.0001*m.x21*m.x16 + 0.0001*m.x21*m.x17 + 0.0001*m.x21*
m.x18 + 0.0001*m.x21*m.x19 + 0.0001*m.x21*m.x20 + 6.70161486626286*m.x21**2 + 0.0001*m.x21*m.x22
+ 0.0001*m.x21*m.x23 + 0.0001*m.x21*m.x24 + 0.0001*m.x21*m.x25 + 0.0001*m.x21*m.x26 + 0.0001*
m.x21*m.x27 + 0.0001*m.x21*m.x28 + 0.0001*m.x21*m.x29 + 0.0001*m.x21*m.x30 + 0.0001*m.x21*m.x31
+ 1.62885055048501*m.x21*m.x32 + 0.0001*m.x21*m.x33 + 0.0001*m.x21*m.x34 + 0.0001*m.x21*m.x35 +
0.0001*m.x21*m.x36 + 0.0001*m.x21*m.x37 + 0.0001*m.x21*m.x38 + 0.0001*m.x21*m.x39 + 0.0001*m.x21*
m.x40 + 0.0001*m.x21*m.x41 + 0.0001*m.x21*m.x42 + 0.0001*m.x21*m.x43 + 6.46083797120433*m.x21*
m.x44 + 0.0001*m.x21*m.x45 + 0.0001*m.x21*m.x46 + 0.0001*m.x21*m.x47 + 0.0001*m.x21*m.x48 +
0.0001*m.x21*m.x49 + 0.0001*m.x21*m.x50 + 0.0001*m.x21*m.x51 + 0.0001*m.x21*m.x52 + 0.0001*m.x21*
m.x53 + 0.0001*m.x21*m.x54 + 0.0001*m.x21*m.x55 + 0.0001*m.x21*m.x56 + 0.0001*m.x21*m.x57 +
0.0001*m.x21*m.x58 + 0.0001*m.x21*m.x59 + 0.0001*m.x21*m.x60 + 0.0001*m.x21*m.x61 + 0.0001*m.x21*
m.x62 + 0.0001*m.x21*m.x63 + 0.0001*m.x21*m.x64 + 0.0001*m.x21*m.x65 + 0.0001*m.x21*m.x66 +
0.0001*m.x21*m.x67 + 0.0001*m.x21*m.x68 + 0.0001*m.x21*m.x69 + 0.0001*m.x21*m.x70 + 0.0001*m.x21*
m.x71 + 0.0001*m.x21*m.x72 + 0.0001*m.x21*m.x73 + 0.0001*m.x21*m.x74 + 0.0001*m.x21*m.x75 +
0.0001*m.x21*m.x76 + 0.0001*m.x21*m.x77 + 0.0001*m.x21*m.x78 + 0.0001*m.x21*m.x79 + 0.0001*m.x21*
m.x80 + 0.0001*m.x21*m.x81 + 0.0001*m.x21*m.x82 + 0.0001*m.x21*m.x83 + 0.0001*m.x21*m.x84 +
0.0001*m.x21*m.x85 + 0.0001*m.x21*m.x86 + 0.0001*m.x21*m.x87 + 0.0001*m.x21*m.x88 + 0.0001*m.x21*
m.x89 + 0.0001*m.x21*m.x90 + 0.0001*m.x21*m.x91 + 0.0001*m.x21*m.x92 + 0.0001*m.x21*m.x93 +
0.0001*m.x21*m.x94 + 0.0001*m.x21*m.x95 + 0.0001*m.x21*m.x96 + 0.0001*m.x21*m.x97 + 0.0001*m.x21*
m.x98 + 0.0001*m.x21*m.x99 + 0.0001*m.x21*m.x100 + 0.0001*m.x21*m.x101 + 0.0001*m.x21*m.x102 +
0.0001*m.x21*m.x103 + 0.0001*m.x21*m.x104 + 0.0001*m.x21*m.x105 + 0.0001*m.x21*m.x106 + 0.0001*
m.x21*m.x107 + 0.0001*m.x21*m.x108 + 0.0001*m.x21*m.x109 + 0.0001*m.x21*m.x110 + 0.0001*m.x21*
m.x111 + 0.0001*m.x21*m.x112 + 0.0001*m.x21*m.x113 + 0.0001*m.x21*m.x114 + 0.0001*m.x21*m.x115 +
0.0001*m.x21*m.x116 + 0.0001*m.x21*m.x117 + 0.0001*m.x21*m.x118 + 0.0001*m.x21*m.x119 + 0.0001*
m.x21*m.x120 + 0.0001*m.x21*m.x121 + 0.0001*m.x21*m.x122 + 0.0001*m.x21*m.x123 + 0.0001*m.x21*
m.x124 + 0.0001*m.x21*m.x125 + 0.0001*m.x21*m.x126 + 0.0001*m.x21*m.x127 + 0.0001*m.x21*m.x128 +
0.0001*m.x21*m.x129 + 0.0001*m.x21*m.x130 + 0.0001*m.x21*m.x131 + 0.0001*m.x21*m.x132 + 0.0001*
m.x21*m.x133 + 0.0001*m.x21*m.x134 + 0.0001*m.x21*m.x135 + 0.0001*m.x21*m.x136 + 0.0001*m.x21*
m.x137 + 3.52697733053469*m.x21*m.x138 + 0.0001*m.x21*m.x139 + 0.0001*m.x21*m.x140 + 0.0001*m.x21
*m.x141 + 0.0001*m.x21*m.x142 + 0.0001*m.x21*m.x143 + 0.0001*m.x21*m.x144 + 0.0001*m.x21*m.x145
+ 0.0001*m.x21*m.x146 + 0.0001*m.x21*m.x147 + 0.0001*m.x21*m.x148 + 0.0001*m.x21*m.x149 + 0.0001
*m.x21*m.x150 + 0.0001*m.x21*m.x151 + 0.0001*m.x21*m.x152 + 0.0001*m.x21*m.x153 + 0.0001*m.x21*
m.x154 + 0.0001*m.x21*m.x155 + 0.0001*m.x21*m.x156 + 0.0001*m.x21*m.x157 + 0.0001*m.x21*m.x158 +
0.0001*m.x21*m.x159 + 0.0001*m.x21*m.x160 + 0.0001*m.x21*m.x161 + 0.0001*m.x21*m.x162 + 0.0001*
m.x21*m.x163 + 0.0001*m.x21*m.x164 + 0.0001*m.x21*m.x165 + 0.0001*m.x21*m.x166 + 0.0001*m.x21*
m.x167 + 0.0001*m.x21*m.x168 + 0.0001*m.x21*m.x169 + 0.0001*m.x21*m.x170 + 0.0001*m.x21*m.x171 +
0.0001*m.x21*m.x172 + 0.0001*m.x21*m.x173 + 0.0001*m.x21*m.x174 + 0.0001*m.x21*m.x175 + 0.0001*
m.x21*m.x176 + 0.0001*m.x21*m.x177 + 0.0001*m.x21*m.x178 + 0.0001*m.x21*m.x179 + 0.0001*m.x21*
m.x180 + 0.0001*m.x21*m.x181 + 0.0001*m.x21*m.x182 + 0.0001*m.x21*m.x183 + 0.0001*m.x21*m.x184 +
0.0001*m.x21*m.x185 + 0.0001*m.x22*m.x1 + 0.0001*m.x22*m.x2 + 0.0001*m.x22*m.x3 + 0.0001*m.x22*
m.x4 + 0.0001*m.x22*m.x5 + 0.0001*m.x22*m.x6 + 0.0001*m.x22*m.x7 + 0.0001*m.x22*m.x8 + 0.0001*
m.x22*m.x9 + 6.8341836279463*m.x22*m.x10 + 0.0001*m.x22*m.x11 + 0.0001*m.x22*m.x12 + 0.0001*m.x22
*m.x13 + 0.0001*m.x22*m.x14 + 0.0001*m.x22*m.x15 + 0.0001*m.x22*m.x16 + 0.0001*m.x22*m.x17 +
0.0001*m.x22*m.x18 + 0.0001*m.x22*m.x19 + 0.0001*m.x22*m.x20 + 0.0001*m.x22*m.x21 +
5.63638011107397*m.x22**2 + 0.0001*m.x22*m.x23 + 0.0001*m.x22*m.x24 + 0.0001*m.x22*m.x25 + 0.0001
*m.x22*m.x26 + 0.0001*m.x22*m.x27 + 0.0001*m.x22*m.x28 + 0.0001*m.x22*m.x29 + 0.0001*m.x22*m.x30
+ 0.0001*m.x22*m.x31 + 0.0001*m.x22*m.x32 + 1.53606919766544*m.x22*m.x33 + 0.0001*m.x22*m.x34 +
0.0001*m.x22*m.x35 + 0.0001*m.x22*m.x36 + 0.0001*m.x22*m.x37 + 0.0001*m.x22*m.x38 + 0.0001*m.x22*
m.x39 + 0.0001*m.x22*m.x40 + 0.0001*m.x22*m.x41 + 0.0001*m.x22*m.x42 + 0.0001*m.x22*m.x43 +
0.0001*m.x22*m.x44 + 5.99722275920364*m.x22*m.x45 + 0.0001*m.x22*m.x46 + 0.0001*m.x22*m.x47 +
0.0001*m.x22*m.x48 + 0.0001*m.x22*m.x49 + 0.0001*m.x22*m.x50 + 0.0001*m.x22*m.x51 + 0.0001*m.x22*
m.x52 + 0.0001*m.x22*m.x53 + 0.0001*m.x22*m.x54 + 0.0001*m.x22*m.x55 + 0.0001*m.x22*m.x56 +
0.0001*m.x22*m.x57 + 0.0001*m.x22*m.x58 + 0.0001*m.x22*m.x59 + 0.0001*m.x22*m.x60 + 0.0001*m.x22*
m.x61 + 0.0001*m.x22*m.x62 + 0.0001*m.x22*m.x63 + 0.0001*m.x22*m.x64 + 0.0001*m.x22*m.x65 +
0.0001*m.x22*m.x66 + 0.0001*m.x22*m.x67 + 0.0001*m.x22*m.x68 + 0.0001*m.x22*m.x69 + 0.0001*m.x22*
m.x70 + 0.0001*m.x22*m.x71 + 0.0001*m.x22*m.x72 + 0.0001*m.x22*m.x73 + 0.0001*m.x22*m.x74 +
0.0001*m.x22*m.x75 + 0.0001*m.x22*m.x76 + 0.0001*m.x22*m.x77 + 0.0001*m.x22*m.x78 + 0.0001*m.x22*
m.x79 + 0.0001*m.x22*m.x80 + 0.0001*m.x22*m.x81 + 0.0001*m.x22*m.x82 + 0.0001*m.x22*m.x83 +
0.0001*m.x22*m.x84 + 0.0001*m.x22*m.x85 + 0.0001*m.x22*m.x86 + 0.0001*m.x22*m.x87 + 0.0001*m.x22*
m.x88 + 0.0001*m.x22*m.x89 + 0.0001*m.x22*m.x90 + 0.0001*m.x22*m.x91 + 0.0001*m.x22*m.x92 +
0.0001*m.x22*m.x93 + 0.0001*m.x22*m.x94 + 0.0001*m.x22*m.x95 + 0.0001*m.x22*m.x96 + 0.0001*m.x22*
m.x97 + 0.0001*m.x22*m.x98 + 0.0001*m.x22*m.x99 + 0.0001*m.x22*m.x100 + 0.0001*m.x22*m.x101 +
0.0001*m.x22*m.x102 + 0.0001*m.x22*m.x103 + 0.0001*m.x22*m.x104 + 0.0001*m.x22*m.x105 + 0.0001*
m.x22*m.x106 + 0.0001*m.x22*m.x107 + 0.0001*m.x22*m.x108 + 0.0001*m.x22*m.x109 + 0.0001*m.x22*
m.x110 + 0.0001*m.x22*m.x111 + 0.0001*m.x22*m.x112 + 0.0001*m.x22*m.x113 + 0.0001*m.x22*m.x114 +
0.0001*m.x22*m.x115 + 0.0001*m.x22*m.x116 + 0.0001*m.x22*m.x117 + 0.0001*m.x22*m.x118 + 0.0001*
m.x22*m.x119 + 0.0001*m.x22*m.x120 + 0.0001*m.x22*m.x121 + 0.0001*m.x22*m.x122 + 0.0001*m.x22*
m.x123 + 0.0001*m.x22*m.x124 + 0.0001*m.x22*m.x125 + 0.0001*m.x22*m.x126 + 0.0001*m.x22*m.x127 +
0.0001*m.x22*m.x128 + 0.0001*m.x22*m.x129 + 0.0001*m.x22*m.x130 + 0.0001*m.x22*m.x131 + 0.0001*
m.x22*m.x132 + 0.0001*m.x22*m.x133 + 0.0001*m.x22*m.x134 + 0.0001*m.x22*m.x135 + 0.0001*m.x22*
m.x136 + 0.0001*m.x22*m.x137 + 0.0001*m.x22*m.x138 + 3.33930736808*m.x22*m.x139 + 0.0001*m.x22*
m.x140 + 0.0001*m.x22*m.x141 + 0.0001*m.x22*m.x142 + 0.0001*m.x22*m.x143 + 0.0001*m.x22*m.x144 +
0.0001*m.x22*m.x145 + 0.0001*m.x22*m.x146 + 0.0001*m.x22*m.x147 + 0.0001*m.x22*m.x148 + 0.0001*
m.x22*m.x149 + 0.0001*m.x22*m.x150 + 0.0001*m.x22*m.x151 + 0.0001*m.x22*m.x152 + 0.0001*m.x22*
m.x153 + 0.0001*m.x22*m.x154 + 0.0001*m.x22*m.x155 + 0.0001*m.x22*m.x156 + 0.0001*m.x22*m.x157 +
0.0001*m.x22*m.x158 + 0.0001*m.x22*m.x159 + 0.0001*m.x22*m.x160 + 0.0001*m.x22*m.x161 + 0.0001*
m.x22*m.x162 + 0.0001*m.x22*m.x163 + 0.0001*m.x22*m.x164 + 0.0001*m.x22*m.x165 + 0.0001*m.x22*
m.x166 + 0.0001*m.x22*m.x167 + 0.0001*m.x22*m.x168 + 0.0001*m.x22*m.x169 + 0.0001*m.x22*m.x170 +
0.0001*m.x22*m.x171 + 0.0001*m.x22*m.x172 + 0.0001*m.x22*m.x173 + 0.0001*m.x22*m.x174 + 0.0001*
m.x22*m.x175 + 0.0001*m.x22*m.x176 + 0.0001*m.x22*m.x177 + 0.0001*m.x22*m.x178 + 0.0001*m.x22*
m.x179 + 0.0001*m.x22*m.x180 + 0.0001*m.x22*m.x181 + 0.0001*m.x22*m.x182 + 0.0001*m.x22*m.x183 +
0.0001*m.x22*m.x184 + 0.0001*m.x22*m.x185 + 0.0001*m.x23*m.x1 + 0.0001*m.x23*m.x2 + 0.0001*m.x23*
m.x3 + 0.0001*m.x23*m.x4 + 0.0001*m.x23*m.x5 + 0.0001*m.x23*m.x6 + 0.0001*m.x23*m.x7 + 0.0001*
m.x23*m.x8 + 0.0001*m.x23*m.x9 + 0.0001*m.x23*m.x10 + 6.75846262215549*m.x23*m.x11 + 0.0001*m.x23
*m.x12 + 0.0001*m.x23*m.x13 + 0.0001*m.x23*m.x14 + 0.0001*m.x23*m.x15 + 0.0001*m.x23*m.x16 +
0.0001*m.x23*m.x17 + 0.0001*m.x23*m.x18 + 0.0001*m.x23*m.x19 + 0.0001*m.x23*m.x20 + 0.0001*m.x23*
m.x21 + 0.0001*m.x23*m.x22 + 5.45208366917577*m.x23**2 + 0.0001*m.x23*m.x24 + 0.0001*m.x23*m.x25
+ 0.0001*m.x23*m.x26 + 0.0001*m.x23*m.x27 + 0.0001*m.x23*m.x28 + 0.0001*m.x23*m.x29 + 0.0001*
m.x23*m.x30 + 0.0001*m.x23*m.x31 + 0.0001*m.x23*m.x32 + 0.0001*m.x23*m.x33 + 1.48565600121365*
m.x23*m.x34 + 0.0001*m.x23*m.x35 + 0.0001*m.x23*m.x36 + 0.0001*m.x23*m.x37 + 0.0001*m.x23*m.x38
+ 0.0001*m.x23*m.x39 + 0.0001*m.x23*m.x40 + 0.0001*m.x23*m.x41 + 0.0001*m.x23*m.x42 + 0.0001*
m.x23*m.x43 + 0.0001*m.x23*m.x44 + 0.0001*m.x23*m.x45 + 5.80112739765899*m.x23*m.x46 + 0.0001*
m.x23*m.x47 + 0.0001*m.x23*m.x48 + 0.0001*m.x23*m.x49 + 0.0001*m.x23*m.x50 + 0.0001*m.x23*m.x51
+ 0.0001*m.x23*m.x52 + 0.0001*m.x23*m.x53 + 0.0001*m.x23*m.x54 + 0.0001*m.x23*m.x55 + 0.0001*
m.x23*m.x56 + 0.0001*m.x23*m.x57 + 0.0001*m.x23*m.x58 + 0.0001*m.x23*m.x59 + 0.0001*m.x23*m.x60
+ 0.0001*m.x23*m.x61 + 0.0001*m.x23*m.x62 + 0.0001*m.x23*m.x63 + 0.0001*m.x23*m.x64 + 0.0001*
m.x23*m.x65 + 0.0001*m.x23*m.x66 + 0.0001*m.x23*m.x67 + 0.0001*m.x23*m.x68 + 0.0001*m.x23*m.x69
+ 0.0001*m.x23*m.x70 + 0.0001*m.x23*m.x71 + 0.0001*m.x23*m.x72 + 0.0001*m.x23*m.x73 + 0.0001*
m.x23*m.x74 + 0.0001*m.x23*m.x75 + 0.0001*m.x23*m.x76 + 0.0001*m.x23*m.x77 + 0.0001*m.x23*m.x78
+ 0.0001*m.x23*m.x79 + 0.0001*m.x23*m.x80 + 0.0001*m.x23*m.x81 + 0.0001*m.x23*m.x82 + 0.0001*
m.x23*m.x83 + 0.0001*m.x23*m.x84 + 0.0001*m.x23*m.x85 + 0.0001*m.x23*m.x86 + 0.0001*m.x23*m.x87
+ 0.0001*m.x23*m.x88 + 0.0001*m.x23*m.x89 + 0.0001*m.x23*m.x90 + 0.0001*m.x23*m.x91 + 0.0001*
m.x23*m.x92 + 0.0001*m.x23*m.x93 + 0.0001*m.x23*m.x94 + 0.0001*m.x23*m.x95 + 0.0001*m.x23*m.x96
+ 0.0001*m.x23*m.x97 + 0.0001*m.x23*m.x98 + 0.0001*m.x23*m.x99 + 0.0001*m.x23*m.x100 + 0.0001*
m.x23*m.x101 + 0.0001*m.x23*m.x102 + 0.0001*m.x23*m.x103 + 0.0001*m.x23*m.x104 + 0.0001*m.x23*
m.x105 + 0.0001*m.x23*m.x106 + 0.0001*m.x23*m.x107 + 0.0001*m.x23*m.x108 + 0.0001*m.x23*m.x109 +
0.0001*m.x23*m.x110 + 0.0001*m.x23*m.x111 + 0.0001*m.x23*m.x112 + 0.0001*m.x23*m.x113 + 0.0001*
m.x23*m.x114 + 0.0001*m.x23*m.x115 + 0.0001*m.x23*m.x116 + 0.0001*m.x23*m.x117 + 0.0001*m.x23*
m.x118 + 0.0001*m.x23*m.x119 + 0.0001*m.x23*m.x120 + 0.0001*m.x23*m.x121 + 0.0001*m.x23*m.x122 +
0.0001*m.x23*m.x123 + 0.0001*m.x23*m.x124 + 0.0001*m.x23*m.x125 + 0.0001*m.x23*m.x126 + 0.0001*
m.x23*m.x127 + 0.0001*m.x23*m.x128 + 0.0001*m.x23*m.x129 + 0.0001*m.x23*m.x130 + 0.0001*m.x23*
m.x131 + 0.0001*m.x23*m.x132 + 0.0001*m.x23*m.x133 + 0.0001*m.x23*m.x134 + 0.0001*m.x23*m.x135 +
0.0001*m.x23*m.x136 + 0.0001*m.x23*m.x137 + 0.0001*m.x23*m.x138 + 0.0001*m.x23*m.x139 +
3.22970873986782*m.x23*m.x140 + 0.0001*m.x23*m.x141 + 0.0001*m.x23*m.x142 + 0.0001*m.x23*m.x143
+ 0.0001*m.x23*m.x144 + 0.0001*m.x23*m.x145 + 0.0001*m.x23*m.x146 + 0.0001*m.x23*m.x147 + 0.0001
*m.x23*m.x148 + 0.0001*m.x23*m.x149 + 0.0001*m.x23*m.x150 + 0.0001*m.x23*m.x151 + 0.0001*m.x23*
m.x152 + 0.0001*m.x23*m.x153 + 0.0001*m.x23*m.x154 + 0.0001*m.x23*m.x155 + 0.0001*m.x23*m.x156 +
0.0001*m.x23*m.x157 + 0.0001*m.x23*m.x158 + 0.0001*m.x23*m.x159 + 0.0001*m.x23*m.x160 + 0.0001*
m.x23*m.x161 + 0.0001*m.x23*m.x162 + 0.0001*m.x23*m.x163 + 0.0001*m.x23*m.x164 + 0.0001*m.x23*
m.x165 + 0.0001*m.x23*m.x166 + 0.0001*m.x23*m.x167 + 0.0001*m.x23*m.x168 + 0.0001*m.x23*m.x169 +
0.0001*m.x23*m.x170 + 0.0001*m.x23*m.x171 + 0.0001*m.x23*m.x172 + 0.0001*m.x23*m.x173 + 0.0001*
m.x23*m.x174 + 0.0001*m.x23*m.x175 + 0.0001*m.x23*m.x176 + 0.0001*m.x23*m.x177 + 0.0001*m.x23*
m.x178 + 0.0001*m.x23*m.x179 + 0.0001*m.x23*m.x180 + 0.0001*m.x23*m.x181 + 0.0001*m.x23*m.x182 +
0.0001*m.x23*m.x183 + 0.0001*m.x23*m.x184 + 0.0001*m.x23*m.x185 + 0.0001*m.x24*m.x1 + 0.0001*
m.x24*m.x2 + 0.0001*m.x24*m.x3 + 0.0001*m.x24*m.x4 + 0.0001*m.x24*m.x5 + 0.0001*m.x24*m.x6 +
0.0001*m.x24*m.x7 + 0.0001*m.x24*m.x8 + 0.0001*m.x24*m.x9 + 0.0001*m.x24*m.x10 + 0.0001*m.x24*
m.x11 + 6.75846262215549*m.x24*m.x12 + 0.0001*m.x24*m.x13 + 0.0001*m.x24*m.x14 + 0.0001*m.x24*
m.x15 + 0.0001*m.x24*m.x16 + 0.0001*m.x24*m.x17 + 0.0001*m.x24*m.x18 + 0.0001*m.x24*m.x19 +
0.0001*m.x24*m.x20 + 0.0001*m.x24*m.x21 + 0.0001*m.x24*m.x22 + 0.0001*m.x24*m.x23 +
5.45208366917577*m.x24**2 + 0.0001*m.x24*m.x25 + 0.0001*m.x24*m.x26 + 0.0001*m.x24*m.x27 + 0.0001
*m.x24*m.x28 + 0.0001*m.x24*m.x29 + 0.0001*m.x24*m.x30 + 0.0001*m.x24*m.x31 + 0.0001*m.x24*m.x32
+ 0.0001*m.x24*m.x33 + 0.0001*m.x24*m.x34 + 1.49556027977136*m.x24*m.x35 + 0.0001*m.x24*m.x36 +
0.0001*m.x24*m.x37 + 0.0001*m.x24*m.x38 + 0.0001*m.x24*m.x39 + 0.0001*m.x24*m.x40 + 0.0001*m.x24*
m.x41 + 0.0001*m.x24*m.x42 + 0.0001*m.x24*m.x43 + 0.0001*m.x24*m.x44 + 0.0001*m.x24*m.x45 +
0.0001*m.x24*m.x46 + 5.80112739765899*m.x24*m.x47 + 0.0001*m.x24*m.x48 + 0.0001*m.x24*m.x49 +
0.0001*m.x24*m.x50 + 0.0001*m.x24*m.x51 + 0.0001*m.x24*m.x52 + 0.0001*m.x24*m.x53 + 0.0001*m.x24*
m.x54 + 0.0001*m.x24*m.x55 + 0.0001*m.x24*m.x56 + 0.0001*m.x24*m.x57 + 0.0001*m.x24*m.x58 +
0.0001*m.x24*m.x59 + 0.0001*m.x24*m.x60 + 0.0001*m.x24*m.x61 + 0.0001*m.x24*m.x62 + 0.0001*m.x24*
m.x63 + 0.0001*m.x24*m.x64 + 0.0001*m.x24*m.x65 + 0.0001*m.x24*m.x66 + 0.0001*m.x24*m.x67 +
0.0001*m.x24*m.x68 + 0.0001*m.x24*m.x69 + 0.0001*m.x24*m.x70 + 0.0001*m.x24*m.x71 + 0.0001*m.x24*
m.x72 + 0.0001*m.x24*m.x73 + 0.0001*m.x24*m.x74 + 0.0001*m.x24*m.x75 + 0.0001*m.x24*m.x76 +
0.0001*m.x24*m.x77 + 0.0001*m.x24*m.x78 + 0.0001*m.x24*m.x79 + 0.0001*m.x24*m.x80 + 0.0001*m.x24*
m.x81 + 0.0001*m.x24*m.x82 + 0.0001*m.x24*m.x83 + 0.0001*m.x24*m.x84 + 0.0001*m.x24*m.x85 +
0.0001*m.x24*m.x86 + 0.0001*m.x24*m.x87 + 0.0001*m.x24*m.x88 + 0.0001*m.x24*m.x89 + 0.0001*m.x24*
m.x90 + 0.0001*m.x24*m.x91 + 0.0001*m.x24*m.x92 + 0.0001*m.x24*m.x93 + 0.0001*m.x24*m.x94 +
0.0001*m.x24*m.x95 + 0.0001*m.x24*m.x96 + 0.0001*m.x24*m.x97 + 0.0001*m.x24*m.x98 + 0.0001*m.x24*
m.x99 + 0.0001*m.x24*m.x100 + 0.0001*m.x24*m.x101 + 0.0001*m.x24*m.x102 + 0.0001*m.x24*m.x103 +
0.0001*m.x24*m.x104 + 0.0001*m.x24*m.x105 + 0.0001*m.x24*m.x106 + 0.0001*m.x24*m.x107 + 0.0001*
m.x24*m.x108 + 0.0001*m.x24*m.x109 + 0.0001*m.x24*m.x110 + 0.0001*m.x24*m.x111 + 0.0001*m.x24*
m.x112 + 0.0001*m.x24*m.x113 + 0.0001*m.x24*m.x114 + 0.0001*m.x24*m.x115 + 0.0001*m.x24*m.x116 +
0.0001*m.x24*m.x117 + 0.0001*m.x24*m.x118 + 0.0001*m.x24*m.x119 + 0.0001*m.x24*m.x120 + 0.0001*
m.x24*m.x121 + 0.0001*m.x24*m.x122 + 0.0001*m.x24*m.x123 + 0.0001*m.x24*m.x124 + 0.0001*m.x24*
m.x125 + 0.0001*m.x24*m.x126 + 0.0001*m.x24*m.x127 + 0.0001*m.x24*m.x128 + 0.0001*m.x24*m.x129 +
0.0001*m.x24*m.x130 + 0.0001*m.x24*m.x131 + 0.0001*m.x24*m.x132 + 0.0001*m.x24*m.x133 + 0.0001*
m.x24*m.x134 + 0.0001*m.x24*m.x135 + 0.0001*m.x24*m.x136 + 0.0001*m.x24*m.x137 + 0.0001*m.x24*
m.x138 + 0.0001*m.x24*m.x139 + 0.0001*m.x24*m.x140 + 3.2206943783493*m.x24*m.x141 + 0.0001*m.x24*
m.x142 + 0.0001*m.x24*m.x143 + 0.0001*m.x24*m.x144 + 0.0001*m.x24*m.x145 + 0.0001*m.x24*m.x146 +
0.0001*m.x24*m.x147 + 0.0001*m.x24*m.x148 + 0.0001*m.x24*m.x149 + 0.0001*m.x24*m.x150 + 0.0001*
m.x24*m.x151 + 0.0001*m.x24*m.x152 + 0.0001*m.x24*m.x153 + 0.0001*m.x24*m.x154 + 0.0001*m.x24*
m.x155 + 0.0001*m.x24*m.x156 + 0.0001*m.x24*m.x157 + 0.0001*m.x24*m.x158 + 0.0001*m.x24*m.x159 +
0.0001*m.x24*m.x160 + 0.0001*m.x24*m.x161 + 0.0001*m.x24*m.x162 + 0.0001*m.x24*m.x163 + 0.0001*
m.x24*m.x164 + 0.0001*m.x24*m.x165 + 0.0001*m.x24*m.x166 + 0.0001*m.x24*m.x167 + 0.0001*m.x24*
m.x168 + 0.0001*m.x24*m.x169 + 0.0001*m.x24*m.x170 + 0.0001*m.x24*m.x171 + 0.0001*m.x24*m.x172 +
0.0001*m.x24*m.x173 + 0.0001*m.x24*m.x174 + 0.0001*m.x24*m.x175 + 0.0001*m.x24*m.x176 + 0.0001*
m.x24*m.x177 + 0.0001*m.x24*m.x178 + 0.0001*m.x24*m.x179 + 0.0001*m.x24*m.x180 + 0.0001*m.x24*
m.x181 + 0.0001*m.x24*m.x182 + 0.0001*m.x24*m.x183 + 0.0001*m.x24*m.x184 + 0.0001*m.x24*m.x185 +
0.0001*m.x25*m.x1 + 1.78057905770917*m.x25*m.x2 + 0.0001*m.x25*m.x3 + 0.0001*m.x25*m.x4 + 0.0001*
m.x25*m.x5 + 0.0001*m.x25*m.x6 + 0.0001*m.x25*m.x7 + 0.0001*m.x25*m.x8 + 0.0001*m.x25*m.x9 +
0.0001*m.x25*m.x10 + 0.0001*m.x25*m.x11 + 0.0001*m.x25*m.x12 + 0.0001*m.x25*m.x13 +
1.46344441732589*m.x25*m.x14 + 0.0001*m.x25*m.x15 + 0.0001*m.x25*m.x16 + 0.0001*m.x25*m.x17 +
0.0001*m.x25*m.x18 + 0.0001*m.x25*m.x19 + 0.0001*m.x25*m.x20 + 0.0001*m.x25*m.x21 + 0.0001*m.x25*
m.x22 + 0.0001*m.x25*m.x23 + 0.0001*m.x25*m.x24 + 3.14902576703231*m.x25**2 + 0.0001*m.x25*m.x26
+ 0.0001*m.x25*m.x27 + 0.0001*m.x25*m.x28 + 0.0001*m.x25*m.x29 + 0.0001*m.x25*m.x30 + 0.0001*
m.x25*m.x31 + 0.0001*m.x25*m.x32 + 0.0001*m.x25*m.x33 + 0.0001*m.x25*m.x34 + 0.338264012825278*
m.x25*m.x35 + 0.0001*m.x25*m.x36 + 1.38335533133029*m.x25*m.x37 + 0.0001*m.x25*m.x38 + 0.0001*
m.x25*m.x39 + 0.0001*m.x25*m.x40 + 0.0001*m.x25*m.x41 + 0.0001*m.x25*m.x42 + 0.0001*m.x25*m.x43
+ 0.0001*m.x25*m.x44 + 0.0001*m.x25*m.x45 + 0.0001*m.x25*m.x46 + 0.0001*m.x25*m.x47 +
1.56311713881613*m.x25*m.x48 + 0.0001*m.x25*m.x49 + 0.0001*m.x25*m.x50 + 0.0001*m.x25*m.x51 +
0.0001*m.x25*m.x52 + 0.0001*m.x25*m.x53 + 0.0001*m.x25*m.x54 + 0.0001*m.x25*m.x55 + 0.0001*m.x25*
m.x56 + 0.211484509361612*m.x25*m.x57 + 0.0001*m.x25*m.x58 + 0.0001*m.x25*m.x59 + 0.0001*m.x25*
m.x60 + 0.0001*m.x25*m.x61 + 0.0001*m.x25*m.x62 + 0.0001*m.x25*m.x63 + 0.0001*m.x25*m.x64 +
0.0001*m.x25*m.x65 + 0.0001*m.x25*m.x66 + 0.0001*m.x25*m.x67 + 0.0001*m.x25*m.x68 + 0.0001*m.x25*
m.x69 + 0.0001*m.x25*m.x70 + 0.0001*m.x25*m.x71 + 0.0001*m.x25*m.x72 + 0.0001*m.x25*m.x73 +
0.0001*m.x25*m.x74 + 0.0001*m.x25*m.x75 + 0.0001*m.x25*m.x76 + 0.0001*m.x25*m.x77 + 0.0001*m.x25*
m.x78 + 0.0001*m.x25*m.x79 + 0.0001*m.x25*m.x80 + 0.0001*m.x25*m.x81 + 0.0001*m.x25*m.x82 +
0.0001*m.x25*m.x83 + 5.01518901008505*m.x25*m.x84 + 0.0001*m.x25*m.x85 + 0.0001*m.x25*m.x86 +
0.0001*m.x25*m.x87 + 0.0001*m.x25*m.x88 + 0.0001*m.x25*m.x89 + 0.0001*m.x25*m.x90 + 0.0001*m.x25*
m.x91 + 0.0001*m.x25*m.x92 + 0.0001*m.x25*m.x93 + 0.638156568960432*m.x25*m.x94 + 0.0001*m.x25*
m.x95 + 0.0001*m.x25*m.x96 + 0.0001*m.x25*m.x97 + 0.0001*m.x25*m.x98 + 0.0001*m.x25*m.x99 +
0.0001*m.x25*m.x100 + 0.0001*m.x25*m.x101 + 0.0001*m.x25*m.x102 + 0.0001*m.x25*m.x103 + 0.0001*
m.x25*m.x104 + 0.0001*m.x25*m.x105 + 0.0001*m.x25*m.x106 + 0.0001*m.x25*m.x107 + 0.0001*m.x25*
m.x108 + 0.0001*m.x25*m.x109 + 0.0001*m.x25*m.x110 + 0.0001*m.x25*m.x111 + 0.0001*m.x25*m.x112 +
0.0001*m.x25*m.x113 + 0.0001*m.x25*m.x114 + 0.0001*m.x25*m.x115 + 0.0001*m.x25*m.x116 + 0.0001*
m.x25*m.x117 + 0.0001*m.x25*m.x118 + 0.0001*m.x25*m.x119 + 0.0001*m.x25*m.x120 + 0.0001*m.x25*
m.x121 + 0.0001*m.x25*m.x122 + 0.0001*m.x25*m.x123 + 0.0001*m.x25*m.x124 + 0.0001*m.x25*m.x125 +
0.0001*m.x25*m.x126 + 0.0001*m.x25*m.x127 + 0.0001*m.x25*m.x128 + 0.0001*m.x25*m.x129 + 0.0001*
m.x25*m.x130 + 0.846153145046179*m.x25*m.x131 + 0.0001*m.x25*m.x132 + 0.0001*m.x25*m.x133 +
0.0001*m.x25*m.x134 + 0.0001*m.x25*m.x135 + 0.0001*m.x25*m.x136 + 0.0001*m.x25*m.x137 + 0.0001*
m.x25*m.x138 + 0.0001*m.x25*m.x139 + 0.0001*m.x25*m.x140 + 0.0001*m.x25*m.x141 + 0.0001*m.x25*
m.x142 + 0.0001*m.x25*m.x143 + 0.0001*m.x25*m.x144 + 0.0001*m.x25*m.x145 + 0.0001*m.x25*m.x146 +
0.0001*m.x25*m.x147 + 0.0001*m.x25*m.x148 + 0.0001*m.x25*m.x149 + 0.0001*m.x25*m.x150 + 0.0001*
m.x25*m.x151 + 0.0001*m.x25*m.x152 + 0.0001*m.x25*m.x153 + 0.0001*m.x25*m.x154 + 0.0001*m.x25*
m.x155 + 0.0001*m.x25*m.x156 + 0.0001*m.x25*m.x157 + 0.0001*m.x25*m.x158 + 0.0001*m.x25*m.x159 +
0.0001*m.x25*m.x160 + 0.0001*m.x25*m.x161 + 0.0001*m.x25*m.x162 + 0.0001*m.x25*m.x163 + 0.0001*
m.x25*m.x164 + 0.0001*m.x25*m.x165 + 0.0001*m.x25*m.x166 + 0.0001*m.x25*m.x167 + 0.0001*m.x25*
m.x168 + 0.0001*m.x25*m.x169 + 0.0001*m.x25*m.x170 + 0.0001*m.x25*m.x171 + 0.0001*m.x25*m.x172 +
0.0001*m.x25*m.x173 + 0.0001*m.x25*m.x174 + 0.0001*m.x25*m.x175 + 0.0001*m.x25*m.x176 + 0.0001*
m.x25*m.x177 + 0.0001*m.x25*m.x178 + 0.0001*m.x25*m.x179 + 0.0001*m.x25*m.x180 + 0.0001*m.x25*
m.x181 + 0.0001*m.x25*m.x182 + 0.0001*m.x25*m.x183 + 0.0001*m.x25*m.x184 + 0.0001*m.x25*m.x185 +
0.0001*m.x26*m.x1 + 0.0001*m.x26*m.x2 + 1.75275431443054*m.x26*m.x3 + 0.0001*m.x26*m.x4 + 0.0001*
m.x26*m.x5 + 0.0001*m.x26*m.x6 + 0.0001*m.x26*m.x7 + 0.0001*m.x26*m.x8 + 0.0001*m.x26*m.x9 +
0.0001*m.x26*m.x10 + 0.0001*m.x26*m.x11 + 0.0001*m.x26*m.x12 + 0.0001*m.x26*m.x13 + 0.0001*m.x26*
m.x14 + 1.44057575028709*m.x26*m.x15 + 0.0001*m.x26*m.x16 + 0.0001*m.x26*m.x17 + 0.0001*m.x26*
m.x18 + 0.0001*m.x26*m.x19 + 0.0001*m.x26*m.x20 + 0.0001*m.x26*m.x21 + 0.0001*m.x26*m.x22 +
0.0001*m.x26*m.x23 + 0.0001*m.x26*m.x24 + 0.0001*m.x26*m.x25 + 3.06770027127532*m.x26**2 + 0.0001
*m.x26*m.x27 + 0.0001*m.x26*m.x28 + 0.0001*m.x26*m.x29 + 0.0001*m.x26*m.x30 + 0.0001*m.x26*m.x31
+ 0.0001*m.x26*m.x32 + 0.0001*m.x26*m.x33 + 0.0001*m.x26*m.x34 + 0.0001*m.x26*m.x35 + 0.0001*
m.x26*m.x36 + 0.0001*m.x26*m.x37 + 1.36173827028348*m.x26*m.x38 + 0.0001*m.x26*m.x39 + 0.0001*
m.x26*m.x40 + 0.0001*m.x26*m.x41 + 0.0001*m.x26*m.x42 + 0.0001*m.x26*m.x43 + 0.0001*m.x26*m.x44
+ 0.0001*m.x26*m.x45 + 0.0001*m.x26*m.x46 + 0.0001*m.x26*m.x47 + 0.0001*m.x26*m.x48 +
1.79090332870939*m.x26*m.x49 + 0.0001*m.x26*m.x50 + 0.0001*m.x26*m.x51 + 0.0001*m.x26*m.x52 +
0.0001*m.x26*m.x53 + 0.0001*m.x26*m.x54 + 0.0001*m.x26*m.x55 + 0.0001*m.x26*m.x56 + 0.0001*m.x26*
m.x57 + 0.221547820101383*m.x26*m.x58 + 0.0001*m.x26*m.x59 + 0.0001*m.x26*m.x60 + 0.0001*m.x26*
m.x61 + 0.0001*m.x26*m.x62 + 0.0001*m.x26*m.x63 + 0.0001*m.x26*m.x64 + 0.0001*m.x26*m.x65 +
0.0001*m.x26*m.x66 + 0.0001*m.x26*m.x67 + 0.0001*m.x26*m.x68 + 0.0001*m.x26*m.x69 + 0.0001*m.x26*
m.x70 + 0.0001*m.x26*m.x71 + 0.0001*m.x26*m.x72 + 0.0001*m.x26*m.x73 + 0.0001*m.x26*m.x74 +
0.0001*m.x26*m.x75 + 0.0001*m.x26*m.x76 + 0.0001*m.x26*m.x77 + 0.0001*m.x26*m.x78 + 0.0001*m.x26*
m.x79 + 0.0001*m.x26*m.x80 + 0.0001*m.x26*m.x81 + 0.0001*m.x26*m.x82 + 0.0001*m.x26*m.x83 +
0.0001*m.x26*m.x84 + 4.94950665205728*m.x26*m.x85 + 0.0001*m.x26*m.x86 + 0.0001*m.x26*m.x87 +
0.0001*m.x26*m.x88 + 0.0001*m.x26*m.x89 + 0.0001*m.x26*m.x90 + 0.0001*m.x26*m.x91 + 0.0001*m.x26*
m.x92 + 0.0001*m.x26*m.x93 + 0.0001*m.x26*m.x94 + 0.620513780689159*m.x26*m.x95 + 0.0001*m.x26*
m.x96 + 0.0001*m.x26*m.x97 + 0.0001*m.x26*m.x98 + 0.0001*m.x26*m.x99 + 0.0001*m.x26*m.x100 +
0.0001*m.x26*m.x101 + 0.0001*m.x26*m.x102 + 0.0001*m.x26*m.x103 + 0.0001*m.x26*m.x104 + 0.0001*
m.x26*m.x105 + 0.0001*m.x26*m.x106 + 0.0001*m.x26*m.x107 + 0.0001*m.x26*m.x108 + 0.0001*m.x26*
m.x109 + 0.0001*m.x26*m.x110 + 0.0001*m.x26*m.x111 + 0.0001*m.x26*m.x112 + 0.0001*m.x26*m.x113 +
0.0001*m.x26*m.x114 + 0.0001*m.x26*m.x115 + 0.0001*m.x26*m.x116 + 0.0001*m.x26*m.x117 + 0.0001*
m.x26*m.x118 + 0.0001*m.x26*m.x119 + 0.0001*m.x26*m.x120 + 0.0001*m.x26*m.x121 + 0.0001*m.x26*
m.x122 + 0.0001*m.x26*m.x123 + 0.0001*m.x26*m.x124 + 0.0001*m.x26*m.x125 + 0.0001*m.x26*m.x126 +
0.0001*m.x26*m.x127 + 0.0001*m.x26*m.x128 + 0.0001*m.x26*m.x129 + 0.0001*m.x26*m.x130 + 0.0001*
m.x26*m.x131 + 0.83639696474523*m.x26*m.x132 + 0.0001*m.x26*m.x133 + 0.0001*m.x26*m.x134 + 0.0001
*m.x26*m.x135 + 0.0001*m.x26*m.x136 + 0.0001*m.x26*m.x137 + 0.0001*m.x26*m.x138 + 0.0001*m.x26*
m.x139 + 0.0001*m.x26*m.x140 + 0.0001*m.x26*m.x141 + 0.0001*m.x26*m.x142 + 0.0001*m.x26*m.x143 +
0.0001*m.x26*m.x144 + 0.0001*m.x26*m.x145 + 0.0001*m.x26*m.x146 + 0.0001*m.x26*m.x147 + 0.0001*
m.x26*m.x148 + 0.0001*m.x26*m.x149 + 0.0001*m.x26*m.x150 + 0.0001*m.x26*m.x151 + 0.0001*m.x26*
m.x152 + 0.0001*m.x26*m.x153 + 0.0001*m.x26*m.x154 + 0.0001*m.x26*m.x155 + 0.0001*m.x26*m.x156 +
0.0001*m.x26*m.x157 + 0.0001*m.x26*m.x158 + 0.0001*m.x26*m.x159 + 0.0001*m.x26*m.x160 + 0.0001*
m.x26*m.x161 + 0.0001*m.x26*m.x162 + 0.0001*m.x26*m.x163 + 0.0001*m.x26*m.x164 + 0.0001*m.x26*
m.x165 + 0.0001*m.x26*m.x166 + 0.0001*m.x26*m.x167 + 0.0001*m.x26*m.x168 + 0.0001*m.x26*m.x169 +
0.0001*m.x26*m.x170 + 0.0001*m.x26*m.x171 + 0.0001*m.x26*m.x172 + 0.0001*m.x26*m.x173 + 0.0001*
m.x26*m.x174 + 0.0001*m.x26*m.x175 + 0.0001*m.x26*m.x176 + 0.0001*m.x26*m.x177 + 0.0001*m.x26*
m.x178 + 0.0001*m.x26*m.x179 + 0.0001*m.x26*m.x180 + 0.0001*m.x26*m.x181 + 0.0001*m.x26*m.x182 +
0.0001*m.x26*m.x183 + 0.0001*m.x26*m.x184 + 0.0001*m.x26*m.x185 + 0.0001*m.x27*m.x1 + 0.0001*
m.x27*m.x2 + 0.0001*m.x27*m.x3 + 1.75563715981236*m.x27*m.x4 + 0.0001*m.x27*m.x5 + 0.0001*m.x27*
m.x6 + 0.0001*m.x27*m.x7 + 0.0001*m.x27*m.x8 + 0.0001*m.x27*m.x9 + 0.0001*m.x27*m.x10 + 0.0001*
m.x27*m.x11 + 0.0001*m.x27*m.x12 + 0.0001*m.x27*m.x13 + 0.0001*m.x27*m.x14 + 0.0001*m.x27*m.x15
+ 1.43443424552376*m.x27*m.x16 + 0.0001*m.x27*m.x17 + 0.0001*m.x27*m.x18 + 0.0001*m.x27*m.x19 +
0.0001*m.x27*m.x20 + 0.0001*m.x27*m.x21 + 0.0001*m.x27*m.x22 + 0.0001*m.x27*m.x23 + 0.0001*m.x27*
m.x24 + 0.0001*m.x27*m.x25 + 0.0001*m.x27*m.x26 + 2.97984850007621*m.x27**2 + 0.0001*m.x27*m.x28
+ 0.0001*m.x27*m.x29 + 0.0001*m.x27*m.x30 + 0.0001*m.x27*m.x31 + 0.0001*m.x27*m.x32 + 0.0001*
m.x27*m.x33 + 0.0001*m.x27*m.x34 + 0.0001*m.x27*m.x35 + 0.0001*m.x27*m.x36 + 0.0001*m.x27*m.x37
+ 0.0001*m.x27*m.x38 + 1.41707980140673*m.x27*m.x39 + 0.0001*m.x27*m.x40 + 0.0001*m.x27*m.x41 +
0.0001*m.x27*m.x42 + 0.0001*m.x27*m.x43 + 0.0001*m.x27*m.x44 + 0.0001*m.x27*m.x45 + 0.0001*m.x27*
m.x46 + 0.0001*m.x27*m.x47 + 0.0001*m.x27*m.x48 + 0.0001*m.x27*m.x49 + 1.76587825146747*m.x27*
m.x50 + 0.0001*m.x27*m.x51 + 0.0001*m.x27*m.x52 + 0.0001*m.x27*m.x53 + 0.0001*m.x27*m.x54 +
0.0001*m.x27*m.x55 + 0.0001*m.x27*m.x56 + 0.0001*m.x27*m.x57 + 0.0001*m.x27*m.x58 + 0.0001*m.x27*
m.x59 + 0.0001*m.x27*m.x60 + 0.0001*m.x27*m.x61 + 0.0001*m.x27*m.x62 + 0.0001*m.x27*m.x63 +
0.0001*m.x27*m.x64 + 0.0001*m.x27*m.x65 + 0.0001*m.x27*m.x66 + 0.0001*m.x27*m.x67 + 0.0001*m.x27*
m.x68 + 0.0001*m.x27*m.x69 + 0.0001*m.x27*m.x70 + 0.0001*m.x27*m.x71 + 0.0001*m.x27*m.x72 +
0.0001*m.x27*m.x73 + 0.0001*m.x27*m.x74 + 0.0001*m.x27*m.x75 + 0.0001*m.x27*m.x76 + 0.0001*m.x27*
m.x77 + 0.0001*m.x27*m.x78 + 0.0001*m.x27*m.x79 + 0.0001*m.x27*m.x80 + 0.0001*m.x27*m.x81 +
0.0001*m.x27*m.x82 + 0.0001*m.x27*m.x83 + 0.0001*m.x27*m.x84 + 0.0001*m.x27*m.x85 +
4.9283503175782*m.x27*m.x86 + 0.0001*m.x27*m.x87 + 0.0001*m.x27*m.x88 + 0.0001*m.x27*m.x89 +
0.0001*m.x27*m.x90 + 0.0001*m.x27*m.x91 + 0.0001*m.x27*m.x92 + 0.0001*m.x27*m.x93 + 0.0001*m.x27*
m.x94 + 0.0001*m.x27*m.x95 + 0.624057893929279*m.x27*m.x96 + 0.0001*m.x27*m.x97 + 0.0001*m.x27*
m.x98 + 0.0001*m.x27*m.x99 + 0.0001*m.x27*m.x100 + 0.0001*m.x27*m.x101 + 0.0001*m.x27*m.x102 +
0.0001*m.x27*m.x103 + 0.0001*m.x27*m.x104 + 0.0001*m.x27*m.x105 + 0.0001*m.x27*m.x106 + 0.0001*
m.x27*m.x107 + 0.0001*m.x27*m.x108 + 0.0001*m.x27*m.x109 + 0.0001*m.x27*m.x110 + 0.0001*m.x27*
m.x111 + 0.0001*m.x27*m.x112 + 0.0001*m.x27*m.x113 + 0.0001*m.x27*m.x114 + 0.0001*m.x27*m.x115 +
0.0001*m.x27*m.x116 + 0.0001*m.x27*m.x117 + 0.0001*m.x27*m.x118 + 0.0001*m.x27*m.x119 + 0.0001*
m.x27*m.x120 + 0.0001*m.x27*m.x121 + 0.0001*m.x27*m.x122 + 0.0001*m.x27*m.x123 + 0.0001*m.x27*
m.x124 + 0.0001*m.x27*m.x125 + 0.0001*m.x27*m.x126 + 0.0001*m.x27*m.x127 + 0.0001*m.x27*m.x128 +
0.0001*m.x27*m.x129 + 0.0001*m.x27*m.x130 + 0.0001*m.x27*m.x131 + 0.0001*m.x27*m.x132 +
0.830775905057381*m.x27*m.x133 + 0.0001*m.x27*m.x134 + 0.0001*m.x27*m.x135 + 0.0001*m.x27*m.x136
+ 0.0001*m.x27*m.x137 + 0.0001*m.x27*m.x138 + 0.0001*m.x27*m.x139 + 0.0001*m.x27*m.x140 + 0.0001
*m.x27*m.x141 + 0.0001*m.x27*m.x142 + 0.0001*m.x27*m.x143 + 0.0001*m.x27*m.x144 + 0.0001*m.x27*
m.x145 + 0.0001*m.x27*m.x146 + 0.0001*m.x27*m.x147 + 0.0001*m.x27*m.x148 + 0.0001*m.x27*m.x149 +
0.0001*m.x27*m.x150 + 0.0001*m.x27*m.x151 + 0.0001*m.x27*m.x152 + 0.0001*m.x27*m.x153 + 0.0001*
m.x27*m.x154 + 0.0001*m.x27*m.x155 + 0.0001*m.x27*m.x156 + 0.0001*m.x27*m.x157 + 0.0001*m.x27*
m.x158 + 0.0001*m.x27*m.x159 + 0.0001*m.x27*m.x160 + 0.0001*m.x27*m.x161 + 0.0001*m.x27*m.x162 +
0.0001*m.x27*m.x163 + 0.0001*m.x27*m.x164 + 0.0001*m.x27*m.x165 + 0.0001*m.x27*m.x166 + 0.0001*
m.x27*m.x167 + 0.0001*m.x27*m.x168 + 0.0001*m.x27*m.x169 + 0.0001*m.x27*m.x170 + 0.0001*m.x27*
m.x171 + 0.0001*m.x27*m.x172 + 0.0001*m.x27*m.x173 + 0.0001*m.x27*m.x174 + 0.0001*m.x27*m.x175 +
0.0001*m.x27*m.x176 + 0.0001*m.x27*m.x177 + 0.0001*m.x27*m.x178 + 0.0001*m.x27*m.x179 + 0.0001*
m.x27*m.x180 + 0.0001*m.x27*m.x181 + 0.0001*m.x27*m.x182 + 0.0001*m.x27*m.x183 + 0.0001*m.x27*
m.x184 + 0.0001*m.x27*m.x185 + 0.0001*m.x28*m.x1 + 0.0001*m.x28*m.x2 + 0.0001*m.x28*m.x3 + 0.0001
*m.x28*m.x4 + 1.76040038778825*m.x28*m.x5 + 0.0001*m.x28*m.x6 + 0.0001*m.x28*m.x7 + 0.0001*m.x28*
m.x8 + 0.0001*m.x28*m.x9 + 0.0001*m.x28*m.x10 + 0.0001*m.x28*m.x11 + 0.0001*m.x28*m.x12 + 0.0001*
m.x28*m.x13 + 0.0001*m.x28*m.x14 + 0.0001*m.x28*m.x15 + 0.0001*m.x28*m.x16 + 1.40499695900221*
m.x28*m.x17 + 0.0001*m.x28*m.x18 + 0.0001*m.x28*m.x19 + 0.0001*m.x28*m.x20 + 0.0001*m.x28*m.x21
+ 0.0001*m.x28*m.x22 + 0.0001*m.x28*m.x23 + 0.0001*m.x28*m.x24 + 0.0001*m.x28*m.x25 + 0.0001*
m.x28*m.x26 + 0.0001*m.x28*m.x27 + 2.97332023171659*m.x28**2 + 0.0001*m.x28*m.x29 + 0.0001*m.x28*
m.x30 + 0.0001*m.x28*m.x31 + 0.0001*m.x28*m.x32 + 0.0001*m.x28*m.x33 + 0.0001*m.x28*m.x34 +
0.0001*m.x28*m.x35 + 0.0001*m.x28*m.x36 + 0.0001*m.x28*m.x37 + 0.0001*m.x28*m.x38 + 0.0001*m.x28*
m.x39 + 1.3877827117399*m.x28*m.x40 + 0.0001*m.x28*m.x41 + 0.0001*m.x28*m.x42 + 0.0001*m.x28*
m.x43 + 0.0001*m.x28*m.x44 + 0.0001*m.x28*m.x45 + 0.0001*m.x28*m.x46 + 0.0001*m.x28*m.x47 +
0.0001*m.x28*m.x48 + 0.0001*m.x28*m.x49 + 0.0001*m.x28*m.x50 + 1.76608379317448*m.x28*m.x51 +
0.0001*m.x28*m.x52 + 0.0001*m.x28*m.x53 + 0.0001*m.x28*m.x54 + 0.0001*m.x28*m.x55 + 0.0001*m.x28*
m.x56 + 0.0001*m.x28*m.x57 + 0.0001*m.x28*m.x58 + 0.0001*m.x28*m.x59 + 0.0001*m.x28*m.x60 +
0.0001*m.x28*m.x61 + 0.0001*m.x28*m.x62 + 0.0001*m.x28*m.x63 + 0.0001*m.x28*m.x64 + 0.0001*m.x28*
m.x65 + 0.0001*m.x28*m.x66 + 0.0001*m.x28*m.x67 + 0.0001*m.x28*m.x68 + 0.0001*m.x28*m.x69 +
0.0001*m.x28*m.x70 + 0.0001*m.x28*m.x71 + 0.0001*m.x28*m.x72 + 0.0001*m.x28*m.x73 + 0.0001*m.x28*
m.x74 + 0.0001*m.x28*m.x75 + 0.0001*m.x28*m.x76 + 0.0001*m.x28*m.x77 + 0.0001*m.x28*m.x78 +
0.0001*m.x28*m.x79 + 0.0001*m.x28*m.x80 + 0.0001*m.x28*m.x81 + 0.0001*m.x28*m.x82 + 0.0001*m.x28*
m.x83 + 0.0001*m.x28*m.x84 + 0.0001*m.x28*m.x85 + 0.0001*m.x28*m.x86 + 4.92892398020092*m.x28*
m.x87 + 0.0001*m.x28*m.x88 + 0.0001*m.x28*m.x89 + 0.0001*m.x28*m.x90 + 0.0001*m.x28*m.x91 +
0.0001*m.x28*m.x92 + 0.0001*m.x28*m.x93 + 0.0001*m.x28*m.x94 + 0.0001*m.x28*m.x95 + 0.0001*m.x28*
m.x96 + 0.624183321392942*m.x28*m.x97 + 0.0001*m.x28*m.x98 + 0.0001*m.x28*m.x99 + 0.0001*m.x28*
m.x100 + 0.0001*m.x28*m.x101 + 0.0001*m.x28*m.x102 + 0.0001*m.x28*m.x103 + 0.0001*m.x28*m.x104 +
0.0001*m.x28*m.x105 + 0.0001*m.x28*m.x106 + 0.0001*m.x28*m.x107 + 0.0001*m.x28*m.x108 + 0.0001*
m.x28*m.x109 + 0.0001*m.x28*m.x110 + 0.0001*m.x28*m.x111 + 0.0001*m.x28*m.x112 + 0.0001*m.x28*
m.x113 + 0.0001*m.x28*m.x114 + 0.0001*m.x28*m.x115 + 0.0001*m.x28*m.x116 + 0.0001*m.x28*m.x117 +
0.0001*m.x28*m.x118 + 0.0001*m.x28*m.x119 + 0.0001*m.x28*m.x120 + 0.0001*m.x28*m.x121 + 0.0001*
m.x28*m.x122 + 0.0001*m.x28*m.x123 + 0.0001*m.x28*m.x124 + 0.0001*m.x28*m.x125 + 0.0001*m.x28*
m.x126 + 0.0001*m.x28*m.x127 + 0.0001*m.x28*m.x128 + 0.0001*m.x28*m.x129 + 0.0001*m.x28*m.x130 +
0.0001*m.x28*m.x131 + 0.0001*m.x28*m.x132 + 0.0001*m.x28*m.x133 + 0.815539264390752*m.x28*m.x134
+ 0.0001*m.x28*m.x135 + 0.0001*m.x28*m.x136 + 0.0001*m.x28*m.x137 + 0.0001*m.x28*m.x138 + 0.0001
*m.x28*m.x139 + 0.0001*m.x28*m.x140 + 0.0001*m.x28*m.x141 + 0.0001*m.x28*m.x142 + 0.0001*m.x28*
m.x143 + 0.0001*m.x28*m.x144 + 0.0001*m.x28*m.x145 + 0.0001*m.x28*m.x146 + 0.0001*m.x28*m.x147 +
0.0001*m.x28*m.x148 + 0.0001*m.x28*m.x149 + 0.0001*m.x28*m.x150 + 0.0001*m.x28*m.x151 + 0.0001*
m.x28*m.x152 + 0.0001*m.x28*m.x153 + 0.0001*m.x28*m.x154 + 0.0001*m.x28*m.x155 + 0.0001*m.x28*
m.x156 + 0.0001*m.x28*m.x157 + 0.0001*m.x28*m.x158 + 0.0001*m.x28*m.x159 + 0.0001*m.x28*m.x160 +
0.0001*m.x28*m.x161 + 0.0001*m.x28*m.x162 + 0.0001*m.x28*m.x163 + 0.0001*m.x28*m.x164 + 0.0001*
m.x28*m.x165 + 0.0001*m.x28*m.x166 + 0.0001*m.x28*m.x167 + 0.0001*m.x28*m.x168 + 0.0001*m.x28*
m.x169 + 0.0001*m.x28*m.x170 + 0.0001*m.x28*m.x171 + 0.0001*m.x28*m.x172 + 0.0001*m.x28*m.x173 +
0.0001*m.x28*m.x174 + 0.0001*m.x28*m.x175 + 0.0001*m.x28*m.x176 + 0.0001*m.x28*m.x177 + 0.0001*
m.x28*m.x178 + 0.0001*m.x28*m.x179 + 0.0001*m.x28*m.x180 + 0.0001*m.x28*m.x181 + 0.0001*m.x28*
m.x182 + 0.0001*m.x28*m.x183 + 0.0001*m.x28*m.x184 + 0.0001*m.x28*m.x185 + 0.0001*m.x29*m.x1 +
0.0001*m.x29*m.x2 + 0.0001*m.x29*m.x3 + 0.0001*m.x29*m.x4 + 0.0001*m.x29*m.x5 + 1.76849613599461*
m.x29*m.x6 + 0.0001*m.x29*m.x7 + 0.0001*m.x29*m.x8 + 0.0001*m.x29*m.x9 + 0.0001*m.x29*m.x10 +
0.0001*m.x29*m.x11 + 0.0001*m.x29*m.x12 + 0.0001*m.x29*m.x13 + 0.0001*m.x29*m.x14 + 0.0001*m.x29*
m.x15 + 0.0001*m.x29*m.x16 + 0.0001*m.x29*m.x17 + 1.41126335218548*m.x29*m.x18 + 0.0001*m.x29*
m.x19 + 0.0001*m.x29*m.x20 + 0.0001*m.x29*m.x21 + 0.0001*m.x29*m.x22 + 0.0001*m.x29*m.x23 +
0.0001*m.x29*m.x24 + 0.0001*m.x29*m.x25 + 0.0001*m.x29*m.x26 + 0.0001*m.x29*m.x27 + 0.0001*m.x29*
m.x28 + 2.92132115274106*m.x29**2 + 0.0001*m.x29*m.x30 + 0.0001*m.x29*m.x31 + 0.0001*m.x29*m.x32
+ 0.0001*m.x29*m.x33 + 0.0001*m.x29*m.x34 + 0.0001*m.x29*m.x35 + 0.0001*m.x29*m.x36 + 0.0001*
m.x29*m.x37 + 0.0001*m.x29*m.x38 + 0.0001*m.x29*m.x39 + 0.0001*m.x29*m.x40 + 1.39418925971928*
m.x29*m.x41 + 0.0001*m.x29*m.x42 + 0.0001*m.x29*m.x43 + 0.0001*m.x29*m.x44 + 0.0001*m.x29*m.x45
+ 0.0001*m.x29*m.x46 + 0.0001*m.x29*m.x47 + 0.0001*m.x29*m.x48 + 0.0001*m.x29*m.x49 + 0.0001*
m.x29*m.x50 + 0.0001*m.x29*m.x51 + 1.69967084265552*m.x29*m.x52 + 0.0001*m.x29*m.x53 + 0.0001*
m.x29*m.x54 + 0.0001*m.x29*m.x55 + 0.0001*m.x29*m.x56 + 0.0001*m.x29*m.x57 + 0.0001*m.x29*m.x58
+ 0.0001*m.x29*m.x59 + 0.0001*m.x29*m.x60 + 0.0001*m.x29*m.x61 + 0.0001*m.x29*m.x62 + 0.0001*
m.x29*m.x63 + 0.0001*m.x29*m.x64 + 0.0001*m.x29*m.x65 + 0.0001*m.x29*m.x66 + 0.0001*m.x29*m.x67
+ 0.0001*m.x29*m.x68 + 0.0001*m.x29*m.x69 + 0.0001*m.x29*m.x70 + 0.0001*m.x29*m.x71 + 0.0001*
m.x29*m.x72 + 0.0001*m.x29*m.x73 + 0.0001*m.x29*m.x74 + 0.0001*m.x29*m.x75 + 0.0001*m.x29*m.x76
+ 0.0001*m.x29*m.x77 + 0.0001*m.x29*m.x78 + 0.0001*m.x29*m.x79 + 0.0001*m.x29*m.x80 + 0.0001*
m.x29*m.x81 + 0.0001*m.x29*m.x82 + 0.0001*m.x29*m.x83 + 0.0001*m.x29*m.x84 + 0.0001*m.x29*m.x85
+ 0.0001*m.x29*m.x86 + 0.0001*m.x29*m.x87 + 4.87034828234694*m.x29*m.x88 + 0.0001*m.x29*m.x89 +
0.0001*m.x29*m.x90 + 0.0001*m.x29*m.x91 + 0.0001*m.x29*m.x92 + 0.0001*m.x29*m.x93 + 0.0001*m.x29*
m.x94 + 0.0001*m.x29*m.x95 + 0.0001*m.x29*m.x96 + 0.0001*m.x29*m.x97 + 0.666827196622213*m.x29*
m.x98 + 0.0001*m.x29*m.x99 + 0.0001*m.x29*m.x100 + 0.0001*m.x29*m.x101 + 0.0001*m.x29*m.x102 +
0.0001*m.x29*m.x103 + 0.0001*m.x29*m.x104 + 0.0001*m.x29*m.x105 + 0.0001*m.x29*m.x106 + 0.0001*
m.x29*m.x107 + 0.0001*m.x29*m.x108 + 0.0001*m.x29*m.x109 + 0.0001*m.x29*m.x110 + 0.0001*m.x29*
m.x111 + 0.0001*m.x29*m.x112 + 0.0001*m.x29*m.x113 + 0.0001*m.x29*m.x114 + 0.0001*m.x29*m.x115 +
0.0001*m.x29*m.x116 + 0.0001*m.x29*m.x117 + 0.0001*m.x29*m.x118 + 0.0001*m.x29*m.x119 + 0.0001*
m.x29*m.x120 + 0.0001*m.x29*m.x121 + 0.0001*m.x29*m.x122 + 0.0001*m.x29*m.x123 + 0.0001*m.x29*
m.x124 + 0.0001*m.x29*m.x125 + 0.0001*m.x29*m.x126 + 0.0001*m.x29*m.x127 + 0.0001*m.x29*m.x128 +
0.0001*m.x29*m.x129 + 0.0001*m.x29*m.x130 + 0.0001*m.x29*m.x131 + 0.0001*m.x29*m.x132 + 0.0001*
m.x29*m.x133 + 0.0001*m.x29*m.x134 + 0.84527694313714*m.x29*m.x135 + 0.0001*m.x29*m.x136 + 0.0001
*m.x29*m.x137 + 0.0001*m.x29*m.x138 + 0.0001*m.x29*m.x139 + 0.0001*m.x29*m.x140 + 0.0001*m.x29*
m.x141 + 0.0001*m.x29*m.x142 + 0.0001*m.x29*m.x143 + 0.0001*m.x29*m.x144 + 0.0001*m.x29*m.x145 +
0.0001*m.x29*m.x146 + 0.0001*m.x29*m.x147 + 0.0001*m.x29*m.x148 + 0.0001*m.x29*m.x149 + 0.0001*
m.x29*m.x150 + 0.0001*m.x29*m.x151 + 0.0001*m.x29*m.x152 + 0.0001*m.x29*m.x153 + 0.0001*m.x29*
m.x154 + 0.0001*m.x29*m.x155 + 0.0001*m.x29*m.x156 + 0.0001*m.x29*m.x157 + 0.0001*m.x29*m.x158 +
0.0001*m.x29*m.x159 + 0.0001*m.x29*m.x160 + 0.0001*m.x29*m.x161 + 0.0001*m.x29*m.x162 + 0.0001*
m.x29*m.x163 + 0.0001*m.x29*m.x164 + 0.0001*m.x29*m.x165 + 0.0001*m.x29*m.x166 + 0.0001*m.x29*
m.x167 + 0.0001*m.x29*m.x168 + 0.0001*m.x29*m.x169 + 0.0001*m.x29*m.x170 + 0.0001*m.x29*m.x171 +
0.0001*m.x29*m.x172 + 0.0001*m.x29*m.x173 + 0.0001*m.x29*m.x174 + 0.0001*m.x29*m.x175 + 0.0001*
m.x29*m.x176 + 0.0001*m.x29*m.x177 + 0.0001*m.x29*m.x178 + 0.0001*m.x29*m.x179 + 0.0001*m.x29*
m.x180 + 0.0001*m.x29*m.x181 + 0.0001*m.x29*m.x182 + 0.0001*m.x29*m.x183 + 0.0001*m.x29*m.x184 +
0.0001*m.x29*m.x185 + 0.0001*m.x30*m.x1 + 0.0001*m.x30*m.x2 + 0.0001*m.x30*m.x3 + 0.0001*m.x30*
m.x4 + 0.0001*m.x30*m.x5 + 0.0001*m.x30*m.x6 + 1.72684751084366*m.x30*m.x7 + 0.0001*m.x30*m.x8 +
0.0001*m.x30*m.x9 + 0.0001*m.x30*m.x10 + 0.0001*m.x30*m.x11 + 0.0001*m.x30*m.x12 + 0.0001*m.x30*
m.x13 + 0.0001*m.x30*m.x14 + 0.0001*m.x30*m.x15 + 0.0001*m.x30*m.x16 + 0.0001*m.x30*m.x17 +
0.0001*m.x30*m.x18 + 1.40606311251092*m.x30*m.x19 + 0.0001*m.x30*m.x20 + 0.0001*m.x30*m.x21 +
0.0001*m.x30*m.x22 + 0.0001*m.x30*m.x23 + 0.0001*m.x30*m.x24 + 0.0001*m.x30*m.x25 + 0.0001*m.x30*
m.x26 + 0.0001*m.x30*m.x27 + 0.0001*m.x30*m.x28 + 0.0001*m.x30*m.x29 + 2.80279299900867*m.x30**2
+ 0.0001*m.x30*m.x31 + 0.0001*m.x30*m.x32 + 0.0001*m.x30*m.x33 + 0.0001*m.x30*m.x34 + 0.0001*
m.x30*m.x35 + 0.0001*m.x30*m.x36 + 0.0001*m.x30*m.x37 + 0.0001*m.x30*m.x38 + 0.0001*m.x30*m.x39
+ 0.0001*m.x30*m.x40 + 0.0001*m.x30*m.x41 + 1.35554864831098*m.x30*m.x42 + 0.0001*m.x30*m.x43 +
0.0001*m.x30*m.x44 + 0.0001*m.x30*m.x45 + 0.0001*m.x30*m.x46 + 0.0001*m.x30*m.x47 + 0.0001*m.x30*
m.x48 + 0.0001*m.x30*m.x49 + 0.0001*m.x30*m.x50 + 0.0001*m.x30*m.x51 + 0.0001*m.x30*m.x52 +
1.7183567177394*m.x30*m.x53 + 0.0001*m.x30*m.x54 + 0.0001*m.x30*m.x55 + 0.0001*m.x30*m.x56 +
0.0001*m.x30*m.x57 + 0.0001*m.x30*m.x58 + 0.0001*m.x30*m.x59 + 0.0001*m.x30*m.x60 + 0.0001*m.x30*
m.x61 + 0.0001*m.x30*m.x62 + 0.0001*m.x30*m.x63 + 0.0001*m.x30*m.x64 + 0.0001*m.x30*m.x65 +
0.0001*m.x30*m.x66 + 0.0001*m.x30*m.x67 + 0.0001*m.x30*m.x68 + 0.0001*m.x30*m.x69 + 0.0001*m.x30*
m.x70 + 0.0001*m.x30*m.x71 + 0.0001*m.x30*m.x72 + 0.0001*m.x30*m.x73 + 0.0001*m.x30*m.x74 +
0.0001*m.x30*m.x75 + 0.0001*m.x30*m.x76 + 0.0001*m.x30*m.x77 + 0.0001*m.x30*m.x78 + 0.0001*m.x30*
m.x79 + 0.0001*m.x30*m.x80 + 0.0001*m.x30*m.x81 + 0.0001*m.x30*m.x82 + 0.0001*m.x30*m.x83 +
0.0001*m.x30*m.x84 + 0.0001*m.x30*m.x85 + 0.0001*m.x30*m.x86 + 0.0001*m.x30*m.x87 + 0.0001*m.x30*
m.x88 + 4.83667608906549*m.x30*m.x89 + 0.0001*m.x30*m.x90 + 0.0001*m.x30*m.x91 + 0.0001*m.x30*
m.x92 + 0.0001*m.x30*m.x93 + 0.0001*m.x30*m.x94 + 0.0001*m.x30*m.x95 + 0.0001*m.x30*m.x96 +
0.0001*m.x30*m.x97 + 0.0001*m.x30*m.x98 + 0.0001*m.x30*m.x99 + 0.0001*m.x30*m.x100 + 0.0001*m.x30
*m.x101 + 0.0001*m.x30*m.x102 + 0.0001*m.x30*m.x103 + 0.0001*m.x30*m.x104 + 0.0001*m.x30*m.x105
+ 0.0001*m.x30*m.x106 + 0.0001*m.x30*m.x107 + 0.0001*m.x30*m.x108 + 0.0001*m.x30*m.x109 + 0.0001
*m.x30*m.x110 + 0.0001*m.x30*m.x111 + 0.0001*m.x30*m.x112 + 0.0001*m.x30*m.x113 + 0.0001*m.x30*
m.x114 + 0.0001*m.x30*m.x115 + 0.0001*m.x30*m.x116 + 0.0001*m.x30*m.x117 + 0.0001*m.x30*m.x118 +
0.0001*m.x30*m.x119 + 0.0001*m.x30*m.x120 + 0.0001*m.x30*m.x121 + 0.0001*m.x30*m.x122 + 0.0001*
m.x30*m.x123 + 0.0001*m.x30*m.x124 + 0.0001*m.x30*m.x125 + 0.0001*m.x30*m.x126 + 0.0001*m.x30*
m.x127 + 0.0001*m.x30*m.x128 + 0.0001*m.x30*m.x129 + 0.0001*m.x30*m.x130 + 0.0001*m.x30*m.x131 +
0.0001*m.x30*m.x132 + 0.0001*m.x30*m.x133 + 0.0001*m.x30*m.x134 + 0.0001*m.x30*m.x135 +
0.735363248013873*m.x30*m.x136 + 0.0001*m.x30*m.x137 + 0.0001*m.x30*m.x138 + 0.0001*m.x30*m.x139
+ 0.0001*m.x30*m.x140 + 0.0001*m.x30*m.x141 + 0.0001*m.x30*m.x142 + 0.0001*m.x30*m.x143 + 0.0001
*m.x30*m.x144 + 0.0001*m.x30*m.x145 + 0.0001*m.x30*m.x146 + 0.0001*m.x30*m.x147 + 0.0001*m.x30*
m.x148 + 0.0001*m.x30*m.x149 + 0.0001*m.x30*m.x150 + 0.0001*m.x30*m.x151 + 0.0001*m.x30*m.x152 +
0.0001*m.x30*m.x153 + 0.0001*m.x30*m.x154 + 0.0001*m.x30*m.x155 + 0.0001*m.x30*m.x156 + 0.0001*
m.x30*m.x157 + 0.0001*m.x30*m.x158 + 0.0001*m.x30*m.x159 + 0.0001*m.x30*m.x160 + 0.0001*m.x30*
m.x161 + 0.0001*m.x30*m.x162 + 0.0001*m.x30*m.x163 + 0.0001*m.x30*m.x164 + 0.0001*m.x30*m.x165 +
0.0001*m.x30*m.x166 + 0.0001*m.x30*m.x167 + 0.0001*m.x30*m.x168 + 0.0001*m.x30*m.x169 + 0.0001*
m.x30*m.x170 + 0.0001*m.x30*m.x171 + 0.0001*m.x30*m.x172 + 0.0001*m.x30*m.x173 + 0.0001*m.x30*
m.x174 + 0.0001*m.x30*m.x175 + 0.0001*m.x30*m.x176 + 0.0001*m.x30*m.x177 + 0.0001*m.x30*m.x178 +
0.0001*m.x30*m.x179 + 0.0001*m.x30*m.x180 + 0.0001*m.x30*m.x181 + 0.0001*m.x30*m.x182 + 0.0001*
m.x30*m.x183 + 0.0001*m.x30*m.x184 + 0.0001*m.x30*m.x185 + 0.0001*m.x31*m.x1 + 0.0001*m.x31*m.x2
+ 0.0001*m.x31*m.x3 + 0.0001*m.x31*m.x4 + 0.0001*m.x31*m.x5 + 0.0001*m.x31*m.x6 + 0.0001*m.x31*
m.x7 + 1.73585651671266*m.x31*m.x8 + 0.0001*m.x31*m.x9 + 0.0001*m.x31*m.x10 + 0.0001*m.x31*m.x11
+ 0.0001*m.x31*m.x12 + 0.0001*m.x31*m.x13 + 0.0001*m.x31*m.x14 + 0.0001*m.x31*m.x15 + 0.0001*
m.x31*m.x16 + 0.0001*m.x31*m.x17 + 0.0001*m.x31*m.x18 + 0.0001*m.x31*m.x19 + 1.56105826810654*
m.x31*m.x20 + 0.0001*m.x31*m.x21 + 0.0001*m.x31*m.x22 + 0.0001*m.x31*m.x23 + 0.0001*m.x31*m.x24
+ 0.0001*m.x31*m.x25 + 0.0001*m.x31*m.x26 + 0.0001*m.x31*m.x27 + 0.0001*m.x31*m.x28 + 0.0001*
m.x31*m.x29 + 0.0001*m.x31*m.x30 + 2.8864715069607*m.x31**2 + 0.0001*m.x31*m.x32 + 0.0001*m.x31*
m.x33 + 0.0001*m.x31*m.x34 + 0.0001*m.x31*m.x35 + 0.0001*m.x31*m.x36 + 0.0001*m.x31*m.x37 +
0.0001*m.x31*m.x38 + 0.0001*m.x31*m.x39 + 0.0001*m.x31*m.x40 + 0.0001*m.x31*m.x41 + 0.0001*m.x31*
m.x42 + 1.50497502534561*m.x31*m.x43 + 0.0001*m.x31*m.x44 + 0.0001*m.x31*m.x45 + 0.0001*m.x31*
m.x46 + 0.0001*m.x31*m.x47 + 0.0001*m.x31*m.x48 + 0.0001*m.x31*m.x49 + 0.0001*m.x31*m.x50 +
0.0001*m.x31*m.x51 + 0.0001*m.x31*m.x52 + 0.0001*m.x31*m.x53 + 1.71052437050334*m.x31*m.x54 +
0.0001*m.x31*m.x55 + 0.0001*m.x31*m.x56 + 0.0001*m.x31*m.x57 + 0.0001*m.x31*m.x58 + 0.0001*m.x31*
m.x59 + 0.0001*m.x31*m.x60 + 0.0001*m.x31*m.x61 + 0.0001*m.x31*m.x62 + 0.0001*m.x31*m.x63 +
0.0001*m.x31*m.x64 + 0.0001*m.x31*m.x65 + 0.0001*m.x31*m.x66 + 0.0001*m.x31*m.x67 + 0.0001*m.x31*
m.x68 + 0.0001*m.x31*m.x69 + 0.0001*m.x31*m.x70 + 0.0001*m.x31*m.x71 + 0.0001*m.x31*m.x72 +
0.0001*m.x31*m.x73 + 0.0001*m.x31*m.x74 + 0.0001*m.x31*m.x75 + 0.0001*m.x31*m.x76 + 0.0001*m.x31*
m.x77 + 0.0001*m.x31*m.x78 + 0.0001*m.x31*m.x79 + 0.0001*m.x31*m.x80 + 0.0001*m.x31*m.x81 +
0.0001*m.x31*m.x82 + 0.0001*m.x31*m.x83 + 0.0001*m.x31*m.x84 + 0.0001*m.x31*m.x85 + 0.0001*m.x31*
m.x86 + 0.0001*m.x31*m.x87 + 0.0001*m.x31*m.x88 + 0.0001*m.x31*m.x89 + 4.83667608906549*m.x31*
m.x90 + 0.0001*m.x31*m.x91 + 0.0001*m.x31*m.x92 + 0.0001*m.x31*m.x93 + 0.0001*m.x31*m.x94 +
0.0001*m.x31*m.x95 + 0.0001*m.x31*m.x96 + 0.0001*m.x31*m.x97 + 0.0001*m.x31*m.x98 +
0.65193781790818*m.x31*m.x99 + 0.0001*m.x31*m.x100 + 0.0001*m.x31*m.x101 + 0.0001*m.x31*m.x102 +
0.0001*m.x31*m.x103 + 0.0001*m.x31*m.x104 + 0.0001*m.x31*m.x105 + 0.0001*m.x31*m.x106 + 0.0001*
m.x31*m.x107 + 0.0001*m.x31*m.x108 + 0.0001*m.x31*m.x109 + 0.0001*m.x31*m.x110 + 0.0001*m.x31*
m.x111 + 0.0001*m.x31*m.x112 + 0.0001*m.x31*m.x113 + 0.0001*m.x31*m.x114 + 0.0001*m.x31*m.x115 +
0.0001*m.x31*m.x116 + 0.0001*m.x31*m.x117 + 0.0001*m.x31*m.x118 + 0.0001*m.x31*m.x119 + 0.0001*
m.x31*m.x120 + 0.0001*m.x31*m.x121 + 0.0001*m.x31*m.x122 + 0.0001*m.x31*m.x123 + 0.0001*m.x31*
m.x124 + 0.0001*m.x31*m.x125 + 0.0001*m.x31*m.x126 + 0.0001*m.x31*m.x127 + 0.0001*m.x31*m.x128 +
0.0001*m.x31*m.x129 + 0.0001*m.x31*m.x130 + 0.0001*m.x31*m.x131 + 0.0001*m.x31*m.x132 + 0.0001*
m.x31*m.x133 + 0.0001*m.x31*m.x134 + 0.0001*m.x31*m.x135 + 0.0001*m.x31*m.x136 +
0.923236326862633*m.x31*m.x137 + 0.0001*m.x31*m.x138 + 0.0001*m.x31*m.x139 + 0.0001*m.x31*m.x140
+ 0.0001*m.x31*m.x141 + 0.0001*m.x31*m.x142 + 0.0001*m.x31*m.x143 + 0.0001*m.x31*m.x144 + 0.0001
*m.x31*m.x145 + 0.0001*m.x31*m.x146 + 0.0001*m.x31*m.x147 + 0.0001*m.x31*m.x148 + 0.0001*m.x31*
m.x149 + 0.0001*m.x31*m.x150 + 0.0001*m.x31*m.x151 + 0.0001*m.x31*m.x152 + 0.0001*m.x31*m.x153 +
0.0001*m.x31*m.x154 + 0.0001*m.x31*m.x155 + 0.0001*m.x31*m.x156 + 0.0001*m.x31*m.x157 + 0.0001*
m.x31*m.x158 + 0.0001*m.x31*m.x159 + 0.0001*m.x31*m.x160 + 0.0001*m.x31*m.x161 + 0.0001*m.x31*
m.x162 + 0.0001*m.x31*m.x163 + 0.0001*m.x31*m.x164 + 0.0001*m.x31*m.x165 + 0.0001*m.x31*m.x166 +
0.0001*m.x31*m.x167 + 0.0001*m.x31*m.x168 + 0.0001*m.x31*m.x169 + 0.0001*m.x31*m.x170 + 0.0001*
m.x31*m.x171 + 0.0001*m.x31*m.x172 + 0.0001*m.x31*m.x173 + 0.0001*m.x31*m.x174 + 0.0001*m.x31*
m.x175 + 0.0001*m.x31*m.x176 + 0.0001*m.x31*m.x177 + 0.0001*m.x31*m.x178 + 0.0001*m.x31*m.x179 +
0.0001*m.x31*m.x180 + 0.0001*m.x31*m.x181 + 0.0001*m.x31*m.x182 + 0.0001*m.x31*m.x183 + 0.0001*
m.x31*m.x184 + 0.0001*m.x31*m.x185 + 0.0001*m.x32*m.x1 + 0.0001*m.x32*m.x2 + 0.0001*m.x32*m.x3 +
0.0001*m.x32*m.x4 + 0.0001*m.x32*m.x5 + 0.0001*m.x32*m.x6 + 0.0001*m.x32*m.x7 + 0.0001*m.x32*m.x8
+ 1.81124027188761*m.x32*m.x9 + 0.0001*m.x32*m.x10 + 0.0001*m.x32*m.x11 + 0.0001*m.x32*m.x12 +
0.0001*m.x32*m.x13 + 0.0001*m.x32*m.x14 + 0.0001*m.x32*m.x15 + 0.0001*m.x32*m.x16 + 0.0001*m.x32*
m.x17 + 0.0001*m.x32*m.x18 + 0.0001*m.x32*m.x19 + 0.0001*m.x32*m.x20 + 1.62885055048501*m.x32*
m.x21 + 0.0001*m.x32*m.x22 + 0.0001*m.x32*m.x23 + 0.0001*m.x32*m.x24 + 0.0001*m.x32*m.x25 +
0.0001*m.x32*m.x26 + 0.0001*m.x32*m.x27 + 0.0001*m.x32*m.x28 + 0.0001*m.x32*m.x29 + 0.0001*m.x32*
m.x30 + 0.0001*m.x32*m.x31 + 3.10873128400148*m.x32**2 + 0.0001*m.x32*m.x33 + 0.0001*m.x32*m.x34
+ 0.0001*m.x32*m.x35 + 0.0001*m.x32*m.x36 + 0.0001*m.x32*m.x37 + 0.0001*m.x32*m.x38 + 0.0001*
m.x32*m.x39 + 0.0001*m.x32*m.x40 + 0.0001*m.x32*m.x41 + 0.0001*m.x32*m.x42 + 0.0001*m.x32*m.x43
+ 1.57033161734872*m.x32*m.x44 + 0.0001*m.x32*m.x45 + 0.0001*m.x32*m.x46 + 0.0001*m.x32*m.x47 +
0.0001*m.x32*m.x48 + 0.0001*m.x32*m.x49 + 0.0001*m.x32*m.x50 + 0.0001*m.x32*m.x51 + 0.0001*m.x32*
m.x52 + 0.0001*m.x32*m.x53 + 0.0001*m.x32*m.x54 + 1.7735490726527*m.x32*m.x55 + 0.0001*m.x32*
m.x56 + 0.0001*m.x32*m.x57 + 0.0001*m.x32*m.x58 + 0.0001*m.x32*m.x59 + 0.0001*m.x32*m.x60 +
0.0001*m.x32*m.x61 + 0.0001*m.x32*m.x62 + 0.0001*m.x32*m.x63 + 0.0001*m.x32*m.x64 + 0.0001*m.x32*
m.x65 + 0.0001*m.x32*m.x66 + 0.0001*m.x32*m.x67 + 0.0001*m.x32*m.x68 + 0.0001*m.x32*m.x69 +
0.0001*m.x32*m.x70 + 0.0001*m.x32*m.x71 + 0.0001*m.x32*m.x72 + 0.0001*m.x32*m.x73 + 0.0001*m.x32*
m.x74 + 0.0001*m.x32*m.x75 + 0.0001*m.x32*m.x76 + 0.0001*m.x32*m.x77 + 0.0001*m.x32*m.x78 +
0.0001*m.x32*m.x79 + 0.0001*m.x32*m.x80 + 0.0001*m.x32*m.x81 + 0.0001*m.x32*m.x82 + 0.0001*m.x32*
m.x83 + 0.0001*m.x32*m.x84 + 0.0001*m.x32*m.x85 + 0.0001*m.x32*m.x86 + 0.0001*m.x32*m.x87 +
0.0001*m.x32*m.x88 + 0.0001*m.x32*m.x89 + 0.0001*m.x32*m.x90 + 5.0148913745191*m.x32*m.x91 +
0.0001*m.x32*m.x92 + 0.0001*m.x32*m.x93 + 0.0001*m.x32*m.x94 + 0.0001*m.x32*m.x95 + 0.0001*m.x32*
m.x96 + 0.0001*m.x32*m.x97 + 0.0001*m.x32*m.x98 + 0.0001*m.x32*m.x99 + 0.680247077879747*m.x32*
m.x100 + 0.0001*m.x32*m.x101 + 0.0001*m.x32*m.x102 + 0.0001*m.x32*m.x103 + 0.0001*m.x32*m.x104 +
0.0001*m.x32*m.x105 + 0.0001*m.x32*m.x106 + 0.0001*m.x32*m.x107 + 0.0001*m.x32*m.x108 + 0.0001*
m.x32*m.x109 + 0.0001*m.x32*m.x110 + 0.0001*m.x32*m.x111 + 0.0001*m.x32*m.x112 + 0.0001*m.x32*
m.x113 + 0.0001*m.x32*m.x114 + 0.0001*m.x32*m.x115 + 0.0001*m.x32*m.x116 + 0.0001*m.x32*m.x117 +
0.0001*m.x32*m.x118 + 0.0001*m.x32*m.x119 + 0.0001*m.x32*m.x120 + 0.0001*m.x32*m.x121 + 0.0001*
m.x32*m.x122 + 0.0001*m.x32*m.x123 + 0.0001*m.x32*m.x124 + 0.0001*m.x32*m.x125 + 0.0001*m.x32*
m.x126 + 0.0001*m.x32*m.x127 + 0.0001*m.x32*m.x128 + 0.0001*m.x32*m.x129 + 0.0001*m.x32*m.x130 +
0.0001*m.x32*m.x131 + 0.0001*m.x32*m.x132 + 0.0001*m.x32*m.x133 + 0.0001*m.x32*m.x134 + 0.0001*
m.x32*m.x135 + 0.0001*m.x32*m.x136 + 0.0001*m.x32*m.x137 + 0.969443186220753*m.x32*m.x138 +
0.0001*m.x32*m.x139 + 0.0001*m.x32*m.x140 + 0.0001*m.x32*m.x141 + 0.0001*m.x32*m.x142 + 0.0001*
m.x32*m.x143 + 0.0001*m.x32*m.x144 + 0.0001*m.x32*m.x145 + 0.0001*m.x32*m.x146 + 0.0001*m.x32*
m.x147 + 0.0001*m.x32*m.x148 + 0.0001*m.x32*m.x149 + 0.0001*m.x32*m.x150 + 0.0001*m.x32*m.x151 +
0.0001*m.x32*m.x152 + 0.0001*m.x32*m.x153 + 0.0001*m.x32*m.x154 + 0.0001*m.x32*m.x155 + 0.0001*
m.x32*m.x156 + 0.0001*m.x32*m.x157 + 0.0001*m.x32*m.x158 + 0.0001*m.x32*m.x159 + 0.0001*m.x32*
m.x160 + 0.0001*m.x32*m.x161 + 0.0001*m.x32*m.x162 + 0.0001*m.x32*m.x163 + 0.0001*m.x32*m.x164 +
0.0001*m.x32*m.x165 + 0.0001*m.x32*m.x166 + 0.0001*m.x32*m.x167 + 0.0001*m.x32*m.x168 + 0.0001*
m.x32*m.x169 + 0.0001*m.x32*m.x170 + 0.0001*m.x32*m.x171 + 0.0001*m.x32*m.x172 + 0.0001*m.x32*
m.x173 + 0.0001*m.x32*m.x174 + 0.0001*m.x32*m.x175 + 0.0001*m.x32*m.x176 + 0.0001*m.x32*m.x177 +
0.0001*m.x32*m.x178 + 0.0001*m.x32*m.x179 + 0.0001*m.x32*m.x180 + 0.0001*m.x32*m.x181 + 0.0001*
m.x32*m.x182 + 0.0001*m.x32*m.x183 + 0.0001*m.x32*m.x184 + 0.0001*m.x32*m.x185 + 0.0001*m.x33*
m.x1 + 0.0001*m.x33*m.x2 + 0.0001*m.x33*m.x3 + 0.0001*m.x33*m.x4 + 0.0001*m.x33*m.x5 + 0.0001*
m.x33*m.x6 + 0.0001*m.x33*m.x7 + 0.0001*m.x33*m.x8 + 0.0001*m.x33*m.x9 + 1.86248826671711*m.x33*
m.x10 + 0.0001*m.x33*m.x11 + 0.0001*m.x33*m.x12 + 0.0001*m.x33*m.x13 + 0.0001*m.x33*m.x14 +
0.0001*m.x33*m.x15 + 0.0001*m.x33*m.x16 + 0.0001*m.x33*m.x17 + 0.0001*m.x33*m.x18 + 0.0001*m.x33*
m.x19 + 0.0001*m.x33*m.x20 + 0.0001*m.x33*m.x21 + 1.53606919766544*m.x33*m.x22 + 0.0001*m.x33*
m.x23 + 0.0001*m.x33*m.x24 + 0.0001*m.x33*m.x25 + 0.0001*m.x33*m.x26 + 0.0001*m.x33*m.x27 +
0.0001*m.x33*m.x28 + 0.0001*m.x33*m.x29 + 0.0001*m.x33*m.x30 + 0.0001*m.x33*m.x31 + 0.0001*m.x33*
m.x32 + 3.14539967370305*m.x33**2 + 0.0001*m.x33*m.x34 + 0.0001*m.x33*m.x35 + 0.0001*m.x33*m.x36
+ 0.0001*m.x33*m.x37 + 0.0001*m.x33*m.x38 + 0.0001*m.x33*m.x39 + 0.0001*m.x33*m.x40 + 0.0001*
m.x33*m.x41 + 0.0001*m.x33*m.x42 + 0.0001*m.x33*m.x43 + 0.0001*m.x33*m.x44 + 1.63440412456913*
m.x33*m.x45 + 0.0001*m.x33*m.x46 + 0.0001*m.x33*m.x47 + 0.0001*m.x33*m.x48 + 0.0001*m.x33*m.x49
+ 0.0001*m.x33*m.x50 + 0.0001*m.x33*m.x51 + 0.0001*m.x33*m.x52 + 0.0001*m.x33*m.x53 + 0.0001*
m.x33*m.x54 + 1.65089229431681*m.x33*m.x55 + 0.0001*m.x33*m.x56 + 0.0001*m.x33*m.x57 + 0.0001*
m.x33*m.x58 + 0.254202322766495*m.x33*m.x59 + 0.0001*m.x33*m.x60 + 0.0001*m.x33*m.x61 + 0.0001*
m.x33*m.x62 + 0.0001*m.x33*m.x63 + 0.0001*m.x33*m.x64 + 0.0001*m.x33*m.x65 + 0.0001*m.x33*m.x66
+ 0.0001*m.x33*m.x67 + 0.0001*m.x33*m.x68 + 0.0001*m.x33*m.x69 + 0.0001*m.x33*m.x70 + 0.0001*
m.x33*m.x71 + 0.0001*m.x33*m.x72 + 0.0001*m.x33*m.x73 + 0.0001*m.x33*m.x74 + 0.0001*m.x33*m.x75
+ 0.0001*m.x33*m.x76 + 0.0001*m.x33*m.x77 + 0.0001*m.x33*m.x78 + 0.0001*m.x33*m.x79 + 0.0001*
m.x33*m.x80 + 0.0001*m.x33*m.x81 + 0.0001*m.x33*m.x82 + 0.0001*m.x33*m.x83 + 0.0001*m.x33*m.x84
+ 0.0001*m.x33*m.x85 + 0.0001*m.x33*m.x86 + 0.0001*m.x33*m.x87 + 0.0001*m.x33*m.x88 + 0.0001*
m.x33*m.x89 + 0.0001*m.x33*m.x90 + 0.0001*m.x33*m.x91 + 5.09913394219933*m.x33*m.x92 + 0.0001*
m.x33*m.x93 + 0.0001*m.x33*m.x94 + 0.0001*m.x33*m.x95 + 0.0001*m.x33*m.x96 + 0.0001*m.x33*m.x97
+ 0.0001*m.x33*m.x98 + 0.0001*m.x33*m.x99 + 0.0001*m.x33*m.x100 + 0.646678640160985*m.x33*m.x101
+ 0.0001*m.x33*m.x102 + 0.0001*m.x33*m.x103 + 0.0001*m.x33*m.x104 + 0.0001*m.x33*m.x105 + 0.0001
*m.x33*m.x106 + 0.0001*m.x33*m.x107 + 0.0001*m.x33*m.x108 + 0.0001*m.x33*m.x109 + 0.0001*m.x33*
m.x110 + 0.0001*m.x33*m.x111 + 0.0001*m.x33*m.x112 + 0.0001*m.x33*m.x113 + 0.0001*m.x33*m.x114 +
0.0001*m.x33*m.x115 + 0.0001*m.x33*m.x116 + 0.0001*m.x33*m.x117 + 0.0001*m.x33*m.x118 + 0.0001*
m.x33*m.x119 + 0.0001*m.x33*m.x120 + 0.0001*m.x33*m.x121 + 0.0001*m.x33*m.x122 + 0.0001*m.x33*
m.x123 + 0.0001*m.x33*m.x124 + 0.0001*m.x33*m.x125 + 0.0001*m.x33*m.x126 + 0.0001*m.x33*m.x127 +
0.0001*m.x33*m.x128 + 0.0001*m.x33*m.x129 + 0.0001*m.x33*m.x130 + 0.0001*m.x33*m.x131 + 0.0001*
m.x33*m.x132 + 0.0001*m.x33*m.x133 + 0.0001*m.x33*m.x134 + 0.0001*m.x33*m.x135 + 0.0001*m.x33*
m.x136 + 0.0001*m.x33*m.x137 + 0.0001*m.x33*m.x138 + 1.01807942895716*m.x33*m.x139 + 0.0001*m.x33
*m.x140 + 0.0001*m.x33*m.x141 + 0.0001*m.x33*m.x142 + 0.0001*m.x33*m.x143 + 0.0001*m.x33*m.x144
+ 0.0001*m.x33*m.x145 + 0.0001*m.x33*m.x146 + 0.0001*m.x33*m.x147 + 0.0001*m.x33*m.x148 + 0.0001
*m.x33*m.x149 + 0.0001*m.x33*m.x150 + 0.0001*m.x33*m.x151 + 0.0001*m.x33*m.x152 + 0.0001*m.x33*
m.x153 + 0.0001*m.x33*m.x154 + 0.0001*m.x33*m.x155 + 0.0001*m.x33*m.x156 + 0.0001*m.x33*m.x157 +
0.0001*m.x33*m.x158 + 0.0001*m.x33*m.x159 + 0.0001*m.x33*m.x160 + 0.0001*m.x33*m.x161 + 0.0001*
m.x33*m.x162 + 0.0001*m.x33*m.x163 + 0.0001*m.x33*m.x164 + 0.0001*m.x33*m.x165 + 0.0001*m.x33*
m.x166 + 0.0001*m.x33*m.x167 + 0.0001*m.x33*m.x168 + 0.0001*m.x33*m.x169 + 0.0001*m.x33*m.x170 +
0.0001*m.x33*m.x171 + 0.0001*m.x33*m.x172 + 0.0001*m.x33*m.x173 + 0.0001*m.x33*m.x174 + 0.0001*
m.x33*m.x175 + 0.0001*m.x33*m.x176 + 0.0001*m.x33*m.x177 + 0.0001*m.x33*m.x178 + 0.0001*m.x33*
m.x179 + 0.0001*m.x33*m.x180 + 0.0001*m.x33*m.x181 + 0.0001*m.x33*m.x182 + 0.0001*m.x33*m.x183 +
0.0001*m.x33*m.x184 + 0.0001*m.x33*m.x185 + 0.0001*m.x34*m.x1 + 0.0001*m.x34*m.x2 + 0.0001*m.x34*
m.x3 + 0.0001*m.x34*m.x4 + 0.0001*m.x34*m.x5 + 0.0001*m.x34*m.x6 + 0.0001*m.x34*m.x7 + 0.0001*
m.x34*m.x8 + 0.0001*m.x34*m.x9 + 0.0001*m.x34*m.x10 + 1.84161801636613*m.x34*m.x11 + 0.0001*m.x34
*m.x12 + 0.0001*m.x34*m.x13 + 0.0001*m.x34*m.x14 + 0.0001*m.x34*m.x15 + 0.0001*m.x34*m.x16 +
0.0001*m.x34*m.x17 + 0.0001*m.x34*m.x18 + 0.0001*m.x34*m.x19 + 0.0001*m.x34*m.x20 + 0.0001*m.x34*
m.x21 + 0.0001*m.x34*m.x22 + 1.48565600121365*m.x34*m.x23 + 0.0001*m.x34*m.x24 + 0.0001*m.x34*
m.x25 + 0.0001*m.x34*m.x26 + 0.0001*m.x34*m.x27 + 0.0001*m.x34*m.x28 + 0.0001*m.x34*m.x29 +
0.0001*m.x34*m.x30 + 0.0001*m.x34*m.x31 + 0.0001*m.x34*m.x32 + 0.0001*m.x34*m.x33 +
3.13159696035837*m.x34**2 + 0.0001*m.x34*m.x35 + 0.0001*m.x34*m.x36 + 0.0001*m.x34*m.x37 + 0.0001
*m.x34*m.x38 + 0.0001*m.x34*m.x39 + 0.0001*m.x34*m.x40 + 0.0001*m.x34*m.x41 + 0.0001*m.x34*m.x42
+ 0.0001*m.x34*m.x43 + 0.0001*m.x34*m.x44 + 0.0001*m.x34*m.x45 + 1.5807634037662*m.x34*m.x46 +
0.0001*m.x34*m.x47 + 0.0001*m.x34*m.x48 + 0.0001*m.x34*m.x49 + 0.0001*m.x34*m.x50 + 0.0001*m.x34*
m.x51 + 0.0001*m.x34*m.x52 + 0.0001*m.x34*m.x53 + 0.0001*m.x34*m.x54 + 0.0001*m.x34*m.x55 +
1.65089229431681*m.x34*m.x56 + 0.0001*m.x34*m.x57 + 0.0001*m.x34*m.x58 + 0.0001*m.x34*m.x59 +
0.0001*m.x34*m.x60 + 0.0001*m.x34*m.x61 + 0.0001*m.x34*m.x62 + 0.0001*m.x34*m.x63 + 0.0001*m.x34*
m.x64 + 0.0001*m.x34*m.x65 + 0.0001*m.x34*m.x66 + 0.0001*m.x34*m.x67 + 0.0001*m.x34*m.x68 +
0.0001*m.x34*m.x69 + 0.0001*m.x34*m.x70 + 0.0001*m.x34*m.x71 + 0.0001*m.x34*m.x72 + 0.0001*m.x34*
m.x73 + 0.0001*m.x34*m.x74 + 0.0001*m.x34*m.x75 + 0.0001*m.x34*m.x76 + 0.0001*m.x34*m.x77 +
0.0001*m.x34*m.x78 + 0.0001*m.x34*m.x79 + 0.0001*m.x34*m.x80 + 0.0001*m.x34*m.x81 + 0.0001*m.x34*
m.x82 + 0.0001*m.x34*m.x83 + 0.0001*m.x34*m.x84 + 0.0001*m.x34*m.x85 + 0.0001*m.x34*m.x86 +
0.0001*m.x34*m.x87 + 0.0001*m.x34*m.x88 + 0.0001*m.x34*m.x89 + 0.0001*m.x34*m.x90 + 0.0001*m.x34*
m.x91 + 0.0001*m.x34*m.x92 + 5.09913394219933*m.x34*m.x93 + 0.0001*m.x34*m.x94 + 0.0001*m.x34*
m.x95 + 0.0001*m.x34*m.x96 + 0.0001*m.x34*m.x97 + 0.0001*m.x34*m.x98 + 0.0001*m.x34*m.x99 +
0.0001*m.x34*m.x100 + 0.0001*m.x34*m.x101 + 0.646596082213053*m.x34*m.x102 + 0.0001*m.x34*m.x103
+ 0.0001*m.x34*m.x104 + 0.0001*m.x34*m.x105 + 0.0001*m.x34*m.x106 + 0.0001*m.x34*m.x107 + 0.0001
*m.x34*m.x108 + 0.0001*m.x34*m.x109 + 0.0001*m.x34*m.x110 + 0.0001*m.x34*m.x111 + 0.0001*m.x34*
m.x112 + 0.0001*m.x34*m.x113 + 0.0001*m.x34*m.x114 + 0.0001*m.x34*m.x115 + 0.0001*m.x34*m.x116 +
0.0001*m.x34*m.x117 + 0.0001*m.x34*m.x118 + 0.0001*m.x34*m.x119 + 0.0001*m.x34*m.x120 + 0.0001*
m.x34*m.x121 + 0.0001*m.x34*m.x122 + 0.0001*m.x34*m.x123 + 0.0001*m.x34*m.x124 + 0.0001*m.x34*
m.x125 + 0.0001*m.x34*m.x126 + 0.0001*m.x34*m.x127 + 0.0001*m.x34*m.x128 + 0.0001*m.x34*m.x129 +
0.709807760487836*m.x34*m.x130 + 0.0001*m.x34*m.x131 + 0.0001*m.x34*m.x132 + 0.0001*m.x34*m.x133
+ 0.0001*m.x34*m.x134 + 0.0001*m.x34*m.x135 + 0.0001*m.x34*m.x136 + 0.0001*m.x34*m.x137 + 0.0001
*m.x34*m.x138 + 0.0001*m.x34*m.x139 + 0.988072237295943*m.x34*m.x140 + 0.0001*m.x34*m.x141 +
0.0001*m.x34*m.x142 + 0.0001*m.x34*m.x143 + 0.0001*m.x34*m.x144 + 0.0001*m.x34*m.x145 + 0.0001*
m.x34*m.x146 + 0.0001*m.x34*m.x147 + 0.0001*m.x34*m.x148 + 0.0001*m.x34*m.x149 + 0.0001*m.x34*
m.x150 + 0.0001*m.x34*m.x151 + 0.0001*m.x34*m.x152 + 0.0001*m.x34*m.x153 + 0.0001*m.x34*m.x154 +
0.0001*m.x34*m.x155 + 0.0001*m.x34*m.x156 + 0.0001*m.x34*m.x157 + 0.0001*m.x34*m.x158 + 0.0001*
m.x34*m.x159 + 0.0001*m.x34*m.x160 + 0.0001*m.x34*m.x161 + 0.0001*m.x34*m.x162 + 0.0001*m.x34*
m.x163 + 0.0001*m.x34*m.x164 + 0.0001*m.x34*m.x165 + 0.0001*m.x34*m.x166 + 0.0001*m.x34*m.x167 +
0.0001*m.x34*m.x168 + 0.0001*m.x34*m.x169 + 0.0001*m.x34*m.x170 + 0.0001*m.x34*m.x171 + 0.0001*
m.x34*m.x172 + 0.0001*m.x34*m.x173 + 0.0001*m.x34*m.x174 + 0.0001*m.x34*m.x175 + 0.0001*m.x34*
m.x176 + 0.0001*m.x34*m.x177 + 0.0001*m.x34*m.x178 + 0.0001*m.x34*m.x179 + 0.0001*m.x34*m.x180 +
0.0001*m.x34*m.x181 + 0.0001*m.x34*m.x182 + 0.0001*m.x34*m.x183 + 0.0001*m.x34*m.x184 + 0.0001*
m.x34*m.x185 + 0.0001*m.x35*m.x1 + 0.0001*m.x35*m.x2 + 0.0001*m.x35*m.x3 + 0.0001*m.x35*m.x4 +
0.0001*m.x35*m.x5 + 0.0001*m.x35*m.x6 + 0.0001*m.x35*m.x7 + 0.0001*m.x35*m.x8 + 0.0001*m.x35*m.x9
+ 0.0001*m.x35*m.x10 + 0.0001*m.x35*m.x11 + 1.85389551205678*m.x35*m.x12 + 0.0001*m.x35*m.x13 +
0.0001*m.x35*m.x14 + 0.0001*m.x35*m.x15 + 0.0001*m.x35*m.x16 + 0.0001*m.x35*m.x17 + 0.0001*m.x35*
m.x18 + 0.0001*m.x35*m.x19 + 0.0001*m.x35*m.x20 + 0.0001*m.x35*m.x21 + 0.0001*m.x35*m.x22 +
0.0001*m.x35*m.x23 + 1.49556027977136*m.x35*m.x24 + 0.338264012825278*m.x35*m.x25 + 0.0001*m.x35*
m.x26 + 0.0001*m.x35*m.x27 + 0.0001*m.x35*m.x28 + 0.0001*m.x35*m.x29 + 0.0001*m.x35*m.x30 +
0.0001*m.x35*m.x31 + 0.0001*m.x35*m.x32 + 0.0001*m.x35*m.x33 + 0.0001*m.x35*m.x34 +
3.18869958747691*m.x35**2 + 0.0001*m.x35*m.x36 + 0.0001*m.x35*m.x37 + 0.0001*m.x35*m.x38 + 0.0001
*m.x35*m.x39 + 0.0001*m.x35*m.x40 + 0.0001*m.x35*m.x41 + 0.0001*m.x35*m.x42 + 0.0001*m.x35*m.x43
+ 0.0001*m.x35*m.x44 + 0.0001*m.x35*m.x45 + 0.0001*m.x35*m.x46 + 1.59130176828702*m.x35*m.x47 +
0.0001*m.x35*m.x48 + 0.0001*m.x35*m.x49 + 0.0001*m.x35*m.x50 + 0.0001*m.x35*m.x51 + 0.0001*m.x35*
m.x52 + 0.0001*m.x35*m.x53 + 0.0001*m.x35*m.x54 + 0.0001*m.x35*m.x55 + 0.0001*m.x35*m.x56 +
1.70540322124996*m.x35*m.x57 + 0.0001*m.x35*m.x58 + 0.0001*m.x35*m.x59 + 0.0001*m.x35*m.x60 +
0.0001*m.x35*m.x61 + 0.0001*m.x35*m.x62 + 0.0001*m.x35*m.x63 + 0.0001*m.x35*m.x64 + 0.0001*m.x35*
m.x65 + 0.0001*m.x35*m.x66 + 0.0001*m.x35*m.x67 + 0.0001*m.x35*m.x68 + 0.0001*m.x35*m.x69 +
0.0001*m.x35*m.x70 + 0.0001*m.x35*m.x71 + 0.0001*m.x35*m.x72 + 0.0001*m.x35*m.x73 + 0.0001*m.x35*
m.x74 + 0.0001*m.x35*m.x75 + 0.0001*m.x35*m.x76 + 0.0001*m.x35*m.x77 + 0.0001*m.x35*m.x78 +
0.0001*m.x35*m.x79 + 0.0001*m.x35*m.x80 + 0.0001*m.x35*m.x81 + 0.0001*m.x35*m.x82 + 0.0001*m.x35*
m.x83 + 0.0001*m.x35*m.x84 + 0.0001*m.x35*m.x85 + 0.0001*m.x35*m.x86 + 0.0001*m.x35*m.x87 +
0.0001*m.x35*m.x88 + 0.0001*m.x35*m.x89 + 0.0001*m.x35*m.x90 + 0.0001*m.x35*m.x91 + 0.0001*m.x35*
m.x92 + 0.0001*m.x35*m.x93 + 5.14749668329507*m.x35*m.x94 + 0.0001*m.x35*m.x95 + 0.0001*m.x35*
m.x96 + 0.0001*m.x35*m.x97 + 0.0001*m.x35*m.x98 + 0.0001*m.x35*m.x99 + 0.0001*m.x35*m.x100 +
0.0001*m.x35*m.x101 + 0.0001*m.x35*m.x102 + 0.650906304971047*m.x35*m.x103 + 0.0001*m.x35*m.x104
+ 0.0001*m.x35*m.x105 + 0.0001*m.x35*m.x106 + 0.0001*m.x35*m.x107 + 0.0001*m.x35*m.x108 + 0.0001
*m.x35*m.x109 + 0.0001*m.x35*m.x110 + 0.0001*m.x35*m.x111 + 0.0001*m.x35*m.x112 + 0.0001*m.x35*
m.x113 + 0.0001*m.x35*m.x114 + 0.0001*m.x35*m.x115 + 0.0001*m.x35*m.x116 + 0.0001*m.x35*m.x117 +
0.0001*m.x35*m.x118 + 0.0001*m.x35*m.x119 + 0.0001*m.x35*m.x120 + 0.0001*m.x35*m.x121 + 0.0001*
m.x35*m.x122 + 0.0001*m.x35*m.x123 + 0.0001*m.x35*m.x124 + 0.0001*m.x35*m.x125 + 0.0001*m.x35*
m.x126 + 0.0001*m.x35*m.x127 + 0.0001*m.x35*m.x128 + 0.0001*m.x35*m.x129 + 0.0001*m.x35*m.x130 +
0.716539116478635*m.x35*m.x131 + 0.0001*m.x35*m.x132 + 0.0001*m.x35*m.x133 + 0.0001*m.x35*m.x134
+ 0.0001*m.x35*m.x135 + 0.0001*m.x35*m.x136 + 0.0001*m.x35*m.x137 + 0.0001*m.x35*m.x138 + 0.0001
*m.x35*m.x139 + 0.0001*m.x35*m.x140 + 0.991883123544148*m.x35*m.x141 + 0.0001*m.x35*m.x142 +
0.0001*m.x35*m.x143 + 0.0001*m.x35*m.x144 + 0.0001*m.x35*m.x145 + 0.0001*m.x35*m.x146 + 0.0001*
m.x35*m.x147 + 0.0001*m.x35*m.x148 + 0.0001*m.x35*m.x149 + 0.0001*m.x35*m.x150 + 0.0001*m.x35*
m.x151 + 0.0001*m.x35*m.x152 + 0.0001*m.x35*m.x153 + 0.0001*m.x35*m.x154 + 0.0001*m.x35*m.x155 +
0.0001*m.x35*m.x156 + 0.0001*m.x35*m.x157 + 0.0001*m.x35*m.x158 + 0.0001*m.x35*m.x159 + 0.0001*
m.x35*m.x160 + 0.0001*m.x35*m.x161 + 0.0001*m.x35*m.x162 + 0.0001*m.x35*m.x163 + 0.0001*m.x35*
m.x164 + 0.0001*m.x35*m.x165 + 0.0001*m.x35*m.x166 + 0.0001*m.x35*m.x167 + 0.0001*m.x35*m.x168 +
0.0001*m.x35*m.x169 + 0.0001*m.x35*m.x170 + 0.0001*m.x35*m.x171 + 0.0001*m.x35*m.x172 + 0.0001*
m.x35*m.x173 + 0.0001*m.x35*m.x174 + 0.0001*m.x35*m.x175 + 0.0001*m.x35*m.x176 + 0.0001*m.x35*
m.x177 + 0.0001*m.x35*m.x178 + 0.0001*m.x35*m.x179 + 0.0001*m.x35*m.x180 + 0.0001*m.x35*m.x181 +
0.0001*m.x35*m.x182 + 0.0001*m.x35*m.x183 + 0.0001*m.x35*m.x184 + 0.0001*m.x35*m.x185 +
6.87832202410539*m.x36*m.x1 + 0.0001*m.x36*m.x2 + 0.0001*m.x36*m.x3 + 0.0001*m.x36*m.x4 + 0.0001*
m.x36*m.x5 + 0.0001*m.x36*m.x6 + 0.0001*m.x36*m.x7 + 0.0001*m.x36*m.x8 + 0.0001*m.x36*m.x9 +
0.0001*m.x36*m.x10 + 0.0001*m.x36*m.x11 + 0.0001*m.x36*m.x12 + 5.57675338980047*m.x36*m.x13 +
0.0001*m.x36*m.x14 + 0.0001*m.x36*m.x15 + 0.0001*m.x36*m.x16 + 0.0001*m.x36*m.x17 + 0.0001*m.x36*
m.x18 + 0.0001*m.x36*m.x19 + 0.0001*m.x36*m.x20 + 0.0001*m.x36*m.x21 + 0.0001*m.x36*m.x22 +
0.0001*m.x36*m.x23 + 0.0001*m.x36*m.x24 + 0.0001*m.x36*m.x25 + 0.0001*m.x36*m.x26 + 0.0001*m.x36*
m.x27 + 0.0001*m.x36*m.x28 + 0.0001*m.x36*m.x29 + 0.0001*m.x36*m.x30 + 0.0001*m.x36*m.x31 +
0.0001*m.x36*m.x32 + 0.0001*m.x36*m.x33 + 0.0001*m.x36*m.x34 + 0.0001*m.x36*m.x35 +
5.27154221216153*m.x36**2 + 0.0001*m.x36*m.x37 + 0.0001*m.x36*m.x38 + 0.0001*m.x36*m.x39 + 0.0001
*m.x36*m.x40 + 0.0001*m.x36*m.x41 + 0.0001*m.x36*m.x42 + 0.0001*m.x36*m.x43 + 0.0001*m.x36*m.x44
+ 0.0001*m.x36*m.x45 + 0.0001*m.x36*m.x46 + 0.0001*m.x36*m.x47 + 0.0001*m.x36*m.x48 + 0.0001*
m.x36*m.x49 + 0.0001*m.x36*m.x50 + 0.0001*m.x36*m.x51 + 0.0001*m.x36*m.x52 + 0.0001*m.x36*m.x53
+ 0.0001*m.x36*m.x54 + 0.0001*m.x36*m.x55 + 0.0001*m.x36*m.x56 + 0.0001*m.x36*m.x57 + 0.0001*
m.x36*m.x58 + 0.0001*m.x36*m.x59 + 0.0001*m.x36*m.x60 + 0.0001*m.x36*m.x61 + 0.0001*m.x36*m.x62
+ 0.0001*m.x36*m.x63 + 0.0001*m.x36*m.x64 + 0.0001*m.x36*m.x65 + 0.0001*m.x36*m.x66 + 0.0001*
m.x36*m.x67 + 0.0001*m.x36*m.x68 + 0.0001*m.x36*m.x69 + 0.0001*m.x36*m.x70 + 0.0001*m.x36*m.x71
+ 0.0001*m.x36*m.x72 + 0.0001*m.x36*m.x73 + 0.0001*m.x36*m.x74 + 0.0001*m.x36*m.x75 + 0.0001*
m.x36*m.x76 + 0.0001*m.x36*m.x77 + 0.0001*m.x36*m.x78 + 0.0001*m.x36*m.x79 + 0.0001*m.x36*m.x80
+ 0.0001*m.x36*m.x81 + 0.0001*m.x36*m.x82 + 0.0001*m.x36*m.x83 + 0.0001*m.x36*m.x84 + 0.0001*
m.x36*m.x85 + 0.0001*m.x36*m.x86 + 0.0001*m.x36*m.x87 + 0.0001*m.x36*m.x88 + 0.0001*m.x36*m.x89
+ 0.0001*m.x36*m.x90 + 0.0001*m.x36*m.x91 + 0.0001*m.x36*m.x92 + 0.0001*m.x36*m.x93 + 0.0001*
m.x36*m.x94 + 0.0001*m.x36*m.x95 + 0.0001*m.x36*m.x96 + 0.0001*m.x36*m.x97 + 0.0001*m.x36*m.x98
+ 0.0001*m.x36*m.x99 + 0.0001*m.x36*m.x100 + 0.0001*m.x36*m.x101 + 0.0001*m.x36*m.x102 + 0.0001*
m.x36*m.x103 + 0.0001*m.x36*m.x104 + 0.0001*m.x36*m.x105 + 0.0001*m.x36*m.x106 + 0.0001*m.x36*
m.x107 + 0.0001*m.x36*m.x108 + 0.0001*m.x36*m.x109 + 0.0001*m.x36*m.x110 + 0.0001*m.x36*m.x111 +
0.0001*m.x36*m.x112 + 0.0001*m.x36*m.x113 + 0.0001*m.x36*m.x114 + 0.0001*m.x36*m.x115 + 0.0001*
m.x36*m.x116 + 0.0001*m.x36*m.x117 + 0.0001*m.x36*m.x118 + 0.0001*m.x36*m.x119 + 0.0001*m.x36*
m.x120 + 0.0001*m.x36*m.x121 + 0.0001*m.x36*m.x122 + 0.0001*m.x36*m.x123 + 0.0001*m.x36*m.x124 +
0.0001*m.x36*m.x125 + 0.0001*m.x36*m.x126 + 0.0001*m.x36*m.x127 + 0.0001*m.x36*m.x128 + 0.0001*
m.x36*m.x129 + 2.88588347328381*m.x36*m.x130 + 0.0001*m.x36*m.x131 + 0.0001*m.x36*m.x132 + 0.0001
*m.x36*m.x133 + 0.0001*m.x36*m.x134 + 0.0001*m.x36*m.x135 + 0.0001*m.x36*m.x136 + 0.0001*m.x36*
m.x137 + 0.0001*m.x36*m.x138 + 0.0001*m.x36*m.x139 + 0.0001*m.x36*m.x140 + 0.0001*m.x36*m.x141 +
0.0001*m.x36*m.x142 + 0.0001*m.x36*m.x143 + 0.0001*m.x36*m.x144 + 0.0001*m.x36*m.x145 + 0.0001*
m.x36*m.x146 + 0.0001*m.x36*m.x147 + 0.0001*m.x36*m.x148 + 0.0001*m.x36*m.x149 + 0.0001*m.x36*
m.x150 + 0.0001*m.x36*m.x151 + 0.0001*m.x36*m.x152 + 0.0001*m.x36*m.x153 + 0.0001*m.x36*m.x154 +
0.0001*m.x36*m.x155 + 0.0001*m.x36*m.x156 + 0.0001*m.x36*m.x157 + 0.0001*m.x36*m.x158 + 0.0001*
m.x36*m.x159 + 0.0001*m.x36*m.x160 + 0.0001*m.x36*m.x161 + 0.0001*m.x36*m.x162 + 0.0001*m.x36*
m.x163 + 0.0001*m.x36*m.x164 + 0.0001*m.x36*m.x165 + 0.0001*m.x36*m.x166 + 0.0001*m.x36*m.x167 +
0.0001*m.x36*m.x168 + 0.0001*m.x36*m.x169 + 0.0001*m.x36*m.x170 + 0.0001*m.x36*m.x171 + 0.0001*
m.x36*m.x172 + 0.0001*m.x36*m.x173 + 0.0001*m.x36*m.x174 + 0.0001*m.x36*m.x175 + 0.0001*m.x36*
m.x176 + 0.0001*m.x36*m.x177 + 0.0001*m.x36*m.x178 + 0.0001*m.x36*m.x179 + 0.0001*m.x36*m.x180 +
0.0001*m.x36*m.x181 + 0.0001*m.x36*m.x182 + 0.0001*m.x36*m.x183 + 0.0001*m.x36*m.x184 + 0.0001*
m.x36*m.x185 + 0.0001*m.x37*m.x1 + 6.89065937102382*m.x37*m.x2 + 0.0001*m.x37*m.x3 + 0.0001*m.x37
*m.x4 + 0.0001*m.x37*m.x5 + 0.0001*m.x37*m.x6 + 0.0001*m.x37*m.x7 + 0.0001*m.x37*m.x8 + 0.0001*
m.x37*m.x9 + 0.0001*m.x37*m.x10 + 0.0001*m.x37*m.x11 + 0.0001*m.x37*m.x12 + 0.0001*m.x37*m.x13 +
5.66332953599568*m.x37*m.x14 + 0.0001*m.x37*m.x15 + 0.0001*m.x37*m.x16 + 0.0001*m.x37*m.x17 +
0.0001*m.x37*m.x18 + 0.0001*m.x37*m.x19 + 0.0001*m.x37*m.x20 + 0.0001*m.x37*m.x21 + 0.0001*m.x37*
m.x22 + 0.0001*m.x37*m.x23 + 0.0001*m.x37*m.x24 + 1.38335533133029*m.x37*m.x25 + 0.0001*m.x37*
m.x26 + 0.0001*m.x37*m.x27 + 0.0001*m.x37*m.x28 + 0.0001*m.x37*m.x29 + 0.0001*m.x37*m.x30 +
0.0001*m.x37*m.x31 + 0.0001*m.x37*m.x32 + 0.0001*m.x37*m.x33 + 0.0001*m.x37*m.x34 + 0.0001*m.x37*
m.x35 + 0.0001*m.x37*m.x36 + 5.35338003131922*m.x37**2 + 0.0001*m.x37*m.x38 + 0.0001*m.x37*m.x39
+ 0.0001*m.x37*m.x40 + 0.0001*m.x37*m.x41 + 0.0001*m.x37*m.x42 + 0.0001*m.x37*m.x43 + 0.0001*
m.x37*m.x44 + 0.0001*m.x37*m.x45 + 0.0001*m.x37*m.x46 + 0.0001*m.x37*m.x47 + 0.0001*m.x37*m.x48
+ 0.0001*m.x37*m.x49 + 0.0001*m.x37*m.x50 + 0.0001*m.x37*m.x51 + 0.0001*m.x37*m.x52 + 0.0001*
m.x37*m.x53 + 0.0001*m.x37*m.x54 + 0.0001*m.x37*m.x55 + 0.0001*m.x37*m.x56 + 0.0001*m.x37*m.x57
+ 0.0001*m.x37*m.x58 + 0.0001*m.x37*m.x59 + 0.0001*m.x37*m.x60 + 0.0001*m.x37*m.x61 + 0.0001*
m.x37*m.x62 + 0.0001*m.x37*m.x63 + 0.0001*m.x37*m.x64 + 0.0001*m.x37*m.x65 + 0.0001*m.x37*m.x66
+ 0.0001*m.x37*m.x67 + 0.0001*m.x37*m.x68 + 0.0001*m.x37*m.x69 + 0.0001*m.x37*m.x70 + 0.0001*
m.x37*m.x71 + 0.0001*m.x37*m.x72 + 0.0001*m.x37*m.x73 + 0.0001*m.x37*m.x74 + 0.0001*m.x37*m.x75
+ 0.0001*m.x37*m.x76 + 0.0001*m.x37*m.x77 + 0.0001*m.x37*m.x78 + 0.0001*m.x37*m.x79 + 0.0001*
m.x37*m.x80 + 0.0001*m.x37*m.x81 + 0.0001*m.x37*m.x82 + 0.0001*m.x37*m.x83 + 0.0001*m.x37*m.x84
+ 0.0001*m.x37*m.x85 + 0.0001*m.x37*m.x86 + 0.0001*m.x37*m.x87 + 0.0001*m.x37*m.x88 + 0.0001*
m.x37*m.x89 + 0.0001*m.x37*m.x90 + 0.0001*m.x37*m.x91 + 0.0001*m.x37*m.x92 + 0.0001*m.x37*m.x93
+ 0.0001*m.x37*m.x94 + 0.0001*m.x37*m.x95 + 0.0001*m.x37*m.x96 + 0.0001*m.x37*m.x97 + 0.0001*
m.x37*m.x98 + 0.0001*m.x37*m.x99 + 0.0001*m.x37*m.x100 + 0.0001*m.x37*m.x101 + 0.0001*m.x37*
m.x102 + 0.0001*m.x37*m.x103 + 0.0001*m.x37*m.x104 + 0.0001*m.x37*m.x105 + 0.0001*m.x37*m.x106 +
0.0001*m.x37*m.x107 + 0.0001*m.x37*m.x108 + 0.0001*m.x37*m.x109 + 0.0001*m.x37*m.x110 + 0.0001*
m.x37*m.x111 + 0.0001*m.x37*m.x112 + 0.0001*m.x37*m.x113 + 0.0001*m.x37*m.x114 + 0.0001*m.x37*
m.x115 + 0.0001*m.x37*m.x116 + 0.0001*m.x37*m.x117 + 0.0001*m.x37*m.x118 + 0.0001*m.x37*m.x119 +
0.0001*m.x37*m.x120 + 0.0001*m.x37*m.x121 + 0.0001*m.x37*m.x122 + 0.0001*m.x37*m.x123 + 0.0001*
m.x37*m.x124 + 0.0001*m.x37*m.x125 + 0.0001*m.x37*m.x126 + 0.0001*m.x37*m.x127 + 0.0001*m.x37*
m.x128 + 0.0001*m.x37*m.x129 + 0.0001*m.x37*m.x130 + 2.93068453844014*m.x37*m.x131 + 0.0001*m.x37
*m.x132 + 0.0001*m.x37*m.x133 + 0.0001*m.x37*m.x134 + 0.0001*m.x37*m.x135 + 0.0001*m.x37*m.x136
+ 0.0001*m.x37*m.x137 + 0.0001*m.x37*m.x138 + 0.0001*m.x37*m.x139 + 0.0001*m.x37*m.x140 + 0.0001
*m.x37*m.x141 + 0.0001*m.x37*m.x142 + 0.0001*m.x37*m.x143 + 0.0001*m.x37*m.x144 + 0.0001*m.x37*
m.x145 + 0.0001*m.x37*m.x146 + 0.0001*m.x37*m.x147 + 0.0001*m.x37*m.x148 + 0.0001*m.x37*m.x149 +
0.0001*m.x37*m.x150 + 0.0001*m.x37*m.x151 + 0.0001*m.x37*m.x152 + 0.0001*m.x37*m.x153 + 0.0001*
m.x37*m.x154 + 0.0001*m.x37*m.x155 + 0.0001*m.x37*m.x156 + 0.0001*m.x37*m.x157 + 0.0001*m.x37*
m.x158 + 0.0001*m.x37*m.x159 + 0.0001*m.x37*m.x160 + 0.0001*m.x37*m.x161 + 0.0001*m.x37*m.x162 +
0.0001*m.x37*m.x163 + 0.0001*m.x37*m.x164 + 0.0001*m.x37*m.x165 + 0.0001*m.x37*m.x166 + 0.0001*
m.x37*m.x167 + 0.0001*m.x37*m.x168 + 0.0001*m.x37*m.x169 + 0.0001*m.x37*m.x170 + 0.0001*m.x37*
m.x171 + 0.0001*m.x37*m.x172 + 0.0001*m.x37*m.x173 + 0.0001*m.x37*m.x174 + 0.0001*m.x37*m.x175 +
0.0001*m.x37*m.x176 + 0.0001*m.x37*m.x177 + 0.0001*m.x37*m.x178 + 0.0001*m.x37*m.x179 + 0.0001*
m.x37*m.x180 + 0.0001*m.x37*m.x181 + 0.0001*m.x37*m.x182 + 0.0001*m.x37*m.x183 + 0.0001*m.x37*
m.x184 + 0.0001*m.x37*m.x185 + 0.0001*m.x38*m.x1 + 0.0001*m.x38*m.x2 + 6.89065937102382*m.x38*
m.x3 + 0.0001*m.x38*m.x4 + 0.0001*m.x38*m.x5 + 0.0001*m.x38*m.x6 + 0.0001*m.x38*m.x7 + 0.0001*
m.x38*m.x8 + 0.0001*m.x38*m.x9 + 0.0001*m.x38*m.x10 + 0.0001*m.x38*m.x11 + 0.0001*m.x38*m.x12 +
0.0001*m.x38*m.x13 + 0.0001*m.x38*m.x14 + 5.66332953599568*m.x38*m.x15 + 0.0001*m.x38*m.x16 +
0.0001*m.x38*m.x17 + 0.0001*m.x38*m.x18 + 0.0001*m.x38*m.x19 + 0.0001*m.x38*m.x20 + 0.0001*m.x38*
m.x21 + 0.0001*m.x38*m.x22 + 0.0001*m.x38*m.x23 + 0.0001*m.x38*m.x24 + 0.0001*m.x38*m.x25 +
1.36173827028348*m.x38*m.x26 + 0.0001*m.x38*m.x27 + 0.0001*m.x38*m.x28 + 0.0001*m.x38*m.x29 +
0.0001*m.x38*m.x30 + 0.0001*m.x38*m.x31 + 0.0001*m.x38*m.x32 + 0.0001*m.x38*m.x33 + 0.0001*m.x38*
m.x34 + 0.0001*m.x38*m.x35 + 0.0001*m.x38*m.x36 + 0.0001*m.x38*m.x37 + 5.35338003131922*m.x38**2
+ 0.0001*m.x38*m.x39 + 0.0001*m.x38*m.x40 + 0.0001*m.x38*m.x41 + 0.0001*m.x38*m.x42 + 0.0001*
m.x38*m.x43 + 0.0001*m.x38*m.x44 + 0.0001*m.x38*m.x45 + 0.0001*m.x38*m.x46 + 0.0001*m.x38*m.x47
+ 0.0001*m.x38*m.x48 + 0.0001*m.x38*m.x49 + 0.0001*m.x38*m.x50 + 0.0001*m.x38*m.x51 + 0.0001*
m.x38*m.x52 + 0.0001*m.x38*m.x53 + 0.0001*m.x38*m.x54 + 0.0001*m.x38*m.x55 + 0.0001*m.x38*m.x56
+ 0.0001*m.x38*m.x57 + 0.0001*m.x38*m.x58 + 0.0001*m.x38*m.x59 + 0.0001*m.x38*m.x60 + 0.0001*
m.x38*m.x61 + 0.0001*m.x38*m.x62 + 0.0001*m.x38*m.x63 + 0.0001*m.x38*m.x64 + 0.0001*m.x38*m.x65
+ 0.0001*m.x38*m.x66 + 0.0001*m.x38*m.x67 + 0.0001*m.x38*m.x68 + 0.0001*m.x38*m.x69 + 0.0001*
m.x38*m.x70 + 0.0001*m.x38*m.x71 + 0.0001*m.x38*m.x72 + 0.0001*m.x38*m.x73 + 0.0001*m.x38*m.x74
+ 0.0001*m.x38*m.x75 + 0.0001*m.x38*m.x76 + 0.0001*m.x38*m.x77 + 0.0001*m.x38*m.x78 + 0.0001*
m.x38*m.x79 + 0.0001*m.x38*m.x80 + 0.0001*m.x38*m.x81 + 0.0001*m.x38*m.x82 + 0.0001*m.x38*m.x83
+ 0.0001*m.x38*m.x84 + 0.0001*m.x38*m.x85 + 0.0001*m.x38*m.x86 + 0.0001*m.x38*m.x87 + 0.0001*
m.x38*m.x88 + 0.0001*m.x38*m.x89 + 0.0001*m.x38*m.x90 + 0.0001*m.x38*m.x91 + 0.0001*m.x38*m.x92
+ 0.0001*m.x38*m.x93 + 0.0001*m.x38*m.x94 + 0.0001*m.x38*m.x95 + 0.0001*m.x38*m.x96 + 0.0001*
m.x38*m.x97 + 0.0001*m.x38*m.x98 + 0.0001*m.x38*m.x99 + 0.0001*m.x38*m.x100 + 0.0001*m.x38*m.x101
+ 0.0001*m.x38*m.x102 + 0.0001*m.x38*m.x103 + 0.0001*m.x38*m.x104 + 0.0001*m.x38*m.x105 + 0.0001
*m.x38*m.x106 + 0.0001*m.x38*m.x107 + 0.0001*m.x38*m.x108 + 0.0001*m.x38*m.x109 + 0.0001*m.x38*
m.x110 + 0.0001*m.x38*m.x111 + 0.0001*m.x38*m.x112 + 0.0001*m.x38*m.x113 + 0.0001*m.x38*m.x114 +
0.0001*m.x38*m.x115 + 0.0001*m.x38*m.x116 + 0.0001*m.x38*m.x117 + 0.0001*m.x38*m.x118 + 0.0001*
m.x38*m.x119 + 0.0001*m.x38*m.x120 + 0.0001*m.x38*m.x121 + 0.0001*m.x38*m.x122 + 0.0001*m.x38*
m.x123 + 0.0001*m.x38*m.x124 + 0.0001*m.x38*m.x125 + 0.0001*m.x38*m.x126 + 0.0001*m.x38*m.x127 +
0.0001*m.x38*m.x128 + 0.0001*m.x38*m.x129 + 0.0001*m.x38*m.x130 + 0.0001*m.x38*m.x131 +
2.92316961316618*m.x38*m.x132 + 0.0001*m.x38*m.x133 + 0.0001*m.x38*m.x134 + 0.0001*m.x38*m.x135
+ 0.0001*m.x38*m.x136 + 0.0001*m.x38*m.x137 + 0.0001*m.x38*m.x138 + 0.0001*m.x38*m.x139 + 0.0001
*m.x38*m.x140 + 0.0001*m.x38*m.x141 + 0.0001*m.x38*m.x142 + 0.0001*m.x38*m.x143 + 0.0001*m.x38*
m.x144 + 0.0001*m.x38*m.x145 + 0.0001*m.x38*m.x146 + 0.0001*m.x38*m.x147 + 0.0001*m.x38*m.x148 +
0.0001*m.x38*m.x149 + 0.0001*m.x38*m.x150 + 0.0001*m.x38*m.x151 + 0.0001*m.x38*m.x152 + 0.0001*
m.x38*m.x153 + 0.0001*m.x38*m.x154 + 0.0001*m.x38*m.x155 + 0.0001*m.x38*m.x156 + 0.0001*m.x38*
m.x157 + 0.0001*m.x38*m.x158 + 0.0001*m.x38*m.x159 + 0.0001*m.x38*m.x160 + 0.0001*m.x38*m.x161 +
0.0001*m.x38*m.x162 + 0.0001*m.x38*m.x163 + 0.0001*m.x38*m.x164 + 0.0001*m.x38*m.x165 + 0.0001*
m.x38*m.x166 + 0.0001*m.x38*m.x167 + 0.0001*m.x38*m.x168 + 0.0001*m.x38*m.x169 + 0.0001*m.x38*
m.x170 + 0.0001*m.x38*m.x171 + 0.0001*m.x38*m.x172 + 0.0001*m.x38*m.x173 + 0.0001*m.x38*m.x174 +
0.0001*m.x38*m.x175 + 0.0001*m.x38*m.x176 + 0.0001*m.x38*m.x177 + 0.0001*m.x38*m.x178 + 0.0001*
m.x38*m.x179 + 0.0001*m.x38*m.x180 + 0.0001*m.x38*m.x181 + 0.0001*m.x38*m.x182 + 0.0001*m.x38*
m.x183 + 0.0001*m.x38*m.x184 + 0.0001*m.x38*m.x185 + 0.0001*m.x39*m.x1 + 0.0001*m.x39*m.x2 +
0.0001*m.x39*m.x3 + 7.15893955401573*m.x39*m.x4 + 0.0001*m.x39*m.x5 + 0.0001*m.x39*m.x6 + 0.0001*
m.x39*m.x7 + 0.0001*m.x39*m.x8 + 0.0001*m.x39*m.x9 + 0.0001*m.x39*m.x10 + 0.0001*m.x39*m.x11 +
0.0001*m.x39*m.x12 + 0.0001*m.x39*m.x13 + 0.0001*m.x39*m.x14 + 0.0001*m.x39*m.x15 +
5.84911816127454*m.x39*m.x16 + 0.0001*m.x39*m.x17 + 0.0001*m.x39*m.x18 + 0.0001*m.x39*m.x19 +
0.0001*m.x39*m.x20 + 0.0001*m.x39*m.x21 + 0.0001*m.x39*m.x22 + 0.0001*m.x39*m.x23 + 0.0001*m.x39*
m.x24 + 0.0001*m.x39*m.x25 + 0.0001*m.x39*m.x26 + 1.41707980140673*m.x39*m.x27 + 0.0001*m.x39*
m.x28 + 0.0001*m.x39*m.x29 + 0.0001*m.x39*m.x30 + 0.0001*m.x39*m.x31 + 0.0001*m.x39*m.x32 +
0.0001*m.x39*m.x33 + 0.0001*m.x39*m.x34 + 0.0001*m.x39*m.x35 + 0.0001*m.x39*m.x36 + 0.0001*m.x39*
m.x37 + 0.0001*m.x39*m.x38 + 5.77834912042082*m.x39**2 + 0.0001*m.x39*m.x40 + 0.0001*m.x39*m.x41
+ 0.0001*m.x39*m.x42 + 0.0001*m.x39*m.x43 + 0.0001*m.x39*m.x44 + 0.0001*m.x39*m.x45 + 0.0001*
m.x39*m.x46 + 0.0001*m.x39*m.x47 + 0.0001*m.x39*m.x48 + 0.0001*m.x39*m.x49 + 0.0001*m.x39*m.x50
+ 0.0001*m.x39*m.x51 + 0.0001*m.x39*m.x52 + 0.0001*m.x39*m.x53 + 0.0001*m.x39*m.x54 + 0.0001*
m.x39*m.x55 + 0.0001*m.x39*m.x56 + 0.0001*m.x39*m.x57 + 0.0001*m.x39*m.x58 + 0.0001*m.x39*m.x59
+ 0.0001*m.x39*m.x60 + 0.0001*m.x39*m.x61 + 0.0001*m.x39*m.x62 + 0.0001*m.x39*m.x63 + 0.0001*
m.x39*m.x64 + 0.0001*m.x39*m.x65 + 0.0001*m.x39*m.x66 + 0.0001*m.x39*m.x67 + 0.0001*m.x39*m.x68
+ 0.0001*m.x39*m.x69 + 0.0001*m.x39*m.x70 + 0.0001*m.x39*m.x71 + 0.0001*m.x39*m.x72 + 0.0001*
m.x39*m.x73 + 0.0001*m.x39*m.x74 + 0.0001*m.x39*m.x75 + 0.0001*m.x39*m.x76 + 0.0001*m.x39*m.x77
+ 0.0001*m.x39*m.x78 + 0.0001*m.x39*m.x79 + 0.0001*m.x39*m.x80 + 0.0001*m.x39*m.x81 + 0.0001*
m.x39*m.x82 + 0.0001*m.x39*m.x83 + 0.0001*m.x39*m.x84 + 0.0001*m.x39*m.x85 + 0.0001*m.x39*m.x86
+ 0.0001*m.x39*m.x87 + 0.0001*m.x39*m.x88 + 0.0001*m.x39*m.x89 + 0.0001*m.x39*m.x90 + 0.0001*
m.x39*m.x91 + 0.0001*m.x39*m.x92 + 0.0001*m.x39*m.x93 + 0.0001*m.x39*m.x94 + 0.0001*m.x39*m.x95
+ 0.0001*m.x39*m.x96 + 0.0001*m.x39*m.x97 + 0.0001*m.x39*m.x98 + 0.0001*m.x39*m.x99 + 0.0001*
m.x39*m.x100 + 0.0001*m.x39*m.x101 + 0.0001*m.x39*m.x102 + 0.0001*m.x39*m.x103 + 0.0001*m.x39*
m.x104 + 0.0001*m.x39*m.x105 + 0.0001*m.x39*m.x106 + 0.0001*m.x39*m.x107 + 0.0001*m.x39*m.x108 +
0.0001*m.x39*m.x109 + 0.0001*m.x39*m.x110 + 0.0001*m.x39*m.x111 + 0.0001*m.x39*m.x112 + 0.0001*
m.x39*m.x113 + 0.0001*m.x39*m.x114 + 0.0001*m.x39*m.x115 + 0.0001*m.x39*m.x116 + 0.0001*m.x39*
m.x117 + 0.0001*m.x39*m.x118 + 0.0001*m.x39*m.x119 + 0.0001*m.x39*m.x120 + 0.0001*m.x39*m.x121 +
0.0001*m.x39*m.x122 + 0.0001*m.x39*m.x123 + 0.0001*m.x39*m.x124 + 0.0001*m.x39*m.x125 + 0.0001*
m.x39*m.x126 + 0.0001*m.x39*m.x127 + 0.0001*m.x39*m.x128 + 0.0001*m.x39*m.x129 + 0.0001*m.x39*
m.x130 + 0.0001*m.x39*m.x131 + 0.0001*m.x39*m.x132 + 3.00889518410223*m.x39*m.x133 + 0.0001*m.x39
*m.x134 + 0.0001*m.x39*m.x135 + 0.0001*m.x39*m.x136 + 0.0001*m.x39*m.x137 + 0.0001*m.x39*m.x138
+ 0.0001*m.x39*m.x139 + 0.0001*m.x39*m.x140 + 0.0001*m.x39*m.x141 + 0.0001*m.x39*m.x142 + 0.0001
*m.x39*m.x143 + 0.0001*m.x39*m.x144 + 0.0001*m.x39*m.x145 + 0.0001*m.x39*m.x146 + 0.0001*m.x39*
m.x147 + 0.0001*m.x39*m.x148 + 0.0001*m.x39*m.x149 + 0.0001*m.x39*m.x150 + 0.0001*m.x39*m.x151 +
0.0001*m.x39*m.x152 + 0.0001*m.x39*m.x153 + 0.0001*m.x39*m.x154 + 0.0001*m.x39*m.x155 + 0.0001*
m.x39*m.x156 + 0.0001*m.x39*m.x157 + 0.0001*m.x39*m.x158 + 0.0001*m.x39*m.x159 + 0.0001*m.x39*
m.x160 + 0.0001*m.x39*m.x161 + 0.0001*m.x39*m.x162 + 0.0001*m.x39*m.x163 + 0.0001*m.x39*m.x164 +
0.0001*m.x39*m.x165 + 0.0001*m.x39*m.x166 + 0.0001*m.x39*m.x167 + 0.0001*m.x39*m.x168 + 0.0001*
m.x39*m.x169 + 0.0001*m.x39*m.x170 + 0.0001*m.x39*m.x171 + 0.0001*m.x39*m.x172 + 0.0001*m.x39*
m.x173 + 0.0001*m.x39*m.x174 + 0.0001*m.x39*m.x175 + 0.0001*m.x39*m.x176 + 0.0001*m.x39*m.x177 +
0.0001*m.x39*m.x178 + 0.0001*m.x39*m.x179 + 0.0001*m.x39*m.x180 + 0.0001*m.x39*m.x181 + 0.0001*
m.x39*m.x182 + 0.0001*m.x39*m.x183 + 0.0001*m.x39*m.x184 + 0.0001*m.x39*m.x185 + 0.0001*m.x40*
m.x1 + 0.0001*m.x40*m.x2 + 0.0001*m.x40*m.x3 + 0.0001*m.x40*m.x4 + 7.17752787044043*m.x40*m.x5 +
0.0001*m.x40*m.x6 + 0.0001*m.x40*m.x7 + 0.0001*m.x40*m.x8 + 0.0001*m.x40*m.x9 + 0.0001*m.x40*
m.x10 + 0.0001*m.x40*m.x11 + 0.0001*m.x40*m.x12 + 0.0001*m.x40*m.x13 + 0.0001*m.x40*m.x14 +
0.0001*m.x40*m.x15 + 0.0001*m.x40*m.x16 + 5.72841015580757*m.x40*m.x17 + 0.0001*m.x40*m.x18 +
0.0001*m.x40*m.x19 + 0.0001*m.x40*m.x20 + 0.0001*m.x40*m.x21 + 0.0001*m.x40*m.x22 + 0.0001*m.x40*
m.x23 + 0.0001*m.x40*m.x24 + 0.0001*m.x40*m.x25 + 0.0001*m.x40*m.x26 + 0.0001*m.x40*m.x27 +
1.3877827117399*m.x40*m.x28 + 0.0001*m.x40*m.x29 + 0.0001*m.x40*m.x30 + 0.0001*m.x40*m.x31 +
0.0001*m.x40*m.x32 + 0.0001*m.x40*m.x33 + 0.0001*m.x40*m.x34 + 0.0001*m.x40*m.x35 + 0.0001*m.x40*
m.x36 + 0.0001*m.x40*m.x37 + 0.0001*m.x40*m.x38 + 0.0001*m.x40*m.x39 + 5.65822098870502*m.x40**2
+ 0.0001*m.x40*m.x41 + 0.0001*m.x40*m.x42 + 0.0001*m.x40*m.x43 + 0.0001*m.x40*m.x44 + 0.0001*
m.x40*m.x45 + 0.0001*m.x40*m.x46 + 0.0001*m.x40*m.x47 + 0.0001*m.x40*m.x48 + 0.0001*m.x40*m.x49
+ 0.0001*m.x40*m.x50 + 0.0001*m.x40*m.x51 + 0.0001*m.x40*m.x52 + 0.0001*m.x40*m.x53 + 0.0001*
m.x40*m.x54 + 0.0001*m.x40*m.x55 + 0.0001*m.x40*m.x56 + 0.0001*m.x40*m.x57 + 0.0001*m.x40*m.x58
+ 0.0001*m.x40*m.x59 + 0.0001*m.x40*m.x60 + 0.0001*m.x40*m.x61 + 0.0001*m.x40*m.x62 + 0.0001*
m.x40*m.x63 + 0.0001*m.x40*m.x64 + 0.0001*m.x40*m.x65 + 0.0001*m.x40*m.x66 + 0.0001*m.x40*m.x67
+ 0.0001*m.x40*m.x68 + 0.0001*m.x40*m.x69 + 0.0001*m.x40*m.x70 + 0.0001*m.x40*m.x71 + 0.0001*
m.x40*m.x72 + 0.0001*m.x40*m.x73 + 0.0001*m.x40*m.x74 + 0.0001*m.x40*m.x75 + 0.0001*m.x40*m.x76
+ 0.0001*m.x40*m.x77 + 0.0001*m.x40*m.x78 + 0.0001*m.x40*m.x79 + 0.0001*m.x40*m.x80 + 0.0001*
m.x40*m.x81 + 0.0001*m.x40*m.x82 + 0.0001*m.x40*m.x83 + 0.0001*m.x40*m.x84 + 0.0001*m.x40*m.x85
+ 0.0001*m.x40*m.x86 + 0.0001*m.x40*m.x87 + 0.0001*m.x40*m.x88 + 0.0001*m.x40*m.x89 + 0.0001*
m.x40*m.x90 + 0.0001*m.x40*m.x91 + 0.0001*m.x40*m.x92 + 0.0001*m.x40*m.x93 + 0.0001*m.x40*m.x94
+ 0.0001*m.x40*m.x95 + 0.0001*m.x40*m.x96 + 0.0001*m.x40*m.x97 + 0.0001*m.x40*m.x98 + 0.0001*
m.x40*m.x99 + 0.0001*m.x40*m.x100 + 0.0001*m.x40*m.x101 + 0.0001*m.x40*m.x102 + 0.0001*m.x40*
m.x103 + 0.0001*m.x40*m.x104 + 0.0001*m.x40*m.x105 + 0.0001*m.x40*m.x106 + 0.0001*m.x40*m.x107 +
0.0001*m.x40*m.x108 + 0.0001*m.x40*m.x109 + 0.0001*m.x40*m.x110 + 0.0001*m.x40*m.x111 + 0.0001*
m.x40*m.x112 + 0.0001*m.x40*m.x113 + 0.0001*m.x40*m.x114 + 0.0001*m.x40*m.x115 + 0.0001*m.x40*
m.x116 + 0.0001*m.x40*m.x117 + 0.0001*m.x40*m.x118 + 0.0001*m.x40*m.x119 + 0.0001*m.x40*m.x120 +
0.0001*m.x40*m.x121 + 0.0001*m.x40*m.x122 + 0.0001*m.x40*m.x123 + 0.0001*m.x40*m.x124 + 0.0001*
m.x40*m.x125 + 0.0001*m.x40*m.x126 + 0.0001*m.x40*m.x127 + 0.0001*m.x40*m.x128 + 0.0001*m.x40*
m.x129 + 0.0001*m.x40*m.x130 + 0.0001*m.x40*m.x131 + 0.0001*m.x40*m.x132 + 0.0001*m.x40*m.x133 +
2.94634320050838*m.x40*m.x134 + 0.0001*m.x40*m.x135 + 0.0001*m.x40*m.x136 + 0.0001*m.x40*m.x137
+ 0.0001*m.x40*m.x138 + 0.0001*m.x40*m.x139 + 0.0001*m.x40*m.x140 + 0.0001*m.x40*m.x141 + 0.0001
*m.x40*m.x142 + 0.0001*m.x40*m.x143 + 0.0001*m.x40*m.x144 + 0.0001*m.x40*m.x145 + 0.0001*m.x40*
m.x146 + 0.0001*m.x40*m.x147 + 0.0001*m.x40*m.x148 + 0.0001*m.x40*m.x149 + 0.0001*m.x40*m.x150 +
0.0001*m.x40*m.x151 + 0.0001*m.x40*m.x152 + 0.0001*m.x40*m.x153 + 0.0001*m.x40*m.x154 + 0.0001*
m.x40*m.x155 + 0.0001*m.x40*m.x156 + 0.0001*m.x40*m.x157 + 0.0001*m.x40*m.x158 + 0.0001*m.x40*
m.x159 + 0.0001*m.x40*m.x160 + 0.0001*m.x40*m.x161 + 0.0001*m.x40*m.x162 + 0.0001*m.x40*m.x163 +
0.0001*m.x40*m.x164 + 0.0001*m.x40*m.x165 + 0.0001*m.x40*m.x166 + 0.0001*m.x40*m.x167 + 0.0001*
m.x40*m.x168 + 0.0001*m.x40*m.x169 + 0.0001*m.x40*m.x170 + 0.0001*m.x40*m.x171 + 0.0001*m.x40*
m.x172 + 0.0001*m.x40*m.x173 + 0.0001*m.x40*m.x174 + 0.0001*m.x40*m.x175 + 0.0001*m.x40*m.x176 +
0.0001*m.x40*m.x177 + 0.0001*m.x40*m.x178 + 0.0001*m.x40*m.x179 + 0.0001*m.x40*m.x180 + 0.0001*
m.x40*m.x181 + 0.0001*m.x40*m.x182 + 0.0001*m.x40*m.x183 + 0.0001*m.x40*m.x184 + 0.0001*m.x40*
m.x185 + 0.0001*m.x41*m.x1 + 0.0001*m.x41*m.x2 + 0.0001*m.x41*m.x3 + 0.0001*m.x41*m.x4 + 0.0001*
m.x41*m.x5 + 7.17765398594047*m.x41*m.x6 + 0.0001*m.x41*m.x7 + 0.0001*m.x41*m.x8 + 0.0001*m.x41*
m.x9 + 0.0001*m.x41*m.x10 + 0.0001*m.x41*m.x11 + 0.0001*m.x41*m.x12 + 0.0001*m.x41*m.x13 + 0.0001
*m.x41*m.x14 + 0.0001*m.x41*m.x15 + 0.0001*m.x41*m.x16 + 0.0001*m.x41*m.x17 + 5.72772003780067*
m.x41*m.x18 + 0.0001*m.x41*m.x19 + 0.0001*m.x41*m.x20 + 0.0001*m.x41*m.x21 + 0.0001*m.x41*m.x22
+ 0.0001*m.x41*m.x23 + 0.0001*m.x41*m.x24 + 0.0001*m.x41*m.x25 + 0.0001*m.x41*m.x26 + 0.0001*
m.x41*m.x27 + 0.0001*m.x41*m.x28 + 1.39418925971928*m.x41*m.x29 + 0.0001*m.x41*m.x30 + 0.0001*
m.x41*m.x31 + 0.0001*m.x41*m.x32 + 0.0001*m.x41*m.x33 + 0.0001*m.x41*m.x34 + 0.0001*m.x41*m.x35
+ 0.0001*m.x41*m.x36 + 0.0001*m.x41*m.x37 + 0.0001*m.x41*m.x38 + 0.0001*m.x41*m.x39 + 0.0001*
m.x41*m.x40 + 5.65841982958224*m.x41**2 + 0.0001*m.x41*m.x42 + 0.0001*m.x41*m.x43 + 0.0001*m.x41*
m.x44 + 0.0001*m.x41*m.x45 + 0.0001*m.x41*m.x46 + 0.0001*m.x41*m.x47 + 0.0001*m.x41*m.x48 +
0.0001*m.x41*m.x49 + 0.0001*m.x41*m.x50 + 0.0001*m.x41*m.x51 + 0.0001*m.x41*m.x52 + 0.0001*m.x41*
m.x53 + 0.0001*m.x41*m.x54 + 0.0001*m.x41*m.x55 + 0.0001*m.x41*m.x56 + 0.0001*m.x41*m.x57 +
0.0001*m.x41*m.x58 + 0.0001*m.x41*m.x59 + 0.0001*m.x41*m.x60 + 0.0001*m.x41*m.x61 + 0.0001*m.x41*
m.x62 + 0.0001*m.x41*m.x63 + 0.0001*m.x41*m.x64 + 0.0001*m.x41*m.x65 + 0.0001*m.x41*m.x66 +
0.0001*m.x41*m.x67 + 0.0001*m.x41*m.x68 + 0.0001*m.x41*m.x69 + 0.0001*m.x41*m.x70 + 0.0001*m.x41*
m.x71 + 0.0001*m.x41*m.x72 + 0.0001*m.x41*m.x73 + 0.0001*m.x41*m.x74 + 0.0001*m.x41*m.x75 +
0.0001*m.x41*m.x76 + 0.0001*m.x41*m.x77 + 0.0001*m.x41*m.x78 + 0.0001*m.x41*m.x79 + 0.0001*m.x41*
m.x80 + 0.0001*m.x41*m.x81 + 0.0001*m.x41*m.x82 + 0.0001*m.x41*m.x83 + 0.0001*m.x41*m.x84 +
0.0001*m.x41*m.x85 + 0.0001*m.x41*m.x86 + 0.0001*m.x41*m.x87 + 0.0001*m.x41*m.x88 + 0.0001*m.x41*
m.x89 + 0.0001*m.x41*m.x90 + 0.0001*m.x41*m.x91 + 0.0001*m.x41*m.x92 + 0.0001*m.x41*m.x93 +
0.0001*m.x41*m.x94 + 0.0001*m.x41*m.x95 + 0.0001*m.x41*m.x96 + 0.0001*m.x41*m.x97 + 0.0001*m.x41*
m.x98 + 0.0001*m.x41*m.x99 + 0.0001*m.x41*m.x100 + 0.0001*m.x41*m.x101 + 0.0001*m.x41*m.x102 +
0.0001*m.x41*m.x103 + 0.0001*m.x41*m.x104 + 0.0001*m.x41*m.x105 + 0.0001*m.x41*m.x106 + 0.0001*
m.x41*m.x107 + 0.0001*m.x41*m.x108 + 0.0001*m.x41*m.x109 + 0.0001*m.x41*m.x110 + 0.0001*m.x41*
m.x111 + 0.0001*m.x41*m.x112 + 0.0001*m.x41*m.x113 + 0.0001*m.x41*m.x114 + 0.0001*m.x41*m.x115 +
0.0001*m.x41*m.x116 + 0.0001*m.x41*m.x117 + 0.0001*m.x41*m.x118 + 0.0001*m.x41*m.x119 + 0.0001*
m.x41*m.x120 + 0.0001*m.x41*m.x121 + 0.0001*m.x41*m.x122 + 0.0001*m.x41*m.x123 + 0.0001*m.x41*
m.x124 + 0.0001*m.x41*m.x125 + 0.0001*m.x41*m.x126 + 0.0001*m.x41*m.x127 + 0.0001*m.x41*m.x128 +
0.0001*m.x41*m.x129 + 0.0001*m.x41*m.x130 + 0.0001*m.x41*m.x131 + 0.0001*m.x41*m.x132 + 0.0001*
m.x41*m.x133 + 0.0001*m.x41*m.x134 + 2.99630448617448*m.x41*m.x135 + 0.0001*m.x41*m.x136 + 0.0001
*m.x41*m.x137 + 0.0001*m.x41*m.x138 + 0.0001*m.x41*m.x139 + 0.0001*m.x41*m.x140 + 0.0001*m.x41*
m.x141 + 0.0001*m.x41*m.x142 + 0.0001*m.x41*m.x143 + 0.0001*m.x41*m.x144 + 0.0001*m.x41*m.x145 +
0.0001*m.x41*m.x146 + 0.0001*m.x41*m.x147 + 0.0001*m.x41*m.x148 + 0.0001*m.x41*m.x149 + 0.0001*
m.x41*m.x150 + 0.0001*m.x41*m.x151 + 0.0001*m.x41*m.x152 + 0.0001*m.x41*m.x153 + 0.0001*m.x41*
m.x154 + 0.0001*m.x41*m.x155 + 0.0001*m.x41*m.x156 + 0.0001*m.x41*m.x157 + 0.0001*m.x41*m.x158 +
0.0001*m.x41*m.x159 + 0.0001*m.x41*m.x160 + 0.0001*m.x41*m.x161 + 0.0001*m.x41*m.x162 + 0.0001*
m.x41*m.x163 + 0.0001*m.x41*m.x164 + 0.0001*m.x41*m.x165 + 0.0001*m.x41*m.x166 + 0.0001*m.x41*
m.x167 + 0.0001*m.x41*m.x168 + 0.0001*m.x41*m.x169 + 0.0001*m.x41*m.x170 + 0.0001*m.x41*m.x171 +
0.0001*m.x41*m.x172 + 0.0001*m.x41*m.x173 + 0.0001*m.x41*m.x174 + 0.0001*m.x41*m.x175 + 0.0001*
m.x41*m.x176 + 0.0001*m.x41*m.x177 + 0.0001*m.x41*m.x178 + 0.0001*m.x41*m.x179 + 0.0001*m.x41*
m.x180 + 0.0001*m.x41*m.x181 + 0.0001*m.x41*m.x182 + 0.0001*m.x41*m.x183 + 0.0001*m.x41*m.x184 +
0.0001*m.x41*m.x185 + 0.0001*m.x42*m.x1 + 0.0001*m.x42*m.x2 + 0.0001*m.x42*m.x3 + 0.0001*m.x42*
m.x4 + 0.0001*m.x42*m.x5 + 0.0001*m.x42*m.x6 + 7.14703239270426*m.x42*m.x7 + 0.0001*m.x42*m.x8 +
0.0001*m.x42*m.x9 + 0.0001*m.x42*m.x10 + 0.0001*m.x42*m.x11 + 0.0001*m.x42*m.x12 + 0.0001*m.x42*
m.x13 + 0.0001*m.x42*m.x14 + 0.0001*m.x42*m.x15 + 0.0001*m.x42*m.x16 + 0.0001*m.x42*m.x17 +
0.0001*m.x42*m.x18 + 5.81931980408252*m.x42*m.x19 + 0.0001*m.x42*m.x20 + 0.0001*m.x42*m.x21 +
0.0001*m.x42*m.x22 + 0.0001*m.x42*m.x23 + 0.0001*m.x42*m.x24 + 0.0001*m.x42*m.x25 + 0.0001*m.x42*
m.x26 + 0.0001*m.x42*m.x27 + 0.0001*m.x42*m.x28 + 0.0001*m.x42*m.x29 + 1.35554864831098*m.x42*
m.x30 + 0.0001*m.x42*m.x31 + 0.0001*m.x42*m.x32 + 0.0001*m.x42*m.x33 + 0.0001*m.x42*m.x34 +
0.0001*m.x42*m.x35 + 0.0001*m.x42*m.x36 + 0.0001*m.x42*m.x37 + 0.0001*m.x42*m.x38 + 0.0001*m.x42*
m.x39 + 0.0001*m.x42*m.x40 + 0.0001*m.x42*m.x41 + 5.61024264704393*m.x42**2 + 0.0001*m.x42*m.x43
+ 0.0001*m.x42*m.x44 + 0.0001*m.x42*m.x45 + 0.0001*m.x42*m.x46 + 0.0001*m.x42*m.x47 + 0.0001*
m.x42*m.x48 + 0.0001*m.x42*m.x49 + 0.0001*m.x42*m.x50 + 0.0001*m.x42*m.x51 + 0.0001*m.x42*m.x52
+ 0.0001*m.x42*m.x53 + 0.0001*m.x42*m.x54 + 0.0001*m.x42*m.x55 + 0.0001*m.x42*m.x56 + 0.0001*
m.x42*m.x57 + 0.0001*m.x42*m.x58 + 0.0001*m.x42*m.x59 + 0.0001*m.x42*m.x60 + 0.0001*m.x42*m.x61
+ 0.0001*m.x42*m.x62 + 0.0001*m.x42*m.x63 + 0.0001*m.x42*m.x64 + 0.0001*m.x42*m.x65 + 0.0001*
m.x42*m.x66 + 0.0001*m.x42*m.x67 + 0.0001*m.x42*m.x68 + 0.0001*m.x42*m.x69 + 0.0001*m.x42*m.x70
+ 0.0001*m.x42*m.x71 + 0.0001*m.x42*m.x72 + 0.0001*m.x42*m.x73 + 0.0001*m.x42*m.x74 + 0.0001*
m.x42*m.x75 + 0.0001*m.x42*m.x76 + 0.0001*m.x42*m.x77 + 0.0001*m.x42*m.x78 + 0.0001*m.x42*m.x79
+ 0.0001*m.x42*m.x80 + 0.0001*m.x42*m.x81 + 0.0001*m.x42*m.x82 + 0.0001*m.x42*m.x83 + 0.0001*
m.x42*m.x84 + 0.0001*m.x42*m.x85 + 0.0001*m.x42*m.x86 + 0.0001*m.x42*m.x87 + 0.0001*m.x42*m.x88
+ 0.0001*m.x42*m.x89 + 0.0001*m.x42*m.x90 + 0.0001*m.x42*m.x91 + 0.0001*m.x42*m.x92 + 0.0001*
m.x42*m.x93 + 0.0001*m.x42*m.x94 + 0.0001*m.x42*m.x95 + 0.0001*m.x42*m.x96 + 0.0001*m.x42*m.x97
+ 0.0001*m.x42*m.x98 + 0.0001*m.x42*m.x99 + 0.0001*m.x42*m.x100 + 0.0001*m.x42*m.x101 + 0.0001*
m.x42*m.x102 + 0.0001*m.x42*m.x103 + 0.0001*m.x42*m.x104 + 0.0001*m.x42*m.x105 + 0.0001*m.x42*
m.x106 + 0.0001*m.x42*m.x107 + 0.0001*m.x42*m.x108 + 0.0001*m.x42*m.x109 + 0.0001*m.x42*m.x110 +
0.0001*m.x42*m.x111 + 0.0001*m.x42*m.x112 + 0.0001*m.x42*m.x113 + 0.0001*m.x42*m.x114 + 0.0001*
m.x42*m.x115 + 0.0001*m.x42*m.x116 + 0.0001*m.x42*m.x117 + 0.0001*m.x42*m.x118 + 0.0001*m.x42*
m.x119 + 0.0001*m.x42*m.x120 + 0.0001*m.x42*m.x121 + 0.0001*m.x42*m.x122 + 0.0001*m.x42*m.x123 +
0.0001*m.x42*m.x124 + 0.0001*m.x42*m.x125 + 0.0001*m.x42*m.x126 + 0.0001*m.x42*m.x127 + 0.0001*
m.x42*m.x128 + 0.0001*m.x42*m.x129 + 0.0001*m.x42*m.x130 + 0.0001*m.x42*m.x131 + 0.0001*m.x42*
m.x132 + 0.0001*m.x42*m.x133 + 0.0001*m.x42*m.x134 + 0.0001*m.x42*m.x135 + 3.0433224117282*m.x42*
m.x136 + 0.0001*m.x42*m.x137 + 0.0001*m.x42*m.x138 + 0.0001*m.x42*m.x139 + 0.0001*m.x42*m.x140 +
0.0001*m.x42*m.x141 + 0.0001*m.x42*m.x142 + 0.0001*m.x42*m.x143 + 0.0001*m.x42*m.x144 + 0.0001*
m.x42*m.x145 + 0.0001*m.x42*m.x146 + 0.0001*m.x42*m.x147 + 0.0001*m.x42*m.x148 + 0.0001*m.x42*
m.x149 + 0.0001*m.x42*m.x150 + 0.0001*m.x42*m.x151 + 0.0001*m.x42*m.x152 + 0.0001*m.x42*m.x153 +
0.0001*m.x42*m.x154 + 0.0001*m.x42*m.x155 + 0.0001*m.x42*m.x156 + 0.0001*m.x42*m.x157 + 0.0001*
m.x42*m.x158 + 0.0001*m.x42*m.x159 + 0.0001*m.x42*m.x160 + 0.0001*m.x42*m.x161 + 0.0001*m.x42*
m.x162 + 0.0001*m.x42*m.x163 + 0.0001*m.x42*m.x164 + 0.0001*m.x42*m.x165 + 0.0001*m.x42*m.x166 +
0.0001*m.x42*m.x167 + 0.0001*m.x42*m.x168 + 0.0001*m.x42*m.x169 + 0.0001*m.x42*m.x170 + 0.0001*
m.x42*m.x171 + 0.0001*m.x42*m.x172 + 0.0001*m.x42*m.x173 + 0.0001*m.x42*m.x174 + 0.0001*m.x42*
m.x175 + 0.0001*m.x42*m.x176 + 0.0001*m.x42*m.x177 + 0.0001*m.x42*m.x178 + 0.0001*m.x42*m.x179 +
0.0001*m.x42*m.x180 + 0.0001*m.x42*m.x181 + 0.0001*m.x42*m.x182 + 0.0001*m.x42*m.x183 + 0.0001*
m.x42*m.x184 + 0.0001*m.x42*m.x185 + 0.0001*m.x43*m.x1 + 0.0001*m.x43*m.x2 + 0.0001*m.x43*m.x3 +
0.0001*m.x43*m.x4 + 0.0001*m.x43*m.x5 + 0.0001*m.x43*m.x6 + 0.0001*m.x43*m.x7 + 7.18432027380264*
m.x43*m.x8 + 0.0001*m.x43*m.x9 + 0.0001*m.x43*m.x10 + 0.0001*m.x43*m.x11 + 0.0001*m.x43*m.x12 +
0.0001*m.x43*m.x13 + 0.0001*m.x43*m.x14 + 0.0001*m.x43*m.x15 + 0.0001*m.x43*m.x16 + 0.0001*m.x43*
m.x17 + 0.0001*m.x43*m.x18 + 0.0001*m.x43*m.x19 + 6.46083797120433*m.x43*m.x20 + 0.0001*m.x43*
m.x21 + 0.0001*m.x43*m.x22 + 0.0001*m.x43*m.x23 + 0.0001*m.x43*m.x24 + 0.0001*m.x43*m.x25 +
0.0001*m.x43*m.x26 + 0.0001*m.x43*m.x27 + 0.0001*m.x43*m.x28 + 0.0001*m.x43*m.x29 + 0.0001*m.x43*
m.x30 + 1.50497502534561*m.x43*m.x31 + 0.0001*m.x43*m.x32 + 0.0001*m.x43*m.x33 + 0.0001*m.x43*
m.x34 + 0.0001*m.x43*m.x35 + 0.0001*m.x43*m.x36 + 0.0001*m.x43*m.x37 + 0.0001*m.x43*m.x38 +
0.0001*m.x43*m.x39 + 0.0001*m.x43*m.x40 + 0.0001*m.x43*m.x41 + 0.0001*m.x43*m.x42 +
6.2287118833664*m.x43**2 + 0.0001*m.x43*m.x44 + 0.0001*m.x43*m.x45 + 0.0001*m.x43*m.x46 + 0.0001*
m.x43*m.x47 + 0.0001*m.x43*m.x48 + 0.0001*m.x43*m.x49 + 0.0001*m.x43*m.x50 + 0.0001*m.x43*m.x51
+ 0.0001*m.x43*m.x52 + 0.0001*m.x43*m.x53 + 0.0001*m.x43*m.x54 + 0.0001*m.x43*m.x55 + 0.0001*
m.x43*m.x56 + 0.0001*m.x43*m.x57 + 0.0001*m.x43*m.x58 + 0.0001*m.x43*m.x59 + 0.0001*m.x43*m.x60
+ 0.0001*m.x43*m.x61 + 0.0001*m.x43*m.x62 + 0.0001*m.x43*m.x63 + 0.0001*m.x43*m.x64 + 0.0001*
m.x43*m.x65 + 0.0001*m.x43*m.x66 + 0.0001*m.x43*m.x67 + 0.0001*m.x43*m.x68 + 0.0001*m.x43*m.x69
+ 0.0001*m.x43*m.x70 + 0.0001*m.x43*m.x71 + 0.0001*m.x43*m.x72 + 0.0001*m.x43*m.x73 + 0.0001*
m.x43*m.x74 + 0.0001*m.x43*m.x75 + 0.0001*m.x43*m.x76 + 0.0001*m.x43*m.x77 + 0.0001*m.x43*m.x78
+ 0.0001*m.x43*m.x79 + 0.0001*m.x43*m.x80 + 0.0001*m.x43*m.x81 + 0.0001*m.x43*m.x82 + 0.0001*
m.x43*m.x83 + 0.0001*m.x43*m.x84 + 0.0001*m.x43*m.x85 + 0.0001*m.x43*m.x86 + 0.0001*m.x43*m.x87
+ 0.0001*m.x43*m.x88 + 0.0001*m.x43*m.x89 + 0.0001*m.x43*m.x90 + 0.0001*m.x43*m.x91 + 0.0001*
m.x43*m.x92 + 0.0001*m.x43*m.x93 + 0.0001*m.x43*m.x94 + 0.0001*m.x43*m.x95 + 0.0001*m.x43*m.x96
+ 0.0001*m.x43*m.x97 + 0.0001*m.x43*m.x98 + 0.0001*m.x43*m.x99 + 0.0001*m.x43*m.x100 + 0.0001*
m.x43*m.x101 + 0.0001*m.x43*m.x102 + 0.0001*m.x43*m.x103 + 0.0001*m.x43*m.x104 + 0.0001*m.x43*
m.x105 + 0.0001*m.x43*m.x106 + 0.0001*m.x43*m.x107 + 0.0001*m.x43*m.x108 + 0.0001*m.x43*m.x109 +
0.0001*m.x43*m.x110 + 0.0001*m.x43*m.x111 + 0.0001*m.x43*m.x112 + 0.0001*m.x43*m.x113 + 0.0001*
m.x43*m.x114 + 0.0001*m.x43*m.x115 + 0.0001*m.x43*m.x116 + 0.0001*m.x43*m.x117 + 0.0001*m.x43*
m.x118 + 0.0001*m.x43*m.x119 + 0.0001*m.x43*m.x120 + 0.0001*m.x43*m.x121 + 0.0001*m.x43*m.x122 +
0.0001*m.x43*m.x123 + 0.0001*m.x43*m.x124 + 0.0001*m.x43*m.x125 + 0.0001*m.x43*m.x126 + 0.0001*
m.x43*m.x127 + 0.0001*m.x43*m.x128 + 0.0001*m.x43*m.x129 + 0.0001*m.x43*m.x130 + 0.0001*m.x43*
m.x131 + 0.0001*m.x43*m.x132 + 0.0001*m.x43*m.x133 + 0.0001*m.x43*m.x134 + 0.0001*m.x43*m.x135 +
0.0001*m.x43*m.x136 + 3.3788111077122*m.x43*m.x137 + 0.0001*m.x43*m.x138 + 0.0001*m.x43*m.x139 +
0.0001*m.x43*m.x140 + 0.0001*m.x43*m.x141 + 0.0001*m.x43*m.x142 + 0.0001*m.x43*m.x143 + 0.0001*
m.x43*m.x144 + 0.0001*m.x43*m.x145 + 0.0001*m.x43*m.x146 + 0.0001*m.x43*m.x147 + 0.0001*m.x43*
m.x148 + 0.0001*m.x43*m.x149 + 0.0001*m.x43*m.x150 + 0.0001*m.x43*m.x151 + 0.0001*m.x43*m.x152 +
0.0001*m.x43*m.x153 + 0.0001*m.x43*m.x154 + 0.0001*m.x43*m.x155 + 0.0001*m.x43*m.x156 + 0.0001*
m.x43*m.x157 + 0.0001*m.x43*m.x158 + 0.0001*m.x43*m.x159 + 0.0001*m.x43*m.x160 + 0.0001*m.x43*
m.x161 + 0.0001*m.x43*m.x162 + 0.0001*m.x43*m.x163 + 0.0001*m.x43*m.x164 + 0.0001*m.x43*m.x165 +
0.0001*m.x43*m.x166 + 0.0001*m.x43*m.x167 + 0.0001*m.x43*m.x168 + 0.0001*m.x43*m.x169 + 0.0001*
m.x43*m.x170 + 0.0001*m.x43*m.x171 + 0.0001*m.x43*m.x172 + 0.0001*m.x43*m.x173 + 0.0001*m.x43*
m.x174 + 0.0001*m.x43*m.x175 + 0.0001*m.x43*m.x176 + 0.0001*m.x43*m.x177 + 0.0001*m.x43*m.x178 +
0.0001*m.x43*m.x179 + 0.0001*m.x43*m.x180 + 0.0001*m.x43*m.x181 + 0.0001*m.x43*m.x182 + 0.0001*
m.x43*m.x183 + 0.0001*m.x43*m.x184 + 0.0001*m.x43*m.x185 + 0.0001*m.x44*m.x1 + 0.0001*m.x44*m.x2
+ 0.0001*m.x44*m.x3 + 0.0001*m.x44*m.x4 + 0.0001*m.x44*m.x5 + 0.0001*m.x44*m.x6 + 0.0001*m.x44*
m.x7 + 0.0001*m.x44*m.x8 + 7.18432027380264*m.x44*m.x9 + 0.0001*m.x44*m.x10 + 0.0001*m.x44*m.x11
+ 0.0001*m.x44*m.x12 + 0.0001*m.x44*m.x13 + 0.0001*m.x44*m.x14 + 0.0001*m.x44*m.x15 + 0.0001*
m.x44*m.x16 + 0.0001*m.x44*m.x17 + 0.0001*m.x44*m.x18 + 0.0001*m.x44*m.x19 + 0.0001*m.x44*m.x20
+ 6.46083797120433*m.x44*m.x21 + 0.0001*m.x44*m.x22 + 0.0001*m.x44*m.x23 + 0.0001*m.x44*m.x24 +
0.0001*m.x44*m.x25 + 0.0001*m.x44*m.x26 + 0.0001*m.x44*m.x27 + 0.0001*m.x44*m.x28 + 0.0001*m.x44*
m.x29 + 0.0001*m.x44*m.x30 + 0.0001*m.x44*m.x31 + 1.57033161734872*m.x44*m.x32 + 0.0001*m.x44*
m.x33 + 0.0001*m.x44*m.x34 + 0.0001*m.x44*m.x35 + 0.0001*m.x44*m.x36 + 0.0001*m.x44*m.x37 +
0.0001*m.x44*m.x38 + 0.0001*m.x44*m.x39 + 0.0001*m.x44*m.x40 + 0.0001*m.x44*m.x41 + 0.0001*m.x44*
m.x42 + 0.0001*m.x44*m.x43 + 6.2287118833664*m.x44**2 + 0.0001*m.x44*m.x45 + 0.0001*m.x44*m.x46
+ 0.0001*m.x44*m.x47 + 0.0001*m.x44*m.x48 + 0.0001*m.x44*m.x49 + 0.0001*m.x44*m.x50 + 0.0001*
m.x44*m.x51 + 0.0001*m.x44*m.x52 + 0.0001*m.x44*m.x53 + 0.0001*m.x44*m.x54 + 0.0001*m.x44*m.x55
+ 0.0001*m.x44*m.x56 + 0.0001*m.x44*m.x57 + 0.0001*m.x44*m.x58 + 0.0001*m.x44*m.x59 + 0.0001*
m.x44*m.x60 + 0.0001*m.x44*m.x61 + 0.0001*m.x44*m.x62 + 0.0001*m.x44*m.x63 + 0.0001*m.x44*m.x64
+ 0.0001*m.x44*m.x65 + 0.0001*m.x44*m.x66 + 0.0001*m.x44*m.x67 + 0.0001*m.x44*m.x68 + 0.0001*
m.x44*m.x69 + 0.0001*m.x44*m.x70 + 0.0001*m.x44*m.x71 + 0.0001*m.x44*m.x72 + 0.0001*m.x44*m.x73
+ 0.0001*m.x44*m.x74 + 0.0001*m.x44*m.x75 + 0.0001*m.x44*m.x76 + 0.0001*m.x44*m.x77 + 0.0001*
m.x44*m.x78 + 0.0001*m.x44*m.x79 + 0.0001*m.x44*m.x80 + 0.0001*m.x44*m.x81 + 0.0001*m.x44*m.x82
+ 0.0001*m.x44*m.x83 + 0.0001*m.x44*m.x84 + 0.0001*m.x44*m.x85 + 0.0001*m.x44*m.x86 + 0.0001*
m.x44*m.x87 + 0.0001*m.x44*m.x88 + 0.0001*m.x44*m.x89 + 0.0001*m.x44*m.x90 + 0.0001*m.x44*m.x91
+ 0.0001*m.x44*m.x92 + 0.0001*m.x44*m.x93 + 0.0001*m.x44*m.x94 + 0.0001*m.x44*m.x95 + 0.0001*
m.x44*m.x96 + 0.0001*m.x44*m.x97 + 0.0001*m.x44*m.x98 + 0.0001*m.x44*m.x99 + 0.0001*m.x44*m.x100
+ 0.0001*m.x44*m.x101 + 0.0001*m.x44*m.x102 + 0.0001*m.x44*m.x103 + 0.0001*m.x44*m.x104 + 0.0001
*m.x44*m.x105 + 0.0001*m.x44*m.x106 + 0.0001*m.x44*m.x107 + 0.0001*m.x44*m.x108 + 0.0001*m.x44*
m.x109 + 0.0001*m.x44*m.x110 + 0.0001*m.x44*m.x111 + 0.0001*m.x44*m.x112 + 0.0001*m.x44*m.x113 +
0.0001*m.x44*m.x114 + 0.0001*m.x44*m.x115 + 0.0001*m.x44*m.x116 + 0.0001*m.x44*m.x117 + 0.0001*
m.x44*m.x118 + 0.0001*m.x44*m.x119 + 0.0001*m.x44*m.x120 + 0.0001*m.x44*m.x121 + 0.0001*m.x44*
m.x122 + 0.0001*m.x44*m.x123 + 0.0001*m.x44*m.x124 + 0.0001*m.x44*m.x125 + 0.0001*m.x44*m.x126 +
0.0001*m.x44*m.x127 + 0.0001*m.x44*m.x128 + 0.0001*m.x44*m.x129 + 0.0001*m.x44*m.x130 + 0.0001*
m.x44*m.x131 + 0.0001*m.x44*m.x132 + 0.0001*m.x44*m.x133 + 0.0001*m.x44*m.x134 + 0.0001*m.x44*
m.x135 + 0.0001*m.x44*m.x136 + 0.0001*m.x44*m.x137 + 3.40026111937272*m.x44*m.x138 + 0.0001*m.x44
*m.x139 + 0.0001*m.x44*m.x140 + 0.0001*m.x44*m.x141 + 0.0001*m.x44*m.x142 + 0.0001*m.x44*m.x143
+ 0.0001*m.x44*m.x144 + 0.0001*m.x44*m.x145 + 0.0001*m.x44*m.x146 + 0.0001*m.x44*m.x147 + 0.0001
*m.x44*m.x148 + 0.0001*m.x44*m.x149 + 0.0001*m.x44*m.x150 + 0.0001*m.x44*m.x151 + 0.0001*m.x44*
m.x152 + 0.0001*m.x44*m.x153 + 0.0001*m.x44*m.x154 + 0.0001*m.x44*m.x155 + 0.0001*m.x44*m.x156 +
0.0001*m.x44*m.x157 + 0.0001*m.x44*m.x158 + 0.0001*m.x44*m.x159 + 0.0001*m.x44*m.x160 + 0.0001*
m.x44*m.x161 + 0.0001*m.x44*m.x162 + 0.0001*m.x44*m.x163 + 0.0001*m.x44*m.x164 + 0.0001*m.x44*
m.x165 + 0.0001*m.x44*m.x166 + 0.0001*m.x44*m.x167 + 0.0001*m.x44*m.x168 + 0.0001*m.x44*m.x169 +
0.0001*m.x44*m.x170 + 0.0001*m.x44*m.x171 + 0.0001*m.x44*m.x172 + 0.0001*m.x44*m.x173 + 0.0001*
m.x44*m.x174 + 0.0001*m.x44*m.x175 + 0.0001*m.x44*m.x176 + 0.0001*m.x44*m.x177 + 0.0001*m.x44*
m.x178 + 0.0001*m.x44*m.x179 + 0.0001*m.x44*m.x180 + 0.0001*m.x44*m.x181 + 0.0001*m.x44*m.x182 +
0.0001*m.x44*m.x183 + 0.0001*m.x44*m.x184 + 0.0001*m.x44*m.x185 + 0.0001*m.x45*m.x1 + 0.0001*
m.x45*m.x2 + 0.0001*m.x45*m.x3 + 0.0001*m.x45*m.x4 + 0.0001*m.x45*m.x5 + 0.0001*m.x45*m.x6 +
0.0001*m.x45*m.x7 + 0.0001*m.x45*m.x8 + 0.0001*m.x45*m.x9 + 7.27171135638595*m.x45*m.x10 + 0.0001
*m.x45*m.x11 + 0.0001*m.x45*m.x12 + 0.0001*m.x45*m.x13 + 0.0001*m.x45*m.x14 + 0.0001*m.x45*m.x15
+ 0.0001*m.x45*m.x16 + 0.0001*m.x45*m.x17 + 0.0001*m.x45*m.x18 + 0.0001*m.x45*m.x19 + 0.0001*
m.x45*m.x20 + 0.0001*m.x45*m.x21 + 5.99722275920364*m.x45*m.x22 + 0.0001*m.x45*m.x23 + 0.0001*
m.x45*m.x24 + 0.0001*m.x45*m.x25 + 0.0001*m.x45*m.x26 + 0.0001*m.x45*m.x27 + 0.0001*m.x45*m.x28
+ 0.0001*m.x45*m.x29 + 0.0001*m.x45*m.x30 + 0.0001*m.x45*m.x31 + 0.0001*m.x45*m.x32 +
1.63440412456913*m.x45*m.x33 + 0.0001*m.x45*m.x34 + 0.0001*m.x45*m.x35 + 0.0001*m.x45*m.x36 +
0.0001*m.x45*m.x37 + 0.0001*m.x45*m.x38 + 0.0001*m.x45*m.x39 + 0.0001*m.x45*m.x40 + 0.0001*m.x45*
m.x41 + 0.0001*m.x45*m.x42 + 0.0001*m.x45*m.x43 + 0.0001*m.x45*m.x44 + 6.38116706554462*m.x45**2
+ 0.0001*m.x45*m.x46 + 0.0001*m.x45*m.x47 + 0.0001*m.x45*m.x48 + 0.0001*m.x45*m.x49 + 0.0001*
m.x45*m.x50 + 0.0001*m.x45*m.x51 + 0.0001*m.x45*m.x52 + 0.0001*m.x45*m.x53 + 0.0001*m.x45*m.x54
+ 0.0001*m.x45*m.x55 + 0.0001*m.x45*m.x56 + 0.0001*m.x45*m.x57 + 0.0001*m.x45*m.x58 + 0.0001*
m.x45*m.x59 + 0.0001*m.x45*m.x60 + 0.0001*m.x45*m.x61 + 0.0001*m.x45*m.x62 + 0.0001*m.x45*m.x63
+ 0.0001*m.x45*m.x64 + 0.0001*m.x45*m.x65 + 0.0001*m.x45*m.x66 + 0.0001*m.x45*m.x67 + 0.0001*
m.x45*m.x68 + 0.0001*m.x45*m.x69 + 0.0001*m.x45*m.x70 + 0.0001*m.x45*m.x71 + 0.0001*m.x45*m.x72
+ 0.0001*m.x45*m.x73 + 0.0001*m.x45*m.x74 + 0.0001*m.x45*m.x75 + 0.0001*m.x45*m.x76 + 0.0001*
m.x45*m.x77 + 0.0001*m.x45*m.x78 + 0.0001*m.x45*m.x79 + 0.0001*m.x45*m.x80 + 0.0001*m.x45*m.x81
+ 0.0001*m.x45*m.x82 + 0.0001*m.x45*m.x83 + 0.0001*m.x45*m.x84 + 0.0001*m.x45*m.x85 + 0.0001*
m.x45*m.x86 + 0.0001*m.x45*m.x87 + 0.0001*m.x45*m.x88 + 0.0001*m.x45*m.x89 + 0.0001*m.x45*m.x90
+ 0.0001*m.x45*m.x91 + 0.0001*m.x45*m.x92 + 0.0001*m.x45*m.x93 + 0.0001*m.x45*m.x94 + 0.0001*
m.x45*m.x95 + 0.0001*m.x45*m.x96 + 0.0001*m.x45*m.x97 + 0.0001*m.x45*m.x98 + 0.0001*m.x45*m.x99
+ 0.0001*m.x45*m.x100 + 0.0001*m.x45*m.x101 + 0.0001*m.x45*m.x102 + 0.0001*m.x45*m.x103 + 0.0001
*m.x45*m.x104 + 0.0001*m.x45*m.x105 + 0.0001*m.x45*m.x106 + 0.0001*m.x45*m.x107 + 0.0001*m.x45*
m.x108 + 0.0001*m.x45*m.x109 + 0.0001*m.x45*m.x110 + 0.0001*m.x45*m.x111 + 0.0001*m.x45*m.x112 +
0.0001*m.x45*m.x113 + 0.0001*m.x45*m.x114 + 0.0001*m.x45*m.x115 + 0.0001*m.x45*m.x116 + 0.0001*
m.x45*m.x117 + 0.0001*m.x45*m.x118 + 0.0001*m.x45*m.x119 + 0.0001*m.x45*m.x120 + 0.0001*m.x45*
m.x121 + 0.0001*m.x45*m.x122 + 0.0001*m.x45*m.x123 + 0.0001*m.x45*m.x124 + 0.0001*m.x45*m.x125 +
0.0001*m.x45*m.x126 + 0.0001*m.x45*m.x127 + 0.0001*m.x45*m.x128 + 0.0001*m.x45*m.x129 + 0.0001*
m.x45*m.x130 + 0.0001*m.x45*m.x131 + 0.0001*m.x45*m.x132 + 0.0001*m.x45*m.x133 + 0.0001*m.x45*
m.x134 + 0.0001*m.x45*m.x135 + 0.0001*m.x45*m.x136 + 0.0001*m.x45*m.x137 + 0.0001*m.x45*m.x138 +
3.55308816066067*m.x45*m.x139 + 0.0001*m.x45*m.x140 + 0.0001*m.x45*m.x141 + 0.0001*m.x45*m.x142
+ 0.0001*m.x45*m.x143 + 0.0001*m.x45*m.x144 + 0.0001*m.x45*m.x145 + 0.0001*m.x45*m.x146 + 0.0001
*m.x45*m.x147 + 0.0001*m.x45*m.x148 + 0.0001*m.x45*m.x149 + 0.0001*m.x45*m.x150 + 0.0001*m.x45*
m.x151 + 0.0001*m.x45*m.x152 + 0.0001*m.x45*m.x153 + 0.0001*m.x45*m.x154 + 0.0001*m.x45*m.x155 +
0.0001*m.x45*m.x156 + 0.0001*m.x45*m.x157 + 0.0001*m.x45*m.x158 + 0.0001*m.x45*m.x159 + 0.0001*
m.x45*m.x160 + 0.0001*m.x45*m.x161 + 0.0001*m.x45*m.x162 + 0.0001*m.x45*m.x163 + 0.0001*m.x45*
m.x164 + 0.0001*m.x45*m.x165 + 0.0001*m.x45*m.x166 + 0.0001*m.x45*m.x167 + 0.0001*m.x45*m.x168 +
0.0001*m.x45*m.x169 + 0.0001*m.x45*m.x170 + 0.0001*m.x45*m.x171 + 0.0001*m.x45*m.x172 + 0.0001*
m.x45*m.x173 + 0.0001*m.x45*m.x174 + 0.0001*m.x45*m.x175 + 0.0001*m.x45*m.x176 + 0.0001*m.x45*
m.x177 + 0.0001*m.x45*m.x178 + 0.0001*m.x45*m.x179 + 0.0001*m.x45*m.x180 + 0.0001*m.x45*m.x181 +
0.0001*m.x45*m.x182 + 0.0001*m.x45*m.x183 + 0.0001*m.x45*m.x184 + 0.0001*m.x45*m.x185 + 0.0001*
m.x46*m.x1 + 0.0001*m.x46*m.x2 + 0.0001*m.x46*m.x3 + 0.0001*m.x46*m.x4 + 0.0001*m.x46*m.x5 +
0.0001*m.x46*m.x6 + 0.0001*m.x46*m.x7 + 0.0001*m.x46*m.x8 + 0.0001*m.x46*m.x9 + 0.0001*m.x46*
m.x10 + 7.19114258438939*m.x46*m.x11 + 0.0001*m.x46*m.x12 + 0.0001*m.x46*m.x13 + 0.0001*m.x46*
m.x14 + 0.0001*m.x46*m.x15 + 0.0001*m.x46*m.x16 + 0.0001*m.x46*m.x17 + 0.0001*m.x46*m.x18 +
0.0001*m.x46*m.x19 + 0.0001*m.x46*m.x20 + 0.0001*m.x46*m.x21 + 0.0001*m.x46*m.x22 +
5.80112739765899*m.x46*m.x23 + 0.0001*m.x46*m.x24 + 0.0001*m.x46*m.x25 + 0.0001*m.x46*m.x26 +
0.0001*m.x46*m.x27 + 0.0001*m.x46*m.x28 + 0.0001*m.x46*m.x29 + 0.0001*m.x46*m.x30 + 0.0001*m.x46*
m.x31 + 0.0001*m.x46*m.x32 + 0.0001*m.x46*m.x33 + 1.5807634037662*m.x46*m.x34 + 0.0001*m.x46*
m.x35 + 0.0001*m.x46*m.x36 + 0.0001*m.x46*m.x37 + 0.0001*m.x46*m.x38 + 0.0001*m.x46*m.x39 +
0.0001*m.x46*m.x40 + 0.0001*m.x46*m.x41 + 0.0001*m.x46*m.x42 + 0.0001*m.x46*m.x43 + 0.0001*m.x46*
m.x44 + 0.0001*m.x46*m.x45 + 6.17251740078025*m.x46**2 + 0.0001*m.x46*m.x47 + 0.0001*m.x46*m.x48
+ 0.0001*m.x46*m.x49 + 0.0001*m.x46*m.x50 + 0.0001*m.x46*m.x51 + 0.0001*m.x46*m.x52 + 0.0001*
m.x46*m.x53 + 0.0001*m.x46*m.x54 + 0.0001*m.x46*m.x55 + 0.0001*m.x46*m.x56 + 0.0001*m.x46*m.x57
+ 0.0001*m.x46*m.x58 + 0.0001*m.x46*m.x59 + 0.0001*m.x46*m.x60 + 0.0001*m.x46*m.x61 + 0.0001*
m.x46*m.x62 + 0.0001*m.x46*m.x63 + 0.0001*m.x46*m.x64 + 0.0001*m.x46*m.x65 + 0.0001*m.x46*m.x66
+ 0.0001*m.x46*m.x67 + 0.0001*m.x46*m.x68 + 0.0001*m.x46*m.x69 + 0.0001*m.x46*m.x70 + 0.0001*
m.x46*m.x71 + 0.0001*m.x46*m.x72 + 0.0001*m.x46*m.x73 + 0.0001*m.x46*m.x74 + 0.0001*m.x46*m.x75
+ 0.0001*m.x46*m.x76 + 0.0001*m.x46*m.x77 + 0.0001*m.x46*m.x78 + 0.0001*m.x46*m.x79 + 0.0001*
m.x46*m.x80 + 0.0001*m.x46*m.x81 + 0.0001*m.x46*m.x82 + 0.0001*m.x46*m.x83 + 0.0001*m.x46*m.x84
+ 0.0001*m.x46*m.x85 + 0.0001*m.x46*m.x86 + 0.0001*m.x46*m.x87 + 0.0001*m.x46*m.x88 + 0.0001*
m.x46*m.x89 + 0.0001*m.x46*m.x90 + 0.0001*m.x46*m.x91 + 0.0001*m.x46*m.x92 + 0.0001*m.x46*m.x93
+ 0.0001*m.x46*m.x94 + 0.0001*m.x46*m.x95 + 0.0001*m.x46*m.x96 + 0.0001*m.x46*m.x97 + 0.0001*
m.x46*m.x98 + 0.0001*m.x46*m.x99 + 0.0001*m.x46*m.x100 + 0.0001*m.x46*m.x101 + 0.0001*m.x46*
m.x102 + 0.0001*m.x46*m.x103 + 0.0001*m.x46*m.x104 + 0.0001*m.x46*m.x105 + 0.0001*m.x46*m.x106 +
0.0001*m.x46*m.x107 + 0.0001*m.x46*m.x108 + 0.0001*m.x46*m.x109 + 0.0001*m.x46*m.x110 + 0.0001*
m.x46*m.x111 + 0.0001*m.x46*m.x112 + 0.0001*m.x46*m.x113 + 0.0001*m.x46*m.x114 + 0.0001*m.x46*
m.x115 + 0.0001*m.x46*m.x116 + 0.0001*m.x46*m.x117 + 0.0001*m.x46*m.x118 + 0.0001*m.x46*m.x119 +
0.0001*m.x46*m.x120 + 0.0001*m.x46*m.x121 + 0.0001*m.x46*m.x122 + 0.0001*m.x46*m.x123 + 0.0001*
m.x46*m.x124 + 0.0001*m.x46*m.x125 + 0.0001*m.x46*m.x126 + 0.0001*m.x46*m.x127 + 0.0001*m.x46*
m.x128 + 0.0001*m.x46*m.x129 + 0.0001*m.x46*m.x130 + 0.0001*m.x46*m.x131 + 0.0001*m.x46*m.x132 +
0.0001*m.x46*m.x133 + 0.0001*m.x46*m.x134 + 0.0001*m.x46*m.x135 + 0.0001*m.x46*m.x136 + 0.0001*
m.x46*m.x137 + 0.0001*m.x46*m.x138 + 0.0001*m.x46*m.x139 + 3.43647287279779*m.x46*m.x140 + 0.0001
*m.x46*m.x141 + 0.0001*m.x46*m.x142 + 0.0001*m.x46*m.x143 + 0.0001*m.x46*m.x144 + 0.0001*m.x46*
m.x145 + 0.0001*m.x46*m.x146 + 0.0001*m.x46*m.x147 + 0.0001*m.x46*m.x148 + 0.0001*m.x46*m.x149 +
0.0001*m.x46*m.x150 + 0.0001*m.x46*m.x151 + 0.0001*m.x46*m.x152 + 0.0001*m.x46*m.x153 + 0.0001*
m.x46*m.x154 + 0.0001*m.x46*m.x155 + 0.0001*m.x46*m.x156 + 0.0001*m.x46*m.x157 + 0.0001*m.x46*
m.x158 + 0.0001*m.x46*m.x159 + 0.0001*m.x46*m.x160 + 0.0001*m.x46*m.x161 + 0.0001*m.x46*m.x162 +
0.0001*m.x46*m.x163 + 0.0001*m.x46*m.x164 + 0.0001*m.x46*m.x165 + 0.0001*m.x46*m.x166 + 0.0001*
m.x46*m.x167 + 0.0001*m.x46*m.x168 + 0.0001*m.x46*m.x169 + 0.0001*m.x46*m.x170 + 0.0001*m.x46*
m.x171 + 0.0001*m.x46*m.x172 + 0.0001*m.x46*m.x173 + 0.0001*m.x46*m.x174 + 0.0001*m.x46*m.x175 +
0.0001*m.x46*m.x176 + 0.0001*m.x46*m.x177 + 0.0001*m.x46*m.x178 + 0.0001*m.x46*m.x179 + 0.0001*
m.x46*m.x180 + 0.0001*m.x46*m.x181 + 0.0001*m.x46*m.x182 + 0.0001*m.x46*m.x183 + 0.0001*m.x46*
m.x184 + 0.0001*m.x46*m.x185 + 0.0001*m.x47*m.x1 + 0.0001*m.x47*m.x2 + 0.0001*m.x47*m.x3 + 0.0001
*m.x47*m.x4 + 0.0001*m.x47*m.x5 + 0.0001*m.x47*m.x6 + 0.0001*m.x47*m.x7 + 0.0001*m.x47*m.x8 +
0.0001*m.x47*m.x9 + 0.0001*m.x47*m.x10 + 0.0001*m.x47*m.x11 + 7.19114258438938*m.x47*m.x12 +
0.0001*m.x47*m.x13 + 0.0001*m.x47*m.x14 + 0.0001*m.x47*m.x15 + 0.0001*m.x47*m.x16 + 0.0001*m.x47*
m.x17 + 0.0001*m.x47*m.x18 + 0.0001*m.x47*m.x19 + 0.0001*m.x47*m.x20 + 0.0001*m.x47*m.x21 +
0.0001*m.x47*m.x22 + 0.0001*m.x47*m.x23 + 5.80112739765899*m.x47*m.x24 + 0.0001*m.x47*m.x25 +
0.0001*m.x47*m.x26 + 0.0001*m.x47*m.x27 + 0.0001*m.x47*m.x28 + 0.0001*m.x47*m.x29 + 0.0001*m.x47*
m.x30 + 0.0001*m.x47*m.x31 + 0.0001*m.x47*m.x32 + 0.0001*m.x47*m.x33 + 0.0001*m.x47*m.x34 +
1.59130176828702*m.x47*m.x35 + 0.0001*m.x47*m.x36 + 0.0001*m.x47*m.x37 + 0.0001*m.x47*m.x38 +
0.0001*m.x47*m.x39 + 0.0001*m.x47*m.x40 + 0.0001*m.x47*m.x41 + 0.0001*m.x47*m.x42 + 0.0001*m.x47*
m.x43 + 0.0001*m.x47*m.x44 + 0.0001*m.x47*m.x45 + 0.0001*m.x47*m.x46 + 6.17251740078025*m.x47**2
+ 0.0001*m.x47*m.x48 + 0.0001*m.x47*m.x49 + 0.0001*m.x47*m.x50 + 0.0001*m.x47*m.x51 + 0.0001*
m.x47*m.x52 + 0.0001*m.x47*m.x53 + 0.0001*m.x47*m.x54 + 0.0001*m.x47*m.x55 + 0.0001*m.x47*m.x56
+ 0.0001*m.x47*m.x57 + 0.0001*m.x47*m.x58 + 0.0001*m.x47*m.x59 + 0.0001*m.x47*m.x60 + 0.0001*
m.x47*m.x61 + 0.0001*m.x47*m.x62 + 0.0001*m.x47*m.x63 + 0.0001*m.x47*m.x64 + 0.0001*m.x47*m.x65
+ 0.0001*m.x47*m.x66 + 0.0001*m.x47*m.x67 + 0.0001*m.x47*m.x68 + 0.0001*m.x47*m.x69 + 0.0001*
m.x47*m.x70 + 0.0001*m.x47*m.x71 + 0.0001*m.x47*m.x72 + 0.0001*m.x47*m.x73 + 0.0001*m.x47*m.x74
+ 0.0001*m.x47*m.x75 + 0.0001*m.x47*m.x76 + 0.0001*m.x47*m.x77 + 0.0001*m.x47*m.x78 + 0.0001*
m.x47*m.x79 + 0.0001*m.x47*m.x80 + 0.0001*m.x47*m.x81 + 0.0001*m.x47*m.x82 + 0.0001*m.x47*m.x83
+ 0.0001*m.x47*m.x84 + 0.0001*m.x47*m.x85 + 0.0001*m.x47*m.x86 + 0.0001*m.x47*m.x87 + 0.0001*
m.x47*m.x88 + 0.0001*m.x47*m.x89 + 0.0001*m.x47*m.x90 + 0.0001*m.x47*m.x91 + 0.0001*m.x47*m.x92
+ 0.0001*m.x47*m.x93 + 0.0001*m.x47*m.x94 + 0.0001*m.x47*m.x95 + 0.0001*m.x47*m.x96 + 0.0001*
m.x47*m.x97 + 0.0001*m.x47*m.x98 + 0.0001*m.x47*m.x99 + 0.0001*m.x47*m.x100 + 0.0001*m.x47*m.x101
+ 0.0001*m.x47*m.x102 + 0.0001*m.x47*m.x103 + 0.0001*m.x47*m.x104 + 0.0001*m.x47*m.x105 + 0.0001
*m.x47*m.x106 + 0.0001*m.x47*m.x107 + 0.0001*m.x47*m.x108 + 0.0001*m.x47*m.x109 + 0.0001*m.x47*
m.x110 + 0.0001*m.x47*m.x111 + 0.0001*m.x47*m.x112 + 0.0001*m.x47*m.x113 + 0.0001*m.x47*m.x114 +
0.0001*m.x47*m.x115 + 0.0001*m.x47*m.x116 + 0.0001*m.x47*m.x117 + 0.0001*m.x47*m.x118 + 0.0001*
m.x47*m.x119 + 0.0001*m.x47*m.x120 + 0.0001*m.x47*m.x121 + 0.0001*m.x47*m.x122 + 0.0001*m.x47*
m.x123 + 0.0001*m.x47*m.x124 + 0.0001*m.x47*m.x125 + 0.0001*m.x47*m.x126 + 0.0001*m.x47*m.x127 +
0.0001*m.x47*m.x128 + 0.0001*m.x47*m.x129 + 0.0001*m.x47*m.x130 + 0.0001*m.x47*m.x131 + 0.0001*
m.x47*m.x132 + 0.0001*m.x47*m.x133 + 0.0001*m.x47*m.x134 + 0.0001*m.x47*m.x135 + 0.0001*m.x47*
m.x136 + 0.0001*m.x47*m.x137 + 0.0001*m.x47*m.x138 + 0.0001*m.x47*m.x139 + 0.0001*m.x47*m.x140 +
3.42688139906742*m.x47*m.x141 + 0.0001*m.x47*m.x142 + 0.0001*m.x47*m.x143 + 0.0001*m.x47*m.x144
+ 0.0001*m.x47*m.x145 + 0.0001*m.x47*m.x146 + 0.0001*m.x47*m.x147 + 0.0001*m.x47*m.x148 + 0.0001
*m.x47*m.x149 + 0.0001*m.x47*m.x150 + 0.0001*m.x47*m.x151 + 0.0001*m.x47*m.x152 + 0.0001*m.x47*
m.x153 + 0.0001*m.x47*m.x154 + 0.0001*m.x47*m.x155 + 0.0001*m.x47*m.x156 + 0.0001*m.x47*m.x157 +
0.0001*m.x47*m.x158 + 0.0001*m.x47*m.x159 + 0.0001*m.x47*m.x160 + 0.0001*m.x47*m.x161 + 0.0001*
m.x47*m.x162 + 0.0001*m.x47*m.x163 + 0.0001*m.x47*m.x164 + 0.0001*m.x47*m.x165 + 0.0001*m.x47*
m.x166 + 0.0001*m.x47*m.x167 + 0.0001*m.x47*m.x168 + 0.0001*m.x47*m.x169 + 0.0001*m.x47*m.x170 +
0.0001*m.x47*m.x171 + 0.0001*m.x47*m.x172 + 0.0001*m.x47*m.x173 + 0.0001*m.x47*m.x174 + 0.0001*
m.x47*m.x175 + 0.0001*m.x47*m.x176 + 0.0001*m.x47*m.x177 + 0.0001*m.x47*m.x178 + 0.0001*m.x47*
m.x179 + 0.0001*m.x47*m.x180 + 0.0001*m.x47*m.x181 + 0.0001*m.x47*m.x182 + 0.0001*m.x47*m.x183 +
0.0001*m.x47*m.x184 + 0.0001*m.x47*m.x185 + 0.0001*m.x48*m.x1 + 0.0001*m.x48*m.x2 + 0.0001*m.x48*
m.x3 + 0.0001*m.x48*m.x4 + 0.0001*m.x48*m.x5 + 0.0001*m.x48*m.x6 + 0.0001*m.x48*m.x7 + 0.0001*
m.x48*m.x8 + 0.0001*m.x48*m.x9 + 0.0001*m.x48*m.x10 + 0.0001*m.x48*m.x11 + 0.0001*m.x48*m.x12 +
0.0001*m.x48*m.x13 + 0.0001*m.x48*m.x14 + 0.0001*m.x48*m.x15 + 0.0001*m.x48*m.x16 + 0.0001*m.x48*
m.x17 + 0.0001*m.x48*m.x18 + 0.0001*m.x48*m.x19 + 0.0001*m.x48*m.x20 + 0.0001*m.x48*m.x21 +
0.0001*m.x48*m.x22 + 0.0001*m.x48*m.x23 + 0.0001*m.x48*m.x24 + 1.56311713881613*m.x48*m.x25 +
0.0001*m.x48*m.x26 + 0.0001*m.x48*m.x27 + 0.0001*m.x48*m.x28 + 0.0001*m.x48*m.x29 + 0.0001*m.x48*
m.x30 + 0.0001*m.x48*m.x31 + 0.0001*m.x48*m.x32 + 0.0001*m.x48*m.x33 + 0.0001*m.x48*m.x34 +
0.0001*m.x48*m.x35 + 0.0001*m.x48*m.x36 + 0.0001*m.x48*m.x37 + 0.0001*m.x48*m.x38 + 0.0001*m.x48*
m.x39 + 0.0001*m.x48*m.x40 + 0.0001*m.x48*m.x41 + 0.0001*m.x48*m.x42 + 0.0001*m.x48*m.x43 +
0.0001*m.x48*m.x44 + 0.0001*m.x48*m.x45 + 0.0001*m.x48*m.x46 + 0.0001*m.x48*m.x47 +
0.888606552087827*m.x48**2 + 0.0001*m.x48*m.x49 + 0.0001*m.x48*m.x50 + 0.0001*m.x48*m.x51 +
0.0001*m.x48*m.x52 + 0.0001*m.x48*m.x53 + 0.0001*m.x48*m.x54 + 0.0001*m.x48*m.x55 + 0.0001*m.x48*
m.x56 + 0.0001*m.x48*m.x57 + 0.0001*m.x48*m.x58 + 0.0001*m.x48*m.x59 + 0.0001*m.x48*m.x60 +
0.0001*m.x48*m.x61 + 0.0001*m.x48*m.x62 + 0.0001*m.x48*m.x63 + 0.0001*m.x48*m.x64 + 0.0001*m.x48*
m.x65 + 0.0001*m.x48*m.x66 + 0.0001*m.x48*m.x67 + 0.0001*m.x48*m.x68 + 0.0001*m.x48*m.x69 +
0.0001*m.x48*m.x70 + 0.0001*m.x48*m.x71 + 0.0001*m.x48*m.x72 + 0.0001*m.x48*m.x73 + 0.0001*m.x48*
m.x74 + 0.0001*m.x48*m.x75 + 0.0001*m.x48*m.x76 + 0.0001*m.x48*m.x77 + 0.0001*m.x48*m.x78 +
0.0001*m.x48*m.x79 + 0.0001*m.x48*m.x80 + 0.0001*m.x48*m.x81 + 0.0001*m.x48*m.x82 + 0.0001*m.x48*
m.x83 + 2.85095769957664*m.x48*m.x84 + 0.0001*m.x48*m.x85 + 0.0001*m.x48*m.x86 + 0.0001*m.x48*
m.x87 + 0.0001*m.x48*m.x88 + 0.0001*m.x48*m.x89 + 0.0001*m.x48*m.x90 + 0.0001*m.x48*m.x91 +
0.0001*m.x48*m.x92 + 0.0001*m.x48*m.x93 + 0.0001*m.x48*m.x94 + 0.0001*m.x48*m.x95 + 0.0001*m.x48*
m.x96 + 0.0001*m.x48*m.x97 + 0.0001*m.x48*m.x98 + 0.0001*m.x48*m.x99 + 0.0001*m.x48*m.x100 +
0.0001*m.x48*m.x101 + 0.0001*m.x48*m.x102 + 0.0001*m.x48*m.x103 + 0.0001*m.x48*m.x104 + 0.0001*
m.x48*m.x105 + 0.0001*m.x48*m.x106 + 0.0001*m.x48*m.x107 + 0.0001*m.x48*m.x108 + 0.0001*m.x48*
m.x109 + 0.0001*m.x48*m.x110 + 0.0001*m.x48*m.x111 + 0.0001*m.x48*m.x112 + 0.0001*m.x48*m.x113 +
0.0001*m.x48*m.x114 + 0.0001*m.x48*m.x115 + 0.0001*m.x48*m.x116 + 0.0001*m.x48*m.x117 + 0.0001*
m.x48*m.x118 + 0.0001*m.x48*m.x119 + 0.0001*m.x48*m.x120 + 0.0001*m.x48*m.x121 + 0.0001*m.x48*
m.x122 + 0.0001*m.x48*m.x123 + 0.0001*m.x48*m.x124 + 0.0001*m.x48*m.x125 + 0.0001*m.x48*m.x126 +
0.0001*m.x48*m.x127 + 0.0001*m.x48*m.x128 + 0.0001*m.x48*m.x129 + 0.0001*m.x48*m.x130 + 0.0001*
m.x48*m.x131 + 0.0001*m.x48*m.x132 + 0.0001*m.x48*m.x133 + 0.0001*m.x48*m.x134 + 0.0001*m.x48*
m.x135 + 0.0001*m.x48*m.x136 + 0.0001*m.x48*m.x137 + 0.0001*m.x48*m.x138 + 0.0001*m.x48*m.x139 +
0.0001*m.x48*m.x140 + 0.0001*m.x48*m.x141 + 0.0001*m.x48*m.x142 + 0.0001*m.x48*m.x143 + 0.0001*
m.x48*m.x144 + 0.0001*m.x48*m.x145 + 0.0001*m.x48*m.x146 + 0.0001*m.x48*m.x147 + 0.0001*m.x48*
m.x148 + 0.0001*m.x48*m.x149 + 0.0001*m.x48*m.x150 + 0.0001*m.x48*m.x151 + 0.0001*m.x48*m.x152 +
0.0001*m.x48*m.x153 + 0.0001*m.x48*m.x154 + 0.0001*m.x48*m.x155 + 0.0001*m.x48*m.x156 + 0.0001*
m.x48*m.x157 + 0.0001*m.x48*m.x158 + 0.0001*m.x48*m.x159 + 0.0001*m.x48*m.x160 + 0.0001*m.x48*
m.x161 + 0.0001*m.x48*m.x162 + 0.0001*m.x48*m.x163 + 0.0001*m.x48*m.x164 + 0.0001*m.x48*m.x165 +
0.0001*m.x48*m.x166 + 0.0001*m.x48*m.x167 + 0.0001*m.x48*m.x168 + 0.0001*m.x48*m.x169 + 0.0001*
m.x48*m.x170 + 0.0001*m.x48*m.x171 + 0.0001*m.x48*m.x172 + 0.0001*m.x48*m.x173 + 0.0001*m.x48*
m.x174 + 0.0001*m.x48*m.x175 + 0.0001*m.x48*m.x176 + 0.0001*m.x48*m.x177 + 0.0001*m.x48*m.x178 +
0.0001*m.x48*m.x179 + 0.0001*m.x48*m.x180 + 0.0001*m.x48*m.x181 + 0.0001*m.x48*m.x182 + 0.0001*
m.x48*m.x183 + 0.0001*m.x48*m.x184 + 0.0001*m.x48*m.x185 + 0.0001*m.x49*m.x1 + 0.0001*m.x49*m.x2
+ 0.0001*m.x49*m.x3 + 0.0001*m.x49*m.x4 + 0.0001*m.x49*m.x5 + 0.0001*m.x49*m.x6 + 0.0001*m.x49*
m.x7 + 0.0001*m.x49*m.x8 + 0.0001*m.x49*m.x9 + 0.0001*m.x49*m.x10 + 0.0001*m.x49*m.x11 + 0.0001*
m.x49*m.x12 + 0.0001*m.x49*m.x13 + 0.0001*m.x49*m.x14 + 0.0001*m.x49*m.x15 + 0.0001*m.x49*m.x16
+ 0.0001*m.x49*m.x17 + 0.0001*m.x49*m.x18 + 0.0001*m.x49*m.x19 + 0.0001*m.x49*m.x20 + 0.0001*
m.x49*m.x21 + 0.0001*m.x49*m.x22 + 0.0001*m.x49*m.x23 + 0.0001*m.x49*m.x24 + 0.0001*m.x49*m.x25
+ 1.79090332870939*m.x49*m.x26 + 0.0001*m.x49*m.x27 + 0.0001*m.x49*m.x28 + 0.0001*m.x49*m.x29 +
0.0001*m.x49*m.x30 + 0.0001*m.x49*m.x31 + 0.0001*m.x49*m.x32 + 0.0001*m.x49*m.x33 + 0.0001*m.x49*
m.x34 + 0.0001*m.x49*m.x35 + 0.0001*m.x49*m.x36 + 0.0001*m.x49*m.x37 + 0.0001*m.x49*m.x38 +
0.0001*m.x49*m.x39 + 0.0001*m.x49*m.x40 + 0.0001*m.x49*m.x41 + 0.0001*m.x49*m.x42 + 0.0001*m.x49*
m.x43 + 0.0001*m.x49*m.x44 + 0.0001*m.x49*m.x45 + 0.0001*m.x49*m.x46 + 0.0001*m.x49*m.x47 +
0.0001*m.x49*m.x48 + 1.19761222572318*m.x49**2 + 0.0001*m.x49*m.x50 + 0.0001*m.x49*m.x51 + 0.0001
*m.x49*m.x52 + 0.0001*m.x49*m.x53 + 0.0001*m.x49*m.x54 + 0.0001*m.x49*m.x55 + 0.0001*m.x49*m.x56
+ 0.0001*m.x49*m.x57 + 0.0001*m.x49*m.x58 + 0.0001*m.x49*m.x59 + 0.0001*m.x49*m.x60 + 0.0001*
m.x49*m.x61 + 0.0001*m.x49*m.x62 + 0.0001*m.x49*m.x63 + 0.0001*m.x49*m.x64 + 0.0001*m.x49*m.x65
+ 0.0001*m.x49*m.x66 + 0.0001*m.x49*m.x67 + 0.0001*m.x49*m.x68 + 0.0001*m.x49*m.x69 + 0.0001*
m.x49*m.x70 + 0.0001*m.x49*m.x71 + 0.0001*m.x49*m.x72 + 0.0001*m.x49*m.x73 + 0.0001*m.x49*m.x74
+ 0.0001*m.x49*m.x75 + 0.0001*m.x49*m.x76 + 0.0001*m.x49*m.x77 + 0.0001*m.x49*m.x78 + 0.0001*
m.x49*m.x79 + 0.0001*m.x49*m.x80 + 0.0001*m.x49*m.x81 + 0.0001*m.x49*m.x82 + 0.0001*m.x49*m.x83
+ 0.0001*m.x49*m.x84 + 3.30977386585424*m.x49*m.x85 + 0.0001*m.x49*m.x86 + 0.0001*m.x49*m.x87 +
0.0001*m.x49*m.x88 + 0.0001*m.x49*m.x89 + 0.0001*m.x49*m.x90 + 0.0001*m.x49*m.x91 + 0.0001*m.x49*
m.x92 + 0.0001*m.x49*m.x93 + 0.0001*m.x49*m.x94 + 0.0001*m.x49*m.x95 + 0.0001*m.x49*m.x96 +
0.0001*m.x49*m.x97 + 0.0001*m.x49*m.x98 + 0.0001*m.x49*m.x99 + 0.0001*m.x49*m.x100 + 0.0001*m.x49
*m.x101 + 0.0001*m.x49*m.x102 + 0.0001*m.x49*m.x103 + 0.0001*m.x49*m.x104 + 0.0001*m.x49*m.x105
+ 0.0001*m.x49*m.x106 + 0.0001*m.x49*m.x107 + 0.0001*m.x49*m.x108 + 0.0001*m.x49*m.x109 + 0.0001
*m.x49*m.x110 + 0.0001*m.x49*m.x111 + 0.0001*m.x49*m.x112 + 0.0001*m.x49*m.x113 + 0.0001*m.x49*
m.x114 + 0.0001*m.x49*m.x115 + 0.0001*m.x49*m.x116 + 0.0001*m.x49*m.x117 + 0.0001*m.x49*m.x118 +
0.0001*m.x49*m.x119 + 0.0001*m.x49*m.x120 + 0.0001*m.x49*m.x121 + 0.0001*m.x49*m.x122 + 0.0001*
m.x49*m.x123 + 0.0001*m.x49*m.x124 + 0.0001*m.x49*m.x125 + 0.0001*m.x49*m.x126 + 0.0001*m.x49*
m.x127 + 0.0001*m.x49*m.x128 + 0.0001*m.x49*m.x129 + 0.0001*m.x49*m.x130 + 0.0001*m.x49*m.x131 +
0.0001*m.x49*m.x132 + 0.0001*m.x49*m.x133 + 0.0001*m.x49*m.x134 + 0.0001*m.x49*m.x135 + 0.0001*
m.x49*m.x136 + 0.0001*m.x49*m.x137 + 0.0001*m.x49*m.x138 + 0.0001*m.x49*m.x139 + 0.0001*m.x49*
m.x140 + 0.0001*m.x49*m.x141 + 0.0001*m.x49*m.x142 + 0.0001*m.x49*m.x143 + 0.0001*m.x49*m.x144 +
0.0001*m.x49*m.x145 + 0.0001*m.x49*m.x146 + 0.0001*m.x49*m.x147 + 0.0001*m.x49*m.x148 + 0.0001*
m.x49*m.x149 + 0.0001*m.x49*m.x150 + 0.0001*m.x49*m.x151 + 0.0001*m.x49*m.x152 + 0.0001*m.x49*
m.x153 + 0.0001*m.x49*m.x154 + 0.0001*m.x49*m.x155 + 0.0001*m.x49*m.x156 + 0.0001*m.x49*m.x157 +
0.0001*m.x49*m.x158 + 0.0001*m.x49*m.x159 + 0.0001*m.x49*m.x160 + 0.0001*m.x49*m.x161 + 0.0001*
m.x49*m.x162 + 0.0001*m.x49*m.x163 + 0.0001*m.x49*m.x164 + 0.0001*m.x49*m.x165 + 0.0001*m.x49*
m.x166 + 0.0001*m.x49*m.x167 + 0.0001*m.x49*m.x168 + 0.0001*m.x49*m.x169 + 0.0001*m.x49*m.x170 +
0.0001*m.x49*m.x171 + 0.0001*m.x49*m.x172 + 0.0001*m.x49*m.x173 + 0.0001*m.x49*m.x174 + 0.0001*
m.x49*m.x175 + 0.0001*m.x49*m.x176 + 0.0001*m.x49*m.x177 + 0.0001*m.x49*m.x178 + 0.0001*m.x49*
m.x179 + 0.0001*m.x49*m.x180 + 0.0001*m.x49*m.x181 + 0.0001*m.x49*m.x182 + 0.0001*m.x49*m.x183 +
0.0001*m.x49*m.x184 + 0.0001*m.x49*m.x185 + 0.0001*m.x50*m.x1 + 0.0001*m.x50*m.x2 + 0.0001*m.x50*
m.x3 + 0.0001*m.x50*m.x4 + 0.0001*m.x50*m.x5 + 0.0001*m.x50*m.x6 + 0.0001*m.x50*m.x7 + 0.0001*
m.x50*m.x8 + 0.0001*m.x50*m.x9 + 0.0001*m.x50*m.x10 + 0.0001*m.x50*m.x11 + 0.0001*m.x50*m.x12 +
0.0001*m.x50*m.x13 + 0.0001*m.x50*m.x14 + 0.0001*m.x50*m.x15 + 0.0001*m.x50*m.x16 + 0.0001*m.x50*
m.x17 + 0.0001*m.x50*m.x18 + 0.0001*m.x50*m.x19 + 0.0001*m.x50*m.x20 + 0.0001*m.x50*m.x21 +
0.0001*m.x50*m.x22 + 0.0001*m.x50*m.x23 + 0.0001*m.x50*m.x24 + 0.0001*m.x50*m.x25 + 0.0001*m.x50*
m.x26 + 1.76587825146747*m.x50*m.x27 + 0.0001*m.x50*m.x28 + 0.0001*m.x50*m.x29 + 0.0001*m.x50*
m.x30 + 0.0001*m.x50*m.x31 + 0.0001*m.x50*m.x32 + 0.0001*m.x50*m.x33 + 0.0001*m.x50*m.x34 +
0.0001*m.x50*m.x35 + 0.0001*m.x50*m.x36 + 0.0001*m.x50*m.x37 + 0.0001*m.x50*m.x38 + 0.0001*m.x50*
m.x39 + 0.0001*m.x50*m.x40 + 0.0001*m.x50*m.x41 + 0.0001*m.x50*m.x42 + 0.0001*m.x50*m.x43 +
0.0001*m.x50*m.x44 + 0.0001*m.x50*m.x45 + 0.0001*m.x50*m.x46 + 0.0001*m.x50*m.x47 + 0.0001*m.x50*
m.x48 + 0.0001*m.x50*m.x49 + 1.20462715408013*m.x50**2 + 0.0001*m.x50*m.x51 + 0.0001*m.x50*m.x52
+ 0.0001*m.x50*m.x53 + 0.0001*m.x50*m.x54 + 0.0001*m.x50*m.x55 + 0.0001*m.x50*m.x56 + 0.0001*
m.x50*m.x57 + 0.0001*m.x50*m.x58 + 0.0001*m.x50*m.x59 + 0.0001*m.x50*m.x60 + 0.0001*m.x50*m.x61
+ 0.0001*m.x50*m.x62 + 0.0001*m.x50*m.x63 + 0.0001*m.x50*m.x64 + 0.0001*m.x50*m.x65 + 0.0001*
m.x50*m.x66 + 0.0001*m.x50*m.x67 + 0.0001*m.x50*m.x68 + 0.0001*m.x50*m.x69 + 0.0001*m.x50*m.x70
+ 0.0001*m.x50*m.x71 + 0.0001*m.x50*m.x72 + 0.0001*m.x50*m.x73 + 0.0001*m.x50*m.x74 + 0.0001*
m.x50*m.x75 + 0.0001*m.x50*m.x76 + 0.0001*m.x50*m.x77 + 0.0001*m.x50*m.x78 + 0.0001*m.x50*m.x79
+ 0.0001*m.x50*m.x80 + 0.0001*m.x50*m.x81 + 0.0001*m.x50*m.x82 + 0.0001*m.x50*m.x83 + 0.0001*
m.x50*m.x84 + 0.0001*m.x50*m.x85 + 3.36191019598222*m.x50*m.x86 + 0.0001*m.x50*m.x87 + 0.0001*
m.x50*m.x88 + 0.0001*m.x50*m.x89 + 0.0001*m.x50*m.x90 + 0.0001*m.x50*m.x91 + 0.0001*m.x50*m.x92
+ 0.0001*m.x50*m.x93 + 0.0001*m.x50*m.x94 + 0.0001*m.x50*m.x95 + 0.0001*m.x50*m.x96 + 0.0001*
m.x50*m.x97 + 0.0001*m.x50*m.x98 + 0.0001*m.x50*m.x99 + 0.0001*m.x50*m.x100 + 0.0001*m.x50*m.x101
+ 0.0001*m.x50*m.x102 + 0.0001*m.x50*m.x103 + 0.0001*m.x50*m.x104 + 0.0001*m.x50*m.x105 + 0.0001
*m.x50*m.x106 + 0.0001*m.x50*m.x107 + 0.0001*m.x50*m.x108 + 0.0001*m.x50*m.x109 + 0.0001*m.x50*
m.x110 + 0.0001*m.x50*m.x111 + 0.0001*m.x50*m.x112 + 0.0001*m.x50*m.x113 + 0.0001*m.x50*m.x114 +
0.0001*m.x50*m.x115 + 0.0001*m.x50*m.x116 + 0.0001*m.x50*m.x117 + 0.0001*m.x50*m.x118 + 0.0001*
m.x50*m.x119 + 0.0001*m.x50*m.x120 + 0.0001*m.x50*m.x121 + 0.0001*m.x50*m.x122 + 0.0001*m.x50*
m.x123 + 0.0001*m.x50*m.x124 + 0.0001*m.x50*m.x125 + 0.0001*m.x50*m.x126 + 0.0001*m.x50*m.x127 +
0.0001*m.x50*m.x128 + 0.0001*m.x50*m.x129 + 0.0001*m.x50*m.x130 + 0.0001*m.x50*m.x131 + 0.0001*
m.x50*m.x132 + 0.0001*m.x50*m.x133 + 0.0001*m.x50*m.x134 + 0.0001*m.x50*m.x135 + 0.0001*m.x50*
m.x136 + 0.0001*m.x50*m.x137 + 0.0001*m.x50*m.x138 + 0.0001*m.x50*m.x139 + 0.0001*m.x50*m.x140 +
0.0001*m.x50*m.x141 + 0.0001*m.x50*m.x142 + 0.0001*m.x50*m.x143 + 0.0001*m.x50*m.x144 + 0.0001*
m.x50*m.x145 + 0.0001*m.x50*m.x146 + 0.0001*m.x50*m.x147 + 0.0001*m.x50*m.x148 + 0.0001*m.x50*
m.x149 + 0.0001*m.x50*m.x150 + 0.0001*m.x50*m.x151 + 0.0001*m.x50*m.x152 + 0.0001*m.x50*m.x153 +
0.0001*m.x50*m.x154 + 0.0001*m.x50*m.x155 + 0.0001*m.x50*m.x156 + 0.0001*m.x50*m.x157 + 0.0001*
m.x50*m.x158 + 0.0001*m.x50*m.x159 + 0.0001*m.x50*m.x160 + 0.0001*m.x50*m.x161 + 0.0001*m.x50*
m.x162 + 0.0001*m.x50*m.x163 + 0.0001*m.x50*m.x164 + 0.0001*m.x50*m.x165 + 0.0001*m.x50*m.x166 +
0.0001*m.x50*m.x167 + 0.0001*m.x50*m.x168 + 0.0001*m.x50*m.x169 + 0.0001*m.x50*m.x170 + 0.0001*
m.x50*m.x171 + 0.0001*m.x50*m.x172 + 0.0001*m.x50*m.x173 + 0.0001*m.x50*m.x174 + 0.0001*m.x50*
m.x175 + 0.0001*m.x50*m.x176 + 0.0001*m.x50*m.x177 + 0.0001*m.x50*m.x178 + 0.0001*m.x50*m.x179 +
0.0001*m.x50*m.x180 + 0.0001*m.x50*m.x181 + 0.0001*m.x50*m.x182 + 0.0001*m.x50*m.x183 + 0.0001*
m.x50*m.x184 + 0.0001*m.x50*m.x185 + 0.0001*m.x51*m.x1 + 0.0001*m.x51*m.x2 + 0.0001*m.x51*m.x3 +
0.0001*m.x51*m.x4 + 0.0001*m.x51*m.x5 + 0.0001*m.x51*m.x6 + 0.0001*m.x51*m.x7 + 0.0001*m.x51*m.x8
+ 0.0001*m.x51*m.x9 + 0.0001*m.x51*m.x10 + 0.0001*m.x51*m.x11 + 0.0001*m.x51*m.x12 + 0.0001*
m.x51*m.x13 + 0.0001*m.x51*m.x14 + 0.0001*m.x51*m.x15 + 0.0001*m.x51*m.x16 + 0.0001*m.x51*m.x17
+ 0.0001*m.x51*m.x18 + 0.0001*m.x51*m.x19 + 0.0001*m.x51*m.x20 + 0.0001*m.x51*m.x21 + 0.0001*
m.x51*m.x22 + 0.0001*m.x51*m.x23 + 0.0001*m.x51*m.x24 + 0.0001*m.x51*m.x25 + 0.0001*m.x51*m.x26
+ 0.0001*m.x51*m.x27 + 1.76608379317448*m.x51*m.x28 + 0.0001*m.x51*m.x29 + 0.0001*m.x51*m.x30 +
0.0001*m.x51*m.x31 + 0.0001*m.x51*m.x32 + 0.0001*m.x51*m.x33 + 0.0001*m.x51*m.x34 + 0.0001*m.x51*
m.x35 + 0.0001*m.x51*m.x36 + 0.0001*m.x51*m.x37 + 0.0001*m.x51*m.x38 + 0.0001*m.x51*m.x39 +
0.0001*m.x51*m.x40 + 0.0001*m.x51*m.x41 + 0.0001*m.x51*m.x42 + 0.0001*m.x51*m.x43 + 0.0001*m.x51*
m.x44 + 0.0001*m.x51*m.x45 + 0.0001*m.x51*m.x46 + 0.0001*m.x51*m.x47 + 0.0001*m.x51*m.x48 +
0.0001*m.x51*m.x49 + 0.0001*m.x51*m.x50 + 1.20462715408013*m.x51**2 + 0.0001*m.x51*m.x52 + 0.0001
*m.x51*m.x53 + 0.0001*m.x51*m.x54 + 0.0001*m.x51*m.x55 + 0.0001*m.x51*m.x56 + 0.0001*m.x51*m.x57
+ 0.0001*m.x51*m.x58 + 0.0001*m.x51*m.x59 + 0.0001*m.x51*m.x60 + 0.0001*m.x51*m.x61 + 0.0001*
m.x51*m.x62 + 0.0001*m.x51*m.x63 + 0.0001*m.x51*m.x64 + 0.0001*m.x51*m.x65 + 0.0001*m.x51*m.x66
+ 0.0001*m.x51*m.x67 + 0.0001*m.x51*m.x68 + 0.0001*m.x51*m.x69 + 0.0001*m.x51*m.x70 + 0.0001*
m.x51*m.x71 + 0.0001*m.x51*m.x72 + 0.0001*m.x51*m.x73 + 0.0001*m.x51*m.x74 + 0.0001*m.x51*m.x75
+ 0.0001*m.x51*m.x76 + 0.0001*m.x51*m.x77 + 0.0001*m.x51*m.x78 + 0.0001*m.x51*m.x79 + 0.0001*
m.x51*m.x80 + 0.0001*m.x51*m.x81 + 0.0001*m.x51*m.x82 + 0.0001*m.x51*m.x83 + 0.0001*m.x51*m.x84
+ 0.0001*m.x51*m.x85 + 0.0001*m.x51*m.x86 + 3.36191019598222*m.x51*m.x87 + 0.0001*m.x51*m.x88 +
0.0001*m.x51*m.x89 + 0.0001*m.x51*m.x90 + 0.0001*m.x51*m.x91 + 0.0001*m.x51*m.x92 + 0.0001*m.x51*
m.x93 + 0.0001*m.x51*m.x94 + 0.0001*m.x51*m.x95 + 0.0001*m.x51*m.x96 + 0.0001*m.x51*m.x97 +
0.0001*m.x51*m.x98 + 0.0001*m.x51*m.x99 + 0.0001*m.x51*m.x100 + 0.0001*m.x51*m.x101 + 0.0001*
m.x51*m.x102 + 0.0001*m.x51*m.x103 + 0.0001*m.x51*m.x104 + 0.0001*m.x51*m.x105 + 0.0001*m.x51*
m.x106 + 0.0001*m.x51*m.x107 + 0.0001*m.x51*m.x108 + 0.0001*m.x51*m.x109 + 0.0001*m.x51*m.x110 +
0.0001*m.x51*m.x111 + 0.0001*m.x51*m.x112 + 0.0001*m.x51*m.x113 + 0.0001*m.x51*m.x114 + 0.0001*
m.x51*m.x115 + 0.0001*m.x51*m.x116 + 0.0001*m.x51*m.x117 + 0.0001*m.x51*m.x118 + 0.0001*m.x51*
m.x119 + 0.0001*m.x51*m.x120 + 0.0001*m.x51*m.x121 + 0.0001*m.x51*m.x122 + 0.0001*m.x51*m.x123 +
0.0001*m.x51*m.x124 + 0.0001*m.x51*m.x125 + 0.0001*m.x51*m.x126 + 0.0001*m.x51*m.x127 + 0.0001*
m.x51*m.x128 + 0.0001*m.x51*m.x129 + 0.0001*m.x51*m.x130 + 0.0001*m.x51*m.x131 + 0.0001*m.x51*
m.x132 + 0.0001*m.x51*m.x133 + 0.0001*m.x51*m.x134 + 0.0001*m.x51*m.x135 + 0.0001*m.x51*m.x136 +
0.0001*m.x51*m.x137 + 0.0001*m.x51*m.x138 + 0.0001*m.x51*m.x139 + 0.0001*m.x51*m.x140 + 0.0001*
m.x51*m.x141 + 0.0001*m.x51*m.x142 + 0.0001*m.x51*m.x143 + 0.0001*m.x51*m.x144 + 0.0001*m.x51*
m.x145 + 0.0001*m.x51*m.x146 + 0.0001*m.x51*m.x147 + 0.0001*m.x51*m.x148 + 0.0001*m.x51*m.x149 +
0.0001*m.x51*m.x150 + 0.0001*m.x51*m.x151 + 0.0001*m.x51*m.x152 + 0.0001*m.x51*m.x153 + 0.0001*
m.x51*m.x154 + 0.0001*m.x51*m.x155 + 0.0001*m.x51*m.x156 + 0.0001*m.x51*m.x157 + 0.0001*m.x51*
m.x158 + 0.0001*m.x51*m.x159 + 0.0001*m.x51*m.x160 + 0.0001*m.x51*m.x161 + 0.0001*m.x51*m.x162 +
0.0001*m.x51*m.x163 + 0.0001*m.x51*m.x164 + 0.0001*m.x51*m.x165 + 0.0001*m.x51*m.x166 + 0.0001*
m.x51*m.x167 + 0.0001*m.x51*m.x168 + 0.0001*m.x51*m.x169 + 0.0001*m.x51*m.x170 + 0.0001*m.x51*
m.x171 + 0.0001*m.x51*m.x172 + 0.0001*m.x51*m.x173 + 0.0001*m.x51*m.x174 + 0.0001*m.x51*m.x175 +
0.0001*m.x51*m.x176 + 0.0001*m.x51*m.x177 + 0.0001*m.x51*m.x178 + 0.0001*m.x51*m.x179 + 0.0001*
m.x51*m.x180 + 0.0001*m.x51*m.x181 + 0.0001*m.x51*m.x182 + 0.0001*m.x51*m.x183 + 0.0001*m.x51*
m.x184 + 0.0001*m.x51*m.x185 + 0.0001*m.x52*m.x1 + 0.0001*m.x52*m.x2 + 0.0001*m.x52*m.x3 + 0.0001
*m.x52*m.x4 + 0.0001*m.x52*m.x5 + 0.0001*m.x52*m.x6 + 0.0001*m.x52*m.x7 + 0.0001*m.x52*m.x8 +
0.0001*m.x52*m.x9 + 0.0001*m.x52*m.x10 + 0.0001*m.x52*m.x11 + 0.0001*m.x52*m.x12 + 0.0001*m.x52*
m.x13 + 0.0001*m.x52*m.x14 + 0.0001*m.x52*m.x15 + 0.0001*m.x52*m.x16 + 0.0001*m.x52*m.x17 +
0.0001*m.x52*m.x18 + 0.0001*m.x52*m.x19 + 0.0001*m.x52*m.x20 + 0.0001*m.x52*m.x21 + 0.0001*m.x52*
m.x22 + 0.0001*m.x52*m.x23 + 0.0001*m.x52*m.x24 + 0.0001*m.x52*m.x25 + 0.0001*m.x52*m.x26 +
0.0001*m.x52*m.x27 + 0.0001*m.x52*m.x28 + 1.69967084265552*m.x52*m.x29 + 0.0001*m.x52*m.x30 +
0.0001*m.x52*m.x31 + 0.0001*m.x52*m.x32 + 0.0001*m.x52*m.x33 + 0.0001*m.x52*m.x34 + 0.0001*m.x52*
m.x35 + 0.0001*m.x52*m.x36 + 0.0001*m.x52*m.x37 + 0.0001*m.x52*m.x38 + 0.0001*m.x52*m.x39 +
0.0001*m.x52*m.x40 + 0.0001*m.x52*m.x41 + 0.0001*m.x52*m.x42 + 0.0001*m.x52*m.x43 + 0.0001*m.x52*
m.x44 + 0.0001*m.x52*m.x45 + 0.0001*m.x52*m.x46 + 0.0001*m.x52*m.x47 + 0.0001*m.x52*m.x48 +
0.0001*m.x52*m.x49 + 0.0001*m.x52*m.x50 + 0.0001*m.x52*m.x51 + 1.14273132277872*m.x52**2 + 0.0001
*m.x52*m.x53 + 0.0001*m.x52*m.x54 + 0.0001*m.x52*m.x55 + 0.0001*m.x52*m.x56 + 0.0001*m.x52*m.x57
+ 0.0001*m.x52*m.x58 + 0.0001*m.x52*m.x59 + 0.0001*m.x52*m.x60 + 0.0001*m.x52*m.x61 + 0.0001*
m.x52*m.x62 + 0.0001*m.x52*m.x63 + 0.0001*m.x52*m.x64 + 0.0001*m.x52*m.x65 + 0.0001*m.x52*m.x66
+ 0.0001*m.x52*m.x67 + 0.0001*m.x52*m.x68 + 0.0001*m.x52*m.x69 + 0.0001*m.x52*m.x70 + 0.0001*
m.x52*m.x71 + 0.0001*m.x52*m.x72 + 0.0001*m.x52*m.x73 + 0.0001*m.x52*m.x74 + 0.0001*m.x52*m.x75
+ 0.0001*m.x52*m.x76 + 0.0001*m.x52*m.x77 + 0.0001*m.x52*m.x78 + 0.0001*m.x52*m.x79 + 0.0001*
m.x52*m.x80 + 0.0001*m.x52*m.x81 + 0.0001*m.x52*m.x82 + 0.0001*m.x52*m.x83 + 0.0001*m.x52*m.x84
+ 0.0001*m.x52*m.x85 + 0.0001*m.x52*m.x86 + 0.0001*m.x52*m.x87 + 3.27439613256008*m.x52*m.x88 +
0.0001*m.x52*m.x89 + 0.0001*m.x52*m.x90 + 0.0001*m.x52*m.x91 + 0.0001*m.x52*m.x92 + 0.0001*m.x52*
m.x93 + 0.0001*m.x52*m.x94 + 0.0001*m.x52*m.x95 + 0.0001*m.x52*m.x96 + 0.0001*m.x52*m.x97 +
0.0001*m.x52*m.x98 + 0.0001*m.x52*m.x99 + 0.0001*m.x52*m.x100 + 0.0001*m.x52*m.x101 + 0.0001*
m.x52*m.x102 + 0.0001*m.x52*m.x103 + 0.0001*m.x52*m.x104 + 0.0001*m.x52*m.x105 + 0.0001*m.x52*
m.x106 + 0.0001*m.x52*m.x107 + 0.0001*m.x52*m.x108 + 0.0001*m.x52*m.x109 + 0.0001*m.x52*m.x110 +
0.0001*m.x52*m.x111 + 0.0001*m.x52*m.x112 + 0.0001*m.x52*m.x113 + 0.0001*m.x52*m.x114 + 0.0001*
m.x52*m.x115 + 0.0001*m.x52*m.x116 + 0.0001*m.x52*m.x117 + 0.0001*m.x52*m.x118 + 0.0001*m.x52*
m.x119 + 0.0001*m.x52*m.x120 + 0.0001*m.x52*m.x121 + 0.0001*m.x52*m.x122 + 0.0001*m.x52*m.x123 +
0.0001*m.x52*m.x124 + 0.0001*m.x52*m.x125 + 0.0001*m.x52*m.x126 + 0.0001*m.x52*m.x127 + 0.0001*
m.x52*m.x128 + 0.0001*m.x52*m.x129 + 0.0001*m.x52*m.x130 + 0.0001*m.x52*m.x131 + 0.0001*m.x52*
m.x132 + 0.0001*m.x52*m.x133 + 0.0001*m.x52*m.x134 + 0.0001*m.x52*m.x135 + 0.0001*m.x52*m.x136 +
0.0001*m.x52*m.x137 + 0.0001*m.x52*m.x138 + 0.0001*m.x52*m.x139 + 0.0001*m.x52*m.x140 + 0.0001*
m.x52*m.x141 + 0.0001*m.x52*m.x142 + 0.0001*m.x52*m.x143 + 0.0001*m.x52*m.x144 + 0.0001*m.x52*
m.x145 + 0.0001*m.x52*m.x146 + 0.0001*m.x52*m.x147 + 0.0001*m.x52*m.x148 + 0.0001*m.x52*m.x149 +
0.0001*m.x52*m.x150 + 0.0001*m.x52*m.x151 + 0.0001*m.x52*m.x152 + 0.0001*m.x52*m.x153 + 0.0001*
m.x52*m.x154 + 0.0001*m.x52*m.x155 + 0.0001*m.x52*m.x156 + 0.0001*m.x52*m.x157 + 0.0001*m.x52*
m.x158 + 0.0001*m.x52*m.x159 + 0.0001*m.x52*m.x160 + 0.0001*m.x52*m.x161 + 0.0001*m.x52*m.x162 +
0.0001*m.x52*m.x163 + 0.0001*m.x52*m.x164 + 0.0001*m.x52*m.x165 + 0.0001*m.x52*m.x166 + 0.0001*
m.x52*m.x167 + 0.0001*m.x52*m.x168 + 0.0001*m.x52*m.x169 + 0.0001*m.x52*m.x170 + 0.0001*m.x52*
m.x171 + 0.0001*m.x52*m.x172 + 0.0001*m.x52*m.x173 + 0.0001*m.x52*m.x174 + 0.0001*m.x52*m.x175 +
0.0001*m.x52*m.x176 + 0.0001*m.x52*m.x177 + 0.0001*m.x52*m.x178 + 0.0001*m.x52*m.x179 + 0.0001*
m.x52*m.x180 + 0.0001*m.x52*m.x181 + 0.0001*m.x52*m.x182 + 0.0001*m.x52*m.x183 + 0.0001*m.x52*
m.x184 + 0.0001*m.x52*m.x185 + 0.0001*m.x53*m.x1 + 0.0001*m.x53*m.x2 + 0.0001*m.x53*m.x3 + 0.0001
*m.x53*m.x4 + 0.0001*m.x53*m.x5 + 0.0001*m.x53*m.x6 + 0.0001*m.x53*m.x7 + 0.0001*m.x53*m.x8 +
0.0001*m.x53*m.x9 + 0.0001*m.x53*m.x10 + 0.0001*m.x53*m.x11 + 0.0001*m.x53*m.x12 + 0.0001*m.x53*
m.x13 + 0.0001*m.x53*m.x14 + 0.0001*m.x53*m.x15 + 0.0001*m.x53*m.x16 + 0.0001*m.x53*m.x17 +
0.0001*m.x53*m.x18 + 0.0001*m.x53*m.x19 + 0.0001*m.x53*m.x20 + 0.0001*m.x53*m.x21 + 0.0001*m.x53*
m.x22 + 0.0001*m.x53*m.x23 + 0.0001*m.x53*m.x24 + 0.0001*m.x53*m.x25 + 0.0001*m.x53*m.x26 +
0.0001*m.x53*m.x27 + 0.0001*m.x53*m.x28 + 0.0001*m.x53*m.x29 + 1.7183567177394*m.x53*m.x30 +
0.0001*m.x53*m.x31 + 0.0001*m.x53*m.x32 + 0.0001*m.x53*m.x33 + 0.0001*m.x53*m.x34 + 0.0001*m.x53*
m.x35 + 0.0001*m.x53*m.x36 + 0.0001*m.x53*m.x37 + 0.0001*m.x53*m.x38 + 0.0001*m.x53*m.x39 +
0.0001*m.x53*m.x40 + 0.0001*m.x53*m.x41 + 0.0001*m.x53*m.x42 + 0.0001*m.x53*m.x43 + 0.0001*m.x53*
m.x44 + 0.0001*m.x53*m.x45 + 0.0001*m.x53*m.x46 + 0.0001*m.x53*m.x47 + 0.0001*m.x53*m.x48 +
0.0001*m.x53*m.x49 + 0.0001*m.x53*m.x50 + 0.0001*m.x53*m.x51 + 0.0001*m.x53*m.x52 +
1.19289142914011*m.x53**2 + 0.0001*m.x53*m.x54 + 0.0001*m.x53*m.x55 + 0.0001*m.x53*m.x56 + 0.0001
*m.x53*m.x57 + 0.0001*m.x53*m.x58 + 0.0001*m.x53*m.x59 + 0.0001*m.x53*m.x60 + 0.0001*m.x53*m.x61
+ 0.0001*m.x53*m.x62 + 0.0001*m.x53*m.x63 + 0.0001*m.x53*m.x64 + 0.0001*m.x53*m.x65 + 0.0001*
m.x53*m.x66 + 0.0001*m.x53*m.x67 + 0.0001*m.x53*m.x68 + 0.0001*m.x53*m.x69 + 0.0001*m.x53*m.x70
+ 0.0001*m.x53*m.x71 + 0.0001*m.x53*m.x72 + 0.0001*m.x53*m.x73 + 0.0001*m.x53*m.x74 + 0.0001*
m.x53*m.x75 + 0.0001*m.x53*m.x76 + 0.0001*m.x53*m.x77 + 0.0001*m.x53*m.x78 + 0.0001*m.x53*m.x79
+ 0.0001*m.x53*m.x80 + 0.0001*m.x53*m.x81 + 0.0001*m.x53*m.x82 + 0.0001*m.x53*m.x83 + 0.0001*
m.x53*m.x84 + 0.0001*m.x53*m.x85 + 0.0001*m.x53*m.x86 + 0.0001*m.x53*m.x87 + 0.0001*m.x53*m.x88
+ 3.35758811330781*m.x53*m.x89 + 0.0001*m.x53*m.x90 + 0.0001*m.x53*m.x91 + 0.0001*m.x53*m.x92 +
0.0001*m.x53*m.x93 + 0.0001*m.x53*m.x94 + 0.0001*m.x53*m.x95 + 0.0001*m.x53*m.x96 + 0.0001*m.x53*
m.x97 + 0.0001*m.x53*m.x98 + 0.0001*m.x53*m.x99 + 0.0001*m.x53*m.x100 + 0.0001*m.x53*m.x101 +
0.0001*m.x53*m.x102 + 0.0001*m.x53*m.x103 + 0.0001*m.x53*m.x104 + 0.0001*m.x53*m.x105 + 0.0001*
m.x53*m.x106 + 0.0001*m.x53*m.x107 + 0.0001*m.x53*m.x108 + 0.0001*m.x53*m.x109 + 0.0001*m.x53*
m.x110 + 0.0001*m.x53*m.x111 + 0.0001*m.x53*m.x112 + 0.0001*m.x53*m.x113 + 0.0001*m.x53*m.x114 +
0.0001*m.x53*m.x115 + 0.0001*m.x53*m.x116 + 0.0001*m.x53*m.x117 + 0.0001*m.x53*m.x118 + 0.0001*
m.x53*m.x119 + 0.0001*m.x53*m.x120 + 0.0001*m.x53*m.x121 + 0.0001*m.x53*m.x122 + 0.0001*m.x53*
m.x123 + 0.0001*m.x53*m.x124 + 0.0001*m.x53*m.x125 + 0.0001*m.x53*m.x126 + 0.0001*m.x53*m.x127 +
0.0001*m.x53*m.x128 + 0.0001*m.x53*m.x129 + 0.0001*m.x53*m.x130 + 0.0001*m.x53*m.x131 + 0.0001*
m.x53*m.x132 + 0.0001*m.x53*m.x133 + 0.0001*m.x53*m.x134 + 0.0001*m.x53*m.x135 + 0.0001*m.x53*
m.x136 + 0.0001*m.x53*m.x137 + 0.0001*m.x53*m.x138 + 0.0001*m.x53*m.x139 + 0.0001*m.x53*m.x140 +
0.0001*m.x53*m.x141 + 0.0001*m.x53*m.x142 + 0.0001*m.x53*m.x143 + 0.0001*m.x53*m.x144 + 0.0001*
m.x53*m.x145 + 0.0001*m.x53*m.x146 + 0.0001*m.x53*m.x147 + 0.0001*m.x53*m.x148 + 0.0001*m.x53*
m.x149 + 0.0001*m.x53*m.x150 + 0.0001*m.x53*m.x151 + 0.0001*m.x53*m.x152 + 0.0001*m.x53*m.x153 +
0.0001*m.x53*m.x154 + 0.0001*m.x53*m.x155 + 0.0001*m.x53*m.x156 + 0.0001*m.x53*m.x157 + 0.0001*
m.x53*m.x158 + 0.0001*m.x53*m.x159 + 0.0001*m.x53*m.x160 + 0.0001*m.x53*m.x161 + 0.0001*m.x53*
m.x162 + 0.0001*m.x53*m.x163 + 0.0001*m.x53*m.x164 + 0.0001*m.x53*m.x165 + 0.0001*m.x53*m.x166 +
0.0001*m.x53*m.x167 + 0.0001*m.x53*m.x168 + 0.0001*m.x53*m.x169 + 0.0001*m.x53*m.x170 + 0.0001*
m.x53*m.x171 + 0.0001*m.x53*m.x172 + 0.0001*m.x53*m.x173 + 0.0001*m.x53*m.x174 + 0.0001*m.x53*
m.x175 + 0.0001*m.x53*m.x176 + 0.0001*m.x53*m.x177 + 0.0001*m.x53*m.x178 + 0.0001*m.x53*m.x179 +
0.0001*m.x53*m.x180 + 0.0001*m.x53*m.x181 + 0.0001*m.x53*m.x182 + 0.0001*m.x53*m.x183 + 0.0001*
m.x53*m.x184 + 0.0001*m.x53*m.x185 + 0.0001*m.x54*m.x1 + 0.0001*m.x54*m.x2 + 0.0001*m.x54*m.x3 +
0.0001*m.x54*m.x4 + 0.0001*m.x54*m.x5 + 0.0001*m.x54*m.x6 + 0.0001*m.x54*m.x7 + 0.0001*m.x54*m.x8
+ 0.0001*m.x54*m.x9 + 0.0001*m.x54*m.x10 + 0.0001*m.x54*m.x11 + 0.0001*m.x54*m.x12 + 0.0001*
m.x54*m.x13 + 0.0001*m.x54*m.x14 + 0.0001*m.x54*m.x15 + 0.0001*m.x54*m.x16 + 0.0001*m.x54*m.x17
+ 0.0001*m.x54*m.x18 + 0.0001*m.x54*m.x19 + 0.0001*m.x54*m.x20 + 0.0001*m.x54*m.x21 + 0.0001*
m.x54*m.x22 + 0.0001*m.x54*m.x23 + 0.0001*m.x54*m.x24 + 0.0001*m.x54*m.x25 + 0.0001*m.x54*m.x26
+ 0.0001*m.x54*m.x27 + 0.0001*m.x54*m.x28 + 0.0001*m.x54*m.x29 + 0.0001*m.x54*m.x30 +
1.71052437050334*m.x54*m.x31 + 0.0001*m.x54*m.x32 + 0.0001*m.x54*m.x33 + 0.0001*m.x54*m.x34 +
0.0001*m.x54*m.x35 + 0.0001*m.x54*m.x36 + 0.0001*m.x54*m.x37 + 0.0001*m.x54*m.x38 + 0.0001*m.x54*
m.x39 + 0.0001*m.x54*m.x40 + 0.0001*m.x54*m.x41 + 0.0001*m.x54*m.x42 + 0.0001*m.x54*m.x43 +
0.0001*m.x54*m.x44 + 0.0001*m.x54*m.x45 + 0.0001*m.x54*m.x46 + 0.0001*m.x54*m.x47 + 0.0001*m.x54*
m.x48 + 0.0001*m.x54*m.x49 + 0.0001*m.x54*m.x50 + 0.0001*m.x54*m.x51 + 0.0001*m.x54*m.x52 +
0.0001*m.x54*m.x53 + 1.18204198635678*m.x54**2 + 0.0001*m.x54*m.x55 + 0.0001*m.x54*m.x56 + 0.0001
*m.x54*m.x57 + 0.0001*m.x54*m.x58 + 0.0001*m.x54*m.x59 + 0.0001*m.x54*m.x60 + 0.0001*m.x54*m.x61
+ 0.0001*m.x54*m.x62 + 0.0001*m.x54*m.x63 + 0.0001*m.x54*m.x64 + 0.0001*m.x54*m.x65 + 0.0001*
m.x54*m.x66 + 0.0001*m.x54*m.x67 + 0.0001*m.x54*m.x68 + 0.0001*m.x54*m.x69 + 0.0001*m.x54*m.x70
+ 0.0001*m.x54*m.x71 + 0.0001*m.x54*m.x72 + 0.0001*m.x54*m.x73 + 0.0001*m.x54*m.x74 + 0.0001*
m.x54*m.x75 + 0.0001*m.x54*m.x76 + 0.0001*m.x54*m.x77 + 0.0001*m.x54*m.x78 + 0.0001*m.x54*m.x79
+ 0.0001*m.x54*m.x80 + 0.0001*m.x54*m.x81 + 0.0001*m.x54*m.x82 + 0.0001*m.x54*m.x83 + 0.0001*
m.x54*m.x84 + 0.0001*m.x54*m.x85 + 0.0001*m.x54*m.x86 + 0.0001*m.x54*m.x87 + 0.0001*m.x54*m.x88
+ 0.0001*m.x54*m.x89 + 3.34228364077303*m.x54*m.x90 + 0.0001*m.x54*m.x91 + 0.0001*m.x54*m.x92 +
0.0001*m.x54*m.x93 + 0.0001*m.x54*m.x94 + 0.0001*m.x54*m.x95 + 0.0001*m.x54*m.x96 + 0.0001*m.x54*
m.x97 + 0.0001*m.x54*m.x98 + 0.0001*m.x54*m.x99 + 0.0001*m.x54*m.x100 + 0.0001*m.x54*m.x101 +
0.0001*m.x54*m.x102 + 0.0001*m.x54*m.x103 + 0.0001*m.x54*m.x104 + 0.0001*m.x54*m.x105 + 0.0001*
m.x54*m.x106 + 0.0001*m.x54*m.x107 + 0.0001*m.x54*m.x108 + 0.0001*m.x54*m.x109 + 0.0001*m.x54*
m.x110 + 0.0001*m.x54*m.x111 + 0.0001*m.x54*m.x112 + 0.0001*m.x54*m.x113 + 0.0001*m.x54*m.x114 +
0.0001*m.x54*m.x115 + 0.0001*m.x54*m.x116 + 0.0001*m.x54*m.x117 + 0.0001*m.x54*m.x118 + 0.0001*
m.x54*m.x119 + 0.0001*m.x54*m.x120 + 0.0001*m.x54*m.x121 + 0.0001*m.x54*m.x122 + 0.0001*m.x54*
m.x123 + 0.0001*m.x54*m.x124 + 0.0001*m.x54*m.x125 + 0.0001*m.x54*m.x126 + 0.0001*m.x54*m.x127 +
0.0001*m.x54*m.x128 + 0.0001*m.x54*m.x129 + 0.0001*m.x54*m.x130 + 0.0001*m.x54*m.x131 + 0.0001*
m.x54*m.x132 + 0.0001*m.x54*m.x133 + 0.0001*m.x54*m.x134 + 0.0001*m.x54*m.x135 + 0.0001*m.x54*
m.x136 + 0.0001*m.x54*m.x137 + 0.0001*m.x54*m.x138 + 0.0001*m.x54*m.x139 + 0.0001*m.x54*m.x140 +
0.0001*m.x54*m.x141 + 0.0001*m.x54*m.x142 + 0.0001*m.x54*m.x143 + 0.0001*m.x54*m.x144 + 0.0001*
m.x54*m.x145 + 0.0001*m.x54*m.x146 + 0.0001*m.x54*m.x147 + 0.0001*m.x54*m.x148 + 0.0001*m.x54*
m.x149 + 0.0001*m.x54*m.x150 + 0.0001*m.x54*m.x151 + 0.0001*m.x54*m.x152 + 0.0001*m.x54*m.x153 +
0.0001*m.x54*m.x154 + 0.0001*m.x54*m.x155 + 0.0001*m.x54*m.x156 + 0.0001*m.x54*m.x157 + 0.0001*
m.x54*m.x158 + 0.0001*m.x54*m.x159 + 0.0001*m.x54*m.x160 + 0.0001*m.x54*m.x161 + 0.0001*m.x54*
m.x162 + 0.0001*m.x54*m.x163 + 0.0001*m.x54*m.x164 + 0.0001*m.x54*m.x165 + 0.0001*m.x54*m.x166 +
0.0001*m.x54*m.x167 + 0.0001*m.x54*m.x168 + 0.0001*m.x54*m.x169 + 0.0001*m.x54*m.x170 + 0.0001*
m.x54*m.x171 + 0.0001*m.x54*m.x172 + 0.0001*m.x54*m.x173 + 0.0001*m.x54*m.x174 + 0.0001*m.x54*
m.x175 + 0.0001*m.x54*m.x176 + 0.0001*m.x54*m.x177 + 0.0001*m.x54*m.x178 + 0.0001*m.x54*m.x179 +
0.0001*m.x54*m.x180 + 0.0001*m.x54*m.x181 + 0.0001*m.x54*m.x182 + 0.0001*m.x54*m.x183 + 0.0001*
m.x54*m.x184 + 0.0001*m.x54*m.x185 + 0.0001*m.x55*m.x1 + 0.0001*m.x55*m.x2 + 0.0001*m.x55*m.x3 +
0.0001*m.x55*m.x4 + 0.0001*m.x55*m.x5 + 0.0001*m.x55*m.x6 + 0.0001*m.x55*m.x7 + 0.0001*m.x55*m.x8
+ 0.0001*m.x55*m.x9 + 0.0001*m.x55*m.x10 + 0.0001*m.x55*m.x11 + 0.0001*m.x55*m.x12 + 0.0001*
m.x55*m.x13 + 0.0001*m.x55*m.x14 + 0.0001*m.x55*m.x15 + 0.0001*m.x55*m.x16 + 0.0001*m.x55*m.x17
+ 0.0001*m.x55*m.x18 + 0.0001*m.x55*m.x19 + 0.0001*m.x55*m.x20 + 0.0001*m.x55*m.x21 + 0.0001*
m.x55*m.x22 + 0.0001*m.x55*m.x23 + 0.0001*m.x55*m.x24 + 0.0001*m.x55*m.x25 + 0.0001*m.x55*m.x26
+ 0.0001*m.x55*m.x27 + 0.0001*m.x55*m.x28 + 0.0001*m.x55*m.x29 + 0.0001*m.x55*m.x30 + 0.0001*
m.x55*m.x31 + 1.7735490726527*m.x55*m.x32 + 1.65089229431681*m.x55*m.x33 + 0.0001*m.x55*m.x34 +
0.0001*m.x55*m.x35 + 0.0001*m.x55*m.x36 + 0.0001*m.x55*m.x37 + 0.0001*m.x55*m.x38 + 0.0001*m.x55*
m.x39 + 0.0001*m.x55*m.x40 + 0.0001*m.x55*m.x41 + 0.0001*m.x55*m.x42 + 0.0001*m.x55*m.x43 +
0.0001*m.x55*m.x44 + 0.0001*m.x55*m.x45 + 0.0001*m.x55*m.x46 + 0.0001*m.x55*m.x47 + 0.0001*m.x55*
m.x48 + 0.0001*m.x55*m.x49 + 0.0001*m.x55*m.x50 + 0.0001*m.x55*m.x51 + 0.0001*m.x55*m.x52 +
0.0001*m.x55*m.x53 + 0.0001*m.x55*m.x54 + 2.19999678582768*m.x55**2 + 0.0001*m.x55*m.x56 + 0.0001
*m.x55*m.x57 + 0.0001*m.x55*m.x58 + 0.0001*m.x55*m.x59 + 0.0001*m.x55*m.x60 + 0.0001*m.x55*m.x61
+ 0.0001*m.x55*m.x62 + 0.0001*m.x55*m.x63 + 0.0001*m.x55*m.x64 + 0.0001*m.x55*m.x65 + 0.0001*
m.x55*m.x66 + 0.0001*m.x55*m.x67 + 0.0001*m.x55*m.x68 + 0.0001*m.x55*m.x69 + 0.0001*m.x55*m.x70
+ 0.0001*m.x55*m.x71 + 0.0001*m.x55*m.x72 + 0.0001*m.x55*m.x73 + 0.0001*m.x55*m.x74 + 0.0001*
m.x55*m.x75 + 0.0001*m.x55*m.x76 + 0.0001*m.x55*m.x77 + 0.0001*m.x55*m.x78 + 0.0001*m.x55*m.x79
+ 0.0001*m.x55*m.x80 + 0.0001*m.x55*m.x81 + 0.0001*m.x55*m.x82 + 0.0001*m.x55*m.x83 + 0.0001*
m.x55*m.x84 + 0.0001*m.x55*m.x85 + 0.0001*m.x55*m.x86 + 0.0001*m.x55*m.x87 + 0.0001*m.x55*m.x88
+ 0.0001*m.x55*m.x89 + 0.0001*m.x55*m.x90 + 3.34228364077303*m.x55*m.x91 + 3.14439991707406*
m.x55*m.x92 + 0.0001*m.x55*m.x93 + 0.0001*m.x55*m.x94 + 0.0001*m.x55*m.x95 + 0.0001*m.x55*m.x96
+ 0.0001*m.x55*m.x97 + 0.0001*m.x55*m.x98 + 0.0001*m.x55*m.x99 + 0.0001*m.x55*m.x100 + 0.0001*
m.x55*m.x101 + 0.0001*m.x55*m.x102 + 0.0001*m.x55*m.x103 + 0.0001*m.x55*m.x104 + 0.0001*m.x55*
m.x105 + 0.0001*m.x55*m.x106 + 0.0001*m.x55*m.x107 + 0.0001*m.x55*m.x108 + 0.0001*m.x55*m.x109 +
0.0001*m.x55*m.x110 + 0.0001*m.x55*m.x111 + 0.0001*m.x55*m.x112 + 0.0001*m.x55*m.x113 + 0.0001*
m.x55*m.x114 + 0.0001*m.x55*m.x115 + 0.0001*m.x55*m.x116 + 0.0001*m.x55*m.x117 + 0.0001*m.x55*
m.x118 + 0.0001*m.x55*m.x119 + 0.0001*m.x55*m.x120 + 0.0001*m.x55*m.x121 + 0.0001*m.x55*m.x122 +
0.0001*m.x55*m.x123 + 0.0001*m.x55*m.x124 + 0.0001*m.x55*m.x125 + 0.0001*m.x55*m.x126 + 0.0001*
m.x55*m.x127 + 0.0001*m.x55*m.x128 + 0.0001*m.x55*m.x129 + 0.0001*m.x55*m.x130 + 0.0001*m.x55*
m.x131 + 0.0001*m.x55*m.x132 + 0.0001*m.x55*m.x133 + 0.0001*m.x55*m.x134 + 0.0001*m.x55*m.x135 +
0.0001*m.x55*m.x136 + 0.0001*m.x55*m.x137 + 0.0001*m.x55*m.x138 + 0.0001*m.x55*m.x139 + 0.0001*
m.x55*m.x140 + 0.0001*m.x55*m.x141 + 0.0001*m.x55*m.x142 + 0.0001*m.x55*m.x143 + 0.0001*m.x55*
m.x144 + 0.0001*m.x55*m.x145 + 0.0001*m.x55*m.x146 + 0.0001*m.x55*m.x147 + 0.0001*m.x55*m.x148 +
0.0001*m.x55*m.x149 + 0.0001*m.x55*m.x150 + 0.0001*m.x55*m.x151 + 0.0001*m.x55*m.x152 + 0.0001*
m.x55*m.x153 + 0.0001*m.x55*m.x154 + 0.0001*m.x55*m.x155 + 0.0001*m.x55*m.x156 + 0.0001*m.x55*
m.x157 + 0.0001*m.x55*m.x158 + 0.0001*m.x55*m.x159 + 0.0001*m.x55*m.x160 + 0.0001*m.x55*m.x161 +
0.0001*m.x55*m.x162 + 0.0001*m.x55*m.x163 + 0.0001*m.x55*m.x164 + 0.0001*m.x55*m.x165 + 0.0001*
m.x55*m.x166 + 0.0001*m.x55*m.x167 + 0.0001*m.x55*m.x168 + 0.0001*m.x55*m.x169 + 0.0001*m.x55*
m.x170 + 0.0001*m.x55*m.x171 + 0.0001*m.x55*m.x172 + 0.0001*m.x55*m.x173 + 0.0001*m.x55*m.x174 +
0.0001*m.x55*m.x175 + 0.0001*m.x55*m.x176 + 0.0001*m.x55*m.x177 + 0.0001*m.x55*m.x178 + 0.0001*
m.x55*m.x179 + 0.0001*m.x55*m.x180 + 0.0001*m.x55*m.x181 + 0.0001*m.x55*m.x182 + 0.0001*m.x55*
m.x183 + 0.0001*m.x55*m.x184 + 0.0001*m.x55*m.x185 + 0.0001*m.x56*m.x1 + 0.0001*m.x56*m.x2 +
0.0001*m.x56*m.x3 + 0.0001*m.x56*m.x4 + 0.0001*m.x56*m.x5 + 0.0001*m.x56*m.x6 + 0.0001*m.x56*m.x7
+ 0.0001*m.x56*m.x8 + 0.0001*m.x56*m.x9 + 0.0001*m.x56*m.x10 + 0.0001*m.x56*m.x11 + 0.0001*m.x56
*m.x12 + 0.0001*m.x56*m.x13 + 0.0001*m.x56*m.x14 + 0.0001*m.x56*m.x15 + 0.0001*m.x56*m.x16 +
0.0001*m.x56*m.x17 + 0.0001*m.x56*m.x18 + 0.0001*m.x56*m.x19 + 0.0001*m.x56*m.x20 + 0.0001*m.x56*
m.x21 + 0.0001*m.x56*m.x22 + 0.0001*m.x56*m.x23 + 0.0001*m.x56*m.x24 + 0.0001*m.x56*m.x25 +
0.0001*m.x56*m.x26 + 0.0001*m.x56*m.x27 + 0.0001*m.x56*m.x28 + 0.0001*m.x56*m.x29 + 0.0001*m.x56*
m.x30 + 0.0001*m.x56*m.x31 + 0.0001*m.x56*m.x32 + 0.0001*m.x56*m.x33 + 1.65089229431681*m.x56*
m.x34 + 0.0001*m.x56*m.x35 + 0.0001*m.x56*m.x36 + 0.0001*m.x56*m.x37 + 0.0001*m.x56*m.x38 +
0.0001*m.x56*m.x39 + 0.0001*m.x56*m.x40 + 0.0001*m.x56*m.x41 + 0.0001*m.x56*m.x42 + 0.0001*m.x56*
m.x43 + 0.0001*m.x56*m.x44 + 0.0001*m.x56*m.x45 + 0.0001*m.x56*m.x46 + 0.0001*m.x56*m.x47 +
0.0001*m.x56*m.x48 + 0.0001*m.x56*m.x49 + 0.0001*m.x56*m.x50 + 0.0001*m.x56*m.x51 + 0.0001*m.x56*
m.x52 + 0.0001*m.x56*m.x53 + 0.0001*m.x56*m.x54 + 0.0001*m.x56*m.x55 + 1.0180547994709*m.x56**2
+ 0.0001*m.x56*m.x57 + 0.0001*m.x56*m.x58 + 0.0001*m.x56*m.x59 + 0.0001*m.x56*m.x60 + 0.0001*
m.x56*m.x61 + 0.0001*m.x56*m.x62 + 0.0001*m.x56*m.x63 + 0.0001*m.x56*m.x64 + 0.0001*m.x56*m.x65
+ 0.0001*m.x56*m.x66 + 0.0001*m.x56*m.x67 + 0.0001*m.x56*m.x68 + 0.0001*m.x56*m.x69 + 0.0001*
m.x56*m.x70 + 0.0001*m.x56*m.x71 + 0.0001*m.x56*m.x72 + 0.0001*m.x56*m.x73 + 0.0001*m.x56*m.x74
+ 0.0001*m.x56*m.x75 + 0.0001*m.x56*m.x76 + 0.0001*m.x56*m.x77 + 0.0001*m.x56*m.x78 + 0.0001*
m.x56*m.x79 + 0.0001*m.x56*m.x80 + 0.0001*m.x56*m.x81 + 0.0001*m.x56*m.x82 + 0.0001*m.x56*m.x83
+ 0.0001*m.x56*m.x84 + 0.0001*m.x56*m.x85 + 0.0001*m.x56*m.x86 + 0.0001*m.x56*m.x87 + 0.0001*
m.x56*m.x88 + 0.0001*m.x56*m.x89 + 0.0001*m.x56*m.x90 + 0.0001*m.x56*m.x91 + 0.0001*m.x56*m.x92
+ 3.14439991707406*m.x56*m.x93 + 0.0001*m.x56*m.x94 + 0.0001*m.x56*m.x95 + 0.0001*m.x56*m.x96 +
0.0001*m.x56*m.x97 + 0.0001*m.x56*m.x98 + 0.0001*m.x56*m.x99 + 0.0001*m.x56*m.x100 + 0.0001*m.x56
*m.x101 + 0.0001*m.x56*m.x102 + 0.0001*m.x56*m.x103 + 0.0001*m.x56*m.x104 + 0.0001*m.x56*m.x105
+ 0.0001*m.x56*m.x106 + 0.0001*m.x56*m.x107 + 0.0001*m.x56*m.x108 + 0.0001*m.x56*m.x109 + 0.0001
*m.x56*m.x110 + 0.0001*m.x56*m.x111 + 0.0001*m.x56*m.x112 + 0.0001*m.x56*m.x113 + 0.0001*m.x56*
m.x114 + 0.0001*m.x56*m.x115 + 0.0001*m.x56*m.x116 + 0.0001*m.x56*m.x117 + 0.0001*m.x56*m.x118 +
0.0001*m.x56*m.x119 + 0.0001*m.x56*m.x120 + 0.0001*m.x56*m.x121 + 0.0001*m.x56*m.x122 + 0.0001*
m.x56*m.x123 + 0.0001*m.x56*m.x124 + 0.0001*m.x56*m.x125 + 0.0001*m.x56*m.x126 + 0.0001*m.x56*
m.x127 + 0.0001*m.x56*m.x128 + 0.0001*m.x56*m.x129 + 0.437738595417195*m.x56*m.x130 + 0.0001*
m.x56*m.x131 + 0.0001*m.x56*m.x132 + 0.0001*m.x56*m.x133 + 0.0001*m.x56*m.x134 + 0.0001*m.x56*
m.x135 + 0.0001*m.x56*m.x136 + 0.0001*m.x56*m.x137 + 0.0001*m.x56*m.x138 + 0.0001*m.x56*m.x139 +
0.0001*m.x56*m.x140 + 0.0001*m.x56*m.x141 + 0.0001*m.x56*m.x142 + 0.0001*m.x56*m.x143 + 0.0001*
m.x56*m.x144 + 0.0001*m.x56*m.x145 + 0.0001*m.x56*m.x146 + 0.0001*m.x56*m.x147 + 0.0001*m.x56*
m.x148 + 0.0001*m.x56*m.x149 + 0.0001*m.x56*m.x150 + 0.0001*m.x56*m.x151 + 0.0001*m.x56*m.x152 +
0.0001*m.x56*m.x153 + 0.0001*m.x56*m.x154 + 0.0001*m.x56*m.x155 + 0.0001*m.x56*m.x156 + 0.0001*
m.x56*m.x157 + 0.0001*m.x56*m.x158 + 0.0001*m.x56*m.x159 + 0.0001*m.x56*m.x160 + 0.0001*m.x56*
m.x161 + 0.0001*m.x56*m.x162 + 0.0001*m.x56*m.x163 + 0.0001*m.x56*m.x164 + 0.0001*m.x56*m.x165 +
0.0001*m.x56*m.x166 + 0.0001*m.x56*m.x167 + 0.0001*m.x56*m.x168 + 0.0001*m.x56*m.x169 + 0.0001*
m.x56*m.x170 + 0.0001*m.x56*m.x171 + 0.0001*m.x56*m.x172 + 0.0001*m.x56*m.x173 + 0.0001*m.x56*
m.x174 + 0.0001*m.x56*m.x175 + 0.0001*m.x56*m.x176 + 0.0001*m.x56*m.x177 + 0.0001*m.x56*m.x178 +
0.0001*m.x56*m.x179 + 0.0001*m.x56*m.x180 + 0.0001*m.x56*m.x181 + 0.0001*m.x56*m.x182 + 0.0001*
m.x56*m.x183 + 0.0001*m.x56*m.x184 + 0.0001*m.x56*m.x185 + 0.0001*m.x57*m.x1 + 0.0001*m.x57*m.x2
+ 0.0001*m.x57*m.x3 + 0.0001*m.x57*m.x4 + 0.0001*m.x57*m.x5 + 0.0001*m.x57*m.x6 + 0.0001*m.x57*
m.x7 + 0.0001*m.x57*m.x8 + 0.0001*m.x57*m.x9 + 0.0001*m.x57*m.x10 + 0.0001*m.x57*m.x11 + 0.0001*
m.x57*m.x12 + 0.0001*m.x57*m.x13 + 0.0001*m.x57*m.x14 + 0.0001*m.x57*m.x15 + 0.0001*m.x57*m.x16
+ 0.0001*m.x57*m.x17 + 0.0001*m.x57*m.x18 + 0.0001*m.x57*m.x19 + 0.0001*m.x57*m.x20 + 0.0001*
m.x57*m.x21 + 0.0001*m.x57*m.x22 + 0.0001*m.x57*m.x23 + 0.0001*m.x57*m.x24 + 0.211484509361612*
m.x57*m.x25 + 0.0001*m.x57*m.x26 + 0.0001*m.x57*m.x27 + 0.0001*m.x57*m.x28 + 0.0001*m.x57*m.x29
+ 0.0001*m.x57*m.x30 + 0.0001*m.x57*m.x31 + 0.0001*m.x57*m.x32 + 0.0001*m.x57*m.x33 + 0.0001*
m.x57*m.x34 + 1.70540322124996*m.x57*m.x35 + 0.0001*m.x57*m.x36 + 0.0001*m.x57*m.x37 + 0.0001*
m.x57*m.x38 + 0.0001*m.x57*m.x39 + 0.0001*m.x57*m.x40 + 0.0001*m.x57*m.x41 + 0.0001*m.x57*m.x42
+ 0.0001*m.x57*m.x43 + 0.0001*m.x57*m.x44 + 0.0001*m.x57*m.x45 + 0.0001*m.x57*m.x46 + 0.0001*
m.x57*m.x47 + 0.0001*m.x57*m.x48 + 0.0001*m.x57*m.x49 + 0.0001*m.x57*m.x50 + 0.0001*m.x57*m.x51
+ 0.0001*m.x57*m.x52 + 0.0001*m.x57*m.x53 + 0.0001*m.x57*m.x54 + 0.0001*m.x57*m.x55 + 0.0001*
m.x57*m.x56 + 1.06607589058937*m.x57**2 + 0.0001*m.x57*m.x58 + 0.0001*m.x57*m.x59 + 0.0001*m.x57*
m.x60 + 0.0001*m.x57*m.x61 + 0.0001*m.x57*m.x62 + 0.0001*m.x57*m.x63 + 0.0001*m.x57*m.x64 +
0.0001*m.x57*m.x65 + 0.0001*m.x57*m.x66 + 0.0001*m.x57*m.x67 + 0.0001*m.x57*m.x68 + 0.0001*m.x57*
m.x69 + 0.0001*m.x57*m.x70 + 0.0001*m.x57*m.x71 + 0.0001*m.x57*m.x72 + 0.0001*m.x57*m.x73 +
0.0001*m.x57*m.x74 + 0.0001*m.x57*m.x75 + 0.0001*m.x57*m.x76 + 0.0001*m.x57*m.x77 + 0.0001*m.x57*
m.x78 + 0.0001*m.x57*m.x79 + 0.0001*m.x57*m.x80 + 0.0001*m.x57*m.x81 + 0.0001*m.x57*m.x82 +
0.0001*m.x57*m.x83 + 0.0001*m.x57*m.x84 + 0.0001*m.x57*m.x85 + 0.0001*m.x57*m.x86 + 0.0001*m.x57*
m.x87 + 0.0001*m.x57*m.x88 + 0.0001*m.x57*m.x89 + 0.0001*m.x57*m.x90 + 0.0001*m.x57*m.x91 +
0.0001*m.x57*m.x92 + 0.0001*m.x57*m.x93 + 3.21771003868294*m.x57*m.x94 + 0.0001*m.x57*m.x95 +
0.0001*m.x57*m.x96 + 0.0001*m.x57*m.x97 + 0.0001*m.x57*m.x98 + 0.0001*m.x57*m.x99 + 0.0001*m.x57*
m.x100 + 0.0001*m.x57*m.x101 + 0.0001*m.x57*m.x102 + 0.0001*m.x57*m.x103 + 0.0001*m.x57*m.x104 +
0.0001*m.x57*m.x105 + 0.0001*m.x57*m.x106 + 0.0001*m.x57*m.x107 + 0.0001*m.x57*m.x108 + 0.0001*
m.x57*m.x109 + 0.0001*m.x57*m.x110 + 0.0001*m.x57*m.x111 + 0.0001*m.x57*m.x112 + 0.0001*m.x57*
m.x113 + 0.0001*m.x57*m.x114 + 0.0001*m.x57*m.x115 + 0.0001*m.x57*m.x116 + 0.0001*m.x57*m.x117 +
0.0001*m.x57*m.x118 + 0.0001*m.x57*m.x119 + 0.0001*m.x57*m.x120 + 0.0001*m.x57*m.x121 + 0.0001*
m.x57*m.x122 + 0.0001*m.x57*m.x123 + 0.0001*m.x57*m.x124 + 0.0001*m.x57*m.x125 + 0.0001*m.x57*
m.x126 + 0.0001*m.x57*m.x127 + 0.0001*m.x57*m.x128 + 0.0001*m.x57*m.x129 + 0.0001*m.x57*m.x130 +
0.447942246308306*m.x57*m.x131 + 0.0001*m.x57*m.x132 + 0.0001*m.x57*m.x133 + 0.0001*m.x57*m.x134
+ 0.0001*m.x57*m.x135 + 0.0001*m.x57*m.x136 + 0.0001*m.x57*m.x137 + 0.0001*m.x57*m.x138 + 0.0001
*m.x57*m.x139 + 0.0001*m.x57*m.x140 + 0.0001*m.x57*m.x141 + 0.0001*m.x57*m.x142 + 0.0001*m.x57*
m.x143 + 0.0001*m.x57*m.x144 + 0.0001*m.x57*m.x145 + 0.0001*m.x57*m.x146 + 0.0001*m.x57*m.x147 +
0.0001*m.x57*m.x148 + 0.0001*m.x57*m.x149 + 0.0001*m.x57*m.x150 + 0.0001*m.x57*m.x151 + 0.0001*
m.x57*m.x152 + 0.0001*m.x57*m.x153 + 0.0001*m.x57*m.x154 + 0.0001*m.x57*m.x155 + 0.0001*m.x57*
m.x156 + 0.0001*m.x57*m.x157 + 0.0001*m.x57*m.x158 + 0.0001*m.x57*m.x159 + 0.0001*m.x57*m.x160 +
0.0001*m.x57*m.x161 + 0.0001*m.x57*m.x162 + 0.0001*m.x57*m.x163 + 0.0001*m.x57*m.x164 + 0.0001*
m.x57*m.x165 + 0.0001*m.x57*m.x166 + 0.0001*m.x57*m.x167 + 0.0001*m.x57*m.x168 + 0.0001*m.x57*
m.x169 + 0.0001*m.x57*m.x170 + 0.0001*m.x57*m.x171 + 0.0001*m.x57*m.x172 + 0.0001*m.x57*m.x173 +
0.0001*m.x57*m.x174 + 0.0001*m.x57*m.x175 + 0.0001*m.x57*m.x176 + 0.0001*m.x57*m.x177 + 0.0001*
m.x57*m.x178 + 0.0001*m.x57*m.x179 + 0.0001*m.x57*m.x180 + 0.0001*m.x57*m.x181 + 0.0001*m.x57*
m.x182 + 0.0001*m.x57*m.x183 + 0.0001*m.x57*m.x184 + 0.0001*m.x57*m.x185 + 0.0001*m.x58*m.x1 +
0.0001*m.x58*m.x2 + 0.0001*m.x58*m.x3 + 0.0001*m.x58*m.x4 + 0.0001*m.x58*m.x5 + 0.0001*m.x58*m.x6
+ 0.0001*m.x58*m.x7 + 0.0001*m.x58*m.x8 + 0.0001*m.x58*m.x9 + 0.0001*m.x58*m.x10 + 0.0001*m.x58*
m.x11 + 0.0001*m.x58*m.x12 + 0.0001*m.x58*m.x13 + 0.0001*m.x58*m.x14 + 0.0001*m.x58*m.x15 +
0.0001*m.x58*m.x16 + 0.0001*m.x58*m.x17 + 0.0001*m.x58*m.x18 + 0.0001*m.x58*m.x19 + 0.0001*m.x58*
m.x20 + 0.0001*m.x58*m.x21 + 0.0001*m.x58*m.x22 + 0.0001*m.x58*m.x23 + 0.0001*m.x58*m.x24 +
0.0001*m.x58*m.x25 + 0.221547820101383*m.x58*m.x26 + 0.0001*m.x58*m.x27 + 0.0001*m.x58*m.x28 +
0.0001*m.x58*m.x29 + 0.0001*m.x58*m.x30 + 0.0001*m.x58*m.x31 + 0.0001*m.x58*m.x32 + 0.0001*m.x58*
m.x33 + 0.0001*m.x58*m.x34 + 0.0001*m.x58*m.x35 + 0.0001*m.x58*m.x36 + 0.0001*m.x58*m.x37 +
0.0001*m.x58*m.x38 + 0.0001*m.x58*m.x39 + 0.0001*m.x58*m.x40 + 0.0001*m.x58*m.x41 + 0.0001*m.x58*
m.x42 + 0.0001*m.x58*m.x43 + 0.0001*m.x58*m.x44 + 0.0001*m.x58*m.x45 + 0.0001*m.x58*m.x46 +
0.0001*m.x58*m.x47 + 0.0001*m.x58*m.x48 + 0.0001*m.x58*m.x49 + 0.0001*m.x58*m.x50 + 0.0001*m.x58*
m.x51 + 0.0001*m.x58*m.x52 + 0.0001*m.x58*m.x53 + 0.0001*m.x58*m.x54 + 0.0001*m.x58*m.x55 +
0.0001*m.x58*m.x56 + 0.0001*m.x58*m.x57 + 1.13455229244314*m.x58**2 + 0.0001*m.x58*m.x59 + 0.0001
*m.x58*m.x60 + 0.0001*m.x58*m.x61 + 0.0001*m.x58*m.x62 + 0.0001*m.x58*m.x63 + 0.0001*m.x58*m.x64
+ 0.0001*m.x58*m.x65 + 0.0001*m.x58*m.x66 + 0.0001*m.x58*m.x67 + 0.0001*m.x58*m.x68 + 0.0001*
m.x58*m.x69 + 0.0001*m.x58*m.x70 + 0.0001*m.x58*m.x71 + 0.0001*m.x58*m.x72 + 0.0001*m.x58*m.x73
+ 0.0001*m.x58*m.x74 + 0.0001*m.x58*m.x75 + 0.0001*m.x58*m.x76 + 0.0001*m.x58*m.x77 + 0.0001*
m.x58*m.x78 + 0.0001*m.x58*m.x79 + 0.0001*m.x58*m.x80 + 0.0001*m.x58*m.x81 + 0.0001*m.x58*m.x82
+ 0.0001*m.x58*m.x83 + 0.0001*m.x58*m.x84 + 0.0001*m.x58*m.x85 + 0.0001*m.x58*m.x86 + 0.0001*
m.x58*m.x87 + 0.0001*m.x58*m.x88 + 0.0001*m.x58*m.x89 + 0.0001*m.x58*m.x90 + 0.0001*m.x58*m.x91
+ 0.0001*m.x58*m.x92 + 0.0001*m.x58*m.x93 + 0.0001*m.x58*m.x94 + 3.17841006619937*m.x58*m.x95 +
0.0001*m.x58*m.x96 + 0.0001*m.x58*m.x97 + 0.0001*m.x58*m.x98 + 0.0001*m.x58*m.x99 + 0.0001*m.x58*
m.x100 + 0.0001*m.x58*m.x101 + 0.0001*m.x58*m.x102 + 0.0001*m.x58*m.x103 + 0.0001*m.x58*m.x104 +
0.0001*m.x58*m.x105 + 0.0001*m.x58*m.x106 + 0.0001*m.x58*m.x107 + 0.0001*m.x58*m.x108 + 0.0001*
m.x58*m.x109 + 0.0001*m.x58*m.x110 + 0.0001*m.x58*m.x111 + 0.0001*m.x58*m.x112 + 0.0001*m.x58*
m.x113 + 0.0001*m.x58*m.x114 + 0.0001*m.x58*m.x115 + 0.0001*m.x58*m.x116 + 0.0001*m.x58*m.x117 +
0.0001*m.x58*m.x118 + 0.0001*m.x58*m.x119 + 0.0001*m.x58*m.x120 + 0.0001*m.x58*m.x121 + 0.0001*
m.x58*m.x122 + 0.0001*m.x58*m.x123 + 0.0001*m.x58*m.x124 + 0.0001*m.x58*m.x125 + 0.0001*m.x58*
m.x126 + 0.0001*m.x58*m.x127 + 0.0001*m.x58*m.x128 + 0.0001*m.x58*m.x129 + 0.0001*m.x58*m.x130 +
0.0001*m.x58*m.x131 + 0.475488660826549*m.x58*m.x132 + 0.0001*m.x58*m.x133 + 0.0001*m.x58*m.x134
+ 0.0001*m.x58*m.x135 + 0.0001*m.x58*m.x136 + 0.0001*m.x58*m.x137 + 0.0001*m.x58*m.x138 + 0.0001
*m.x58*m.x139 + 0.0001*m.x58*m.x140 + 0.0001*m.x58*m.x141 + 0.0001*m.x58*m.x142 + 0.0001*m.x58*
m.x143 + 0.0001*m.x58*m.x144 + 0.0001*m.x58*m.x145 + 0.0001*m.x58*m.x146 + 0.0001*m.x58*m.x147 +
0.0001*m.x58*m.x148 + 0.0001*m.x58*m.x149 + 0.0001*m.x58*m.x150 + 0.0001*m.x58*m.x151 + 0.0001*
m.x58*m.x152 + 0.0001*m.x58*m.x153 + 0.0001*m.x58*m.x154 + 0.0001*m.x58*m.x155 + 0.0001*m.x58*
m.x156 + 0.0001*m.x58*m.x157 + 0.0001*m.x58*m.x158 + 0.0001*m.x58*m.x159 + 0.0001*m.x58*m.x160 +
0.0001*m.x58*m.x161 + 0.0001*m.x58*m.x162 + 0.0001*m.x58*m.x163 + 0.0001*m.x58*m.x164 + 0.0001*
m.x58*m.x165 + 0.0001*m.x58*m.x166 + 0.0001*m.x58*m.x167 + 0.0001*m.x58*m.x168 + 0.0001*m.x58*
m.x169 + 0.0001*m.x58*m.x170 + 0.0001*m.x58*m.x171 + 0.0001*m.x58*m.x172 + 0.0001*m.x58*m.x173 +
0.0001*m.x58*m.x174 + 0.0001*m.x58*m.x175 + 0.0001*m.x58*m.x176 + 0.0001*m.x58*m.x177 + 0.0001*
m.x58*m.x178 + 0.0001*m.x58*m.x179 + 0.0001*m.x58*m.x180 + 0.0001*m.x58*m.x181 + 0.0001*m.x58*
m.x182 + 0.0001*m.x58*m.x183 + 0.0001*m.x58*m.x184 + 0.0001*m.x58*m.x185 + 0.0001*m.x59*m.x1 +
0.0001*m.x59*m.x2 + 0.0001*m.x59*m.x3 + 0.0001*m.x59*m.x4 + 0.0001*m.x59*m.x5 + 0.0001*m.x59*m.x6
+ 0.0001*m.x59*m.x7 + 0.0001*m.x59*m.x8 + 0.0001*m.x59*m.x9 + 0.0001*m.x59*m.x10 + 0.0001*m.x59*
m.x11 + 0.0001*m.x59*m.x12 + 0.0001*m.x59*m.x13 + 0.0001*m.x59*m.x14 + 0.0001*m.x59*m.x15 +
0.0001*m.x59*m.x16 + 0.0001*m.x59*m.x17 + 0.0001*m.x59*m.x18 + 0.0001*m.x59*m.x19 + 0.0001*m.x59*
m.x20 + 0.0001*m.x59*m.x21 + 0.0001*m.x59*m.x22 + 0.0001*m.x59*m.x23 + 0.0001*m.x59*m.x24 +
0.0001*m.x59*m.x25 + 0.0001*m.x59*m.x26 + 0.0001*m.x59*m.x27 + 0.0001*m.x59*m.x28 + 0.0001*m.x59*
m.x29 + 0.0001*m.x59*m.x30 + 0.0001*m.x59*m.x31 + 0.0001*m.x59*m.x32 + 0.254202322766495*m.x59*
m.x33 + 0.0001*m.x59*m.x34 + 0.0001*m.x59*m.x35 + 0.0001*m.x59*m.x36 + 0.0001*m.x59*m.x37 +
0.0001*m.x59*m.x38 + 0.0001*m.x59*m.x39 + 0.0001*m.x59*m.x40 + 0.0001*m.x59*m.x41 + 0.0001*m.x59*
m.x42 + 0.0001*m.x59*m.x43 + 0.0001*m.x59*m.x44 + 0.0001*m.x59*m.x45 + 0.0001*m.x59*m.x46 +
0.0001*m.x59*m.x47 + 0.0001*m.x59*m.x48 + 0.0001*m.x59*m.x49 + 0.0001*m.x59*m.x50 + 0.0001*m.x59*
m.x51 + 0.0001*m.x59*m.x52 + 0.0001*m.x59*m.x53 + 0.0001*m.x59*m.x54 + 0.0001*m.x59*m.x55 +
0.0001*m.x59*m.x56 + 0.0001*m.x59*m.x57 + 0.0001*m.x59*m.x58 + 1.29987796601994*m.x59**2 + 0.0001
*m.x59*m.x60 + 0.0001*m.x59*m.x61 + 0.0001*m.x59*m.x62 + 0.0001*m.x59*m.x63 + 0.0001*m.x59*m.x64
+ 0.0001*m.x59*m.x65 + 0.0001*m.x59*m.x66 + 0.0001*m.x59*m.x67 + 0.0001*m.x59*m.x68 + 0.0001*
m.x59*m.x69 + 0.0001*m.x59*m.x70 + 0.0001*m.x59*m.x71 + 0.0001*m.x59*m.x72 + 0.0001*m.x59*m.x73
+ 0.0001*m.x59*m.x74 + 0.0001*m.x59*m.x75 + 0.0001*m.x59*m.x76 + 0.0001*m.x59*m.x77 + 0.0001*
m.x59*m.x78 + 0.0001*m.x59*m.x79 + 0.0001*m.x59*m.x80 + 0.0001*m.x59*m.x81 + 0.0001*m.x59*m.x82
+ 0.0001*m.x59*m.x83 + 0.0001*m.x59*m.x84 + 0.0001*m.x59*m.x85 + 0.0001*m.x59*m.x86 + 0.0001*
m.x59*m.x87 + 0.0001*m.x59*m.x88 + 0.0001*m.x59*m.x89 + 0.0001*m.x59*m.x90 + 0.0001*m.x59*m.x91
+ 0.0001*m.x59*m.x92 + 0.0001*m.x59*m.x93 + 0.0001*m.x59*m.x94 + 0.0001*m.x59*m.x95 + 0.0001*
m.x59*m.x96 + 0.0001*m.x59*m.x97 + 0.0001*m.x59*m.x98 + 0.0001*m.x59*m.x99 + 0.0001*m.x59*m.x100
+ 3.30746319381333*m.x59*m.x101 + 0.0001*m.x59*m.x102 + 0.0001*m.x59*m.x103 + 0.0001*m.x59*
m.x104 + 0.0001*m.x59*m.x105 + 0.0001*m.x59*m.x106 + 0.0001*m.x59*m.x107 + 0.0001*m.x59*m.x108 +
0.0001*m.x59*m.x109 + 0.0001*m.x59*m.x110 + 0.0001*m.x59*m.x111 + 0.0001*m.x59*m.x112 + 0.0001*
m.x59*m.x113 + 0.0001*m.x59*m.x114 + 0.0001*m.x59*m.x115 + 0.0001*m.x59*m.x116 + 0.0001*m.x59*
m.x117 + 0.0001*m.x59*m.x118 + 0.0001*m.x59*m.x119 + 0.0001*m.x59*m.x120 + 0.0001*m.x59*m.x121 +
0.0001*m.x59*m.x122 + 0.0001*m.x59*m.x123 + 0.0001*m.x59*m.x124 + 0.0001*m.x59*m.x125 + 0.0001*
m.x59*m.x126 + 0.0001*m.x59*m.x127 + 0.0001*m.x59*m.x128 + 0.0001*m.x59*m.x129 + 0.0001*m.x59*
m.x130 + 0.0001*m.x59*m.x131 + 0.0001*m.x59*m.x132 + 0.0001*m.x59*m.x133 + 0.0001*m.x59*m.x134 +
0.0001*m.x59*m.x135 + 0.0001*m.x59*m.x136 + 0.0001*m.x59*m.x137 + 0.0001*m.x59*m.x138 +
0.552520159022577*m.x59*m.x139 + 0.0001*m.x59*m.x140 + 0.0001*m.x59*m.x141 + 0.0001*m.x59*m.x142
+ 0.0001*m.x59*m.x143 + 0.0001*m.x59*m.x144 + 0.0001*m.x59*m.x145 + 0.0001*m.x59*m.x146 + 0.0001
*m.x59*m.x147 + 0.0001*m.x59*m.x148 + 0.0001*m.x59*m.x149 + 0.0001*m.x59*m.x150 + 0.0001*m.x59*
m.x151 + 0.0001*m.x59*m.x152 + 0.0001*m.x59*m.x153 + 0.0001*m.x59*m.x154 + 0.0001*m.x59*m.x155 +
0.0001*m.x59*m.x156 + 0.0001*m.x59*m.x157 + 0.0001*m.x59*m.x158 + 0.0001*m.x59*m.x159 + 0.0001*
m.x59*m.x160 + 0.0001*m.x59*m.x161 + 0.0001*m.x59*m.x162 + 0.0001*m.x59*m.x163 + 0.0001*m.x59*
m.x164 + 0.0001*m.x59*m.x165 + 0.0001*m.x59*m.x166 + 0.0001*m.x59*m.x167 + 0.0001*m.x59*m.x168 +
0.0001*m.x59*m.x169 + 0.0001*m.x59*m.x170 + 0.0001*m.x59*m.x171 + 0.0001*m.x59*m.x172 + 0.0001*
m.x59*m.x173 + 0.0001*m.x59*m.x174 + 0.0001*m.x59*m.x175 + 0.0001*m.x59*m.x176 + 0.0001*m.x59*
m.x177 + 0.0001*m.x59*m.x178 + 0.0001*m.x59*m.x179 + 0.0001*m.x59*m.x180 + 0.0001*m.x59*m.x181 +
0.0001*m.x59*m.x182 + 0.0001*m.x59*m.x183 + 0.0001*m.x59*m.x184 + 0.0001*m.x59*m.x185 + 0.0001*
m.x60*m.x1 + 0.0001*m.x60*m.x2 + 0.0001*m.x60*m.x3 + 0.0001*m.x60*m.x4 + 0.0001*m.x60*m.x5 +
0.0001*m.x60*m.x6 + 0.0001*m.x60*m.x7 + 0.0001*m.x60*m.x8 + 0.0001*m.x60*m.x9 + 0.0001*m.x60*
m.x10 + 0.0001*m.x60*m.x11 + 0.0001*m.x60*m.x12 + 0.0001*m.x60*m.x13 + 0.0001*m.x60*m.x14 +
0.0001*m.x60*m.x15 + 0.0001*m.x60*m.x16 + 0.0001*m.x60*m.x17 + 0.0001*m.x60*m.x18 + 0.0001*m.x60*
m.x19 + 0.0001*m.x60*m.x20 + 0.0001*m.x60*m.x21 + 0.0001*m.x60*m.x22 + 0.0001*m.x60*m.x23 +
0.0001*m.x60*m.x24 + 0.0001*m.x60*m.x25 + 0.0001*m.x60*m.x26 + 0.0001*m.x60*m.x27 + 0.0001*m.x60*
m.x28 + 0.0001*m.x60*m.x29 + 0.0001*m.x60*m.x30 + 0.0001*m.x60*m.x31 + 0.0001*m.x60*m.x32 +
0.0001*m.x60*m.x33 + 0.0001*m.x60*m.x34 + 0.0001*m.x60*m.x35 + 0.0001*m.x60*m.x36 + 0.0001*m.x60*
m.x37 + 0.0001*m.x60*m.x38 + 0.0001*m.x60*m.x39 + 0.0001*m.x60*m.x40 + 0.0001*m.x60*m.x41 +
0.0001*m.x60*m.x42 + 0.0001*m.x60*m.x43 + 0.0001*m.x60*m.x44 + 0.0001*m.x60*m.x45 + 0.0001*m.x60*
m.x46 + 0.0001*m.x60*m.x47 + 0.0001*m.x60*m.x48 + 0.0001*m.x60*m.x49 + 0.0001*m.x60*m.x50 +
0.0001*m.x60*m.x51 + 0.0001*m.x60*m.x52 + 0.0001*m.x60*m.x53 + 0.0001*m.x60*m.x54 + 0.0001*m.x60*
m.x55 + 0.0001*m.x60*m.x56 + 0.0001*m.x60*m.x57 + 0.0001*m.x60*m.x58 + 0.0001*m.x60*m.x59 +
12.0224048103097*m.x60**2 + 0.0001*m.x60*m.x61 + 0.0001*m.x60*m.x62 + 0.0001*m.x60*m.x63 + 0.0001
*m.x60*m.x64 + 0.0001*m.x60*m.x65 + 0.0001*m.x60*m.x66 + 0.0001*m.x60*m.x67 + 0.0001*m.x60*m.x68
+ 0.0001*m.x60*m.x69 + 0.0001*m.x60*m.x70 + 0.0001*m.x60*m.x71 + 5.09752086313842*m.x60*m.x72 +
0.0001*m.x60*m.x73 + 0.0001*m.x60*m.x74 + 0.0001*m.x60*m.x75 + 0.0001*m.x60*m.x76 + 0.0001*m.x60*
m.x77 + 0.0001*m.x60*m.x78 + 0.0001*m.x60*m.x79 + 0.0001*m.x60*m.x80 + 0.0001*m.x60*m.x81 +
0.0001*m.x60*m.x82 + 0.0001*m.x60*m.x83 + 0.0001*m.x60*m.x84 + 0.0001*m.x60*m.x85 + 0.0001*m.x60*
m.x86 + 0.0001*m.x60*m.x87 + 0.0001*m.x60*m.x88 + 0.0001*m.x60*m.x89 + 0.0001*m.x60*m.x90 +
0.0001*m.x60*m.x91 + 0.0001*m.x60*m.x92 + 0.0001*m.x60*m.x93 + 0.0001*m.x60*m.x94 + 0.0001*m.x60*
m.x95 + 0.0001*m.x60*m.x96 + 0.0001*m.x60*m.x97 + 0.0001*m.x60*m.x98 + 0.0001*m.x60*m.x99 +
0.0001*m.x60*m.x100 + 0.0001*m.x60*m.x101 + 0.0001*m.x60*m.x102 + 0.0001*m.x60*m.x103 + 0.0001*
m.x60*m.x104 + 0.0001*m.x60*m.x105 + 0.0001*m.x60*m.x106 + 0.0001*m.x60*m.x107 + 0.0001*m.x60*
m.x108 + 0.0001*m.x60*m.x109 + 0.0001*m.x60*m.x110 + 0.0001*m.x60*m.x111 + 0.0001*m.x60*m.x112 +
0.0001*m.x60*m.x113 + 0.0001*m.x60*m.x114 + 0.0001*m.x60*m.x115 + 0.0001*m.x60*m.x116 +
0.510414133291693*m.x60*m.x117 + 0.0001*m.x60*m.x118 + 0.0001*m.x60*m.x119 + 0.0001*m.x60*m.x120
+ 0.0001*m.x60*m.x121 + 0.0001*m.x60*m.x122 + 0.0001*m.x60*m.x123 + 0.0001*m.x60*m.x124 + 0.0001
*m.x60*m.x125 + 0.0001*m.x60*m.x126 + 0.0001*m.x60*m.x127 + 0.0001*m.x60*m.x128 + 0.0001*m.x60*
m.x129 + 0.0001*m.x60*m.x130 + 0.0001*m.x60*m.x131 + 0.0001*m.x60*m.x132 + 0.0001*m.x60*m.x133 +
0.0001*m.x60*m.x134 + 0.0001*m.x60*m.x135 + 0.0001*m.x60*m.x136 + 0.0001*m.x60*m.x137 + 0.0001*
m.x60*m.x138 + 0.0001*m.x60*m.x139 + 0.0001*m.x60*m.x140 + 0.0001*m.x60*m.x141 + 0.0001*m.x60*
m.x142 + 0.709657765000672*m.x60*m.x143 + 0.0001*m.x60*m.x144 + 0.0001*m.x60*m.x145 + 0.0001*
m.x60*m.x146 + 0.0001*m.x60*m.x147 + 0.0001*m.x60*m.x148 + 0.0001*m.x60*m.x149 + 0.0001*m.x60*
m.x150 + 0.0001*m.x60*m.x151 + 0.0001*m.x60*m.x152 + 0.0001*m.x60*m.x153 + 0.0001*m.x60*m.x154 +
0.0001*m.x60*m.x155 + 0.0001*m.x60*m.x156 + 0.0001*m.x60*m.x157 + 0.496930732887788*m.x60*m.x158
+ 0.0001*m.x60*m.x159 + 0.0001*m.x60*m.x160 + 0.0001*m.x60*m.x161 + 0.0001*m.x60*m.x162 + 0.0001
*m.x60*m.x163 + 0.0001*m.x60*m.x164 + 0.0001*m.x60*m.x165 + 0.0001*m.x60*m.x166 + 0.0001*m.x60*
m.x167 + 0.0001*m.x60*m.x168 + 0.0001*m.x60*m.x169 + 0.0001*m.x60*m.x170 + 0.0001*m.x60*m.x171 +
0.0001*m.x60*m.x172 + 0.0001*m.x60*m.x173 + 0.0001*m.x60*m.x174 + 0.0001*m.x60*m.x175 + 0.0001*
m.x60*m.x176 + 0.0001*m.x60*m.x177 + 0.0001*m.x60*m.x178 + 0.0001*m.x60*m.x179 + 0.0001*m.x60*
m.x180 + 0.0001*m.x60*m.x181 + 0.0001*m.x60*m.x182 + 0.0001*m.x60*m.x183 + 0.0001*m.x60*m.x184 +
0.0001*m.x60*m.x185 + 0.0001*m.x61*m.x1 + 0.0001*m.x61*m.x2 + 0.0001*m.x61*m.x3 + 0.0001*m.x61*
m.x4 + 0.0001*m.x61*m.x5 + 0.0001*m.x61*m.x6 + 0.0001*m.x61*m.x7 + 0.0001*m.x61*m.x8 + 0.0001*
m.x61*m.x9 + 0.0001*m.x61*m.x10 + 0.0001*m.x61*m.x11 + 0.0001*m.x61*m.x12 + 0.0001*m.x61*m.x13 +
0.0001*m.x61*m.x14 + 0.0001*m.x61*m.x15 + 0.0001*m.x61*m.x16 + 0.0001*m.x61*m.x17 + 0.0001*m.x61*
m.x18 + 0.0001*m.x61*m.x19 + 0.0001*m.x61*m.x20 + 0.0001*m.x61*m.x21 + 0.0001*m.x61*m.x22 +
0.0001*m.x61*m.x23 + 0.0001*m.x61*m.x24 + 0.0001*m.x61*m.x25 + 0.0001*m.x61*m.x26 + 0.0001*m.x61*
m.x27 + 0.0001*m.x61*m.x28 + 0.0001*m.x61*m.x29 + 0.0001*m.x61*m.x30 + 0.0001*m.x61*m.x31 +
0.0001*m.x61*m.x32 + 0.0001*m.x61*m.x33 + 0.0001*m.x61*m.x34 + 0.0001*m.x61*m.x35 + 0.0001*m.x61*
m.x36 + 0.0001*m.x61*m.x37 + 0.0001*m.x61*m.x38 + 0.0001*m.x61*m.x39 + 0.0001*m.x61*m.x40 +
0.0001*m.x61*m.x41 + 0.0001*m.x61*m.x42 + 0.0001*m.x61*m.x43 + 0.0001*m.x61*m.x44 + 0.0001*m.x61*
m.x45 + 0.0001*m.x61*m.x46 + 0.0001*m.x61*m.x47 + 0.0001*m.x61*m.x48 + 0.0001*m.x61*m.x49 +
0.0001*m.x61*m.x50 + 0.0001*m.x61*m.x51 + 0.0001*m.x61*m.x52 + 0.0001*m.x61*m.x53 + 0.0001*m.x61*
m.x54 + 0.0001*m.x61*m.x55 + 0.0001*m.x61*m.x56 + 0.0001*m.x61*m.x57 + 0.0001*m.x61*m.x58 +
0.0001*m.x61*m.x59 + 0.0001*m.x61*m.x60 + 10.4544359319946*m.x61**2 + 0.0001*m.x61*m.x62 + 0.0001
*m.x61*m.x63 + 0.0001*m.x61*m.x64 + 0.0001*m.x61*m.x65 + 0.0001*m.x61*m.x66 + 0.0001*m.x61*m.x67
+ 0.0001*m.x61*m.x68 + 0.0001*m.x61*m.x69 + 0.0001*m.x61*m.x70 + 0.0001*m.x61*m.x71 + 0.0001*
m.x61*m.x72 + 4.68006349519818*m.x61*m.x73 + 0.0001*m.x61*m.x74 + 0.0001*m.x61*m.x75 + 0.0001*
m.x61*m.x76 + 0.0001*m.x61*m.x77 + 0.0001*m.x61*m.x78 + 0.0001*m.x61*m.x79 + 0.0001*m.x61*m.x80
+ 0.0001*m.x61*m.x81 + 0.0001*m.x61*m.x82 + 0.0001*m.x61*m.x83 + 0.0001*m.x61*m.x84 + 0.0001*
m.x61*m.x85 + 0.0001*m.x61*m.x86 + 0.0001*m.x61*m.x87 + 0.0001*m.x61*m.x88 + 0.0001*m.x61*m.x89
+ 0.0001*m.x61*m.x90 + 0.0001*m.x61*m.x91 + 0.0001*m.x61*m.x92 + 0.0001*m.x61*m.x93 + 0.0001*
m.x61*m.x94 + 0.0001*m.x61*m.x95 + 0.0001*m.x61*m.x96 + 0.0001*m.x61*m.x97 + 0.0001*m.x61*m.x98
+ 0.0001*m.x61*m.x99 + 0.0001*m.x61*m.x100 + 0.0001*m.x61*m.x101 + 0.0001*m.x61*m.x102 + 0.0001*
m.x61*m.x103 + 0.0001*m.x61*m.x104 + 0.0001*m.x61*m.x105 + 0.0001*m.x61*m.x106 + 0.0001*m.x61*
m.x107 + 0.0001*m.x61*m.x108 + 0.0001*m.x61*m.x109 + 0.0001*m.x61*m.x110 + 0.0001*m.x61*m.x111 +
0.0001*m.x61*m.x112 + 0.0001*m.x61*m.x113 + 0.0001*m.x61*m.x114 + 0.0001*m.x61*m.x115 + 0.0001*
m.x61*m.x116 + 0.0001*m.x61*m.x117 + 0.0001*m.x61*m.x118 + 0.0001*m.x61*m.x119 + 0.0001*m.x61*
m.x120 + 0.0001*m.x61*m.x121 + 0.0001*m.x61*m.x122 + 0.0001*m.x61*m.x123 + 0.0001*m.x61*m.x124 +
0.0001*m.x61*m.x125 + 0.0001*m.x61*m.x126 + 0.0001*m.x61*m.x127 + 0.0001*m.x61*m.x128 + 0.0001*
m.x61*m.x129 + 0.0001*m.x61*m.x130 + 0.0001*m.x61*m.x131 + 0.0001*m.x61*m.x132 + 0.0001*m.x61*
m.x133 + 0.0001*m.x61*m.x134 + 0.0001*m.x61*m.x135 + 0.0001*m.x61*m.x136 + 0.0001*m.x61*m.x137 +
0.0001*m.x61*m.x138 + 0.0001*m.x61*m.x139 + 0.0001*m.x61*m.x140 + 0.0001*m.x61*m.x141 + 0.0001*
m.x61*m.x142 + 0.0001*m.x61*m.x143 + 0.0001*m.x61*m.x144 + 0.0001*m.x61*m.x145 + 0.0001*m.x61*
m.x146 + 0.0001*m.x61*m.x147 + 0.0001*m.x61*m.x148 + 0.0001*m.x61*m.x149 + 0.0001*m.x61*m.x150 +
0.0001*m.x61*m.x151 + 0.0001*m.x61*m.x152 + 0.0001*m.x61*m.x153 + 0.0001*m.x61*m.x154 + 0.0001*
m.x61*m.x155 + 0.0001*m.x61*m.x156 + 0.0001*m.x61*m.x157 + 0.0001*m.x61*m.x158 + 0.0001*m.x61*
m.x159 + 0.0001*m.x61*m.x160 + 0.0001*m.x61*m.x161 + 0.0001*m.x61*m.x162 + 0.0001*m.x61*m.x163 +
0.0001*m.x61*m.x164 + 0.0001*m.x61*m.x165 + 0.0001*m.x61*m.x166 + 0.0001*m.x61*m.x167 + 0.0001*
m.x61*m.x168 + 0.0001*m.x61*m.x169 + 0.0001*m.x61*m.x170 + 0.0001*m.x61*m.x171 + 0.0001*m.x61*
m.x172 + 0.0001*m.x61*m.x173 + 0.0001*m.x61*m.x174 + 0.0001*m.x61*m.x175 + 0.0001*m.x61*m.x176 +
0.0001*m.x61*m.x177 + 0.0001*m.x61*m.x178 + 0.0001*m.x61*m.x179 + 0.0001*m.x61*m.x180 + 0.0001*
m.x61*m.x181 + 0.0001*m.x61*m.x182 + 0.0001*m.x61*m.x183 + 0.0001*m.x61*m.x184 + 0.0001*m.x61*
m.x185 + 0.0001*m.x62*m.x1 + 0.0001*m.x62*m.x2 + 0.0001*m.x62*m.x3 + 0.0001*m.x62*m.x4 + 0.0001*
m.x62*m.x5 + 0.0001*m.x62*m.x6 + 0.0001*m.x62*m.x7 + 0.0001*m.x62*m.x8 + 0.0001*m.x62*m.x9 +
0.0001*m.x62*m.x10 + 0.0001*m.x62*m.x11 + 0.0001*m.x62*m.x12 + 0.0001*m.x62*m.x13 + 0.0001*m.x62*
m.x14 + 0.0001*m.x62*m.x15 + 0.0001*m.x62*m.x16 + 0.0001*m.x62*m.x17 + 0.0001*m.x62*m.x18 +
0.0001*m.x62*m.x19 + 0.0001*m.x62*m.x20 + 0.0001*m.x62*m.x21 + 0.0001*m.x62*m.x22 + 0.0001*m.x62*
m.x23 + 0.0001*m.x62*m.x24 + 0.0001*m.x62*m.x25 + 0.0001*m.x62*m.x26 + 0.0001*m.x62*m.x27 +
0.0001*m.x62*m.x28 + 0.0001*m.x62*m.x29 + 0.0001*m.x62*m.x30 + 0.0001*m.x62*m.x31 + 0.0001*m.x62*
m.x32 + 0.0001*m.x62*m.x33 + 0.0001*m.x62*m.x34 + 0.0001*m.x62*m.x35 + 0.0001*m.x62*m.x36 +
0.0001*m.x62*m.x37 + 0.0001*m.x62*m.x38 + 0.0001*m.x62*m.x39 + 0.0001*m.x62*m.x40 + 0.0001*m.x62*
m.x41 + 0.0001*m.x62*m.x42 + 0.0001*m.x62*m.x43 + 0.0001*m.x62*m.x44 + 0.0001*m.x62*m.x45 +
0.0001*m.x62*m.x46 + 0.0001*m.x62*m.x47 + 0.0001*m.x62*m.x48 + 0.0001*m.x62*m.x49 + 0.0001*m.x62*
m.x50 + 0.0001*m.x62*m.x51 + 0.0001*m.x62*m.x52 + 0.0001*m.x62*m.x53 + 0.0001*m.x62*m.x54 +
0.0001*m.x62*m.x55 + 0.0001*m.x62*m.x56 + 0.0001*m.x62*m.x57 + 0.0001*m.x62*m.x58 + 0.0001*m.x62*
m.x59 + 0.0001*m.x62*m.x60 + 0.0001*m.x62*m.x61 + 12.8230624031191*m.x62**2 + 0.0001*m.x62*m.x63
+ 0.0001*m.x62*m.x64 + 0.0001*m.x62*m.x65 + 0.0001*m.x62*m.x66 + 0.0001*m.x62*m.x67 + 0.0001*
m.x62*m.x68 + 0.0001*m.x62*m.x69 + 0.0001*m.x62*m.x70 + 0.0001*m.x62*m.x71 + 0.0001*m.x62*m.x72
+ 0.0001*m.x62*m.x73 + 5.74039726395508*m.x62*m.x74 + 0.0001*m.x62*m.x75 + 0.0001*m.x62*m.x76 +
0.0001*m.x62*m.x77 + 0.0001*m.x62*m.x78 + 0.0001*m.x62*m.x79 + 0.0001*m.x62*m.x80 + 0.0001*m.x62*
m.x81 + 0.0001*m.x62*m.x82 + 0.0001*m.x62*m.x83 + 0.0001*m.x62*m.x84 + 0.0001*m.x62*m.x85 +
0.0001*m.x62*m.x86 + 0.0001*m.x62*m.x87 + 0.0001*m.x62*m.x88 + 0.0001*m.x62*m.x89 + 0.0001*m.x62*
m.x90 + 0.0001*m.x62*m.x91 + 0.0001*m.x62*m.x92 + 0.0001*m.x62*m.x93 + 0.0001*m.x62*m.x94 +
0.0001*m.x62*m.x95 + 0.0001*m.x62*m.x96 + 0.0001*m.x62*m.x97 + 0.0001*m.x62*m.x98 + 0.0001*m.x62*
m.x99 + 0.0001*m.x62*m.x100 + 0.0001*m.x62*m.x101 + 0.0001*m.x62*m.x102 + 0.0001*m.x62*m.x103 +
0.0001*m.x62*m.x104 + 0.0001*m.x62*m.x105 + 0.0001*m.x62*m.x106 + 0.0001*m.x62*m.x107 + 0.0001*
m.x62*m.x108 + 0.0001*m.x62*m.x109 + 0.0001*m.x62*m.x110 + 0.0001*m.x62*m.x111 + 0.0001*m.x62*
m.x112 + 0.0001*m.x62*m.x113 + 0.0001*m.x62*m.x114 + 0.0001*m.x62*m.x115 + 0.0001*m.x62*m.x116 +
0.0001*m.x62*m.x117 + 0.0001*m.x62*m.x118 + 0.0001*m.x62*m.x119 + 0.0001*m.x62*m.x120 + 0.0001*
m.x62*m.x121 + 0.0001*m.x62*m.x122 + 0.0001*m.x62*m.x123 + 0.0001*m.x62*m.x124 + 0.0001*m.x62*
m.x125 + 0.0001*m.x62*m.x126 + 0.0001*m.x62*m.x127 + 0.0001*m.x62*m.x128 + 0.0001*m.x62*m.x129 +
0.0001*m.x62*m.x130 + 0.0001*m.x62*m.x131 + 0.0001*m.x62*m.x132 + 0.0001*m.x62*m.x133 + 0.0001*
m.x62*m.x134 + 0.0001*m.x62*m.x135 + 0.0001*m.x62*m.x136 + 0.0001*m.x62*m.x137 + 0.0001*m.x62*
m.x138 + 0.0001*m.x62*m.x139 + 0.0001*m.x62*m.x140 + 0.0001*m.x62*m.x141 + 0.0001*m.x62*m.x142 +
0.0001*m.x62*m.x143 + 0.0001*m.x62*m.x144 + 0.0001*m.x62*m.x145 + 0.0001*m.x62*m.x146 + 0.0001*
m.x62*m.x147 + 0.0001*m.x62*m.x148 + 0.0001*m.x62*m.x149 + 0.0001*m.x62*m.x150 + 0.0001*m.x62*
m.x151 + 0.0001*m.x62*m.x152 + 0.0001*m.x62*m.x153 + 0.0001*m.x62*m.x154 + 0.0001*m.x62*m.x155 +
0.0001*m.x62*m.x156 + 0.0001*m.x62*m.x157 + 0.0001*m.x62*m.x158 + 0.0001*m.x62*m.x159 + 0.0001*
m.x62*m.x160 + 0.0001*m.x62*m.x161 + 0.0001*m.x62*m.x162 + 0.0001*m.x62*m.x163 + 0.0001*m.x62*
m.x164 + 0.0001*m.x62*m.x165 + 0.0001*m.x62*m.x166 + 0.0001*m.x62*m.x167 + 0.0001*m.x62*m.x168 +
0.0001*m.x62*m.x169 + 0.0001*m.x62*m.x170 + 0.0001*m.x62*m.x171 + 0.0001*m.x62*m.x172 + 0.0001*
m.x62*m.x173 + 0.0001*m.x62*m.x174 + 0.0001*m.x62*m.x175 + 0.0001*m.x62*m.x176 + 0.0001*m.x62*
m.x177 + 0.0001*m.x62*m.x178 + 0.0001*m.x62*m.x179 + 0.0001*m.x62*m.x180 + 0.0001*m.x62*m.x181 +
0.0001*m.x62*m.x182 + 0.0001*m.x62*m.x183 + 0.0001*m.x62*m.x184 + 0.0001*m.x62*m.x185 + 0.0001*
m.x63*m.x1 + 0.0001*m.x63*m.x2 + 0.0001*m.x63*m.x3 + 0.0001*m.x63*m.x4 + 0.0001*m.x63*m.x5 +
0.0001*m.x63*m.x6 + 0.0001*m.x63*m.x7 + 0.0001*m.x63*m.x8 + 0.0001*m.x63*m.x9 + 0.0001*m.x63*
m.x10 + 0.0001*m.x63*m.x11 + 0.0001*m.x63*m.x12 + 0.0001*m.x63*m.x13 + 0.0001*m.x63*m.x14 +
0.0001*m.x63*m.x15 + 0.0001*m.x63*m.x16 + 0.0001*m.x63*m.x17 + 0.0001*m.x63*m.x18 + 0.0001*m.x63*
m.x19 + 0.0001*m.x63*m.x20 + 0.0001*m.x63*m.x21 + 0.0001*m.x63*m.x22 + 0.0001*m.x63*m.x23 +
0.0001*m.x63*m.x24 + 0.0001*m.x63*m.x25 + 0.0001*m.x63*m.x26 + 0.0001*m.x63*m.x27 + 0.0001*m.x63*
m.x28 + 0.0001*m.x63*m.x29 + 0.0001*m.x63*m.x30 + 0.0001*m.x63*m.x31 + 0.0001*m.x63*m.x32 +
0.0001*m.x63*m.x33 + 0.0001*m.x63*m.x34 + 0.0001*m.x63*m.x35 + 0.0001*m.x63*m.x36 + 0.0001*m.x63*
m.x37 + 0.0001*m.x63*m.x38 + 0.0001*m.x63*m.x39 + 0.0001*m.x63*m.x40 + 0.0001*m.x63*m.x41 +
0.0001*m.x63*m.x42 + 0.0001*m.x63*m.x43 + 0.0001*m.x63*m.x44 + 0.0001*m.x63*m.x45 + 0.0001*m.x63*
m.x46 + 0.0001*m.x63*m.x47 + 0.0001*m.x63*m.x48 + 0.0001*m.x63*m.x49 + 0.0001*m.x63*m.x50 +
0.0001*m.x63*m.x51 + 0.0001*m.x63*m.x52 + 0.0001*m.x63*m.x53 + 0.0001*m.x63*m.x54 + 0.0001*m.x63*
m.x55 + 0.0001*m.x63*m.x56 + 0.0001*m.x63*m.x57 + 0.0001*m.x63*m.x58 + 0.0001*m.x63*m.x59 +
0.0001*m.x63*m.x60 + 0.0001*m.x63*m.x61 + 0.0001*m.x63*m.x62 + 10.1586608916756*m.x63**2 + 0.0001
*m.x63*m.x64 + 0.0001*m.x63*m.x65 + 0.0001*m.x63*m.x66 + 0.0001*m.x63*m.x67 + 0.0001*m.x63*m.x68
+ 0.0001*m.x63*m.x69 + 0.0001*m.x63*m.x70 + 0.0001*m.x63*m.x71 + 0.0001*m.x63*m.x72 + 0.0001*
m.x63*m.x73 + 0.0001*m.x63*m.x74 + 5.05835068785423*m.x63*m.x75 + 0.0001*m.x63*m.x76 + 0.0001*
m.x63*m.x77 + 0.0001*m.x63*m.x78 + 0.0001*m.x63*m.x79 + 0.0001*m.x63*m.x80 + 0.0001*m.x63*m.x81
+ 0.0001*m.x63*m.x82 + 0.0001*m.x63*m.x83 + 0.0001*m.x63*m.x84 + 0.0001*m.x63*m.x85 + 0.0001*
m.x63*m.x86 + 0.0001*m.x63*m.x87 + 0.0001*m.x63*m.x88 + 0.0001*m.x63*m.x89 + 0.0001*m.x63*m.x90
+ 0.0001*m.x63*m.x91 + 0.0001*m.x63*m.x92 + 0.0001*m.x63*m.x93 + 0.0001*m.x63*m.x94 + 0.0001*
m.x63*m.x95 + 0.0001*m.x63*m.x96 + 0.0001*m.x63*m.x97 + 0.0001*m.x63*m.x98 + 0.0001*m.x63*m.x99
+ 0.0001*m.x63*m.x100 + 0.0001*m.x63*m.x101 + 0.0001*m.x63*m.x102 + 0.0001*m.x63*m.x103 + 0.0001
*m.x63*m.x104 + 0.0001*m.x63*m.x105 + 0.0001*m.x63*m.x106 + 0.0001*m.x63*m.x107 + 0.0001*m.x63*
m.x108 + 0.0001*m.x63*m.x109 + 0.0001*m.x63*m.x110 + 0.0001*m.x63*m.x111 + 0.0001*m.x63*m.x112 +
0.0001*m.x63*m.x113 + 0.0001*m.x63*m.x114 + 0.0001*m.x63*m.x115 + 0.0001*m.x63*m.x116 + 0.0001*
m.x63*m.x117 + 0.0001*m.x63*m.x118 + 0.0001*m.x63*m.x119 + 0.0001*m.x63*m.x120 + 0.0001*m.x63*
m.x121 + 0.0001*m.x63*m.x122 + 0.0001*m.x63*m.x123 + 0.0001*m.x63*m.x124 + 0.0001*m.x63*m.x125 +
0.0001*m.x63*m.x126 + 0.0001*m.x63*m.x127 + 0.0001*m.x63*m.x128 + 0.0001*m.x63*m.x129 + 0.0001*
m.x63*m.x130 + 0.0001*m.x63*m.x131 + 0.0001*m.x63*m.x132 + 0.0001*m.x63*m.x133 + 0.0001*m.x63*
m.x134 + 0.0001*m.x63*m.x135 + 0.0001*m.x63*m.x136 + 0.0001*m.x63*m.x137 + 0.0001*m.x63*m.x138 +
0.0001*m.x63*m.x139 + 0.0001*m.x63*m.x140 + 0.0001*m.x63*m.x141 + 0.0001*m.x63*m.x142 + 0.0001*
m.x63*m.x143 + 0.0001*m.x63*m.x144 + 0.0001*m.x63*m.x145 + 0.0001*m.x63*m.x146 + 0.0001*m.x63*
m.x147 + 0.0001*m.x63*m.x148 + 0.0001*m.x63*m.x149 + 0.0001*m.x63*m.x150 + 0.0001*m.x63*m.x151 +
0.0001*m.x63*m.x152 + 0.0001*m.x63*m.x153 + 0.0001*m.x63*m.x154 + 0.0001*m.x63*m.x155 + 0.0001*
m.x63*m.x156 + 0.0001*m.x63*m.x157 + 0.0001*m.x63*m.x158 + 0.0001*m.x63*m.x159 + 0.0001*m.x63*
m.x160 + 0.0001*m.x63*m.x161 + 0.0001*m.x63*m.x162 + 0.0001*m.x63*m.x163 + 0.0001*m.x63*m.x164 +
0.0001*m.x63*m.x165 + 0.0001*m.x63*m.x166 + 0.0001*m.x63*m.x167 + 0.0001*m.x63*m.x168 + 0.0001*
m.x63*m.x169 + 0.0001*m.x63*m.x170 + 0.0001*m.x63*m.x171 + 0.0001*m.x63*m.x172 + 0.0001*m.x63*
m.x173 + 0.0001*m.x63*m.x174 + 0.0001*m.x63*m.x175 + 0.0001*m.x63*m.x176 + 0.0001*m.x63*m.x177 +
0.0001*m.x63*m.x178 + 0.0001*m.x63*m.x179 + 0.0001*m.x63*m.x180 + 0.0001*m.x63*m.x181 + 0.0001*
m.x63*m.x182 + 0.0001*m.x63*m.x183 + 0.0001*m.x63*m.x184 + 0.0001*m.x63*m.x185 + 0.0001*m.x64*
m.x1 + 0.0001*m.x64*m.x2 + 0.0001*m.x64*m.x3 + 0.0001*m.x64*m.x4 + 0.0001*m.x64*m.x5 + 0.0001*
m.x64*m.x6 + 0.0001*m.x64*m.x7 + 0.0001*m.x64*m.x8 + 0.0001*m.x64*m.x9 + 0.0001*m.x64*m.x10 +
0.0001*m.x64*m.x11 + 0.0001*m.x64*m.x12 + 0.0001*m.x64*m.x13 + 0.0001*m.x64*m.x14 + 0.0001*m.x64*
m.x15 + 0.0001*m.x64*m.x16 + 0.0001*m.x64*m.x17 + 0.0001*m.x64*m.x18 + 0.0001*m.x64*m.x19 +
0.0001*m.x64*m.x20 + 0.0001*m.x64*m.x21 + 0.0001*m.x64*m.x22 + 0.0001*m.x64*m.x23 + 0.0001*m.x64*
m.x24 + 0.0001*m.x64*m.x25 + 0.0001*m.x64*m.x26 + 0.0001*m.x64*m.x27 + 0.0001*m.x64*m.x28 +
0.0001*m.x64*m.x29 + 0.0001*m.x64*m.x30 + 0.0001*m.x64*m.x31 + 0.0001*m.x64*m.x32 + 0.0001*m.x64*
m.x33 + 0.0001*m.x64*m.x34 + 0.0001*m.x64*m.x35 + 0.0001*m.x64*m.x36 + 0.0001*m.x64*m.x37 +
0.0001*m.x64*m.x38 + 0.0001*m.x64*m.x39 + 0.0001*m.x64*m.x40 + 0.0001*m.x64*m.x41 + 0.0001*m.x64*
m.x42 + 0.0001*m.x64*m.x43 + 0.0001*m.x64*m.x44 + 0.0001*m.x64*m.x45 + 0.0001*m.x64*m.x46 +
0.0001*m.x64*m.x47 + 0.0001*m.x64*m.x48 + 0.0001*m.x64*m.x49 + 0.0001*m.x64*m.x50 + 0.0001*m.x64*
m.x51 + 0.0001*m.x64*m.x52 + 0.0001*m.x64*m.x53 + 0.0001*m.x64*m.x54 + 0.0001*m.x64*m.x55 +
0.0001*m.x64*m.x56 + 0.0001*m.x64*m.x57 + 0.0001*m.x64*m.x58 + 0.0001*m.x64*m.x59 + 0.0001*m.x64*
m.x60 + 0.0001*m.x64*m.x61 + 0.0001*m.x64*m.x62 + 0.0001*m.x64*m.x63 + 14.2940849690075*m.x64**2
+ 0.0001*m.x64*m.x65 + 0.0001*m.x64*m.x66 + 0.0001*m.x64*m.x67 + 0.0001*m.x64*m.x68 + 0.0001*
m.x64*m.x69 + 0.0001*m.x64*m.x70 + 0.0001*m.x64*m.x71 + 0.0001*m.x64*m.x72 + 0.0001*m.x64*m.x73
+ 0.0001*m.x64*m.x74 + 0.0001*m.x64*m.x75 + 6.70192609906756*m.x64*m.x76 + 0.0001*m.x64*m.x77 +
0.0001*m.x64*m.x78 + 0.0001*m.x64*m.x79 + 0.0001*m.x64*m.x80 + 0.0001*m.x64*m.x81 + 0.0001*m.x64*
m.x82 + 0.0001*m.x64*m.x83 + 0.0001*m.x64*m.x84 + 0.0001*m.x64*m.x85 + 0.0001*m.x64*m.x86 +
0.0001*m.x64*m.x87 + 0.0001*m.x64*m.x88 + 0.0001*m.x64*m.x89 + 0.0001*m.x64*m.x90 + 0.0001*m.x64*
m.x91 + 0.0001*m.x64*m.x92 + 0.0001*m.x64*m.x93 + 0.0001*m.x64*m.x94 + 0.0001*m.x64*m.x95 +
0.0001*m.x64*m.x96 + 0.0001*m.x64*m.x97 + 0.0001*m.x64*m.x98 + 0.0001*m.x64*m.x99 + 0.0001*m.x64*
m.x100 + 0.0001*m.x64*m.x101 + 0.0001*m.x64*m.x102 + 0.0001*m.x64*m.x103 + 0.0001*m.x64*m.x104 +
0.0001*m.x64*m.x105 + 0.0001*m.x64*m.x106 + 0.0001*m.x64*m.x107 + 0.0001*m.x64*m.x108 + 0.0001*
m.x64*m.x109 + 0.0001*m.x64*m.x110 + 0.0001*m.x64*m.x111 + 0.0001*m.x64*m.x112 + 0.0001*m.x64*
m.x113 + 0.0001*m.x64*m.x114 + 0.0001*m.x64*m.x115 + 0.0001*m.x64*m.x116 + 0.0001*m.x64*m.x117 +
0.0001*m.x64*m.x118 + 0.0001*m.x64*m.x119 + 0.0001*m.x64*m.x120 + 0.0001*m.x64*m.x121 + 0.0001*
m.x64*m.x122 + 0.0001*m.x64*m.x123 + 0.0001*m.x64*m.x124 + 0.0001*m.x64*m.x125 + 0.0001*m.x64*
m.x126 + 0.0001*m.x64*m.x127 + 0.0001*m.x64*m.x128 + 0.0001*m.x64*m.x129 + 0.0001*m.x64*m.x130 +
0.0001*m.x64*m.x131 + 0.0001*m.x64*m.x132 + 0.0001*m.x64*m.x133 + 0.0001*m.x64*m.x134 + 0.0001*
m.x64*m.x135 + 0.0001*m.x64*m.x136 + 0.0001*m.x64*m.x137 + 0.0001*m.x64*m.x138 + 0.0001*m.x64*
m.x139 + 0.0001*m.x64*m.x140 + 0.0001*m.x64*m.x141 + 0.0001*m.x64*m.x142 + 0.0001*m.x64*m.x143 +
0.0001*m.x64*m.x144 + 0.0001*m.x64*m.x145 + 0.0001*m.x64*m.x146 + 0.0001*m.x64*m.x147 + 0.0001*
m.x64*m.x148 + 0.0001*m.x64*m.x149 + 0.0001*m.x64*m.x150 + 0.0001*m.x64*m.x151 + 0.0001*m.x64*
m.x152 + 0.0001*m.x64*m.x153 + 0.0001*m.x64*m.x154 + 0.0001*m.x64*m.x155 + 0.0001*m.x64*m.x156 +
0.0001*m.x64*m.x157 + 0.0001*m.x64*m.x158 + 0.0001*m.x64*m.x159 + 0.0001*m.x64*m.x160 + 0.0001*
m.x64*m.x161 + 0.0001*m.x64*m.x162 + 0.0001*m.x64*m.x163 + 0.0001*m.x64*m.x164 + 0.0001*m.x64*
m.x165 + 0.0001*m.x64*m.x166 + 0.0001*m.x64*m.x167 + 0.0001*m.x64*m.x168 + 0.0001*m.x64*m.x169 +
0.0001*m.x64*m.x170 + 0.0001*m.x64*m.x171 + 0.0001*m.x64*m.x172 + 0.0001*m.x64*m.x173 + 0.0001*
m.x64*m.x174 + 0.0001*m.x64*m.x175 + 0.0001*m.x64*m.x176 + 0.0001*m.x64*m.x177 + 0.0001*m.x64*
m.x178 + 0.0001*m.x64*m.x179 + 0.0001*m.x64*m.x180 + 0.0001*m.x64*m.x181 + 0.0001*m.x64*m.x182 +
0.0001*m.x64*m.x183 + 0.0001*m.x64*m.x184 + 0.0001*m.x64*m.x185 + 0.0001*m.x65*m.x1 + 0.0001*
m.x65*m.x2 + 0.0001*m.x65*m.x3 + 0.0001*m.x65*m.x4 + 0.0001*m.x65*m.x5 + 0.0001*m.x65*m.x6 +
0.0001*m.x65*m.x7 + 0.0001*m.x65*m.x8 + 0.0001*m.x65*m.x9 + 0.0001*m.x65*m.x10 + 0.0001*m.x65*
m.x11 + 0.0001*m.x65*m.x12 + 0.0001*m.x65*m.x13 + 0.0001*m.x65*m.x14 + 0.0001*m.x65*m.x15 +
0.0001*m.x65*m.x16 + 0.0001*m.x65*m.x17 + 0.0001*m.x65*m.x18 + 0.0001*m.x65*m.x19 + 0.0001*m.x65*
m.x20 + 0.0001*m.x65*m.x21 + 0.0001*m.x65*m.x22 + 0.0001*m.x65*m.x23 + 0.0001*m.x65*m.x24 +
0.0001*m.x65*m.x25 + 0.0001*m.x65*m.x26 + 0.0001*m.x65*m.x27 + 0.0001*m.x65*m.x28 + 0.0001*m.x65*
m.x29 + 0.0001*m.x65*m.x30 + 0.0001*m.x65*m.x31 + 0.0001*m.x65*m.x32 + 0.0001*m.x65*m.x33 +
0.0001*m.x65*m.x34 + 0.0001*m.x65*m.x35 + 0.0001*m.x65*m.x36 + 0.0001*m.x65*m.x37 + 0.0001*m.x65*
m.x38 + 0.0001*m.x65*m.x39 + 0.0001*m.x65*m.x40 + 0.0001*m.x65*m.x41 + 0.0001*m.x65*m.x42 +
0.0001*m.x65*m.x43 + 0.0001*m.x65*m.x44 + 0.0001*m.x65*m.x45 + 0.0001*m.x65*m.x46 + 0.0001*m.x65*
m.x47 + 0.0001*m.x65*m.x48 + 0.0001*m.x65*m.x49 + 0.0001*m.x65*m.x50 + 0.0001*m.x65*m.x51 +
0.0001*m.x65*m.x52 + 0.0001*m.x65*m.x53 + 0.0001*m.x65*m.x54 + 0.0001*m.x65*m.x55 + 0.0001*m.x65*
m.x56 + 0.0001*m.x65*m.x57 + 0.0001*m.x65*m.x58 + 0.0001*m.x65*m.x59 + 0.0001*m.x65*m.x60 +
0.0001*m.x65*m.x61 + 0.0001*m.x65*m.x62 + 0.0001*m.x65*m.x63 + 0.0001*m.x65*m.x64 +
11.4651813416584*m.x65**2 + 0.0001*m.x65*m.x66 + 0.0001*m.x65*m.x67 + 0.0001*m.x65*m.x68 + 0.0001
*m.x65*m.x69 + 0.0001*m.x65*m.x70 + 0.0001*m.x65*m.x71 + 0.0001*m.x65*m.x72 + 0.0001*m.x65*m.x73
+ 0.0001*m.x65*m.x74 + 0.0001*m.x65*m.x75 + 0.0001*m.x65*m.x76 + 5.37557657494101*m.x65*m.x77 +
0.0001*m.x65*m.x78 + 0.0001*m.x65*m.x79 + 0.0001*m.x65*m.x80 + 0.0001*m.x65*m.x81 + 0.0001*m.x65*
m.x82 + 0.0001*m.x65*m.x83 + 0.0001*m.x65*m.x84 + 0.0001*m.x65*m.x85 + 0.0001*m.x65*m.x86 +
0.0001*m.x65*m.x87 + 0.0001*m.x65*m.x88 + 0.0001*m.x65*m.x89 + 0.0001*m.x65*m.x90 + 0.0001*m.x65*
m.x91 + 0.0001*m.x65*m.x92 + 0.0001*m.x65*m.x93 + 0.0001*m.x65*m.x94 + 0.0001*m.x65*m.x95 +
0.0001*m.x65*m.x96 + 0.0001*m.x65*m.x97 + 0.0001*m.x65*m.x98 + 0.0001*m.x65*m.x99 + 0.0001*m.x65*
m.x100 + 0.0001*m.x65*m.x101 + 0.0001*m.x65*m.x102 + 0.0001*m.x65*m.x103 + 0.0001*m.x65*m.x104 +
0.0001*m.x65*m.x105 + 0.0001*m.x65*m.x106 + 0.0001*m.x65*m.x107 + 0.0001*m.x65*m.x108 + 0.0001*
m.x65*m.x109 + 0.0001*m.x65*m.x110 + 0.0001*m.x65*m.x111 + 0.0001*m.x65*m.x112 + 0.0001*m.x65*
m.x113 + 0.0001*m.x65*m.x114 + 0.0001*m.x65*m.x115 + 0.0001*m.x65*m.x116 + 0.0001*m.x65*m.x117 +
0.0001*m.x65*m.x118 + 0.0001*m.x65*m.x119 + 0.0001*m.x65*m.x120 + 0.0001*m.x65*m.x121 + 0.0001*
m.x65*m.x122 + 0.0001*m.x65*m.x123 + 0.0001*m.x65*m.x124 + 0.0001*m.x65*m.x125 + 0.0001*m.x65*
m.x126 + 0.0001*m.x65*m.x127 + 0.0001*m.x65*m.x128 + 0.0001*m.x65*m.x129 + 0.0001*m.x65*m.x130 +
0.0001*m.x65*m.x131 + 0.0001*m.x65*m.x132 + 0.0001*m.x65*m.x133 + 0.0001*m.x65*m.x134 + 0.0001*
m.x65*m.x135 + 0.0001*m.x65*m.x136 + 0.0001*m.x65*m.x137 + 0.0001*m.x65*m.x138 + 0.0001*m.x65*
m.x139 + 0.0001*m.x65*m.x140 + 0.0001*m.x65*m.x141 + 0.0001*m.x65*m.x142 + 0.0001*m.x65*m.x143 +
0.0001*m.x65*m.x144 + 0.0001*m.x65*m.x145 + 0.0001*m.x65*m.x146 + 0.0001*m.x65*m.x147 + 0.0001*
m.x65*m.x148 + 0.0001*m.x65*m.x149 + 0.0001*m.x65*m.x150 + 0.0001*m.x65*m.x151 + 0.0001*m.x65*
m.x152 + 0.0001*m.x65*m.x153 + 0.0001*m.x65*m.x154 + 0.0001*m.x65*m.x155 + 0.0001*m.x65*m.x156 +
0.0001*m.x65*m.x157 + 0.0001*m.x65*m.x158 + 0.0001*m.x65*m.x159 + 0.0001*m.x65*m.x160 + 0.0001*
m.x65*m.x161 + 0.0001*m.x65*m.x162 + 0.0001*m.x65*m.x163 + 0.0001*m.x65*m.x164 + 0.0001*m.x65*
m.x165 + 0.0001*m.x65*m.x166 + 0.0001*m.x65*m.x167 + 0.0001*m.x65*m.x168 + 0.0001*m.x65*m.x169 +
0.0001*m.x65*m.x170 + 0.0001*m.x65*m.x171 + 0.0001*m.x65*m.x172 + 0.0001*m.x65*m.x173 + 0.0001*
m.x65*m.x174 + 0.0001*m.x65*m.x175 + 0.0001*m.x65*m.x176 + 0.0001*m.x65*m.x177 + 0.0001*m.x65*
m.x178 + 0.0001*m.x65*m.x179 + 0.0001*m.x65*m.x180 + 0.0001*m.x65*m.x181 + 0.0001*m.x65*m.x182 +
0.0001*m.x65*m.x183 + 0.0001*m.x65*m.x184 + 0.0001*m.x65*m.x185 + 0.0001*m.x66*m.x1 + 0.0001*
m.x66*m.x2 + 0.0001*m.x66*m.x3 + 0.0001*m.x66*m.x4 + 0.0001*m.x66*m.x5 + 0.0001*m.x66*m.x6 +
0.0001*m.x66*m.x7 + 0.0001*m.x66*m.x8 + 0.0001*m.x66*m.x9 + 0.0001*m.x66*m.x10 + 0.0001*m.x66*
m.x11 + 0.0001*m.x66*m.x12 + 0.0001*m.x66*m.x13 + 0.0001*m.x66*m.x14 + 0.0001*m.x66*m.x15 +
0.0001*m.x66*m.x16 + 0.0001*m.x66*m.x17 + 0.0001*m.x66*m.x18 + 0.0001*m.x66*m.x19 + 0.0001*m.x66*
m.x20 + 0.0001*m.x66*m.x21 + 0.0001*m.x66*m.x22 + 0.0001*m.x66*m.x23 + 0.0001*m.x66*m.x24 +
0.0001*m.x66*m.x25 + 0.0001*m.x66*m.x26 + 0.0001*m.x66*m.x27 + 0.0001*m.x66*m.x28 + 0.0001*m.x66*
m.x29 + 0.0001*m.x66*m.x30 + 0.0001*m.x66*m.x31 + 0.0001*m.x66*m.x32 + 0.0001*m.x66*m.x33 +
0.0001*m.x66*m.x34 + 0.0001*m.x66*m.x35 + 0.0001*m.x66*m.x36 + 0.0001*m.x66*m.x37 + 0.0001*m.x66*
m.x38 + 0.0001*m.x66*m.x39 + 0.0001*m.x66*m.x40 + 0.0001*m.x66*m.x41 + 0.0001*m.x66*m.x42 +
0.0001*m.x66*m.x43 + 0.0001*m.x66*m.x44 + 0.0001*m.x66*m.x45 + 0.0001*m.x66*m.x46 + 0.0001*m.x66*
m.x47 + 0.0001*m.x66*m.x48 + 0.0001*m.x66*m.x49 + 0.0001*m.x66*m.x50 + 0.0001*m.x66*m.x51 +
0.0001*m.x66*m.x52 + 0.0001*m.x66*m.x53 + 0.0001*m.x66*m.x54 + 0.0001*m.x66*m.x55 + 0.0001*m.x66*
m.x56 + 0.0001*m.x66*m.x57 + 0.0001*m.x66*m.x58 + 0.0001*m.x66*m.x59 + 0.0001*m.x66*m.x60 +
0.0001*m.x66*m.x61 + 0.0001*m.x66*m.x62 + 0.0001*m.x66*m.x63 + 0.0001*m.x66*m.x64 + 0.0001*m.x66*
m.x65 + 11.7623122809216*m.x66**2 + 0.0001*m.x66*m.x67 + 0.0001*m.x66*m.x68 + 0.0001*m.x66*m.x69
+ 0.0001*m.x66*m.x70 + 0.0001*m.x66*m.x71 + 0.0001*m.x66*m.x72 + 0.0001*m.x66*m.x73 + 0.0001*
m.x66*m.x74 + 0.0001*m.x66*m.x75 + 0.0001*m.x66*m.x76 + 0.0001*m.x66*m.x77 + 5.14013600399385*
m.x66*m.x78 + 0.0001*m.x66*m.x79 + 0.0001*m.x66*m.x80 + 0.0001*m.x66*m.x81 + 0.0001*m.x66*m.x82
+ 0.0001*m.x66*m.x83 + 0.0001*m.x66*m.x84 + 0.0001*m.x66*m.x85 + 0.0001*m.x66*m.x86 + 0.0001*
m.x66*m.x87 + 0.0001*m.x66*m.x88 + 0.0001*m.x66*m.x89 + 0.0001*m.x66*m.x90 + 0.0001*m.x66*m.x91
+ 0.0001*m.x66*m.x92 + 0.0001*m.x66*m.x93 + 0.0001*m.x66*m.x94 + 0.0001*m.x66*m.x95 + 0.0001*
m.x66*m.x96 + 0.0001*m.x66*m.x97 + 0.0001*m.x66*m.x98 + 0.0001*m.x66*m.x99 + 0.0001*m.x66*m.x100
+ 0.0001*m.x66*m.x101 + 0.0001*m.x66*m.x102 + 0.0001*m.x66*m.x103 + 0.0001*m.x66*m.x104 + 0.0001
*m.x66*m.x105 + 0.0001*m.x66*m.x106 + 0.0001*m.x66*m.x107 + 0.0001*m.x66*m.x108 + 0.0001*m.x66*
m.x109 + 0.0001*m.x66*m.x110 + 0.0001*m.x66*m.x111 + 0.0001*m.x66*m.x112 + 0.0001*m.x66*m.x113 +
0.0001*m.x66*m.x114 + 0.0001*m.x66*m.x115 + 0.0001*m.x66*m.x116 + 0.0001*m.x66*m.x117 + 0.0001*
m.x66*m.x118 + 0.0001*m.x66*m.x119 + 0.0001*m.x66*m.x120 + 0.0001*m.x66*m.x121 + 0.0001*m.x66*
m.x122 + 0.0001*m.x66*m.x123 + 0.0001*m.x66*m.x124 + 0.0001*m.x66*m.x125 + 0.0001*m.x66*m.x126 +
0.0001*m.x66*m.x127 + 0.0001*m.x66*m.x128 + 0.0001*m.x66*m.x129 + 0.0001*m.x66*m.x130 + 0.0001*
m.x66*m.x131 + 0.0001*m.x66*m.x132 + 0.0001*m.x66*m.x133 + 0.0001*m.x66*m.x134 + 0.0001*m.x66*
m.x135 + 0.0001*m.x66*m.x136 + 0.0001*m.x66*m.x137 + 0.0001*m.x66*m.x138 + 0.0001*m.x66*m.x139 +
0.0001*m.x66*m.x140 + 0.0001*m.x66*m.x141 + 0.0001*m.x66*m.x142 + 0.0001*m.x66*m.x143 + 0.0001*
m.x66*m.x144 + 0.0001*m.x66*m.x145 + 0.0001*m.x66*m.x146 + 0.0001*m.x66*m.x147 + 0.0001*m.x66*
m.x148 + 0.0001*m.x66*m.x149 + 0.0001*m.x66*m.x150 + 0.0001*m.x66*m.x151 + 0.0001*m.x66*m.x152 +
0.0001*m.x66*m.x153 + 0.0001*m.x66*m.x154 + 0.0001*m.x66*m.x155 + 0.0001*m.x66*m.x156 + 0.0001*
m.x66*m.x157 + 0.0001*m.x66*m.x158 + 0.0001*m.x66*m.x159 + 0.0001*m.x66*m.x160 + 0.0001*m.x66*
m.x161 + 0.0001*m.x66*m.x162 + 0.0001*m.x66*m.x163 + 0.0001*m.x66*m.x164 + 0.0001*m.x66*m.x165 +
0.0001*m.x66*m.x166 + 0.0001*m.x66*m.x167 + 0.0001*m.x66*m.x168 + 0.0001*m.x66*m.x169 + 0.0001*
m.x66*m.x170 + 0.0001*m.x66*m.x171 + 0.0001*m.x66*m.x172 + 0.0001*m.x66*m.x173 + 0.0001*m.x66*
m.x174 + 0.0001*m.x66*m.x175 + 0.0001*m.x66*m.x176 + 0.0001*m.x66*m.x177 + 0.0001*m.x66*m.x178 +
0.0001*m.x66*m.x179 + 0.0001*m.x66*m.x180 + 0.0001*m.x66*m.x181 + 0.0001*m.x66*m.x182 + 0.0001*
m.x66*m.x183 + 0.0001*m.x66*m.x184 + 0.0001*m.x66*m.x185 + 0.0001*m.x67*m.x1 + 0.0001*m.x67*m.x2
+ 0.0001*m.x67*m.x3 + 0.0001*m.x67*m.x4 + 0.0001*m.x67*m.x5 + 0.0001*m.x67*m.x6 + 0.0001*m.x67*
m.x7 + 0.0001*m.x67*m.x8 + 0.0001*m.x67*m.x9 + 0.0001*m.x67*m.x10 + 0.0001*m.x67*m.x11 + 0.0001*
m.x67*m.x12 + 0.0001*m.x67*m.x13 + 0.0001*m.x67*m.x14 + 0.0001*m.x67*m.x15 + 0.0001*m.x67*m.x16
+ 0.0001*m.x67*m.x17 + 0.0001*m.x67*m.x18 + 0.0001*m.x67*m.x19 + 0.0001*m.x67*m.x20 + 0.0001*
m.x67*m.x21 + 0.0001*m.x67*m.x22 + 0.0001*m.x67*m.x23 + 0.0001*m.x67*m.x24 + 0.0001*m.x67*m.x25
+ 0.0001*m.x67*m.x26 + 0.0001*m.x67*m.x27 + 0.0001*m.x67*m.x28 + 0.0001*m.x67*m.x29 + 0.0001*
m.x67*m.x30 + 0.0001*m.x67*m.x31 + 0.0001*m.x67*m.x32 + 0.0001*m.x67*m.x33 + 0.0001*m.x67*m.x34
+ 0.0001*m.x67*m.x35 + 0.0001*m.x67*m.x36 + 0.0001*m.x67*m.x37 + 0.0001*m.x67*m.x38 + 0.0001*
m.x67*m.x39 + 0.0001*m.x67*m.x40 + 0.0001*m.x67*m.x41 + 0.0001*m.x67*m.x42 + 0.0001*m.x67*m.x43
+ 0.0001*m.x67*m.x44 + 0.0001*m.x67*m.x45 + 0.0001*m.x67*m.x46 + 0.0001*m.x67*m.x47 + 0.0001*
m.x67*m.x48 + 0.0001*m.x67*m.x49 + 0.0001*m.x67*m.x50 + 0.0001*m.x67*m.x51 + 0.0001*m.x67*m.x52
+ 0.0001*m.x67*m.x53 + 0.0001*m.x67*m.x54 + 0.0001*m.x67*m.x55 + 0.0001*m.x67*m.x56 + 0.0001*
m.x67*m.x57 + 0.0001*m.x67*m.x58 + 0.0001*m.x67*m.x59 + 0.0001*m.x67*m.x60 + 0.0001*m.x67*m.x61
+ 0.0001*m.x67*m.x62 + 0.0001*m.x67*m.x63 + 0.0001*m.x67*m.x64 + 0.0001*m.x67*m.x65 + 0.0001*
m.x67*m.x66 + 10.0417056403084*m.x67**2 + 0.0001*m.x67*m.x68 + 0.0001*m.x67*m.x69 + 0.0001*m.x67*
m.x70 + 0.0001*m.x67*m.x71 + 0.0001*m.x67*m.x72 + 0.0001*m.x67*m.x73 + 0.0001*m.x67*m.x74 +
0.0001*m.x67*m.x75 + 0.0001*m.x67*m.x76 + 0.0001*m.x67*m.x77 + 0.0001*m.x67*m.x78 +
4.81894784211333*m.x67*m.x79 + 0.0001*m.x67*m.x80 + 0.0001*m.x67*m.x81 + 0.0001*m.x67*m.x82 +
0.0001*m.x67*m.x83 + 0.0001*m.x67*m.x84 + 0.0001*m.x67*m.x85 + 0.0001*m.x67*m.x86 + 0.0001*m.x67*
m.x87 + 0.0001*m.x67*m.x88 + 0.0001*m.x67*m.x89 + 0.0001*m.x67*m.x90 + 0.0001*m.x67*m.x91 +
0.0001*m.x67*m.x92 + 0.0001*m.x67*m.x93 + 0.0001*m.x67*m.x94 + 0.0001*m.x67*m.x95 + 0.0001*m.x67*
m.x96 + 0.0001*m.x67*m.x97 + 0.0001*m.x67*m.x98 + 0.0001*m.x67*m.x99 + 0.0001*m.x67*m.x100 +
0.0001*m.x67*m.x101 + 0.0001*m.x67*m.x102 + 0.0001*m.x67*m.x103 + 0.0001*m.x67*m.x104 + 0.0001*
m.x67*m.x105 + 0.0001*m.x67*m.x106 + 0.0001*m.x67*m.x107 + 0.0001*m.x67*m.x108 + 0.0001*m.x67*
m.x109 + 0.0001*m.x67*m.x110 + 0.0001*m.x67*m.x111 + 0.0001*m.x67*m.x112 + 0.0001*m.x67*m.x113 +
0.0001*m.x67*m.x114 + 0.0001*m.x67*m.x115 + 0.0001*m.x67*m.x116 + 0.0001*m.x67*m.x117 + 0.0001*
m.x67*m.x118 + 0.0001*m.x67*m.x119 + 0.0001*m.x67*m.x120 + 0.0001*m.x67*m.x121 + 0.0001*m.x67*
m.x122 + 0.0001*m.x67*m.x123 + 0.0001*m.x67*m.x124 + 0.0001*m.x67*m.x125 + 0.0001*m.x67*m.x126 +
0.0001*m.x67*m.x127 + 0.0001*m.x67*m.x128 + 0.0001*m.x67*m.x129 + 0.0001*m.x67*m.x130 + 0.0001*
m.x67*m.x131 + 0.0001*m.x67*m.x132 + 0.0001*m.x67*m.x133 + 0.0001*m.x67*m.x134 + 0.0001*m.x67*
m.x135 + 0.0001*m.x67*m.x136 + 0.0001*m.x67*m.x137 + 0.0001*m.x67*m.x138 + 0.0001*m.x67*m.x139 +
0.0001*m.x67*m.x140 + 0.0001*m.x67*m.x141 + 0.0001*m.x67*m.x142 + 0.0001*m.x67*m.x143 + 0.0001*
m.x67*m.x144 + 0.0001*m.x67*m.x145 + 0.0001*m.x67*m.x146 + 0.0001*m.x67*m.x147 + 0.0001*m.x67*
m.x148 + 0.0001*m.x67*m.x149 + 0.0001*m.x67*m.x150 + 0.0001*m.x67*m.x151 + 0.0001*m.x67*m.x152 +
0.0001*m.x67*m.x153 + 0.0001*m.x67*m.x154 + 0.0001*m.x67*m.x155 + 0.0001*m.x67*m.x156 + 0.0001*
m.x67*m.x157 + 0.0001*m.x67*m.x158 + 0.0001*m.x67*m.x159 + 0.0001*m.x67*m.x160 + 0.0001*m.x67*
m.x161 + 0.0001*m.x67*m.x162 + 0.0001*m.x67*m.x163 + 0.0001*m.x67*m.x164 + 0.0001*m.x67*m.x165 +
0.0001*m.x67*m.x166 + 0.0001*m.x67*m.x167 + 0.0001*m.x67*m.x168 + 0.0001*m.x67*m.x169 + 0.0001*
m.x67*m.x170 + 0.0001*m.x67*m.x171 + 0.0001*m.x67*m.x172 + 0.0001*m.x67*m.x173 + 0.0001*m.x67*
m.x174 + 0.0001*m.x67*m.x175 + 0.0001*m.x67*m.x176 + 0.0001*m.x67*m.x177 + 0.0001*m.x67*m.x178 +
0.0001*m.x67*m.x179 + 0.0001*m.x67*m.x180 + 0.0001*m.x67*m.x181 + 0.0001*m.x67*m.x182 + 0.0001*
m.x67*m.x183 + 0.0001*m.x67*m.x184 + 0.0001*m.x67*m.x185 + 0.0001*m.x68*m.x1 + 0.0001*m.x68*m.x2
+ 0.0001*m.x68*m.x3 + 0.0001*m.x68*m.x4 + 0.0001*m.x68*m.x5 + 0.0001*m.x68*m.x6 + 0.0001*m.x68*
m.x7 + 0.0001*m.x68*m.x8 + 0.0001*m.x68*m.x9 + 0.0001*m.x68*m.x10 + 0.0001*m.x68*m.x11 + 0.0001*
m.x68*m.x12 + 0.0001*m.x68*m.x13 + 0.0001*m.x68*m.x14 + 0.0001*m.x68*m.x15 + 0.0001*m.x68*m.x16
+ 0.0001*m.x68*m.x17 + 0.0001*m.x68*m.x18 + 0.0001*m.x68*m.x19 + 0.0001*m.x68*m.x20 + 0.0001*
m.x68*m.x21 + 0.0001*m.x68*m.x22 + 0.0001*m.x68*m.x23 + 0.0001*m.x68*m.x24 + 0.0001*m.x68*m.x25
+ 0.0001*m.x68*m.x26 + 0.0001*m.x68*m.x27 + 0.0001*m.x68*m.x28 + 0.0001*m.x68*m.x29 + 0.0001*
m.x68*m.x30 + 0.0001*m.x68*m.x31 + 0.0001*m.x68*m.x32 + 0.0001*m.x68*m.x33 + 0.0001*m.x68*m.x34
+ 0.0001*m.x68*m.x35 + 0.0001*m.x68*m.x36 + 0.0001*m.x68*m.x37 + 0.0001*m.x68*m.x38 + 0.0001*
m.x68*m.x39 + 0.0001*m.x68*m.x40 + 0.0001*m.x68*m.x41 + 0.0001*m.x68*m.x42 + 0.0001*m.x68*m.x43
+ 0.0001*m.x68*m.x44 + 0.0001*m.x68*m.x45 + 0.0001*m.x68*m.x46 + 0.0001*m.x68*m.x47 + 0.0001*
m.x68*m.x48 + 0.0001*m.x68*m.x49 + 0.0001*m.x68*m.x50 + 0.0001*m.x68*m.x51 + 0.0001*m.x68*m.x52
+ 0.0001*m.x68*m.x53 + 0.0001*m.x68*m.x54 + 0.0001*m.x68*m.x55 + 0.0001*m.x68*m.x56 + 0.0001*
m.x68*m.x57 + 0.0001*m.x68*m.x58 + 0.0001*m.x68*m.x59 + 0.0001*m.x68*m.x60 + 0.0001*m.x68*m.x61
+ 0.0001*m.x68*m.x62 + 0.0001*m.x68*m.x63 + 0.0001*m.x68*m.x64 + 0.0001*m.x68*m.x65 + 0.0001*
m.x68*m.x66 + 0.0001*m.x68*m.x67 + 10.0417056403084*m.x68**2 + 0.0001*m.x68*m.x69 + 0.0001*m.x68*
m.x70 + 0.0001*m.x68*m.x71 + 0.0001*m.x68*m.x72 + 0.0001*m.x68*m.x73 + 0.0001*m.x68*m.x74 +
0.0001*m.x68*m.x75 + 0.0001*m.x68*m.x76 + 0.0001*m.x68*m.x77 + 0.0001*m.x68*m.x78 + 0.0001*m.x68*
m.x79 + 4.81894784211333*m.x68*m.x80 + 0.0001*m.x68*m.x81 + 0.0001*m.x68*m.x82 + 0.0001*m.x68*
m.x83 + 0.0001*m.x68*m.x84 + 0.0001*m.x68*m.x85 + 0.0001*m.x68*m.x86 + 0.0001*m.x68*m.x87 +
0.0001*m.x68*m.x88 + 0.0001*m.x68*m.x89 + 0.0001*m.x68*m.x90 + 0.0001*m.x68*m.x91 + 0.0001*m.x68*
m.x92 + 0.0001*m.x68*m.x93 + 0.0001*m.x68*m.x94 + 0.0001*m.x68*m.x95 + 0.0001*m.x68*m.x96 +
0.0001*m.x68*m.x97 + 0.0001*m.x68*m.x98 + 0.0001*m.x68*m.x99 + 0.0001*m.x68*m.x100 + 0.0001*m.x68
*m.x101 + 0.0001*m.x68*m.x102 + 0.0001*m.x68*m.x103 + 0.0001*m.x68*m.x104 + 0.0001*m.x68*m.x105
+ 0.0001*m.x68*m.x106 + 0.0001*m.x68*m.x107 + 0.0001*m.x68*m.x108 + 0.0001*m.x68*m.x109 + 0.0001
*m.x68*m.x110 + 0.0001*m.x68*m.x111 + 0.0001*m.x68*m.x112 + 0.0001*m.x68*m.x113 + 0.0001*m.x68*
m.x114 + 0.0001*m.x68*m.x115 + 0.0001*m.x68*m.x116 + 0.0001*m.x68*m.x117 + 0.0001*m.x68*m.x118 +
0.0001*m.x68*m.x119 + 0.0001*m.x68*m.x120 + 0.0001*m.x68*m.x121 + 0.0001*m.x68*m.x122 + 0.0001*
m.x68*m.x123 + 0.0001*m.x68*m.x124 + 0.0001*m.x68*m.x125 + 0.0001*m.x68*m.x126 + 0.0001*m.x68*
m.x127 + 0.0001*m.x68*m.x128 + 0.0001*m.x68*m.x129 + 0.0001*m.x68*m.x130 + 0.0001*m.x68*m.x131 +
0.0001*m.x68*m.x132 + 0.0001*m.x68*m.x133 + 0.0001*m.x68*m.x134 + 0.0001*m.x68*m.x135 + 0.0001*
m.x68*m.x136 + 0.0001*m.x68*m.x137 + 0.0001*m.x68*m.x138 + 0.0001*m.x68*m.x139 + 0.0001*m.x68*
m.x140 + 0.0001*m.x68*m.x141 + 0.0001*m.x68*m.x142 + 0.0001*m.x68*m.x143 + 0.0001*m.x68*m.x144 +
0.0001*m.x68*m.x145 + 0.0001*m.x68*m.x146 + 0.0001*m.x68*m.x147 + 0.0001*m.x68*m.x148 + 0.0001*
m.x68*m.x149 + 0.0001*m.x68*m.x150 + 0.0001*m.x68*m.x151 + 0.0001*m.x68*m.x152 + 0.0001*m.x68*
m.x153 + 0.0001*m.x68*m.x154 + 0.0001*m.x68*m.x155 + 0.0001*m.x68*m.x156 + 0.0001*m.x68*m.x157 +
0.0001*m.x68*m.x158 + 0.0001*m.x68*m.x159 + 0.0001*m.x68*m.x160 + 0.0001*m.x68*m.x161 + 0.0001*
m.x68*m.x162 + 0.0001*m.x68*m.x163 + 0.0001*m.x68*m.x164 + 0.0001*m.x68*m.x165 + 0.0001*m.x68*
m.x166 + 0.0001*m.x68*m.x167 + 0.0001*m.x68*m.x168 + 0.0001*m.x68*m.x169 + 0.0001*m.x68*m.x170 +
0.0001*m.x68*m.x171 + 0.0001*m.x68*m.x172 + 0.0001*m.x68*m.x173 + 0.0001*m.x68*m.x174 + 0.0001*
m.x68*m.x175 + 0.0001*m.x68*m.x176 + 0.0001*m.x68*m.x177 + 0.0001*m.x68*m.x178 + 0.0001*m.x68*
m.x179 + 0.0001*m.x68*m.x180 + 0.0001*m.x68*m.x181 + 0.0001*m.x68*m.x182 + 0.0001*m.x68*m.x183 +
0.0001*m.x68*m.x184 + 0.0001*m.x68*m.x185 + 0.0001*m.x69*m.x1 + 0.0001*m.x69*m.x2 + 0.0001*m.x69*
m.x3 + 0.0001*m.x69*m.x4 + 0.0001*m.x69*m.x5 + 0.0001*m.x69*m.x6 + 0.0001*m.x69*m.x7 + 0.0001*
m.x69*m.x8 + 0.0001*m.x69*m.x9 + 0.0001*m.x69*m.x10 + 0.0001*m.x69*m.x11 + 0.0001*m.x69*m.x12 +
0.0001*m.x69*m.x13 + 0.0001*m.x69*m.x14 + 0.0001*m.x69*m.x15 + 0.0001*m.x69*m.x16 + 0.0001*m.x69*
m.x17 + 0.0001*m.x69*m.x18 + 0.0001*m.x69*m.x19 + 0.0001*m.x69*m.x20 + 0.0001*m.x69*m.x21 +
0.0001*m.x69*m.x22 + 0.0001*m.x69*m.x23 + 0.0001*m.x69*m.x24 + 0.0001*m.x69*m.x25 + 0.0001*m.x69*
m.x26 + 0.0001*m.x69*m.x27 + 0.0001*m.x69*m.x28 + 0.0001*m.x69*m.x29 + 0.0001*m.x69*m.x30 +
0.0001*m.x69*m.x31 + 0.0001*m.x69*m.x32 + 0.0001*m.x69*m.x33 + 0.0001*m.x69*m.x34 + 0.0001*m.x69*
m.x35 + 0.0001*m.x69*m.x36 + 0.0001*m.x69*m.x37 + 0.0001*m.x69*m.x38 + 0.0001*m.x69*m.x39 +
0.0001*m.x69*m.x40 + 0.0001*m.x69*m.x41 + 0.0001*m.x69*m.x42 + 0.0001*m.x69*m.x43 + 0.0001*m.x69*
m.x44 + 0.0001*m.x69*m.x45 + 0.0001*m.x69*m.x46 + 0.0001*m.x69*m.x47 + 0.0001*m.x69*m.x48 +
0.0001*m.x69*m.x49 + 0.0001*m.x69*m.x50 + 0.0001*m.x69*m.x51 + 0.0001*m.x69*m.x52 + 0.0001*m.x69*
m.x53 + 0.0001*m.x69*m.x54 + 0.0001*m.x69*m.x55 + 0.0001*m.x69*m.x56 + 0.0001*m.x69*m.x57 +
0.0001*m.x69*m.x58 + 0.0001*m.x69*m.x59 + 0.0001*m.x69*m.x60 + 0.0001*m.x69*m.x61 + 0.0001*m.x69*
m.x62 + 0.0001*m.x69*m.x63 + 0.0001*m.x69*m.x64 + 0.0001*m.x69*m.x65 + 0.0001*m.x69*m.x66 +
0.0001*m.x69*m.x67 + 0.0001*m.x69*m.x68 + 7.42140918377966*m.x69**2 + 0.0001*m.x69*m.x70 + 0.0001
*m.x69*m.x71 + 0.0001*m.x69*m.x72 + 0.0001*m.x69*m.x73 + 0.0001*m.x69*m.x74 + 0.0001*m.x69*m.x75
+ 0.0001*m.x69*m.x76 + 0.0001*m.x69*m.x77 + 0.0001*m.x69*m.x78 + 0.0001*m.x69*m.x79 + 0.0001*
m.x69*m.x80 + 3.68435207385428*m.x69*m.x81 + 0.0001*m.x69*m.x82 + 0.0001*m.x69*m.x83 + 0.0001*
m.x69*m.x84 + 0.0001*m.x69*m.x85 + 0.0001*m.x69*m.x86 + 0.0001*m.x69*m.x87 + 0.0001*m.x69*m.x88
+ 0.0001*m.x69*m.x89 + 0.0001*m.x69*m.x90 + 0.0001*m.x69*m.x91 + 0.0001*m.x69*m.x92 + 0.0001*
m.x69*m.x93 + 0.0001*m.x69*m.x94 + 0.0001*m.x69*m.x95 + 0.0001*m.x69*m.x96 + 0.0001*m.x69*m.x97
+ 0.0001*m.x69*m.x98 + 0.0001*m.x69*m.x99 + 0.0001*m.x69*m.x100 + 0.0001*m.x69*m.x101 + 0.0001*
m.x69*m.x102 + 0.0001*m.x69*m.x103 + 0.0001*m.x69*m.x104 + 0.0001*m.x69*m.x105 + 0.0001*m.x69*
m.x106 + 0.0001*m.x69*m.x107 + 0.0001*m.x69*m.x108 + 0.0001*m.x69*m.x109 + 0.0001*m.x69*m.x110 +
0.0001*m.x69*m.x111 + 0.0001*m.x69*m.x112 + 0.0001*m.x69*m.x113 + 0.0001*m.x69*m.x114 + 0.0001*
m.x69*m.x115 + 0.0001*m.x69*m.x116 + 0.0001*m.x69*m.x117 + 0.0001*m.x69*m.x118 + 0.0001*m.x69*
m.x119 + 0.0001*m.x69*m.x120 + 0.0001*m.x69*m.x121 + 0.0001*m.x69*m.x122 + 0.0001*m.x69*m.x123 +
0.0001*m.x69*m.x124 + 0.0001*m.x69*m.x125 + 0.0001*m.x69*m.x126 + 0.0001*m.x69*m.x127 + 0.0001*
m.x69*m.x128 + 0.0001*m.x69*m.x129 + 0.0001*m.x69*m.x130 + 0.0001*m.x69*m.x131 + 0.0001*m.x69*
m.x132 + 0.0001*m.x69*m.x133 + 0.0001*m.x69*m.x134 + 0.0001*m.x69*m.x135 + 0.0001*m.x69*m.x136 +
0.0001*m.x69*m.x137 + 0.0001*m.x69*m.x138 + 0.0001*m.x69*m.x139 + 0.0001*m.x69*m.x140 + 0.0001*
m.x69*m.x141 + 0.0001*m.x69*m.x142 + 0.0001*m.x69*m.x143 + 0.0001*m.x69*m.x144 + 0.0001*m.x69*
m.x145 + 0.0001*m.x69*m.x146 + 0.0001*m.x69*m.x147 + 0.0001*m.x69*m.x148 + 0.0001*m.x69*m.x149 +
0.0001*m.x69*m.x150 + 0.0001*m.x69*m.x151 + 0.0001*m.x69*m.x152 + 0.0001*m.x69*m.x153 + 0.0001*
m.x69*m.x154 + 0.0001*m.x69*m.x155 + 0.0001*m.x69*m.x156 + 0.0001*m.x69*m.x157 + 0.0001*m.x69*
m.x158 + 0.0001*m.x69*m.x159 + 0.0001*m.x69*m.x160 + 0.0001*m.x69*m.x161 + 0.0001*m.x69*m.x162 +
0.0001*m.x69*m.x163 + 0.0001*m.x69*m.x164 + 0.0001*m.x69*m.x165 + 0.0001*m.x69*m.x166 + 0.0001*
m.x69*m.x167 + 0.0001*m.x69*m.x168 + 0.0001*m.x69*m.x169 + 0.0001*m.x69*m.x170 + 0.0001*m.x69*
m.x171 + 0.0001*m.x69*m.x172 + 0.0001*m.x69*m.x173 + 0.0001*m.x69*m.x174 + 0.0001*m.x69*m.x175 +
0.0001*m.x69*m.x176 + 0.0001*m.x69*m.x177 + 0.0001*m.x69*m.x178 + 0.0001*m.x69*m.x179 + 0.0001*
m.x69*m.x180 + 0.0001*m.x69*m.x181 + 0.0001*m.x69*m.x182 + 0.0001*m.x69*m.x183 + 0.0001*m.x69*
m.x184 + 0.0001*m.x69*m.x185 + 0.0001*m.x70*m.x1 + 0.0001*m.x70*m.x2 + 0.0001*m.x70*m.x3 + 0.0001
*m.x70*m.x4 + 0.0001*m.x70*m.x5 + 0.0001*m.x70*m.x6 + 0.0001*m.x70*m.x7 + 0.0001*m.x70*m.x8 +
0.0001*m.x70*m.x9 + 0.0001*m.x70*m.x10 + 0.0001*m.x70*m.x11 + 0.0001*m.x70*m.x12 + 0.0001*m.x70*
m.x13 + 0.0001*m.x70*m.x14 + 0.0001*m.x70*m.x15 + 0.0001*m.x70*m.x16 + 0.0001*m.x70*m.x17 +
0.0001*m.x70*m.x18 + 0.0001*m.x70*m.x19 + 0.0001*m.x70*m.x20 + 0.0001*m.x70*m.x21 + 0.0001*m.x70*
m.x22 + 0.0001*m.x70*m.x23 + 0.0001*m.x70*m.x24 + 0.0001*m.x70*m.x25 + 0.0001*m.x70*m.x26 +
0.0001*m.x70*m.x27 + 0.0001*m.x70*m.x28 + 0.0001*m.x70*m.x29 + 0.0001*m.x70*m.x30 + 0.0001*m.x70*
m.x31 + 0.0001*m.x70*m.x32 + 0.0001*m.x70*m.x33 + 0.0001*m.x70*m.x34 + 0.0001*m.x70*m.x35 +
0.0001*m.x70*m.x36 + 0.0001*m.x70*m.x37 + 0.0001*m.x70*m.x38 + 0.0001*m.x70*m.x39 + 0.0001*m.x70*
m.x40 + 0.0001*m.x70*m.x41 + 0.0001*m.x70*m.x42 + 0.0001*m.x70*m.x43 + 0.0001*m.x70*m.x44 +
0.0001*m.x70*m.x45 + 0.0001*m.x70*m.x46 + 0.0001*m.x70*m.x47 + 0.0001*m.x70*m.x48 + 0.0001*m.x70*
m.x49 + 0.0001*m.x70*m.x50 + 0.0001*m.x70*m.x51 + 0.0001*m.x70*m.x52 + 0.0001*m.x70*m.x53 +
0.0001*m.x70*m.x54 + 0.0001*m.x70*m.x55 + 0.0001*m.x70*m.x56 + 0.0001*m.x70*m.x57 + 0.0001*m.x70*
m.x58 + 0.0001*m.x70*m.x59 + 0.0001*m.x70*m.x60 + 0.0001*m.x70*m.x61 + 0.0001*m.x70*m.x62 +
0.0001*m.x70*m.x63 + 0.0001*m.x70*m.x64 + 0.0001*m.x70*m.x65 + 0.0001*m.x70*m.x66 + 0.0001*m.x70*
m.x67 + 0.0001*m.x70*m.x68 + 0.0001*m.x70*m.x69 + 8.39717941180941*m.x70**2 + 0.0001*m.x70*m.x71
+ 0.0001*m.x70*m.x72 + 0.0001*m.x70*m.x73 + 0.0001*m.x70*m.x74 + 0.0001*m.x70*m.x75 + 0.0001*
m.x70*m.x76 + 0.0001*m.x70*m.x77 + 0.0001*m.x70*m.x78 + 0.0001*m.x70*m.x79 + 0.0001*m.x70*m.x80
+ 0.0001*m.x70*m.x81 + 3.83702324608675*m.x70*m.x82 + 0.0001*m.x70*m.x83 + 0.0001*m.x70*m.x84 +
0.0001*m.x70*m.x85 + 0.0001*m.x70*m.x86 + 0.0001*m.x70*m.x87 + 0.0001*m.x70*m.x88 + 0.0001*m.x70*
m.x89 + 0.0001*m.x70*m.x90 + 0.0001*m.x70*m.x91 + 0.0001*m.x70*m.x92 + 0.0001*m.x70*m.x93 +
0.0001*m.x70*m.x94 + 0.0001*m.x70*m.x95 + 0.0001*m.x70*m.x96 + 0.0001*m.x70*m.x97 + 0.0001*m.x70*
m.x98 + 0.0001*m.x70*m.x99 + 0.0001*m.x70*m.x100 + 0.0001*m.x70*m.x101 + 0.0001*m.x70*m.x102 +
0.0001*m.x70*m.x103 + 0.0001*m.x70*m.x104 + 0.0001*m.x70*m.x105 + 0.0001*m.x70*m.x106 + 0.0001*
m.x70*m.x107 + 0.0001*m.x70*m.x108 + 0.0001*m.x70*m.x109 + 0.0001*m.x70*m.x110 + 0.0001*m.x70*
m.x111 + 0.0001*m.x70*m.x112 + 0.0001*m.x70*m.x113 + 0.0001*m.x70*m.x114 + 0.0001*m.x70*m.x115 +
0.0001*m.x70*m.x116 + 0.0001*m.x70*m.x117 + 0.0001*m.x70*m.x118 + 0.0001*m.x70*m.x119 + 0.0001*
m.x70*m.x120 + 0.0001*m.x70*m.x121 + 0.0001*m.x70*m.x122 + 0.0001*m.x70*m.x123 + 0.0001*m.x70*
m.x124 + 0.0001*m.x70*m.x125 + 0.0001*m.x70*m.x126 + 0.0001*m.x70*m.x127 + 0.0001*m.x70*m.x128 +
0.0001*m.x70*m.x129 + 0.0001*m.x70*m.x130 + 0.0001*m.x70*m.x131 + 0.0001*m.x70*m.x132 + 0.0001*
m.x70*m.x133 + 0.0001*m.x70*m.x134 + 0.0001*m.x70*m.x135 + 0.0001*m.x70*m.x136 + 0.0001*m.x70*
m.x137 + 0.0001*m.x70*m.x138 + 0.0001*m.x70*m.x139 + 0.0001*m.x70*m.x140 + 0.0001*m.x70*m.x141 +
0.0001*m.x70*m.x142 + 0.0001*m.x70*m.x143 + 0.0001*m.x70*m.x144 + 0.0001*m.x70*m.x145 + 0.0001*
m.x70*m.x146 + 0.0001*m.x70*m.x147 + 0.0001*m.x70*m.x148 + 0.0001*m.x70*m.x149 + 0.0001*m.x70*
m.x150 + 0.0001*m.x70*m.x151 + 0.0001*m.x70*m.x152 + 0.0001*m.x70*m.x153 + 0.0001*m.x70*m.x154 +
0.0001*m.x70*m.x155 + 0.0001*m.x70*m.x156 + 0.0001*m.x70*m.x157 + 0.0001*m.x70*m.x158 + 0.0001*
m.x70*m.x159 + 0.0001*m.x70*m.x160 + 0.0001*m.x70*m.x161 + 0.0001*m.x70*m.x162 + 0.0001*m.x70*
m.x163 + 0.0001*m.x70*m.x164 + 0.0001*m.x70*m.x165 + 0.0001*m.x70*m.x166 + 0.0001*m.x70*m.x167 +
0.0001*m.x70*m.x168 + 0.0001*m.x70*m.x169 + 0.0001*m.x70*m.x170 + 0.0001*m.x70*m.x171 + 0.0001*
m.x70*m.x172 + 0.0001*m.x70*m.x173 + 0.0001*m.x70*m.x174 + 0.0001*m.x70*m.x175 + 0.0001*m.x70*
m.x176 + 0.0001*m.x70*m.x177 + 0.0001*m.x70*m.x178 + 0.0001*m.x70*m.x179 + 0.0001*m.x70*m.x180 +
0.0001*m.x70*m.x181 + 0.0001*m.x70*m.x182 + 0.0001*m.x70*m.x183 + 0.0001*m.x70*m.x184 + 0.0001*
m.x70*m.x185 + 0.0001*m.x71*m.x1 + 0.0001*m.x71*m.x2 + 0.0001*m.x71*m.x3 + 0.0001*m.x71*m.x4 +
0.0001*m.x71*m.x5 + 0.0001*m.x71*m.x6 + 0.0001*m.x71*m.x7 + 0.0001*m.x71*m.x8 + 0.0001*m.x71*m.x9
+ 0.0001*m.x71*m.x10 + 0.0001*m.x71*m.x11 + 0.0001*m.x71*m.x12 + 0.0001*m.x71*m.x13 + 0.0001*
m.x71*m.x14 + 0.0001*m.x71*m.x15 + 0.0001*m.x71*m.x16 + 0.0001*m.x71*m.x17 + 0.0001*m.x71*m.x18
+ 0.0001*m.x71*m.x19 + 0.0001*m.x71*m.x20 + 0.0001*m.x71*m.x21 + 0.0001*m.x71*m.x22 + 0.0001*
m.x71*m.x23 + 0.0001*m.x71*m.x24 + 0.0001*m.x71*m.x25 + 0.0001*m.x71*m.x26 + 0.0001*m.x71*m.x27
+ 0.0001*m.x71*m.x28 + 0.0001*m.x71*m.x29 + 0.0001*m.x71*m.x30 + 0.0001*m.x71*m.x31 + 0.0001*
m.x71*m.x32 + 0.0001*m.x71*m.x33 + 0.0001*m.x71*m.x34 + 0.0001*m.x71*m.x35 + 0.0001*m.x71*m.x36
+ 0.0001*m.x71*m.x37 + 0.0001*m.x71*m.x38 + 0.0001*m.x71*m.x39 + 0.0001*m.x71*m.x40 + 0.0001*
m.x71*m.x41 + 0.0001*m.x71*m.x42 + 0.0001*m.x71*m.x43 + 0.0001*m.x71*m.x44 + 0.0001*m.x71*m.x45
+ 0.0001*m.x71*m.x46 + 0.0001*m.x71*m.x47 + 0.0001*m.x71*m.x48 + 0.0001*m.x71*m.x49 + 0.0001*
m.x71*m.x50 + 0.0001*m.x71*m.x51 + 0.0001*m.x71*m.x52 + 0.0001*m.x71*m.x53 + 0.0001*m.x71*m.x54
+ 0.0001*m.x71*m.x55 + 0.0001*m.x71*m.x56 + 0.0001*m.x71*m.x57 + 0.0001*m.x71*m.x58 + 0.0001*
m.x71*m.x59 + 0.0001*m.x71*m.x60 + 0.0001*m.x71*m.x61 + 0.0001*m.x71*m.x62 + 0.0001*m.x71*m.x63
+ 0.0001*m.x71*m.x64 + 0.0001*m.x71*m.x65 + 0.0001*m.x71*m.x66 + 0.0001*m.x71*m.x67 + 0.0001*
m.x71*m.x68 + 0.0001*m.x71*m.x69 + 0.0001*m.x71*m.x70 + 8.39717941180941*m.x71**2 + 0.0001*m.x71*
m.x72 + 0.0001*m.x71*m.x73 + 0.0001*m.x71*m.x74 + 0.0001*m.x71*m.x75 + 0.0001*m.x71*m.x76 +
0.0001*m.x71*m.x77 + 0.0001*m.x71*m.x78 + 0.0001*m.x71*m.x79 + 0.0001*m.x71*m.x80 + 0.0001*m.x71*
m.x81 + 0.0001*m.x71*m.x82 + 3.83702324608675*m.x71*m.x83 + 0.0001*m.x71*m.x84 + 0.0001*m.x71*
m.x85 + 0.0001*m.x71*m.x86 + 0.0001*m.x71*m.x87 + 0.0001*m.x71*m.x88 + 0.0001*m.x71*m.x89 +
0.0001*m.x71*m.x90 + 0.0001*m.x71*m.x91 + 0.0001*m.x71*m.x92 + 0.0001*m.x71*m.x93 + 0.0001*m.x71*
m.x94 + 0.0001*m.x71*m.x95 + 0.0001*m.x71*m.x96 + 0.0001*m.x71*m.x97 + 0.0001*m.x71*m.x98 +
0.0001*m.x71*m.x99 + 0.0001*m.x71*m.x100 + 0.0001*m.x71*m.x101 + 0.0001*m.x71*m.x102 + 0.0001*
m.x71*m.x103 + 0.0001*m.x71*m.x104 + 0.0001*m.x71*m.x105 + 0.0001*m.x71*m.x106 + 0.0001*m.x71*
m.x107 + 0.0001*m.x71*m.x108 + 0.0001*m.x71*m.x109 + 0.0001*m.x71*m.x110 + 0.0001*m.x71*m.x111 +
0.0001*m.x71*m.x112 + 0.0001*m.x71*m.x113 + 0.0001*m.x71*m.x114 + 0.0001*m.x71*m.x115 + 0.0001*
m.x71*m.x116 + 0.0001*m.x71*m.x117 + 0.0001*m.x71*m.x118 + 0.0001*m.x71*m.x119 + 0.0001*m.x71*
m.x120 + 0.0001*m.x71*m.x121 + 0.0001*m.x71*m.x122 + 0.0001*m.x71*m.x123 + 0.0001*m.x71*m.x124 +
0.0001*m.x71*m.x125 + 0.0001*m.x71*m.x126 + 0.0001*m.x71*m.x127 + 0.0001*m.x71*m.x128 + 0.0001*
m.x71*m.x129 + 0.0001*m.x71*m.x130 + 0.0001*m.x71*m.x131 + 0.0001*m.x71*m.x132 + 0.0001*m.x71*
m.x133 + 0.0001*m.x71*m.x134 + 0.0001*m.x71*m.x135 + 0.0001*m.x71*m.x136 + 0.0001*m.x71*m.x137 +
0.0001*m.x71*m.x138 + 0.0001*m.x71*m.x139 + 0.0001*m.x71*m.x140 + 0.0001*m.x71*m.x141 + 0.0001*
m.x71*m.x142 + 0.0001*m.x71*m.x143 + 0.0001*m.x71*m.x144 + 0.0001*m.x71*m.x145 + 0.0001*m.x71*
m.x146 + 0.0001*m.x71*m.x147 + 0.0001*m.x71*m.x148 + 0.0001*m.x71*m.x149 + 0.0001*m.x71*m.x150 +
0.0001*m.x71*m.x151 + 0.0001*m.x71*m.x152 + 0.0001*m.x71*m.x153 + 0.0001*m.x71*m.x154 + 0.0001*
m.x71*m.x155 + 0.0001*m.x71*m.x156 + 0.0001*m.x71*m.x157 + 0.0001*m.x71*m.x158 + 0.0001*m.x71*
m.x159 + 0.0001*m.x71*m.x160 + 0.0001*m.x71*m.x161 + 0.0001*m.x71*m.x162 + 0.0001*m.x71*m.x163 +
0.0001*m.x71*m.x164 + 0.0001*m.x71*m.x165 + 0.0001*m.x71*m.x166 + 0.0001*m.x71*m.x167 + 0.0001*
m.x71*m.x168 + 0.0001*m.x71*m.x169 + 0.0001*m.x71*m.x170 + 0.0001*m.x71*m.x171 + 0.0001*m.x71*
m.x172 + 0.0001*m.x71*m.x173 + 0.0001*m.x71*m.x174 + 0.0001*m.x71*m.x175 + 0.0001*m.x71*m.x176 +
0.0001*m.x71*m.x177 + 0.0001*m.x71*m.x178 + 0.0001*m.x71*m.x179 + 0.0001*m.x71*m.x180 + 0.0001*
m.x71*m.x181 + 0.0001*m.x71*m.x182 + 0.0001*m.x71*m.x183 + 0.0001*m.x71*m.x184 + 0.0001*m.x71*
m.x185 + 0.0001*m.x72*m.x1 + 0.0001*m.x72*m.x2 + 0.0001*m.x72*m.x3 + 0.0001*m.x72*m.x4 + 0.0001*
m.x72*m.x5 + 0.0001*m.x72*m.x6 + 0.0001*m.x72*m.x7 + 0.0001*m.x72*m.x8 + 0.0001*m.x72*m.x9 +
0.0001*m.x72*m.x10 + 0.0001*m.x72*m.x11 + 0.0001*m.x72*m.x12 + 0.0001*m.x72*m.x13 + 0.0001*m.x72*
m.x14 + 0.0001*m.x72*m.x15 + 0.0001*m.x72*m.x16 + 0.0001*m.x72*m.x17 + 0.0001*m.x72*m.x18 +
0.0001*m.x72*m.x19 + 0.0001*m.x72*m.x20 + 0.0001*m.x72*m.x21 + 0.0001*m.x72*m.x22 + 0.0001*m.x72*
m.x23 + 0.0001*m.x72*m.x24 + 0.0001*m.x72*m.x25 + 0.0001*m.x72*m.x26 + 0.0001*m.x72*m.x27 +
0.0001*m.x72*m.x28 + 0.0001*m.x72*m.x29 + 0.0001*m.x72*m.x30 + 0.0001*m.x72*m.x31 + 0.0001*m.x72*
m.x32 + 0.0001*m.x72*m.x33 + 0.0001*m.x72*m.x34 + 0.0001*m.x72*m.x35 + 0.0001*m.x72*m.x36 +
0.0001*m.x72*m.x37 + 0.0001*m.x72*m.x38 + 0.0001*m.x72*m.x39 + 0.0001*m.x72*m.x40 + 0.0001*m.x72*
m.x41 + 0.0001*m.x72*m.x42 + 0.0001*m.x72*m.x43 + 0.0001*m.x72*m.x44 + 0.0001*m.x72*m.x45 +
0.0001*m.x72*m.x46 + 0.0001*m.x72*m.x47 + 0.0001*m.x72*m.x48 + 0.0001*m.x72*m.x49 + 0.0001*m.x72*
m.x50 + 0.0001*m.x72*m.x51 + 0.0001*m.x72*m.x52 + 0.0001*m.x72*m.x53 + 0.0001*m.x72*m.x54 +
0.0001*m.x72*m.x55 + 0.0001*m.x72*m.x56 + 0.0001*m.x72*m.x57 + 0.0001*m.x72*m.x58 + 0.0001*m.x72*
m.x59 + 5.09752086313842*m.x72*m.x60 + 0.0001*m.x72*m.x61 + 0.0001*m.x72*m.x62 + 0.0001*m.x72*
m.x63 + 0.0001*m.x72*m.x64 + 0.0001*m.x72*m.x65 + 0.0001*m.x72*m.x66 + 0.0001*m.x72*m.x67 +
0.0001*m.x72*m.x68 + 0.0001*m.x72*m.x69 + 0.0001*m.x72*m.x70 + 0.0001*m.x72*m.x71 +
2.3986155657935*m.x72**2 + 0.0001*m.x72*m.x73 + 0.0001*m.x72*m.x74 + 0.0001*m.x72*m.x75 + 0.0001*
m.x72*m.x76 + 0.0001*m.x72*m.x77 + 0.0001*m.x72*m.x78 + 0.0001*m.x72*m.x79 + 0.0001*m.x72*m.x80
+ 0.0001*m.x72*m.x81 + 0.0001*m.x72*m.x82 + 0.0001*m.x72*m.x83 + 0.0001*m.x72*m.x84 + 0.0001*
m.x72*m.x85 + 0.0001*m.x72*m.x86 + 0.0001*m.x72*m.x87 + 0.0001*m.x72*m.x88 + 0.0001*m.x72*m.x89
+ 0.0001*m.x72*m.x90 + 0.0001*m.x72*m.x91 + 0.0001*m.x72*m.x92 + 0.0001*m.x72*m.x93 + 0.0001*
m.x72*m.x94 + 0.0001*m.x72*m.x95 + 0.0001*m.x72*m.x96 + 0.0001*m.x72*m.x97 + 0.0001*m.x72*m.x98
+ 0.0001*m.x72*m.x99 + 0.0001*m.x72*m.x100 + 0.0001*m.x72*m.x101 + 0.0001*m.x72*m.x102 + 0.0001*
m.x72*m.x103 + 0.0001*m.x72*m.x104 + 0.0001*m.x72*m.x105 + 0.0001*m.x72*m.x106 + 0.0001*m.x72*
m.x107 + 0.0001*m.x72*m.x108 + 0.0001*m.x72*m.x109 + 0.0001*m.x72*m.x110 + 0.0001*m.x72*m.x111 +
0.0001*m.x72*m.x112 + 0.0001*m.x72*m.x113 + 0.0001*m.x72*m.x114 + 0.0001*m.x72*m.x115 + 0.0001*
m.x72*m.x116 + 1.48587678002252*m.x72*m.x117 + 0.0001*m.x72*m.x118 + 0.0001*m.x72*m.x119 + 0.0001
*m.x72*m.x120 + 0.0001*m.x72*m.x121 + 0.0001*m.x72*m.x122 + 0.0001*m.x72*m.x123 + 0.0001*m.x72*
m.x124 + 0.0001*m.x72*m.x125 + 0.0001*m.x72*m.x126 + 0.0001*m.x72*m.x127 + 0.0001*m.x72*m.x128 +
0.0001*m.x72*m.x129 + 0.0001*m.x72*m.x130 + 0.0001*m.x72*m.x131 + 0.0001*m.x72*m.x132 + 0.0001*
m.x72*m.x133 + 0.0001*m.x72*m.x134 + 0.0001*m.x72*m.x135 + 0.0001*m.x72*m.x136 + 0.0001*m.x72*
m.x137 + 0.0001*m.x72*m.x138 + 0.0001*m.x72*m.x139 + 0.0001*m.x72*m.x140 + 0.0001*m.x72*m.x141 +
0.0001*m.x72*m.x142 + 2.02594580793731*m.x72*m.x143 + 0.0001*m.x72*m.x144 + 0.0001*m.x72*m.x145
+ 0.0001*m.x72*m.x146 + 0.0001*m.x72*m.x147 + 0.0001*m.x72*m.x148 + 0.0001*m.x72*m.x149 + 0.0001
*m.x72*m.x150 + 0.0001*m.x72*m.x151 + 0.0001*m.x72*m.x152 + 0.0001*m.x72*m.x153 + 0.0001*m.x72*
m.x154 + 0.0001*m.x72*m.x155 + 0.0001*m.x72*m.x156 + 0.0001*m.x72*m.x157 + 1.44661993423099*m.x72
*m.x158 + 0.0001*m.x72*m.x159 + 0.0001*m.x72*m.x160 + 0.0001*m.x72*m.x161 + 0.0001*m.x72*m.x162
+ 0.0001*m.x72*m.x163 + 0.0001*m.x72*m.x164 + 0.0001*m.x72*m.x165 + 0.0001*m.x72*m.x166 + 0.0001
*m.x72*m.x167 + 0.0001*m.x72*m.x168 + 0.0001*m.x72*m.x169 + 0.0001*m.x72*m.x170 + 0.0001*m.x72*
m.x171 + 0.0001*m.x72*m.x172 + 0.0001*m.x72*m.x173 + 0.0001*m.x72*m.x174 + 0.0001*m.x72*m.x175 +
0.0001*m.x72*m.x176 + 0.0001*m.x72*m.x177 + 0.0001*m.x72*m.x178 + 0.0001*m.x72*m.x179 + 0.0001*
m.x72*m.x180 + 0.0001*m.x72*m.x181 + 0.0001*m.x72*m.x182 + 0.0001*m.x72*m.x183 + 0.0001*m.x72*
m.x184 + 0.0001*m.x72*m.x185 + 0.0001*m.x73*m.x1 + 0.0001*m.x73*m.x2 + 0.0001*m.x73*m.x3 + 0.0001
*m.x73*m.x4 + 0.0001*m.x73*m.x5 + 0.0001*m.x73*m.x6 + 0.0001*m.x73*m.x7 + 0.0001*m.x73*m.x8 +
0.0001*m.x73*m.x9 + 0.0001*m.x73*m.x10 + 0.0001*m.x73*m.x11 + 0.0001*m.x73*m.x12 + 0.0001*m.x73*
m.x13 + 0.0001*m.x73*m.x14 + 0.0001*m.x73*m.x15 + 0.0001*m.x73*m.x16 + 0.0001*m.x73*m.x17 +
0.0001*m.x73*m.x18 + 0.0001*m.x73*m.x19 + 0.0001*m.x73*m.x20 + 0.0001*m.x73*m.x21 + 0.0001*m.x73*
m.x22 + 0.0001*m.x73*m.x23 + 0.0001*m.x73*m.x24 + 0.0001*m.x73*m.x25 + 0.0001*m.x73*m.x26 +
0.0001*m.x73*m.x27 + 0.0001*m.x73*m.x28 + 0.0001*m.x73*m.x29 + 0.0001*m.x73*m.x30 + 0.0001*m.x73*
m.x31 + 0.0001*m.x73*m.x32 + 0.0001*m.x73*m.x33 + 0.0001*m.x73*m.x34 + 0.0001*m.x73*m.x35 +
0.0001*m.x73*m.x36 + 0.0001*m.x73*m.x37 + 0.0001*m.x73*m.x38 + 0.0001*m.x73*m.x39 + 0.0001*m.x73*
m.x40 + 0.0001*m.x73*m.x41 + 0.0001*m.x73*m.x42 + 0.0001*m.x73*m.x43 + 0.0001*m.x73*m.x44 +
0.0001*m.x73*m.x45 + 0.0001*m.x73*m.x46 + 0.0001*m.x73*m.x47 + 0.0001*m.x73*m.x48 + 0.0001*m.x73*
m.x49 + 0.0001*m.x73*m.x50 + 0.0001*m.x73*m.x51 + 0.0001*m.x73*m.x52 + 0.0001*m.x73*m.x53 +
0.0001*m.x73*m.x54 + 0.0001*m.x73*m.x55 + 0.0001*m.x73*m.x56 + 0.0001*m.x73*m.x57 + 0.0001*m.x73*
m.x58 + 0.0001*m.x73*m.x59 + 0.0001*m.x73*m.x60 + 4.68006349519818*m.x73*m.x61 + 0.0001*m.x73*
m.x62 + 0.0001*m.x73*m.x63 + 0.0001*m.x73*m.x64 + 0.0001*m.x73*m.x65 + 0.0001*m.x73*m.x66 +
0.0001*m.x73*m.x67 + 0.0001*m.x73*m.x68 + 0.0001*m.x73*m.x69 + 0.0001*m.x73*m.x70 + 0.0001*m.x73*
m.x71 + 0.0001*m.x73*m.x72 + 2.24846366498918*m.x73**2 + 0.0001*m.x73*m.x74 + 0.0001*m.x73*m.x75
+ 0.0001*m.x73*m.x76 + 0.0001*m.x73*m.x77 + 0.0001*m.x73*m.x78 + 0.0001*m.x73*m.x79 + 0.0001*
m.x73*m.x80 + 0.0001*m.x73*m.x81 + 0.0001*m.x73*m.x82 + 0.0001*m.x73*m.x83 + 0.0001*m.x73*m.x84
+ 0.0001*m.x73*m.x85 + 0.0001*m.x73*m.x86 + 0.0001*m.x73*m.x87 + 0.0001*m.x73*m.x88 + 0.0001*
m.x73*m.x89 + 0.0001*m.x73*m.x90 + 0.0001*m.x73*m.x91 + 0.0001*m.x73*m.x92 + 0.0001*m.x73*m.x93
+ 0.0001*m.x73*m.x94 + 0.0001*m.x73*m.x95 + 0.0001*m.x73*m.x96 + 0.0001*m.x73*m.x97 + 0.0001*
m.x73*m.x98 + 0.0001*m.x73*m.x99 + 0.0001*m.x73*m.x100 + 0.0001*m.x73*m.x101 + 0.0001*m.x73*
m.x102 + 0.0001*m.x73*m.x103 + 0.0001*m.x73*m.x104 + 0.0001*m.x73*m.x105 + 0.0001*m.x73*m.x106 +
0.0001*m.x73*m.x107 + 0.0001*m.x73*m.x108 + 0.0001*m.x73*m.x109 + 0.0001*m.x73*m.x110 + 0.0001*
m.x73*m.x111 + 0.0001*m.x73*m.x112 + 0.0001*m.x73*m.x113 + 0.0001*m.x73*m.x114 + 0.0001*m.x73*
m.x115 + 0.0001*m.x73*m.x116 + 0.0001*m.x73*m.x117 + 0.825676042763423*m.x73*m.x118 + 0.0001*
m.x73*m.x119 + 0.0001*m.x73*m.x120 + 0.0001*m.x73*m.x121 + 0.0001*m.x73*m.x122 + 0.0001*m.x73*
m.x123 + 0.0001*m.x73*m.x124 + 0.0001*m.x73*m.x125 + 0.0001*m.x73*m.x126 + 0.0001*m.x73*m.x127 +
0.0001*m.x73*m.x128 + 0.0001*m.x73*m.x129 + 0.0001*m.x73*m.x130 + 0.0001*m.x73*m.x131 + 0.0001*
m.x73*m.x132 + 0.0001*m.x73*m.x133 + 0.0001*m.x73*m.x134 + 0.0001*m.x73*m.x135 + 0.0001*m.x73*
m.x136 + 0.0001*m.x73*m.x137 + 0.0001*m.x73*m.x138 + 0.0001*m.x73*m.x139 + 0.0001*m.x73*m.x140 +
0.0001*m.x73*m.x141 + 0.0001*m.x73*m.x142 + 0.0001*m.x73*m.x143 + 1.07615655996441*m.x73*m.x144
+ 0.0001*m.x73*m.x145 + 0.0001*m.x73*m.x146 + 0.0001*m.x73*m.x147 + 0.0001*m.x73*m.x148 + 0.0001
*m.x73*m.x149 + 0.0001*m.x73*m.x150 + 0.0001*m.x73*m.x151 + 0.0001*m.x73*m.x152 + 0.0001*m.x73*
m.x153 + 0.0001*m.x73*m.x154 + 0.0001*m.x73*m.x155 + 0.0001*m.x73*m.x156 + 0.0001*m.x73*m.x157 +
0.0001*m.x73*m.x158 + 0.803862866089973*m.x73*m.x159 + 0.0001*m.x73*m.x160 + 0.0001*m.x73*m.x161
+ 0.0001*m.x73*m.x162 + 0.0001*m.x73*m.x163 + 0.0001*m.x73*m.x164 + 0.0001*m.x73*m.x165 + 0.0001
*m.x73*m.x166 + 0.0001*m.x73*m.x167 + 0.0001*m.x73*m.x168 + 0.0001*m.x73*m.x169 + 0.0001*m.x73*
m.x170 + 0.0001*m.x73*m.x171 + 0.0001*m.x73*m.x172 + 0.0001*m.x73*m.x173 + 0.0001*m.x73*m.x174 +
0.0001*m.x73*m.x175 + 0.0001*m.x73*m.x176 + 0.0001*m.x73*m.x177 + 0.0001*m.x73*m.x178 + 0.0001*
m.x73*m.x179 + 0.0001*m.x73*m.x180 + 0.0001*m.x73*m.x181 + 0.0001*m.x73*m.x182 + 0.0001*m.x73*
m.x183 + 0.0001*m.x73*m.x184 + 0.0001*m.x73*m.x185 + 0.0001*m.x74*m.x1 + 0.0001*m.x74*m.x2 +
0.0001*m.x74*m.x3 + 0.0001*m.x74*m.x4 + 0.0001*m.x74*m.x5 + 0.0001*m.x74*m.x6 + 0.0001*m.x74*m.x7
+ 0.0001*m.x74*m.x8 + 0.0001*m.x74*m.x9 + 0.0001*m.x74*m.x10 + 0.0001*m.x74*m.x11 + 0.0001*m.x74
*m.x12 + 0.0001*m.x74*m.x13 + 0.0001*m.x74*m.x14 + 0.0001*m.x74*m.x15 + 0.0001*m.x74*m.x16 +
0.0001*m.x74*m.x17 + 0.0001*m.x74*m.x18 + 0.0001*m.x74*m.x19 + 0.0001*m.x74*m.x20 + 0.0001*m.x74*
m.x21 + 0.0001*m.x74*m.x22 + 0.0001*m.x74*m.x23 + 0.0001*m.x74*m.x24 + 0.0001*m.x74*m.x25 +
0.0001*m.x74*m.x26 + 0.0001*m.x74*m.x27 + 0.0001*m.x74*m.x28 + 0.0001*m.x74*m.x29 + 0.0001*m.x74*
m.x30 + 0.0001*m.x74*m.x31 + 0.0001*m.x74*m.x32 + 0.0001*m.x74*m.x33 + 0.0001*m.x74*m.x34 +
0.0001*m.x74*m.x35 + 0.0001*m.x74*m.x36 + 0.0001*m.x74*m.x37 + 0.0001*m.x74*m.x38 + 0.0001*m.x74*
m.x39 + 0.0001*m.x74*m.x40 + 0.0001*m.x74*m.x41 + 0.0001*m.x74*m.x42 + 0.0001*m.x74*m.x43 +
0.0001*m.x74*m.x44 + 0.0001*m.x74*m.x45 + 0.0001*m.x74*m.x46 + 0.0001*m.x74*m.x47 + 0.0001*m.x74*
m.x48 + 0.0001*m.x74*m.x49 + 0.0001*m.x74*m.x50 + 0.0001*m.x74*m.x51 + 0.0001*m.x74*m.x52 +
0.0001*m.x74*m.x53 + 0.0001*m.x74*m.x54 + 0.0001*m.x74*m.x55 + 0.0001*m.x74*m.x56 + 0.0001*m.x74*
m.x57 + 0.0001*m.x74*m.x58 + 0.0001*m.x74*m.x59 + 0.0001*m.x74*m.x60 + 0.0001*m.x74*m.x61 +
5.74039726395508*m.x74*m.x62 + 0.0001*m.x74*m.x63 + 0.0001*m.x74*m.x64 + 0.0001*m.x74*m.x65 +
0.0001*m.x74*m.x66 + 0.0001*m.x74*m.x67 + 0.0001*m.x74*m.x68 + 0.0001*m.x74*m.x69 + 0.0001*m.x74*
m.x70 + 0.0001*m.x74*m.x71 + 0.0001*m.x74*m.x72 + 0.0001*m.x74*m.x73 + 2.70468892583163*m.x74**2
+ 0.0001*m.x74*m.x75 + 0.0001*m.x74*m.x76 + 0.0001*m.x74*m.x77 + 0.0001*m.x74*m.x78 + 0.0001*
m.x74*m.x79 + 0.0001*m.x74*m.x80 + 0.0001*m.x74*m.x81 + 0.0001*m.x74*m.x82 + 0.0001*m.x74*m.x83
+ 0.0001*m.x74*m.x84 + 0.0001*m.x74*m.x85 + 0.0001*m.x74*m.x86 + 0.0001*m.x74*m.x87 + 0.0001*
m.x74*m.x88 + 0.0001*m.x74*m.x89 + 0.0001*m.x74*m.x90 + 0.0001*m.x74*m.x91 + 0.0001*m.x74*m.x92
+ 0.0001*m.x74*m.x93 + 0.0001*m.x74*m.x94 + 0.0001*m.x74*m.x95 + 0.0001*m.x74*m.x96 + 0.0001*
m.x74*m.x97 + 0.0001*m.x74*m.x98 + 0.0001*m.x74*m.x99 + 0.0001*m.x74*m.x100 + 0.0001*m.x74*m.x101
+ 0.0001*m.x74*m.x102 + 0.0001*m.x74*m.x103 + 0.0001*m.x74*m.x104 + 0.0001*m.x74*m.x105 + 0.0001
*m.x74*m.x106 + 0.0001*m.x74*m.x107 + 0.0001*m.x74*m.x108 + 0.0001*m.x74*m.x109 + 0.0001*m.x74*
m.x110 + 0.0001*m.x74*m.x111 + 0.0001*m.x74*m.x112 + 0.0001*m.x74*m.x113 + 0.0001*m.x74*m.x114 +
0.0001*m.x74*m.x115 + 0.0001*m.x74*m.x116 + 0.0001*m.x74*m.x117 + 0.0001*m.x74*m.x118 +
0.726124762373682*m.x74*m.x119 + 0.0001*m.x74*m.x120 + 0.0001*m.x74*m.x121 + 0.0001*m.x74*m.x122
+ 0.0001*m.x74*m.x123 + 0.0001*m.x74*m.x124 + 0.0001*m.x74*m.x125 + 0.0001*m.x74*m.x126 + 0.0001
*m.x74*m.x127 + 0.0001*m.x74*m.x128 + 0.0001*m.x74*m.x129 + 0.0001*m.x74*m.x130 + 0.0001*m.x74*
m.x131 + 0.0001*m.x74*m.x132 + 0.0001*m.x74*m.x133 + 0.0001*m.x74*m.x134 + 0.0001*m.x74*m.x135 +
0.0001*m.x74*m.x136 + 0.0001*m.x74*m.x137 + 0.0001*m.x74*m.x138 + 0.0001*m.x74*m.x139 + 0.0001*
m.x74*m.x140 + 0.0001*m.x74*m.x141 + 0.0001*m.x74*m.x142 + 0.0001*m.x74*m.x143 + 0.0001*m.x74*
m.x144 + 1.17562792915444*m.x74*m.x145 + 0.0001*m.x74*m.x146 + 0.0001*m.x74*m.x147 + 0.0001*m.x74
*m.x148 + 0.0001*m.x74*m.x149 + 0.0001*m.x74*m.x150 + 0.0001*m.x74*m.x151 + 0.0001*m.x74*m.x152
+ 0.0001*m.x74*m.x153 + 0.0001*m.x74*m.x154 + 0.0001*m.x74*m.x155 + 0.0001*m.x74*m.x156 + 0.0001
*m.x74*m.x157 + 0.0001*m.x74*m.x158 + 0.0001*m.x74*m.x159 + 0.707825371164089*m.x74*m.x160 +
0.0001*m.x74*m.x161 + 0.0001*m.x74*m.x162 + 0.0001*m.x74*m.x163 + 0.0001*m.x74*m.x164 + 0.0001*
m.x74*m.x165 + 0.0001*m.x74*m.x166 + 0.0001*m.x74*m.x167 + 0.0001*m.x74*m.x168 + 0.0001*m.x74*
m.x169 + 0.0001*m.x74*m.x170 + 0.0001*m.x74*m.x171 + 0.0001*m.x74*m.x172 + 0.0001*m.x74*m.x173 +
0.0001*m.x74*m.x174 + 0.0001*m.x74*m.x175 + 0.0001*m.x74*m.x176 + 0.0001*m.x74*m.x177 + 0.0001*
m.x74*m.x178 + 0.0001*m.x74*m.x179 + 0.0001*m.x74*m.x180 + 0.0001*m.x74*m.x181 + 0.0001*m.x74*
m.x182 + 0.0001*m.x74*m.x183 + 0.0001*m.x74*m.x184 + 0.0001*m.x74*m.x185 + 0.0001*m.x75*m.x1 +
0.0001*m.x75*m.x2 + 0.0001*m.x75*m.x3 + 0.0001*m.x75*m.x4 + 0.0001*m.x75*m.x5 + 0.0001*m.x75*m.x6
+ 0.0001*m.x75*m.x7 + 0.0001*m.x75*m.x8 + 0.0001*m.x75*m.x9 + 0.0001*m.x75*m.x10 + 0.0001*m.x75*
m.x11 + 0.0001*m.x75*m.x12 + 0.0001*m.x75*m.x13 + 0.0001*m.x75*m.x14 + 0.0001*m.x75*m.x15 +
0.0001*m.x75*m.x16 + 0.0001*m.x75*m.x17 + 0.0001*m.x75*m.x18 + 0.0001*m.x75*m.x19 + 0.0001*m.x75*
m.x20 + 0.0001*m.x75*m.x21 + 0.0001*m.x75*m.x22 + 0.0001*m.x75*m.x23 + 0.0001*m.x75*m.x24 +
0.0001*m.x75*m.x25 + 0.0001*m.x75*m.x26 + 0.0001*m.x75*m.x27 + 0.0001*m.x75*m.x28 + 0.0001*m.x75*
m.x29 + 0.0001*m.x75*m.x30 + 0.0001*m.x75*m.x31 + 0.0001*m.x75*m.x32 + 0.0001*m.x75*m.x33 +
0.0001*m.x75*m.x34 + 0.0001*m.x75*m.x35 + 0.0001*m.x75*m.x36 + 0.0001*m.x75*m.x37 + 0.0001*m.x75*
m.x38 + 0.0001*m.x75*m.x39 + 0.0001*m.x75*m.x40 + 0.0001*m.x75*m.x41 + 0.0001*m.x75*m.x42 +
0.0001*m.x75*m.x43 + 0.0001*m.x75*m.x44 + 0.0001*m.x75*m.x45 + 0.0001*m.x75*m.x46 + 0.0001*m.x75*
m.x47 + 0.0001*m.x75*m.x48 + 0.0001*m.x75*m.x49 + 0.0001*m.x75*m.x50 + 0.0001*m.x75*m.x51 +
0.0001*m.x75*m.x52 + 0.0001*m.x75*m.x53 + 0.0001*m.x75*m.x54 + 0.0001*m.x75*m.x55 + 0.0001*m.x75*
m.x56 + 0.0001*m.x75*m.x57 + 0.0001*m.x75*m.x58 + 0.0001*m.x75*m.x59 + 0.0001*m.x75*m.x60 +
0.0001*m.x75*m.x61 + 0.0001*m.x75*m.x62 + 5.05835068785423*m.x75*m.x63 + 0.0001*m.x75*m.x64 +
0.0001*m.x75*m.x65 + 0.0001*m.x75*m.x66 + 0.0001*m.x75*m.x67 + 0.0001*m.x75*m.x68 + 0.0001*m.x75*
m.x69 + 0.0001*m.x75*m.x70 + 0.0001*m.x75*m.x71 + 0.0001*m.x75*m.x72 + 0.0001*m.x75*m.x73 +
0.0001*m.x75*m.x74 + 2.68565510289825*m.x75**2 + 0.0001*m.x75*m.x76 + 0.0001*m.x75*m.x77 + 0.0001
*m.x75*m.x78 + 0.0001*m.x75*m.x79 + 0.0001*m.x75*m.x80 + 0.0001*m.x75*m.x81 + 0.0001*m.x75*m.x82
+ 0.0001*m.x75*m.x83 + 0.0001*m.x75*m.x84 + 0.0001*m.x75*m.x85 + 0.0001*m.x75*m.x86 + 0.0001*
m.x75*m.x87 + 0.0001*m.x75*m.x88 + 0.0001*m.x75*m.x89 + 0.0001*m.x75*m.x90 + 0.0001*m.x75*m.x91
+ 0.0001*m.x75*m.x92 + 0.0001*m.x75*m.x93 + 0.0001*m.x75*m.x94 + 0.0001*m.x75*m.x95 + 0.0001*
m.x75*m.x96 + 0.0001*m.x75*m.x97 + 0.0001*m.x75*m.x98 + 0.0001*m.x75*m.x99 + 0.0001*m.x75*m.x100
+ 0.0001*m.x75*m.x101 + 0.0001*m.x75*m.x102 + 0.0001*m.x75*m.x103 + 0.0001*m.x75*m.x104 + 0.0001
*m.x75*m.x105 + 0.0001*m.x75*m.x106 + 0.0001*m.x75*m.x107 + 0.0001*m.x75*m.x108 + 0.0001*m.x75*
m.x109 + 0.0001*m.x75*m.x110 + 0.0001*m.x75*m.x111 + 0.0001*m.x75*m.x112 + 0.0001*m.x75*m.x113 +
0.0001*m.x75*m.x114 + 0.0001*m.x75*m.x115 + 0.0001*m.x75*m.x116 + 0.0001*m.x75*m.x117 + 0.0001*
m.x75*m.x118 + 0.0001*m.x75*m.x119 + 0.807657733076222*m.x75*m.x120 + 0.0001*m.x75*m.x121 +
0.0001*m.x75*m.x122 + 0.0001*m.x75*m.x123 + 0.0001*m.x75*m.x124 + 0.0001*m.x75*m.x125 + 0.0001*
m.x75*m.x126 + 0.0001*m.x75*m.x127 + 0.0001*m.x75*m.x128 + 0.0001*m.x75*m.x129 + 0.0001*m.x75*
m.x130 + 0.0001*m.x75*m.x131 + 0.0001*m.x75*m.x132 + 0.0001*m.x75*m.x133 + 0.0001*m.x75*m.x134 +
0.0001*m.x75*m.x135 + 0.0001*m.x75*m.x136 + 0.0001*m.x75*m.x137 + 0.0001*m.x75*m.x138 + 0.0001*
m.x75*m.x139 + 0.0001*m.x75*m.x140 + 0.0001*m.x75*m.x141 + 0.0001*m.x75*m.x142 + 0.0001*m.x75*
m.x143 + 0.0001*m.x75*m.x144 + 0.0001*m.x75*m.x145 + 1.30764034687751*m.x75*m.x146 + 0.0001*m.x75
*m.x147 + 0.0001*m.x75*m.x148 + 0.0001*m.x75*m.x149 + 0.0001*m.x75*m.x150 + 0.0001*m.x75*m.x151
+ 0.0001*m.x75*m.x152 + 0.0001*m.x75*m.x153 + 0.0001*m.x75*m.x154 + 0.0001*m.x75*m.x155 + 0.0001
*m.x75*m.x156 + 0.0001*m.x75*m.x157 + 0.0001*m.x75*m.x158 + 0.0001*m.x75*m.x159 + 0.0001*m.x75*
m.x160 + 0.70518890429601*m.x75*m.x161 + 0.0001*m.x75*m.x162 + 0.0001*m.x75*m.x163 + 0.0001*m.x75
*m.x164 + 0.0001*m.x75*m.x165 + 0.0001*m.x75*m.x166 + 0.0001*m.x75*m.x167 + 0.0001*m.x75*m.x168
+ 0.0001*m.x75*m.x169 + 0.0001*m.x75*m.x170 + 0.0001*m.x75*m.x171 + 0.0001*m.x75*m.x172 + 0.0001
*m.x75*m.x173 + 0.0001*m.x75*m.x174 + 0.0001*m.x75*m.x175 + 0.0001*m.x75*m.x176 + 0.0001*m.x75*
m.x177 + 0.0001*m.x75*m.x178 + 0.0001*m.x75*m.x179 + 0.0001*m.x75*m.x180 + 0.0001*m.x75*m.x181 +
0.0001*m.x75*m.x182 + 0.0001*m.x75*m.x183 + 0.0001*m.x75*m.x184 + 0.0001*m.x75*m.x185 + 0.0001*
m.x76*m.x1 + 0.0001*m.x76*m.x2 + 0.0001*m.x76*m.x3 + 0.0001*m.x76*m.x4 + 0.0001*m.x76*m.x5 +
0.0001*m.x76*m.x6 + 0.0001*m.x76*m.x7 + 0.0001*m.x76*m.x8 + 0.0001*m.x76*m.x9 + 0.0001*m.x76*
m.x10 + 0.0001*m.x76*m.x11 + 0.0001*m.x76*m.x12 + 0.0001*m.x76*m.x13 + 0.0001*m.x76*m.x14 +
0.0001*m.x76*m.x15 + 0.0001*m.x76*m.x16 + 0.0001*m.x76*m.x17 + 0.0001*m.x76*m.x18 + 0.0001*m.x76*
m.x19 + 0.0001*m.x76*m.x20 + 0.0001*m.x76*m.x21 + 0.0001*m.x76*m.x22 + 0.0001*m.x76*m.x23 +
0.0001*m.x76*m.x24 + 0.0001*m.x76*m.x25 + 0.0001*m.x76*m.x26 + 0.0001*m.x76*m.x27 + 0.0001*m.x76*
m.x28 + 0.0001*m.x76*m.x29 + 0.0001*m.x76*m.x30 + 0.0001*m.x76*m.x31 + 0.0001*m.x76*m.x32 +
0.0001*m.x76*m.x33 + 0.0001*m.x76*m.x34 + 0.0001*m.x76*m.x35 + 0.0001*m.x76*m.x36 + 0.0001*m.x76*
m.x37 + 0.0001*m.x76*m.x38 + 0.0001*m.x76*m.x39 + 0.0001*m.x76*m.x40 + 0.0001*m.x76*m.x41 +
0.0001*m.x76*m.x42 + 0.0001*m.x76*m.x43 + 0.0001*m.x76*m.x44 + 0.0001*m.x76*m.x45 + 0.0001*m.x76*
m.x46 + 0.0001*m.x76*m.x47 + 0.0001*m.x76*m.x48 + 0.0001*m.x76*m.x49 + 0.0001*m.x76*m.x50 +
0.0001*m.x76*m.x51 + 0.0001*m.x76*m.x52 + 0.0001*m.x76*m.x53 + 0.0001*m.x76*m.x54 + 0.0001*m.x76*
m.x55 + 0.0001*m.x76*m.x56 + 0.0001*m.x76*m.x57 + 0.0001*m.x76*m.x58 + 0.0001*m.x76*m.x59 +
0.0001*m.x76*m.x60 + 0.0001*m.x76*m.x61 + 0.0001*m.x76*m.x62 + 0.0001*m.x76*m.x63 +
6.70192609906756*m.x76*m.x64 + 0.0001*m.x76*m.x65 + 0.0001*m.x76*m.x66 + 0.0001*m.x76*m.x67 +
0.0001*m.x76*m.x68 + 0.0001*m.x76*m.x69 + 0.0001*m.x76*m.x70 + 0.0001*m.x76*m.x71 + 0.0001*m.x76*
m.x72 + 0.0001*m.x76*m.x73 + 0.0001*m.x76*m.x74 + 0.0001*m.x76*m.x75 + 3.32310800192592*m.x76**2
+ 0.0001*m.x76*m.x77 + 0.0001*m.x76*m.x78 + 0.0001*m.x76*m.x79 + 0.0001*m.x76*m.x80 + 0.0001*
m.x76*m.x81 + 0.0001*m.x76*m.x82 + 0.0001*m.x76*m.x83 + 0.0001*m.x76*m.x84 + 0.0001*m.x76*m.x85
+ 0.0001*m.x76*m.x86 + 0.0001*m.x76*m.x87 + 0.0001*m.x76*m.x88 + 0.0001*m.x76*m.x89 + 0.0001*
m.x76*m.x90 + 0.0001*m.x76*m.x91 + 0.0001*m.x76*m.x92 + 0.0001*m.x76*m.x93 + 0.0001*m.x76*m.x94
+ 0.0001*m.x76*m.x95 + 0.0001*m.x76*m.x96 + 0.0001*m.x76*m.x97 + 0.0001*m.x76*m.x98 + 0.0001*
m.x76*m.x99 + 0.0001*m.x76*m.x100 + 0.0001*m.x76*m.x101 + 0.0001*m.x76*m.x102 + 0.0001*m.x76*
m.x103 + 0.0001*m.x76*m.x104 + 0.0001*m.x76*m.x105 + 0.0001*m.x76*m.x106 + 0.0001*m.x76*m.x107 +
0.0001*m.x76*m.x108 + 0.0001*m.x76*m.x109 + 0.0001*m.x76*m.x110 + 0.0001*m.x76*m.x111 + 0.0001*
m.x76*m.x112 + 0.0001*m.x76*m.x113 + 0.0001*m.x76*m.x114 + 0.0001*m.x76*m.x115 + 0.0001*m.x76*
m.x116 + 0.0001*m.x76*m.x117 + 0.0001*m.x76*m.x118 + 0.0001*m.x76*m.x119 + 0.0001*m.x76*m.x120 +
0.87497610763658*m.x76*m.x121 + 0.0001*m.x76*m.x122 + 0.0001*m.x76*m.x123 + 0.0001*m.x76*m.x124
+ 0.0001*m.x76*m.x125 + 0.0001*m.x76*m.x126 + 0.0001*m.x76*m.x127 + 0.0001*m.x76*m.x128 + 0.0001
*m.x76*m.x129 + 0.0001*m.x76*m.x130 + 0.0001*m.x76*m.x131 + 0.0001*m.x76*m.x132 + 0.0001*m.x76*
m.x133 + 0.0001*m.x76*m.x134 + 0.0001*m.x76*m.x135 + 0.0001*m.x76*m.x136 + 0.0001*m.x76*m.x137 +
0.0001*m.x76*m.x138 + 0.0001*m.x76*m.x139 + 0.0001*m.x76*m.x140 + 0.0001*m.x76*m.x141 + 0.0001*
m.x76*m.x142 + 0.0001*m.x76*m.x143 + 0.0001*m.x76*m.x144 + 0.0001*m.x76*m.x145 + 0.0001*m.x76*
m.x146 + 1.42317774497402*m.x76*m.x147 + 0.0001*m.x76*m.x148 + 0.0001*m.x76*m.x149 + 0.0001*m.x76
*m.x150 + 0.0001*m.x76*m.x151 + 0.0001*m.x76*m.x152 + 0.0001*m.x76*m.x153 + 0.0001*m.x76*m.x154
+ 0.0001*m.x76*m.x155 + 0.0001*m.x76*m.x156 + 0.0001*m.x76*m.x157 + 0.0001*m.x76*m.x158 + 0.0001
*m.x76*m.x159 + 0.0001*m.x76*m.x160 + 0.0001*m.x76*m.x161 + 0.763965431364781*m.x76*m.x162 +
0.0001*m.x76*m.x163 + 0.0001*m.x76*m.x164 + 0.0001*m.x76*m.x165 + 0.0001*m.x76*m.x166 + 0.0001*
m.x76*m.x167 + 0.0001*m.x76*m.x168 + 0.0001*m.x76*m.x169 + 0.0001*m.x76*m.x170 + 0.0001*m.x76*
m.x171 + 0.0001*m.x76*m.x172 + 0.0001*m.x76*m.x173 + 0.0001*m.x76*m.x174 + 0.0001*m.x76*m.x175 +
0.0001*m.x76*m.x176 + 0.0001*m.x76*m.x177 + 0.0001*m.x76*m.x178 + 0.0001*m.x76*m.x179 + 0.0001*
m.x76*m.x180 + 0.0001*m.x76*m.x181 + 0.0001*m.x76*m.x182 + 0.0001*m.x76*m.x183 + 0.0001*m.x76*
m.x184 + 0.0001*m.x76*m.x185 + 0.0001*m.x77*m.x1 + 0.0001*m.x77*m.x2 + 0.0001*m.x77*m.x3 + 0.0001
*m.x77*m.x4 + 0.0001*m.x77*m.x5 + 0.0001*m.x77*m.x6 + 0.0001*m.x77*m.x7 + 0.0001*m.x77*m.x8 +
0.0001*m.x77*m.x9 + 0.0001*m.x77*m.x10 + 0.0001*m.x77*m.x11 + 0.0001*m.x77*m.x12 + 0.0001*m.x77*
m.x13 + 0.0001*m.x77*m.x14 + 0.0001*m.x77*m.x15 + 0.0001*m.x77*m.x16 + 0.0001*m.x77*m.x17 +
0.0001*m.x77*m.x18 + 0.0001*m.x77*m.x19 + 0.0001*m.x77*m.x20 + 0.0001*m.x77*m.x21 + 0.0001*m.x77*
m.x22 + 0.0001*m.x77*m.x23 + 0.0001*m.x77*m.x24 + 0.0001*m.x77*m.x25 + 0.0001*m.x77*m.x26 +
0.0001*m.x77*m.x27 + 0.0001*m.x77*m.x28 + 0.0001*m.x77*m.x29 + 0.0001*m.x77*m.x30 + 0.0001*m.x77*
m.x31 + 0.0001*m.x77*m.x32 + 0.0001*m.x77*m.x33 + 0.0001*m.x77*m.x34 + 0.0001*m.x77*m.x35 +
0.0001*m.x77*m.x36 + 0.0001*m.x77*m.x37 + 0.0001*m.x77*m.x38 + 0.0001*m.x77*m.x39 + 0.0001*m.x77*
m.x40 + 0.0001*m.x77*m.x41 + 0.0001*m.x77*m.x42 + 0.0001*m.x77*m.x43 + 0.0001*m.x77*m.x44 +
0.0001*m.x77*m.x45 + 0.0001*m.x77*m.x46 + 0.0001*m.x77*m.x47 + 0.0001*m.x77*m.x48 + 0.0001*m.x77*
m.x49 + 0.0001*m.x77*m.x50 + 0.0001*m.x77*m.x51 + 0.0001*m.x77*m.x52 + 0.0001*m.x77*m.x53 +
0.0001*m.x77*m.x54 + 0.0001*m.x77*m.x55 + 0.0001*m.x77*m.x56 + 0.0001*m.x77*m.x57 + 0.0001*m.x77*
m.x58 + 0.0001*m.x77*m.x59 + 0.0001*m.x77*m.x60 + 0.0001*m.x77*m.x61 + 0.0001*m.x77*m.x62 +
0.0001*m.x77*m.x63 + 0.0001*m.x77*m.x64 + 5.37557657494101*m.x77*m.x65 + 0.0001*m.x77*m.x66 +
0.0001*m.x77*m.x67 + 0.0001*m.x77*m.x68 + 0.0001*m.x77*m.x69 + 0.0001*m.x77*m.x70 + 0.0001*m.x77*
m.x71 + 0.0001*m.x77*m.x72 + 0.0001*m.x77*m.x73 + 0.0001*m.x77*m.x74 + 0.0001*m.x77*m.x75 +
0.0001*m.x77*m.x76 + 2.71915619805893*m.x77**2 + 0.0001*m.x77*m.x78 + 0.0001*m.x77*m.x79 + 0.0001
*m.x77*m.x80 + 0.0001*m.x77*m.x81 + 0.0001*m.x77*m.x82 + 0.0001*m.x77*m.x83 + 0.0001*m.x77*m.x84
+ 0.0001*m.x77*m.x85 + 0.0001*m.x77*m.x86 + 0.0001*m.x77*m.x87 + 0.0001*m.x77*m.x88 + 0.0001*
m.x77*m.x89 + 0.0001*m.x77*m.x90 + 0.0001*m.x77*m.x91 + 0.0001*m.x77*m.x92 + 0.0001*m.x77*m.x93
+ 0.0001*m.x77*m.x94 + 0.0001*m.x77*m.x95 + 0.0001*m.x77*m.x96 + 0.0001*m.x77*m.x97 + 0.0001*
m.x77*m.x98 + 0.0001*m.x77*m.x99 + 0.0001*m.x77*m.x100 + 0.0001*m.x77*m.x101 + 0.0001*m.x77*
m.x102 + 0.0001*m.x77*m.x103 + 0.0001*m.x77*m.x104 + 0.0001*m.x77*m.x105 + 0.0001*m.x77*m.x106 +
0.0001*m.x77*m.x107 + 0.0001*m.x77*m.x108 + 0.0001*m.x77*m.x109 + 0.0001*m.x77*m.x110 + 0.0001*
m.x77*m.x111 + 0.0001*m.x77*m.x112 + 0.0001*m.x77*m.x113 + 0.0001*m.x77*m.x114 + 0.0001*m.x77*
m.x115 + 0.0001*m.x77*m.x116 + 0.0001*m.x77*m.x117 + 0.0001*m.x77*m.x118 + 0.0001*m.x77*m.x119 +
0.0001*m.x77*m.x120 + 0.0001*m.x77*m.x121 + 0.914670511374364*m.x77*m.x122 + 0.0001*m.x77*m.x123
+ 0.0001*m.x77*m.x124 + 0.0001*m.x77*m.x125 + 0.0001*m.x77*m.x126 + 0.0001*m.x77*m.x127 + 0.0001
*m.x77*m.x128 + 0.0001*m.x77*m.x129 + 0.0001*m.x77*m.x130 + 0.0001*m.x77*m.x131 + 0.0001*m.x77*
m.x132 + 0.0001*m.x77*m.x133 + 0.0001*m.x77*m.x134 + 0.0001*m.x77*m.x135 + 0.0001*m.x77*m.x136 +
0.0001*m.x77*m.x137 + 0.0001*m.x77*m.x138 + 0.0001*m.x77*m.x139 + 0.0001*m.x77*m.x140 + 0.0001*
m.x77*m.x141 + 0.0001*m.x77*m.x142 + 0.0001*m.x77*m.x143 + 0.0001*m.x77*m.x144 + 0.0001*m.x77*
m.x145 + 0.0001*m.x77*m.x146 + 0.0001*m.x77*m.x147 + 1.29968892387316*m.x77*m.x148 + 0.0001*m.x77
*m.x149 + 0.0001*m.x77*m.x150 + 0.0001*m.x77*m.x151 + 0.0001*m.x77*m.x152 + 0.0001*m.x77*m.x153
+ 0.0001*m.x77*m.x154 + 0.0001*m.x77*m.x155 + 0.0001*m.x77*m.x156 + 0.0001*m.x77*m.x157 + 0.0001
*m.x77*m.x158 + 0.0001*m.x77*m.x159 + 0.0001*m.x77*m.x160 + 0.0001*m.x77*m.x161 + 0.0001*m.x77*
m.x162 + 0.847177128279277*m.x77*m.x163 + 0.0001*m.x77*m.x164 + 0.0001*m.x77*m.x165 + 0.0001*
m.x77*m.x166 + 0.0001*m.x77*m.x167 + 0.0001*m.x77*m.x168 + 0.0001*m.x77*m.x169 + 0.0001*m.x77*
m.x170 + 0.0001*m.x77*m.x171 + 0.0001*m.x77*m.x172 + 0.0001*m.x77*m.x173 + 0.0001*m.x77*m.x174 +
0.0001*m.x77*m.x175 + 0.0001*m.x77*m.x176 + 0.0001*m.x77*m.x177 + 0.0001*m.x77*m.x178 + 0.0001*
m.x77*m.x179 + 0.0001*m.x77*m.x180 + 0.0001*m.x77*m.x181 + 0.0001*m.x77*m.x182 + 0.0001*m.x77*
m.x183 + 0.0001*m.x77*m.x184 + 0.0001*m.x77*m.x185 + 0.0001*m.x78*m.x1 + 0.0001*m.x78*m.x2 +
0.0001*m.x78*m.x3 + 0.0001*m.x78*m.x4 + 0.0001*m.x78*m.x5 + 0.0001*m.x78*m.x6 + 0.0001*m.x78*m.x7
+ 0.0001*m.x78*m.x8 + 0.0001*m.x78*m.x9 + 0.0001*m.x78*m.x10 + 0.0001*m.x78*m.x11 + 0.0001*m.x78
*m.x12 + 0.0001*m.x78*m.x13 + 0.0001*m.x78*m.x14 + 0.0001*m.x78*m.x15 + 0.0001*m.x78*m.x16 +
0.0001*m.x78*m.x17 + 0.0001*m.x78*m.x18 + 0.0001*m.x78*m.x19 + 0.0001*m.x78*m.x20 + 0.0001*m.x78*
m.x21 + 0.0001*m.x78*m.x22 + 0.0001*m.x78*m.x23 + 0.0001*m.x78*m.x24 + 0.0001*m.x78*m.x25 +
0.0001*m.x78*m.x26 + 0.0001*m.x78*m.x27 + 0.0001*m.x78*m.x28 + 0.0001*m.x78*m.x29 + 0.0001*m.x78*
m.x30 + 0.0001*m.x78*m.x31 + 0.0001*m.x78*m.x32 + 0.0001*m.x78*m.x33 + 0.0001*m.x78*m.x34 +
0.0001*m.x78*m.x35 + 0.0001*m.x78*m.x36 + 0.0001*m.x78*m.x37 + 0.0001*m.x78*m.x38 + 0.0001*m.x78*
m.x39 + 0.0001*m.x78*m.x40 + 0.0001*m.x78*m.x41 + 0.0001*m.x78*m.x42 + 0.0001*m.x78*m.x43 +
0.0001*m.x78*m.x44 + 0.0001*m.x78*m.x45 + 0.0001*m.x78*m.x46 + 0.0001*m.x78*m.x47 + 0.0001*m.x78*
m.x48 + 0.0001*m.x78*m.x49 + 0.0001*m.x78*m.x50 + 0.0001*m.x78*m.x51 + 0.0001*m.x78*m.x52 +
0.0001*m.x78*m.x53 + 0.0001*m.x78*m.x54 + 0.0001*m.x78*m.x55 + 0.0001*m.x78*m.x56 + 0.0001*m.x78*
m.x57 + 0.0001*m.x78*m.x58 + 0.0001*m.x78*m.x59 + 0.0001*m.x78*m.x60 + 0.0001*m.x78*m.x61 +
0.0001*m.x78*m.x62 + 0.0001*m.x78*m.x63 + 0.0001*m.x78*m.x64 + 0.0001*m.x78*m.x65 +
5.14013600399385*m.x78*m.x66 + 0.0001*m.x78*m.x67 + 0.0001*m.x78*m.x68 + 0.0001*m.x78*m.x69 +
0.0001*m.x78*m.x70 + 0.0001*m.x78*m.x71 + 0.0001*m.x78*m.x72 + 0.0001*m.x78*m.x73 + 0.0001*m.x78*
m.x74 + 0.0001*m.x78*m.x75 + 0.0001*m.x78*m.x76 + 0.0001*m.x78*m.x77 + 2.4135706094532*m.x78**2
+ 0.0001*m.x78*m.x79 + 0.0001*m.x78*m.x80 + 0.0001*m.x78*m.x81 + 0.0001*m.x78*m.x82 + 0.0001*
m.x78*m.x83 + 0.0001*m.x78*m.x84 + 0.0001*m.x78*m.x85 + 0.0001*m.x78*m.x86 + 0.0001*m.x78*m.x87
+ 0.0001*m.x78*m.x88 + 0.0001*m.x78*m.x89 + 0.0001*m.x78*m.x90 + 0.0001*m.x78*m.x91 + 0.0001*
m.x78*m.x92 + 0.0001*m.x78*m.x93 + 0.0001*m.x78*m.x94 + 0.0001*m.x78*m.x95 + 0.0001*m.x78*m.x96
+ 0.0001*m.x78*m.x97 + 0.0001*m.x78*m.x98 + 0.0001*m.x78*m.x99 + 0.0001*m.x78*m.x100 + 0.0001*
m.x78*m.x101 + 0.0001*m.x78*m.x102 + 0.0001*m.x78*m.x103 + 0.0001*m.x78*m.x104 + 0.0001*m.x78*
m.x105 + 0.0001*m.x78*m.x106 + 0.0001*m.x78*m.x107 + 0.0001*m.x78*m.x108 + 0.0001*m.x78*m.x109 +
0.0001*m.x78*m.x110 + 0.0001*m.x78*m.x111 + 0.0001*m.x78*m.x112 + 0.0001*m.x78*m.x113 + 0.0001*
m.x78*m.x114 + 0.0001*m.x78*m.x115 + 0.0001*m.x78*m.x116 + 0.0001*m.x78*m.x117 + 0.0001*m.x78*
m.x118 + 0.0001*m.x78*m.x119 + 0.0001*m.x78*m.x120 + 0.0001*m.x78*m.x121 + 0.0001*m.x78*m.x122 +
0.826148273240953*m.x78*m.x123 + 0.0001*m.x78*m.x124 + 0.0001*m.x78*m.x125 + 0.0001*m.x78*m.x126
+ 0.0001*m.x78*m.x127 + 0.0001*m.x78*m.x128 + 0.0001*m.x78*m.x129 + 0.0001*m.x78*m.x130 + 0.0001
*m.x78*m.x131 + 0.0001*m.x78*m.x132 + 0.0001*m.x78*m.x133 + 0.0001*m.x78*m.x134 + 0.0001*m.x78*
m.x135 + 0.0001*m.x78*m.x136 + 0.0001*m.x78*m.x137 + 0.0001*m.x78*m.x138 + 0.0001*m.x78*m.x139 +
0.0001*m.x78*m.x140 + 0.0001*m.x78*m.x141 + 0.0001*m.x78*m.x142 + 0.0001*m.x78*m.x143 + 0.0001*
m.x78*m.x144 + 0.0001*m.x78*m.x145 + 0.0001*m.x78*m.x146 + 0.0001*m.x78*m.x147 + 0.0001*m.x78*
m.x148 + 1.21137656774799*m.x78*m.x149 + 0.0001*m.x78*m.x150 + 0.0001*m.x78*m.x151 + 0.0001*m.x78
*m.x152 + 0.0001*m.x78*m.x153 + 0.0001*m.x78*m.x154 + 0.0001*m.x78*m.x155 + 0.0001*m.x78*m.x156
+ 0.0001*m.x78*m.x157 + 0.0001*m.x78*m.x158 + 0.0001*m.x78*m.x159 + 0.0001*m.x78*m.x160 + 0.0001
*m.x78*m.x161 + 0.0001*m.x78*m.x162 + 0.0001*m.x78*m.x163 + 0.823380777001311*m.x78*m.x164 +
0.0001*m.x78*m.x165 + 0.0001*m.x78*m.x166 + 0.0001*m.x78*m.x167 + 0.0001*m.x78*m.x168 + 0.0001*
m.x78*m.x169 + 0.0001*m.x78*m.x170 + 0.0001*m.x78*m.x171 + 0.0001*m.x78*m.x172 + 0.0001*m.x78*
m.x173 + 0.0001*m.x78*m.x174 + 0.0001*m.x78*m.x175 + 0.0001*m.x78*m.x176 + 0.0001*m.x78*m.x177 +
0.0001*m.x78*m.x178 + 0.0001*m.x78*m.x179 + 0.0001*m.x78*m.x180 + 0.0001*m.x78*m.x181 + 0.0001*
m.x78*m.x182 + 0.0001*m.x78*m.x183 + 0.0001*m.x78*m.x184 + 0.0001*m.x78*m.x185 + 0.0001*m.x79*
m.x1 + 0.0001*m.x79*m.x2 + 0.0001*m.x79*m.x3 + 0.0001*m.x79*m.x4 + 0.0001*m.x79*m.x5 + 0.0001*
m.x79*m.x6 + 0.0001*m.x79*m.x7 + 0.0001*m.x79*m.x8 + 0.0001*m.x79*m.x9 + 0.0001*m.x79*m.x10 +
0.0001*m.x79*m.x11 + 0.0001*m.x79*m.x12 + 0.0001*m.x79*m.x13 + 0.0001*m.x79*m.x14 + 0.0001*m.x79*
m.x15 + 0.0001*m.x79*m.x16 + 0.0001*m.x79*m.x17 + 0.0001*m.x79*m.x18 + 0.0001*m.x79*m.x19 +
0.0001*m.x79*m.x20 + 0.0001*m.x79*m.x21 + 0.0001*m.x79*m.x22 + 0.0001*m.x79*m.x23 + 0.0001*m.x79*
m.x24 + 0.0001*m.x79*m.x25 + 0.0001*m.x79*m.x26 + 0.0001*m.x79*m.x27 + 0.0001*m.x79*m.x28 +
0.0001*m.x79*m.x29 + 0.0001*m.x79*m.x30 + 0.0001*m.x79*m.x31 + 0.0001*m.x79*m.x32 + 0.0001*m.x79*
m.x33 + 0.0001*m.x79*m.x34 + 0.0001*m.x79*m.x35 + 0.0001*m.x79*m.x36 + 0.0001*m.x79*m.x37 +
0.0001*m.x79*m.x38 + 0.0001*m.x79*m.x39 + 0.0001*m.x79*m.x40 + 0.0001*m.x79*m.x41 + 0.0001*m.x79*
m.x42 + 0.0001*m.x79*m.x43 + 0.0001*m.x79*m.x44 + 0.0001*m.x79*m.x45 + 0.0001*m.x79*m.x46 +
0.0001*m.x79*m.x47 + 0.0001*m.x79*m.x48 + 0.0001*m.x79*m.x49 + 0.0001*m.x79*m.x50 + 0.0001*m.x79*
m.x51 + 0.0001*m.x79*m.x52 + 0.0001*m.x79*m.x53 + 0.0001*m.x79*m.x54 + 0.0001*m.x79*m.x55 +
0.0001*m.x79*m.x56 + 0.0001*m.x79*m.x57 + 0.0001*m.x79*m.x58 + 0.0001*m.x79*m.x59 + 0.0001*m.x79*
m.x60 + 0.0001*m.x79*m.x61 + 0.0001*m.x79*m.x62 + 0.0001*m.x79*m.x63 + 0.0001*m.x79*m.x64 +
0.0001*m.x79*m.x65 + 0.0001*m.x79*m.x66 + 4.81894784211333*m.x79*m.x67 + 0.0001*m.x79*m.x68 +
0.0001*m.x79*m.x69 + 0.0001*m.x79*m.x70 + 0.0001*m.x79*m.x71 + 0.0001*m.x79*m.x72 + 0.0001*m.x79*
m.x73 + 0.0001*m.x79*m.x74 + 0.0001*m.x79*m.x75 + 0.0001*m.x79*m.x76 + 0.0001*m.x79*m.x77 +
0.0001*m.x79*m.x78 + 2.47242472493921*m.x79**2 + 0.0001*m.x79*m.x80 + 0.0001*m.x79*m.x81 + 0.0001
*m.x79*m.x82 + 0.0001*m.x79*m.x83 + 0.0001*m.x79*m.x84 + 0.0001*m.x79*m.x85 + 0.0001*m.x79*m.x86
+ 0.0001*m.x79*m.x87 + 0.0001*m.x79*m.x88 + 0.0001*m.x79*m.x89 + 0.0001*m.x79*m.x90 + 0.0001*
m.x79*m.x91 + 0.0001*m.x79*m.x92 + 0.0001*m.x79*m.x93 + 0.0001*m.x79*m.x94 + 0.0001*m.x79*m.x95
+ 0.0001*m.x79*m.x96 + 0.0001*m.x79*m.x97 + 0.0001*m.x79*m.x98 + 0.0001*m.x79*m.x99 + 0.0001*
m.x79*m.x100 + 0.0001*m.x79*m.x101 + 0.0001*m.x79*m.x102 + 0.0001*m.x79*m.x103 + 0.0001*m.x79*
m.x104 + 0.0001*m.x79*m.x105 + 0.0001*m.x79*m.x106 + 0.0001*m.x79*m.x107 + 0.0001*m.x79*m.x108 +
0.0001*m.x79*m.x109 + 0.0001*m.x79*m.x110 + 0.0001*m.x79*m.x111 + 0.0001*m.x79*m.x112 + 0.0001*
m.x79*m.x113 + 0.0001*m.x79*m.x114 + 0.0001*m.x79*m.x115 + 0.0001*m.x79*m.x116 + 0.0001*m.x79*
m.x117 + 0.0001*m.x79*m.x118 + 0.0001*m.x79*m.x119 + 0.0001*m.x79*m.x120 + 0.0001*m.x79*m.x121 +
0.0001*m.x79*m.x122 + 0.0001*m.x79*m.x123 + 0.789212707970006*m.x79*m.x124 + 0.0001*m.x79*m.x125
+ 0.0001*m.x79*m.x126 + 0.0001*m.x79*m.x127 + 0.0001*m.x79*m.x128 + 0.0001*m.x79*m.x129 + 0.0001
*m.x79*m.x130 + 0.0001*m.x79*m.x131 + 0.0001*m.x79*m.x132 + 0.0001*m.x79*m.x133 + 0.0001*m.x79*
m.x134 + 0.0001*m.x79*m.x135 + 0.0001*m.x79*m.x136 + 0.0001*m.x79*m.x137 + 0.0001*m.x79*m.x138 +
0.0001*m.x79*m.x139 + 0.0001*m.x79*m.x140 + 0.0001*m.x79*m.x141 + 0.0001*m.x79*m.x142 + 0.0001*
m.x79*m.x143 + 0.0001*m.x79*m.x144 + 0.0001*m.x79*m.x145 + 0.0001*m.x79*m.x146 + 0.0001*m.x79*
m.x147 + 0.0001*m.x79*m.x148 + 0.0001*m.x79*m.x149 + 1.15256777331454*m.x79*m.x150 + 0.0001*m.x79
*m.x151 + 0.0001*m.x79*m.x152 + 0.0001*m.x79*m.x153 + 0.0001*m.x79*m.x154 + 0.0001*m.x79*m.x155
+ 0.0001*m.x79*m.x156 + 0.0001*m.x79*m.x157 + 0.0001*m.x79*m.x158 + 0.0001*m.x79*m.x159 + 0.0001
*m.x79*m.x160 + 0.0001*m.x79*m.x161 + 0.0001*m.x79*m.x162 + 0.0001*m.x79*m.x163 + 0.0001*m.x79*
m.x164 + 0.786568956360439*m.x79*m.x165 + 0.0001*m.x79*m.x166 + 0.0001*m.x79*m.x167 + 0.0001*
m.x79*m.x168 + 0.0001*m.x79*m.x169 + 0.0001*m.x79*m.x170 + 0.0001*m.x79*m.x171 + 0.0001*m.x79*
m.x172 + 0.0001*m.x79*m.x173 + 0.0001*m.x79*m.x174 + 0.0001*m.x79*m.x175 + 0.0001*m.x79*m.x176 +
0.0001*m.x79*m.x177 + 0.0001*m.x79*m.x178 + 0.0001*m.x79*m.x179 + 0.0001*m.x79*m.x180 + 0.0001*
m.x79*m.x181 + 0.0001*m.x79*m.x182 + 0.0001*m.x79*m.x183 + 0.0001*m.x79*m.x184 + 0.0001*m.x79*
m.x185 + 0.0001*m.x80*m.x1 + 0.0001*m.x80*m.x2 + 0.0001*m.x80*m.x3 + 0.0001*m.x80*m.x4 + 0.0001*
m.x80*m.x5 + 0.0001*m.x80*m.x6 + 0.0001*m.x80*m.x7 + 0.0001*m.x80*m.x8 + 0.0001*m.x80*m.x9 +
0.0001*m.x80*m.x10 + 0.0001*m.x80*m.x11 + 0.0001*m.x80*m.x12 + 0.0001*m.x80*m.x13 + 0.0001*m.x80*
m.x14 + 0.0001*m.x80*m.x15 + 0.0001*m.x80*m.x16 + 0.0001*m.x80*m.x17 + 0.0001*m.x80*m.x18 +
0.0001*m.x80*m.x19 + 0.0001*m.x80*m.x20 + 0.0001*m.x80*m.x21 + 0.0001*m.x80*m.x22 + 0.0001*m.x80*
m.x23 + 0.0001*m.x80*m.x24 + 0.0001*m.x80*m.x25 + 0.0001*m.x80*m.x26 + 0.0001*m.x80*m.x27 +
0.0001*m.x80*m.x28 + 0.0001*m.x80*m.x29 + 0.0001*m.x80*m.x30 + 0.0001*m.x80*m.x31 + 0.0001*m.x80*
m.x32 + 0.0001*m.x80*m.x33 + 0.0001*m.x80*m.x34 + 0.0001*m.x80*m.x35 + 0.0001*m.x80*m.x36 +
0.0001*m.x80*m.x37 + 0.0001*m.x80*m.x38 + 0.0001*m.x80*m.x39 + 0.0001*m.x80*m.x40 + 0.0001*m.x80*
m.x41 + 0.0001*m.x80*m.x42 + 0.0001*m.x80*m.x43 + 0.0001*m.x80*m.x44 + 0.0001*m.x80*m.x45 +
0.0001*m.x80*m.x46 + 0.0001*m.x80*m.x47 + 0.0001*m.x80*m.x48 + 0.0001*m.x80*m.x49 + 0.0001*m.x80*
m.x50 + 0.0001*m.x80*m.x51 + 0.0001*m.x80*m.x52 + 0.0001*m.x80*m.x53 + 0.0001*m.x80*m.x54 +
0.0001*m.x80*m.x55 + 0.0001*m.x80*m.x56 + 0.0001*m.x80*m.x57 + 0.0001*m.x80*m.x58 + 0.0001*m.x80*
m.x59 + 0.0001*m.x80*m.x60 + 0.0001*m.x80*m.x61 + 0.0001*m.x80*m.x62 + 0.0001*m.x80*m.x63 +
0.0001*m.x80*m.x64 + 0.0001*m.x80*m.x65 + 0.0001*m.x80*m.x66 + 0.0001*m.x80*m.x67 +
4.81894784211333*m.x80*m.x68 + 0.0001*m.x80*m.x69 + 0.0001*m.x80*m.x70 + 0.0001*m.x80*m.x71 +
0.0001*m.x80*m.x72 + 0.0001*m.x80*m.x73 + 0.0001*m.x80*m.x74 + 0.0001*m.x80*m.x75 + 0.0001*m.x80*
m.x76 + 0.0001*m.x80*m.x77 + 0.0001*m.x80*m.x78 + 0.0001*m.x80*m.x79 + 2.46392042492506*m.x80**2
+ 0.0001*m.x80*m.x81 + 0.0001*m.x80*m.x82 + 0.0001*m.x80*m.x83 + 0.0001*m.x80*m.x84 + 0.0001*
m.x80*m.x85 + 0.0001*m.x80*m.x86 + 0.0001*m.x80*m.x87 + 0.0001*m.x80*m.x88 + 0.0001*m.x80*m.x89
+ 0.0001*m.x80*m.x90 + 0.0001*m.x80*m.x91 + 0.0001*m.x80*m.x92 + 0.0001*m.x80*m.x93 + 0.0001*
m.x80*m.x94 + 0.0001*m.x80*m.x95 + 0.0001*m.x80*m.x96 + 0.0001*m.x80*m.x97 + 0.0001*m.x80*m.x98
+ 0.0001*m.x80*m.x99 + 0.0001*m.x80*m.x100 + 0.0001*m.x80*m.x101 + 0.0001*m.x80*m.x102 + 0.0001*
m.x80*m.x103 + 0.0001*m.x80*m.x104 + 0.0001*m.x80*m.x105 + 0.0001*m.x80*m.x106 + 0.0001*m.x80*
m.x107 + 0.0001*m.x80*m.x108 + 0.0001*m.x80*m.x109 + 0.0001*m.x80*m.x110 + 0.0001*m.x80*m.x111 +
0.0001*m.x80*m.x112 + 0.0001*m.x80*m.x113 + 0.0001*m.x80*m.x114 + 0.0001*m.x80*m.x115 + 0.0001*
m.x80*m.x116 + 0.0001*m.x80*m.x117 + 0.0001*m.x80*m.x118 + 0.0001*m.x80*m.x119 + 0.0001*m.x80*
m.x120 + 0.0001*m.x80*m.x121 + 0.0001*m.x80*m.x122 + 0.0001*m.x80*m.x123 + 0.0001*m.x80*m.x124 +
0.883116692568304*m.x80*m.x125 + 0.0001*m.x80*m.x126 + 0.0001*m.x80*m.x127 + 0.0001*m.x80*m.x128
+ 0.0001*m.x80*m.x129 + 0.0001*m.x80*m.x130 + 0.0001*m.x80*m.x131 + 0.0001*m.x80*m.x132 + 0.0001
*m.x80*m.x133 + 0.0001*m.x80*m.x134 + 0.0001*m.x80*m.x135 + 0.0001*m.x80*m.x136 + 0.0001*m.x80*
m.x137 + 0.0001*m.x80*m.x138 + 0.0001*m.x80*m.x139 + 0.0001*m.x80*m.x140 + 0.0001*m.x80*m.x141 +
0.0001*m.x80*m.x142 + 0.0001*m.x80*m.x143 + 0.0001*m.x80*m.x144 + 0.0001*m.x80*m.x145 + 0.0001*
m.x80*m.x146 + 0.0001*m.x80*m.x147 + 0.0001*m.x80*m.x148 + 0.0001*m.x80*m.x149 + 0.0001*m.x80*
m.x150 + 1.20913493689189*m.x80*m.x151 + 0.0001*m.x80*m.x152 + 0.0001*m.x80*m.x153 + 0.0001*m.x80
*m.x154 + 0.0001*m.x80*m.x155 + 0.0001*m.x80*m.x156 + 0.0001*m.x80*m.x157 + 0.0001*m.x80*m.x158
+ 0.0001*m.x80*m.x159 + 0.0001*m.x80*m.x160 + 0.0001*m.x80*m.x161 + 0.0001*m.x80*m.x162 + 0.0001
*m.x80*m.x163 + 0.0001*m.x80*m.x164 + 0.0001*m.x80*m.x165 + 0.746872060090427*m.x80*m.x166 +
0.0001*m.x80*m.x167 + 0.0001*m.x80*m.x168 + 0.0001*m.x80*m.x169 + 0.0001*m.x80*m.x170 + 0.0001*
m.x80*m.x171 + 0.0001*m.x80*m.x172 + 0.0001*m.x80*m.x173 + 0.0001*m.x80*m.x174 + 0.0001*m.x80*
m.x175 + 0.0001*m.x80*m.x176 + 0.0001*m.x80*m.x177 + 0.0001*m.x80*m.x178 + 0.0001*m.x80*m.x179 +
0.0001*m.x80*m.x180 + 0.0001*m.x80*m.x181 + 0.0001*m.x80*m.x182 + 0.0001*m.x80*m.x183 + 0.0001*
m.x80*m.x184 + 0.0001*m.x80*m.x185 + 0.0001*m.x81*m.x1 + 0.0001*m.x81*m.x2 + 0.0001*m.x81*m.x3 +
0.0001*m.x81*m.x4 + 0.0001*m.x81*m.x5 + 0.0001*m.x81*m.x6 + 0.0001*m.x81*m.x7 + 0.0001*m.x81*m.x8
+ 0.0001*m.x81*m.x9 + 0.0001*m.x81*m.x10 + 0.0001*m.x81*m.x11 + 0.0001*m.x81*m.x12 + 0.0001*
m.x81*m.x13 + 0.0001*m.x81*m.x14 + 0.0001*m.x81*m.x15 + 0.0001*m.x81*m.x16 + 0.0001*m.x81*m.x17
+ 0.0001*m.x81*m.x18 + 0.0001*m.x81*m.x19 + 0.0001*m.x81*m.x20 + 0.0001*m.x81*m.x21 + 0.0001*
m.x81*m.x22 + 0.0001*m.x81*m.x23 + 0.0001*m.x81*m.x24 + 0.0001*m.x81*m.x25 + 0.0001*m.x81*m.x26
+ 0.0001*m.x81*m.x27 + 0.0001*m.x81*m.x28 + 0.0001*m.x81*m.x29 + 0.0001*m.x81*m.x30 + 0.0001*
m.x81*m.x31 + 0.0001*m.x81*m.x32 + 0.0001*m.x81*m.x33 + 0.0001*m.x81*m.x34 + 0.0001*m.x81*m.x35
+ 0.0001*m.x81*m.x36 + 0.0001*m.x81*m.x37 + 0.0001*m.x81*m.x38 + 0.0001*m.x81*m.x39 + 0.0001*
m.x81*m.x40 + 0.0001*m.x81*m.x41 + 0.0001*m.x81*m.x42 + 0.0001*m.x81*m.x43 + 0.0001*m.x81*m.x44
+ 0.0001*m.x81*m.x45 + 0.0001*m.x81*m.x46 + 0.0001*m.x81*m.x47 + 0.0001*m.x81*m.x48 + 0.0001*
m.x81*m.x49 + 0.0001*m.x81*m.x50 + 0.0001*m.x81*m.x51 + 0.0001*m.x81*m.x52 + 0.0001*m.x81*m.x53
+ 0.0001*m.x81*m.x54 + 0.0001*m.x81*m.x55 + 0.0001*m.x81*m.x56 + 0.0001*m.x81*m.x57 + 0.0001*
m.x81*m.x58 + 0.0001*m.x81*m.x59 + 0.0001*m.x81*m.x60 + 0.0001*m.x81*m.x61 + 0.0001*m.x81*m.x62
+ 0.0001*m.x81*m.x63 + 0.0001*m.x81*m.x64 + 0.0001*m.x81*m.x65 + 0.0001*m.x81*m.x66 + 0.0001*
m.x81*m.x67 + 0.0001*m.x81*m.x68 + 3.68435207385428*m.x81*m.x69 + 0.0001*m.x81*m.x70 + 0.0001*
m.x81*m.x71 + 0.0001*m.x81*m.x72 + 0.0001*m.x81*m.x73 + 0.0001*m.x81*m.x74 + 0.0001*m.x81*m.x75
+ 0.0001*m.x81*m.x76 + 0.0001*m.x81*m.x77 + 0.0001*m.x81*m.x78 + 0.0001*m.x81*m.x79 + 0.0001*
m.x81*m.x80 + 1.99231148700583*m.x81**2 + 0.0001*m.x81*m.x82 + 0.0001*m.x81*m.x83 + 0.0001*m.x81*
m.x84 + 0.0001*m.x81*m.x85 + 0.0001*m.x81*m.x86 + 0.0001*m.x81*m.x87 + 0.0001*m.x81*m.x88 +
0.0001*m.x81*m.x89 + 0.0001*m.x81*m.x90 + 0.0001*m.x81*m.x91 + 0.0001*m.x81*m.x92 + 0.0001*m.x81*
m.x93 + 0.0001*m.x81*m.x94 + 0.0001*m.x81*m.x95 + 0.0001*m.x81*m.x96 + 0.0001*m.x81*m.x97 +
0.0001*m.x81*m.x98 + 0.0001*m.x81*m.x99 + 0.0001*m.x81*m.x100 + 0.0001*m.x81*m.x101 + 0.0001*
m.x81*m.x102 + 0.0001*m.x81*m.x103 + 0.0001*m.x81*m.x104 + 0.0001*m.x81*m.x105 + 0.0001*m.x81*
m.x106 + 0.0001*m.x81*m.x107 + 0.0001*m.x81*m.x108 + 0.0001*m.x81*m.x109 + 0.0001*m.x81*m.x110 +
0.0001*m.x81*m.x111 + 0.0001*m.x81*m.x112 + 0.0001*m.x81*m.x113 + 0.0001*m.x81*m.x114 + 0.0001*
m.x81*m.x115 + 0.0001*m.x81*m.x116 + 0.0001*m.x81*m.x117 + 0.0001*m.x81*m.x118 + 0.0001*m.x81*
m.x119 + 0.0001*m.x81*m.x120 + 0.0001*m.x81*m.x121 + 0.0001*m.x81*m.x122 + 0.0001*m.x81*m.x123 +
0.0001*m.x81*m.x124 + 0.0001*m.x81*m.x125 + 0.920691215358521*m.x81*m.x126 + 0.0001*m.x81*m.x127
+ 0.0001*m.x81*m.x128 + 0.0001*m.x81*m.x129 + 0.0001*m.x81*m.x130 + 0.0001*m.x81*m.x131 + 0.0001
*m.x81*m.x132 + 0.0001*m.x81*m.x133 + 0.0001*m.x81*m.x134 + 0.0001*m.x81*m.x135 + 0.0001*m.x81*
m.x136 + 0.0001*m.x81*m.x137 + 0.0001*m.x81*m.x138 + 0.0001*m.x81*m.x139 + 0.0001*m.x81*m.x140 +
0.0001*m.x81*m.x141 + 0.0001*m.x81*m.x142 + 0.0001*m.x81*m.x143 + 0.0001*m.x81*m.x144 + 0.0001*
m.x81*m.x145 + 0.0001*m.x81*m.x146 + 0.0001*m.x81*m.x147 + 0.0001*m.x81*m.x148 + 0.0001*m.x81*
m.x149 + 0.0001*m.x81*m.x150 + 0.0001*m.x81*m.x151 + 1.25084164368406*m.x81*m.x152 + 0.0001*m.x81
*m.x153 + 0.0001*m.x81*m.x154 + 0.0001*m.x81*m.x155 + 0.0001*m.x81*m.x156 + 0.0001*m.x81*m.x157
+ 0.0001*m.x81*m.x158 + 0.0001*m.x81*m.x159 + 0.0001*m.x81*m.x160 + 0.0001*m.x81*m.x161 + 0.0001
*m.x81*m.x162 + 0.0001*m.x81*m.x163 + 0.0001*m.x81*m.x164 + 0.0001*m.x81*m.x165 + 0.0001*m.x81*
m.x166 + 0.790163389415287*m.x81*m.x167 + 0.0001*m.x81*m.x168 + 0.0001*m.x81*m.x169 + 0.0001*
m.x81*m.x170 + 0.0001*m.x81*m.x171 + 0.0001*m.x81*m.x172 + 0.0001*m.x81*m.x173 + 0.0001*m.x81*
m.x174 + 0.0001*m.x81*m.x175 + 0.0001*m.x81*m.x176 + 0.0001*m.x81*m.x177 + 0.0001*m.x81*m.x178 +
0.0001*m.x81*m.x179 + 0.0001*m.x81*m.x180 + 0.0001*m.x81*m.x181 + 0.0001*m.x81*m.x182 + 0.0001*
m.x81*m.x183 + 0.0001*m.x81*m.x184 + 0.0001*m.x81*m.x185 + 0.0001*m.x82*m.x1 + 0.0001*m.x82*m.x2
+ 0.0001*m.x82*m.x3 + 0.0001*m.x82*m.x4 + 0.0001*m.x82*m.x5 + 0.0001*m.x82*m.x6 + 0.0001*m.x82*
m.x7 + 0.0001*m.x82*m.x8 + 0.0001*m.x82*m.x9 + 0.0001*m.x82*m.x10 + 0.0001*m.x82*m.x11 + 0.0001*
m.x82*m.x12 + 0.0001*m.x82*m.x13 + 0.0001*m.x82*m.x14 + 0.0001*m.x82*m.x15 + 0.0001*m.x82*m.x16
+ 0.0001*m.x82*m.x17 + 0.0001*m.x82*m.x18 + 0.0001*m.x82*m.x19 + 0.0001*m.x82*m.x20 + 0.0001*
m.x82*m.x21 + 0.0001*m.x82*m.x22 + 0.0001*m.x82*m.x23 + 0.0001*m.x82*m.x24 + 0.0001*m.x82*m.x25
+ 0.0001*m.x82*m.x26 + 0.0001*m.x82*m.x27 + 0.0001*m.x82*m.x28 + 0.0001*m.x82*m.x29 + 0.0001*
m.x82*m.x30 + 0.0001*m.x82*m.x31 + 0.0001*m.x82*m.x32 + 0.0001*m.x82*m.x33 + 0.0001*m.x82*m.x34
+ 0.0001*m.x82*m.x35 + 0.0001*m.x82*m.x36 + 0.0001*m.x82*m.x37 + 0.0001*m.x82*m.x38 + 0.0001*
m.x82*m.x39 + 0.0001*m.x82*m.x40 + 0.0001*m.x82*m.x41 + 0.0001*m.x82*m.x42 + 0.0001*m.x82*m.x43
+ 0.0001*m.x82*m.x44 + 0.0001*m.x82*m.x45 + 0.0001*m.x82*m.x46 + 0.0001*m.x82*m.x47 + 0.0001*
m.x82*m.x48 + 0.0001*m.x82*m.x49 + 0.0001*m.x82*m.x50 + 0.0001*m.x82*m.x51 + 0.0001*m.x82*m.x52
+ 0.0001*m.x82*m.x53 + 0.0001*m.x82*m.x54 + 0.0001*m.x82*m.x55 + 0.0001*m.x82*m.x56 + 0.0001*
m.x82*m.x57 + 0.0001*m.x82*m.x58 + 0.0001*m.x82*m.x59 + 0.0001*m.x82*m.x60 + 0.0001*m.x82*m.x61
+ 0.0001*m.x82*m.x62 + 0.0001*m.x82*m.x63 + 0.0001*m.x82*m.x64 + 0.0001*m.x82*m.x65 + 0.0001*
m.x82*m.x66 + 0.0001*m.x82*m.x67 + 0.0001*m.x82*m.x68 + 0.0001*m.x82*m.x69 + 3.83702324608675*
m.x82*m.x70 + 0.0001*m.x82*m.x71 + 0.0001*m.x82*m.x72 + 0.0001*m.x82*m.x73 + 0.0001*m.x82*m.x74
+ 0.0001*m.x82*m.x75 + 0.0001*m.x82*m.x76 + 0.0001*m.x82*m.x77 + 0.0001*m.x82*m.x78 + 0.0001*
m.x82*m.x79 + 0.0001*m.x82*m.x80 + 0.0001*m.x82*m.x81 + 1.90495941554065*m.x82**2 + 0.0001*m.x82*
m.x83 + 0.0001*m.x82*m.x84 + 0.0001*m.x82*m.x85 + 0.0001*m.x82*m.x86 + 0.0001*m.x82*m.x87 +
0.0001*m.x82*m.x88 + 0.0001*m.x82*m.x89 + 0.0001*m.x82*m.x90 + 0.0001*m.x82*m.x91 + 0.0001*m.x82*
m.x92 + 0.0001*m.x82*m.x93 + 0.0001*m.x82*m.x94 + 0.0001*m.x82*m.x95 + 0.0001*m.x82*m.x96 +
0.0001*m.x82*m.x97 + 0.0001*m.x82*m.x98 + 0.0001*m.x82*m.x99 + 0.0001*m.x82*m.x100 + 0.0001*m.x82
*m.x101 + 0.0001*m.x82*m.x102 + 0.0001*m.x82*m.x103 + 0.0001*m.x82*m.x104 + 0.0001*m.x82*m.x105
+ 0.0001*m.x82*m.x106 + 0.0001*m.x82*m.x107 + 0.0001*m.x82*m.x108 + 0.0001*m.x82*m.x109 + 0.0001
*m.x82*m.x110 + 0.0001*m.x82*m.x111 + 0.0001*m.x82*m.x112 + 0.0001*m.x82*m.x113 + 0.0001*m.x82*
m.x114 + 0.0001*m.x82*m.x115 + 0.0001*m.x82*m.x116 + 0.0001*m.x82*m.x117 + 0.0001*m.x82*m.x118 +
0.0001*m.x82*m.x119 + 0.0001*m.x82*m.x120 + 0.0001*m.x82*m.x121 + 0.0001*m.x82*m.x122 + 0.0001*
m.x82*m.x123 + 0.0001*m.x82*m.x124 + 0.0001*m.x82*m.x125 + 0.0001*m.x82*m.x126 +
0.855482006991271*m.x82*m.x127 + 0.0001*m.x82*m.x128 + 0.0001*m.x82*m.x129 + 0.0001*m.x82*m.x130
+ 0.0001*m.x82*m.x131 + 0.0001*m.x82*m.x132 + 0.0001*m.x82*m.x133 + 0.0001*m.x82*m.x134 + 0.0001
*m.x82*m.x135 + 0.0001*m.x82*m.x136 + 0.0001*m.x82*m.x137 + 0.0001*m.x82*m.x138 + 0.0001*m.x82*
m.x139 + 0.0001*m.x82*m.x140 + 0.0001*m.x82*m.x141 + 0.0001*m.x82*m.x142 + 0.0001*m.x82*m.x143 +
0.0001*m.x82*m.x144 + 0.0001*m.x82*m.x145 + 0.0001*m.x82*m.x146 + 0.0001*m.x82*m.x147 + 0.0001*
m.x82*m.x148 + 0.0001*m.x82*m.x149 + 0.0001*m.x82*m.x150 + 0.0001*m.x82*m.x151 + 0.0001*m.x82*
m.x152 + 1.16455074109673*m.x82*m.x153 + 0.0001*m.x82*m.x154 + 0.0001*m.x82*m.x155 + 0.0001*m.x82
*m.x156 + 0.0001*m.x82*m.x157 + 0.0001*m.x82*m.x158 + 0.0001*m.x82*m.x159 + 0.0001*m.x82*m.x160
+ 0.0001*m.x82*m.x161 + 0.0001*m.x82*m.x162 + 0.0001*m.x82*m.x163 + 0.0001*m.x82*m.x164 + 0.0001
*m.x82*m.x165 + 0.0001*m.x82*m.x166 + 0.0001*m.x82*m.x167 + 0.734199996191235*m.x82*m.x168 +
0.0001*m.x82*m.x169 + 0.0001*m.x82*m.x170 + 0.0001*m.x82*m.x171 + 0.0001*m.x82*m.x172 + 0.0001*
m.x82*m.x173 + 0.0001*m.x82*m.x174 + 0.0001*m.x82*m.x175 + 0.0001*m.x82*m.x176 + 0.0001*m.x82*
m.x177 + 0.0001*m.x82*m.x178 + 0.0001*m.x82*m.x179 + 0.0001*m.x82*m.x180 + 0.0001*m.x82*m.x181 +
0.0001*m.x82*m.x182 + 0.0001*m.x82*m.x183 + 0.0001*m.x82*m.x184 + 0.0001*m.x82*m.x185 + 0.0001*
m.x83*m.x1 + 0.0001*m.x83*m.x2 + 0.0001*m.x83*m.x3 + 0.0001*m.x83*m.x4 + 0.0001*m.x83*m.x5 +
0.0001*m.x83*m.x6 + 0.0001*m.x83*m.x7 + 0.0001*m.x83*m.x8 + 0.0001*m.x83*m.x9 + 0.0001*m.x83*
m.x10 + 0.0001*m.x83*m.x11 + 0.0001*m.x83*m.x12 + 0.0001*m.x83*m.x13 + 0.0001*m.x83*m.x14 +
0.0001*m.x83*m.x15 + 0.0001*m.x83*m.x16 + 0.0001*m.x83*m.x17 + 0.0001*m.x83*m.x18 + 0.0001*m.x83*
m.x19 + 0.0001*m.x83*m.x20 + 0.0001*m.x83*m.x21 + 0.0001*m.x83*m.x22 + 0.0001*m.x83*m.x23 +
0.0001*m.x83*m.x24 + 0.0001*m.x83*m.x25 + 0.0001*m.x83*m.x26 + 0.0001*m.x83*m.x27 + 0.0001*m.x83*
m.x28 + 0.0001*m.x83*m.x29 + 0.0001*m.x83*m.x30 + 0.0001*m.x83*m.x31 + 0.0001*m.x83*m.x32 +
0.0001*m.x83*m.x33 + 0.0001*m.x83*m.x34 + 0.0001*m.x83*m.x35 + 0.0001*m.x83*m.x36 + 0.0001*m.x83*
m.x37 + 0.0001*m.x83*m.x38 + 0.0001*m.x83*m.x39 + 0.0001*m.x83*m.x40 + 0.0001*m.x83*m.x41 +
0.0001*m.x83*m.x42 + 0.0001*m.x83*m.x43 + 0.0001*m.x83*m.x44 + 0.0001*m.x83*m.x45 + 0.0001*m.x83*
m.x46 + 0.0001*m.x83*m.x47 + 0.0001*m.x83*m.x48 + 0.0001*m.x83*m.x49 + 0.0001*m.x83*m.x50 +
0.0001*m.x83*m.x51 + 0.0001*m.x83*m.x52 + 0.0001*m.x83*m.x53 + 0.0001*m.x83*m.x54 + 0.0001*m.x83*
m.x55 + 0.0001*m.x83*m.x56 + 0.0001*m.x83*m.x57 + 0.0001*m.x83*m.x58 + 0.0001*m.x83*m.x59 +
0.0001*m.x83*m.x60 + 0.0001*m.x83*m.x61 + 0.0001*m.x83*m.x62 + 0.0001*m.x83*m.x63 + 0.0001*m.x83*
m.x64 + 0.0001*m.x83*m.x65 + 0.0001*m.x83*m.x66 + 0.0001*m.x83*m.x67 + 0.0001*m.x83*m.x68 +
0.0001*m.x83*m.x69 + 0.0001*m.x83*m.x70 + 3.83702324608675*m.x83*m.x71 + 0.0001*m.x83*m.x72 +
0.0001*m.x83*m.x73 + 0.0001*m.x83*m.x74 + 0.0001*m.x83*m.x75 + 0.0001*m.x83*m.x76 + 0.0001*m.x83*
m.x77 + 0.0001*m.x83*m.x78 + 0.0001*m.x83*m.x79 + 0.0001*m.x83*m.x80 + 0.0001*m.x83*m.x81 +
0.0001*m.x83*m.x82 + 2.03184573609709*m.x83**2 + 0.0001*m.x83*m.x84 + 0.0001*m.x83*m.x85 + 0.0001
*m.x83*m.x86 + 0.0001*m.x83*m.x87 + 0.0001*m.x83*m.x88 + 0.0001*m.x83*m.x89 + 0.0001*m.x83*m.x90
+ 0.0001*m.x83*m.x91 + 0.0001*m.x83*m.x92 + 0.0001*m.x83*m.x93 + 0.0001*m.x83*m.x94 + 0.0001*
m.x83*m.x95 + 0.0001*m.x83*m.x96 + 0.0001*m.x83*m.x97 + 0.0001*m.x83*m.x98 + 0.0001*m.x83*m.x99
+ 0.0001*m.x83*m.x100 + 0.0001*m.x83*m.x101 + 0.0001*m.x83*m.x102 + 0.0001*m.x83*m.x103 + 0.0001
*m.x83*m.x104 + 0.0001*m.x83*m.x105 + 0.0001*m.x83*m.x106 + 0.0001*m.x83*m.x107 + 0.0001*m.x83*
m.x108 + 0.0001*m.x83*m.x109 + 0.0001*m.x83*m.x110 + 0.0001*m.x83*m.x111 + 0.0001*m.x83*m.x112 +
0.0001*m.x83*m.x113 + 0.0001*m.x83*m.x114 + 0.0001*m.x83*m.x115 + 0.0001*m.x83*m.x116 + 0.0001*
m.x83*m.x117 + 0.0001*m.x83*m.x118 + 0.0001*m.x83*m.x119 + 0.0001*m.x83*m.x120 + 0.0001*m.x83*
m.x121 + 0.0001*m.x83*m.x122 + 0.0001*m.x83*m.x123 + 0.0001*m.x83*m.x124 + 0.0001*m.x83*m.x125 +
0.0001*m.x83*m.x126 + 0.0001*m.x83*m.x127 + 1.35721306884672*m.x83*m.x128 + 0.0001*m.x83*m.x129
+ 0.0001*m.x83*m.x130 + 0.0001*m.x83*m.x131 + 0.0001*m.x83*m.x132 + 0.0001*m.x83*m.x133 + 0.0001
*m.x83*m.x134 + 0.0001*m.x83*m.x135 + 0.0001*m.x83*m.x136 + 0.0001*m.x83*m.x137 + 0.0001*m.x83*
m.x138 + 0.0001*m.x83*m.x139 + 0.0001*m.x83*m.x140 + 0.0001*m.x83*m.x141 + 0.0001*m.x83*m.x142 +
0.0001*m.x83*m.x143 + 0.0001*m.x83*m.x144 + 0.0001*m.x83*m.x145 + 0.0001*m.x83*m.x146 + 0.0001*
m.x83*m.x147 + 0.0001*m.x83*m.x148 + 0.0001*m.x83*m.x149 + 0.0001*m.x83*m.x150 + 0.0001*m.x83*
m.x151 + 0.0001*m.x83*m.x152 + 0.0001*m.x83*m.x153 + 1.24614469444164*m.x83*m.x154 +
1.24614469444164*m.x83*m.x155 + 0.0001*m.x83*m.x156 + 0.0001*m.x83*m.x157 + 0.0001*m.x83*m.x158
+ 0.0001*m.x83*m.x159 + 0.0001*m.x83*m.x160 + 0.0001*m.x83*m.x161 + 0.0001*m.x83*m.x162 + 0.0001
*m.x83*m.x163 + 0.0001*m.x83*m.x164 + 0.0001*m.x83*m.x165 + 0.0001*m.x83*m.x166 + 0.0001*m.x83*
m.x167 + 0.0001*m.x83*m.x168 + 1.35606110318633*m.x83*m.x169 + 0.0001*m.x83*m.x170 + 0.0001*m.x83
*m.x171 + 0.0001*m.x83*m.x172 + 0.0001*m.x83*m.x173 + 0.0001*m.x83*m.x174 + 0.0001*m.x83*m.x175
+ 0.0001*m.x83*m.x176 + 0.0001*m.x83*m.x177 + 0.0001*m.x83*m.x178 + 0.0001*m.x83*m.x179 + 0.0001
*m.x83*m.x180 + 0.0001*m.x83*m.x181 + 0.0001*m.x83*m.x182 + 0.0001*m.x83*m.x183 + 0.0001*m.x83*
m.x184 + 0.0001*m.x83*m.x185 + 0.0001*m.x84*m.x1 + 0.0001*m.x84*m.x2 + 0.0001*m.x84*m.x3 + 0.0001
*m.x84*m.x4 + 0.0001*m.x84*m.x5 + 0.0001*m.x84*m.x6 + 0.0001*m.x84*m.x7 + 0.0001*m.x84*m.x8 +
0.0001*m.x84*m.x9 + 0.0001*m.x84*m.x10 + 0.0001*m.x84*m.x11 + 0.0001*m.x84*m.x12 + 0.0001*m.x84*
m.x13 + 0.0001*m.x84*m.x14 + 0.0001*m.x84*m.x15 + 0.0001*m.x84*m.x16 + 0.0001*m.x84*m.x17 +
0.0001*m.x84*m.x18 + 0.0001*m.x84*m.x19 + 0.0001*m.x84*m.x20 + 0.0001*m.x84*m.x21 + 0.0001*m.x84*
m.x22 + 0.0001*m.x84*m.x23 + 0.0001*m.x84*m.x24 + 5.01518901008505*m.x84*m.x25 + 0.0001*m.x84*
m.x26 + 0.0001*m.x84*m.x27 + 0.0001*m.x84*m.x28 + 0.0001*m.x84*m.x29 + 0.0001*m.x84*m.x30 +
0.0001*m.x84*m.x31 + 0.0001*m.x84*m.x32 + 0.0001*m.x84*m.x33 + 0.0001*m.x84*m.x34 + 0.0001*m.x84*
m.x35 + 0.0001*m.x84*m.x36 + 0.0001*m.x84*m.x37 + 0.0001*m.x84*m.x38 + 0.0001*m.x84*m.x39 +
0.0001*m.x84*m.x40 + 0.0001*m.x84*m.x41 + 0.0001*m.x84*m.x42 + 0.0001*m.x84*m.x43 + 0.0001*m.x84*
m.x44 + 0.0001*m.x84*m.x45 + 0.0001*m.x84*m.x46 + 0.0001*m.x84*m.x47 + 2.85095769957664*m.x84*
m.x48 + 0.0001*m.x84*m.x49 + 0.0001*m.x84*m.x50 + 0.0001*m.x84*m.x51 + 0.0001*m.x84*m.x52 +
0.0001*m.x84*m.x53 + 0.0001*m.x84*m.x54 + 0.0001*m.x84*m.x55 + 0.0001*m.x84*m.x56 + 0.0001*m.x84*
m.x57 + 0.0001*m.x84*m.x58 + 0.0001*m.x84*m.x59 + 0.0001*m.x84*m.x60 + 0.0001*m.x84*m.x61 +
0.0001*m.x84*m.x62 + 0.0001*m.x84*m.x63 + 0.0001*m.x84*m.x64 + 0.0001*m.x84*m.x65 + 0.0001*m.x84*
m.x66 + 0.0001*m.x84*m.x67 + 0.0001*m.x84*m.x68 + 0.0001*m.x84*m.x69 + 0.0001*m.x84*m.x70 +
0.0001*m.x84*m.x71 + 0.0001*m.x84*m.x72 + 0.0001*m.x84*m.x73 + 0.0001*m.x84*m.x74 + 0.0001*m.x84*
m.x75 + 0.0001*m.x84*m.x76 + 0.0001*m.x84*m.x77 + 0.0001*m.x84*m.x78 + 0.0001*m.x84*m.x79 +
0.0001*m.x84*m.x80 + 0.0001*m.x84*m.x81 + 0.0001*m.x84*m.x82 + 0.0001*m.x84*m.x83 +
9.14734782179439*m.x84**2 + 0.0001*m.x84*m.x85 + 0.0001*m.x84*m.x86 + 0.0001*m.x84*m.x87 + 0.0001
*m.x84*m.x88 + 0.0001*m.x84*m.x89 + 0.0001*m.x84*m.x90 + 0.0001*m.x84*m.x91 + 0.0001*m.x84*m.x92
+ 0.0001*m.x84*m.x93 + 0.0001*m.x84*m.x94 + 0.0001*m.x84*m.x95 + 0.0001*m.x84*m.x96 + 0.0001*
m.x84*m.x97 + 0.0001*m.x84*m.x98 + 0.0001*m.x84*m.x99 + 0.0001*m.x84*m.x100 + 0.0001*m.x84*m.x101
+ 0.0001*m.x84*m.x102 + 0.0001*m.x84*m.x103 + 0.0001*m.x84*m.x104 + 0.0001*m.x84*m.x105 + 0.0001
*m.x84*m.x106 + 0.0001*m.x84*m.x107 + 0.0001*m.x84*m.x108 + 0.0001*m.x84*m.x109 + 0.0001*m.x84*
m.x110 + 0.0001*m.x84*m.x111 + 0.0001*m.x84*m.x112 + 0.0001*m.x84*m.x113 + 0.0001*m.x84*m.x114 +
0.0001*m.x84*m.x115 + 0.0001*m.x84*m.x116 + 0.0001*m.x84*m.x117 + 0.0001*m.x84*m.x118 + 0.0001*
m.x84*m.x119 + 0.0001*m.x84*m.x120 + 0.0001*m.x84*m.x121 + 0.0001*m.x84*m.x122 + 0.0001*m.x84*
m.x123 + 0.0001*m.x84*m.x124 + 0.0001*m.x84*m.x125 + 0.0001*m.x84*m.x126 + 0.0001*m.x84*m.x127 +
0.0001*m.x84*m.x128 + 0.0001*m.x84*m.x129 + 0.0001*m.x84*m.x130 + 0.0001*m.x84*m.x131 + 0.0001*
m.x84*m.x132 + 0.0001*m.x84*m.x133 + 0.0001*m.x84*m.x134 + 0.0001*m.x84*m.x135 + 0.0001*m.x84*
m.x136 + 0.0001*m.x84*m.x137 + 0.0001*m.x84*m.x138 + 0.0001*m.x84*m.x139 + 0.0001*m.x84*m.x140 +
0.0001*m.x84*m.x141 + 0.0001*m.x84*m.x142 + 0.0001*m.x84*m.x143 + 0.0001*m.x84*m.x144 + 0.0001*
m.x84*m.x145 + 0.0001*m.x84*m.x146 + 0.0001*m.x84*m.x147 + 0.0001*m.x84*m.x148 + 0.0001*m.x84*
m.x149 + 0.0001*m.x84*m.x150 + 0.0001*m.x84*m.x151 + 0.0001*m.x84*m.x152 + 0.0001*m.x84*m.x153 +
0.0001*m.x84*m.x154 + 0.0001*m.x84*m.x155 + 0.0001*m.x84*m.x156 + 0.0001*m.x84*m.x157 + 0.0001*
m.x84*m.x158 + 0.0001*m.x84*m.x159 + 0.0001*m.x84*m.x160 + 0.0001*m.x84*m.x161 + 0.0001*m.x84*
m.x162 + 0.0001*m.x84*m.x163 + 0.0001*m.x84*m.x164 + 0.0001*m.x84*m.x165 + 0.0001*m.x84*m.x166 +
0.0001*m.x84*m.x167 + 0.0001*m.x84*m.x168 + 0.0001*m.x84*m.x169 + 0.0001*m.x84*m.x170 + 0.0001*
m.x84*m.x171 + 0.0001*m.x84*m.x172 + 0.0001*m.x84*m.x173 + 0.0001*m.x84*m.x174 + 0.0001*m.x84*
m.x175 + 0.0001*m.x84*m.x176 + 0.0001*m.x84*m.x177 + 0.0001*m.x84*m.x178 + 0.0001*m.x84*m.x179 +
0.0001*m.x84*m.x180 + 0.0001*m.x84*m.x181 + 0.0001*m.x84*m.x182 + 0.0001*m.x84*m.x183 + 0.0001*
m.x84*m.x184 + 0.0001*m.x84*m.x185 + 0.0001*m.x85*m.x1 + 0.0001*m.x85*m.x2 + 0.0001*m.x85*m.x3 +
0.0001*m.x85*m.x4 + 0.0001*m.x85*m.x5 + 0.0001*m.x85*m.x6 + 0.0001*m.x85*m.x7 + 0.0001*m.x85*m.x8
+ 0.0001*m.x85*m.x9 + 0.0001*m.x85*m.x10 + 0.0001*m.x85*m.x11 + 0.0001*m.x85*m.x12 + 0.0001*
m.x85*m.x13 + 0.0001*m.x85*m.x14 + 0.0001*m.x85*m.x15 + 0.0001*m.x85*m.x16 + 0.0001*m.x85*m.x17
+ 0.0001*m.x85*m.x18 + 0.0001*m.x85*m.x19 + 0.0001*m.x85*m.x20 + 0.0001*m.x85*m.x21 + 0.0001*
m.x85*m.x22 + 0.0001*m.x85*m.x23 + 0.0001*m.x85*m.x24 + 0.0001*m.x85*m.x25 + 4.94950665205728*
m.x85*m.x26 + 0.0001*m.x85*m.x27 + 0.0001*m.x85*m.x28 + 0.0001*m.x85*m.x29 + 0.0001*m.x85*m.x30
+ 0.0001*m.x85*m.x31 + 0.0001*m.x85*m.x32 + 0.0001*m.x85*m.x33 + 0.0001*m.x85*m.x34 + 0.0001*
m.x85*m.x35 + 0.0001*m.x85*m.x36 + 0.0001*m.x85*m.x37 + 0.0001*m.x85*m.x38 + 0.0001*m.x85*m.x39
+ 0.0001*m.x85*m.x40 + 0.0001*m.x85*m.x41 + 0.0001*m.x85*m.x42 + 0.0001*m.x85*m.x43 + 0.0001*
m.x85*m.x44 + 0.0001*m.x85*m.x45 + 0.0001*m.x85*m.x46 + 0.0001*m.x85*m.x47 + 0.0001*m.x85*m.x48
+ 3.30977386585424*m.x85*m.x49 + 0.0001*m.x85*m.x50 + 0.0001*m.x85*m.x51 + 0.0001*m.x85*m.x52 +
0.0001*m.x85*m.x53 + 0.0001*m.x85*m.x54 + 0.0001*m.x85*m.x55 + 0.0001*m.x85*m.x56 + 0.0001*m.x85*
m.x57 + 0.0001*m.x85*m.x58 + 0.0001*m.x85*m.x59 + 0.0001*m.x85*m.x60 + 0.0001*m.x85*m.x61 +
0.0001*m.x85*m.x62 + 0.0001*m.x85*m.x63 + 0.0001*m.x85*m.x64 + 0.0001*m.x85*m.x65 + 0.0001*m.x85*
m.x66 + 0.0001*m.x85*m.x67 + 0.0001*m.x85*m.x68 + 0.0001*m.x85*m.x69 + 0.0001*m.x85*m.x70 +
0.0001*m.x85*m.x71 + 0.0001*m.x85*m.x72 + 0.0001*m.x85*m.x73 + 0.0001*m.x85*m.x74 + 0.0001*m.x85*
m.x75 + 0.0001*m.x85*m.x76 + 0.0001*m.x85*m.x77 + 0.0001*m.x85*m.x78 + 0.0001*m.x85*m.x79 +
0.0001*m.x85*m.x80 + 0.0001*m.x85*m.x81 + 0.0001*m.x85*m.x82 + 0.0001*m.x85*m.x83 + 0.0001*m.x85*
m.x84 + 9.14734782179439*m.x85**2 + 0.0001*m.x85*m.x86 + 0.0001*m.x85*m.x87 + 0.0001*m.x85*m.x88
+ 0.0001*m.x85*m.x89 + 0.0001*m.x85*m.x90 + 0.0001*m.x85*m.x91 + 0.0001*m.x85*m.x92 + 0.0001*
m.x85*m.x93 + 0.0001*m.x85*m.x94 + 0.0001*m.x85*m.x95 + 0.0001*m.x85*m.x96 + 0.0001*m.x85*m.x97
+ 0.0001*m.x85*m.x98 + 0.0001*m.x85*m.x99 + 0.0001*m.x85*m.x100 + 0.0001*m.x85*m.x101 + 0.0001*
m.x85*m.x102 + 0.0001*m.x85*m.x103 + 0.0001*m.x85*m.x104 + 0.0001*m.x85*m.x105 + 0.0001*m.x85*
m.x106 + 0.0001*m.x85*m.x107 + 0.0001*m.x85*m.x108 + 0.0001*m.x85*m.x109 + 0.0001*m.x85*m.x110 +
0.0001*m.x85*m.x111 + 0.0001*m.x85*m.x112 + 0.0001*m.x85*m.x113 + 0.0001*m.x85*m.x114 + 0.0001*
m.x85*m.x115 + 0.0001*m.x85*m.x116 + 0.0001*m.x85*m.x117 + 0.0001*m.x85*m.x118 + 0.0001*m.x85*
m.x119 + 0.0001*m.x85*m.x120 + 0.0001*m.x85*m.x121 + 0.0001*m.x85*m.x122 + 0.0001*m.x85*m.x123 +
0.0001*m.x85*m.x124 + 0.0001*m.x85*m.x125 + 0.0001*m.x85*m.x126 + 0.0001*m.x85*m.x127 + 0.0001*
m.x85*m.x128 + 0.0001*m.x85*m.x129 + 0.0001*m.x85*m.x130 + 0.0001*m.x85*m.x131 + 0.0001*m.x85*
m.x132 + 0.0001*m.x85*m.x133 + 0.0001*m.x85*m.x134 + 0.0001*m.x85*m.x135 + 0.0001*m.x85*m.x136 +
0.0001*m.x85*m.x137 + 0.0001*m.x85*m.x138 + 0.0001*m.x85*m.x139 + 0.0001*m.x85*m.x140 + 0.0001*
m.x85*m.x141 + 0.0001*m.x85*m.x142 + 0.0001*m.x85*m.x143 + 0.0001*m.x85*m.x144 + 0.0001*m.x85*
m.x145 + 0.0001*m.x85*m.x146 + 0.0001*m.x85*m.x147 + 0.0001*m.x85*m.x148 + 0.0001*m.x85*m.x149 +
0.0001*m.x85*m.x150 + 0.0001*m.x85*m.x151 + 0.0001*m.x85*m.x152 + 0.0001*m.x85*m.x153 + 0.0001*
m.x85*m.x154 + 0.0001*m.x85*m.x155 + 0.0001*m.x85*m.x156 + 0.0001*m.x85*m.x157 + 0.0001*m.x85*
m.x158 + 0.0001*m.x85*m.x159 + 0.0001*m.x85*m.x160 + 0.0001*m.x85*m.x161 + 0.0001*m.x85*m.x162 +
0.0001*m.x85*m.x163 + 0.0001*m.x85*m.x164 + 0.0001*m.x85*m.x165 + 0.0001*m.x85*m.x166 + 0.0001*
m.x85*m.x167 + 0.0001*m.x85*m.x168 + 0.0001*m.x85*m.x169 + 0.0001*m.x85*m.x170 + 0.0001*m.x85*
m.x171 + 0.0001*m.x85*m.x172 + 0.0001*m.x85*m.x173 + 0.0001*m.x85*m.x174 + 0.0001*m.x85*m.x175 +
0.0001*m.x85*m.x176 + 0.0001*m.x85*m.x177 + 0.0001*m.x85*m.x178 + 0.0001*m.x85*m.x179 + 0.0001*
m.x85*m.x180 + 0.0001*m.x85*m.x181 + 0.0001*m.x85*m.x182 + 0.0001*m.x85*m.x183 + 0.0001*m.x85*
m.x184 + 0.0001*m.x85*m.x185 + 0.0001*m.x86*m.x1 + 0.0001*m.x86*m.x2 + 0.0001*m.x86*m.x3 + 0.0001
*m.x86*m.x4 + 0.0001*m.x86*m.x5 + 0.0001*m.x86*m.x6 + 0.0001*m.x86*m.x7 + 0.0001*m.x86*m.x8 +
0.0001*m.x86*m.x9 + 0.0001*m.x86*m.x10 + 0.0001*m.x86*m.x11 + 0.0001*m.x86*m.x12 + 0.0001*m.x86*
m.x13 + 0.0001*m.x86*m.x14 + 0.0001*m.x86*m.x15 + 0.0001*m.x86*m.x16 + 0.0001*m.x86*m.x17 +
0.0001*m.x86*m.x18 + 0.0001*m.x86*m.x19 + 0.0001*m.x86*m.x20 + 0.0001*m.x86*m.x21 + 0.0001*m.x86*
m.x22 + 0.0001*m.x86*m.x23 + 0.0001*m.x86*m.x24 + 0.0001*m.x86*m.x25 + 0.0001*m.x86*m.x26 +
4.9283503175782*m.x86*m.x27 + 0.0001*m.x86*m.x28 + 0.0001*m.x86*m.x29 + 0.0001*m.x86*m.x30 +
0.0001*m.x86*m.x31 + 0.0001*m.x86*m.x32 + 0.0001*m.x86*m.x33 + 0.0001*m.x86*m.x34 + 0.0001*m.x86*
m.x35 + 0.0001*m.x86*m.x36 + 0.0001*m.x86*m.x37 + 0.0001*m.x86*m.x38 + 0.0001*m.x86*m.x39 +
0.0001*m.x86*m.x40 + 0.0001*m.x86*m.x41 + 0.0001*m.x86*m.x42 + 0.0001*m.x86*m.x43 + 0.0001*m.x86*
m.x44 + 0.0001*m.x86*m.x45 + 0.0001*m.x86*m.x46 + 0.0001*m.x86*m.x47 + 0.0001*m.x86*m.x48 +
0.0001*m.x86*m.x49 + 3.36191019598222*m.x86*m.x50 + 0.0001*m.x86*m.x51 + 0.0001*m.x86*m.x52 +
0.0001*m.x86*m.x53 + 0.0001*m.x86*m.x54 + 0.0001*m.x86*m.x55 + 0.0001*m.x86*m.x56 + 0.0001*m.x86*
m.x57 + 0.0001*m.x86*m.x58 + 0.0001*m.x86*m.x59 + 0.0001*m.x86*m.x60 + 0.0001*m.x86*m.x61 +
0.0001*m.x86*m.x62 + 0.0001*m.x86*m.x63 + 0.0001*m.x86*m.x64 + 0.0001*m.x86*m.x65 + 0.0001*m.x86*
m.x66 + 0.0001*m.x86*m.x67 + 0.0001*m.x86*m.x68 + 0.0001*m.x86*m.x69 + 0.0001*m.x86*m.x70 +
0.0001*m.x86*m.x71 + 0.0001*m.x86*m.x72 + 0.0001*m.x86*m.x73 + 0.0001*m.x86*m.x74 + 0.0001*m.x86*
m.x75 + 0.0001*m.x86*m.x76 + 0.0001*m.x86*m.x77 + 0.0001*m.x86*m.x78 + 0.0001*m.x86*m.x79 +
0.0001*m.x86*m.x80 + 0.0001*m.x86*m.x81 + 0.0001*m.x86*m.x82 + 0.0001*m.x86*m.x83 + 0.0001*m.x86*
m.x84 + 0.0001*m.x86*m.x85 + 9.38284222837331*m.x86**2 + 0.0001*m.x86*m.x87 + 0.0001*m.x86*m.x88
+ 0.0001*m.x86*m.x89 + 0.0001*m.x86*m.x90 + 0.0001*m.x86*m.x91 + 0.0001*m.x86*m.x92 + 0.0001*
m.x86*m.x93 + 0.0001*m.x86*m.x94 + 0.0001*m.x86*m.x95 + 0.0001*m.x86*m.x96 + 0.0001*m.x86*m.x97
+ 0.0001*m.x86*m.x98 + 0.0001*m.x86*m.x99 + 0.0001*m.x86*m.x100 + 0.0001*m.x86*m.x101 + 0.0001*
m.x86*m.x102 + 0.0001*m.x86*m.x103 + 0.0001*m.x86*m.x104 + 0.0001*m.x86*m.x105 + 0.0001*m.x86*
m.x106 + 0.0001*m.x86*m.x107 + 0.0001*m.x86*m.x108 + 0.0001*m.x86*m.x109 + 0.0001*m.x86*m.x110 +
0.0001*m.x86*m.x111 + 0.0001*m.x86*m.x112 + 0.0001*m.x86*m.x113 + 0.0001*m.x86*m.x114 + 0.0001*
m.x86*m.x115 + 0.0001*m.x86*m.x116 + 0.0001*m.x86*m.x117 + 0.0001*m.x86*m.x118 + 0.0001*m.x86*
m.x119 + 0.0001*m.x86*m.x120 + 0.0001*m.x86*m.x121 + 0.0001*m.x86*m.x122 + 0.0001*m.x86*m.x123 +
0.0001*m.x86*m.x124 + 0.0001*m.x86*m.x125 + 0.0001*m.x86*m.x126 + 0.0001*m.x86*m.x127 + 0.0001*
m.x86*m.x128 + 0.0001*m.x86*m.x129 + 0.0001*m.x86*m.x130 + 0.0001*m.x86*m.x131 + 0.0001*m.x86*
m.x132 + 0.0001*m.x86*m.x133 + 0.0001*m.x86*m.x134 + 0.0001*m.x86*m.x135 + 0.0001*m.x86*m.x136 +
0.0001*m.x86*m.x137 + 0.0001*m.x86*m.x138 + 0.0001*m.x86*m.x139 + 0.0001*m.x86*m.x140 + 0.0001*
m.x86*m.x141 + 0.0001*m.x86*m.x142 + 0.0001*m.x86*m.x143 + 0.0001*m.x86*m.x144 + 0.0001*m.x86*
m.x145 + 0.0001*m.x86*m.x146 + 0.0001*m.x86*m.x147 + 0.0001*m.x86*m.x148 + 0.0001*m.x86*m.x149 +
0.0001*m.x86*m.x150 + 0.0001*m.x86*m.x151 + 0.0001*m.x86*m.x152 + 0.0001*m.x86*m.x153 + 0.0001*
m.x86*m.x154 + 0.0001*m.x86*m.x155 + 0.0001*m.x86*m.x156 + 0.0001*m.x86*m.x157 + 0.0001*m.x86*
m.x158 + 0.0001*m.x86*m.x159 + 0.0001*m.x86*m.x160 + 0.0001*m.x86*m.x161 + 0.0001*m.x86*m.x162 +
0.0001*m.x86*m.x163 + 0.0001*m.x86*m.x164 + 0.0001*m.x86*m.x165 + 0.0001*m.x86*m.x166 + 0.0001*
m.x86*m.x167 + 0.0001*m.x86*m.x168 + 0.0001*m.x86*m.x169 + 0.0001*m.x86*m.x170 + 0.0001*m.x86*
m.x171 + 0.0001*m.x86*m.x172 + 0.0001*m.x86*m.x173 + 0.0001*m.x86*m.x174 + 0.0001*m.x86*m.x175 +
0.0001*m.x86*m.x176 + 0.0001*m.x86*m.x177 + 0.0001*m.x86*m.x178 + 0.0001*m.x86*m.x179 + 0.0001*
m.x86*m.x180 + 0.0001*m.x86*m.x181 + 0.0001*m.x86*m.x182 + 0.0001*m.x86*m.x183 + 0.0001*m.x86*
m.x184 + 0.0001*m.x86*m.x185 + 0.0001*m.x87*m.x1 + 0.0001*m.x87*m.x2 + 0.0001*m.x87*m.x3 + 0.0001
*m.x87*m.x4 + 0.0001*m.x87*m.x5 + 0.0001*m.x87*m.x6 + 0.0001*m.x87*m.x7 + 0.0001*m.x87*m.x8 +
0.0001*m.x87*m.x9 + 0.0001*m.x87*m.x10 + 0.0001*m.x87*m.x11 + 0.0001*m.x87*m.x12 + 0.0001*m.x87*
m.x13 + 0.0001*m.x87*m.x14 + 0.0001*m.x87*m.x15 + 0.0001*m.x87*m.x16 + 0.0001*m.x87*m.x17 +
0.0001*m.x87*m.x18 + 0.0001*m.x87*m.x19 + 0.0001*m.x87*m.x20 + 0.0001*m.x87*m.x21 + 0.0001*m.x87*
m.x22 + 0.0001*m.x87*m.x23 + 0.0001*m.x87*m.x24 + 0.0001*m.x87*m.x25 + 0.0001*m.x87*m.x26 +
0.0001*m.x87*m.x27 + 4.92892398020092*m.x87*m.x28 + 0.0001*m.x87*m.x29 + 0.0001*m.x87*m.x30 +
0.0001*m.x87*m.x31 + 0.0001*m.x87*m.x32 + 0.0001*m.x87*m.x33 + 0.0001*m.x87*m.x34 + 0.0001*m.x87*
m.x35 + 0.0001*m.x87*m.x36 + 0.0001*m.x87*m.x37 + 0.0001*m.x87*m.x38 + 0.0001*m.x87*m.x39 +
0.0001*m.x87*m.x40 + 0.0001*m.x87*m.x41 + 0.0001*m.x87*m.x42 + 0.0001*m.x87*m.x43 + 0.0001*m.x87*
m.x44 + 0.0001*m.x87*m.x45 + 0.0001*m.x87*m.x46 + 0.0001*m.x87*m.x47 + 0.0001*m.x87*m.x48 +
0.0001*m.x87*m.x49 + 0.0001*m.x87*m.x50 + 3.36191019598222*m.x87*m.x51 + 0.0001*m.x87*m.x52 +
0.0001*m.x87*m.x53 + 0.0001*m.x87*m.x54 + 0.0001*m.x87*m.x55 + 0.0001*m.x87*m.x56 + 0.0001*m.x87*
m.x57 + 0.0001*m.x87*m.x58 + 0.0001*m.x87*m.x59 + 0.0001*m.x87*m.x60 + 0.0001*m.x87*m.x61 +
0.0001*m.x87*m.x62 + 0.0001*m.x87*m.x63 + 0.0001*m.x87*m.x64 + 0.0001*m.x87*m.x65 + 0.0001*m.x87*
m.x66 + 0.0001*m.x87*m.x67 + 0.0001*m.x87*m.x68 + 0.0001*m.x87*m.x69 + 0.0001*m.x87*m.x70 +
0.0001*m.x87*m.x71 + 0.0001*m.x87*m.x72 + 0.0001*m.x87*m.x73 + 0.0001*m.x87*m.x74 + 0.0001*m.x87*
m.x75 + 0.0001*m.x87*m.x76 + 0.0001*m.x87*m.x77 + 0.0001*m.x87*m.x78 + 0.0001*m.x87*m.x79 +
0.0001*m.x87*m.x80 + 0.0001*m.x87*m.x81 + 0.0001*m.x87*m.x82 + 0.0001*m.x87*m.x83 + 0.0001*m.x87*
m.x84 + 0.0001*m.x87*m.x85 + 0.0001*m.x87*m.x86 + 9.38284222837331*m.x87**2 + 0.0001*m.x87*m.x88
+ 0.0001*m.x87*m.x89 + 0.0001*m.x87*m.x90 + 0.0001*m.x87*m.x91 + 0.0001*m.x87*m.x92 + 0.0001*
m.x87*m.x93 + 0.0001*m.x87*m.x94 + 0.0001*m.x87*m.x95 + 0.0001*m.x87*m.x96 + 0.0001*m.x87*m.x97
+ 0.0001*m.x87*m.x98 + 0.0001*m.x87*m.x99 + 0.0001*m.x87*m.x100 + 0.0001*m.x87*m.x101 + 0.0001*
m.x87*m.x102 + 0.0001*m.x87*m.x103 + 0.0001*m.x87*m.x104 + 0.0001*m.x87*m.x105 + 0.0001*m.x87*
m.x106 + 0.0001*m.x87*m.x107 + 0.0001*m.x87*m.x108 + 0.0001*m.x87*m.x109 + 0.0001*m.x87*m.x110 +
0.0001*m.x87*m.x111 + 0.0001*m.x87*m.x112 + 0.0001*m.x87*m.x113 + 0.0001*m.x87*m.x114 + 0.0001*
m.x87*m.x115 + 0.0001*m.x87*m.x116 + 0.0001*m.x87*m.x117 + 0.0001*m.x87*m.x118 + 0.0001*m.x87*
m.x119 + 0.0001*m.x87*m.x120 + 0.0001*m.x87*m.x121 + 0.0001*m.x87*m.x122 + 0.0001*m.x87*m.x123 +
0.0001*m.x87*m.x124 + 0.0001*m.x87*m.x125 + 0.0001*m.x87*m.x126 + 0.0001*m.x87*m.x127 + 0.0001*
m.x87*m.x128 + 0.0001*m.x87*m.x129 + 0.0001*m.x87*m.x130 + 0.0001*m.x87*m.x131 + 0.0001*m.x87*
m.x132 + 0.0001*m.x87*m.x133 + 0.0001*m.x87*m.x134 + 0.0001*m.x87*m.x135 + 0.0001*m.x87*m.x136 +
0.0001*m.x87*m.x137 + 0.0001*m.x87*m.x138 + 0.0001*m.x87*m.x139 + 0.0001*m.x87*m.x140 + 0.0001*
m.x87*m.x141 + 0.0001*m.x87*m.x142 + 0.0001*m.x87*m.x143 + 0.0001*m.x87*m.x144 + 0.0001*m.x87*
m.x145 + 0.0001*m.x87*m.x146 + 0.0001*m.x87*m.x147 + 0.0001*m.x87*m.x148 + 0.0001*m.x87*m.x149 +
0.0001*m.x87*m.x150 + 0.0001*m.x87*m.x151 + 0.0001*m.x87*m.x152 + 0.0001*m.x87*m.x153 + 0.0001*
m.x87*m.x154 + 0.0001*m.x87*m.x155 + 0.0001*m.x87*m.x156 + 0.0001*m.x87*m.x157 + 0.0001*m.x87*
m.x158 + 0.0001*m.x87*m.x159 + 0.0001*m.x87*m.x160 + 0.0001*m.x87*m.x161 + 0.0001*m.x87*m.x162 +
0.0001*m.x87*m.x163 + 0.0001*m.x87*m.x164 + 0.0001*m.x87*m.x165 + 0.0001*m.x87*m.x166 + 0.0001*
m.x87*m.x167 + 0.0001*m.x87*m.x168 + 0.0001*m.x87*m.x169 + 0.0001*m.x87*m.x170 + 0.0001*m.x87*
m.x171 + 0.0001*m.x87*m.x172 + 0.0001*m.x87*m.x173 + 0.0001*m.x87*m.x174 + 0.0001*m.x87*m.x175 +
0.0001*m.x87*m.x176 + 0.0001*m.x87*m.x177 + 0.0001*m.x87*m.x178 + 0.0001*m.x87*m.x179 + 0.0001*
m.x87*m.x180 + 0.0001*m.x87*m.x181 + 0.0001*m.x87*m.x182 + 0.0001*m.x87*m.x183 + 0.0001*m.x87*
m.x184 + 0.0001*m.x87*m.x185 + 0.0001*m.x88*m.x1 + 0.0001*m.x88*m.x2 + 0.0001*m.x88*m.x3 + 0.0001
*m.x88*m.x4 + 0.0001*m.x88*m.x5 + 0.0001*m.x88*m.x6 + 0.0001*m.x88*m.x7 + 0.0001*m.x88*m.x8 +
0.0001*m.x88*m.x9 + 0.0001*m.x88*m.x10 + 0.0001*m.x88*m.x11 + 0.0001*m.x88*m.x12 + 0.0001*m.x88*
m.x13 + 0.0001*m.x88*m.x14 + 0.0001*m.x88*m.x15 + 0.0001*m.x88*m.x16 + 0.0001*m.x88*m.x17 +
0.0001*m.x88*m.x18 + 0.0001*m.x88*m.x19 + 0.0001*m.x88*m.x20 + 0.0001*m.x88*m.x21 + 0.0001*m.x88*
m.x22 + 0.0001*m.x88*m.x23 + 0.0001*m.x88*m.x24 + 0.0001*m.x88*m.x25 + 0.0001*m.x88*m.x26 +
0.0001*m.x88*m.x27 + 0.0001*m.x88*m.x28 + 4.87034828234694*m.x88*m.x29 + 0.0001*m.x88*m.x30 +
0.0001*m.x88*m.x31 + 0.0001*m.x88*m.x32 + 0.0001*m.x88*m.x33 + 0.0001*m.x88*m.x34 + 0.0001*m.x88*
m.x35 + 0.0001*m.x88*m.x36 + 0.0001*m.x88*m.x37 + 0.0001*m.x88*m.x38 + 0.0001*m.x88*m.x39 +
0.0001*m.x88*m.x40 + 0.0001*m.x88*m.x41 + 0.0001*m.x88*m.x42 + 0.0001*m.x88*m.x43 + 0.0001*m.x88*
m.x44 + 0.0001*m.x88*m.x45 + 0.0001*m.x88*m.x46 + 0.0001*m.x88*m.x47 + 0.0001*m.x88*m.x48 +
0.0001*m.x88*m.x49 + 0.0001*m.x88*m.x50 + 0.0001*m.x88*m.x51 + 3.27439613256008*m.x88*m.x52 +
0.0001*m.x88*m.x53 + 0.0001*m.x88*m.x54 + 0.0001*m.x88*m.x55 + 0.0001*m.x88*m.x56 + 0.0001*m.x88*
m.x57 + 0.0001*m.x88*m.x58 + 0.0001*m.x88*m.x59 + 0.0001*m.x88*m.x60 + 0.0001*m.x88*m.x61 +
0.0001*m.x88*m.x62 + 0.0001*m.x88*m.x63 + 0.0001*m.x88*m.x64 + 0.0001*m.x88*m.x65 + 0.0001*m.x88*
m.x66 + 0.0001*m.x88*m.x67 + 0.0001*m.x88*m.x68 + 0.0001*m.x88*m.x69 + 0.0001*m.x88*m.x70 +
0.0001*m.x88*m.x71 + 0.0001*m.x88*m.x72 + 0.0001*m.x88*m.x73 + 0.0001*m.x88*m.x74 + 0.0001*m.x88*
m.x75 + 0.0001*m.x88*m.x76 + 0.0001*m.x88*m.x77 + 0.0001*m.x88*m.x78 + 0.0001*m.x88*m.x79 +
0.0001*m.x88*m.x80 + 0.0001*m.x88*m.x81 + 0.0001*m.x88*m.x82 + 0.0001*m.x88*m.x83 + 0.0001*m.x88*
m.x84 + 0.0001*m.x88*m.x85 + 0.0001*m.x88*m.x86 + 0.0001*m.x88*m.x87 + 9.38284222837331*m.x88**2
+ 0.0001*m.x88*m.x89 + 0.0001*m.x88*m.x90 + 0.0001*m.x88*m.x91 + 0.0001*m.x88*m.x92 + 0.0001*
m.x88*m.x93 + 0.0001*m.x88*m.x94 + 0.0001*m.x88*m.x95 + 0.0001*m.x88*m.x96 + 0.0001*m.x88*m.x97
+ 0.0001*m.x88*m.x98 + 0.0001*m.x88*m.x99 + 0.0001*m.x88*m.x100 + 0.0001*m.x88*m.x101 + 0.0001*
m.x88*m.x102 + 0.0001*m.x88*m.x103 + 0.0001*m.x88*m.x104 + 0.0001*m.x88*m.x105 + 0.0001*m.x88*
m.x106 + 0.0001*m.x88*m.x107 + 0.0001*m.x88*m.x108 + 0.0001*m.x88*m.x109 + 0.0001*m.x88*m.x110 +
0.0001*m.x88*m.x111 + 0.0001*m.x88*m.x112 + 0.0001*m.x88*m.x113 + 0.0001*m.x88*m.x114 + 0.0001*
m.x88*m.x115 + 0.0001*m.x88*m.x116 + 0.0001*m.x88*m.x117 + 0.0001*m.x88*m.x118 + 0.0001*m.x88*
m.x119 + 0.0001*m.x88*m.x120 + 0.0001*m.x88*m.x121 + 0.0001*m.x88*m.x122 + 0.0001*m.x88*m.x123 +
0.0001*m.x88*m.x124 + 0.0001*m.x88*m.x125 + 0.0001*m.x88*m.x126 + 0.0001*m.x88*m.x127 + 0.0001*
m.x88*m.x128 + 0.0001*m.x88*m.x129 + 0.0001*m.x88*m.x130 + 0.0001*m.x88*m.x131 + 0.0001*m.x88*
m.x132 + 0.0001*m.x88*m.x133 + 0.0001*m.x88*m.x134 + 0.0001*m.x88*m.x135 + 0.0001*m.x88*m.x136 +
0.0001*m.x88*m.x137 + 0.0001*m.x88*m.x138 + 0.0001*m.x88*m.x139 + 0.0001*m.x88*m.x140 + 0.0001*
m.x88*m.x141 + 0.0001*m.x88*m.x142 + 0.0001*m.x88*m.x143 + 0.0001*m.x88*m.x144 + 0.0001*m.x88*
m.x145 + 0.0001*m.x88*m.x146 + 0.0001*m.x88*m.x147 + 0.0001*m.x88*m.x148 + 0.0001*m.x88*m.x149 +
0.0001*m.x88*m.x150 + 0.0001*m.x88*m.x151 + 0.0001*m.x88*m.x152 + 0.0001*m.x88*m.x153 + 0.0001*
m.x88*m.x154 + 0.0001*m.x88*m.x155 + 0.0001*m.x88*m.x156 + 0.0001*m.x88*m.x157 + 0.0001*m.x88*
m.x158 + 0.0001*m.x88*m.x159 + 0.0001*m.x88*m.x160 + 0.0001*m.x88*m.x161 + 0.0001*m.x88*m.x162 +
0.0001*m.x88*m.x163 + 0.0001*m.x88*m.x164 + 0.0001*m.x88*m.x165 + 0.0001*m.x88*m.x166 + 0.0001*
m.x88*m.x167 + 0.0001*m.x88*m.x168 + 0.0001*m.x88*m.x169 + 0.0001*m.x88*m.x170 + 0.0001*m.x88*
m.x171 + 0.0001*m.x88*m.x172 + 0.0001*m.x88*m.x173 + 0.0001*m.x88*m.x174 + 0.0001*m.x88*m.x175 +
0.0001*m.x88*m.x176 + 0.0001*m.x88*m.x177 + 0.0001*m.x88*m.x178 + 0.0001*m.x88*m.x179 + 0.0001*
m.x88*m.x180 + 0.0001*m.x88*m.x181 + 0.0001*m.x88*m.x182 + 0.0001*m.x88*m.x183 + 0.0001*m.x88*
m.x184 + 0.0001*m.x88*m.x185 + 0.0001*m.x89*m.x1 + 0.0001*m.x89*m.x2 + 0.0001*m.x89*m.x3 + 0.0001
*m.x89*m.x4 + 0.0001*m.x89*m.x5 + 0.0001*m.x89*m.x6 + 0.0001*m.x89*m.x7 + 0.0001*m.x89*m.x8 +
0.0001*m.x89*m.x9 + 0.0001*m.x89*m.x10 + 0.0001*m.x89*m.x11 + 0.0001*m.x89*m.x12 + 0.0001*m.x89*
m.x13 + 0.0001*m.x89*m.x14 + 0.0001*m.x89*m.x15 + 0.0001*m.x89*m.x16 + 0.0001*m.x89*m.x17 +
0.0001*m.x89*m.x18 + 0.0001*m.x89*m.x19 + 0.0001*m.x89*m.x20 + 0.0001*m.x89*m.x21 + 0.0001*m.x89*
m.x22 + 0.0001*m.x89*m.x23 + 0.0001*m.x89*m.x24 + 0.0001*m.x89*m.x25 + 0.0001*m.x89*m.x26 +
0.0001*m.x89*m.x27 + 0.0001*m.x89*m.x28 + 0.0001*m.x89*m.x29 + 4.83667608906549*m.x89*m.x30 +
0.0001*m.x89*m.x31 + 0.0001*m.x89*m.x32 + 0.0001*m.x89*m.x33 + 0.0001*m.x89*m.x34 + 0.0001*m.x89*
m.x35 + 0.0001*m.x89*m.x36 + 0.0001*m.x89*m.x37 + 0.0001*m.x89*m.x38 + 0.0001*m.x89*m.x39 +
0.0001*m.x89*m.x40 + 0.0001*m.x89*m.x41 + 0.0001*m.x89*m.x42 + 0.0001*m.x89*m.x43 + 0.0001*m.x89*
m.x44 + 0.0001*m.x89*m.x45 + 0.0001*m.x89*m.x46 + 0.0001*m.x89*m.x47 + 0.0001*m.x89*m.x48 +
0.0001*m.x89*m.x49 + 0.0001*m.x89*m.x50 + 0.0001*m.x89*m.x51 + 0.0001*m.x89*m.x52 +
3.35758811330781*m.x89*m.x53 + 0.0001*m.x89*m.x54 + 0.0001*m.x89*m.x55 + 0.0001*m.x89*m.x56 +
0.0001*m.x89*m.x57 + 0.0001*m.x89*m.x58 + 0.0001*m.x89*m.x59 + 0.0001*m.x89*m.x60 + 0.0001*m.x89*
m.x61 + 0.0001*m.x89*m.x62 + 0.0001*m.x89*m.x63 + 0.0001*m.x89*m.x64 + 0.0001*m.x89*m.x65 +
0.0001*m.x89*m.x66 + 0.0001*m.x89*m.x67 + 0.0001*m.x89*m.x68 + 0.0001*m.x89*m.x69 + 0.0001*m.x89*
m.x70 + 0.0001*m.x89*m.x71 + 0.0001*m.x89*m.x72 + 0.0001*m.x89*m.x73 + 0.0001*m.x89*m.x74 +
0.0001*m.x89*m.x75 + 0.0001*m.x89*m.x76 + 0.0001*m.x89*m.x77 + 0.0001*m.x89*m.x78 + 0.0001*m.x89*
m.x79 + 0.0001*m.x89*m.x80 + 0.0001*m.x89*m.x81 + 0.0001*m.x89*m.x82 + 0.0001*m.x89*m.x83 +
0.0001*m.x89*m.x84 + 0.0001*m.x89*m.x85 + 0.0001*m.x89*m.x86 + 0.0001*m.x89*m.x87 + 0.0001*m.x89*
m.x88 + 9.45081045583368*m.x89**2 + 0.0001*m.x89*m.x90 + 0.0001*m.x89*m.x91 + 0.0001*m.x89*m.x92
+ 0.0001*m.x89*m.x93 + 0.0001*m.x89*m.x94 + 0.0001*m.x89*m.x95 + 0.0001*m.x89*m.x96 + 0.0001*
m.x89*m.x97 + 0.0001*m.x89*m.x98 + 0.0001*m.x89*m.x99 + 0.0001*m.x89*m.x100 + 0.0001*m.x89*m.x101
+ 0.0001*m.x89*m.x102 + 0.0001*m.x89*m.x103 + 0.0001*m.x89*m.x104 + 0.0001*m.x89*m.x105 + 0.0001
*m.x89*m.x106 + 0.0001*m.x89*m.x107 + 0.0001*m.x89*m.x108 + 0.0001*m.x89*m.x109 + 0.0001*m.x89*
m.x110 + 0.0001*m.x89*m.x111 + 0.0001*m.x89*m.x112 + 0.0001*m.x89*m.x113 + 0.0001*m.x89*m.x114 +
0.0001*m.x89*m.x115 + 0.0001*m.x89*m.x116 + 0.0001*m.x89*m.x117 + 0.0001*m.x89*m.x118 + 0.0001*
m.x89*m.x119 + 0.0001*m.x89*m.x120 + 0.0001*m.x89*m.x121 + 0.0001*m.x89*m.x122 + 0.0001*m.x89*
m.x123 + 0.0001*m.x89*m.x124 + 0.0001*m.x89*m.x125 + 0.0001*m.x89*m.x126 + 0.0001*m.x89*m.x127 +
0.0001*m.x89*m.x128 + 0.0001*m.x89*m.x129 + 0.0001*m.x89*m.x130 + 0.0001*m.x89*m.x131 + 0.0001*
m.x89*m.x132 + 0.0001*m.x89*m.x133 + 0.0001*m.x89*m.x134 + 0.0001*m.x89*m.x135 + 0.0001*m.x89*
m.x136 + 0.0001*m.x89*m.x137 + 0.0001*m.x89*m.x138 + 0.0001*m.x89*m.x139 + 0.0001*m.x89*m.x140 +
0.0001*m.x89*m.x141 + 0.0001*m.x89*m.x142 + 0.0001*m.x89*m.x143 + 0.0001*m.x89*m.x144 + 0.0001*
m.x89*m.x145 + 0.0001*m.x89*m.x146 + 0.0001*m.x89*m.x147 + 0.0001*m.x89*m.x148 + 0.0001*m.x89*
m.x149 + 0.0001*m.x89*m.x150 + 0.0001*m.x89*m.x151 + 0.0001*m.x89*m.x152 + 0.0001*m.x89*m.x153 +
0.0001*m.x89*m.x154 + 0.0001*m.x89*m.x155 + 0.0001*m.x89*m.x156 + 0.0001*m.x89*m.x157 + 0.0001*
m.x89*m.x158 + 0.0001*m.x89*m.x159 + 0.0001*m.x89*m.x160 + 0.0001*m.x89*m.x161 + 0.0001*m.x89*
m.x162 + 0.0001*m.x89*m.x163 + 0.0001*m.x89*m.x164 + 0.0001*m.x89*m.x165 + 0.0001*m.x89*m.x166 +
0.0001*m.x89*m.x167 + 0.0001*m.x89*m.x168 + 0.0001*m.x89*m.x169 + 0.0001*m.x89*m.x170 + 0.0001*
m.x89*m.x171 + 0.0001*m.x89*m.x172 + 0.0001*m.x89*m.x173 + 0.0001*m.x89*m.x174 + 0.0001*m.x89*
m.x175 + 0.0001*m.x89*m.x176 + 0.0001*m.x89*m.x177 + 0.0001*m.x89*m.x178 + 0.0001*m.x89*m.x179 +
0.0001*m.x89*m.x180 + 0.0001*m.x89*m.x181 + 0.0001*m.x89*m.x182 + 0.0001*m.x89*m.x183 + 0.0001*
m.x89*m.x184 + 0.0001*m.x89*m.x185 + 0.0001*m.x90*m.x1 + 0.0001*m.x90*m.x2 + 0.0001*m.x90*m.x3 +
0.0001*m.x90*m.x4 + 0.0001*m.x90*m.x5 + 0.0001*m.x90*m.x6 + 0.0001*m.x90*m.x7 + 0.0001*m.x90*m.x8
+ 0.0001*m.x90*m.x9 + 0.0001*m.x90*m.x10 + 0.0001*m.x90*m.x11 + 0.0001*m.x90*m.x12 + 0.0001*
m.x90*m.x13 + 0.0001*m.x90*m.x14 + 0.0001*m.x90*m.x15 + 0.0001*m.x90*m.x16 + 0.0001*m.x90*m.x17
+ 0.0001*m.x90*m.x18 + 0.0001*m.x90*m.x19 + 0.0001*m.x90*m.x20 + 0.0001*m.x90*m.x21 + 0.0001*
m.x90*m.x22 + 0.0001*m.x90*m.x23 + 0.0001*m.x90*m.x24 + 0.0001*m.x90*m.x25 + 0.0001*m.x90*m.x26
+ 0.0001*m.x90*m.x27 + 0.0001*m.x90*m.x28 + 0.0001*m.x90*m.x29 + 0.0001*m.x90*m.x30 +
4.83667608906549*m.x90*m.x31 + 0.0001*m.x90*m.x32 + 0.0001*m.x90*m.x33 + 0.0001*m.x90*m.x34 +
0.0001*m.x90*m.x35 + 0.0001*m.x90*m.x36 + 0.0001*m.x90*m.x37 + 0.0001*m.x90*m.x38 + 0.0001*m.x90*
m.x39 + 0.0001*m.x90*m.x40 + 0.0001*m.x90*m.x41 + 0.0001*m.x90*m.x42 + 0.0001*m.x90*m.x43 +
0.0001*m.x90*m.x44 + 0.0001*m.x90*m.x45 + 0.0001*m.x90*m.x46 + 0.0001*m.x90*m.x47 + 0.0001*m.x90*
m.x48 + 0.0001*m.x90*m.x49 + 0.0001*m.x90*m.x50 + 0.0001*m.x90*m.x51 + 0.0001*m.x90*m.x52 +
0.0001*m.x90*m.x53 + 3.34228364077303*m.x90*m.x54 + 0.0001*m.x90*m.x55 + 0.0001*m.x90*m.x56 +
0.0001*m.x90*m.x57 + 0.0001*m.x90*m.x58 + 0.0001*m.x90*m.x59 + 0.0001*m.x90*m.x60 + 0.0001*m.x90*
m.x61 + 0.0001*m.x90*m.x62 + 0.0001*m.x90*m.x63 + 0.0001*m.x90*m.x64 + 0.0001*m.x90*m.x65 +
0.0001*m.x90*m.x66 + 0.0001*m.x90*m.x67 + 0.0001*m.x90*m.x68 + 0.0001*m.x90*m.x69 + 0.0001*m.x90*
m.x70 + 0.0001*m.x90*m.x71 + 0.0001*m.x90*m.x72 + 0.0001*m.x90*m.x73 + 0.0001*m.x90*m.x74 +
0.0001*m.x90*m.x75 + 0.0001*m.x90*m.x76 + 0.0001*m.x90*m.x77 + 0.0001*m.x90*m.x78 + 0.0001*m.x90*
m.x79 + 0.0001*m.x90*m.x80 + 0.0001*m.x90*m.x81 + 0.0001*m.x90*m.x82 + 0.0001*m.x90*m.x83 +
0.0001*m.x90*m.x84 + 0.0001*m.x90*m.x85 + 0.0001*m.x90*m.x86 + 0.0001*m.x90*m.x87 + 0.0001*m.x90*
m.x88 + 0.0001*m.x90*m.x89 + 9.45081045583368*m.x90**2 + 0.0001*m.x90*m.x91 + 0.0001*m.x90*m.x92
+ 0.0001*m.x90*m.x93 + 0.0001*m.x90*m.x94 + 0.0001*m.x90*m.x95 + 0.0001*m.x90*m.x96 + 0.0001*
m.x90*m.x97 + 0.0001*m.x90*m.x98 + 0.0001*m.x90*m.x99 + 0.0001*m.x90*m.x100 + 0.0001*m.x90*m.x101
+ 0.0001*m.x90*m.x102 + 0.0001*m.x90*m.x103 + 0.0001*m.x90*m.x104 + 0.0001*m.x90*m.x105 + 0.0001
*m.x90*m.x106 + 0.0001*m.x90*m.x107 + 0.0001*m.x90*m.x108 + 0.0001*m.x90*m.x109 + 0.0001*m.x90*
m.x110 + 0.0001*m.x90*m.x111 + 0.0001*m.x90*m.x112 + 0.0001*m.x90*m.x113 + 0.0001*m.x90*m.x114 +
0.0001*m.x90*m.x115 + 0.0001*m.x90*m.x116 + 0.0001*m.x90*m.x117 + 0.0001*m.x90*m.x118 + 0.0001*
m.x90*m.x119 + 0.0001*m.x90*m.x120 + 0.0001*m.x90*m.x121 + 0.0001*m.x90*m.x122 + 0.0001*m.x90*
m.x123 + 0.0001*m.x90*m.x124 + 0.0001*m.x90*m.x125 + 0.0001*m.x90*m.x126 + 0.0001*m.x90*m.x127 +
0.0001*m.x90*m.x128 + 0.0001*m.x90*m.x129 + 0.0001*m.x90*m.x130 + 0.0001*m.x90*m.x131 + 0.0001*
m.x90*m.x132 + 0.0001*m.x90*m.x133 + 0.0001*m.x90*m.x134 + 0.0001*m.x90*m.x135 + 0.0001*m.x90*
m.x136 + 0.0001*m.x90*m.x137 + 0.0001*m.x90*m.x138 + 0.0001*m.x90*m.x139 + 0.0001*m.x90*m.x140 +
0.0001*m.x90*m.x141 + 0.0001*m.x90*m.x142 + 0.0001*m.x90*m.x143 + 0.0001*m.x90*m.x144 + 0.0001*
m.x90*m.x145 + 0.0001*m.x90*m.x146 + 0.0001*m.x90*m.x147 + 0.0001*m.x90*m.x148 + 0.0001*m.x90*
m.x149 + 0.0001*m.x90*m.x150 + 0.0001*m.x90*m.x151 + 0.0001*m.x90*m.x152 + 0.0001*m.x90*m.x153 +
0.0001*m.x90*m.x154 + 0.0001*m.x90*m.x155 + 0.0001*m.x90*m.x156 + 0.0001*m.x90*m.x157 + 0.0001*
m.x90*m.x158 + 0.0001*m.x90*m.x159 + 0.0001*m.x90*m.x160 + 0.0001*m.x90*m.x161 + 0.0001*m.x90*
m.x162 + 0.0001*m.x90*m.x163 + 0.0001*m.x90*m.x164 + 0.0001*m.x90*m.x165 + 0.0001*m.x90*m.x166 +
0.0001*m.x90*m.x167 + 0.0001*m.x90*m.x168 + 0.0001*m.x90*m.x169 + 0.0001*m.x90*m.x170 + 0.0001*
m.x90*m.x171 + 0.0001*m.x90*m.x172 + 0.0001*m.x90*m.x173 + 0.0001*m.x90*m.x174 + 0.0001*m.x90*
m.x175 + 0.0001*m.x90*m.x176 + 0.0001*m.x90*m.x177 + 0.0001*m.x90*m.x178 + 0.0001*m.x90*m.x179 +
0.0001*m.x90*m.x180 + 0.0001*m.x90*m.x181 + 0.0001*m.x90*m.x182 + 0.0001*m.x90*m.x183 + 0.0001*
m.x90*m.x184 + 0.0001*m.x90*m.x185 + 0.0001*m.x91*m.x1 + 0.0001*m.x91*m.x2 + 0.0001*m.x91*m.x3 +
0.0001*m.x91*m.x4 + 0.0001*m.x91*m.x5 + 0.0001*m.x91*m.x6 + 0.0001*m.x91*m.x7 + 0.0001*m.x91*m.x8
+ 0.0001*m.x91*m.x9 + 0.0001*m.x91*m.x10 + 0.0001*m.x91*m.x11 + 0.0001*m.x91*m.x12 + 0.0001*
m.x91*m.x13 + 0.0001*m.x91*m.x14 + 0.0001*m.x91*m.x15 + 0.0001*m.x91*m.x16 + 0.0001*m.x91*m.x17
+ 0.0001*m.x91*m.x18 + 0.0001*m.x91*m.x19 + 0.0001*m.x91*m.x20 + 0.0001*m.x91*m.x21 + 0.0001*
m.x91*m.x22 + 0.0001*m.x91*m.x23 + 0.0001*m.x91*m.x24 + 0.0001*m.x91*m.x25 + 0.0001*m.x91*m.x26
+ 0.0001*m.x91*m.x27 + 0.0001*m.x91*m.x28 + 0.0001*m.x91*m.x29 + 0.0001*m.x91*m.x30 + 0.0001*
m.x91*m.x31 + 5.0148913745191*m.x91*m.x32 + 0.0001*m.x91*m.x33 + 0.0001*m.x91*m.x34 + 0.0001*
m.x91*m.x35 + 0.0001*m.x91*m.x36 + 0.0001*m.x91*m.x37 + 0.0001*m.x91*m.x38 + 0.0001*m.x91*m.x39
+ 0.0001*m.x91*m.x40 + 0.0001*m.x91*m.x41 + 0.0001*m.x91*m.x42 + 0.0001*m.x91*m.x43 + 0.0001*
m.x91*m.x44 + 0.0001*m.x91*m.x45 + 0.0001*m.x91*m.x46 + 0.0001*m.x91*m.x47 + 0.0001*m.x91*m.x48
+ 0.0001*m.x91*m.x49 + 0.0001*m.x91*m.x50 + 0.0001*m.x91*m.x51 + 0.0001*m.x91*m.x52 + 0.0001*
m.x91*m.x53 + 0.0001*m.x91*m.x54 + 3.34228364077303*m.x91*m.x55 + 0.0001*m.x91*m.x56 + 0.0001*
m.x91*m.x57 + 0.0001*m.x91*m.x58 + 0.0001*m.x91*m.x59 + 0.0001*m.x91*m.x60 + 0.0001*m.x91*m.x61
+ 0.0001*m.x91*m.x62 + 0.0001*m.x91*m.x63 + 0.0001*m.x91*m.x64 + 0.0001*m.x91*m.x65 + 0.0001*
m.x91*m.x66 + 0.0001*m.x91*m.x67 + 0.0001*m.x91*m.x68 + 0.0001*m.x91*m.x69 + 0.0001*m.x91*m.x70
+ 0.0001*m.x91*m.x71 + 0.0001*m.x91*m.x72 + 0.0001*m.x91*m.x73 + 0.0001*m.x91*m.x74 + 0.0001*
m.x91*m.x75 + 0.0001*m.x91*m.x76 + 0.0001*m.x91*m.x77 + 0.0001*m.x91*m.x78 + 0.0001*m.x91*m.x79
+ 0.0001*m.x91*m.x80 + 0.0001*m.x91*m.x81 + 0.0001*m.x91*m.x82 + 0.0001*m.x91*m.x83 + 0.0001*
m.x91*m.x84 + 0.0001*m.x91*m.x85 + 0.0001*m.x91*m.x86 + 0.0001*m.x91*m.x87 + 0.0001*m.x91*m.x88
+ 0.0001*m.x91*m.x89 + 0.0001*m.x91*m.x90 + 9.45081045583368*m.x91**2 + 0.0001*m.x91*m.x92 +
0.0001*m.x91*m.x93 + 0.0001*m.x91*m.x94 + 0.0001*m.x91*m.x95 + 0.0001*m.x91*m.x96 + 0.0001*m.x91*
m.x97 + 0.0001*m.x91*m.x98 + 0.0001*m.x91*m.x99 + 0.0001*m.x91*m.x100 + 0.0001*m.x91*m.x101 +
0.0001*m.x91*m.x102 + 0.0001*m.x91*m.x103 + 0.0001*m.x91*m.x104 + 0.0001*m.x91*m.x105 + 0.0001*
m.x91*m.x106 + 0.0001*m.x91*m.x107 + 0.0001*m.x91*m.x108 + 0.0001*m.x91*m.x109 + 0.0001*m.x91*
m.x110 + 0.0001*m.x91*m.x111 + 0.0001*m.x91*m.x112 + 0.0001*m.x91*m.x113 + 0.0001*m.x91*m.x114 +
0.0001*m.x91*m.x115 + 0.0001*m.x91*m.x116 + 0.0001*m.x91*m.x117 + 0.0001*m.x91*m.x118 + 0.0001*
m.x91*m.x119 + 0.0001*m.x91*m.x120 + 0.0001*m.x91*m.x121 + 0.0001*m.x91*m.x122 + 0.0001*m.x91*
m.x123 + 0.0001*m.x91*m.x124 + 0.0001*m.x91*m.x125 + 0.0001*m.x91*m.x126 + 0.0001*m.x91*m.x127 +
0.0001*m.x91*m.x128 + 0.0001*m.x91*m.x129 + 0.0001*m.x91*m.x130 + 0.0001*m.x91*m.x131 + 0.0001*
m.x91*m.x132 + 0.0001*m.x91*m.x133 + 0.0001*m.x91*m.x134 + 0.0001*m.x91*m.x135 + 0.0001*m.x91*
m.x136 + 0.0001*m.x91*m.x137 + 0.0001*m.x91*m.x138 + 0.0001*m.x91*m.x139 + 0.0001*m.x91*m.x140 +
0.0001*m.x91*m.x141 + 0.0001*m.x91*m.x142 + 0.0001*m.x91*m.x143 + 0.0001*m.x91*m.x144 + 0.0001*
m.x91*m.x145 + 0.0001*m.x91*m.x146 + 0.0001*m.x91*m.x147 + 0.0001*m.x91*m.x148 + 0.0001*m.x91*
m.x149 + 0.0001*m.x91*m.x150 + 0.0001*m.x91*m.x151 + 0.0001*m.x91*m.x152 + 0.0001*m.x91*m.x153 +
0.0001*m.x91*m.x154 + 0.0001*m.x91*m.x155 + 0.0001*m.x91*m.x156 + 0.0001*m.x91*m.x157 + 0.0001*
m.x91*m.x158 + 0.0001*m.x91*m.x159 + 0.0001*m.x91*m.x160 + 0.0001*m.x91*m.x161 + 0.0001*m.x91*
m.x162 + 0.0001*m.x91*m.x163 + 0.0001*m.x91*m.x164 + 0.0001*m.x91*m.x165 + 0.0001*m.x91*m.x166 +
0.0001*m.x91*m.x167 + 0.0001*m.x91*m.x168 + 0.0001*m.x91*m.x169 + 0.0001*m.x91*m.x170 + 0.0001*
m.x91*m.x171 + 0.0001*m.x91*m.x172 + 0.0001*m.x91*m.x173 + 0.0001*m.x91*m.x174 + 0.0001*m.x91*
m.x175 + 0.0001*m.x91*m.x176 + 0.0001*m.x91*m.x177 + 0.0001*m.x91*m.x178 + 0.0001*m.x91*m.x179 +
0.0001*m.x91*m.x180 + 0.0001*m.x91*m.x181 + 0.0001*m.x91*m.x182 + 0.0001*m.x91*m.x183 + 0.0001*
m.x91*m.x184 + 0.0001*m.x91*m.x185 + 0.0001*m.x92*m.x1 + 0.0001*m.x92*m.x2 + 0.0001*m.x92*m.x3 +
0.0001*m.x92*m.x4 + 0.0001*m.x92*m.x5 + 0.0001*m.x92*m.x6 + 0.0001*m.x92*m.x7 + 0.0001*m.x92*m.x8
+ 0.0001*m.x92*m.x9 + 0.0001*m.x92*m.x10 + 0.0001*m.x92*m.x11 + 0.0001*m.x92*m.x12 + 0.0001*
m.x92*m.x13 + 0.0001*m.x92*m.x14 + 0.0001*m.x92*m.x15 + 0.0001*m.x92*m.x16 + 0.0001*m.x92*m.x17
+ 0.0001*m.x92*m.x18 + 0.0001*m.x92*m.x19 + 0.0001*m.x92*m.x20 + 0.0001*m.x92*m.x21 + 0.0001*
m.x92*m.x22 + 0.0001*m.x92*m.x23 + 0.0001*m.x92*m.x24 + 0.0001*m.x92*m.x25 + 0.0001*m.x92*m.x26
+ 0.0001*m.x92*m.x27 + 0.0001*m.x92*m.x28 + 0.0001*m.x92*m.x29 + 0.0001*m.x92*m.x30 + 0.0001*
m.x92*m.x31 + 0.0001*m.x92*m.x32 + 5.09913394219933*m.x92*m.x33 + 0.0001*m.x92*m.x34 + 0.0001*
m.x92*m.x35 + 0.0001*m.x92*m.x36 + 0.0001*m.x92*m.x37 + 0.0001*m.x92*m.x38 + 0.0001*m.x92*m.x39
+ 0.0001*m.x92*m.x40 + 0.0001*m.x92*m.x41 + 0.0001*m.x92*m.x42 + 0.0001*m.x92*m.x43 + 0.0001*
m.x92*m.x44 + 0.0001*m.x92*m.x45 + 0.0001*m.x92*m.x46 + 0.0001*m.x92*m.x47 + 0.0001*m.x92*m.x48
+ 0.0001*m.x92*m.x49 + 0.0001*m.x92*m.x50 + 0.0001*m.x92*m.x51 + 0.0001*m.x92*m.x52 + 0.0001*
m.x92*m.x53 + 0.0001*m.x92*m.x54 + 3.14439991707406*m.x92*m.x55 + 0.0001*m.x92*m.x56 + 0.0001*
m.x92*m.x57 + 0.0001*m.x92*m.x58 + 0.0001*m.x92*m.x59 + 0.0001*m.x92*m.x60 + 0.0001*m.x92*m.x61
+ 0.0001*m.x92*m.x62 + 0.0001*m.x92*m.x63 + 0.0001*m.x92*m.x64 + 0.0001*m.x92*m.x65 + 0.0001*
m.x92*m.x66 + 0.0001*m.x92*m.x67 + 0.0001*m.x92*m.x68 + 0.0001*m.x92*m.x69 + 0.0001*m.x92*m.x70
+ 0.0001*m.x92*m.x71 + 0.0001*m.x92*m.x72 + 0.0001*m.x92*m.x73 + 0.0001*m.x92*m.x74 + 0.0001*
m.x92*m.x75 + 0.0001*m.x92*m.x76 + 0.0001*m.x92*m.x77 + 0.0001*m.x92*m.x78 + 0.0001*m.x92*m.x79
+ 0.0001*m.x92*m.x80 + 0.0001*m.x92*m.x81 + 0.0001*m.x92*m.x82 + 0.0001*m.x92*m.x83 + 0.0001*
m.x92*m.x84 + 0.0001*m.x92*m.x85 + 0.0001*m.x92*m.x86 + 0.0001*m.x92*m.x87 + 0.0001*m.x92*m.x88
+ 0.0001*m.x92*m.x89 + 0.0001*m.x92*m.x90 + 0.0001*m.x92*m.x91 + 9.71234063548862*m.x92**2 +
0.0001*m.x92*m.x93 + 0.0001*m.x92*m.x94 + 0.0001*m.x92*m.x95 + 0.0001*m.x92*m.x96 + 0.0001*m.x92*
m.x97 + 0.0001*m.x92*m.x98 + 0.0001*m.x92*m.x99 + 0.0001*m.x92*m.x100 + 0.0001*m.x92*m.x101 +
0.0001*m.x92*m.x102 + 0.0001*m.x92*m.x103 + 0.0001*m.x92*m.x104 + 0.0001*m.x92*m.x105 + 0.0001*
m.x92*m.x106 + 0.0001*m.x92*m.x107 + 0.0001*m.x92*m.x108 + 0.0001*m.x92*m.x109 + 0.0001*m.x92*
m.x110 + 0.0001*m.x92*m.x111 + 0.0001*m.x92*m.x112 + 0.0001*m.x92*m.x113 + 0.0001*m.x92*m.x114 +
0.0001*m.x92*m.x115 + 0.0001*m.x92*m.x116 + 0.0001*m.x92*m.x117 + 0.0001*m.x92*m.x118 + 0.0001*
m.x92*m.x119 + 0.0001*m.x92*m.x120 + 0.0001*m.x92*m.x121 + 0.0001*m.x92*m.x122 + 0.0001*m.x92*
m.x123 + 0.0001*m.x92*m.x124 + 0.0001*m.x92*m.x125 + 0.0001*m.x92*m.x126 + 0.0001*m.x92*m.x127 +
0.0001*m.x92*m.x128 + 0.0001*m.x92*m.x129 + 0.0001*m.x92*m.x130 + 0.0001*m.x92*m.x131 + 0.0001*
m.x92*m.x132 + 0.0001*m.x92*m.x133 + 0.0001*m.x92*m.x134 + 0.0001*m.x92*m.x135 + 0.0001*m.x92*
m.x136 + 0.0001*m.x92*m.x137 + 0.0001*m.x92*m.x138 + 0.0001*m.x92*m.x139 + 0.0001*m.x92*m.x140 +
0.0001*m.x92*m.x141 + 0.0001*m.x92*m.x142 + 0.0001*m.x92*m.x143 + 0.0001*m.x92*m.x144 + 0.0001*
m.x92*m.x145 + 0.0001*m.x92*m.x146 + 0.0001*m.x92*m.x147 + 0.0001*m.x92*m.x148 + 0.0001*m.x92*
m.x149 + 0.0001*m.x92*m.x150 + 0.0001*m.x92*m.x151 + 0.0001*m.x92*m.x152 + 0.0001*m.x92*m.x153 +
0.0001*m.x92*m.x154 + 0.0001*m.x92*m.x155 + 0.0001*m.x92*m.x156 + 0.0001*m.x92*m.x157 + 0.0001*
m.x92*m.x158 + 0.0001*m.x92*m.x159 + 0.0001*m.x92*m.x160 + 0.0001*m.x92*m.x161 + 0.0001*m.x92*
m.x162 + 0.0001*m.x92*m.x163 + 0.0001*m.x92*m.x164 + 0.0001*m.x92*m.x165 + 0.0001*m.x92*m.x166 +
0.0001*m.x92*m.x167 + 0.0001*m.x92*m.x168 + 0.0001*m.x92*m.x169 + 0.0001*m.x92*m.x170 + 0.0001*
m.x92*m.x171 + 0.0001*m.x92*m.x172 + 0.0001*m.x92*m.x173 + 0.0001*m.x92*m.x174 + 0.0001*m.x92*
m.x175 + 0.0001*m.x92*m.x176 + 0.0001*m.x92*m.x177 + 0.0001*m.x92*m.x178 + 0.0001*m.x92*m.x179 +
0.0001*m.x92*m.x180 + 0.0001*m.x92*m.x181 + 0.0001*m.x92*m.x182 + 0.0001*m.x92*m.x183 + 0.0001*
m.x92*m.x184 + 0.0001*m.x92*m.x185 + 0.0001*m.x93*m.x1 + 0.0001*m.x93*m.x2 + 0.0001*m.x93*m.x3 +
0.0001*m.x93*m.x4 + 0.0001*m.x93*m.x5 + 0.0001*m.x93*m.x6 + 0.0001*m.x93*m.x7 + 0.0001*m.x93*m.x8
+ 0.0001*m.x93*m.x9 + 0.0001*m.x93*m.x10 + 0.0001*m.x93*m.x11 + 0.0001*m.x93*m.x12 + 0.0001*
m.x93*m.x13 + 0.0001*m.x93*m.x14 + 0.0001*m.x93*m.x15 + 0.0001*m.x93*m.x16 + 0.0001*m.x93*m.x17
+ 0.0001*m.x93*m.x18 + 0.0001*m.x93*m.x19 + 0.0001*m.x93*m.x20 + 0.0001*m.x93*m.x21 + 0.0001*
m.x93*m.x22 + 0.0001*m.x93*m.x23 + 0.0001*m.x93*m.x24 + 0.0001*m.x93*m.x25 + 0.0001*m.x93*m.x26
+ 0.0001*m.x93*m.x27 + 0.0001*m.x93*m.x28 + 0.0001*m.x93*m.x29 + 0.0001*m.x93*m.x30 + 0.0001*
m.x93*m.x31 + 0.0001*m.x93*m.x32 + 0.0001*m.x93*m.x33 + 5.09913394219933*m.x93*m.x34 + 0.0001*
m.x93*m.x35 + 0.0001*m.x93*m.x36 + 0.0001*m.x93*m.x37 + 0.0001*m.x93*m.x38 + 0.0001*m.x93*m.x39
+ 0.0001*m.x93*m.x40 + 0.0001*m.x93*m.x41 + 0.0001*m.x93*m.x42 + 0.0001*m.x93*m.x43 + 0.0001*
m.x93*m.x44 + 0.0001*m.x93*m.x45 + 0.0001*m.x93*m.x46 + 0.0001*m.x93*m.x47 + 0.0001*m.x93*m.x48
+ 0.0001*m.x93*m.x49 + 0.0001*m.x93*m.x50 + 0.0001*m.x93*m.x51 + 0.0001*m.x93*m.x52 + 0.0001*
m.x93*m.x53 + 0.0001*m.x93*m.x54 + 0.0001*m.x93*m.x55 + 3.14439991707406*m.x93*m.x56 + 0.0001*
m.x93*m.x57 + 0.0001*m.x93*m.x58 + 0.0001*m.x93*m.x59 + 0.0001*m.x93*m.x60 + 0.0001*m.x93*m.x61
+ 0.0001*m.x93*m.x62 + 0.0001*m.x93*m.x63 + 0.0001*m.x93*m.x64 + 0.0001*m.x93*m.x65 + 0.0001*
m.x93*m.x66 + 0.0001*m.x93*m.x67 + 0.0001*m.x93*m.x68 + 0.0001*m.x93*m.x69 + 0.0001*m.x93*m.x70
+ 0.0001*m.x93*m.x71 + 0.0001*m.x93*m.x72 + 0.0001*m.x93*m.x73 + 0.0001*m.x93*m.x74 + 0.0001*
m.x93*m.x75 + 0.0001*m.x93*m.x76 + 0.0001*m.x93*m.x77 + 0.0001*m.x93*m.x78 + 0.0001*m.x93*m.x79
+ 0.0001*m.x93*m.x80 + 0.0001*m.x93*m.x81 + 0.0001*m.x93*m.x82 + 0.0001*m.x93*m.x83 + 0.0001*
m.x93*m.x84 + 0.0001*m.x93*m.x85 + 0.0001*m.x93*m.x86 + 0.0001*m.x93*m.x87 + 0.0001*m.x93*m.x88
+ 0.0001*m.x93*m.x89 + 0.0001*m.x93*m.x90 + 0.0001*m.x93*m.x91 + 0.0001*m.x93*m.x92 +
9.71234063548862*m.x93**2 + 0.0001*m.x93*m.x94 + 0.0001*m.x93*m.x95 + 0.0001*m.x93*m.x96 + 0.0001
*m.x93*m.x97 + 0.0001*m.x93*m.x98 + 0.0001*m.x93*m.x99 + 0.0001*m.x93*m.x100 + 0.0001*m.x93*
m.x101 + 0.0001*m.x93*m.x102 + 0.0001*m.x93*m.x103 + 0.0001*m.x93*m.x104 + 0.0001*m.x93*m.x105 +
0.0001*m.x93*m.x106 + 0.0001*m.x93*m.x107 + 0.0001*m.x93*m.x108 + 0.0001*m.x93*m.x109 + 0.0001*
m.x93*m.x110 + 0.0001*m.x93*m.x111 + 0.0001*m.x93*m.x112 + 0.0001*m.x93*m.x113 + 0.0001*m.x93*
m.x114 + 0.0001*m.x93*m.x115 + 0.0001*m.x93*m.x116 + 0.0001*m.x93*m.x117 + 0.0001*m.x93*m.x118 +
0.0001*m.x93*m.x119 + 0.0001*m.x93*m.x120 + 0.0001*m.x93*m.x121 + 0.0001*m.x93*m.x122 + 0.0001*
m.x93*m.x123 + 0.0001*m.x93*m.x124 + 0.0001*m.x93*m.x125 + 0.0001*m.x93*m.x126 + 0.0001*m.x93*
m.x127 + 0.0001*m.x93*m.x128 + 0.0001*m.x93*m.x129 + 1.35189577717393*m.x93*m.x130 + 0.0001*m.x93
*m.x131 + 0.0001*m.x93*m.x132 + 0.0001*m.x93*m.x133 + 0.0001*m.x93*m.x134 + 0.0001*m.x93*m.x135
+ 0.0001*m.x93*m.x136 + 0.0001*m.x93*m.x137 + 0.0001*m.x93*m.x138 + 0.0001*m.x93*m.x139 + 0.0001
*m.x93*m.x140 + 0.0001*m.x93*m.x141 + 0.0001*m.x93*m.x142 + 0.0001*m.x93*m.x143 + 0.0001*m.x93*
m.x144 + 0.0001*m.x93*m.x145 + 0.0001*m.x93*m.x146 + 0.0001*m.x93*m.x147 + 0.0001*m.x93*m.x148 +
0.0001*m.x93*m.x149 + 0.0001*m.x93*m.x150 + 0.0001*m.x93*m.x151 + 0.0001*m.x93*m.x152 + 0.0001*
m.x93*m.x153 + 0.0001*m.x93*m.x154 + 0.0001*m.x93*m.x155 + 0.0001*m.x93*m.x156 + 0.0001*m.x93*
m.x157 + 0.0001*m.x93*m.x158 + 0.0001*m.x93*m.x159 + 0.0001*m.x93*m.x160 + 0.0001*m.x93*m.x161 +
0.0001*m.x93*m.x162 + 0.0001*m.x93*m.x163 + 0.0001*m.x93*m.x164 + 0.0001*m.x93*m.x165 + 0.0001*
m.x93*m.x166 + 0.0001*m.x93*m.x167 + 0.0001*m.x93*m.x168 + 0.0001*m.x93*m.x169 + 0.0001*m.x93*
m.x170 + 0.0001*m.x93*m.x171 + 0.0001*m.x93*m.x172 + 0.0001*m.x93*m.x173 + 0.0001*m.x93*m.x174 +
0.0001*m.x93*m.x175 + 0.0001*m.x93*m.x176 + 0.0001*m.x93*m.x177 + 0.0001*m.x93*m.x178 + 0.0001*
m.x93*m.x179 + 0.0001*m.x93*m.x180 + 0.0001*m.x93*m.x181 + 0.0001*m.x93*m.x182 + 0.0001*m.x93*
m.x183 + 0.0001*m.x93*m.x184 + 0.0001*m.x93*m.x185 + 0.0001*m.x94*m.x1 + 0.0001*m.x94*m.x2 +
0.0001*m.x94*m.x3 + 0.0001*m.x94*m.x4 + 0.0001*m.x94*m.x5 + 0.0001*m.x94*m.x6 + 0.0001*m.x94*m.x7
+ 0.0001*m.x94*m.x8 + 0.0001*m.x94*m.x9 + 0.0001*m.x94*m.x10 + 0.0001*m.x94*m.x11 + 0.0001*m.x94
*m.x12 + 0.0001*m.x94*m.x13 + 0.0001*m.x94*m.x14 + 0.0001*m.x94*m.x15 + 0.0001*m.x94*m.x16 +
0.0001*m.x94*m.x17 + 0.0001*m.x94*m.x18 + 0.0001*m.x94*m.x19 + 0.0001*m.x94*m.x20 + 0.0001*m.x94*
m.x21 + 0.0001*m.x94*m.x22 + 0.0001*m.x94*m.x23 + 0.0001*m.x94*m.x24 + 0.638156568960432*m.x94*
m.x25 + 0.0001*m.x94*m.x26 + 0.0001*m.x94*m.x27 + 0.0001*m.x94*m.x28 + 0.0001*m.x94*m.x29 +
0.0001*m.x94*m.x30 + 0.0001*m.x94*m.x31 + 0.0001*m.x94*m.x32 + 0.0001*m.x94*m.x33 + 0.0001*m.x94*
m.x34 + 5.14749668329507*m.x94*m.x35 + 0.0001*m.x94*m.x36 + 0.0001*m.x94*m.x37 + 0.0001*m.x94*
m.x38 + 0.0001*m.x94*m.x39 + 0.0001*m.x94*m.x40 + 0.0001*m.x94*m.x41 + 0.0001*m.x94*m.x42 +
0.0001*m.x94*m.x43 + 0.0001*m.x94*m.x44 + 0.0001*m.x94*m.x45 + 0.0001*m.x94*m.x46 + 0.0001*m.x94*
m.x47 + 0.0001*m.x94*m.x48 + 0.0001*m.x94*m.x49 + 0.0001*m.x94*m.x50 + 0.0001*m.x94*m.x51 +
0.0001*m.x94*m.x52 + 0.0001*m.x94*m.x53 + 0.0001*m.x94*m.x54 + 0.0001*m.x94*m.x55 + 0.0001*m.x94*
m.x56 + 3.21771003868294*m.x94*m.x57 + 0.0001*m.x94*m.x58 + 0.0001*m.x94*m.x59 + 0.0001*m.x94*
m.x60 + 0.0001*m.x94*m.x61 + 0.0001*m.x94*m.x62 + 0.0001*m.x94*m.x63 + 0.0001*m.x94*m.x64 +
0.0001*m.x94*m.x65 + 0.0001*m.x94*m.x66 + 0.0001*m.x94*m.x67 + 0.0001*m.x94*m.x68 + 0.0001*m.x94*
m.x69 + 0.0001*m.x94*m.x70 + 0.0001*m.x94*m.x71 + 0.0001*m.x94*m.x72 + 0.0001*m.x94*m.x73 +
0.0001*m.x94*m.x74 + 0.0001*m.x94*m.x75 + 0.0001*m.x94*m.x76 + 0.0001*m.x94*m.x77 + 0.0001*m.x94*
m.x78 + 0.0001*m.x94*m.x79 + 0.0001*m.x94*m.x80 + 0.0001*m.x94*m.x81 + 0.0001*m.x94*m.x82 +
0.0001*m.x94*m.x83 + 0.0001*m.x94*m.x84 + 0.0001*m.x94*m.x85 + 0.0001*m.x94*m.x86 + 0.0001*m.x94*
m.x87 + 0.0001*m.x94*m.x88 + 0.0001*m.x94*m.x89 + 0.0001*m.x94*m.x90 + 0.0001*m.x94*m.x91 +
0.0001*m.x94*m.x92 + 0.0001*m.x94*m.x93 + 9.71234063548862*m.x94**2 + 0.0001*m.x94*m.x95 + 0.0001
*m.x94*m.x96 + 0.0001*m.x94*m.x97 + 0.0001*m.x94*m.x98 + 0.0001*m.x94*m.x99 + 0.0001*m.x94*m.x100
+ 0.0001*m.x94*m.x101 + 0.0001*m.x94*m.x102 + 0.0001*m.x94*m.x103 + 0.0001*m.x94*m.x104 + 0.0001
*m.x94*m.x105 + 0.0001*m.x94*m.x106 + 0.0001*m.x94*m.x107 + 0.0001*m.x94*m.x108 + 0.0001*m.x94*
m.x109 + 0.0001*m.x94*m.x110 + 0.0001*m.x94*m.x111 + 0.0001*m.x94*m.x112 + 0.0001*m.x94*m.x113 +
0.0001*m.x94*m.x114 + 0.0001*m.x94*m.x115 + 0.0001*m.x94*m.x116 + 0.0001*m.x94*m.x117 + 0.0001*
m.x94*m.x118 + 0.0001*m.x94*m.x119 + 0.0001*m.x94*m.x120 + 0.0001*m.x94*m.x121 + 0.0001*m.x94*
m.x122 + 0.0001*m.x94*m.x123 + 0.0001*m.x94*m.x124 + 0.0001*m.x94*m.x125 + 0.0001*m.x94*m.x126 +
0.0001*m.x94*m.x127 + 0.0001*m.x94*m.x128 + 0.0001*m.x94*m.x129 + 0.0001*m.x94*m.x130 +
1.35189577717393*m.x94*m.x131 + 0.0001*m.x94*m.x132 + 0.0001*m.x94*m.x133 + 0.0001*m.x94*m.x134
+ 0.0001*m.x94*m.x135 + 0.0001*m.x94*m.x136 + 0.0001*m.x94*m.x137 + 0.0001*m.x94*m.x138 + 0.0001
*m.x94*m.x139 + 0.0001*m.x94*m.x140 + 0.0001*m.x94*m.x141 + 0.0001*m.x94*m.x142 + 0.0001*m.x94*
m.x143 + 0.0001*m.x94*m.x144 + 0.0001*m.x94*m.x145 + 0.0001*m.x94*m.x146 + 0.0001*m.x94*m.x147 +
0.0001*m.x94*m.x148 + 0.0001*m.x94*m.x149 + 0.0001*m.x94*m.x150 + 0.0001*m.x94*m.x151 + 0.0001*
m.x94*m.x152 + 0.0001*m.x94*m.x153 + 0.0001*m.x94*m.x154 + 0.0001*m.x94*m.x155 + 0.0001*m.x94*
m.x156 + 0.0001*m.x94*m.x157 + 0.0001*m.x94*m.x158 + 0.0001*m.x94*m.x159 + 0.0001*m.x94*m.x160 +
0.0001*m.x94*m.x161 + 0.0001*m.x94*m.x162 + 0.0001*m.x94*m.x163 + 0.0001*m.x94*m.x164 + 0.0001*
m.x94*m.x165 + 0.0001*m.x94*m.x166 + 0.0001*m.x94*m.x167 + 0.0001*m.x94*m.x168 + 0.0001*m.x94*
m.x169 + 0.0001*m.x94*m.x170 + 0.0001*m.x94*m.x171 + 0.0001*m.x94*m.x172 + 0.0001*m.x94*m.x173 +
0.0001*m.x94*m.x174 + 0.0001*m.x94*m.x175 + 0.0001*m.x94*m.x176 + 0.0001*m.x94*m.x177 + 0.0001*
m.x94*m.x178 + 0.0001*m.x94*m.x179 + 0.0001*m.x94*m.x180 + 0.0001*m.x94*m.x181 + 0.0001*m.x94*
m.x182 + 0.0001*m.x94*m.x183 + 0.0001*m.x94*m.x184 + 0.0001*m.x94*m.x185 + 0.0001*m.x95*m.x1 +
0.0001*m.x95*m.x2 + 0.0001*m.x95*m.x3 + 0.0001*m.x95*m.x4 + 0.0001*m.x95*m.x5 + 0.0001*m.x95*m.x6
+ 0.0001*m.x95*m.x7 + 0.0001*m.x95*m.x8 + 0.0001*m.x95*m.x9 + 0.0001*m.x95*m.x10 + 0.0001*m.x95*
m.x11 + 0.0001*m.x95*m.x12 + 0.0001*m.x95*m.x13 + 0.0001*m.x95*m.x14 + 0.0001*m.x95*m.x15 +
0.0001*m.x95*m.x16 + 0.0001*m.x95*m.x17 + 0.0001*m.x95*m.x18 + 0.0001*m.x95*m.x19 + 0.0001*m.x95*
m.x20 + 0.0001*m.x95*m.x21 + 0.0001*m.x95*m.x22 + 0.0001*m.x95*m.x23 + 0.0001*m.x95*m.x24 +
0.0001*m.x95*m.x25 + 0.620513780689159*m.x95*m.x26 + 0.0001*m.x95*m.x27 + 0.0001*m.x95*m.x28 +
0.0001*m.x95*m.x29 + 0.0001*m.x95*m.x30 + 0.0001*m.x95*m.x31 + 0.0001*m.x95*m.x32 + 0.0001*m.x95*
m.x33 + 0.0001*m.x95*m.x34 + 0.0001*m.x95*m.x35 + 0.0001*m.x95*m.x36 + 0.0001*m.x95*m.x37 +
0.0001*m.x95*m.x38 + 0.0001*m.x95*m.x39 + 0.0001*m.x95*m.x40 + 0.0001*m.x95*m.x41 + 0.0001*m.x95*
m.x42 + 0.0001*m.x95*m.x43 + 0.0001*m.x95*m.x44 + 0.0001*m.x95*m.x45 + 0.0001*m.x95*m.x46 +
0.0001*m.x95*m.x47 + 0.0001*m.x95*m.x48 + 0.0001*m.x95*m.x49 + 0.0001*m.x95*m.x50 + 0.0001*m.x95*
m.x51 + 0.0001*m.x95*m.x52 + 0.0001*m.x95*m.x53 + 0.0001*m.x95*m.x54 + 0.0001*m.x95*m.x55 +
0.0001*m.x95*m.x56 + 0.0001*m.x95*m.x57 + 3.17841006619937*m.x95*m.x58 + 0.0001*m.x95*m.x59 +
0.0001*m.x95*m.x60 + 0.0001*m.x95*m.x61 + 0.0001*m.x95*m.x62 + 0.0001*m.x95*m.x63 + 0.0001*m.x95*
m.x64 + 0.0001*m.x95*m.x65 + 0.0001*m.x95*m.x66 + 0.0001*m.x95*m.x67 + 0.0001*m.x95*m.x68 +
0.0001*m.x95*m.x69 + 0.0001*m.x95*m.x70 + 0.0001*m.x95*m.x71 + 0.0001*m.x95*m.x72 + 0.0001*m.x95*
m.x73 + 0.0001*m.x95*m.x74 + 0.0001*m.x95*m.x75 + 0.0001*m.x95*m.x76 + 0.0001*m.x95*m.x77 +
0.0001*m.x95*m.x78 + 0.0001*m.x95*m.x79 + 0.0001*m.x95*m.x80 + 0.0001*m.x95*m.x81 + 0.0001*m.x95*
m.x82 + 0.0001*m.x95*m.x83 + 0.0001*m.x95*m.x84 + 0.0001*m.x95*m.x85 + 0.0001*m.x95*m.x86 +
0.0001*m.x95*m.x87 + 0.0001*m.x95*m.x88 + 0.0001*m.x95*m.x89 + 0.0001*m.x95*m.x90 + 0.0001*m.x95*
m.x91 + 0.0001*m.x95*m.x92 + 0.0001*m.x95*m.x93 + 0.0001*m.x95*m.x94 + 8.90453339415309*m.x95**2
+ 0.0001*m.x95*m.x96 + 0.0001*m.x95*m.x97 + 0.0001*m.x95*m.x98 + 0.0001*m.x95*m.x99 + 0.0001*
m.x95*m.x100 + 0.0001*m.x95*m.x101 + 0.0001*m.x95*m.x102 + 0.0001*m.x95*m.x103 + 0.0001*m.x95*
m.x104 + 0.0001*m.x95*m.x105 + 0.0001*m.x95*m.x106 + 0.0001*m.x95*m.x107 + 0.0001*m.x95*m.x108 +
0.0001*m.x95*m.x109 + 0.0001*m.x95*m.x110 + 0.0001*m.x95*m.x111 + 0.0001*m.x95*m.x112 + 0.0001*
m.x95*m.x113 + 0.0001*m.x95*m.x114 + 0.0001*m.x95*m.x115 + 0.0001*m.x95*m.x116 + 0.0001*m.x95*
m.x117 + 0.0001*m.x95*m.x118 + 0.0001*m.x95*m.x119 + 0.0001*m.x95*m.x120 + 0.0001*m.x95*m.x121 +
0.0001*m.x95*m.x122 + 0.0001*m.x95*m.x123 + 0.0001*m.x95*m.x124 + 0.0001*m.x95*m.x125 + 0.0001*
m.x95*m.x126 + 0.0001*m.x95*m.x127 + 0.0001*m.x95*m.x128 + 0.0001*m.x95*m.x129 + 0.0001*m.x95*
m.x130 + 0.0001*m.x95*m.x131 + 1.33196082493441*m.x95*m.x132 + 0.0001*m.x95*m.x133 + 0.0001*m.x95
*m.x134 + 0.0001*m.x95*m.x135 + 0.0001*m.x95*m.x136 + 0.0001*m.x95*m.x137 + 0.0001*m.x95*m.x138
+ 0.0001*m.x95*m.x139 + 0.0001*m.x95*m.x140 + 0.0001*m.x95*m.x141 + 0.0001*m.x95*m.x142 + 0.0001
*m.x95*m.x143 + 0.0001*m.x95*m.x144 + 0.0001*m.x95*m.x145 + 0.0001*m.x95*m.x146 + 0.0001*m.x95*
m.x147 + 0.0001*m.x95*m.x148 + 0.0001*m.x95*m.x149 + 0.0001*m.x95*m.x150 + 0.0001*m.x95*m.x151 +
0.0001*m.x95*m.x152 + 0.0001*m.x95*m.x153 + 0.0001*m.x95*m.x154 + 0.0001*m.x95*m.x155 + 0.0001*
m.x95*m.x156 + 0.0001*m.x95*m.x157 + 0.0001*m.x95*m.x158 + 0.0001*m.x95*m.x159 + 0.0001*m.x95*
m.x160 + 0.0001*m.x95*m.x161 + 0.0001*m.x95*m.x162 + 0.0001*m.x95*m.x163 + 0.0001*m.x95*m.x164 +
0.0001*m.x95*m.x165 + 0.0001*m.x95*m.x166 + 0.0001*m.x95*m.x167 + 0.0001*m.x95*m.x168 + 0.0001*
m.x95*m.x169 + 0.0001*m.x95*m.x170 + 0.0001*m.x95*m.x171 + 0.0001*m.x95*m.x172 + 0.0001*m.x95*
m.x173 + 0.0001*m.x95*m.x174 + 0.0001*m.x95*m.x175 + 0.0001*m.x95*m.x176 + 0.0001*m.x95*m.x177 +
0.0001*m.x95*m.x178 + 0.0001*m.x95*m.x179 + 0.0001*m.x95*m.x180 + 0.0001*m.x95*m.x181 + 0.0001*
m.x95*m.x182 + 0.0001*m.x95*m.x183 + 0.0001*m.x95*m.x184 + 0.0001*m.x95*m.x185 + 0.0001*m.x96*
m.x1 + 0.0001*m.x96*m.x2 + 0.0001*m.x96*m.x3 + 0.0001*m.x96*m.x4 + 0.0001*m.x96*m.x5 + 0.0001*
m.x96*m.x6 + 0.0001*m.x96*m.x7 + 0.0001*m.x96*m.x8 + 0.0001*m.x96*m.x9 + 0.0001*m.x96*m.x10 +
0.0001*m.x96*m.x11 + 0.0001*m.x96*m.x12 + 0.0001*m.x96*m.x13 + 0.0001*m.x96*m.x14 + 0.0001*m.x96*
m.x15 + 0.0001*m.x96*m.x16 + 0.0001*m.x96*m.x17 + 0.0001*m.x96*m.x18 + 0.0001*m.x96*m.x19 +
0.0001*m.x96*m.x20 + 0.0001*m.x96*m.x21 + 0.0001*m.x96*m.x22 + 0.0001*m.x96*m.x23 + 0.0001*m.x96*
m.x24 + 0.0001*m.x96*m.x25 + 0.0001*m.x96*m.x26 + 0.624057893929279*m.x96*m.x27 + 0.0001*m.x96*
m.x28 + 0.0001*m.x96*m.x29 + 0.0001*m.x96*m.x30 + 0.0001*m.x96*m.x31 + 0.0001*m.x96*m.x32 +
0.0001*m.x96*m.x33 + 0.0001*m.x96*m.x34 + 0.0001*m.x96*m.x35 + 0.0001*m.x96*m.x36 + 0.0001*m.x96*
m.x37 + 0.0001*m.x96*m.x38 + 0.0001*m.x96*m.x39 + 0.0001*m.x96*m.x40 + 0.0001*m.x96*m.x41 +
0.0001*m.x96*m.x42 + 0.0001*m.x96*m.x43 + 0.0001*m.x96*m.x44 + 0.0001*m.x96*m.x45 + 0.0001*m.x96*
m.x46 + 0.0001*m.x96*m.x47 + 0.0001*m.x96*m.x48 + 0.0001*m.x96*m.x49 + 0.0001*m.x96*m.x50 +
0.0001*m.x96*m.x51 + 0.0001*m.x96*m.x52 + 0.0001*m.x96*m.x53 + 0.0001*m.x96*m.x54 + 0.0001*m.x96*
m.x55 + 0.0001*m.x96*m.x56 + 0.0001*m.x96*m.x57 + 0.0001*m.x96*m.x58 + 0.0001*m.x96*m.x59 +
0.0001*m.x96*m.x60 + 0.0001*m.x96*m.x61 + 0.0001*m.x96*m.x62 + 0.0001*m.x96*m.x63 + 0.0001*m.x96*
m.x64 + 0.0001*m.x96*m.x65 + 0.0001*m.x96*m.x66 + 0.0001*m.x96*m.x67 + 0.0001*m.x96*m.x68 +
0.0001*m.x96*m.x69 + 0.0001*m.x96*m.x70 + 0.0001*m.x96*m.x71 + 0.0001*m.x96*m.x72 + 0.0001*m.x96*
m.x73 + 0.0001*m.x96*m.x74 + 0.0001*m.x96*m.x75 + 0.0001*m.x96*m.x76 + 0.0001*m.x96*m.x77 +
0.0001*m.x96*m.x78 + 0.0001*m.x96*m.x79 + 0.0001*m.x96*m.x80 + 0.0001*m.x96*m.x81 + 0.0001*m.x96*
m.x82 + 0.0001*m.x96*m.x83 + 0.0001*m.x96*m.x84 + 0.0001*m.x96*m.x85 + 0.0001*m.x96*m.x86 +
0.0001*m.x96*m.x87 + 0.0001*m.x96*m.x88 + 0.0001*m.x96*m.x89 + 0.0001*m.x96*m.x90 + 0.0001*m.x96*
m.x91 + 0.0001*m.x96*m.x92 + 0.0001*m.x96*m.x93 + 0.0001*m.x96*m.x94 + 0.0001*m.x96*m.x95 +
8.90453339415309*m.x96**2 + 0.0001*m.x96*m.x97 + 0.0001*m.x96*m.x98 + 0.0001*m.x96*m.x99 + 0.0001
*m.x96*m.x100 + 0.0001*m.x96*m.x101 + 0.0001*m.x96*m.x102 + 0.0001*m.x96*m.x103 + 0.0001*m.x96*
m.x104 + 0.0001*m.x96*m.x105 + 0.0001*m.x96*m.x106 + 0.0001*m.x96*m.x107 + 0.0001*m.x96*m.x108 +
0.0001*m.x96*m.x109 + 0.0001*m.x96*m.x110 + 0.0001*m.x96*m.x111 + 0.0001*m.x96*m.x112 + 0.0001*
m.x96*m.x113 + 0.0001*m.x96*m.x114 + 0.0001*m.x96*m.x115 + 0.0001*m.x96*m.x116 + 0.0001*m.x96*
m.x117 + 0.0001*m.x96*m.x118 + 0.0001*m.x96*m.x119 + 0.0001*m.x96*m.x120 + 0.0001*m.x96*m.x121 +
0.0001*m.x96*m.x122 + 0.0001*m.x96*m.x123 + 0.0001*m.x96*m.x124 + 0.0001*m.x96*m.x125 + 0.0001*
m.x96*m.x126 + 0.0001*m.x96*m.x127 + 0.0001*m.x96*m.x128 + 0.0001*m.x96*m.x129 + 0.0001*m.x96*
m.x130 + 0.0001*m.x96*m.x131 + 0.0001*m.x96*m.x132 + 1.32500350566268*m.x96*m.x133 + 0.0001*m.x96
*m.x134 + 0.0001*m.x96*m.x135 + 0.0001*m.x96*m.x136 + 0.0001*m.x96*m.x137 + 0.0001*m.x96*m.x138
+ 0.0001*m.x96*m.x139 + 0.0001*m.x96*m.x140 + 0.0001*m.x96*m.x141 + 0.0001*m.x96*m.x142 + 0.0001
*m.x96*m.x143 + 0.0001*m.x96*m.x144 + 0.0001*m.x96*m.x145 + 0.0001*m.x96*m.x146 + 0.0001*m.x96*
m.x147 + 0.0001*m.x96*m.x148 + 0.0001*m.x96*m.x149 + 0.0001*m.x96*m.x150 + 0.0001*m.x96*m.x151 +
0.0001*m.x96*m.x152 + 0.0001*m.x96*m.x153 + 0.0001*m.x96*m.x154 + 0.0001*m.x96*m.x155 + 0.0001*
m.x96*m.x156 + 0.0001*m.x96*m.x157 + 0.0001*m.x96*m.x158 + 0.0001*m.x96*m.x159 + 0.0001*m.x96*
m.x160 + 0.0001*m.x96*m.x161 + 0.0001*m.x96*m.x162 + 0.0001*m.x96*m.x163 + 0.0001*m.x96*m.x164 +
0.0001*m.x96*m.x165 + 0.0001*m.x96*m.x166 + 0.0001*m.x96*m.x167 + 0.0001*m.x96*m.x168 + 0.0001*
m.x96*m.x169 + 0.0001*m.x96*m.x170 + 0.0001*m.x96*m.x171 + 0.0001*m.x96*m.x172 + 0.0001*m.x96*
m.x173 + 0.0001*m.x96*m.x174 + 0.0001*m.x96*m.x175 + 0.0001*m.x96*m.x176 + 0.0001*m.x96*m.x177 +
0.0001*m.x96*m.x178 + 0.0001*m.x96*m.x179 + 0.0001*m.x96*m.x180 + 0.0001*m.x96*m.x181 + 0.0001*
m.x96*m.x182 + 0.0001*m.x96*m.x183 + 0.0001*m.x96*m.x184 + 0.0001*m.x96*m.x185 + 0.0001*m.x97*
m.x1 + 0.0001*m.x97*m.x2 + 0.0001*m.x97*m.x3 + 0.0001*m.x97*m.x4 + 0.0001*m.x97*m.x5 + 0.0001*
m.x97*m.x6 + 0.0001*m.x97*m.x7 + 0.0001*m.x97*m.x8 + 0.0001*m.x97*m.x9 + 0.0001*m.x97*m.x10 +
0.0001*m.x97*m.x11 + 0.0001*m.x97*m.x12 + 0.0001*m.x97*m.x13 + 0.0001*m.x97*m.x14 + 0.0001*m.x97*
m.x15 + 0.0001*m.x97*m.x16 + 0.0001*m.x97*m.x17 + 0.0001*m.x97*m.x18 + 0.0001*m.x97*m.x19 +
0.0001*m.x97*m.x20 + 0.0001*m.x97*m.x21 + 0.0001*m.x97*m.x22 + 0.0001*m.x97*m.x23 + 0.0001*m.x97*
m.x24 + 0.0001*m.x97*m.x25 + 0.0001*m.x97*m.x26 + 0.0001*m.x97*m.x27 + 0.624183321392942*m.x97*
m.x28 + 0.0001*m.x97*m.x29 + 0.0001*m.x97*m.x30 + 0.0001*m.x97*m.x31 + 0.0001*m.x97*m.x32 +
0.0001*m.x97*m.x33 + 0.0001*m.x97*m.x34 + 0.0001*m.x97*m.x35 + 0.0001*m.x97*m.x36 + 0.0001*m.x97*
m.x37 + 0.0001*m.x97*m.x38 + 0.0001*m.x97*m.x39 + 0.0001*m.x97*m.x40 + 0.0001*m.x97*m.x41 +
0.0001*m.x97*m.x42 + 0.0001*m.x97*m.x43 + 0.0001*m.x97*m.x44 + 0.0001*m.x97*m.x45 + 0.0001*m.x97*
m.x46 + 0.0001*m.x97*m.x47 + 0.0001*m.x97*m.x48 + 0.0001*m.x97*m.x49 + 0.0001*m.x97*m.x50 +
0.0001*m.x97*m.x51 + 0.0001*m.x97*m.x52 + 0.0001*m.x97*m.x53 + 0.0001*m.x97*m.x54 + 0.0001*m.x97*
m.x55 + 0.0001*m.x97*m.x56 + 0.0001*m.x97*m.x57 + 0.0001*m.x97*m.x58 + 0.0001*m.x97*m.x59 +
0.0001*m.x97*m.x60 + 0.0001*m.x97*m.x61 + 0.0001*m.x97*m.x62 + 0.0001*m.x97*m.x63 + 0.0001*m.x97*
m.x64 + 0.0001*m.x97*m.x65 + 0.0001*m.x97*m.x66 + 0.0001*m.x97*m.x67 + 0.0001*m.x97*m.x68 +
0.0001*m.x97*m.x69 + 0.0001*m.x97*m.x70 + 0.0001*m.x97*m.x71 + 0.0001*m.x97*m.x72 + 0.0001*m.x97*
m.x73 + 0.0001*m.x97*m.x74 + 0.0001*m.x97*m.x75 + 0.0001*m.x97*m.x76 + 0.0001*m.x97*m.x77 +
0.0001*m.x97*m.x78 + 0.0001*m.x97*m.x79 + 0.0001*m.x97*m.x80 + 0.0001*m.x97*m.x81 + 0.0001*m.x97*
m.x82 + 0.0001*m.x97*m.x83 + 0.0001*m.x97*m.x84 + 0.0001*m.x97*m.x85 + 0.0001*m.x97*m.x86 +
0.0001*m.x97*m.x87 + 0.0001*m.x97*m.x88 + 0.0001*m.x97*m.x89 + 0.0001*m.x97*m.x90 + 0.0001*m.x97*
m.x91 + 0.0001*m.x97*m.x92 + 0.0001*m.x97*m.x93 + 0.0001*m.x97*m.x94 + 0.0001*m.x97*m.x95 +
0.0001*m.x97*m.x96 + 8.90528676592052*m.x97**2 + 0.0001*m.x97*m.x98 + 0.0001*m.x97*m.x99 + 0.0001
*m.x97*m.x100 + 0.0001*m.x97*m.x101 + 0.0001*m.x97*m.x102 + 0.0001*m.x97*m.x103 + 0.0001*m.x97*
m.x104 + 0.0001*m.x97*m.x105 + 0.0001*m.x97*m.x106 + 0.0001*m.x97*m.x107 + 0.0001*m.x97*m.x108 +
0.0001*m.x97*m.x109 + 0.0001*m.x97*m.x110 + 0.0001*m.x97*m.x111 + 0.0001*m.x97*m.x112 + 0.0001*
m.x97*m.x113 + 0.0001*m.x97*m.x114 + 0.0001*m.x97*m.x115 + 0.0001*m.x97*m.x116 + 0.0001*m.x97*
m.x117 + 0.0001*m.x97*m.x118 + 0.0001*m.x97*m.x119 + 0.0001*m.x97*m.x120 + 0.0001*m.x97*m.x121 +
0.0001*m.x97*m.x122 + 0.0001*m.x97*m.x123 + 0.0001*m.x97*m.x124 + 0.0001*m.x97*m.x125 + 0.0001*
m.x97*m.x126 + 0.0001*m.x97*m.x127 + 0.0001*m.x97*m.x128 + 0.0001*m.x97*m.x129 + 0.0001*m.x97*
m.x130 + 0.0001*m.x97*m.x131 + 0.0001*m.x97*m.x132 + 0.0001*m.x97*m.x133 + 1.32511560093607*m.x97
*m.x134 + 0.0001*m.x97*m.x135 + 0.0001*m.x97*m.x136 + 0.0001*m.x97*m.x137 + 0.0001*m.x97*m.x138
+ 0.0001*m.x97*m.x139 + 0.0001*m.x97*m.x140 + 0.0001*m.x97*m.x141 + 0.0001*m.x97*m.x142 + 0.0001
*m.x97*m.x143 + 0.0001*m.x97*m.x144 + 0.0001*m.x97*m.x145 + 0.0001*m.x97*m.x146 + 0.0001*m.x97*
m.x147 + 0.0001*m.x97*m.x148 + 0.0001*m.x97*m.x149 + 0.0001*m.x97*m.x150 + 0.0001*m.x97*m.x151 +
0.0001*m.x97*m.x152 + 0.0001*m.x97*m.x153 + 0.0001*m.x97*m.x154 + 0.0001*m.x97*m.x155 + 0.0001*
m.x97*m.x156 + 0.0001*m.x97*m.x157 + 0.0001*m.x97*m.x158 + 0.0001*m.x97*m.x159 + 0.0001*m.x97*
m.x160 + 0.0001*m.x97*m.x161 + 0.0001*m.x97*m.x162 + 0.0001*m.x97*m.x163 + 0.0001*m.x97*m.x164 +
0.0001*m.x97*m.x165 + 0.0001*m.x97*m.x166 + 0.0001*m.x97*m.x167 + 0.0001*m.x97*m.x168 + 0.0001*
m.x97*m.x169 + 0.0001*m.x97*m.x170 + 0.0001*m.x97*m.x171 + 0.0001*m.x97*m.x172 + 0.0001*m.x97*
m.x173 + 0.0001*m.x97*m.x174 + 0.0001*m.x97*m.x175 + 0.0001*m.x97*m.x176 + 0.0001*m.x97*m.x177 +
0.0001*m.x97*m.x178 + 0.0001*m.x97*m.x179 + 0.0001*m.x97*m.x180 + 0.0001*m.x97*m.x181 + 0.0001*
m.x97*m.x182 + 0.0001*m.x97*m.x183 + 0.0001*m.x97*m.x184 + 0.0001*m.x97*m.x185 + 0.0001*m.x98*
m.x1 + 0.0001*m.x98*m.x2 + 0.0001*m.x98*m.x3 + 0.0001*m.x98*m.x4 + 0.0001*m.x98*m.x5 + 0.0001*
m.x98*m.x6 + 0.0001*m.x98*m.x7 + 0.0001*m.x98*m.x8 + 0.0001*m.x98*m.x9 + 0.0001*m.x98*m.x10 +
0.0001*m.x98*m.x11 + 0.0001*m.x98*m.x12 + 0.0001*m.x98*m.x13 + 0.0001*m.x98*m.x14 + 0.0001*m.x98*
m.x15 + 0.0001*m.x98*m.x16 + 0.0001*m.x98*m.x17 + 0.0001*m.x98*m.x18 + 0.0001*m.x98*m.x19 +
0.0001*m.x98*m.x20 + 0.0001*m.x98*m.x21 + 0.0001*m.x98*m.x22 + 0.0001*m.x98*m.x23 + 0.0001*m.x98*
m.x24 + 0.0001*m.x98*m.x25 + 0.0001*m.x98*m.x26 + 0.0001*m.x98*m.x27 + 0.0001*m.x98*m.x28 +
0.666827196622213*m.x98*m.x29 + 0.0001*m.x98*m.x30 + 0.0001*m.x98*m.x31 + 0.0001*m.x98*m.x32 +
0.0001*m.x98*m.x33 + 0.0001*m.x98*m.x34 + 0.0001*m.x98*m.x35 + 0.0001*m.x98*m.x36 + 0.0001*m.x98*
m.x37 + 0.0001*m.x98*m.x38 + 0.0001*m.x98*m.x39 + 0.0001*m.x98*m.x40 + 0.0001*m.x98*m.x41 +
0.0001*m.x98*m.x42 + 0.0001*m.x98*m.x43 + 0.0001*m.x98*m.x44 + 0.0001*m.x98*m.x45 + 0.0001*m.x98*
m.x46 + 0.0001*m.x98*m.x47 + 0.0001*m.x98*m.x48 + 0.0001*m.x98*m.x49 + 0.0001*m.x98*m.x50 +
0.0001*m.x98*m.x51 + 0.0001*m.x98*m.x52 + 0.0001*m.x98*m.x53 + 0.0001*m.x98*m.x54 + 0.0001*m.x98*
m.x55 + 0.0001*m.x98*m.x56 + 0.0001*m.x98*m.x57 + 0.0001*m.x98*m.x58 + 0.0001*m.x98*m.x59 +
0.0001*m.x98*m.x60 + 0.0001*m.x98*m.x61 + 0.0001*m.x98*m.x62 + 0.0001*m.x98*m.x63 + 0.0001*m.x98*
m.x64 + 0.0001*m.x98*m.x65 + 0.0001*m.x98*m.x66 + 0.0001*m.x98*m.x67 + 0.0001*m.x98*m.x68 +
0.0001*m.x98*m.x69 + 0.0001*m.x98*m.x70 + 0.0001*m.x98*m.x71 + 0.0001*m.x98*m.x72 + 0.0001*m.x98*
m.x73 + 0.0001*m.x98*m.x74 + 0.0001*m.x98*m.x75 + 0.0001*m.x98*m.x76 + 0.0001*m.x98*m.x77 +
0.0001*m.x98*m.x78 + 0.0001*m.x98*m.x79 + 0.0001*m.x98*m.x80 + 0.0001*m.x98*m.x81 + 0.0001*m.x98*
m.x82 + 0.0001*m.x98*m.x83 + 0.0001*m.x98*m.x84 + 0.0001*m.x98*m.x85 + 0.0001*m.x98*m.x86 +
0.0001*m.x98*m.x87 + 0.0001*m.x98*m.x88 + 0.0001*m.x98*m.x89 + 0.0001*m.x98*m.x90 + 0.0001*m.x98*
m.x91 + 0.0001*m.x98*m.x92 + 0.0001*m.x98*m.x93 + 0.0001*m.x98*m.x94 + 0.0001*m.x98*m.x95 +
0.0001*m.x98*m.x96 + 0.0001*m.x98*m.x97 + 8.93090213558665*m.x98**2 + 0.0001*m.x98*m.x99 + 0.0001
*m.x98*m.x100 + 0.0001*m.x98*m.x101 + 0.0001*m.x98*m.x102 + 0.0001*m.x98*m.x103 + 0.0001*m.x98*
m.x104 + 0.0001*m.x98*m.x105 + 0.0001*m.x98*m.x106 + 0.0001*m.x98*m.x107 + 0.0001*m.x98*m.x108 +
0.0001*m.x98*m.x109 + 0.0001*m.x98*m.x110 + 0.0001*m.x98*m.x111 + 0.0001*m.x98*m.x112 + 0.0001*
m.x98*m.x113 + 0.0001*m.x98*m.x114 + 0.0001*m.x98*m.x115 + 0.0001*m.x98*m.x116 + 0.0001*m.x98*
m.x117 + 0.0001*m.x98*m.x118 + 0.0001*m.x98*m.x119 + 0.0001*m.x98*m.x120 + 0.0001*m.x98*m.x121 +
0.0001*m.x98*m.x122 + 0.0001*m.x98*m.x123 + 0.0001*m.x98*m.x124 + 0.0001*m.x98*m.x125 + 0.0001*
m.x98*m.x126 + 0.0001*m.x98*m.x127 + 0.0001*m.x98*m.x128 + 0.0001*m.x98*m.x129 + 0.0001*m.x98*
m.x130 + 0.0001*m.x98*m.x131 + 0.0001*m.x98*m.x132 + 0.0001*m.x98*m.x133 + 0.0001*m.x98*m.x134 +
1.43304340993365*m.x98*m.x135 + 0.0001*m.x98*m.x136 + 0.0001*m.x98*m.x137 + 0.0001*m.x98*m.x138
+ 0.0001*m.x98*m.x139 + 0.0001*m.x98*m.x140 + 0.0001*m.x98*m.x141 + 0.0001*m.x98*m.x142 + 0.0001
*m.x98*m.x143 + 0.0001*m.x98*m.x144 + 0.0001*m.x98*m.x145 + 0.0001*m.x98*m.x146 + 0.0001*m.x98*
m.x147 + 0.0001*m.x98*m.x148 + 0.0001*m.x98*m.x149 + 0.0001*m.x98*m.x150 + 0.0001*m.x98*m.x151 +
0.0001*m.x98*m.x152 + 0.0001*m.x98*m.x153 + 0.0001*m.x98*m.x154 + 0.0001*m.x98*m.x155 + 0.0001*
m.x98*m.x156 + 0.0001*m.x98*m.x157 + 0.0001*m.x98*m.x158 + 0.0001*m.x98*m.x159 + 0.0001*m.x98*
m.x160 + 0.0001*m.x98*m.x161 + 0.0001*m.x98*m.x162 + 0.0001*m.x98*m.x163 + 0.0001*m.x98*m.x164 +
0.0001*m.x98*m.x165 + 0.0001*m.x98*m.x166 + 0.0001*m.x98*m.x167 + 0.0001*m.x98*m.x168 + 0.0001*
m.x98*m.x169 + 0.0001*m.x98*m.x170 + 0.0001*m.x98*m.x171 + 0.0001*m.x98*m.x172 + 0.0001*m.x98*
m.x173 + 0.0001*m.x98*m.x174 + 0.0001*m.x98*m.x175 + 0.0001*m.x98*m.x176 + 0.0001*m.x98*m.x177 +
0.0001*m.x98*m.x178 + 0.0001*m.x98*m.x179 + 0.0001*m.x98*m.x180 + 0.0001*m.x98*m.x181 + 0.0001*
m.x98*m.x182 + 0.0001*m.x98*m.x183 + 0.0001*m.x98*m.x184 + 0.0001*m.x98*m.x185 + 0.0001*m.x99*
m.x1 + 0.0001*m.x99*m.x2 + 0.0001*m.x99*m.x3 + 0.0001*m.x99*m.x4 + 0.0001*m.x99*m.x5 + 0.0001*
m.x99*m.x6 + 0.0001*m.x99*m.x7 + 0.0001*m.x99*m.x8 + 0.0001*m.x99*m.x9 + 0.0001*m.x99*m.x10 +
0.0001*m.x99*m.x11 + 0.0001*m.x99*m.x12 + 0.0001*m.x99*m.x13 + 0.0001*m.x99*m.x14 + 0.0001*m.x99*
m.x15 + 0.0001*m.x99*m.x16 + 0.0001*m.x99*m.x17 + 0.0001*m.x99*m.x18 + 0.0001*m.x99*m.x19 +
0.0001*m.x99*m.x20 + 0.0001*m.x99*m.x21 + 0.0001*m.x99*m.x22 + 0.0001*m.x99*m.x23 + 0.0001*m.x99*
m.x24 + 0.0001*m.x99*m.x25 + 0.0001*m.x99*m.x26 + 0.0001*m.x99*m.x27 + 0.0001*m.x99*m.x28 +
0.0001*m.x99*m.x29 + 0.0001*m.x99*m.x30 + 0.65193781790818*m.x99*m.x31 + 0.0001*m.x99*m.x32 +
0.0001*m.x99*m.x33 + 0.0001*m.x99*m.x34 + 0.0001*m.x99*m.x35 + 0.0001*m.x99*m.x36 + 0.0001*m.x99*
m.x37 + 0.0001*m.x99*m.x38 + 0.0001*m.x99*m.x39 + 0.0001*m.x99*m.x40 + 0.0001*m.x99*m.x41 +
0.0001*m.x99*m.x42 + 0.0001*m.x99*m.x43 + 0.0001*m.x99*m.x44 + 0.0001*m.x99*m.x45 + 0.0001*m.x99*
m.x46 + 0.0001*m.x99*m.x47 + 0.0001*m.x99*m.x48 + 0.0001*m.x99*m.x49 + 0.0001*m.x99*m.x50 +
0.0001*m.x99*m.x51 + 0.0001*m.x99*m.x52 + 0.0001*m.x99*m.x53 + 0.0001*m.x99*m.x54 + 0.0001*m.x99*
m.x55 + 0.0001*m.x99*m.x56 + 0.0001*m.x99*m.x57 + 0.0001*m.x99*m.x58 + 0.0001*m.x99*m.x59 +
0.0001*m.x99*m.x60 + 0.0001*m.x99*m.x61 + 0.0001*m.x99*m.x62 + 0.0001*m.x99*m.x63 + 0.0001*m.x99*
m.x64 + 0.0001*m.x99*m.x65 + 0.0001*m.x99*m.x66 + 0.0001*m.x99*m.x67 + 0.0001*m.x99*m.x68 +
0.0001*m.x99*m.x69 + 0.0001*m.x99*m.x70 + 0.0001*m.x99*m.x71 + 0.0001*m.x99*m.x72 + 0.0001*m.x99*
m.x73 + 0.0001*m.x99*m.x74 + 0.0001*m.x99*m.x75 + 0.0001*m.x99*m.x76 + 0.0001*m.x99*m.x77 +
0.0001*m.x99*m.x78 + 0.0001*m.x99*m.x79 + 0.0001*m.x99*m.x80 + 0.0001*m.x99*m.x81 + 0.0001*m.x99*
m.x82 + 0.0001*m.x99*m.x83 + 0.0001*m.x99*m.x84 + 0.0001*m.x99*m.x85 + 0.0001*m.x99*m.x86 +
0.0001*m.x99*m.x87 + 0.0001*m.x99*m.x88 + 0.0001*m.x99*m.x89 + 0.0001*m.x99*m.x90 + 0.0001*m.x99*
m.x91 + 0.0001*m.x99*m.x92 + 0.0001*m.x99*m.x93 + 0.0001*m.x99*m.x94 + 0.0001*m.x99*m.x95 +
0.0001*m.x99*m.x96 + 0.0001*m.x99*m.x97 + 0.0001*m.x99*m.x98 + 8.93090213558665*m.x99**2 + 0.0001
*m.x99*m.x100 + 0.0001*m.x99*m.x101 + 0.0001*m.x99*m.x102 + 0.0001*m.x99*m.x103 + 0.0001*m.x99*
m.x104 + 0.0001*m.x99*m.x105 + 0.0001*m.x99*m.x106 + 0.0001*m.x99*m.x107 + 0.0001*m.x99*m.x108 +
0.0001*m.x99*m.x109 + 0.0001*m.x99*m.x110 + 0.0001*m.x99*m.x111 + 0.0001*m.x99*m.x112 + 0.0001*
m.x99*m.x113 + 0.0001*m.x99*m.x114 + 0.0001*m.x99*m.x115 + 0.0001*m.x99*m.x116 + 0.0001*m.x99*
m.x117 + 0.0001*m.x99*m.x118 + 0.0001*m.x99*m.x119 + 0.0001*m.x99*m.x120 + 0.0001*m.x99*m.x121 +
0.0001*m.x99*m.x122 + 0.0001*m.x99*m.x123 + 0.0001*m.x99*m.x124 + 0.0001*m.x99*m.x125 + 0.0001*
m.x99*m.x126 + 0.0001*m.x99*m.x127 + 0.0001*m.x99*m.x128 + 0.0001*m.x99*m.x129 + 0.0001*m.x99*
m.x130 + 0.0001*m.x99*m.x131 + 0.0001*m.x99*m.x132 + 0.0001*m.x99*m.x133 + 0.0001*m.x99*m.x134 +
0.0001*m.x99*m.x135 + 0.0001*m.x99*m.x136 + 1.4635914120443*m.x99*m.x137 + 0.0001*m.x99*m.x138 +
0.0001*m.x99*m.x139 + 0.0001*m.x99*m.x140 + 0.0001*m.x99*m.x141 + 0.0001*m.x99*m.x142 + 0.0001*
m.x99*m.x143 + 0.0001*m.x99*m.x144 + 0.0001*m.x99*m.x145 + 0.0001*m.x99*m.x146 + 0.0001*m.x99*
m.x147 + 0.0001*m.x99*m.x148 + 0.0001*m.x99*m.x149 + 0.0001*m.x99*m.x150 + 0.0001*m.x99*m.x151 +
0.0001*m.x99*m.x152 + 0.0001*m.x99*m.x153 + 0.0001*m.x99*m.x154 + 0.0001*m.x99*m.x155 + 0.0001*
m.x99*m.x156 + 0.0001*m.x99*m.x157 + 0.0001*m.x99*m.x158 + 0.0001*m.x99*m.x159 + 0.0001*m.x99*
m.x160 + 0.0001*m.x99*m.x161 + 0.0001*m.x99*m.x162 + 0.0001*m.x99*m.x163 + 0.0001*m.x99*m.x164 +
0.0001*m.x99*m.x165 + 0.0001*m.x99*m.x166 + 0.0001*m.x99*m.x167 + 0.0001*m.x99*m.x168 + 0.0001*
m.x99*m.x169 + 0.0001*m.x99*m.x170 + 0.0001*m.x99*m.x171 + 0.0001*m.x99*m.x172 + 0.0001*m.x99*
m.x173 + 0.0001*m.x99*m.x174 + 0.0001*m.x99*m.x175 + 0.0001*m.x99*m.x176 + 0.0001*m.x99*m.x177 +
0.0001*m.x99*m.x178 + 0.0001*m.x99*m.x179 + 0.0001*m.x99*m.x180 + 0.0001*m.x99*m.x181 + 0.0001*
m.x99*m.x182 + 0.0001*m.x99*m.x183 + 0.0001*m.x99*m.x184 + 0.0001*m.x99*m.x185 + 0.0001*m.x100*
m.x1 + 0.0001*m.x100*m.x2 + 0.0001*m.x100*m.x3 + 0.0001*m.x100*m.x4 + 0.0001*m.x100*m.x5 + 0.0001
*m.x100*m.x6 + 0.0001*m.x100*m.x7 + 0.0001*m.x100*m.x8 + 0.0001*m.x100*m.x9 + 0.0001*m.x100*m.x10
+ 0.0001*m.x100*m.x11 + 0.0001*m.x100*m.x12 + 0.0001*m.x100*m.x13 + 0.0001*m.x100*m.x14 + 0.0001
*m.x100*m.x15 + 0.0001*m.x100*m.x16 + 0.0001*m.x100*m.x17 + 0.0001*m.x100*m.x18 + 0.0001*m.x100*
m.x19 + 0.0001*m.x100*m.x20 + 0.0001*m.x100*m.x21 + 0.0001*m.x100*m.x22 + 0.0001*m.x100*m.x23 +
0.0001*m.x100*m.x24 + 0.0001*m.x100*m.x25 + 0.0001*m.x100*m.x26 + 0.0001*m.x100*m.x27 + 0.0001*
m.x100*m.x28 + 0.0001*m.x100*m.x29 + 0.0001*m.x100*m.x30 + 0.0001*m.x100*m.x31 +
0.680247077879747*m.x100*m.x32 + 0.0001*m.x100*m.x33 + 0.0001*m.x100*m.x34 + 0.0001*m.x100*m.x35
+ 0.0001*m.x100*m.x36 + 0.0001*m.x100*m.x37 + 0.0001*m.x100*m.x38 + 0.0001*m.x100*m.x39 + 0.0001
*m.x100*m.x40 + 0.0001*m.x100*m.x41 + 0.0001*m.x100*m.x42 + 0.0001*m.x100*m.x43 + 0.0001*m.x100*
m.x44 + 0.0001*m.x100*m.x45 + 0.0001*m.x100*m.x46 + 0.0001*m.x100*m.x47 + 0.0001*m.x100*m.x48 +
0.0001*m.x100*m.x49 + 0.0001*m.x100*m.x50 + 0.0001*m.x100*m.x51 + 0.0001*m.x100*m.x52 + 0.0001*
m.x100*m.x53 + 0.0001*m.x100*m.x54 + 0.0001*m.x100*m.x55 + 0.0001*m.x100*m.x56 + 0.0001*m.x100*
m.x57 + 0.0001*m.x100*m.x58 + 0.0001*m.x100*m.x59 + 0.0001*m.x100*m.x60 + 0.0001*m.x100*m.x61 +
0.0001*m.x100*m.x62 + 0.0001*m.x100*m.x63 + 0.0001*m.x100*m.x64 + 0.0001*m.x100*m.x65 + 0.0001*
m.x100*m.x66 + 0.0001*m.x100*m.x67 + 0.0001*m.x100*m.x68 + 0.0001*m.x100*m.x69 + 0.0001*m.x100*
m.x70 + 0.0001*m.x100*m.x71 + 0.0001*m.x100*m.x72 + 0.0001*m.x100*m.x73 + 0.0001*m.x100*m.x74 +
0.0001*m.x100*m.x75 + 0.0001*m.x100*m.x76 + 0.0001*m.x100*m.x77 + 0.0001*m.x100*m.x78 + 0.0001*
m.x100*m.x79 + 0.0001*m.x100*m.x80 + 0.0001*m.x100*m.x81 + 0.0001*m.x100*m.x82 + 0.0001*m.x100*
m.x83 + 0.0001*m.x100*m.x84 + 0.0001*m.x100*m.x85 + 0.0001*m.x100*m.x86 + 0.0001*m.x100*m.x87 +
0.0001*m.x100*m.x88 + 0.0001*m.x100*m.x89 + 0.0001*m.x100*m.x90 + 0.0001*m.x100*m.x91 + 0.0001*
m.x100*m.x92 + 0.0001*m.x100*m.x93 + 0.0001*m.x100*m.x94 + 0.0001*m.x100*m.x95 + 0.0001*m.x100*
m.x96 + 0.0001*m.x100*m.x97 + 0.0001*m.x100*m.x98 + 0.0001*m.x100*m.x99 + 8.93090213558665*m.x100
**2 + 0.0001*m.x100*m.x101 + 0.0001*m.x100*m.x102 + 0.0001*m.x100*m.x103 + 0.0001*m.x100*m.x104
+ 0.0001*m.x100*m.x105 + 0.0001*m.x100*m.x106 + 0.0001*m.x100*m.x107 + 0.0001*m.x100*m.x108 +
0.0001*m.x100*m.x109 + 0.0001*m.x100*m.x110 + 0.0001*m.x100*m.x111 + 0.0001*m.x100*m.x112 +
0.0001*m.x100*m.x113 + 0.0001*m.x100*m.x114 + 0.0001*m.x100*m.x115 + 0.0001*m.x100*m.x116 +
0.0001*m.x100*m.x117 + 0.0001*m.x100*m.x118 + 0.0001*m.x100*m.x119 + 0.0001*m.x100*m.x120 +
0.0001*m.x100*m.x121 + 0.0001*m.x100*m.x122 + 0.0001*m.x100*m.x123 + 0.0001*m.x100*m.x124 +
0.0001*m.x100*m.x125 + 0.0001*m.x100*m.x126 + 0.0001*m.x100*m.x127 + 0.0001*m.x100*m.x128 +
0.0001*m.x100*m.x129 + 0.0001*m.x100*m.x130 + 0.0001*m.x100*m.x131 + 0.0001*m.x100*m.x132 +
0.0001*m.x100*m.x133 + 0.0001*m.x100*m.x134 + 0.0001*m.x100*m.x135 + 0.0001*m.x100*m.x136 +
0.0001*m.x100*m.x137 + 1.47288250170917*m.x100*m.x138 + 0.0001*m.x100*m.x139 + 0.0001*m.x100*
m.x140 + 0.0001*m.x100*m.x141 + 0.0001*m.x100*m.x142 + 0.0001*m.x100*m.x143 + 0.0001*m.x100*
m.x144 + 0.0001*m.x100*m.x145 + 0.0001*m.x100*m.x146 + 0.0001*m.x100*m.x147 + 0.0001*m.x100*
m.x148 + 0.0001*m.x100*m.x149 + 0.0001*m.x100*m.x150 + 0.0001*m.x100*m.x151 + 0.0001*m.x100*
m.x152 + 0.0001*m.x100*m.x153 + 0.0001*m.x100*m.x154 + 0.0001*m.x100*m.x155 + 0.0001*m.x100*
m.x156 + 0.0001*m.x100*m.x157 + 0.0001*m.x100*m.x158 + 0.0001*m.x100*m.x159 + 0.0001*m.x100*
m.x160 + 0.0001*m.x100*m.x161 + 0.0001*m.x100*m.x162 + 0.0001*m.x100*m.x163 + 0.0001*m.x100*
m.x164 + 0.0001*m.x100*m.x165 + 0.0001*m.x100*m.x166 + 0.0001*m.x100*m.x167 + 0.0001*m.x100*
m.x168 + 0.0001*m.x100*m.x169 + 0.0001*m.x100*m.x170 + 0.0001*m.x100*m.x171 + 0.0001*m.x100*
m.x172 + 0.0001*m.x100*m.x173 + 0.0001*m.x100*m.x174 + 0.0001*m.x100*m.x175 + 0.0001*m.x100*
m.x176 + 0.0001*m.x100*m.x177 + 0.0001*m.x100*m.x178 + 0.0001*m.x100*m.x179 + 0.0001*m.x100*
m.x180 + 0.0001*m.x100*m.x181 + 0.0001*m.x100*m.x182 + 0.0001*m.x100*m.x183 + 0.0001*m.x100*
m.x184 + 0.0001*m.x100*m.x185 + 0.0001*m.x101*m.x1 + 0.0001*m.x101*m.x2 + 0.0001*m.x101*m.x3 +
0.0001*m.x101*m.x4 + 0.0001*m.x101*m.x5 + 0.0001*m.x101*m.x6 + 0.0001*m.x101*m.x7 + 0.0001*m.x101
*m.x8 + 0.0001*m.x101*m.x9 + 0.0001*m.x101*m.x10 + 0.0001*m.x101*m.x11 + 0.0001*m.x101*m.x12 +
0.0001*m.x101*m.x13 + 0.0001*m.x101*m.x14 + 0.0001*m.x101*m.x15 + 0.0001*m.x101*m.x16 + 0.0001*
m.x101*m.x17 + 0.0001*m.x101*m.x18 + 0.0001*m.x101*m.x19 + 0.0001*m.x101*m.x20 + 0.0001*m.x101*
m.x21 + 0.0001*m.x101*m.x22 + 0.0001*m.x101*m.x23 + 0.0001*m.x101*m.x24 + 0.0001*m.x101*m.x25 +
0.0001*m.x101*m.x26 + 0.0001*m.x101*m.x27 + 0.0001*m.x101*m.x28 + 0.0001*m.x101*m.x29 + 0.0001*
m.x101*m.x30 + 0.0001*m.x101*m.x31 + 0.0001*m.x101*m.x32 + 0.646678640160985*m.x101*m.x33 +
0.0001*m.x101*m.x34 + 0.0001*m.x101*m.x35 + 0.0001*m.x101*m.x36 + 0.0001*m.x101*m.x37 + 0.0001*
m.x101*m.x38 + 0.0001*m.x101*m.x39 + 0.0001*m.x101*m.x40 + 0.0001*m.x101*m.x41 + 0.0001*m.x101*
m.x42 + 0.0001*m.x101*m.x43 + 0.0001*m.x101*m.x44 + 0.0001*m.x101*m.x45 + 0.0001*m.x101*m.x46 +
0.0001*m.x101*m.x47 + 0.0001*m.x101*m.x48 + 0.0001*m.x101*m.x49 + 0.0001*m.x101*m.x50 + 0.0001*
m.x101*m.x51 + 0.0001*m.x101*m.x52 + 0.0001*m.x101*m.x53 + 0.0001*m.x101*m.x54 + 0.0001*m.x101*
m.x55 + 0.0001*m.x101*m.x56 + 0.0001*m.x101*m.x57 + 0.0001*m.x101*m.x58 + 3.30746319381333*m.x101
*m.x59 + 0.0001*m.x101*m.x60 + 0.0001*m.x101*m.x61 + 0.0001*m.x101*m.x62 + 0.0001*m.x101*m.x63 +
0.0001*m.x101*m.x64 + 0.0001*m.x101*m.x65 + 0.0001*m.x101*m.x66 + 0.0001*m.x101*m.x67 + 0.0001*
m.x101*m.x68 + 0.0001*m.x101*m.x69 + 0.0001*m.x101*m.x70 + 0.0001*m.x101*m.x71 + 0.0001*m.x101*
m.x72 + 0.0001*m.x101*m.x73 + 0.0001*m.x101*m.x74 + 0.0001*m.x101*m.x75 + 0.0001*m.x101*m.x76 +
0.0001*m.x101*m.x77 + 0.0001*m.x101*m.x78 + 0.0001*m.x101*m.x79 + 0.0001*m.x101*m.x80 + 0.0001*
m.x101*m.x81 + 0.0001*m.x101*m.x82 + 0.0001*m.x101*m.x83 + 0.0001*m.x101*m.x84 + 0.0001*m.x101*
m.x85 + 0.0001*m.x101*m.x86 + 0.0001*m.x101*m.x87 + 0.0001*m.x101*m.x88 + 0.0001*m.x101*m.x89 +
0.0001*m.x101*m.x90 + 0.0001*m.x101*m.x91 + 0.0001*m.x101*m.x92 + 0.0001*m.x101*m.x93 + 0.0001*
m.x101*m.x94 + 0.0001*m.x101*m.x95 + 0.0001*m.x101*m.x96 + 0.0001*m.x101*m.x97 + 0.0001*m.x101*
m.x98 + 0.0001*m.x101*m.x99 + 0.0001*m.x101*m.x100 + 8.41588452763475*m.x101**2 + 0.0001*m.x101*
m.x102 + 0.0001*m.x101*m.x103 + 0.0001*m.x101*m.x104 + 0.0001*m.x101*m.x105 + 0.0001*m.x101*
m.x106 + 0.0001*m.x101*m.x107 + 0.0001*m.x101*m.x108 + 0.0001*m.x101*m.x109 + 0.0001*m.x101*
m.x110 + 0.0001*m.x101*m.x111 + 0.0001*m.x101*m.x112 + 0.0001*m.x101*m.x113 + 0.0001*m.x101*
m.x114 + 0.0001*m.x101*m.x115 + 0.0001*m.x101*m.x116 + 0.0001*m.x101*m.x117 + 0.0001*m.x101*
m.x118 + 0.0001*m.x101*m.x119 + 0.0001*m.x101*m.x120 + 0.0001*m.x101*m.x121 + 0.0001*m.x101*
m.x122 + 0.0001*m.x101*m.x123 + 0.0001*m.x101*m.x124 + 0.0001*m.x101*m.x125 + 0.0001*m.x101*
m.x126 + 0.0001*m.x101*m.x127 + 0.0001*m.x101*m.x128 + 0.0001*m.x101*m.x129 + 0.0001*m.x101*
m.x130 + 0.0001*m.x101*m.x131 + 0.0001*m.x101*m.x132 + 0.0001*m.x101*m.x133 + 0.0001*m.x101*
m.x134 + 0.0001*m.x101*m.x135 + 0.0001*m.x101*m.x136 + 0.0001*m.x101*m.x137 + 0.0001*m.x101*
m.x138 + 1.40576631319842*m.x101*m.x139 + 0.0001*m.x101*m.x140 + 0.0001*m.x101*m.x141 + 0.0001*
m.x101*m.x142 + 0.0001*m.x101*m.x143 + 0.0001*m.x101*m.x144 + 0.0001*m.x101*m.x145 + 0.0001*
m.x101*m.x146 + 0.0001*m.x101*m.x147 + 0.0001*m.x101*m.x148 + 0.0001*m.x101*m.x149 + 0.0001*
m.x101*m.x150 + 0.0001*m.x101*m.x151 + 0.0001*m.x101*m.x152 + 0.0001*m.x101*m.x153 + 0.0001*
m.x101*m.x154 + 0.0001*m.x101*m.x155 + 0.0001*m.x101*m.x156 + 0.0001*m.x101*m.x157 + 0.0001*
m.x101*m.x158 + 0.0001*m.x101*m.x159 + 0.0001*m.x101*m.x160 + 0.0001*m.x101*m.x161 + 0.0001*
m.x101*m.x162 + 0.0001*m.x101*m.x163 + 0.0001*m.x101*m.x164 + 0.0001*m.x101*m.x165 + 0.0001*
m.x101*m.x166 + 0.0001*m.x101*m.x167 + 0.0001*m.x101*m.x168 + 0.0001*m.x101*m.x169 + 0.0001*
m.x101*m.x170 + 0.0001*m.x101*m.x171 + 0.0001*m.x101*m.x172 + 0.0001*m.x101*m.x173 + 0.0001*
m.x101*m.x174 + 0.0001*m.x101*m.x175 + 0.0001*m.x101*m.x176 + 0.0001*m.x101*m.x177 + 0.0001*
m.x101*m.x178 + 0.0001*m.x101*m.x179 + 0.0001*m.x101*m.x180 + 0.0001*m.x101*m.x181 + 0.0001*
m.x101*m.x182 + 0.0001*m.x101*m.x183 + 0.0001*m.x101*m.x184 + 0.0001*m.x101*m.x185 + 0.0001*
m.x102*m.x1 + 0.0001*m.x102*m.x2 + 0.0001*m.x102*m.x3 + 0.0001*m.x102*m.x4 + 0.0001*m.x102*m.x5
+ 0.0001*m.x102*m.x6 + 0.0001*m.x102*m.x7 + 0.0001*m.x102*m.x8 + 0.0001*m.x102*m.x9 + 0.0001*
m.x102*m.x10 + 0.0001*m.x102*m.x11 + 0.0001*m.x102*m.x12 + 0.0001*m.x102*m.x13 + 0.0001*m.x102*
m.x14 + 0.0001*m.x102*m.x15 + 0.0001*m.x102*m.x16 + 0.0001*m.x102*m.x17 + 0.0001*m.x102*m.x18 +
0.0001*m.x102*m.x19 + 0.0001*m.x102*m.x20 + 0.0001*m.x102*m.x21 + 0.0001*m.x102*m.x22 + 0.0001*
m.x102*m.x23 + 0.0001*m.x102*m.x24 + 0.0001*m.x102*m.x25 + 0.0001*m.x102*m.x26 + 0.0001*m.x102*
m.x27 + 0.0001*m.x102*m.x28 + 0.0001*m.x102*m.x29 + 0.0001*m.x102*m.x30 + 0.0001*m.x102*m.x31 +
0.0001*m.x102*m.x32 + 0.0001*m.x102*m.x33 + 0.646596082213053*m.x102*m.x34 + 0.0001*m.x102*m.x35
+ 0.0001*m.x102*m.x36 + 0.0001*m.x102*m.x37 + 0.0001*m.x102*m.x38 + 0.0001*m.x102*m.x39 + 0.0001
*m.x102*m.x40 + 0.0001*m.x102*m.x41 + 0.0001*m.x102*m.x42 + 0.0001*m.x102*m.x43 + 0.0001*m.x102*
m.x44 + 0.0001*m.x102*m.x45 + 0.0001*m.x102*m.x46 + 0.0001*m.x102*m.x47 + 0.0001*m.x102*m.x48 +
0.0001*m.x102*m.x49 + 0.0001*m.x102*m.x50 + 0.0001*m.x102*m.x51 + 0.0001*m.x102*m.x52 + 0.0001*
m.x102*m.x53 + 0.0001*m.x102*m.x54 + 0.0001*m.x102*m.x55 + 0.0001*m.x102*m.x56 + 0.0001*m.x102*
m.x57 + 0.0001*m.x102*m.x58 + 0.0001*m.x102*m.x59 + 0.0001*m.x102*m.x60 + 0.0001*m.x102*m.x61 +
0.0001*m.x102*m.x62 + 0.0001*m.x102*m.x63 + 0.0001*m.x102*m.x64 + 0.0001*m.x102*m.x65 + 0.0001*
m.x102*m.x66 + 0.0001*m.x102*m.x67 + 0.0001*m.x102*m.x68 + 0.0001*m.x102*m.x69 + 0.0001*m.x102*
m.x70 + 0.0001*m.x102*m.x71 + 0.0001*m.x102*m.x72 + 0.0001*m.x102*m.x73 + 0.0001*m.x102*m.x74 +
0.0001*m.x102*m.x75 + 0.0001*m.x102*m.x76 + 0.0001*m.x102*m.x77 + 0.0001*m.x102*m.x78 + 0.0001*
m.x102*m.x79 + 0.0001*m.x102*m.x80 + 0.0001*m.x102*m.x81 + 0.0001*m.x102*m.x82 + 0.0001*m.x102*
m.x83 + 0.0001*m.x102*m.x84 + 0.0001*m.x102*m.x85 + 0.0001*m.x102*m.x86 + 0.0001*m.x102*m.x87 +
0.0001*m.x102*m.x88 + 0.0001*m.x102*m.x89 + 0.0001*m.x102*m.x90 + 0.0001*m.x102*m.x91 + 0.0001*
m.x102*m.x92 + 0.0001*m.x102*m.x93 + 0.0001*m.x102*m.x94 + 0.0001*m.x102*m.x95 + 0.0001*m.x102*
m.x96 + 0.0001*m.x102*m.x97 + 0.0001*m.x102*m.x98 + 0.0001*m.x102*m.x99 + 0.0001*m.x102*m.x100 +
0.0001*m.x102*m.x101 + 8.41588452763475*m.x102**2 + 0.0001*m.x102*m.x103 + 0.0001*m.x102*m.x104
+ 0.0001*m.x102*m.x105 + 0.0001*m.x102*m.x106 + 0.0001*m.x102*m.x107 + 0.0001*m.x102*m.x108 +
0.0001*m.x102*m.x109 + 0.0001*m.x102*m.x110 + 0.0001*m.x102*m.x111 + 0.0001*m.x102*m.x112 +
0.0001*m.x102*m.x113 + 0.0001*m.x102*m.x114 + 0.0001*m.x102*m.x115 + 0.0001*m.x102*m.x116 +
0.0001*m.x102*m.x117 + 0.0001*m.x102*m.x118 + 0.0001*m.x102*m.x119 + 0.0001*m.x102*m.x120 +
0.0001*m.x102*m.x121 + 0.0001*m.x102*m.x122 + 0.0001*m.x102*m.x123 + 0.0001*m.x102*m.x124 +
0.0001*m.x102*m.x125 + 0.0001*m.x102*m.x126 + 0.0001*m.x102*m.x127 + 0.0001*m.x102*m.x128 +
0.0001*m.x102*m.x129 + 0.0001*m.x102*m.x130 + 0.0001*m.x102*m.x131 + 0.0001*m.x102*m.x132 +
0.0001*m.x102*m.x133 + 0.0001*m.x102*m.x134 + 0.0001*m.x102*m.x135 + 0.0001*m.x102*m.x136 +
0.0001*m.x102*m.x137 + 0.0001*m.x102*m.x138 + 0.0001*m.x102*m.x139 + 1.40558683166425*m.x102*
m.x140 + 0.0001*m.x102*m.x141 + 0.0001*m.x102*m.x142 + 0.0001*m.x102*m.x143 + 0.0001*m.x102*
m.x144 + 0.0001*m.x102*m.x145 + 0.0001*m.x102*m.x146 + 0.0001*m.x102*m.x147 + 0.0001*m.x102*
m.x148 + 0.0001*m.x102*m.x149 + 0.0001*m.x102*m.x150 + 0.0001*m.x102*m.x151 + 0.0001*m.x102*
m.x152 + 0.0001*m.x102*m.x153 + 0.0001*m.x102*m.x154 + 0.0001*m.x102*m.x155 + 0.0001*m.x102*
m.x156 + 0.0001*m.x102*m.x157 + 0.0001*m.x102*m.x158 + 0.0001*m.x102*m.x159 + 0.0001*m.x102*
m.x160 + 0.0001*m.x102*m.x161 + 0.0001*m.x102*m.x162 + 0.0001*m.x102*m.x163 + 0.0001*m.x102*
m.x164 + 0.0001*m.x102*m.x165 + 0.0001*m.x102*m.x166 + 0.0001*m.x102*m.x167 + 0.0001*m.x102*
m.x168 + 0.0001*m.x102*m.x169 + 0.0001*m.x102*m.x170 + 0.0001*m.x102*m.x171 + 0.0001*m.x102*
m.x172 + 0.0001*m.x102*m.x173 + 0.0001*m.x102*m.x174 + 0.0001*m.x102*m.x175 + 0.0001*m.x102*
m.x176 + 0.0001*m.x102*m.x177 + 0.0001*m.x102*m.x178 + 0.0001*m.x102*m.x179 + 0.0001*m.x102*
m.x180 + 0.0001*m.x102*m.x181 + 0.0001*m.x102*m.x182 + 0.0001*m.x102*m.x183 + 0.0001*m.x102*
m.x184 + 0.0001*m.x102*m.x185 + 0.0001*m.x103*m.x1 + 0.0001*m.x103*m.x2 + 0.0001*m.x103*m.x3 +
0.0001*m.x103*m.x4 + 0.0001*m.x103*m.x5 + 0.0001*m.x103*m.x6 + 0.0001*m.x103*m.x7 + 0.0001*m.x103
*m.x8 + 0.0001*m.x103*m.x9 + 0.0001*m.x103*m.x10 + 0.0001*m.x103*m.x11 + 0.0001*m.x103*m.x12 +
0.0001*m.x103*m.x13 + 0.0001*m.x103*m.x14 + 0.0001*m.x103*m.x15 + 0.0001*m.x103*m.x16 + 0.0001*
m.x103*m.x17 + 0.0001*m.x103*m.x18 + 0.0001*m.x103*m.x19 + 0.0001*m.x103*m.x20 + 0.0001*m.x103*
m.x21 + 0.0001*m.x103*m.x22 + 0.0001*m.x103*m.x23 + 0.0001*m.x103*m.x24 + 0.0001*m.x103*m.x25 +
0.0001*m.x103*m.x26 + 0.0001*m.x103*m.x27 + 0.0001*m.x103*m.x28 + 0.0001*m.x103*m.x29 + 0.0001*
m.x103*m.x30 + 0.0001*m.x103*m.x31 + 0.0001*m.x103*m.x32 + 0.0001*m.x103*m.x33 + 0.0001*m.x103*
m.x34 + 0.650906304971047*m.x103*m.x35 + 0.0001*m.x103*m.x36 + 0.0001*m.x103*m.x37 + 0.0001*
m.x103*m.x38 + 0.0001*m.x103*m.x39 + 0.0001*m.x103*m.x40 + 0.0001*m.x103*m.x41 + 0.0001*m.x103*
m.x42 + 0.0001*m.x103*m.x43 + 0.0001*m.x103*m.x44 + 0.0001*m.x103*m.x45 + 0.0001*m.x103*m.x46 +
0.0001*m.x103*m.x47 + 0.0001*m.x103*m.x48 + 0.0001*m.x103*m.x49 + 0.0001*m.x103*m.x50 + 0.0001*
m.x103*m.x51 + 0.0001*m.x103*m.x52 + 0.0001*m.x103*m.x53 + 0.0001*m.x103*m.x54 + 0.0001*m.x103*
m.x55 + 0.0001*m.x103*m.x56 + 0.0001*m.x103*m.x57 + 0.0001*m.x103*m.x58 + 0.0001*m.x103*m.x59 +
0.0001*m.x103*m.x60 + 0.0001*m.x103*m.x61 + 0.0001*m.x103*m.x62 + 0.0001*m.x103*m.x63 + 0.0001*
m.x103*m.x64 + 0.0001*m.x103*m.x65 + 0.0001*m.x103*m.x66 + 0.0001*m.x103*m.x67 + 0.0001*m.x103*
m.x68 + 0.0001*m.x103*m.x69 + 0.0001*m.x103*m.x70 + 0.0001*m.x103*m.x71 + 0.0001*m.x103*m.x72 +
0.0001*m.x103*m.x73 + 0.0001*m.x103*m.x74 + 0.0001*m.x103*m.x75 + 0.0001*m.x103*m.x76 + 0.0001*
m.x103*m.x77 + 0.0001*m.x103*m.x78 + 0.0001*m.x103*m.x79 + 0.0001*m.x103*m.x80 + 0.0001*m.x103*
m.x81 + 0.0001*m.x103*m.x82 + 0.0001*m.x103*m.x83 + 0.0001*m.x103*m.x84 + 0.0001*m.x103*m.x85 +
0.0001*m.x103*m.x86 + 0.0001*m.x103*m.x87 + 0.0001*m.x103*m.x88 + 0.0001*m.x103*m.x89 + 0.0001*
m.x103*m.x90 + 0.0001*m.x103*m.x91 + 0.0001*m.x103*m.x92 + 0.0001*m.x103*m.x93 + 0.0001*m.x103*
m.x94 + 0.0001*m.x103*m.x95 + 0.0001*m.x103*m.x96 + 0.0001*m.x103*m.x97 + 0.0001*m.x103*m.x98 +
0.0001*m.x103*m.x99 + 0.0001*m.x103*m.x100 + 0.0001*m.x103*m.x101 + 0.0001*m.x103*m.x102 +
8.41588452763475*m.x103**2 + 0.0001*m.x103*m.x104 + 0.0001*m.x103*m.x105 + 0.0001*m.x103*m.x106
+ 0.0001*m.x103*m.x107 + 0.0001*m.x103*m.x108 + 0.0001*m.x103*m.x109 + 0.0001*m.x103*m.x110 +
0.0001*m.x103*m.x111 + 0.0001*m.x103*m.x112 + 0.0001*m.x103*m.x113 + 0.0001*m.x103*m.x114 +
0.0001*m.x103*m.x115 + 0.0001*m.x103*m.x116 + 0.0001*m.x103*m.x117 + 0.0001*m.x103*m.x118 +
0.0001*m.x103*m.x119 + 0.0001*m.x103*m.x120 + 0.0001*m.x103*m.x121 + 0.0001*m.x103*m.x122 +
0.0001*m.x103*m.x123 + 0.0001*m.x103*m.x124 + 0.0001*m.x103*m.x125 + 0.0001*m.x103*m.x126 +
0.0001*m.x103*m.x127 + 0.0001*m.x103*m.x128 + 0.0001*m.x103*m.x129 + 0.0001*m.x103*m.x130 +
0.0001*m.x103*m.x131 + 0.0001*m.x103*m.x132 + 0.0001*m.x103*m.x133 + 0.0001*m.x103*m.x134 +
0.0001*m.x103*m.x135 + 0.0001*m.x103*m.x136 + 0.0001*m.x103*m.x137 + 0.0001*m.x103*m.x138 +
0.0001*m.x103*m.x139 + 0.0001*m.x103*m.x140 + 1.40166389008506*m.x103*m.x141 + 0.0001*m.x103*
m.x142 + 0.0001*m.x103*m.x143 + 0.0001*m.x103*m.x144 + 0.0001*m.x103*m.x145 + 0.0001*m.x103*
m.x146 + 0.0001*m.x103*m.x147 + 0.0001*m.x103*m.x148 + 0.0001*m.x103*m.x149 + 0.0001*m.x103*
m.x150 + 0.0001*m.x103*m.x151 + 0.0001*m.x103*m.x152 + 0.0001*m.x103*m.x153 + 0.0001*m.x103*
m.x154 + 0.0001*m.x103*m.x155 + 0.0001*m.x103*m.x156 + 0.0001*m.x103*m.x157 + 0.0001*m.x103*
m.x158 + 0.0001*m.x103*m.x159 + 0.0001*m.x103*m.x160 + 0.0001*m.x103*m.x161 + 0.0001*m.x103*
m.x162 + 0.0001*m.x103*m.x163 + 0.0001*m.x103*m.x164 + 0.0001*m.x103*m.x165 + 0.0001*m.x103*
m.x166 + 0.0001*m.x103*m.x167 + 0.0001*m.x103*m.x168 + 0.0001*m.x103*m.x169 + 0.0001*m.x103*
m.x170 + 0.0001*m.x103*m.x171 + 0.0001*m.x103*m.x172 + 0.0001*m.x103*m.x173 + 0.0001*m.x103*
m.x174 + 0.0001*m.x103*m.x175 + 0.0001*m.x103*m.x176 + 0.0001*m.x103*m.x177 + 0.0001*m.x103*
m.x178 + 0.0001*m.x103*m.x179 + 0.0001*m.x103*m.x180 + 0.0001*m.x103*m.x181 + 0.0001*m.x103*
m.x182 + 0.0001*m.x103*m.x183 + 0.0001*m.x103*m.x184 + 0.0001*m.x103*m.x185 + 0.0001*m.x104*m.x1
+ 0.0001*m.x104*m.x2 + 0.0001*m.x104*m.x3 + 0.0001*m.x104*m.x4 + 0.0001*m.x104*m.x5 + 0.0001*
m.x104*m.x6 + 0.0001*m.x104*m.x7 + 0.0001*m.x104*m.x8 + 0.0001*m.x104*m.x9 + 0.0001*m.x104*m.x10
+ 0.0001*m.x104*m.x11 + 0.0001*m.x104*m.x12 + 0.0001*m.x104*m.x13 + 0.0001*m.x104*m.x14 + 0.0001
*m.x104*m.x15 + 0.0001*m.x104*m.x16 + 0.0001*m.x104*m.x17 + 0.0001*m.x104*m.x18 + 0.0001*m.x104*
m.x19 + 0.0001*m.x104*m.x20 + 0.0001*m.x104*m.x21 + 0.0001*m.x104*m.x22 + 0.0001*m.x104*m.x23 +
0.0001*m.x104*m.x24 + 0.0001*m.x104*m.x25 + 0.0001*m.x104*m.x26 + 0.0001*m.x104*m.x27 + 0.0001*
m.x104*m.x28 + 0.0001*m.x104*m.x29 + 0.0001*m.x104*m.x30 + 0.0001*m.x104*m.x31 + 0.0001*m.x104*
m.x32 + 0.0001*m.x104*m.x33 + 0.0001*m.x104*m.x34 + 0.0001*m.x104*m.x35 + 0.0001*m.x104*m.x36 +
0.0001*m.x104*m.x37 + 0.0001*m.x104*m.x38 + 0.0001*m.x104*m.x39 + 0.0001*m.x104*m.x40 + 0.0001*
m.x104*m.x41 + 0.0001*m.x104*m.x42 + 0.0001*m.x104*m.x43 + 0.0001*m.x104*m.x44 + 0.0001*m.x104*
m.x45 + 0.0001*m.x104*m.x46 + 0.0001*m.x104*m.x47 + 0.0001*m.x104*m.x48 + 0.0001*m.x104*m.x49 +
0.0001*m.x104*m.x50 + 0.0001*m.x104*m.x51 + 0.0001*m.x104*m.x52 + 0.0001*m.x104*m.x53 + 0.0001*
m.x104*m.x54 + 0.0001*m.x104*m.x55 + 0.0001*m.x104*m.x56 + 0.0001*m.x104*m.x57 + 0.0001*m.x104*
m.x58 + 0.0001*m.x104*m.x59 + 0.0001*m.x104*m.x60 + 0.0001*m.x104*m.x61 + 0.0001*m.x104*m.x62 +
0.0001*m.x104*m.x63 + 0.0001*m.x104*m.x64 + 0.0001*m.x104*m.x65 + 0.0001*m.x104*m.x66 + 0.0001*
m.x104*m.x67 + 0.0001*m.x104*m.x68 + 0.0001*m.x104*m.x69 + 0.0001*m.x104*m.x70 + 0.0001*m.x104*
m.x71 + 0.0001*m.x104*m.x72 + 0.0001*m.x104*m.x73 + 0.0001*m.x104*m.x74 + 0.0001*m.x104*m.x75 +
0.0001*m.x104*m.x76 + 0.0001*m.x104*m.x77 + 0.0001*m.x104*m.x78 + 0.0001*m.x104*m.x79 + 0.0001*
m.x104*m.x80 + 0.0001*m.x104*m.x81 + 0.0001*m.x104*m.x82 + 0.0001*m.x104*m.x83 + 0.0001*m.x104*
m.x84 + 0.0001*m.x104*m.x85 + 0.0001*m.x104*m.x86 + 0.0001*m.x104*m.x87 + 0.0001*m.x104*m.x88 +
0.0001*m.x104*m.x89 + 0.0001*m.x104*m.x90 + 0.0001*m.x104*m.x91 + 0.0001*m.x104*m.x92 + 0.0001*
m.x104*m.x93 + 0.0001*m.x104*m.x94 + 0.0001*m.x104*m.x95 + 0.0001*m.x104*m.x96 + 0.0001*m.x104*
m.x97 + 0.0001*m.x104*m.x98 + 0.0001*m.x104*m.x99 + 0.0001*m.x104*m.x100 + 0.0001*m.x104*m.x101
+ 0.0001*m.x104*m.x102 + 0.0001*m.x104*m.x103 + 1.84239151247655*m.x104**2 + 0.0001*m.x104*
m.x105 + 0.0001*m.x104*m.x106 + 0.0001*m.x104*m.x107 + 0.0001*m.x104*m.x108 + 0.0001*m.x104*
m.x109 + 0.0001*m.x104*m.x110 + 0.0001*m.x104*m.x111 + 0.0001*m.x104*m.x112 + 0.0001*m.x104*
m.x113 + 0.0001*m.x104*m.x114 + 0.0001*m.x104*m.x115 + 0.0001*m.x104*m.x116 + 0.0001*m.x104*
m.x117 + 0.0001*m.x104*m.x118 + 0.0001*m.x104*m.x119 + 0.0001*m.x104*m.x120 + 0.0001*m.x104*
m.x121 + 0.0001*m.x104*m.x122 + 0.0001*m.x104*m.x123 + 0.0001*m.x104*m.x124 + 0.0001*m.x104*
m.x125 + 0.0001*m.x104*m.x126 + 0.0001*m.x104*m.x127 + 0.0001*m.x104*m.x128 + 0.0001*m.x104*
m.x129 + 0.0001*m.x104*m.x130 + 0.0001*m.x104*m.x131 + 0.0001*m.x104*m.x132 + 0.0001*m.x104*
m.x133 + 0.0001*m.x104*m.x134 + 0.0001*m.x104*m.x135 + 0.0001*m.x104*m.x136 + 0.0001*m.x104*
m.x137 + 0.0001*m.x104*m.x138 + 0.0001*m.x104*m.x139 + 0.0001*m.x104*m.x140 + 0.0001*m.x104*
m.x141 + 0.0001*m.x104*m.x142 + 0.0001*m.x104*m.x143 + 0.0001*m.x104*m.x144 + 0.0001*m.x104*
m.x145 + 0.0001*m.x104*m.x146 + 0.0001*m.x104*m.x147 + 0.0001*m.x104*m.x148 + 0.0001*m.x104*
m.x149 + 0.0001*m.x104*m.x150 + 0.0001*m.x104*m.x151 + 0.0001*m.x104*m.x152 + 0.0001*m.x104*
m.x153 + 0.0001*m.x104*m.x154 + 0.0001*m.x104*m.x155 + 0.0001*m.x104*m.x156 + 0.0001*m.x104*
m.x157 + 0.0001*m.x104*m.x158 + 0.0001*m.x104*m.x159 + 0.0001*m.x104*m.x160 + 0.0001*m.x104*
m.x161 + 0.0001*m.x104*m.x162 + 0.0001*m.x104*m.x163 + 0.0001*m.x104*m.x164 + 0.0001*m.x104*
m.x165 + 0.0001*m.x104*m.x166 + 0.0001*m.x104*m.x167 + 0.0001*m.x104*m.x168 + 0.0001*m.x104*
m.x169 + 0.0001*m.x104*m.x170 + 2.06289850672701*m.x104*m.x171 + 0.0001*m.x104*m.x172 + 0.0001*
m.x104*m.x173 + 0.0001*m.x104*m.x174 + 0.0001*m.x104*m.x175 + 0.0001*m.x104*m.x176 + 0.0001*
m.x104*m.x177 + 0.0001*m.x104*m.x178 + 0.0001*m.x104*m.x179 + 0.0001*m.x104*m.x180 + 0.0001*
m.x104*m.x181 + 0.0001*m.x104*m.x182 + 0.0001*m.x104*m.x183 + 0.0001*m.x104*m.x184 + 0.0001*
m.x104*m.x185 + 0.0001*m.x105*m.x1 + 0.0001*m.x105*m.x2 + 0.0001*m.x105*m.x3 + 0.0001*m.x105*m.x4
+ 0.0001*m.x105*m.x5 + 0.0001*m.x105*m.x6 + 0.0001*m.x105*m.x7 + 0.0001*m.x105*m.x8 + 0.0001*
m.x105*m.x9 + 0.0001*m.x105*m.x10 + 0.0001*m.x105*m.x11 + 0.0001*m.x105*m.x12 + 0.0001*m.x105*
m.x13 + 0.0001*m.x105*m.x14 + 0.0001*m.x105*m.x15 + 0.0001*m.x105*m.x16 + 0.0001*m.x105*m.x17 +
0.0001*m.x105*m.x18 + 0.0001*m.x105*m.x19 + 0.0001*m.x105*m.x20 + 0.0001*m.x105*m.x21 + 0.0001*
m.x105*m.x22 + 0.0001*m.x105*m.x23 + 0.0001*m.x105*m.x24 + 0.0001*m.x105*m.x25 + 0.0001*m.x105*
m.x26 + 0.0001*m.x105*m.x27 + 0.0001*m.x105*m.x28 + 0.0001*m.x105*m.x29 + 0.0001*m.x105*m.x30 +
0.0001*m.x105*m.x31 + 0.0001*m.x105*m.x32 + 0.0001*m.x105*m.x33 + 0.0001*m.x105*m.x34 + 0.0001*
m.x105*m.x35 + 0.0001*m.x105*m.x36 + 0.0001*m.x105*m.x37 + 0.0001*m.x105*m.x38 + 0.0001*m.x105*
m.x39 + 0.0001*m.x105*m.x40 + 0.0001*m.x105*m.x41 + 0.0001*m.x105*m.x42 + 0.0001*m.x105*m.x43 +
0.0001*m.x105*m.x44 + 0.0001*m.x105*m.x45 + 0.0001*m.x105*m.x46 + 0.0001*m.x105*m.x47 + 0.0001*
m.x105*m.x48 + 0.0001*m.x105*m.x49 + 0.0001*m.x105*m.x50 + 0.0001*m.x105*m.x51 + 0.0001*m.x105*
m.x52 + 0.0001*m.x105*m.x53 + 0.0001*m.x105*m.x54 + 0.0001*m.x105*m.x55 + 0.0001*m.x105*m.x56 +
0.0001*m.x105*m.x57 + 0.0001*m.x105*m.x58 + 0.0001*m.x105*m.x59 + 0.0001*m.x105*m.x60 + 0.0001*
m.x105*m.x61 + 0.0001*m.x105*m.x62 + 0.0001*m.x105*m.x63 + 0.0001*m.x105*m.x64 + 0.0001*m.x105*
m.x65 + 0.0001*m.x105*m.x66 + 0.0001*m.x105*m.x67 + 0.0001*m.x105*m.x68 + 0.0001*m.x105*m.x69 +
0.0001*m.x105*m.x70 + 0.0001*m.x105*m.x71 + 0.0001*m.x105*m.x72 + 0.0001*m.x105*m.x73 + 0.0001*
m.x105*m.x74 + 0.0001*m.x105*m.x75 + 0.0001*m.x105*m.x76 + 0.0001*m.x105*m.x77 + 0.0001*m.x105*
m.x78 + 0.0001*m.x105*m.x79 + 0.0001*m.x105*m.x80 + 0.0001*m.x105*m.x81 + 0.0001*m.x105*m.x82 +
0.0001*m.x105*m.x83 + 0.0001*m.x105*m.x84 + 0.0001*m.x105*m.x85 + 0.0001*m.x105*m.x86 + 0.0001*
m.x105*m.x87 + 0.0001*m.x105*m.x88 + 0.0001*m.x105*m.x89 + 0.0001*m.x105*m.x90 + 0.0001*m.x105*
m.x91 + 0.0001*m.x105*m.x92 + 0.0001*m.x105*m.x93 + 0.0001*m.x105*m.x94 + 0.0001*m.x105*m.x95 +
0.0001*m.x105*m.x96 + 0.0001*m.x105*m.x97 + 0.0001*m.x105*m.x98 + 0.0001*m.x105*m.x99 + 0.0001*
m.x105*m.x100 + 0.0001*m.x105*m.x101 + 0.0001*m.x105*m.x102 + 0.0001*m.x105*m.x103 + 0.0001*
m.x105*m.x104 + 3.42393103897823*m.x105**2 + 0.0001*m.x105*m.x106 + 0.0001*m.x105*m.x107 + 0.0001
*m.x105*m.x108 + 0.0001*m.x105*m.x109 + 0.0001*m.x105*m.x110 + 0.0001*m.x105*m.x111 + 0.0001*
m.x105*m.x112 + 0.0001*m.x105*m.x113 + 0.0001*m.x105*m.x114 + 0.0001*m.x105*m.x115 + 0.0001*
m.x105*m.x116 + 0.0001*m.x105*m.x117 + 0.0001*m.x105*m.x118 + 0.0001*m.x105*m.x119 + 0.0001*
m.x105*m.x120 + 0.0001*m.x105*m.x121 + 0.0001*m.x105*m.x122 + 0.0001*m.x105*m.x123 + 0.0001*
m.x105*m.x124 + 0.0001*m.x105*m.x125 + 0.0001*m.x105*m.x126 + 0.0001*m.x105*m.x127 + 0.0001*
m.x105*m.x128 + 0.0001*m.x105*m.x129 + 0.0001*m.x105*m.x130 + 0.0001*m.x105*m.x131 + 0.0001*
m.x105*m.x132 + 0.0001*m.x105*m.x133 + 0.0001*m.x105*m.x134 + 0.0001*m.x105*m.x135 + 0.0001*
m.x105*m.x136 + 0.0001*m.x105*m.x137 + 0.0001*m.x105*m.x138 + 0.0001*m.x105*m.x139 + 0.0001*
m.x105*m.x140 + 0.0001*m.x105*m.x141 + 0.0001*m.x105*m.x142 + 0.0001*m.x105*m.x143 + 0.0001*
m.x105*m.x144 + 0.0001*m.x105*m.x145 + 0.0001*m.x105*m.x146 + 0.0001*m.x105*m.x147 + 0.0001*
m.x105*m.x148 + 0.0001*m.x105*m.x149 + 0.0001*m.x105*m.x150 + 0.0001*m.x105*m.x151 + 0.0001*
m.x105*m.x152 + 0.0001*m.x105*m.x153 + 0.0001*m.x105*m.x154 + 0.0001*m.x105*m.x155 + 0.0001*
m.x105*m.x156 + 0.0001*m.x105*m.x157 + 0.0001*m.x105*m.x158 + 0.0001*m.x105*m.x159 + 0.0001*
m.x105*m.x160 + 0.0001*m.x105*m.x161 + 0.0001*m.x105*m.x162 + 0.0001*m.x105*m.x163 + 0.0001*
m.x105*m.x164 + 0.0001*m.x105*m.x165 + 0.0001*m.x105*m.x166 + 0.0001*m.x105*m.x167 + 0.0001*
m.x105*m.x168 + 0.0001*m.x105*m.x169 + 0.0001*m.x105*m.x170 + 0.0001*m.x105*m.x171 +
1.99237583036916*m.x105*m.x172 + 1.97716255370005*m.x105*m.x173 + 0.0001*m.x105*m.x174 + 0.0001*
m.x105*m.x175 + 0.0001*m.x105*m.x176 + 0.0001*m.x105*m.x177 + 0.0001*m.x105*m.x178 + 0.0001*
m.x105*m.x179 + 0.0001*m.x105*m.x180 + 0.0001*m.x105*m.x181 + 0.0001*m.x105*m.x182 + 0.0001*
m.x105*m.x183 + 0.0001*m.x105*m.x184 + 0.0001*m.x105*m.x185 + 0.0001*m.x106*m.x1 + 0.0001*m.x106*
m.x2 + 0.0001*m.x106*m.x3 + 0.0001*m.x106*m.x4 + 0.0001*m.x106*m.x5 + 0.0001*m.x106*m.x6 + 0.0001
*m.x106*m.x7 + 0.0001*m.x106*m.x8 + 0.0001*m.x106*m.x9 + 0.0001*m.x106*m.x10 + 0.0001*m.x106*
m.x11 + 0.0001*m.x106*m.x12 + 0.0001*m.x106*m.x13 + 0.0001*m.x106*m.x14 + 0.0001*m.x106*m.x15 +
0.0001*m.x106*m.x16 + 0.0001*m.x106*m.x17 + 0.0001*m.x106*m.x18 + 0.0001*m.x106*m.x19 + 0.0001*
m.x106*m.x20 + 0.0001*m.x106*m.x21 + 0.0001*m.x106*m.x22 + 0.0001*m.x106*m.x23 + 0.0001*m.x106*
m.x24 + 0.0001*m.x106*m.x25 + 0.0001*m.x106*m.x26 + 0.0001*m.x106*m.x27 + 0.0001*m.x106*m.x28 +
0.0001*m.x106*m.x29 + 0.0001*m.x106*m.x30 + 0.0001*m.x106*m.x31 + 0.0001*m.x106*m.x32 + 0.0001*
m.x106*m.x33 + 0.0001*m.x106*m.x34 + 0.0001*m.x106*m.x35 + 0.0001*m.x106*m.x36 + 0.0001*m.x106*
m.x37 + 0.0001*m.x106*m.x38 + 0.0001*m.x106*m.x39 + 0.0001*m.x106*m.x40 + 0.0001*m.x106*m.x41 +
0.0001*m.x106*m.x42 + 0.0001*m.x106*m.x43 + 0.0001*m.x106*m.x44 + 0.0001*m.x106*m.x45 + 0.0001*
m.x106*m.x46 + 0.0001*m.x106*m.x47 + 0.0001*m.x106*m.x48 + 0.0001*m.x106*m.x49 + 0.0001*m.x106*
m.x50 + 0.0001*m.x106*m.x51 + 0.0001*m.x106*m.x52 + 0.0001*m.x106*m.x53 + 0.0001*m.x106*m.x54 +
0.0001*m.x106*m.x55 + 0.0001*m.x106*m.x56 + 0.0001*m.x106*m.x57 + 0.0001*m.x106*m.x58 + 0.0001*
m.x106*m.x59 + 0.0001*m.x106*m.x60 + 0.0001*m.x106*m.x61 + 0.0001*m.x106*m.x62 + 0.0001*m.x106*
m.x63 + 0.0001*m.x106*m.x64 + 0.0001*m.x106*m.x65 + 0.0001*m.x106*m.x66 + 0.0001*m.x106*m.x67 +
0.0001*m.x106*m.x68 + 0.0001*m.x106*m.x69 + 0.0001*m.x106*m.x70 + 0.0001*m.x106*m.x71 + 0.0001*
m.x106*m.x72 + 0.0001*m.x106*m.x73 + 0.0001*m.x106*m.x74 + 0.0001*m.x106*m.x75 + 0.0001*m.x106*
m.x76 + 0.0001*m.x106*m.x77 + 0.0001*m.x106*m.x78 + 0.0001*m.x106*m.x79 + 0.0001*m.x106*m.x80 +
0.0001*m.x106*m.x81 + 0.0001*m.x106*m.x82 + 0.0001*m.x106*m.x83 + 0.0001*m.x106*m.x84 + 0.0001*
m.x106*m.x85 + 0.0001*m.x106*m.x86 + 0.0001*m.x106*m.x87 + 0.0001*m.x106*m.x88 + 0.0001*m.x106*
m.x89 + 0.0001*m.x106*m.x90 + 0.0001*m.x106*m.x91 + 0.0001*m.x106*m.x92 + 0.0001*m.x106*m.x93 +
0.0001*m.x106*m.x94 + 0.0001*m.x106*m.x95 + 0.0001*m.x106*m.x96 + 0.0001*m.x106*m.x97 + 0.0001*
m.x106*m.x98 + 0.0001*m.x106*m.x99 + 0.0001*m.x106*m.x100 + 0.0001*m.x106*m.x101 + 0.0001*m.x106*
m.x102 + 0.0001*m.x106*m.x103 + 0.0001*m.x106*m.x104 + 0.0001*m.x106*m.x105 + 1.84203873829038*
m.x106**2 + 0.0001*m.x106*m.x107 + 0.0001*m.x106*m.x108 + 0.0001*m.x106*m.x109 + 0.0001*m.x106*
m.x110 + 0.0001*m.x106*m.x111 + 0.0001*m.x106*m.x112 + 0.0001*m.x106*m.x113 + 0.0001*m.x106*
m.x114 + 0.0001*m.x106*m.x115 + 0.0001*m.x106*m.x116 + 0.0001*m.x106*m.x117 + 0.0001*m.x106*
m.x118 + 0.0001*m.x106*m.x119 + 0.0001*m.x106*m.x120 + 0.0001*m.x106*m.x121 + 0.0001*m.x106*
m.x122 + 0.0001*m.x106*m.x123 + 0.0001*m.x106*m.x124 + 0.0001*m.x106*m.x125 + 0.0001*m.x106*
m.x126 + 0.0001*m.x106*m.x127 + 0.0001*m.x106*m.x128 + 0.0001*m.x106*m.x129 + 0.0001*m.x106*
m.x130 + 0.0001*m.x106*m.x131 + 0.0001*m.x106*m.x132 + 0.0001*m.x106*m.x133 + 0.0001*m.x106*
m.x134 + 0.0001*m.x106*m.x135 + 0.0001*m.x106*m.x136 + 0.0001*m.x106*m.x137 + 0.0001*m.x106*
m.x138 + 0.0001*m.x106*m.x139 + 0.0001*m.x106*m.x140 + 0.0001*m.x106*m.x141 + 0.0001*m.x106*
m.x142 + 0.0001*m.x106*m.x143 + 0.0001*m.x106*m.x144 + 0.0001*m.x106*m.x145 + 0.0001*m.x106*
m.x146 + 0.0001*m.x106*m.x147 + 0.0001*m.x106*m.x148 + 0.0001*m.x106*m.x149 + 0.0001*m.x106*
m.x150 + 0.0001*m.x106*m.x151 + 0.0001*m.x106*m.x152 + 0.0001*m.x106*m.x153 + 0.0001*m.x106*
m.x154 + 0.0001*m.x106*m.x155 + 0.0001*m.x106*m.x156 + 0.0001*m.x106*m.x157 + 0.0001*m.x106*
m.x158 + 0.0001*m.x106*m.x159 + 0.0001*m.x106*m.x160 + 0.0001*m.x106*m.x161 + 0.0001*m.x106*
m.x162 + 0.0001*m.x106*m.x163 + 0.0001*m.x106*m.x164 + 0.0001*m.x106*m.x165 + 0.0001*m.x106*
m.x166 + 0.0001*m.x106*m.x167 + 0.0001*m.x106*m.x168 + 0.0001*m.x106*m.x169 + 0.0001*m.x106*
m.x170 + 0.0001*m.x106*m.x171 + 0.0001*m.x106*m.x172 + 0.0001*m.x106*m.x173 + 2.18408636387853*
m.x106*m.x174 + 0.0001*m.x106*m.x175 + 0.0001*m.x106*m.x176 + 0.0001*m.x106*m.x177 + 0.0001*
m.x106*m.x178 + 0.0001*m.x106*m.x179 + 0.0001*m.x106*m.x180 + 0.0001*m.x106*m.x181 + 0.0001*
m.x106*m.x182 + 0.0001*m.x106*m.x183 + 0.0001*m.x106*m.x184 + 0.0001*m.x106*m.x185 + 0.0001*
m.x107*m.x1 + 0.0001*m.x107*m.x2 + 0.0001*m.x107*m.x3 + 0.0001*m.x107*m.x4 + 0.0001*m.x107*m.x5
+ 0.0001*m.x107*m.x6 + 0.0001*m.x107*m.x7 + 0.0001*m.x107*m.x8 + 0.0001*m.x107*m.x9 + 0.0001*
m.x107*m.x10 + 0.0001*m.x107*m.x11 + 0.0001*m.x107*m.x12 + 0.0001*m.x107*m.x13 + 0.0001*m.x107*
m.x14 + 0.0001*m.x107*m.x15 + 0.0001*m.x107*m.x16 + 0.0001*m.x107*m.x17 + 0.0001*m.x107*m.x18 +
0.0001*m.x107*m.x19 + 0.0001*m.x107*m.x20 + 0.0001*m.x107*m.x21 + 0.0001*m.x107*m.x22 + 0.0001*
m.x107*m.x23 + 0.0001*m.x107*m.x24 + 0.0001*m.x107*m.x25 + 0.0001*m.x107*m.x26 + 0.0001*m.x107*
m.x27 + 0.0001*m.x107*m.x28 + 0.0001*m.x107*m.x29 + 0.0001*m.x107*m.x30 + 0.0001*m.x107*m.x31 +
0.0001*m.x107*m.x32 + 0.0001*m.x107*m.x33 + 0.0001*m.x107*m.x34 + 0.0001*m.x107*m.x35 + 0.0001*
m.x107*m.x36 + 0.0001*m.x107*m.x37 + 0.0001*m.x107*m.x38 + 0.0001*m.x107*m.x39 + 0.0001*m.x107*
m.x40 + 0.0001*m.x107*m.x41 + 0.0001*m.x107*m.x42 + 0.0001*m.x107*m.x43 + 0.0001*m.x107*m.x44 +
0.0001*m.x107*m.x45 + 0.0001*m.x107*m.x46 + 0.0001*m.x107*m.x47 + 0.0001*m.x107*m.x48 + 0.0001*
m.x107*m.x49 + 0.0001*m.x107*m.x50 + 0.0001*m.x107*m.x51 + 0.0001*m.x107*m.x52 + 0.0001*m.x107*
m.x53 + 0.0001*m.x107*m.x54 + 0.0001*m.x107*m.x55 + 0.0001*m.x107*m.x56 + 0.0001*m.x107*m.x57 +
0.0001*m.x107*m.x58 + 0.0001*m.x107*m.x59 + 0.0001*m.x107*m.x60 + 0.0001*m.x107*m.x61 + 0.0001*
m.x107*m.x62 + 0.0001*m.x107*m.x63 + 0.0001*m.x107*m.x64 + 0.0001*m.x107*m.x65 + 0.0001*m.x107*
m.x66 + 0.0001*m.x107*m.x67 + 0.0001*m.x107*m.x68 + 0.0001*m.x107*m.x69 + 0.0001*m.x107*m.x70 +
0.0001*m.x107*m.x71 + 0.0001*m.x107*m.x72 + 0.0001*m.x107*m.x73 + 0.0001*m.x107*m.x74 + 0.0001*
m.x107*m.x75 + 0.0001*m.x107*m.x76 + 0.0001*m.x107*m.x77 + 0.0001*m.x107*m.x78 + 0.0001*m.x107*
m.x79 + 0.0001*m.x107*m.x80 + 0.0001*m.x107*m.x81 + 0.0001*m.x107*m.x82 + 0.0001*m.x107*m.x83 +
0.0001*m.x107*m.x84 + 0.0001*m.x107*m.x85 + 0.0001*m.x107*m.x86 + 0.0001*m.x107*m.x87 + 0.0001*
m.x107*m.x88 + 0.0001*m.x107*m.x89 + 0.0001*m.x107*m.x90 + 0.0001*m.x107*m.x91 + 0.0001*m.x107*
m.x92 + 0.0001*m.x107*m.x93 + 0.0001*m.x107*m.x94 + 0.0001*m.x107*m.x95 + 0.0001*m.x107*m.x96 +
0.0001*m.x107*m.x97 + 0.0001*m.x107*m.x98 + 0.0001*m.x107*m.x99 + 0.0001*m.x107*m.x100 + 0.0001*
m.x107*m.x101 + 0.0001*m.x107*m.x102 + 0.0001*m.x107*m.x103 + 0.0001*m.x107*m.x104 + 0.0001*
m.x107*m.x105 + 0.0001*m.x107*m.x106 + 1.67424277422796*m.x107**2 + 0.0001*m.x107*m.x108 + 0.0001
*m.x107*m.x109 + 0.0001*m.x107*m.x110 + 0.0001*m.x107*m.x111 + 0.0001*m.x107*m.x112 + 0.0001*
m.x107*m.x113 + 0.0001*m.x107*m.x114 + 0.0001*m.x107*m.x115 + 0.0001*m.x107*m.x116 + 0.0001*
m.x107*m.x117 + 0.0001*m.x107*m.x118 + 0.0001*m.x107*m.x119 + 0.0001*m.x107*m.x120 + 0.0001*
m.x107*m.x121 + 0.0001*m.x107*m.x122 + 0.0001*m.x107*m.x123 + 0.0001*m.x107*m.x124 + 0.0001*
m.x107*m.x125 + 0.0001*m.x107*m.x126 + 0.0001*m.x107*m.x127 + 0.0001*m.x107*m.x128 + 0.0001*
m.x107*m.x129 + 0.0001*m.x107*m.x130 + 0.0001*m.x107*m.x131 + 0.0001*m.x107*m.x132 + 0.0001*
m.x107*m.x133 + 0.0001*m.x107*m.x134 + 0.0001*m.x107*m.x135 + 0.0001*m.x107*m.x136 + 0.0001*
m.x107*m.x137 + 0.0001*m.x107*m.x138 + 0.0001*m.x107*m.x139 + 0.0001*m.x107*m.x140 + 0.0001*
m.x107*m.x141 + 0.0001*m.x107*m.x142 + 0.0001*m.x107*m.x143 + 0.0001*m.x107*m.x144 + 0.0001*
m.x107*m.x145 + 0.0001*m.x107*m.x146 + 0.0001*m.x107*m.x147 + 0.0001*m.x107*m.x148 + 0.0001*
m.x107*m.x149 + 0.0001*m.x107*m.x150 + 0.0001*m.x107*m.x151 + 0.0001*m.x107*m.x152 + 0.0001*
m.x107*m.x153 + 0.0001*m.x107*m.x154 + 0.0001*m.x107*m.x155 + 0.0001*m.x107*m.x156 + 0.0001*
m.x107*m.x157 + 0.0001*m.x107*m.x158 + 0.0001*m.x107*m.x159 + 0.0001*m.x107*m.x160 + 0.0001*
m.x107*m.x161 + 0.0001*m.x107*m.x162 + 0.0001*m.x107*m.x163 + 0.0001*m.x107*m.x164 + 0.0001*
m.x107*m.x165 + 0.0001*m.x107*m.x166 + 0.0001*m.x107*m.x167 + 0.0001*m.x107*m.x168 + 0.0001*
m.x107*m.x169 + 0.0001*m.x107*m.x170 + 0.0001*m.x107*m.x171 + 0.0001*m.x107*m.x172 + 0.0001*
m.x107*m.x173 + 0.0001*m.x107*m.x174 + 1.98513072555675*m.x107*m.x175 + 0.0001*m.x107*m.x176 +
0.0001*m.x107*m.x177 + 0.0001*m.x107*m.x178 + 0.0001*m.x107*m.x179 + 0.0001*m.x107*m.x180 +
0.0001*m.x107*m.x181 + 0.0001*m.x107*m.x182 + 0.0001*m.x107*m.x183 + 0.0001*m.x107*m.x184 +
0.0001*m.x107*m.x185 + 0.0001*m.x108*m.x1 + 0.0001*m.x108*m.x2 + 0.0001*m.x108*m.x3 + 0.0001*
m.x108*m.x4 + 0.0001*m.x108*m.x5 + 0.0001*m.x108*m.x6 + 0.0001*m.x108*m.x7 + 0.0001*m.x108*m.x8
+ 0.0001*m.x108*m.x9 + 0.0001*m.x108*m.x10 + 0.0001*m.x108*m.x11 + 0.0001*m.x108*m.x12 + 0.0001*
m.x108*m.x13 + 0.0001*m.x108*m.x14 + 0.0001*m.x108*m.x15 + 0.0001*m.x108*m.x16 + 0.0001*m.x108*
m.x17 + 0.0001*m.x108*m.x18 + 0.0001*m.x108*m.x19 + 0.0001*m.x108*m.x20 + 0.0001*m.x108*m.x21 +
0.0001*m.x108*m.x22 + 0.0001*m.x108*m.x23 + 0.0001*m.x108*m.x24 + 0.0001*m.x108*m.x25 + 0.0001*
m.x108*m.x26 + 0.0001*m.x108*m.x27 + 0.0001*m.x108*m.x28 + 0.0001*m.x108*m.x29 + 0.0001*m.x108*
m.x30 + 0.0001*m.x108*m.x31 + 0.0001*m.x108*m.x32 + 0.0001*m.x108*m.x33 + 0.0001*m.x108*m.x34 +
0.0001*m.x108*m.x35 + 0.0001*m.x108*m.x36 + 0.0001*m.x108*m.x37 + 0.0001*m.x108*m.x38 + 0.0001*
m.x108*m.x39 + 0.0001*m.x108*m.x40 + 0.0001*m.x108*m.x41 + 0.0001*m.x108*m.x42 + 0.0001*m.x108*
m.x43 + 0.0001*m.x108*m.x44 + 0.0001*m.x108*m.x45 + 0.0001*m.x108*m.x46 + 0.0001*m.x108*m.x47 +
0.0001*m.x108*m.x48 + 0.0001*m.x108*m.x49 + 0.0001*m.x108*m.x50 + 0.0001*m.x108*m.x51 + 0.0001*
m.x108*m.x52 + 0.0001*m.x108*m.x53 + 0.0001*m.x108*m.x54 + 0.0001*m.x108*m.x55 + 0.0001*m.x108*
m.x56 + 0.0001*m.x108*m.x57 + 0.0001*m.x108*m.x58 + 0.0001*m.x108*m.x59 + 0.0001*m.x108*m.x60 +
0.0001*m.x108*m.x61 + 0.0001*m.x108*m.x62 + 0.0001*m.x108*m.x63 + 0.0001*m.x108*m.x64 + 0.0001*
m.x108*m.x65 + 0.0001*m.x108*m.x66 + 0.0001*m.x108*m.x67 + 0.0001*m.x108*m.x68 + 0.0001*m.x108*
m.x69 + 0.0001*m.x108*m.x70 + 0.0001*m.x108*m.x71 + 0.0001*m.x108*m.x72 + 0.0001*m.x108*m.x73 +
0.0001*m.x108*m.x74 + 0.0001*m.x108*m.x75 + 0.0001*m.x108*m.x76 + 0.0001*m.x108*m.x77 + 0.0001*
m.x108*m.x78 + 0.0001*m.x108*m.x79 + 0.0001*m.x108*m.x80 + 0.0001*m.x108*m.x81 + 0.0001*m.x108*
m.x82 + 0.0001*m.x108*m.x83 + 0.0001*m.x108*m.x84 + 0.0001*m.x108*m.x85 + 0.0001*m.x108*m.x86 +
0.0001*m.x108*m.x87 + 0.0001*m.x108*m.x88 + 0.0001*m.x108*m.x89 + 0.0001*m.x108*m.x90 + 0.0001*
m.x108*m.x91 + 0.0001*m.x108*m.x92 + 0.0001*m.x108*m.x93 + 0.0001*m.x108*m.x94 + 0.0001*m.x108*
m.x95 + 0.0001*m.x108*m.x96 + 0.0001*m.x108*m.x97 + 0.0001*m.x108*m.x98 + 0.0001*m.x108*m.x99 +
0.0001*m.x108*m.x100 + 0.0001*m.x108*m.x101 + 0.0001*m.x108*m.x102 + 0.0001*m.x108*m.x103 +
0.0001*m.x108*m.x104 + 0.0001*m.x108*m.x105 + 0.0001*m.x108*m.x106 + 0.0001*m.x108*m.x107 +
1.80870286873953*m.x108**2 + 0.0001*m.x108*m.x109 + 0.0001*m.x108*m.x110 + 0.0001*m.x108*m.x111
+ 0.0001*m.x108*m.x112 + 0.0001*m.x108*m.x113 + 0.0001*m.x108*m.x114 + 0.0001*m.x108*m.x115 +
0.0001*m.x108*m.x116 + 0.0001*m.x108*m.x117 + 0.0001*m.x108*m.x118 + 0.0001*m.x108*m.x119 +
0.0001*m.x108*m.x120 + 0.0001*m.x108*m.x121 + 0.0001*m.x108*m.x122 + 0.0001*m.x108*m.x123 +
0.0001*m.x108*m.x124 + 0.0001*m.x108*m.x125 + 0.0001*m.x108*m.x126 + 0.0001*m.x108*m.x127 +
0.0001*m.x108*m.x128 + 0.0001*m.x108*m.x129 + 0.0001*m.x108*m.x130 + 0.0001*m.x108*m.x131 +
0.0001*m.x108*m.x132 + 0.0001*m.x108*m.x133 + 0.0001*m.x108*m.x134 + 0.0001*m.x108*m.x135 +
0.0001*m.x108*m.x136 + 0.0001*m.x108*m.x137 + 0.0001*m.x108*m.x138 + 0.0001*m.x108*m.x139 +
0.0001*m.x108*m.x140 + 0.0001*m.x108*m.x141 + 0.0001*m.x108*m.x142 + 0.0001*m.x108*m.x143 +
0.0001*m.x108*m.x144 + 0.0001*m.x108*m.x145 + 0.0001*m.x108*m.x146 + 0.0001*m.x108*m.x147 +
0.0001*m.x108*m.x148 + 0.0001*m.x108*m.x149 + 0.0001*m.x108*m.x150 + 0.0001*m.x108*m.x151 +
0.0001*m.x108*m.x152 + 0.0001*m.x108*m.x153 + 0.0001*m.x108*m.x154 + 0.0001*m.x108*m.x155 +
0.0001*m.x108*m.x156 + 0.0001*m.x108*m.x157 + 0.0001*m.x108*m.x158 + 0.0001*m.x108*m.x159 +
0.0001*m.x108*m.x160 + 0.0001*m.x108*m.x161 + 0.0001*m.x108*m.x162 + 0.0001*m.x108*m.x163 +
0.0001*m.x108*m.x164 + 0.0001*m.x108*m.x165 + 0.0001*m.x108*m.x166 + 0.0001*m.x108*m.x167 +
0.0001*m.x108*m.x168 + 0.0001*m.x108*m.x169 + 0.0001*m.x108*m.x170 + 0.0001*m.x108*m.x171 +
0.0001*m.x108*m.x172 + 0.0001*m.x108*m.x173 + 0.0001*m.x108*m.x174 + 0.0001*m.x108*m.x175 +
2.06902936086386*m.x108*m.x176 + 0.0001*m.x108*m.x177 + 0.0001*m.x108*m.x178 + 0.0001*m.x108*
m.x179 + 0.0001*m.x108*m.x180 + 0.0001*m.x108*m.x181 + 0.0001*m.x108*m.x182 + 0.0001*m.x108*
m.x183 + 0.0001*m.x108*m.x184 + 0.0001*m.x108*m.x185 + 0.0001*m.x109*m.x1 + 0.0001*m.x109*m.x2 +
0.0001*m.x109*m.x3 + 0.0001*m.x109*m.x4 + 0.0001*m.x109*m.x5 + 0.0001*m.x109*m.x6 + 0.0001*m.x109
*m.x7 + 0.0001*m.x109*m.x8 + 0.0001*m.x109*m.x9 + 0.0001*m.x109*m.x10 + 0.0001*m.x109*m.x11 +
0.0001*m.x109*m.x12 + 0.0001*m.x109*m.x13 + 0.0001*m.x109*m.x14 + 0.0001*m.x109*m.x15 + 0.0001*
m.x109*m.x16 + 0.0001*m.x109*m.x17 + 0.0001*m.x109*m.x18 + 0.0001*m.x109*m.x19 + 0.0001*m.x109*
m.x20 + 0.0001*m.x109*m.x21 + 0.0001*m.x109*m.x22 + 0.0001*m.x109*m.x23 + 0.0001*m.x109*m.x24 +
0.0001*m.x109*m.x25 + 0.0001*m.x109*m.x26 + 0.0001*m.x109*m.x27 + 0.0001*m.x109*m.x28 + 0.0001*
m.x109*m.x29 + 0.0001*m.x109*m.x30 + 0.0001*m.x109*m.x31 + 0.0001*m.x109*m.x32 + 0.0001*m.x109*
m.x33 + 0.0001*m.x109*m.x34 + 0.0001*m.x109*m.x35 + 0.0001*m.x109*m.x36 + 0.0001*m.x109*m.x37 +
0.0001*m.x109*m.x38 + 0.0001*m.x109*m.x39 + 0.0001*m.x109*m.x40 + 0.0001*m.x109*m.x41 + 0.0001*
m.x109*m.x42 + 0.0001*m.x109*m.x43 + 0.0001*m.x109*m.x44 + 0.0001*m.x109*m.x45 + 0.0001*m.x109*
m.x46 + 0.0001*m.x109*m.x47 + 0.0001*m.x109*m.x48 + 0.0001*m.x109*m.x49 + 0.0001*m.x109*m.x50 +
0.0001*m.x109*m.x51 + 0.0001*m.x109*m.x52 + 0.0001*m.x109*m.x53 + 0.0001*m.x109*m.x54 + 0.0001*
m.x109*m.x55 + 0.0001*m.x109*m.x56 + 0.0001*m.x109*m.x57 + 0.0001*m.x109*m.x58 + 0.0001*m.x109*
m.x59 + 0.0001*m.x109*m.x60 + 0.0001*m.x109*m.x61 + 0.0001*m.x109*m.x62 + 0.0001*m.x109*m.x63 +
0.0001*m.x109*m.x64 + 0.0001*m.x109*m.x65 + 0.0001*m.x109*m.x66 + 0.0001*m.x109*m.x67 + 0.0001*
m.x109*m.x68 + 0.0001*m.x109*m.x69 + 0.0001*m.x109*m.x70 + 0.0001*m.x109*m.x71 + 0.0001*m.x109*
m.x72 + 0.0001*m.x109*m.x73 + 0.0001*m.x109*m.x74 + 0.0001*m.x109*m.x75 + 0.0001*m.x109*m.x76 +
0.0001*m.x109*m.x77 + 0.0001*m.x109*m.x78 + 0.0001*m.x109*m.x79 + 0.0001*m.x109*m.x80 + 0.0001*
m.x109*m.x81 + 0.0001*m.x109*m.x82 + 0.0001*m.x109*m.x83 + 0.0001*m.x109*m.x84 + 0.0001*m.x109*
m.x85 + 0.0001*m.x109*m.x86 + 0.0001*m.x109*m.x87 + 0.0001*m.x109*m.x88 + 0.0001*m.x109*m.x89 +
0.0001*m.x109*m.x90 + 0.0001*m.x109*m.x91 + 0.0001*m.x109*m.x92 + 0.0001*m.x109*m.x93 + 0.0001*
m.x109*m.x94 + 0.0001*m.x109*m.x95 + 0.0001*m.x109*m.x96 + 0.0001*m.x109*m.x97 + 0.0001*m.x109*
m.x98 + 0.0001*m.x109*m.x99 + 0.0001*m.x109*m.x100 + 0.0001*m.x109*m.x101 + 0.0001*m.x109*m.x102
+ 0.0001*m.x109*m.x103 + 0.0001*m.x109*m.x104 + 0.0001*m.x109*m.x105 + 0.0001*m.x109*m.x106 +
0.0001*m.x109*m.x107 + 0.0001*m.x109*m.x108 + 1.76654393354786*m.x109**2 + 0.0001*m.x109*m.x110
+ 0.0001*m.x109*m.x111 + 0.0001*m.x109*m.x112 + 0.0001*m.x109*m.x113 + 0.0001*m.x109*m.x114 +
0.0001*m.x109*m.x115 + 0.0001*m.x109*m.x116 + 0.0001*m.x109*m.x117 + 0.0001*m.x109*m.x118 +
0.0001*m.x109*m.x119 + 0.0001*m.x109*m.x120 + 0.0001*m.x109*m.x121 + 0.0001*m.x109*m.x122 +
0.0001*m.x109*m.x123 + 0.0001*m.x109*m.x124 + 0.0001*m.x109*m.x125 + 0.0001*m.x109*m.x126 +
0.0001*m.x109*m.x127 + 0.0001*m.x109*m.x128 + 0.0001*m.x109*m.x129 + 0.0001*m.x109*m.x130 +
0.0001*m.x109*m.x131 + 0.0001*m.x109*m.x132 + 0.0001*m.x109*m.x133 + 0.0001*m.x109*m.x134 +
0.0001*m.x109*m.x135 + 0.0001*m.x109*m.x136 + 0.0001*m.x109*m.x137 + 0.0001*m.x109*m.x138 +
0.0001*m.x109*m.x139 + 0.0001*m.x109*m.x140 + 0.0001*m.x109*m.x141 + 0.0001*m.x109*m.x142 +
0.0001*m.x109*m.x143 + 0.0001*m.x109*m.x144 + 0.0001*m.x109*m.x145 + 0.0001*m.x109*m.x146 +
0.0001*m.x109*m.x147 + 0.0001*m.x109*m.x148 + 0.0001*m.x109*m.x149 + 0.0001*m.x109*m.x150 +
0.0001*m.x109*m.x151 + 0.0001*m.x109*m.x152 + 0.0001*m.x109*m.x153 + 0.0001*m.x109*m.x154 +
0.0001*m.x109*m.x155 + 0.0001*m.x109*m.x156 + 0.0001*m.x109*m.x157 + 0.0001*m.x109*m.x158 +
0.0001*m.x109*m.x159 + 0.0001*m.x109*m.x160 + 0.0001*m.x109*m.x161 + 0.0001*m.x109*m.x162 +
0.0001*m.x109*m.x163 + 0.0001*m.x109*m.x164 + 0.0001*m.x109*m.x165 + 0.0001*m.x109*m.x166 +
0.0001*m.x109*m.x167 + 0.0001*m.x109*m.x168 + 0.0001*m.x109*m.x169 + 0.0001*m.x109*m.x170 +
0.0001*m.x109*m.x171 + 0.0001*m.x109*m.x172 + 0.0001*m.x109*m.x173 + 0.0001*m.x109*m.x174 +
0.0001*m.x109*m.x175 + 0.0001*m.x109*m.x176 + 2.08391055624166*m.x109*m.x177 + 0.0001*m.x109*
m.x178 + 0.0001*m.x109*m.x179 + 0.0001*m.x109*m.x180 + 0.0001*m.x109*m.x181 + 0.0001*m.x109*
m.x182 + 0.0001*m.x109*m.x183 + 0.0001*m.x109*m.x184 + 0.0001*m.x109*m.x185 + 0.0001*m.x110*m.x1
+ 0.0001*m.x110*m.x2 + 0.0001*m.x110*m.x3 + 0.0001*m.x110*m.x4 + 0.0001*m.x110*m.x5 + 0.0001*
m.x110*m.x6 + 0.0001*m.x110*m.x7 + 0.0001*m.x110*m.x8 + 0.0001*m.x110*m.x9 + 0.0001*m.x110*m.x10
+ 0.0001*m.x110*m.x11 + 0.0001*m.x110*m.x12 + 0.0001*m.x110*m.x13 + 0.0001*m.x110*m.x14 + 0.0001
*m.x110*m.x15 + 0.0001*m.x110*m.x16 + 0.0001*m.x110*m.x17 + 0.0001*m.x110*m.x18 + 0.0001*m.x110*
m.x19 + 0.0001*m.x110*m.x20 + 0.0001*m.x110*m.x21 + 0.0001*m.x110*m.x22 + 0.0001*m.x110*m.x23 +
0.0001*m.x110*m.x24 + 0.0001*m.x110*m.x25 + 0.0001*m.x110*m.x26 + 0.0001*m.x110*m.x27 + 0.0001*
m.x110*m.x28 + 0.0001*m.x110*m.x29 + 0.0001*m.x110*m.x30 + 0.0001*m.x110*m.x31 + 0.0001*m.x110*
m.x32 + 0.0001*m.x110*m.x33 + 0.0001*m.x110*m.x34 + 0.0001*m.x110*m.x35 + 0.0001*m.x110*m.x36 +
0.0001*m.x110*m.x37 + 0.0001*m.x110*m.x38 + 0.0001*m.x110*m.x39 + 0.0001*m.x110*m.x40 + 0.0001*
m.x110*m.x41 + 0.0001*m.x110*m.x42 + 0.0001*m.x110*m.x43 + 0.0001*m.x110*m.x44 + 0.0001*m.x110*
m.x45 + 0.0001*m.x110*m.x46 + 0.0001*m.x110*m.x47 + 0.0001*m.x110*m.x48 + 0.0001*m.x110*m.x49 +
0.0001*m.x110*m.x50 + 0.0001*m.x110*m.x51 + 0.0001*m.x110*m.x52 + 0.0001*m.x110*m.x53 + 0.0001*
m.x110*m.x54 + 0.0001*m.x110*m.x55 + 0.0001*m.x110*m.x56 + 0.0001*m.x110*m.x57 + 0.0001*m.x110*
m.x58 + 0.0001*m.x110*m.x59 + 0.0001*m.x110*m.x60 + 0.0001*m.x110*m.x61 + 0.0001*m.x110*m.x62 +
0.0001*m.x110*m.x63 + 0.0001*m.x110*m.x64 + 0.0001*m.x110*m.x65 + 0.0001*m.x110*m.x66 + 0.0001*
m.x110*m.x67 + 0.0001*m.x110*m.x68 + 0.0001*m.x110*m.x69 + 0.0001*m.x110*m.x70 + 0.0001*m.x110*
m.x71 + 0.0001*m.x110*m.x72 + 0.0001*m.x110*m.x73 + 0.0001*m.x110*m.x74 + 0.0001*m.x110*m.x75 +
0.0001*m.x110*m.x76 + 0.0001*m.x110*m.x77 + 0.0001*m.x110*m.x78 + 0.0001*m.x110*m.x79 + 0.0001*
m.x110*m.x80 + 0.0001*m.x110*m.x81 + 0.0001*m.x110*m.x82 + 0.0001*m.x110*m.x83 + 0.0001*m.x110*
m.x84 + 0.0001*m.x110*m.x85 + 0.0001*m.x110*m.x86 + 0.0001*m.x110*m.x87 + 0.0001*m.x110*m.x88 +
0.0001*m.x110*m.x89 + 0.0001*m.x110*m.x90 + 0.0001*m.x110*m.x91 + 0.0001*m.x110*m.x92 + 0.0001*
m.x110*m.x93 + 0.0001*m.x110*m.x94 + 0.0001*m.x110*m.x95 + 0.0001*m.x110*m.x96 + 0.0001*m.x110*
m.x97 + 0.0001*m.x110*m.x98 + 0.0001*m.x110*m.x99 + 0.0001*m.x110*m.x100 + 0.0001*m.x110*m.x101
+ 0.0001*m.x110*m.x102 + 0.0001*m.x110*m.x103 + 0.0001*m.x110*m.x104 + 0.0001*m.x110*m.x105 +
0.0001*m.x110*m.x106 + 0.0001*m.x110*m.x107 + 0.0001*m.x110*m.x108 + 0.0001*m.x110*m.x109 +
1.76565978576974*m.x110**2 + 0.0001*m.x110*m.x111 + 0.0001*m.x110*m.x112 + 0.0001*m.x110*m.x113
+ 0.0001*m.x110*m.x114 + 0.0001*m.x110*m.x115 + 0.0001*m.x110*m.x116 + 0.0001*m.x110*m.x117 +
0.0001*m.x110*m.x118 + 0.0001*m.x110*m.x119 + 0.0001*m.x110*m.x120 + 0.0001*m.x110*m.x121 +
0.0001*m.x110*m.x122 + 0.0001*m.x110*m.x123 + 0.0001*m.x110*m.x124 + 0.0001*m.x110*m.x125 +
0.0001*m.x110*m.x126 + 0.0001*m.x110*m.x127 + 0.0001*m.x110*m.x128 + 0.0001*m.x110*m.x129 +
0.0001*m.x110*m.x130 + 0.0001*m.x110*m.x131 + 0.0001*m.x110*m.x132 + 0.0001*m.x110*m.x133 +
0.0001*m.x110*m.x134 + 0.0001*m.x110*m.x135 + 0.0001*m.x110*m.x136 + 0.0001*m.x110*m.x137 +
0.0001*m.x110*m.x138 + 0.0001*m.x110*m.x139 + 0.0001*m.x110*m.x140 + 0.0001*m.x110*m.x141 +
0.0001*m.x110*m.x142 + 0.0001*m.x110*m.x143 + 0.0001*m.x110*m.x144 + 0.0001*m.x110*m.x145 +
0.0001*m.x110*m.x146 + 0.0001*m.x110*m.x147 + 0.0001*m.x110*m.x148 + 0.0001*m.x110*m.x149 +
0.0001*m.x110*m.x150 + 0.0001*m.x110*m.x151 + 0.0001*m.x110*m.x152 + 0.0001*m.x110*m.x153 +
0.0001*m.x110*m.x154 + 0.0001*m.x110*m.x155 + 0.0001*m.x110*m.x156 + 0.0001*m.x110*m.x157 +
0.0001*m.x110*m.x158 + 0.0001*m.x110*m.x159 + 0.0001*m.x110*m.x160 + 0.0001*m.x110*m.x161 +
0.0001*m.x110*m.x162 + 0.0001*m.x110*m.x163 + 0.0001*m.x110*m.x164 + 0.0001*m.x110*m.x165 +
0.0001*m.x110*m.x166 + 0.0001*m.x110*m.x167 + 0.0001*m.x110*m.x168 + 0.0001*m.x110*m.x169 +
0.0001*m.x110*m.x170 + 0.0001*m.x110*m.x171 + 0.0001*m.x110*m.x172 + 0.0001*m.x110*m.x173 +
0.0001*m.x110*m.x174 + 0.0001*m.x110*m.x175 + 0.0001*m.x110*m.x176 + 0.0001*m.x110*m.x177 +
2.0828675588171*m.x110*m.x178 + 0.0001*m.x110*m.x179 + 0.0001*m.x110*m.x180 + 0.0001*m.x110*
m.x181 + 0.0001*m.x110*m.x182 + 0.0001*m.x110*m.x183 + 0.0001*m.x110*m.x184 + 0.0001*m.x110*
m.x185 + 0.0001*m.x111*m.x1 + 0.0001*m.x111*m.x2 + 0.0001*m.x111*m.x3 + 0.0001*m.x111*m.x4 +
0.0001*m.x111*m.x5 + 0.0001*m.x111*m.x6 + 0.0001*m.x111*m.x7 + 0.0001*m.x111*m.x8 + 0.0001*m.x111
*m.x9 + 0.0001*m.x111*m.x10 + 0.0001*m.x111*m.x11 + 0.0001*m.x111*m.x12 + 0.0001*m.x111*m.x13 +
0.0001*m.x111*m.x14 + 0.0001*m.x111*m.x15 + 0.0001*m.x111*m.x16 + 0.0001*m.x111*m.x17 + 0.0001*
m.x111*m.x18 + 0.0001*m.x111*m.x19 + 0.0001*m.x111*m.x20 + 0.0001*m.x111*m.x21 + 0.0001*m.x111*
m.x22 + 0.0001*m.x111*m.x23 + 0.0001*m.x111*m.x24 + 0.0001*m.x111*m.x25 + 0.0001*m.x111*m.x26 +
0.0001*m.x111*m.x27 + 0.0001*m.x111*m.x28 + 0.0001*m.x111*m.x29 + 0.0001*m.x111*m.x30 + 0.0001*
m.x111*m.x31 + 0.0001*m.x111*m.x32 + 0.0001*m.x111*m.x33 + 0.0001*m.x111*m.x34 + 0.0001*m.x111*
m.x35 + 0.0001*m.x111*m.x36 + 0.0001*m.x111*m.x37 + 0.0001*m.x111*m.x38 + 0.0001*m.x111*m.x39 +
0.0001*m.x111*m.x40 + 0.0001*m.x111*m.x41 + 0.0001*m.x111*m.x42 + 0.0001*m.x111*m.x43 + 0.0001*
m.x111*m.x44 + 0.0001*m.x111*m.x45 + 0.0001*m.x111*m.x46 + 0.0001*m.x111*m.x47 + 0.0001*m.x111*
m.x48 + 0.0001*m.x111*m.x49 + 0.0001*m.x111*m.x50 + 0.0001*m.x111*m.x51 + 0.0001*m.x111*m.x52 +
0.0001*m.x111*m.x53 + 0.0001*m.x111*m.x54 + 0.0001*m.x111*m.x55 + 0.0001*m.x111*m.x56 + 0.0001*
m.x111*m.x57 + 0.0001*m.x111*m.x58 + 0.0001*m.x111*m.x59 + 0.0001*m.x111*m.x60 + 0.0001*m.x111*
m.x61 + 0.0001*m.x111*m.x62 + 0.0001*m.x111*m.x63 + 0.0001*m.x111*m.x64 + 0.0001*m.x111*m.x65 +
0.0001*m.x111*m.x66 + 0.0001*m.x111*m.x67 + 0.0001*m.x111*m.x68 + 0.0001*m.x111*m.x69 + 0.0001*
m.x111*m.x70 + 0.0001*m.x111*m.x71 + 0.0001*m.x111*m.x72 + 0.0001*m.x111*m.x73 + 0.0001*m.x111*
m.x74 + 0.0001*m.x111*m.x75 + 0.0001*m.x111*m.x76 + 0.0001*m.x111*m.x77 + 0.0001*m.x111*m.x78 +
0.0001*m.x111*m.x79 + 0.0001*m.x111*m.x80 + 0.0001*m.x111*m.x81 + 0.0001*m.x111*m.x82 + 0.0001*
m.x111*m.x83 + 0.0001*m.x111*m.x84 + 0.0001*m.x111*m.x85 + 0.0001*m.x111*m.x86 + 0.0001*m.x111*
m.x87 + 0.0001*m.x111*m.x88 + 0.0001*m.x111*m.x89 + 0.0001*m.x111*m.x90 + 0.0001*m.x111*m.x91 +
0.0001*m.x111*m.x92 + 0.0001*m.x111*m.x93 + 0.0001*m.x111*m.x94 + 0.0001*m.x111*m.x95 + 0.0001*
m.x111*m.x96 + 0.0001*m.x111*m.x97 + 0.0001*m.x111*m.x98 + 0.0001*m.x111*m.x99 + 0.0001*m.x111*
m.x100 + 0.0001*m.x111*m.x101 + 0.0001*m.x111*m.x102 + 0.0001*m.x111*m.x103 + 0.0001*m.x111*
m.x104 + 0.0001*m.x111*m.x105 + 0.0001*m.x111*m.x106 + 0.0001*m.x111*m.x107 + 0.0001*m.x111*
m.x108 + 0.0001*m.x111*m.x109 + 0.0001*m.x111*m.x110 + 1.85230827005628*m.x111**2 + 0.0001*m.x111
*m.x112 + 0.0001*m.x111*m.x113 + 0.0001*m.x111*m.x114 + 0.0001*m.x111*m.x115 + 0.0001*m.x111*
m.x116 + 0.0001*m.x111*m.x117 + 0.0001*m.x111*m.x118 + 0.0001*m.x111*m.x119 + 0.0001*m.x111*
m.x120 + 0.0001*m.x111*m.x121 + 0.0001*m.x111*m.x122 + 0.0001*m.x111*m.x123 + 0.0001*m.x111*
m.x124 + 0.0001*m.x111*m.x125 + 0.0001*m.x111*m.x126 + 0.0001*m.x111*m.x127 + 0.0001*m.x111*
m.x128 + 0.0001*m.x111*m.x129 + 0.0001*m.x111*m.x130 + 0.0001*m.x111*m.x131 + 0.0001*m.x111*
m.x132 + 0.0001*m.x111*m.x133 + 0.0001*m.x111*m.x134 + 0.0001*m.x111*m.x135 + 0.0001*m.x111*
m.x136 + 0.0001*m.x111*m.x137 + 0.0001*m.x111*m.x138 + 0.0001*m.x111*m.x139 + 0.0001*m.x111*
m.x140 + 0.0001*m.x111*m.x141 + 0.0001*m.x111*m.x142 + 0.0001*m.x111*m.x143 + 0.0001*m.x111*
m.x144 + 0.0001*m.x111*m.x145 + 0.0001*m.x111*m.x146 + 0.0001*m.x111*m.x147 + 0.0001*m.x111*
m.x148 + 0.0001*m.x111*m.x149 + 0.0001*m.x111*m.x150 + 0.0001*m.x111*m.x151 + 0.0001*m.x111*
m.x152 + 0.0001*m.x111*m.x153 + 0.0001*m.x111*m.x154 + 0.0001*m.x111*m.x155 + 0.0001*m.x111*
m.x156 + 0.0001*m.x111*m.x157 + 0.0001*m.x111*m.x158 + 0.0001*m.x111*m.x159 + 0.0001*m.x111*
m.x160 + 0.0001*m.x111*m.x161 + 0.0001*m.x111*m.x162 + 0.0001*m.x111*m.x163 + 0.0001*m.x111*
m.x164 + 0.0001*m.x111*m.x165 + 0.0001*m.x111*m.x166 + 0.0001*m.x111*m.x167 + 0.0001*m.x111*
m.x168 + 0.0001*m.x111*m.x169 + 0.0001*m.x111*m.x170 + 0.0001*m.x111*m.x171 + 0.0001*m.x111*
m.x172 + 0.0001*m.x111*m.x173 + 0.0001*m.x111*m.x174 + 0.0001*m.x111*m.x175 + 0.0001*m.x111*
m.x176 + 0.0001*m.x111*m.x177 + 0.0001*m.x111*m.x178 + 2.12900182336716*m.x111*m.x179 + 0.0001*
m.x111*m.x180 + 0.0001*m.x111*m.x181 + 0.0001*m.x111*m.x182 + 0.0001*m.x111*m.x183 + 0.0001*
m.x111*m.x184 + 0.0001*m.x111*m.x185 + 0.0001*m.x112*m.x1 + 0.0001*m.x112*m.x2 + 0.0001*m.x112*
m.x3 + 0.0001*m.x112*m.x4 + 0.0001*m.x112*m.x5 + 0.0001*m.x112*m.x6 + 0.0001*m.x112*m.x7 + 0.0001
*m.x112*m.x8 + 0.0001*m.x112*m.x9 + 0.0001*m.x112*m.x10 + 0.0001*m.x112*m.x11 + 0.0001*m.x112*
m.x12 + 0.0001*m.x112*m.x13 + 0.0001*m.x112*m.x14 + 0.0001*m.x112*m.x15 + 0.0001*m.x112*m.x16 +
0.0001*m.x112*m.x17 + 0.0001*m.x112*m.x18 + 0.0001*m.x112*m.x19 + 0.0001*m.x112*m.x20 + 0.0001*
m.x112*m.x21 + 0.0001*m.x112*m.x22 + 0.0001*m.x112*m.x23 + 0.0001*m.x112*m.x24 + 0.0001*m.x112*
m.x25 + 0.0001*m.x112*m.x26 + 0.0001*m.x112*m.x27 + 0.0001*m.x112*m.x28 + 0.0001*m.x112*m.x29 +
0.0001*m.x112*m.x30 + 0.0001*m.x112*m.x31 + 0.0001*m.x112*m.x32 + 0.0001*m.x112*m.x33 + 0.0001*
m.x112*m.x34 + 0.0001*m.x112*m.x35 + 0.0001*m.x112*m.x36 + 0.0001*m.x112*m.x37 + 0.0001*m.x112*
m.x38 + 0.0001*m.x112*m.x39 + 0.0001*m.x112*m.x40 + 0.0001*m.x112*m.x41 + 0.0001*m.x112*m.x42 +
0.0001*m.x112*m.x43 + 0.0001*m.x112*m.x44 + 0.0001*m.x112*m.x45 + 0.0001*m.x112*m.x46 + 0.0001*
m.x112*m.x47 + 0.0001*m.x112*m.x48 + 0.0001*m.x112*m.x49 + 0.0001*m.x112*m.x50 + 0.0001*m.x112*
m.x51 + 0.0001*m.x112*m.x52 + 0.0001*m.x112*m.x53 + 0.0001*m.x112*m.x54 + 0.0001*m.x112*m.x55 +
0.0001*m.x112*m.x56 + 0.0001*m.x112*m.x57 + 0.0001*m.x112*m.x58 + 0.0001*m.x112*m.x59 + 0.0001*
m.x112*m.x60 + 0.0001*m.x112*m.x61 + 0.0001*m.x112*m.x62 + 0.0001*m.x112*m.x63 + 0.0001*m.x112*
m.x64 + 0.0001*m.x112*m.x65 + 0.0001*m.x112*m.x66 + 0.0001*m.x112*m.x67 + 0.0001*m.x112*m.x68 +
0.0001*m.x112*m.x69 + 0.0001*m.x112*m.x70 + 0.0001*m.x112*m.x71 + 0.0001*m.x112*m.x72 + 0.0001*
m.x112*m.x73 + 0.0001*m.x112*m.x74 + 0.0001*m.x112*m.x75 + 0.0001*m.x112*m.x76 + 0.0001*m.x112*
m.x77 + 0.0001*m.x112*m.x78 + 0.0001*m.x112*m.x79 + 0.0001*m.x112*m.x80 + 0.0001*m.x112*m.x81 +
0.0001*m.x112*m.x82 + 0.0001*m.x112*m.x83 + 0.0001*m.x112*m.x84 + 0.0001*m.x112*m.x85 + 0.0001*
m.x112*m.x86 + 0.0001*m.x112*m.x87 + 0.0001*m.x112*m.x88 + 0.0001*m.x112*m.x89 + 0.0001*m.x112*
m.x90 + 0.0001*m.x112*m.x91 + 0.0001*m.x112*m.x92 + 0.0001*m.x112*m.x93 + 0.0001*m.x112*m.x94 +
0.0001*m.x112*m.x95 + 0.0001*m.x112*m.x96 + 0.0001*m.x112*m.x97 + 0.0001*m.x112*m.x98 + 0.0001*
m.x112*m.x99 + 0.0001*m.x112*m.x100 + 0.0001*m.x112*m.x101 + 0.0001*m.x112*m.x102 + 0.0001*m.x112
*m.x103 + 0.0001*m.x112*m.x104 + 0.0001*m.x112*m.x105 + 0.0001*m.x112*m.x106 + 0.0001*m.x112*
m.x107 + 0.0001*m.x112*m.x108 + 0.0001*m.x112*m.x109 + 0.0001*m.x112*m.x110 + 0.0001*m.x112*
m.x111 + 3.9504776025216*m.x112**2 + 0.0001*m.x112*m.x113 + 0.0001*m.x112*m.x114 + 0.0001*m.x112*
m.x115 + 0.0001*m.x112*m.x116 + 0.0001*m.x112*m.x117 + 0.0001*m.x112*m.x118 + 0.0001*m.x112*
m.x119 + 0.0001*m.x112*m.x120 + 0.0001*m.x112*m.x121 + 0.0001*m.x112*m.x122 + 0.0001*m.x112*
m.x123 + 0.0001*m.x112*m.x124 + 0.0001*m.x112*m.x125 + 0.0001*m.x112*m.x126 + 0.0001*m.x112*
m.x127 + 0.0001*m.x112*m.x128 + 0.0001*m.x112*m.x129 + 0.0001*m.x112*m.x130 + 0.0001*m.x112*
m.x131 + 0.0001*m.x112*m.x132 + 0.0001*m.x112*m.x133 + 0.0001*m.x112*m.x134 + 0.0001*m.x112*
m.x135 + 0.0001*m.x112*m.x136 + 0.0001*m.x112*m.x137 + 0.0001*m.x112*m.x138 + 0.0001*m.x112*
m.x139 + 0.0001*m.x112*m.x140 + 0.0001*m.x112*m.x141 + 0.0001*m.x112*m.x142 + 0.0001*m.x112*
m.x143 + 0.0001*m.x112*m.x144 + 0.0001*m.x112*m.x145 + 0.0001*m.x112*m.x146 + 0.0001*m.x112*
m.x147 + 0.0001*m.x112*m.x148 + 0.0001*m.x112*m.x149 + 0.0001*m.x112*m.x150 + 0.0001*m.x112*
m.x151 + 0.0001*m.x112*m.x152 + 0.0001*m.x112*m.x153 + 0.0001*m.x112*m.x154 + 0.0001*m.x112*
m.x155 + 0.0001*m.x112*m.x156 + 0.0001*m.x112*m.x157 + 0.0001*m.x112*m.x158 + 0.0001*m.x112*
m.x159 + 0.0001*m.x112*m.x160 + 0.0001*m.x112*m.x161 + 0.0001*m.x112*m.x162 + 0.0001*m.x112*
m.x163 + 0.0001*m.x112*m.x164 + 0.0001*m.x112*m.x165 + 0.0001*m.x112*m.x166 + 0.0001*m.x112*
m.x167 + 0.0001*m.x112*m.x168 + 0.0001*m.x112*m.x169 + 0.0001*m.x112*m.x170 + 0.0001*m.x112*
m.x171 + 0.0001*m.x112*m.x172 + 0.0001*m.x112*m.x173 + 0.0001*m.x112*m.x174 + 0.0001*m.x112*
m.x175 + 0.0001*m.x112*m.x176 + 0.0001*m.x112*m.x177 + 0.0001*m.x112*m.x178 + 0.0001*m.x112*
m.x179 + 2.11770940690243*m.x112*m.x180 + 2.33597160736182*m.x112*m.x181 + 0.0001*m.x112*m.x182
+ 0.0001*m.x112*m.x183 + 0.0001*m.x112*m.x184 + 0.0001*m.x112*m.x185 + 0.0001*m.x113*m.x1 +
0.0001*m.x113*m.x2 + 0.0001*m.x113*m.x3 + 0.0001*m.x113*m.x4 + 0.0001*m.x113*m.x5 + 0.0001*m.x113
*m.x6 + 0.0001*m.x113*m.x7 + 0.0001*m.x113*m.x8 + 0.0001*m.x113*m.x9 + 0.0001*m.x113*m.x10 +
0.0001*m.x113*m.x11 + 0.0001*m.x113*m.x12 + 0.0001*m.x113*m.x13 + 0.0001*m.x113*m.x14 + 0.0001*
m.x113*m.x15 + 0.0001*m.x113*m.x16 + 0.0001*m.x113*m.x17 + 0.0001*m.x113*m.x18 + 0.0001*m.x113*
m.x19 + 0.0001*m.x113*m.x20 + 0.0001*m.x113*m.x21 + 0.0001*m.x113*m.x22 + 0.0001*m.x113*m.x23 +
0.0001*m.x113*m.x24 + 0.0001*m.x113*m.x25 + 0.0001*m.x113*m.x26 + 0.0001*m.x113*m.x27 + 0.0001*
m.x113*m.x28 + 0.0001*m.x113*m.x29 + 0.0001*m.x113*m.x30 + 0.0001*m.x113*m.x31 + 0.0001*m.x113*
m.x32 + 0.0001*m.x113*m.x33 + 0.0001*m.x113*m.x34 + 0.0001*m.x113*m.x35 + 0.0001*m.x113*m.x36 +
0.0001*m.x113*m.x37 + 0.0001*m.x113*m.x38 + 0.0001*m.x113*m.x39 + 0.0001*m.x113*m.x40 + 0.0001*
m.x113*m.x41 + 0.0001*m.x113*m.x42 + 0.0001*m.x113*m.x43 + 0.0001*m.x113*m.x44 + 0.0001*m.x113*
m.x45 + 0.0001*m.x113*m.x46 + 0.0001*m.x113*m.x47 + 0.0001*m.x113*m.x48 + 0.0001*m.x113*m.x49 +
0.0001*m.x113*m.x50 + 0.0001*m.x113*m.x51 + 0.0001*m.x113*m.x52 + 0.0001*m.x113*m.x53 + 0.0001*
m.x113*m.x54 + 0.0001*m.x113*m.x55 + 0.0001*m.x113*m.x56 + 0.0001*m.x113*m.x57 + 0.0001*m.x113*
m.x58 + 0.0001*m.x113*m.x59 + 0.0001*m.x113*m.x60 + 0.0001*m.x113*m.x61 + 0.0001*m.x113*m.x62 +
0.0001*m.x113*m.x63 + 0.0001*m.x113*m.x64 + 0.0001*m.x113*m.x65 + 0.0001*m.x113*m.x66 + 0.0001*
m.x113*m.x67 + 0.0001*m.x113*m.x68 + 0.0001*m.x113*m.x69 + 0.0001*m.x113*m.x70 + 0.0001*m.x113*
m.x71 + 0.0001*m.x113*m.x72 + 0.0001*m.x113*m.x73 + 0.0001*m.x113*m.x74 + 0.0001*m.x113*m.x75 +
0.0001*m.x113*m.x76 + 0.0001*m.x113*m.x77 + 0.0001*m.x113*m.x78 + 0.0001*m.x113*m.x79 + 0.0001*
m.x113*m.x80 + 0.0001*m.x113*m.x81 + 0.0001*m.x113*m.x82 + 0.0001*m.x113*m.x83 + 0.0001*m.x113*
m.x84 + 0.0001*m.x113*m.x85 + 0.0001*m.x113*m.x86 + 0.0001*m.x113*m.x87 + 0.0001*m.x113*m.x88 +
0.0001*m.x113*m.x89 + 0.0001*m.x113*m.x90 + 0.0001*m.x113*m.x91 + 0.0001*m.x113*m.x92 + 0.0001*
m.x113*m.x93 + 0.0001*m.x113*m.x94 + 0.0001*m.x113*m.x95 + 0.0001*m.x113*m.x96 + 0.0001*m.x113*
m.x97 + 0.0001*m.x113*m.x98 + 0.0001*m.x113*m.x99 + 0.0001*m.x113*m.x100 + 0.0001*m.x113*m.x101
+ 0.0001*m.x113*m.x102 + 0.0001*m.x113*m.x103 + 0.0001*m.x113*m.x104 + 0.0001*m.x113*m.x105 +
0.0001*m.x113*m.x106 + 0.0001*m.x113*m.x107 + 0.0001*m.x113*m.x108 + 0.0001*m.x113*m.x109 +
0.0001*m.x113*m.x110 + 0.0001*m.x113*m.x111 + 0.0001*m.x113*m.x112 + 1.84431874362729*m.x113**2
+ 0.0001*m.x113*m.x114 + 0.0001*m.x113*m.x115 + 0.0001*m.x113*m.x116 + 0.0001*m.x113*m.x117 +
0.0001*m.x113*m.x118 + 0.0001*m.x113*m.x119 + 0.0001*m.x113*m.x120 + 0.0001*m.x113*m.x121 +
0.0001*m.x113*m.x122 + 0.0001*m.x113*m.x123 + 0.0001*m.x113*m.x124 + 0.0001*m.x113*m.x125 +
0.0001*m.x113*m.x126 + 0.0001*m.x113*m.x127 + 0.0001*m.x113*m.x128 + 0.0001*m.x113*m.x129 +
0.0001*m.x113*m.x130 + 0.0001*m.x113*m.x131 + 0.0001*m.x113*m.x132 + 0.0001*m.x113*m.x133 +
0.0001*m.x113*m.x134 + 0.0001*m.x113*m.x135 + 0.0001*m.x113*m.x136 + 0.0001*m.x113*m.x137 +
0.0001*m.x113*m.x138 + 0.0001*m.x113*m.x139 + 0.0001*m.x113*m.x140 + 0.0001*m.x113*m.x141 +
0.0001*m.x113*m.x142 + 0.0001*m.x113*m.x143 + 0.0001*m.x113*m.x144 + 0.0001*m.x113*m.x145 +
0.0001*m.x113*m.x146 + 0.0001*m.x113*m.x147 + 0.0001*m.x113*m.x148 + 0.0001*m.x113*m.x149 +
0.0001*m.x113*m.x150 + 0.0001*m.x113*m.x151 + 0.0001*m.x113*m.x152 + 0.0001*m.x113*m.x153 +
0.0001*m.x113*m.x154 + 0.0001*m.x113*m.x155 + 0.0001*m.x113*m.x156 + 0.0001*m.x113*m.x157 +
0.0001*m.x113*m.x158 + 0.0001*m.x113*m.x159 + 0.0001*m.x113*m.x160 + 0.0001*m.x113*m.x161 +
0.0001*m.x113*m.x162 + 0.0001*m.x113*m.x163 + 0.0001*m.x113*m.x164 + 0.0001*m.x113*m.x165 +
0.0001*m.x113*m.x166 + 0.0001*m.x113*m.x167 + 0.0001*m.x113*m.x168 + 0.0001*m.x113*m.x169 +
0.0001*m.x113*m.x170 + 0.0001*m.x113*m.x171 + 0.0001*m.x113*m.x172 + 0.0001*m.x113*m.x173 +
0.0001*m.x113*m.x174 + 0.0001*m.x113*m.x175 + 0.0001*m.x113*m.x176 + 0.0001*m.x113*m.x177 +
0.0001*m.x113*m.x178 + 0.0001*m.x113*m.x179 + 0.0001*m.x113*m.x180 + 0.0001*m.x113*m.x181 +
2.07913408000641*m.x113*m.x182 + 0.0001*m.x113*m.x183 + 0.0001*m.x113*m.x184 + 0.0001*m.x113*
m.x185 + 0.0001*m.x114*m.x1 + 0.0001*m.x114*m.x2 + 0.0001*m.x114*m.x3 + 0.0001*m.x114*m.x4 +
0.0001*m.x114*m.x5 + 0.0001*m.x114*m.x6 + 0.0001*m.x114*m.x7 + 0.0001*m.x114*m.x8 + 0.0001*m.x114
*m.x9 + 0.0001*m.x114*m.x10 + 0.0001*m.x114*m.x11 + 0.0001*m.x114*m.x12 + 0.0001*m.x114*m.x13 +
0.0001*m.x114*m.x14 + 0.0001*m.x114*m.x15 + 0.0001*m.x114*m.x16 + 0.0001*m.x114*m.x17 + 0.0001*
m.x114*m.x18 + 0.0001*m.x114*m.x19 + 0.0001*m.x114*m.x20 + 0.0001*m.x114*m.x21 + 0.0001*m.x114*
m.x22 + 0.0001*m.x114*m.x23 + 0.0001*m.x114*m.x24 + 0.0001*m.x114*m.x25 + 0.0001*m.x114*m.x26 +
0.0001*m.x114*m.x27 + 0.0001*m.x114*m.x28 + 0.0001*m.x114*m.x29 + 0.0001*m.x114*m.x30 + 0.0001*
m.x114*m.x31 + 0.0001*m.x114*m.x32 + 0.0001*m.x114*m.x33 + 0.0001*m.x114*m.x34 + 0.0001*m.x114*
m.x35 + 0.0001*m.x114*m.x36 + 0.0001*m.x114*m.x37 + 0.0001*m.x114*m.x38 + 0.0001*m.x114*m.x39 +
0.0001*m.x114*m.x40 + 0.0001*m.x114*m.x41 + 0.0001*m.x114*m.x42 + 0.0001*m.x114*m.x43 + 0.0001*
m.x114*m.x44 + 0.0001*m.x114*m.x45 + 0.0001*m.x114*m.x46 + 0.0001*m.x114*m.x47 + 0.0001*m.x114*
m.x48 + 0.0001*m.x114*m.x49 + 0.0001*m.x114*m.x50 + 0.0001*m.x114*m.x51 + 0.0001*m.x114*m.x52 +
0.0001*m.x114*m.x53 + 0.0001*m.x114*m.x54 + 0.0001*m.x114*m.x55 + 0.0001*m.x114*m.x56 + 0.0001*
m.x114*m.x57 + 0.0001*m.x114*m.x58 + 0.0001*m.x114*m.x59 + 0.0001*m.x114*m.x60 + 0.0001*m.x114*
m.x61 + 0.0001*m.x114*m.x62 + 0.0001*m.x114*m.x63 + 0.0001*m.x114*m.x64 + 0.0001*m.x114*m.x65 +
0.0001*m.x114*m.x66 + 0.0001*m.x114*m.x67 + 0.0001*m.x114*m.x68 + 0.0001*m.x114*m.x69 + 0.0001*
m.x114*m.x70 + 0.0001*m.x114*m.x71 + 0.0001*m.x114*m.x72 + 0.0001*m.x114*m.x73 + 0.0001*m.x114*
m.x74 + 0.0001*m.x114*m.x75 + 0.0001*m.x114*m.x76 + 0.0001*m.x114*m.x77 + 0.0001*m.x114*m.x78 +
0.0001*m.x114*m.x79 + 0.0001*m.x114*m.x80 + 0.0001*m.x114*m.x81 + 0.0001*m.x114*m.x82 + 0.0001*
m.x114*m.x83 + 0.0001*m.x114*m.x84 + 0.0001*m.x114*m.x85 + 0.0001*m.x114*m.x86 + 0.0001*m.x114*
m.x87 + 0.0001*m.x114*m.x88 + 0.0001*m.x114*m.x89 + 0.0001*m.x114*m.x90 + 0.0001*m.x114*m.x91 +
0.0001*m.x114*m.x92 + 0.0001*m.x114*m.x93 + 0.0001*m.x114*m.x94 + 0.0001*m.x114*m.x95 + 0.0001*
m.x114*m.x96 + 0.0001*m.x114*m.x97 + 0.0001*m.x114*m.x98 + 0.0001*m.x114*m.x99 + 0.0001*m.x114*
m.x100 + 0.0001*m.x114*m.x101 + 0.0001*m.x114*m.x102 + 0.0001*m.x114*m.x103 + 0.0001*m.x114*
m.x104 + 0.0001*m.x114*m.x105 + 0.0001*m.x114*m.x106 + 0.0001*m.x114*m.x107 + 0.0001*m.x114*
m.x108 + 0.0001*m.x114*m.x109 + 0.0001*m.x114*m.x110 + 0.0001*m.x114*m.x111 + 0.0001*m.x114*
m.x112 + 0.0001*m.x114*m.x113 + 1.3637288491988*m.x114**2 + 0.0001*m.x114*m.x115 + 0.0001*m.x114*
m.x116 + 0.0001*m.x114*m.x117 + 0.0001*m.x114*m.x118 + 0.0001*m.x114*m.x119 + 0.0001*m.x114*
m.x120 + 0.0001*m.x114*m.x121 + 0.0001*m.x114*m.x122 + 0.0001*m.x114*m.x123 + 0.0001*m.x114*
m.x124 + 0.0001*m.x114*m.x125 + 0.0001*m.x114*m.x126 + 0.0001*m.x114*m.x127 + 0.0001*m.x114*
m.x128 + 0.0001*m.x114*m.x129 + 0.0001*m.x114*m.x130 + 0.0001*m.x114*m.x131 + 0.0001*m.x114*
m.x132 + 0.0001*m.x114*m.x133 + 0.0001*m.x114*m.x134 + 0.0001*m.x114*m.x135 + 0.0001*m.x114*
m.x136 + 0.0001*m.x114*m.x137 + 0.0001*m.x114*m.x138 + 0.0001*m.x114*m.x139 + 0.0001*m.x114*
m.x140 + 0.0001*m.x114*m.x141 + 0.0001*m.x114*m.x142 + 0.0001*m.x114*m.x143 + 0.0001*m.x114*
m.x144 + 0.0001*m.x114*m.x145 + 0.0001*m.x114*m.x146 + 0.0001*m.x114*m.x147 + 0.0001*m.x114*
m.x148 + 0.0001*m.x114*m.x149 + 0.0001*m.x114*m.x150 + 0.0001*m.x114*m.x151 + 0.0001*m.x114*
m.x152 + 0.0001*m.x114*m.x153 + 0.0001*m.x114*m.x154 + 0.0001*m.x114*m.x155 + 0.0001*m.x114*
m.x156 + 0.0001*m.x114*m.x157 + 0.0001*m.x114*m.x158 + 0.0001*m.x114*m.x159 + 0.0001*m.x114*
m.x160 + 0.0001*m.x114*m.x161 + 0.0001*m.x114*m.x162 + 0.0001*m.x114*m.x163 + 0.0001*m.x114*
m.x164 + 0.0001*m.x114*m.x165 + 0.0001*m.x114*m.x166 + 0.0001*m.x114*m.x167 + 0.0001*m.x114*
m.x168 + 0.0001*m.x114*m.x169 + 0.0001*m.x114*m.x170 + 0.0001*m.x114*m.x171 + 0.0001*m.x114*
m.x172 + 0.0001*m.x114*m.x173 + 0.0001*m.x114*m.x174 + 0.0001*m.x114*m.x175 + 0.0001*m.x114*
m.x176 + 0.0001*m.x114*m.x177 + 0.0001*m.x114*m.x178 + 0.0001*m.x114*m.x179 + 0.0001*m.x114*
m.x180 + 0.0001*m.x114*m.x181 + 0.0001*m.x114*m.x182 + 1.81266542307986*m.x114*m.x183 + 0.0001*
m.x114*m.x184 + 0.0001*m.x114*m.x185 + 0.0001*m.x115*m.x1 + 0.0001*m.x115*m.x2 + 0.0001*m.x115*
m.x3 + 0.0001*m.x115*m.x4 + 0.0001*m.x115*m.x5 + 0.0001*m.x115*m.x6 + 0.0001*m.x115*m.x7 + 0.0001
*m.x115*m.x8 + 0.0001*m.x115*m.x9 + 0.0001*m.x115*m.x10 + 0.0001*m.x115*m.x11 + 0.0001*m.x115*
m.x12 + 0.0001*m.x115*m.x13 + 0.0001*m.x115*m.x14 + 0.0001*m.x115*m.x15 + 0.0001*m.x115*m.x16 +
0.0001*m.x115*m.x17 + 0.0001*m.x115*m.x18 + 0.0001*m.x115*m.x19 + 0.0001*m.x115*m.x20 + 0.0001*
m.x115*m.x21 + 0.0001*m.x115*m.x22 + 0.0001*m.x115*m.x23 + 0.0001*m.x115*m.x24 + 0.0001*m.x115*
m.x25 + 0.0001*m.x115*m.x26 + 0.0001*m.x115*m.x27 + 0.0001*m.x115*m.x28 + 0.0001*m.x115*m.x29 +
0.0001*m.x115*m.x30 + 0.0001*m.x115*m.x31 + 0.0001*m.x115*m.x32 + 0.0001*m.x115*m.x33 + 0.0001*
m.x115*m.x34 + 0.0001*m.x115*m.x35 + 0.0001*m.x115*m.x36 + 0.0001*m.x115*m.x37 + 0.0001*m.x115*
m.x38 + 0.0001*m.x115*m.x39 + 0.0001*m.x115*m.x40 + 0.0001*m.x115*m.x41 + 0.0001*m.x115*m.x42 +
0.0001*m.x115*m.x43 + 0.0001*m.x115*m.x44 + 0.0001*m.x115*m.x45 + 0.0001*m.x115*m.x46 + 0.0001*
m.x115*m.x47 + 0.0001*m.x115*m.x48 + 0.0001*m.x115*m.x49 + 0.0001*m.x115*m.x50 + 0.0001*m.x115*
m.x51 + 0.0001*m.x115*m.x52 + 0.0001*m.x115*m.x53 + 0.0001*m.x115*m.x54 + 0.0001*m.x115*m.x55 +
0.0001*m.x115*m.x56 + 0.0001*m.x115*m.x57 + 0.0001*m.x115*m.x58 + 0.0001*m.x115*m.x59 + 0.0001*
m.x115*m.x60 + 0.0001*m.x115*m.x61 + 0.0001*m.x115*m.x62 + 0.0001*m.x115*m.x63 + 0.0001*m.x115*
m.x64 + 0.0001*m.x115*m.x65 + 0.0001*m.x115*m.x66 + 0.0001*m.x115*m.x67 + 0.0001*m.x115*m.x68 +
0.0001*m.x115*m.x69 + 0.0001*m.x115*m.x70 + 0.0001*m.x115*m.x71 + 0.0001*m.x115*m.x72 + 0.0001*
m.x115*m.x73 + 0.0001*m.x115*m.x74 + 0.0001*m.x115*m.x75 + 0.0001*m.x115*m.x76 + 0.0001*m.x115*
m.x77 + 0.0001*m.x115*m.x78 + 0.0001*m.x115*m.x79 + 0.0001*m.x115*m.x80 + 0.0001*m.x115*m.x81 +
0.0001*m.x115*m.x82 + 0.0001*m.x115*m.x83 + 0.0001*m.x115*m.x84 + 0.0001*m.x115*m.x85 + 0.0001*
m.x115*m.x86 + 0.0001*m.x115*m.x87 + 0.0001*m.x115*m.x88 + 0.0001*m.x115*m.x89 + 0.0001*m.x115*
m.x90 + 0.0001*m.x115*m.x91 + 0.0001*m.x115*m.x92 + 0.0001*m.x115*m.x93 + 0.0001*m.x115*m.x94 +
0.0001*m.x115*m.x95 + 0.0001*m.x115*m.x96 + 0.0001*m.x115*m.x97 + 0.0001*m.x115*m.x98 + 0.0001*
m.x115*m.x99 + 0.0001*m.x115*m.x100 + 0.0001*m.x115*m.x101 + 0.0001*m.x115*m.x102 + 0.0001*m.x115
*m.x103 + 0.0001*m.x115*m.x104 + 0.0001*m.x115*m.x105 + 0.0001*m.x115*m.x106 + 0.0001*m.x115*
m.x107 + 0.0001*m.x115*m.x108 + 0.0001*m.x115*m.x109 + 0.0001*m.x115*m.x110 + 0.0001*m.x115*
m.x111 + 0.0001*m.x115*m.x112 + 0.0001*m.x115*m.x113 + 0.0001*m.x115*m.x114 + 1.3637288491988*
m.x115**2 + 0.0001*m.x115*m.x116 + 0.0001*m.x115*m.x117 + 0.0001*m.x115*m.x118 + 0.0001*m.x115*
m.x119 + 0.0001*m.x115*m.x120 + 0.0001*m.x115*m.x121 + 0.0001*m.x115*m.x122 + 0.0001*m.x115*
m.x123 + 0.0001*m.x115*m.x124 + 0.0001*m.x115*m.x125 + 0.0001*m.x115*m.x126 + 0.0001*m.x115*
m.x127 + 0.0001*m.x115*m.x128 + 0.0001*m.x115*m.x129 + 0.0001*m.x115*m.x130 + 0.0001*m.x115*
m.x131 + 0.0001*m.x115*m.x132 + 0.0001*m.x115*m.x133 + 0.0001*m.x115*m.x134 + 0.0001*m.x115*
m.x135 + 0.0001*m.x115*m.x136 + 0.0001*m.x115*m.x137 + 0.0001*m.x115*m.x138 + 0.0001*m.x115*
m.x139 + 0.0001*m.x115*m.x140 + 0.0001*m.x115*m.x141 + 0.0001*m.x115*m.x142 + 0.0001*m.x115*
m.x143 + 0.0001*m.x115*m.x144 + 0.0001*m.x115*m.x145 + 0.0001*m.x115*m.x146 + 0.0001*m.x115*
m.x147 + 0.0001*m.x115*m.x148 + 0.0001*m.x115*m.x149 + 0.0001*m.x115*m.x150 + 0.0001*m.x115*
m.x151 + 0.0001*m.x115*m.x152 + 0.0001*m.x115*m.x153 + 0.0001*m.x115*m.x154 + 0.0001*m.x115*
m.x155 + 0.0001*m.x115*m.x156 + 0.0001*m.x115*m.x157 + 0.0001*m.x115*m.x158 + 0.0001*m.x115*
m.x159 + 0.0001*m.x115*m.x160 + 0.0001*m.x115*m.x161 + 0.0001*m.x115*m.x162 + 0.0001*m.x115*
m.x163 + 0.0001*m.x115*m.x164 + 0.0001*m.x115*m.x165 + 0.0001*m.x115*m.x166 + 0.0001*m.x115*
m.x167 + 0.0001*m.x115*m.x168 + 0.0001*m.x115*m.x169 + 0.0001*m.x115*m.x170 + 0.0001*m.x115*
m.x171 + 0.0001*m.x115*m.x172 + 0.0001*m.x115*m.x173 + 0.0001*m.x115*m.x174 + 0.0001*m.x115*
m.x175 + 0.0001*m.x115*m.x176 + 0.0001*m.x115*m.x177 + 0.0001*m.x115*m.x178 + 0.0001*m.x115*
m.x179 + 0.0001*m.x115*m.x180 + 0.0001*m.x115*m.x181 + 0.0001*m.x115*m.x182 + 0.0001*m.x115*
m.x183 + 1.81266542307986*m.x115*m.x184 + 0.0001*m.x115*m.x185 + 0.0001*m.x116*m.x1 + 0.0001*
m.x116*m.x2 + 0.0001*m.x116*m.x3 + 0.0001*m.x116*m.x4 + 0.0001*m.x116*m.x5 + 0.0001*m.x116*m.x6
+ 0.0001*m.x116*m.x7 + 0.0001*m.x116*m.x8 + 0.0001*m.x116*m.x9 + 0.0001*m.x116*m.x10 + 0.0001*
m.x116*m.x11 + 0.0001*m.x116*m.x12 + 0.0001*m.x116*m.x13 + 0.0001*m.x116*m.x14 + 0.0001*m.x116*
m.x15 + 0.0001*m.x116*m.x16 + 0.0001*m.x116*m.x17 + 0.0001*m.x116*m.x18 + 0.0001*m.x116*m.x19 +
0.0001*m.x116*m.x20 + 0.0001*m.x116*m.x21 + 0.0001*m.x116*m.x22 + 0.0001*m.x116*m.x23 + 0.0001*
m.x116*m.x24 + 0.0001*m.x116*m.x25 + 0.0001*m.x116*m.x26 + 0.0001*m.x116*m.x27 + 0.0001*m.x116*
m.x28 + 0.0001*m.x116*m.x29 + 0.0001*m.x116*m.x30 + 0.0001*m.x116*m.x31 + 0.0001*m.x116*m.x32 +
0.0001*m.x116*m.x33 + 0.0001*m.x116*m.x34 + 0.0001*m.x116*m.x35 + 0.0001*m.x116*m.x36 + 0.0001*
m.x116*m.x37 + 0.0001*m.x116*m.x38 + 0.0001*m.x116*m.x39 + 0.0001*m.x116*m.x40 + 0.0001*m.x116*
m.x41 + 0.0001*m.x116*m.x42 + 0.0001*m.x116*m.x43 + 0.0001*m.x116*m.x44 + 0.0001*m.x116*m.x45 +
0.0001*m.x116*m.x46 + 0.0001*m.x116*m.x47 + 0.0001*m.x116*m.x48 + 0.0001*m.x116*m.x49 + 0.0001*
m.x116*m.x50 + 0.0001*m.x116*m.x51 + 0.0001*m.x116*m.x52 + 0.0001*m.x116*m.x53 + 0.0001*m.x116*
m.x54 + 0.0001*m.x116*m.x55 + 0.0001*m.x116*m.x56 + 0.0001*m.x116*m.x57 + 0.0001*m.x116*m.x58 +
0.0001*m.x116*m.x59 + 0.0001*m.x116*m.x60 + 0.0001*m.x116*m.x61 + 0.0001*m.x116*m.x62 + 0.0001*
m.x116*m.x63 + 0.0001*m.x116*m.x64 + 0.0001*m.x116*m.x65 + 0.0001*m.x116*m.x66 + 0.0001*m.x116*
m.x67 + 0.0001*m.x116*m.x68 + 0.0001*m.x116*m.x69 + 0.0001*m.x116*m.x70 + 0.0001*m.x116*m.x71 +
0.0001*m.x116*m.x72 + 0.0001*m.x116*m.x73 + 0.0001*m.x116*m.x74 + 0.0001*m.x116*m.x75 + 0.0001*
m.x116*m.x76 + 0.0001*m.x116*m.x77 + 0.0001*m.x116*m.x78 + 0.0001*m.x116*m.x79 + 0.0001*m.x116*
m.x80 + 0.0001*m.x116*m.x81 + 0.0001*m.x116*m.x82 + 0.0001*m.x116*m.x83 + 0.0001*m.x116*m.x84 +
0.0001*m.x116*m.x85 + 0.0001*m.x116*m.x86 + 0.0001*m.x116*m.x87 + 0.0001*m.x116*m.x88 + 0.0001*
m.x116*m.x89 + 0.0001*m.x116*m.x90 + 0.0001*m.x116*m.x91 + 0.0001*m.x116*m.x92 + 0.0001*m.x116*
m.x93 + 0.0001*m.x116*m.x94 + 0.0001*m.x116*m.x95 + 0.0001*m.x116*m.x96 + 0.0001*m.x116*m.x97 +
0.0001*m.x116*m.x98 + 0.0001*m.x116*m.x99 + 0.0001*m.x116*m.x100 + 0.0001*m.x116*m.x101 + 0.0001*
m.x116*m.x102 + 0.0001*m.x116*m.x103 + 0.0001*m.x116*m.x104 + 0.0001*m.x116*m.x105 + 0.0001*
m.x116*m.x106 + 0.0001*m.x116*m.x107 + 0.0001*m.x116*m.x108 + 0.0001*m.x116*m.x109 + 0.0001*
m.x116*m.x110 + 0.0001*m.x116*m.x111 + 0.0001*m.x116*m.x112 + 0.0001*m.x116*m.x113 + 0.0001*
m.x116*m.x114 + 0.0001*m.x116*m.x115 + 6.78289880780816*m.x116**2 + 0.0001*m.x116*m.x117 + 0.0001
*m.x116*m.x118 + 0.0001*m.x116*m.x119 + 0.0001*m.x116*m.x120 + 0.0001*m.x116*m.x121 + 0.0001*
m.x116*m.x122 + 0.0001*m.x116*m.x123 + 0.0001*m.x116*m.x124 + 0.0001*m.x116*m.x125 + 0.0001*
m.x116*m.x126 + 0.0001*m.x116*m.x127 + 0.0001*m.x116*m.x128 + 0.530384532962827*m.x116*m.x129 +
0.0001*m.x116*m.x130 + 0.0001*m.x116*m.x131 + 0.0001*m.x116*m.x132 + 0.0001*m.x116*m.x133 +
0.0001*m.x116*m.x134 + 0.0001*m.x116*m.x135 + 0.0001*m.x116*m.x136 + 0.0001*m.x116*m.x137 +
0.0001*m.x116*m.x138 + 0.0001*m.x116*m.x139 + 0.0001*m.x116*m.x140 + 0.0001*m.x116*m.x141 +
9.26079022689604*m.x116*m.x142 + 0.0001*m.x116*m.x143 + 0.0001*m.x116*m.x144 + 0.0001*m.x116*
m.x145 + 0.0001*m.x116*m.x146 + 0.0001*m.x116*m.x147 + 0.0001*m.x116*m.x148 + 0.0001*m.x116*
m.x149 + 0.0001*m.x116*m.x150 + 0.0001*m.x116*m.x151 + 0.0001*m.x116*m.x152 + 0.0001*m.x116*
m.x153 + 0.0001*m.x116*m.x154 + 0.0001*m.x116*m.x155 + 0.0001*m.x116*m.x156 + 6.1573862905904*
m.x116*m.x157 + 0.0001*m.x116*m.x158 + 0.0001*m.x116*m.x159 + 0.0001*m.x116*m.x160 + 0.0001*
m.x116*m.x161 + 0.0001*m.x116*m.x162 + 0.0001*m.x116*m.x163 + 0.0001*m.x116*m.x164 + 0.0001*
m.x116*m.x165 + 0.0001*m.x116*m.x166 + 0.0001*m.x116*m.x167 + 0.0001*m.x116*m.x168 + 0.0001*
m.x116*m.x169 + 0.499857982206522*m.x116*m.x170 + 0.0001*m.x116*m.x171 + 0.0001*m.x116*m.x172 +
0.0001*m.x116*m.x173 + 0.0001*m.x116*m.x174 + 0.0001*m.x116*m.x175 + 0.0001*m.x116*m.x176 +
0.0001*m.x116*m.x177 + 0.0001*m.x116*m.x178 + 0.0001*m.x116*m.x179 + 0.0001*m.x116*m.x180 +
0.0001*m.x116*m.x181 + 0.0001*m.x116*m.x182 + 0.0001*m.x116*m.x183 + 0.0001*m.x116*m.x184 +
0.0001*m.x116*m.x185 + 0.0001*m.x117*m.x1 + 0.0001*m.x117*m.x2 + 0.0001*m.x117*m.x3 + 0.0001*
m.x117*m.x4 + 0.0001*m.x117*m.x5 + 0.0001*m.x117*m.x6 + 0.0001*m.x117*m.x7 + 0.0001*m.x117*m.x8
+ 0.0001*m.x117*m.x9 + 0.0001*m.x117*m.x10 + 0.0001*m.x117*m.x11 + 0.0001*m.x117*m.x12 + 0.0001*
m.x117*m.x13 + 0.0001*m.x117*m.x14 + 0.0001*m.x117*m.x15 + 0.0001*m.x117*m.x16 + 0.0001*m.x117*
m.x17 + 0.0001*m.x117*m.x18 + 0.0001*m.x117*m.x19 + 0.0001*m.x117*m.x20 + 0.0001*m.x117*m.x21 +
0.0001*m.x117*m.x22 + 0.0001*m.x117*m.x23 + 0.0001*m.x117*m.x24 + 0.0001*m.x117*m.x25 + 0.0001*
m.x117*m.x26 + 0.0001*m.x117*m.x27 + 0.0001*m.x117*m.x28 + 0.0001*m.x117*m.x29 + 0.0001*m.x117*
m.x30 + 0.0001*m.x117*m.x31 + 0.0001*m.x117*m.x32 + 0.0001*m.x117*m.x33 + 0.0001*m.x117*m.x34 +
0.0001*m.x117*m.x35 + 0.0001*m.x117*m.x36 + 0.0001*m.x117*m.x37 + 0.0001*m.x117*m.x38 + 0.0001*
m.x117*m.x39 + 0.0001*m.x117*m.x40 + 0.0001*m.x117*m.x41 + 0.0001*m.x117*m.x42 + 0.0001*m.x117*
m.x43 + 0.0001*m.x117*m.x44 + 0.0001*m.x117*m.x45 + 0.0001*m.x117*m.x46 + 0.0001*m.x117*m.x47 +
0.0001*m.x117*m.x48 + 0.0001*m.x117*m.x49 + 0.0001*m.x117*m.x50 + 0.0001*m.x117*m.x51 + 0.0001*
m.x117*m.x52 + 0.0001*m.x117*m.x53 + 0.0001*m.x117*m.x54 + 0.0001*m.x117*m.x55 + 0.0001*m.x117*
m.x56 + 0.0001*m.x117*m.x57 + 0.0001*m.x117*m.x58 + 0.0001*m.x117*m.x59 + 0.510414133291693*
m.x117*m.x60 + 0.0001*m.x117*m.x61 + 0.0001*m.x117*m.x62 + 0.0001*m.x117*m.x63 + 0.0001*m.x117*
m.x64 + 0.0001*m.x117*m.x65 + 0.0001*m.x117*m.x66 + 0.0001*m.x117*m.x67 + 0.0001*m.x117*m.x68 +
0.0001*m.x117*m.x69 + 0.0001*m.x117*m.x70 + 0.0001*m.x117*m.x71 + 1.48587678002252*m.x117*m.x72
+ 0.0001*m.x117*m.x73 + 0.0001*m.x117*m.x74 + 0.0001*m.x117*m.x75 + 0.0001*m.x117*m.x76 + 0.0001
*m.x117*m.x77 + 0.0001*m.x117*m.x78 + 0.0001*m.x117*m.x79 + 0.0001*m.x117*m.x80 + 0.0001*m.x117*
m.x81 + 0.0001*m.x117*m.x82 + 0.0001*m.x117*m.x83 + 0.0001*m.x117*m.x84 + 0.0001*m.x117*m.x85 +
0.0001*m.x117*m.x86 + 0.0001*m.x117*m.x87 + 0.0001*m.x117*m.x88 + 0.0001*m.x117*m.x89 + 0.0001*
m.x117*m.x90 + 0.0001*m.x117*m.x91 + 0.0001*m.x117*m.x92 + 0.0001*m.x117*m.x93 + 0.0001*m.x117*
m.x94 + 0.0001*m.x117*m.x95 + 0.0001*m.x117*m.x96 + 0.0001*m.x117*m.x97 + 0.0001*m.x117*m.x98 +
0.0001*m.x117*m.x99 + 0.0001*m.x117*m.x100 + 0.0001*m.x117*m.x101 + 0.0001*m.x117*m.x102 + 0.0001
*m.x117*m.x103 + 0.0001*m.x117*m.x104 + 0.0001*m.x117*m.x105 + 0.0001*m.x117*m.x106 + 0.0001*
m.x117*m.x107 + 0.0001*m.x117*m.x108 + 0.0001*m.x117*m.x109 + 0.0001*m.x117*m.x110 + 0.0001*
m.x117*m.x111 + 0.0001*m.x117*m.x112 + 0.0001*m.x117*m.x113 + 0.0001*m.x117*m.x114 + 0.0001*
m.x117*m.x115 + 0.0001*m.x117*m.x116 + 6.81443713506891*m.x117**2 + 0.0001*m.x117*m.x118 + 0.0001
*m.x117*m.x119 + 0.0001*m.x117*m.x120 + 0.0001*m.x117*m.x121 + 0.0001*m.x117*m.x122 + 0.0001*
m.x117*m.x123 + 0.0001*m.x117*m.x124 + 0.0001*m.x117*m.x125 + 0.0001*m.x117*m.x126 + 0.0001*
m.x117*m.x127 + 0.0001*m.x117*m.x128 + 0.0001*m.x117*m.x129 + 0.0001*m.x117*m.x130 + 0.0001*
m.x117*m.x131 + 0.0001*m.x117*m.x132 + 0.0001*m.x117*m.x133 + 0.0001*m.x117*m.x134 + 0.0001*
m.x117*m.x135 + 0.0001*m.x117*m.x136 + 0.0001*m.x117*m.x137 + 0.0001*m.x117*m.x138 + 0.0001*
m.x117*m.x139 + 0.0001*m.x117*m.x140 + 0.0001*m.x117*m.x141 + 0.0001*m.x117*m.x142 +
9.26079022689604*m.x117*m.x143 + 0.0001*m.x117*m.x144 + 0.0001*m.x117*m.x145 + 0.0001*m.x117*
m.x146 + 0.0001*m.x117*m.x147 + 0.0001*m.x117*m.x148 + 0.0001*m.x117*m.x149 + 0.0001*m.x117*
m.x150 + 0.0001*m.x117*m.x151 + 0.0001*m.x117*m.x152 + 0.0001*m.x117*m.x153 + 0.0001*m.x117*
m.x154 + 0.0001*m.x117*m.x155 + 0.0001*m.x117*m.x156 + 0.0001*m.x117*m.x157 + 6.63439031667751*
m.x117*m.x158 + 0.0001*m.x117*m.x159 + 0.0001*m.x117*m.x160 + 0.0001*m.x117*m.x161 + 0.0001*
m.x117*m.x162 + 0.0001*m.x117*m.x163 + 0.0001*m.x117*m.x164 + 0.0001*m.x117*m.x165 + 0.0001*
m.x117*m.x166 + 0.0001*m.x117*m.x167 + 0.0001*m.x117*m.x168 + 0.0001*m.x117*m.x169 + 0.0001*
m.x117*m.x170 + 0.0001*m.x117*m.x171 + 0.0001*m.x117*m.x172 + 0.0001*m.x117*m.x173 + 0.0001*
m.x117*m.x174 + 0.0001*m.x117*m.x175 + 0.0001*m.x117*m.x176 + 0.0001*m.x117*m.x177 + 0.0001*
m.x117*m.x178 + 0.0001*m.x117*m.x179 + 0.0001*m.x117*m.x180 + 0.0001*m.x117*m.x181 + 0.0001*
m.x117*m.x182 + 0.0001*m.x117*m.x183 + 0.0001*m.x117*m.x184 + 0.0001*m.x117*m.x185 + 0.0001*
m.x118*m.x1 + 0.0001*m.x118*m.x2 + 0.0001*m.x118*m.x3 + 0.0001*m.x118*m.x4 + 0.0001*m.x118*m.x5
+ 0.0001*m.x118*m.x6 + 0.0001*m.x118*m.x7 + 0.0001*m.x118*m.x8 + 0.0001*m.x118*m.x9 + 0.0001*
m.x118*m.x10 + 0.0001*m.x118*m.x11 + 0.0001*m.x118*m.x12 + 0.0001*m.x118*m.x13 + 0.0001*m.x118*
m.x14 + 0.0001*m.x118*m.x15 + 0.0001*m.x118*m.x16 + 0.0001*m.x118*m.x17 + 0.0001*m.x118*m.x18 +
0.0001*m.x118*m.x19 + 0.0001*m.x118*m.x20 + 0.0001*m.x118*m.x21 + 0.0001*m.x118*m.x22 + 0.0001*
m.x118*m.x23 + 0.0001*m.x118*m.x24 + 0.0001*m.x118*m.x25 + 0.0001*m.x118*m.x26 + 0.0001*m.x118*
m.x27 + 0.0001*m.x118*m.x28 + 0.0001*m.x118*m.x29 + 0.0001*m.x118*m.x30 + 0.0001*m.x118*m.x31 +
0.0001*m.x118*m.x32 + 0.0001*m.x118*m.x33 + 0.0001*m.x118*m.x34 + 0.0001*m.x118*m.x35 + 0.0001*
m.x118*m.x36 + 0.0001*m.x118*m.x37 + 0.0001*m.x118*m.x38 + 0.0001*m.x118*m.x39 + 0.0001*m.x118*
m.x40 + 0.0001*m.x118*m.x41 + 0.0001*m.x118*m.x42 + 0.0001*m.x118*m.x43 + 0.0001*m.x118*m.x44 +
0.0001*m.x118*m.x45 + 0.0001*m.x118*m.x46 + 0.0001*m.x118*m.x47 + 0.0001*m.x118*m.x48 + 0.0001*
m.x118*m.x49 + 0.0001*m.x118*m.x50 + 0.0001*m.x118*m.x51 + 0.0001*m.x118*m.x52 + 0.0001*m.x118*
m.x53 + 0.0001*m.x118*m.x54 + 0.0001*m.x118*m.x55 + 0.0001*m.x118*m.x56 + 0.0001*m.x118*m.x57 +
0.0001*m.x118*m.x58 + 0.0001*m.x118*m.x59 + 0.0001*m.x118*m.x60 + 0.0001*m.x118*m.x61 + 0.0001*
m.x118*m.x62 + 0.0001*m.x118*m.x63 + 0.0001*m.x118*m.x64 + 0.0001*m.x118*m.x65 + 0.0001*m.x118*
m.x66 + 0.0001*m.x118*m.x67 + 0.0001*m.x118*m.x68 + 0.0001*m.x118*m.x69 + 0.0001*m.x118*m.x70 +
0.0001*m.x118*m.x71 + 0.0001*m.x118*m.x72 + 0.825676042763423*m.x118*m.x73 + 0.0001*m.x118*m.x74
+ 0.0001*m.x118*m.x75 + 0.0001*m.x118*m.x76 + 0.0001*m.x118*m.x77 + 0.0001*m.x118*m.x78 + 0.0001
*m.x118*m.x79 + 0.0001*m.x118*m.x80 + 0.0001*m.x118*m.x81 + 0.0001*m.x118*m.x82 + 0.0001*m.x118*
m.x83 + 0.0001*m.x118*m.x84 + 0.0001*m.x118*m.x85 + 0.0001*m.x118*m.x86 + 0.0001*m.x118*m.x87 +
0.0001*m.x118*m.x88 + 0.0001*m.x118*m.x89 + 0.0001*m.x118*m.x90 + 0.0001*m.x118*m.x91 + 0.0001*
m.x118*m.x92 + 0.0001*m.x118*m.x93 + 0.0001*m.x118*m.x94 + 0.0001*m.x118*m.x95 + 0.0001*m.x118*
m.x96 + 0.0001*m.x118*m.x97 + 0.0001*m.x118*m.x98 + 0.0001*m.x118*m.x99 + 0.0001*m.x118*m.x100 +
0.0001*m.x118*m.x101 + 0.0001*m.x118*m.x102 + 0.0001*m.x118*m.x103 + 0.0001*m.x118*m.x104 +
0.0001*m.x118*m.x105 + 0.0001*m.x118*m.x106 + 0.0001*m.x118*m.x107 + 0.0001*m.x118*m.x108 +
0.0001*m.x118*m.x109 + 0.0001*m.x118*m.x110 + 0.0001*m.x118*m.x111 + 0.0001*m.x118*m.x112 +
0.0001*m.x118*m.x113 + 0.0001*m.x118*m.x114 + 0.0001*m.x118*m.x115 + 0.0001*m.x118*m.x116 +
0.0001*m.x118*m.x117 + 4.44490293411745*m.x118**2 + 0.0001*m.x118*m.x119 + 0.0001*m.x118*m.x120
+ 0.0001*m.x118*m.x121 + 0.0001*m.x118*m.x122 + 0.0001*m.x118*m.x123 + 0.0001*m.x118*m.x124 +
0.0001*m.x118*m.x125 + 0.0001*m.x118*m.x126 + 0.0001*m.x118*m.x127 + 0.0001*m.x118*m.x128 +
0.0001*m.x118*m.x129 + 0.0001*m.x118*m.x130 + 0.0001*m.x118*m.x131 + 0.0001*m.x118*m.x132 +
0.0001*m.x118*m.x133 + 0.0001*m.x118*m.x134 + 0.0001*m.x118*m.x135 + 0.0001*m.x118*m.x136 +
0.0001*m.x118*m.x137 + 0.0001*m.x118*m.x138 + 0.0001*m.x118*m.x139 + 0.0001*m.x118*m.x140 +
0.0001*m.x118*m.x141 + 0.0001*m.x118*m.x142 + 0.0001*m.x118*m.x143 + 5.79346015976993*m.x118*
m.x144 + 0.0001*m.x118*m.x145 + 0.0001*m.x118*m.x146 + 0.0001*m.x118*m.x147 + 0.0001*m.x118*
m.x148 + 0.0001*m.x118*m.x149 + 0.0001*m.x118*m.x150 + 0.0001*m.x118*m.x151 + 0.0001*m.x118*
m.x152 + 0.0001*m.x118*m.x153 + 0.0001*m.x118*m.x154 + 0.0001*m.x118*m.x155 + 0.0001*m.x118*
m.x156 + 0.0001*m.x118*m.x157 + 0.0001*m.x118*m.x158 + 4.32746339292626*m.x118*m.x159 + 0.0001*
m.x118*m.x160 + 0.0001*m.x118*m.x161 + 0.0001*m.x118*m.x162 + 0.0001*m.x118*m.x163 + 0.0001*
m.x118*m.x164 + 0.0001*m.x118*m.x165 + 0.0001*m.x118*m.x166 + 0.0001*m.x118*m.x167 + 0.0001*
m.x118*m.x168 + 0.0001*m.x118*m.x169 + 0.0001*m.x118*m.x170 + 0.0001*m.x118*m.x171 + 0.0001*
m.x118*m.x172 + 0.0001*m.x118*m.x173 + 0.0001*m.x118*m.x174 + 0.0001*m.x118*m.x175 + 0.0001*
m.x118*m.x176 + 0.0001*m.x118*m.x177 + 0.0001*m.x118*m.x178 + 0.0001*m.x118*m.x179 + 0.0001*
m.x118*m.x180 + 0.0001*m.x118*m.x181 + 0.0001*m.x118*m.x182 + 0.0001*m.x118*m.x183 + 0.0001*
m.x118*m.x184 + 0.0001*m.x118*m.x185 + 0.0001*m.x119*m.x1 + 0.0001*m.x119*m.x2 + 0.0001*m.x119*
m.x3 + 0.0001*m.x119*m.x4 + 0.0001*m.x119*m.x5 + 0.0001*m.x119*m.x6 + 0.0001*m.x119*m.x7 + 0.0001
*m.x119*m.x8 + 0.0001*m.x119*m.x9 + 0.0001*m.x119*m.x10 + 0.0001*m.x119*m.x11 + 0.0001*m.x119*
m.x12 + 0.0001*m.x119*m.x13 + 0.0001*m.x119*m.x14 + 0.0001*m.x119*m.x15 + 0.0001*m.x119*m.x16 +
0.0001*m.x119*m.x17 + 0.0001*m.x119*m.x18 + 0.0001*m.x119*m.x19 + 0.0001*m.x119*m.x20 + 0.0001*
m.x119*m.x21 + 0.0001*m.x119*m.x22 + 0.0001*m.x119*m.x23 + 0.0001*m.x119*m.x24 + 0.0001*m.x119*
m.x25 + 0.0001*m.x119*m.x26 + 0.0001*m.x119*m.x27 + 0.0001*m.x119*m.x28 + 0.0001*m.x119*m.x29 +
0.0001*m.x119*m.x30 + 0.0001*m.x119*m.x31 + 0.0001*m.x119*m.x32 + 0.0001*m.x119*m.x33 + 0.0001*
m.x119*m.x34 + 0.0001*m.x119*m.x35 + 0.0001*m.x119*m.x36 + 0.0001*m.x119*m.x37 + 0.0001*m.x119*
m.x38 + 0.0001*m.x119*m.x39 + 0.0001*m.x119*m.x40 + 0.0001*m.x119*m.x41 + 0.0001*m.x119*m.x42 +
0.0001*m.x119*m.x43 + 0.0001*m.x119*m.x44 + 0.0001*m.x119*m.x45 + 0.0001*m.x119*m.x46 + 0.0001*
m.x119*m.x47 + 0.0001*m.x119*m.x48 + 0.0001*m.x119*m.x49 + 0.0001*m.x119*m.x50 + 0.0001*m.x119*
m.x51 + 0.0001*m.x119*m.x52 + 0.0001*m.x119*m.x53 + 0.0001*m.x119*m.x54 + 0.0001*m.x119*m.x55 +
0.0001*m.x119*m.x56 + 0.0001*m.x119*m.x57 + 0.0001*m.x119*m.x58 + 0.0001*m.x119*m.x59 + 0.0001*
m.x119*m.x60 + 0.0001*m.x119*m.x61 + 0.0001*m.x119*m.x62 + 0.0001*m.x119*m.x63 + 0.0001*m.x119*
m.x64 + 0.0001*m.x119*m.x65 + 0.0001*m.x119*m.x66 + 0.0001*m.x119*m.x67 + 0.0001*m.x119*m.x68 +
0.0001*m.x119*m.x69 + 0.0001*m.x119*m.x70 + 0.0001*m.x119*m.x71 + 0.0001*m.x119*m.x72 + 0.0001*
m.x119*m.x73 + 0.726124762373682*m.x119*m.x74 + 0.0001*m.x119*m.x75 + 0.0001*m.x119*m.x76 +
0.0001*m.x119*m.x77 + 0.0001*m.x119*m.x78 + 0.0001*m.x119*m.x79 + 0.0001*m.x119*m.x80 + 0.0001*
m.x119*m.x81 + 0.0001*m.x119*m.x82 + 0.0001*m.x119*m.x83 + 0.0001*m.x119*m.x84 + 0.0001*m.x119*
m.x85 + 0.0001*m.x119*m.x86 + 0.0001*m.x119*m.x87 + 0.0001*m.x119*m.x88 + 0.0001*m.x119*m.x89 +
0.0001*m.x119*m.x90 + 0.0001*m.x119*m.x91 + 0.0001*m.x119*m.x92 + 0.0001*m.x119*m.x93 + 0.0001*
m.x119*m.x94 + 0.0001*m.x119*m.x95 + 0.0001*m.x119*m.x96 + 0.0001*m.x119*m.x97 + 0.0001*m.x119*
m.x98 + 0.0001*m.x119*m.x99 + 0.0001*m.x119*m.x100 + 0.0001*m.x119*m.x101 + 0.0001*m.x119*m.x102
+ 0.0001*m.x119*m.x103 + 0.0001*m.x119*m.x104 + 0.0001*m.x119*m.x105 + 0.0001*m.x119*m.x106 +
0.0001*m.x119*m.x107 + 0.0001*m.x119*m.x108 + 0.0001*m.x119*m.x109 + 0.0001*m.x119*m.x110 +
0.0001*m.x119*m.x111 + 0.0001*m.x119*m.x112 + 0.0001*m.x119*m.x113 + 0.0001*m.x119*m.x114 +
0.0001*m.x119*m.x115 + 0.0001*m.x119*m.x116 + 0.0001*m.x119*m.x117 + 0.0001*m.x119*m.x118 +
3.90750072903709*m.x119**2 + 0.0001*m.x119*m.x120 + 0.0001*m.x119*m.x121 + 0.0001*m.x119*m.x122
+ 0.0001*m.x119*m.x123 + 0.0001*m.x119*m.x124 + 0.0001*m.x119*m.x125 + 0.0001*m.x119*m.x126 +
0.0001*m.x119*m.x127 + 0.0001*m.x119*m.x128 + 0.0001*m.x119*m.x129 + 0.0001*m.x119*m.x130 +
0.0001*m.x119*m.x131 + 0.0001*m.x119*m.x132 + 0.0001*m.x119*m.x133 + 0.0001*m.x119*m.x134 +
0.0001*m.x119*m.x135 + 0.0001*m.x119*m.x136 + 0.0001*m.x119*m.x137 + 0.0001*m.x119*m.x138 +
0.0001*m.x119*m.x139 + 0.0001*m.x119*m.x140 + 0.0001*m.x119*m.x141 + 0.0001*m.x119*m.x142 +
0.0001*m.x119*m.x143 + 0.0001*m.x119*m.x144 + 6.32668681277508*m.x119*m.x145 + 0.0001*m.x119*
m.x146 + 0.0001*m.x119*m.x147 + 0.0001*m.x119*m.x148 + 0.0001*m.x119*m.x149 + 0.0001*m.x119*
m.x150 + 0.0001*m.x119*m.x151 + 0.0001*m.x119*m.x152 + 0.0001*m.x119*m.x153 + 0.0001*m.x119*
m.x154 + 0.0001*m.x119*m.x155 + 0.0001*m.x119*m.x156 + 0.0001*m.x119*m.x157 + 0.0001*m.x119*
m.x158 + 0.0001*m.x119*m.x159 + 3.80901503232404*m.x119*m.x160 + 0.0001*m.x119*m.x161 + 0.0001*
m.x119*m.x162 + 0.0001*m.x119*m.x163 + 0.0001*m.x119*m.x164 + 0.0001*m.x119*m.x165 + 0.0001*
m.x119*m.x166 + 0.0001*m.x119*m.x167 + 0.0001*m.x119*m.x168 + 0.0001*m.x119*m.x169 + 0.0001*
m.x119*m.x170 + 0.0001*m.x119*m.x171 + 0.0001*m.x119*m.x172 + 0.0001*m.x119*m.x173 + 0.0001*
m.x119*m.x174 + 0.0001*m.x119*m.x175 + 0.0001*m.x119*m.x176 + 0.0001*m.x119*m.x177 + 0.0001*
m.x119*m.x178 + 0.0001*m.x119*m.x179 + 0.0001*m.x119*m.x180 + 0.0001*m.x119*m.x181 + 0.0001*
m.x119*m.x182 + 0.0001*m.x119*m.x183 + 0.0001*m.x119*m.x184 + 0.0001*m.x119*m.x185 + 0.0001*
m.x120*m.x1 + 0.0001*m.x120*m.x2 + 0.0001*m.x120*m.x3 + 0.0001*m.x120*m.x4 + 0.0001*m.x120*m.x5
+ 0.0001*m.x120*m.x6 + 0.0001*m.x120*m.x7 + 0.0001*m.x120*m.x8 + 0.0001*m.x120*m.x9 + 0.0001*
m.x120*m.x10 + 0.0001*m.x120*m.x11 + 0.0001*m.x120*m.x12 + 0.0001*m.x120*m.x13 + 0.0001*m.x120*
m.x14 + 0.0001*m.x120*m.x15 + 0.0001*m.x120*m.x16 + 0.0001*m.x120*m.x17 + 0.0001*m.x120*m.x18 +
0.0001*m.x120*m.x19 + 0.0001*m.x120*m.x20 + 0.0001*m.x120*m.x21 + 0.0001*m.x120*m.x22 + 0.0001*
m.x120*m.x23 + 0.0001*m.x120*m.x24 + 0.0001*m.x120*m.x25 + 0.0001*m.x120*m.x26 + 0.0001*m.x120*
m.x27 + 0.0001*m.x120*m.x28 + 0.0001*m.x120*m.x29 + 0.0001*m.x120*m.x30 + 0.0001*m.x120*m.x31 +
0.0001*m.x120*m.x32 + 0.0001*m.x120*m.x33 + 0.0001*m.x120*m.x34 + 0.0001*m.x120*m.x35 + 0.0001*
m.x120*m.x36 + 0.0001*m.x120*m.x37 + 0.0001*m.x120*m.x38 + 0.0001*m.x120*m.x39 + 0.0001*m.x120*
m.x40 + 0.0001*m.x120*m.x41 + 0.0001*m.x120*m.x42 + 0.0001*m.x120*m.x43 + 0.0001*m.x120*m.x44 +
0.0001*m.x120*m.x45 + 0.0001*m.x120*m.x46 + 0.0001*m.x120*m.x47 + 0.0001*m.x120*m.x48 + 0.0001*
m.x120*m.x49 + 0.0001*m.x120*m.x50 + 0.0001*m.x120*m.x51 + 0.0001*m.x120*m.x52 + 0.0001*m.x120*
m.x53 + 0.0001*m.x120*m.x54 + 0.0001*m.x120*m.x55 + 0.0001*m.x120*m.x56 + 0.0001*m.x120*m.x57 +
0.0001*m.x120*m.x58 + 0.0001*m.x120*m.x59 + 0.0001*m.x120*m.x60 + 0.0001*m.x120*m.x61 + 0.0001*
m.x120*m.x62 + 0.0001*m.x120*m.x63 + 0.0001*m.x120*m.x64 + 0.0001*m.x120*m.x65 + 0.0001*m.x120*
m.x66 + 0.0001*m.x120*m.x67 + 0.0001*m.x120*m.x68 + 0.0001*m.x120*m.x69 + 0.0001*m.x120*m.x70 +
0.0001*m.x120*m.x71 + 0.0001*m.x120*m.x72 + 0.0001*m.x120*m.x73 + 0.0001*m.x120*m.x74 +
0.807657733076222*m.x120*m.x75 + 0.0001*m.x120*m.x76 + 0.0001*m.x120*m.x77 + 0.0001*m.x120*m.x78
+ 0.0001*m.x120*m.x79 + 0.0001*m.x120*m.x80 + 0.0001*m.x120*m.x81 + 0.0001*m.x120*m.x82 + 0.0001
*m.x120*m.x83 + 0.0001*m.x120*m.x84 + 0.0001*m.x120*m.x85 + 0.0001*m.x120*m.x86 + 0.0001*m.x120*
m.x87 + 0.0001*m.x120*m.x88 + 0.0001*m.x120*m.x89 + 0.0001*m.x120*m.x90 + 0.0001*m.x120*m.x91 +
0.0001*m.x120*m.x92 + 0.0001*m.x120*m.x93 + 0.0001*m.x120*m.x94 + 0.0001*m.x120*m.x95 + 0.0001*
m.x120*m.x96 + 0.0001*m.x120*m.x97 + 0.0001*m.x120*m.x98 + 0.0001*m.x120*m.x99 + 0.0001*m.x120*
m.x100 + 0.0001*m.x120*m.x101 + 0.0001*m.x120*m.x102 + 0.0001*m.x120*m.x103 + 0.0001*m.x120*
m.x104 + 0.0001*m.x120*m.x105 + 0.0001*m.x120*m.x106 + 0.0001*m.x120*m.x107 + 0.0001*m.x120*
m.x108 + 0.0001*m.x120*m.x109 + 0.0001*m.x120*m.x110 + 0.0001*m.x120*m.x111 + 0.0001*m.x120*
m.x112 + 0.0001*m.x120*m.x113 + 0.0001*m.x120*m.x114 + 0.0001*m.x120*m.x115 + 0.0001*m.x120*
m.x116 + 0.0001*m.x120*m.x117 + 0.0001*m.x120*m.x118 + 0.0001*m.x120*m.x119 + 3.90750072903709*
m.x120**2 + 0.0001*m.x120*m.x121 + 0.0001*m.x120*m.x122 + 0.0001*m.x120*m.x123 + 0.0001*m.x120*
m.x124 + 0.0001*m.x120*m.x125 + 0.0001*m.x120*m.x126 + 0.0001*m.x120*m.x127 + 0.0001*m.x120*
m.x128 + 0.0001*m.x120*m.x129 + 0.0001*m.x120*m.x130 + 0.0001*m.x120*m.x131 + 0.0001*m.x120*
m.x132 + 0.0001*m.x120*m.x133 + 0.0001*m.x120*m.x134 + 0.0001*m.x120*m.x135 + 0.0001*m.x120*
m.x136 + 0.0001*m.x120*m.x137 + 0.0001*m.x120*m.x138 + 0.0001*m.x120*m.x139 + 0.0001*m.x120*
m.x140 + 0.0001*m.x120*m.x141 + 0.0001*m.x120*m.x142 + 0.0001*m.x120*m.x143 + 0.0001*m.x120*
m.x144 + 0.0001*m.x120*m.x145 + 6.32668681277508*m.x120*m.x146 + 0.0001*m.x120*m.x147 + 0.0001*
m.x120*m.x148 + 0.0001*m.x120*m.x149 + 0.0001*m.x120*m.x150 + 0.0001*m.x120*m.x151 + 0.0001*
m.x120*m.x152 + 0.0001*m.x120*m.x153 + 0.0001*m.x120*m.x154 + 0.0001*m.x120*m.x155 + 0.0001*
m.x120*m.x156 + 0.0001*m.x120*m.x157 + 0.0001*m.x120*m.x158 + 0.0001*m.x120*m.x159 + 0.0001*
m.x120*m.x160 + 3.41170115969337*m.x120*m.x161 + 0.0001*m.x120*m.x162 + 0.0001*m.x120*m.x163 +
0.0001*m.x120*m.x164 + 0.0001*m.x120*m.x165 + 0.0001*m.x120*m.x166 + 0.0001*m.x120*m.x167 +
0.0001*m.x120*m.x168 + 0.0001*m.x120*m.x169 + 0.0001*m.x120*m.x170 + 0.0001*m.x120*m.x171 +
0.0001*m.x120*m.x172 + 0.0001*m.x120*m.x173 + 0.0001*m.x120*m.x174 + 0.0001*m.x120*m.x175 +
0.0001*m.x120*m.x176 + 0.0001*m.x120*m.x177 + 0.0001*m.x120*m.x178 + 0.0001*m.x120*m.x179 +
0.0001*m.x120*m.x180 + 0.0001*m.x120*m.x181 + 0.0001*m.x120*m.x182 + 0.0001*m.x120*m.x183 +
0.0001*m.x120*m.x184 + 0.0001*m.x120*m.x185 + 0.0001*m.x121*m.x1 + 0.0001*m.x121*m.x2 + 0.0001*
m.x121*m.x3 + 0.0001*m.x121*m.x4 + 0.0001*m.x121*m.x5 + 0.0001*m.x121*m.x6 + 0.0001*m.x121*m.x7
+ 0.0001*m.x121*m.x8 + 0.0001*m.x121*m.x9 + 0.0001*m.x121*m.x10 + 0.0001*m.x121*m.x11 + 0.0001*
m.x121*m.x12 + 0.0001*m.x121*m.x13 + 0.0001*m.x121*m.x14 + 0.0001*m.x121*m.x15 + 0.0001*m.x121*
m.x16 + 0.0001*m.x121*m.x17 + 0.0001*m.x121*m.x18 + 0.0001*m.x121*m.x19 + 0.0001*m.x121*m.x20 +
0.0001*m.x121*m.x21 + 0.0001*m.x121*m.x22 + 0.0001*m.x121*m.x23 + 0.0001*m.x121*m.x24 + 0.0001*
m.x121*m.x25 + 0.0001*m.x121*m.x26 + 0.0001*m.x121*m.x27 + 0.0001*m.x121*m.x28 + 0.0001*m.x121*
m.x29 + 0.0001*m.x121*m.x30 + 0.0001*m.x121*m.x31 + 0.0001*m.x121*m.x32 + 0.0001*m.x121*m.x33 +
0.0001*m.x121*m.x34 + 0.0001*m.x121*m.x35 + 0.0001*m.x121*m.x36 + 0.0001*m.x121*m.x37 + 0.0001*
m.x121*m.x38 + 0.0001*m.x121*m.x39 + 0.0001*m.x121*m.x40 + 0.0001*m.x121*m.x41 + 0.0001*m.x121*
m.x42 + 0.0001*m.x121*m.x43 + 0.0001*m.x121*m.x44 + 0.0001*m.x121*m.x45 + 0.0001*m.x121*m.x46 +
0.0001*m.x121*m.x47 + 0.0001*m.x121*m.x48 + 0.0001*m.x121*m.x49 + 0.0001*m.x121*m.x50 + 0.0001*
m.x121*m.x51 + 0.0001*m.x121*m.x52 + 0.0001*m.x121*m.x53 + 0.0001*m.x121*m.x54 + 0.0001*m.x121*
m.x55 + 0.0001*m.x121*m.x56 + 0.0001*m.x121*m.x57 + 0.0001*m.x121*m.x58 + 0.0001*m.x121*m.x59 +
0.0001*m.x121*m.x60 + 0.0001*m.x121*m.x61 + 0.0001*m.x121*m.x62 + 0.0001*m.x121*m.x63 + 0.0001*
m.x121*m.x64 + 0.0001*m.x121*m.x65 + 0.0001*m.x121*m.x66 + 0.0001*m.x121*m.x67 + 0.0001*m.x121*
m.x68 + 0.0001*m.x121*m.x69 + 0.0001*m.x121*m.x70 + 0.0001*m.x121*m.x71 + 0.0001*m.x121*m.x72 +
0.0001*m.x121*m.x73 + 0.0001*m.x121*m.x74 + 0.0001*m.x121*m.x75 + 0.87497610763658*m.x121*m.x76
+ 0.0001*m.x121*m.x77 + 0.0001*m.x121*m.x78 + 0.0001*m.x121*m.x79 + 0.0001*m.x121*m.x80 + 0.0001
*m.x121*m.x81 + 0.0001*m.x121*m.x82 + 0.0001*m.x121*m.x83 + 0.0001*m.x121*m.x84 + 0.0001*m.x121*
m.x85 + 0.0001*m.x121*m.x86 + 0.0001*m.x121*m.x87 + 0.0001*m.x121*m.x88 + 0.0001*m.x121*m.x89 +
0.0001*m.x121*m.x90 + 0.0001*m.x121*m.x91 + 0.0001*m.x121*m.x92 + 0.0001*m.x121*m.x93 + 0.0001*
m.x121*m.x94 + 0.0001*m.x121*m.x95 + 0.0001*m.x121*m.x96 + 0.0001*m.x121*m.x97 + 0.0001*m.x121*
m.x98 + 0.0001*m.x121*m.x99 + 0.0001*m.x121*m.x100 + 0.0001*m.x121*m.x101 + 0.0001*m.x121*m.x102
+ 0.0001*m.x121*m.x103 + 0.0001*m.x121*m.x104 + 0.0001*m.x121*m.x105 + 0.0001*m.x121*m.x106 +
0.0001*m.x121*m.x107 + 0.0001*m.x121*m.x108 + 0.0001*m.x121*m.x109 + 0.0001*m.x121*m.x110 +
0.0001*m.x121*m.x111 + 0.0001*m.x121*m.x112 + 0.0001*m.x121*m.x113 + 0.0001*m.x121*m.x114 +
0.0001*m.x121*m.x115 + 0.0001*m.x121*m.x116 + 0.0001*m.x121*m.x117 + 0.0001*m.x121*m.x118 +
0.0001*m.x121*m.x119 + 0.0001*m.x121*m.x120 + 4.23322340502799*m.x121**2 + 0.0001*m.x121*m.x122
+ 0.0001*m.x121*m.x123 + 0.0001*m.x121*m.x124 + 0.0001*m.x121*m.x125 + 0.0001*m.x121*m.x126 +
0.0001*m.x121*m.x127 + 0.0001*m.x121*m.x128 + 0.0001*m.x121*m.x129 + 0.0001*m.x121*m.x130 +
0.0001*m.x121*m.x131 + 0.0001*m.x121*m.x132 + 0.0001*m.x121*m.x133 + 0.0001*m.x121*m.x134 +
0.0001*m.x121*m.x135 + 0.0001*m.x121*m.x136 + 0.0001*m.x121*m.x137 + 0.0001*m.x121*m.x138 +
0.0001*m.x121*m.x139 + 0.0001*m.x121*m.x140 + 0.0001*m.x121*m.x141 + 0.0001*m.x121*m.x142 +
0.0001*m.x121*m.x143 + 0.0001*m.x121*m.x144 + 0.0001*m.x121*m.x145 + 0.0001*m.x121*m.x146 +
6.88571918292358*m.x121*m.x147 + 0.0001*m.x121*m.x148 + 0.0001*m.x121*m.x149 + 0.0001*m.x121*
m.x150 + 0.0001*m.x121*m.x151 + 0.0001*m.x121*m.x152 + 0.0001*m.x121*m.x153 + 0.0001*m.x121*
m.x154 + 0.0001*m.x121*m.x155 + 0.0001*m.x121*m.x156 + 0.0001*m.x121*m.x157 + 0.0001*m.x121*
m.x158 + 0.0001*m.x121*m.x159 + 0.0001*m.x121*m.x160 + 0.0001*m.x121*m.x161 + 3.69609376137639*
m.x121*m.x162 + 0.0001*m.x121*m.x163 + 0.0001*m.x121*m.x164 + 0.0001*m.x121*m.x165 + 0.0001*
m.x121*m.x166 + 0.0001*m.x121*m.x167 + 0.0001*m.x121*m.x168 + 0.0001*m.x121*m.x169 + 0.0001*
m.x121*m.x170 + 0.0001*m.x121*m.x171 + 0.0001*m.x121*m.x172 + 0.0001*m.x121*m.x173 + 0.0001*
m.x121*m.x174 + 0.0001*m.x121*m.x175 + 0.0001*m.x121*m.x176 + 0.0001*m.x121*m.x177 + 0.0001*
m.x121*m.x178 + 0.0001*m.x121*m.x179 + 0.0001*m.x121*m.x180 + 0.0001*m.x121*m.x181 + 0.0001*
m.x121*m.x182 + 0.0001*m.x121*m.x183 + 0.0001*m.x121*m.x184 + 0.0001*m.x121*m.x185 + 0.0001*
m.x122*m.x1 + 0.0001*m.x122*m.x2 + 0.0001*m.x122*m.x3 + 0.0001*m.x122*m.x4 + 0.0001*m.x122*m.x5
+ 0.0001*m.x122*m.x6 + 0.0001*m.x122*m.x7 + 0.0001*m.x122*m.x8 + 0.0001*m.x122*m.x9 + 0.0001*
m.x122*m.x10 + 0.0001*m.x122*m.x11 + 0.0001*m.x122*m.x12 + 0.0001*m.x122*m.x13 + 0.0001*m.x122*
m.x14 + 0.0001*m.x122*m.x15 + 0.0001*m.x122*m.x16 + 0.0001*m.x122*m.x17 + 0.0001*m.x122*m.x18 +
0.0001*m.x122*m.x19 + 0.0001*m.x122*m.x20 + 0.0001*m.x122*m.x21 + 0.0001*m.x122*m.x22 + 0.0001*
m.x122*m.x23 + 0.0001*m.x122*m.x24 + 0.0001*m.x122*m.x25 + 0.0001*m.x122*m.x26 + 0.0001*m.x122*
m.x27 + 0.0001*m.x122*m.x28 + 0.0001*m.x122*m.x29 + 0.0001*m.x122*m.x30 + 0.0001*m.x122*m.x31 +
0.0001*m.x122*m.x32 + 0.0001*m.x122*m.x33 + 0.0001*m.x122*m.x34 + 0.0001*m.x122*m.x35 + 0.0001*
m.x122*m.x36 + 0.0001*m.x122*m.x37 + 0.0001*m.x122*m.x38 + 0.0001*m.x122*m.x39 + 0.0001*m.x122*
m.x40 + 0.0001*m.x122*m.x41 + 0.0001*m.x122*m.x42 + 0.0001*m.x122*m.x43 + 0.0001*m.x122*m.x44 +
0.0001*m.x122*m.x45 + 0.0001*m.x122*m.x46 + 0.0001*m.x122*m.x47 + 0.0001*m.x122*m.x48 + 0.0001*
m.x122*m.x49 + 0.0001*m.x122*m.x50 + 0.0001*m.x122*m.x51 + 0.0001*m.x122*m.x52 + 0.0001*m.x122*
m.x53 + 0.0001*m.x122*m.x54 + 0.0001*m.x122*m.x55 + 0.0001*m.x122*m.x56 + 0.0001*m.x122*m.x57 +
0.0001*m.x122*m.x58 + 0.0001*m.x122*m.x59 + 0.0001*m.x122*m.x60 + 0.0001*m.x122*m.x61 + 0.0001*
m.x122*m.x62 + 0.0001*m.x122*m.x63 + 0.0001*m.x122*m.x64 + 0.0001*m.x122*m.x65 + 0.0001*m.x122*
m.x66 + 0.0001*m.x122*m.x67 + 0.0001*m.x122*m.x68 + 0.0001*m.x122*m.x69 + 0.0001*m.x122*m.x70 +
0.0001*m.x122*m.x71 + 0.0001*m.x122*m.x72 + 0.0001*m.x122*m.x73 + 0.0001*m.x122*m.x74 + 0.0001*
m.x122*m.x75 + 0.0001*m.x122*m.x76 + 0.914670511374364*m.x122*m.x77 + 0.0001*m.x122*m.x78 +
0.0001*m.x122*m.x79 + 0.0001*m.x122*m.x80 + 0.0001*m.x122*m.x81 + 0.0001*m.x122*m.x82 + 0.0001*
m.x122*m.x83 + 0.0001*m.x122*m.x84 + 0.0001*m.x122*m.x85 + 0.0001*m.x122*m.x86 + 0.0001*m.x122*
m.x87 + 0.0001*m.x122*m.x88 + 0.0001*m.x122*m.x89 + 0.0001*m.x122*m.x90 + 0.0001*m.x122*m.x91 +
0.0001*m.x122*m.x92 + 0.0001*m.x122*m.x93 + 0.0001*m.x122*m.x94 + 0.0001*m.x122*m.x95 + 0.0001*
m.x122*m.x96 + 0.0001*m.x122*m.x97 + 0.0001*m.x122*m.x98 + 0.0001*m.x122*m.x99 + 0.0001*m.x122*
m.x100 + 0.0001*m.x122*m.x101 + 0.0001*m.x122*m.x102 + 0.0001*m.x122*m.x103 + 0.0001*m.x122*
m.x104 + 0.0001*m.x122*m.x105 + 0.0001*m.x122*m.x106 + 0.0001*m.x122*m.x107 + 0.0001*m.x122*
m.x108 + 0.0001*m.x122*m.x109 + 0.0001*m.x122*m.x110 + 0.0001*m.x122*m.x111 + 0.0001*m.x122*
m.x112 + 0.0001*m.x122*m.x113 + 0.0001*m.x122*m.x114 + 0.0001*m.x122*m.x115 + 0.0001*m.x122*
m.x116 + 0.0001*m.x122*m.x117 + 0.0001*m.x122*m.x118 + 0.0001*m.x122*m.x119 + 0.0001*m.x122*
m.x120 + 0.0001*m.x122*m.x121 + 4.20902929929734*m.x122**2 + 0.0001*m.x122*m.x123 + 0.0001*m.x122
*m.x124 + 0.0001*m.x122*m.x125 + 0.0001*m.x122*m.x126 + 0.0001*m.x122*m.x127 + 0.0001*m.x122*
m.x128 + 0.0001*m.x122*m.x129 + 0.0001*m.x122*m.x130 + 0.0001*m.x122*m.x131 + 0.0001*m.x122*
m.x132 + 0.0001*m.x122*m.x133 + 0.0001*m.x122*m.x134 + 0.0001*m.x122*m.x135 + 0.0001*m.x122*
m.x136 + 0.0001*m.x122*m.x137 + 0.0001*m.x122*m.x138 + 0.0001*m.x122*m.x139 + 0.0001*m.x122*
m.x140 + 0.0001*m.x122*m.x141 + 0.0001*m.x122*m.x142 + 0.0001*m.x122*m.x143 + 0.0001*m.x122*
m.x144 + 0.0001*m.x122*m.x145 + 0.0001*m.x122*m.x146 + 0.0001*m.x122*m.x147 + 5.98091594661548*
m.x122*m.x148 + 0.0001*m.x122*m.x149 + 0.0001*m.x122*m.x150 + 0.0001*m.x122*m.x151 + 0.0001*
m.x122*m.x152 + 0.0001*m.x122*m.x153 + 0.0001*m.x122*m.x154 + 0.0001*m.x122*m.x155 + 0.0001*
m.x122*m.x156 + 0.0001*m.x122*m.x157 + 0.0001*m.x122*m.x158 + 0.0001*m.x122*m.x159 + 0.0001*
m.x122*m.x160 + 0.0001*m.x122*m.x161 + 0.0001*m.x122*m.x162 + 3.89841915597365*m.x122*m.x163 +
0.0001*m.x122*m.x164 + 0.0001*m.x122*m.x165 + 0.0001*m.x122*m.x166 + 0.0001*m.x122*m.x167 +
0.0001*m.x122*m.x168 + 0.0001*m.x122*m.x169 + 0.0001*m.x122*m.x170 + 0.0001*m.x122*m.x171 +
0.0001*m.x122*m.x172 + 0.0001*m.x122*m.x173 + 0.0001*m.x122*m.x174 + 0.0001*m.x122*m.x175 +
0.0001*m.x122*m.x176 + 0.0001*m.x122*m.x177 + 0.0001*m.x122*m.x178 + 0.0001*m.x122*m.x179 +
0.0001*m.x122*m.x180 + 0.0001*m.x122*m.x181 + 0.0001*m.x122*m.x182 + 0.0001*m.x122*m.x183 +
0.0001*m.x122*m.x184 + 0.0001*m.x122*m.x185 + 0.0001*m.x123*m.x1 + 0.0001*m.x123*m.x2 + 0.0001*
m.x123*m.x3 + 0.0001*m.x123*m.x4 + 0.0001*m.x123*m.x5 + 0.0001*m.x123*m.x6 + 0.0001*m.x123*m.x7
+ 0.0001*m.x123*m.x8 + 0.0001*m.x123*m.x9 + 0.0001*m.x123*m.x10 + 0.0001*m.x123*m.x11 + 0.0001*
m.x123*m.x12 + 0.0001*m.x123*m.x13 + 0.0001*m.x123*m.x14 + 0.0001*m.x123*m.x15 + 0.0001*m.x123*
m.x16 + 0.0001*m.x123*m.x17 + 0.0001*m.x123*m.x18 + 0.0001*m.x123*m.x19 + 0.0001*m.x123*m.x20 +
0.0001*m.x123*m.x21 + 0.0001*m.x123*m.x22 + 0.0001*m.x123*m.x23 + 0.0001*m.x123*m.x24 + 0.0001*
m.x123*m.x25 + 0.0001*m.x123*m.x26 + 0.0001*m.x123*m.x27 + 0.0001*m.x123*m.x28 + 0.0001*m.x123*
m.x29 + 0.0001*m.x123*m.x30 + 0.0001*m.x123*m.x31 + 0.0001*m.x123*m.x32 + 0.0001*m.x123*m.x33 +
0.0001*m.x123*m.x34 + 0.0001*m.x123*m.x35 + 0.0001*m.x123*m.x36 + 0.0001*m.x123*m.x37 + 0.0001*
m.x123*m.x38 + 0.0001*m.x123*m.x39 + 0.0001*m.x123*m.x40 + 0.0001*m.x123*m.x41 + 0.0001*m.x123*
m.x42 + 0.0001*m.x123*m.x43 + 0.0001*m.x123*m.x44 + 0.0001*m.x123*m.x45 + 0.0001*m.x123*m.x46 +
0.0001*m.x123*m.x47 + 0.0001*m.x123*m.x48 + 0.0001*m.x123*m.x49 + 0.0001*m.x123*m.x50 + 0.0001*
m.x123*m.x51 + 0.0001*m.x123*m.x52 + 0.0001*m.x123*m.x53 + 0.0001*m.x123*m.x54 + 0.0001*m.x123*
m.x55 + 0.0001*m.x123*m.x56 + 0.0001*m.x123*m.x57 + 0.0001*m.x123*m.x58 + 0.0001*m.x123*m.x59 +
0.0001*m.x123*m.x60 + 0.0001*m.x123*m.x61 + 0.0001*m.x123*m.x62 + 0.0001*m.x123*m.x63 + 0.0001*
m.x123*m.x64 + 0.0001*m.x123*m.x65 + 0.0001*m.x123*m.x66 + 0.0001*m.x123*m.x67 + 0.0001*m.x123*
m.x68 + 0.0001*m.x123*m.x69 + 0.0001*m.x123*m.x70 + 0.0001*m.x123*m.x71 + 0.0001*m.x123*m.x72 +
0.0001*m.x123*m.x73 + 0.0001*m.x123*m.x74 + 0.0001*m.x123*m.x75 + 0.0001*m.x123*m.x76 + 0.0001*
m.x123*m.x77 + 0.826148273240953*m.x123*m.x78 + 0.0001*m.x123*m.x79 + 0.0001*m.x123*m.x80 +
0.0001*m.x123*m.x81 + 0.0001*m.x123*m.x82 + 0.0001*m.x123*m.x83 + 0.0001*m.x123*m.x84 + 0.0001*
m.x123*m.x85 + 0.0001*m.x123*m.x86 + 0.0001*m.x123*m.x87 + 0.0001*m.x123*m.x88 + 0.0001*m.x123*
m.x89 + 0.0001*m.x123*m.x90 + 0.0001*m.x123*m.x91 + 0.0001*m.x123*m.x92 + 0.0001*m.x123*m.x93 +
0.0001*m.x123*m.x94 + 0.0001*m.x123*m.x95 + 0.0001*m.x123*m.x96 + 0.0001*m.x123*m.x97 + 0.0001*
m.x123*m.x98 + 0.0001*m.x123*m.x99 + 0.0001*m.x123*m.x100 + 0.0001*m.x123*m.x101 + 0.0001*m.x123*
m.x102 + 0.0001*m.x123*m.x103 + 0.0001*m.x123*m.x104 + 0.0001*m.x123*m.x105 + 0.0001*m.x123*
m.x106 + 0.0001*m.x123*m.x107 + 0.0001*m.x123*m.x108 + 0.0001*m.x123*m.x109 + 0.0001*m.x123*
m.x110 + 0.0001*m.x123*m.x111 + 0.0001*m.x123*m.x112 + 0.0001*m.x123*m.x113 + 0.0001*m.x123*
m.x114 + 0.0001*m.x123*m.x115 + 0.0001*m.x123*m.x116 + 0.0001*m.x123*m.x117 + 0.0001*m.x123*
m.x118 + 0.0001*m.x123*m.x119 + 0.0001*m.x123*m.x120 + 0.0001*m.x123*m.x121 + 0.0001*m.x123*
m.x122 + 4.07880738757785*m.x123**2 + 0.0001*m.x123*m.x124 + 0.0001*m.x123*m.x125 + 0.0001*m.x123
*m.x126 + 0.0001*m.x123*m.x127 + 0.0001*m.x123*m.x128 + 0.0001*m.x123*m.x129 + 0.0001*m.x123*
m.x130 + 0.0001*m.x123*m.x131 + 0.0001*m.x123*m.x132 + 0.0001*m.x123*m.x133 + 0.0001*m.x123*
m.x134 + 0.0001*m.x123*m.x135 + 0.0001*m.x123*m.x136 + 0.0001*m.x123*m.x137 + 0.0001*m.x123*
m.x138 + 0.0001*m.x123*m.x139 + 0.0001*m.x123*m.x140 + 0.0001*m.x123*m.x141 + 0.0001*m.x123*
m.x142 + 0.0001*m.x123*m.x143 + 0.0001*m.x123*m.x144 + 0.0001*m.x123*m.x145 + 0.0001*m.x123*
m.x146 + 0.0001*m.x123*m.x147 + 0.0001*m.x123*m.x148 + 5.98091594661548*m.x123*m.x149 + 0.0001*
m.x123*m.x150 + 0.0001*m.x123*m.x151 + 0.0001*m.x123*m.x152 + 0.0001*m.x123*m.x153 + 0.0001*
m.x123*m.x154 + 0.0001*m.x123*m.x155 + 0.0001*m.x123*m.x156 + 0.0001*m.x123*m.x157 + 0.0001*
m.x123*m.x158 + 0.0001*m.x123*m.x159 + 0.0001*m.x123*m.x160 + 0.0001*m.x123*m.x161 + 0.0001*
m.x123*m.x162 + 0.0001*m.x123*m.x163 + 4.06514255983911*m.x123*m.x164 + 0.0001*m.x123*m.x165 +
0.0001*m.x123*m.x166 + 0.0001*m.x123*m.x167 + 0.0001*m.x123*m.x168 + 0.0001*m.x123*m.x169 +
0.0001*m.x123*m.x170 + 0.0001*m.x123*m.x171 + 0.0001*m.x123*m.x172 + 0.0001*m.x123*m.x173 +
0.0001*m.x123*m.x174 + 0.0001*m.x123*m.x175 + 0.0001*m.x123*m.x176 + 0.0001*m.x123*m.x177 +
0.0001*m.x123*m.x178 + 0.0001*m.x123*m.x179 + 0.0001*m.x123*m.x180 + 0.0001*m.x123*m.x181 +
0.0001*m.x123*m.x182 + 0.0001*m.x123*m.x183 + 0.0001*m.x123*m.x184 + 0.0001*m.x123*m.x185 +
0.0001*m.x124*m.x1 + 0.0001*m.x124*m.x2 + 0.0001*m.x124*m.x3 + 0.0001*m.x124*m.x4 + 0.0001*m.x124
*m.x5 + 0.0001*m.x124*m.x6 + 0.0001*m.x124*m.x7 + 0.0001*m.x124*m.x8 + 0.0001*m.x124*m.x9 +
0.0001*m.x124*m.x10 + 0.0001*m.x124*m.x11 + 0.0001*m.x124*m.x12 + 0.0001*m.x124*m.x13 + 0.0001*
m.x124*m.x14 + 0.0001*m.x124*m.x15 + 0.0001*m.x124*m.x16 + 0.0001*m.x124*m.x17 + 0.0001*m.x124*
m.x18 + 0.0001*m.x124*m.x19 + 0.0001*m.x124*m.x20 + 0.0001*m.x124*m.x21 + 0.0001*m.x124*m.x22 +
0.0001*m.x124*m.x23 + 0.0001*m.x124*m.x24 + 0.0001*m.x124*m.x25 + 0.0001*m.x124*m.x26 + 0.0001*
m.x124*m.x27 + 0.0001*m.x124*m.x28 + 0.0001*m.x124*m.x29 + 0.0001*m.x124*m.x30 + 0.0001*m.x124*
m.x31 + 0.0001*m.x124*m.x32 + 0.0001*m.x124*m.x33 + 0.0001*m.x124*m.x34 + 0.0001*m.x124*m.x35 +
0.0001*m.x124*m.x36 + 0.0001*m.x124*m.x37 + 0.0001*m.x124*m.x38 + 0.0001*m.x124*m.x39 + 0.0001*
m.x124*m.x40 + 0.0001*m.x124*m.x41 + 0.0001*m.x124*m.x42 + 0.0001*m.x124*m.x43 + 0.0001*m.x124*
m.x44 + 0.0001*m.x124*m.x45 + 0.0001*m.x124*m.x46 + 0.0001*m.x124*m.x47 + 0.0001*m.x124*m.x48 +
0.0001*m.x124*m.x49 + 0.0001*m.x124*m.x50 + 0.0001*m.x124*m.x51 + 0.0001*m.x124*m.x52 + 0.0001*
m.x124*m.x53 + 0.0001*m.x124*m.x54 + 0.0001*m.x124*m.x55 + 0.0001*m.x124*m.x56 + 0.0001*m.x124*
m.x57 + 0.0001*m.x124*m.x58 + 0.0001*m.x124*m.x59 + 0.0001*m.x124*m.x60 + 0.0001*m.x124*m.x61 +
0.0001*m.x124*m.x62 + 0.0001*m.x124*m.x63 + 0.0001*m.x124*m.x64 + 0.0001*m.x124*m.x65 + 0.0001*
m.x124*m.x66 + 0.0001*m.x124*m.x67 + 0.0001*m.x124*m.x68 + 0.0001*m.x124*m.x69 + 0.0001*m.x124*
m.x70 + 0.0001*m.x124*m.x71 + 0.0001*m.x124*m.x72 + 0.0001*m.x124*m.x73 + 0.0001*m.x124*m.x74 +
0.0001*m.x124*m.x75 + 0.0001*m.x124*m.x76 + 0.0001*m.x124*m.x77 + 0.0001*m.x124*m.x78 +
0.789212707970006*m.x124*m.x79 + 0.0001*m.x124*m.x80 + 0.0001*m.x124*m.x81 + 0.0001*m.x124*m.x82
+ 0.0001*m.x124*m.x83 + 0.0001*m.x124*m.x84 + 0.0001*m.x124*m.x85 + 0.0001*m.x124*m.x86 + 0.0001
*m.x124*m.x87 + 0.0001*m.x124*m.x88 + 0.0001*m.x124*m.x89 + 0.0001*m.x124*m.x90 + 0.0001*m.x124*
m.x91 + 0.0001*m.x124*m.x92 + 0.0001*m.x124*m.x93 + 0.0001*m.x124*m.x94 + 0.0001*m.x124*m.x95 +
0.0001*m.x124*m.x96 + 0.0001*m.x124*m.x97 + 0.0001*m.x124*m.x98 + 0.0001*m.x124*m.x99 + 0.0001*
m.x124*m.x100 + 0.0001*m.x124*m.x101 + 0.0001*m.x124*m.x102 + 0.0001*m.x124*m.x103 + 0.0001*
m.x124*m.x104 + 0.0001*m.x124*m.x105 + 0.0001*m.x124*m.x106 + 0.0001*m.x124*m.x107 + 0.0001*
m.x124*m.x108 + 0.0001*m.x124*m.x109 + 0.0001*m.x124*m.x110 + 0.0001*m.x124*m.x111 + 0.0001*
m.x124*m.x112 + 0.0001*m.x124*m.x113 + 0.0001*m.x124*m.x114 + 0.0001*m.x124*m.x115 + 0.0001*
m.x124*m.x116 + 0.0001*m.x124*m.x117 + 0.0001*m.x124*m.x118 + 0.0001*m.x124*m.x119 + 0.0001*
m.x124*m.x120 + 0.0001*m.x124*m.x121 + 0.0001*m.x124*m.x122 + 0.0001*m.x124*m.x123 +
3.89643382925794*m.x124**2 + 0.0001*m.x124*m.x125 + 0.0001*m.x124*m.x126 + 0.0001*m.x124*m.x127
+ 0.0001*m.x124*m.x128 + 0.0001*m.x124*m.x129 + 0.0001*m.x124*m.x130 + 0.0001*m.x124*m.x131 +
0.0001*m.x124*m.x132 + 0.0001*m.x124*m.x133 + 0.0001*m.x124*m.x134 + 0.0001*m.x124*m.x135 +
0.0001*m.x124*m.x136 + 0.0001*m.x124*m.x137 + 0.0001*m.x124*m.x138 + 0.0001*m.x124*m.x139 +
0.0001*m.x124*m.x140 + 0.0001*m.x124*m.x141 + 0.0001*m.x124*m.x142 + 0.0001*m.x124*m.x143 +
0.0001*m.x124*m.x144 + 0.0001*m.x124*m.x145 + 0.0001*m.x124*m.x146 + 0.0001*m.x124*m.x147 +
0.0001*m.x124*m.x148 + 0.0001*m.x124*m.x149 + 5.69054082922776*m.x124*m.x150 + 0.0001*m.x124*
m.x151 + 0.0001*m.x124*m.x152 + 0.0001*m.x124*m.x153 + 0.0001*m.x124*m.x154 + 0.0001*m.x124*
m.x155 + 0.0001*m.x124*m.x156 + 0.0001*m.x124*m.x157 + 0.0001*m.x124*m.x158 + 0.0001*m.x124*
m.x159 + 0.0001*m.x124*m.x160 + 0.0001*m.x124*m.x161 + 0.0001*m.x124*m.x162 + 0.0001*m.x124*
m.x163 + 0.0001*m.x124*m.x164 + 3.88338000471745*m.x124*m.x165 + 0.0001*m.x124*m.x166 + 0.0001*
m.x124*m.x167 + 0.0001*m.x124*m.x168 + 0.0001*m.x124*m.x169 + 0.0001*m.x124*m.x170 + 0.0001*
m.x124*m.x171 + 0.0001*m.x124*m.x172 + 0.0001*m.x124*m.x173 + 0.0001*m.x124*m.x174 + 0.0001*
m.x124*m.x175 + 0.0001*m.x124*m.x176 + 0.0001*m.x124*m.x177 + 0.0001*m.x124*m.x178 + 0.0001*
m.x124*m.x179 + 0.0001*m.x124*m.x180 + 0.0001*m.x124*m.x181 + 0.0001*m.x124*m.x182 + 0.0001*
m.x124*m.x183 + 0.0001*m.x124*m.x184 + 0.0001*m.x124*m.x185 + 0.0001*m.x125*m.x1 + 0.0001*m.x125*
m.x2 + 0.0001*m.x125*m.x3 + 0.0001*m.x125*m.x4 + 0.0001*m.x125*m.x5 + 0.0001*m.x125*m.x6 + 0.0001
*m.x125*m.x7 + 0.0001*m.x125*m.x8 + 0.0001*m.x125*m.x9 + 0.0001*m.x125*m.x10 + 0.0001*m.x125*
m.x11 + 0.0001*m.x125*m.x12 + 0.0001*m.x125*m.x13 + 0.0001*m.x125*m.x14 + 0.0001*m.x125*m.x15 +
0.0001*m.x125*m.x16 + 0.0001*m.x125*m.x17 + 0.0001*m.x125*m.x18 + 0.0001*m.x125*m.x19 + 0.0001*
m.x125*m.x20 + 0.0001*m.x125*m.x21 + 0.0001*m.x125*m.x22 + 0.0001*m.x125*m.x23 + 0.0001*m.x125*
m.x24 + 0.0001*m.x125*m.x25 + 0.0001*m.x125*m.x26 + 0.0001*m.x125*m.x27 + 0.0001*m.x125*m.x28 +
0.0001*m.x125*m.x29 + 0.0001*m.x125*m.x30 + 0.0001*m.x125*m.x31 + 0.0001*m.x125*m.x32 + 0.0001*
m.x125*m.x33 + 0.0001*m.x125*m.x34 + 0.0001*m.x125*m.x35 + 0.0001*m.x125*m.x36 + 0.0001*m.x125*
m.x37 + 0.0001*m.x125*m.x38 + 0.0001*m.x125*m.x39 + 0.0001*m.x125*m.x40 + 0.0001*m.x125*m.x41 +
0.0001*m.x125*m.x42 + 0.0001*m.x125*m.x43 + 0.0001*m.x125*m.x44 + 0.0001*m.x125*m.x45 + 0.0001*
m.x125*m.x46 + 0.0001*m.x125*m.x47 + 0.0001*m.x125*m.x48 + 0.0001*m.x125*m.x49 + 0.0001*m.x125*
m.x50 + 0.0001*m.x125*m.x51 + 0.0001*m.x125*m.x52 + 0.0001*m.x125*m.x53 + 0.0001*m.x125*m.x54 +
0.0001*m.x125*m.x55 + 0.0001*m.x125*m.x56 + 0.0001*m.x125*m.x57 + 0.0001*m.x125*m.x58 + 0.0001*
m.x125*m.x59 + 0.0001*m.x125*m.x60 + 0.0001*m.x125*m.x61 + 0.0001*m.x125*m.x62 + 0.0001*m.x125*
m.x63 + 0.0001*m.x125*m.x64 + 0.0001*m.x125*m.x65 + 0.0001*m.x125*m.x66 + 0.0001*m.x125*m.x67 +
0.0001*m.x125*m.x68 + 0.0001*m.x125*m.x69 + 0.0001*m.x125*m.x70 + 0.0001*m.x125*m.x71 + 0.0001*
m.x125*m.x72 + 0.0001*m.x125*m.x73 + 0.0001*m.x125*m.x74 + 0.0001*m.x125*m.x75 + 0.0001*m.x125*
m.x76 + 0.0001*m.x125*m.x77 + 0.0001*m.x125*m.x78 + 0.0001*m.x125*m.x79 + 0.883116692568304*
m.x125*m.x80 + 0.0001*m.x125*m.x81 + 0.0001*m.x125*m.x82 + 0.0001*m.x125*m.x83 + 0.0001*m.x125*
m.x84 + 0.0001*m.x125*m.x85 + 0.0001*m.x125*m.x86 + 0.0001*m.x125*m.x87 + 0.0001*m.x125*m.x88 +
0.0001*m.x125*m.x89 + 0.0001*m.x125*m.x90 + 0.0001*m.x125*m.x91 + 0.0001*m.x125*m.x92 + 0.0001*
m.x125*m.x93 + 0.0001*m.x125*m.x94 + 0.0001*m.x125*m.x95 + 0.0001*m.x125*m.x96 + 0.0001*m.x125*
m.x97 + 0.0001*m.x125*m.x98 + 0.0001*m.x125*m.x99 + 0.0001*m.x125*m.x100 + 0.0001*m.x125*m.x101
+ 0.0001*m.x125*m.x102 + 0.0001*m.x125*m.x103 + 0.0001*m.x125*m.x104 + 0.0001*m.x125*m.x105 +
0.0001*m.x125*m.x106 + 0.0001*m.x125*m.x107 + 0.0001*m.x125*m.x108 + 0.0001*m.x125*m.x109 +
0.0001*m.x125*m.x110 + 0.0001*m.x125*m.x111 + 0.0001*m.x125*m.x112 + 0.0001*m.x125*m.x113 +
0.0001*m.x125*m.x114 + 0.0001*m.x125*m.x115 + 0.0001*m.x125*m.x116 + 0.0001*m.x125*m.x117 +
0.0001*m.x125*m.x118 + 0.0001*m.x125*m.x119 + 0.0001*m.x125*m.x120 + 0.0001*m.x125*m.x121 +
0.0001*m.x125*m.x122 + 0.0001*m.x125*m.x123 + 0.0001*m.x125*m.x124 + 5.15314060170647*m.x125**2
+ 0.0001*m.x125*m.x126 + 0.0001*m.x125*m.x127 + 0.0001*m.x125*m.x128 + 0.0001*m.x125*m.x129 +
0.0001*m.x125*m.x130 + 0.0001*m.x125*m.x131 + 0.0001*m.x125*m.x132 + 0.0001*m.x125*m.x133 +
0.0001*m.x125*m.x134 + 0.0001*m.x125*m.x135 + 0.0001*m.x125*m.x136 + 0.0001*m.x125*m.x137 +
0.0001*m.x125*m.x138 + 0.0001*m.x125*m.x139 + 0.0001*m.x125*m.x140 + 0.0001*m.x125*m.x141 +
0.0001*m.x125*m.x142 + 0.0001*m.x125*m.x143 + 0.0001*m.x125*m.x144 + 0.0001*m.x125*m.x145 +
0.0001*m.x125*m.x146 + 0.0001*m.x125*m.x147 + 0.0001*m.x125*m.x148 + 0.0001*m.x125*m.x149 +
0.0001*m.x125*m.x150 + 7.05569268711518*m.x125*m.x151 + 0.0001*m.x125*m.x152 + 0.0001*m.x125*
m.x153 + 0.0001*m.x125*m.x154 + 0.0001*m.x125*m.x155 + 0.0001*m.x125*m.x156 + 0.0001*m.x125*
m.x157 + 0.0001*m.x125*m.x158 + 0.0001*m.x125*m.x159 + 0.0001*m.x125*m.x160 + 0.0001*m.x125*
m.x161 + 0.0001*m.x125*m.x162 + 0.0001*m.x125*m.x163 + 0.0001*m.x125*m.x164 + 0.0001*m.x125*
m.x165 + 4.35805470035046*m.x125*m.x166 + 0.0001*m.x125*m.x167 + 0.0001*m.x125*m.x168 + 0.0001*
m.x125*m.x169 + 0.0001*m.x125*m.x170 + 0.0001*m.x125*m.x171 + 0.0001*m.x125*m.x172 + 0.0001*
m.x125*m.x173 + 0.0001*m.x125*m.x174 + 0.0001*m.x125*m.x175 + 0.0001*m.x125*m.x176 + 0.0001*
m.x125*m.x177 + 0.0001*m.x125*m.x178 + 0.0001*m.x125*m.x179 + 0.0001*m.x125*m.x180 + 0.0001*
m.x125*m.x181 + 0.0001*m.x125*m.x182 + 0.0001*m.x125*m.x183 + 0.0001*m.x125*m.x184 + 0.0001*
m.x125*m.x185 + 0.0001*m.x126*m.x1 + 0.0001*m.x126*m.x2 + 0.0001*m.x126*m.x3 + 0.0001*m.x126*m.x4
+ 0.0001*m.x126*m.x5 + 0.0001*m.x126*m.x6 + 0.0001*m.x126*m.x7 + 0.0001*m.x126*m.x8 + 0.0001*
m.x126*m.x9 + 0.0001*m.x126*m.x10 + 0.0001*m.x126*m.x11 + 0.0001*m.x126*m.x12 + 0.0001*m.x126*
m.x13 + 0.0001*m.x126*m.x14 + 0.0001*m.x126*m.x15 + 0.0001*m.x126*m.x16 + 0.0001*m.x126*m.x17 +
0.0001*m.x126*m.x18 + 0.0001*m.x126*m.x19 + 0.0001*m.x126*m.x20 + 0.0001*m.x126*m.x21 + 0.0001*
m.x126*m.x22 + 0.0001*m.x126*m.x23 + 0.0001*m.x126*m.x24 + 0.0001*m.x126*m.x25 + 0.0001*m.x126*
m.x26 + 0.0001*m.x126*m.x27 + 0.0001*m.x126*m.x28 + 0.0001*m.x126*m.x29 + 0.0001*m.x126*m.x30 +
0.0001*m.x126*m.x31 + 0.0001*m.x126*m.x32 + 0.0001*m.x126*m.x33 + 0.0001*m.x126*m.x34 + 0.0001*
m.x126*m.x35 + 0.0001*m.x126*m.x36 + 0.0001*m.x126*m.x37 + 0.0001*m.x126*m.x38 + 0.0001*m.x126*
m.x39 + 0.0001*m.x126*m.x40 + 0.0001*m.x126*m.x41 + 0.0001*m.x126*m.x42 + 0.0001*m.x126*m.x43 +
0.0001*m.x126*m.x44 + 0.0001*m.x126*m.x45 + 0.0001*m.x126*m.x46 + 0.0001*m.x126*m.x47 + 0.0001*
m.x126*m.x48 + 0.0001*m.x126*m.x49 + 0.0001*m.x126*m.x50 + 0.0001*m.x126*m.x51 + 0.0001*m.x126*
m.x52 + 0.0001*m.x126*m.x53 + 0.0001*m.x126*m.x54 + 0.0001*m.x126*m.x55 + 0.0001*m.x126*m.x56 +
0.0001*m.x126*m.x57 + 0.0001*m.x126*m.x58 + 0.0001*m.x126*m.x59 + 0.0001*m.x126*m.x60 + 0.0001*
m.x126*m.x61 + 0.0001*m.x126*m.x62 + 0.0001*m.x126*m.x63 + 0.0001*m.x126*m.x64 + 0.0001*m.x126*
m.x65 + 0.0001*m.x126*m.x66 + 0.0001*m.x126*m.x67 + 0.0001*m.x126*m.x68 + 0.0001*m.x126*m.x69 +
0.0001*m.x126*m.x70 + 0.0001*m.x126*m.x71 + 0.0001*m.x126*m.x72 + 0.0001*m.x126*m.x73 + 0.0001*
m.x126*m.x74 + 0.0001*m.x126*m.x75 + 0.0001*m.x126*m.x76 + 0.0001*m.x126*m.x77 + 0.0001*m.x126*
m.x78 + 0.0001*m.x126*m.x79 + 0.0001*m.x126*m.x80 + 0.920691215358521*m.x126*m.x81 + 0.0001*
m.x126*m.x82 + 0.0001*m.x126*m.x83 + 0.0001*m.x126*m.x84 + 0.0001*m.x126*m.x85 + 0.0001*m.x126*
m.x86 + 0.0001*m.x126*m.x87 + 0.0001*m.x126*m.x88 + 0.0001*m.x126*m.x89 + 0.0001*m.x126*m.x90 +
0.0001*m.x126*m.x91 + 0.0001*m.x126*m.x92 + 0.0001*m.x126*m.x93 + 0.0001*m.x126*m.x94 + 0.0001*
m.x126*m.x95 + 0.0001*m.x126*m.x96 + 0.0001*m.x126*m.x97 + 0.0001*m.x126*m.x98 + 0.0001*m.x126*
m.x99 + 0.0001*m.x126*m.x100 + 0.0001*m.x126*m.x101 + 0.0001*m.x126*m.x102 + 0.0001*m.x126*m.x103
+ 0.0001*m.x126*m.x104 + 0.0001*m.x126*m.x105 + 0.0001*m.x126*m.x106 + 0.0001*m.x126*m.x107 +
0.0001*m.x126*m.x108 + 0.0001*m.x126*m.x109 + 0.0001*m.x126*m.x110 + 0.0001*m.x126*m.x111 +
0.0001*m.x126*m.x112 + 0.0001*m.x126*m.x113 + 0.0001*m.x126*m.x114 + 0.0001*m.x126*m.x115 +
0.0001*m.x126*m.x116 + 0.0001*m.x126*m.x117 + 0.0001*m.x126*m.x118 + 0.0001*m.x126*m.x119 +
0.0001*m.x126*m.x120 + 0.0001*m.x126*m.x121 + 0.0001*m.x126*m.x122 + 0.0001*m.x126*m.x123 +
0.0001*m.x126*m.x124 + 0.0001*m.x126*m.x125 + 5.19327213087595*m.x126**2 + 0.0001*m.x126*m.x127
+ 0.0001*m.x126*m.x128 + 0.0001*m.x126*m.x129 + 0.0001*m.x126*m.x130 + 0.0001*m.x126*m.x131 +
0.0001*m.x126*m.x132 + 0.0001*m.x126*m.x133 + 0.0001*m.x126*m.x134 + 0.0001*m.x126*m.x135 +
0.0001*m.x126*m.x136 + 0.0001*m.x126*m.x137 + 0.0001*m.x126*m.x138 + 0.0001*m.x126*m.x139 +
0.0001*m.x126*m.x140 + 0.0001*m.x126*m.x141 + 0.0001*m.x126*m.x142 + 0.0001*m.x126*m.x143 +
0.0001*m.x126*m.x144 + 0.0001*m.x126*m.x145 + 0.0001*m.x126*m.x146 + 0.0001*m.x126*m.x147 +
0.0001*m.x126*m.x148 + 0.0001*m.x126*m.x149 + 0.0001*m.x126*m.x150 + 0.0001*m.x126*m.x151 +
7.05569268711518*m.x126*m.x152 + 0.0001*m.x126*m.x153 + 0.0001*m.x126*m.x154 + 0.0001*m.x126*
m.x155 + 0.0001*m.x126*m.x156 + 0.0001*m.x126*m.x157 + 0.0001*m.x126*m.x158 + 0.0001*m.x126*
m.x159 + 0.0001*m.x126*m.x160 + 0.0001*m.x126*m.x161 + 0.0001*m.x126*m.x162 + 0.0001*m.x126*
m.x163 + 0.0001*m.x126*m.x164 + 0.0001*m.x126*m.x165 + 0.0001*m.x126*m.x166 + 4.45694806359899*
m.x126*m.x167 + 0.0001*m.x126*m.x168 + 0.0001*m.x126*m.x169 + 0.0001*m.x126*m.x170 + 0.0001*
m.x126*m.x171 + 0.0001*m.x126*m.x172 + 0.0001*m.x126*m.x173 + 0.0001*m.x126*m.x174 + 0.0001*
m.x126*m.x175 + 0.0001*m.x126*m.x176 + 0.0001*m.x126*m.x177 + 0.0001*m.x126*m.x178 + 0.0001*
m.x126*m.x179 + 0.0001*m.x126*m.x180 + 0.0001*m.x126*m.x181 + 0.0001*m.x126*m.x182 + 0.0001*
m.x126*m.x183 + 0.0001*m.x126*m.x184 + 0.0001*m.x126*m.x185 + 0.0001*m.x127*m.x1 + 0.0001*m.x127*
m.x2 + 0.0001*m.x127*m.x3 + 0.0001*m.x127*m.x4 + 0.0001*m.x127*m.x5 + 0.0001*m.x127*m.x6 + 0.0001
*m.x127*m.x7 + 0.0001*m.x127*m.x8 + 0.0001*m.x127*m.x9 + 0.0001*m.x127*m.x10 + 0.0001*m.x127*
m.x11 + 0.0001*m.x127*m.x12 + 0.0001*m.x127*m.x13 + 0.0001*m.x127*m.x14 + 0.0001*m.x127*m.x15 +
0.0001*m.x127*m.x16 + 0.0001*m.x127*m.x17 + 0.0001*m.x127*m.x18 + 0.0001*m.x127*m.x19 + 0.0001*
m.x127*m.x20 + 0.0001*m.x127*m.x21 + 0.0001*m.x127*m.x22 + 0.0001*m.x127*m.x23 + 0.0001*m.x127*
m.x24 + 0.0001*m.x127*m.x25 + 0.0001*m.x127*m.x26 + 0.0001*m.x127*m.x27 + 0.0001*m.x127*m.x28 +
0.0001*m.x127*m.x29 + 0.0001*m.x127*m.x30 + 0.0001*m.x127*m.x31 + 0.0001*m.x127*m.x32 + 0.0001*
m.x127*m.x33 + 0.0001*m.x127*m.x34 + 0.0001*m.x127*m.x35 + 0.0001*m.x127*m.x36 + 0.0001*m.x127*
m.x37 + 0.0001*m.x127*m.x38 + 0.0001*m.x127*m.x39 + 0.0001*m.x127*m.x40 + 0.0001*m.x127*m.x41 +
0.0001*m.x127*m.x42 + 0.0001*m.x127*m.x43 + 0.0001*m.x127*m.x44 + 0.0001*m.x127*m.x45 + 0.0001*
m.x127*m.x46 + 0.0001*m.x127*m.x47 + 0.0001*m.x127*m.x48 + 0.0001*m.x127*m.x49 + 0.0001*m.x127*
m.x50 + 0.0001*m.x127*m.x51 + 0.0001*m.x127*m.x52 + 0.0001*m.x127*m.x53 + 0.0001*m.x127*m.x54 +
0.0001*m.x127*m.x55 + 0.0001*m.x127*m.x56 + 0.0001*m.x127*m.x57 + 0.0001*m.x127*m.x58 + 0.0001*
m.x127*m.x59 + 0.0001*m.x127*m.x60 + 0.0001*m.x127*m.x61 + 0.0001*m.x127*m.x62 + 0.0001*m.x127*
m.x63 + 0.0001*m.x127*m.x64 + 0.0001*m.x127*m.x65 + 0.0001*m.x127*m.x66 + 0.0001*m.x127*m.x67 +
0.0001*m.x127*m.x68 + 0.0001*m.x127*m.x69 + 0.0001*m.x127*m.x70 + 0.0001*m.x127*m.x71 + 0.0001*
m.x127*m.x72 + 0.0001*m.x127*m.x73 + 0.0001*m.x127*m.x74 + 0.0001*m.x127*m.x75 + 0.0001*m.x127*
m.x76 + 0.0001*m.x127*m.x77 + 0.0001*m.x127*m.x78 + 0.0001*m.x127*m.x79 + 0.0001*m.x127*m.x80 +
0.0001*m.x127*m.x81 + 0.855482006991271*m.x127*m.x82 + 0.0001*m.x127*m.x83 + 0.0001*m.x127*m.x84
+ 0.0001*m.x127*m.x85 + 0.0001*m.x127*m.x86 + 0.0001*m.x127*m.x87 + 0.0001*m.x127*m.x88 + 0.0001
*m.x127*m.x89 + 0.0001*m.x127*m.x90 + 0.0001*m.x127*m.x91 + 0.0001*m.x127*m.x92 + 0.0001*m.x127*
m.x93 + 0.0001*m.x127*m.x94 + 0.0001*m.x127*m.x95 + 0.0001*m.x127*m.x96 + 0.0001*m.x127*m.x97 +
0.0001*m.x127*m.x98 + 0.0001*m.x127*m.x99 + 0.0001*m.x127*m.x100 + 0.0001*m.x127*m.x101 + 0.0001*
m.x127*m.x102 + 0.0001*m.x127*m.x103 + 0.0001*m.x127*m.x104 + 0.0001*m.x127*m.x105 + 0.0001*
m.x127*m.x106 + 0.0001*m.x127*m.x107 + 0.0001*m.x127*m.x108 + 0.0001*m.x127*m.x109 + 0.0001*
m.x127*m.x110 + 0.0001*m.x127*m.x111 + 0.0001*m.x127*m.x112 + 0.0001*m.x127*m.x113 + 0.0001*
m.x127*m.x114 + 0.0001*m.x127*m.x115 + 0.0001*m.x127*m.x116 + 0.0001*m.x127*m.x117 + 0.0001*
m.x127*m.x118 + 0.0001*m.x127*m.x119 + 0.0001*m.x127*m.x120 + 0.0001*m.x127*m.x121 + 0.0001*
m.x127*m.x122 + 0.0001*m.x127*m.x123 + 0.0001*m.x127*m.x124 + 0.0001*m.x127*m.x125 + 0.0001*
m.x127*m.x126 + 4.82541869286828*m.x127**2 + 0.0001*m.x127*m.x128 + 0.0001*m.x127*m.x129 + 0.0001
*m.x127*m.x130 + 0.0001*m.x127*m.x131 + 0.0001*m.x127*m.x132 + 0.0001*m.x127*m.x133 + 0.0001*
m.x127*m.x134 + 0.0001*m.x127*m.x135 + 0.0001*m.x127*m.x136 + 0.0001*m.x127*m.x137 + 0.0001*
m.x127*m.x138 + 0.0001*m.x127*m.x139 + 0.0001*m.x127*m.x140 + 0.0001*m.x127*m.x141 + 0.0001*
m.x127*m.x142 + 0.0001*m.x127*m.x143 + 0.0001*m.x127*m.x144 + 0.0001*m.x127*m.x145 + 0.0001*
m.x127*m.x146 + 0.0001*m.x127*m.x147 + 0.0001*m.x127*m.x148 + 0.0001*m.x127*m.x149 + 0.0001*
m.x127*m.x150 + 0.0001*m.x127*m.x151 + 0.0001*m.x127*m.x152 + 6.56891473074487*m.x127*m.x153 +
0.0001*m.x127*m.x154 + 0.0001*m.x127*m.x155 + 0.0001*m.x127*m.x156 + 0.0001*m.x127*m.x157 +
0.0001*m.x127*m.x158 + 0.0001*m.x127*m.x159 + 0.0001*m.x127*m.x160 + 0.0001*m.x127*m.x161 +
0.0001*m.x127*m.x162 + 0.0001*m.x127*m.x163 + 0.0001*m.x127*m.x164 + 0.0001*m.x127*m.x165 +
0.0001*m.x127*m.x166 + 0.0001*m.x127*m.x167 + 4.14125144473953*m.x127*m.x168 + 0.0001*m.x127*
m.x169 + 0.0001*m.x127*m.x170 + 0.0001*m.x127*m.x171 + 0.0001*m.x127*m.x172 + 0.0001*m.x127*
m.x173 + 0.0001*m.x127*m.x174 + 0.0001*m.x127*m.x175 + 0.0001*m.x127*m.x176 + 0.0001*m.x127*
m.x177 + 0.0001*m.x127*m.x178 + 0.0001*m.x127*m.x179 + 0.0001*m.x127*m.x180 + 0.0001*m.x127*
m.x181 + 0.0001*m.x127*m.x182 + 0.0001*m.x127*m.x183 + 0.0001*m.x127*m.x184 + 0.0001*m.x127*
m.x185 + 0.0001*m.x128*m.x1 + 0.0001*m.x128*m.x2 + 0.0001*m.x128*m.x3 + 0.0001*m.x128*m.x4 +
0.0001*m.x128*m.x5 + 0.0001*m.x128*m.x6 + 0.0001*m.x128*m.x7 + 0.0001*m.x128*m.x8 + 0.0001*m.x128
*m.x9 + 0.0001*m.x128*m.x10 + 0.0001*m.x128*m.x11 + 0.0001*m.x128*m.x12 + 0.0001*m.x128*m.x13 +
0.0001*m.x128*m.x14 + 0.0001*m.x128*m.x15 + 0.0001*m.x128*m.x16 + 0.0001*m.x128*m.x17 + 0.0001*
m.x128*m.x18 + 0.0001*m.x128*m.x19 + 0.0001*m.x128*m.x20 + 0.0001*m.x128*m.x21 + 0.0001*m.x128*
m.x22 + 0.0001*m.x128*m.x23 + 0.0001*m.x128*m.x24 + 0.0001*m.x128*m.x25 + 0.0001*m.x128*m.x26 +
0.0001*m.x128*m.x27 + 0.0001*m.x128*m.x28 + 0.0001*m.x128*m.x29 + 0.0001*m.x128*m.x30 + 0.0001*
m.x128*m.x31 + 0.0001*m.x128*m.x32 + 0.0001*m.x128*m.x33 + 0.0001*m.x128*m.x34 + 0.0001*m.x128*
m.x35 + 0.0001*m.x128*m.x36 + 0.0001*m.x128*m.x37 + 0.0001*m.x128*m.x38 + 0.0001*m.x128*m.x39 +
0.0001*m.x128*m.x40 + 0.0001*m.x128*m.x41 + 0.0001*m.x128*m.x42 + 0.0001*m.x128*m.x43 + 0.0001*
m.x128*m.x44 + 0.0001*m.x128*m.x45 + 0.0001*m.x128*m.x46 + 0.0001*m.x128*m.x47 + 0.0001*m.x128*
m.x48 + 0.0001*m.x128*m.x49 + 0.0001*m.x128*m.x50 + 0.0001*m.x128*m.x51 + 0.0001*m.x128*m.x52 +
0.0001*m.x128*m.x53 + 0.0001*m.x128*m.x54 + 0.0001*m.x128*m.x55 + 0.0001*m.x128*m.x56 + 0.0001*
m.x128*m.x57 + 0.0001*m.x128*m.x58 + 0.0001*m.x128*m.x59 + 0.0001*m.x128*m.x60 + 0.0001*m.x128*
m.x61 + 0.0001*m.x128*m.x62 + 0.0001*m.x128*m.x63 + 0.0001*m.x128*m.x64 + 0.0001*m.x128*m.x65 +
0.0001*m.x128*m.x66 + 0.0001*m.x128*m.x67 + 0.0001*m.x128*m.x68 + 0.0001*m.x128*m.x69 + 0.0001*
m.x128*m.x70 + 0.0001*m.x128*m.x71 + 0.0001*m.x128*m.x72 + 0.0001*m.x128*m.x73 + 0.0001*m.x128*
m.x74 + 0.0001*m.x128*m.x75 + 0.0001*m.x128*m.x76 + 0.0001*m.x128*m.x77 + 0.0001*m.x128*m.x78 +
0.0001*m.x128*m.x79 + 0.0001*m.x128*m.x80 + 0.0001*m.x128*m.x81 + 0.0001*m.x128*m.x82 +
1.35721306884672*m.x128*m.x83 + 0.0001*m.x128*m.x84 + 0.0001*m.x128*m.x85 + 0.0001*m.x128*m.x86
+ 0.0001*m.x128*m.x87 + 0.0001*m.x128*m.x88 + 0.0001*m.x128*m.x89 + 0.0001*m.x128*m.x90 + 0.0001
*m.x128*m.x91 + 0.0001*m.x128*m.x92 + 0.0001*m.x128*m.x93 + 0.0001*m.x128*m.x94 + 0.0001*m.x128*
m.x95 + 0.0001*m.x128*m.x96 + 0.0001*m.x128*m.x97 + 0.0001*m.x128*m.x98 + 0.0001*m.x128*m.x99 +
0.0001*m.x128*m.x100 + 0.0001*m.x128*m.x101 + 0.0001*m.x128*m.x102 + 0.0001*m.x128*m.x103 +
0.0001*m.x128*m.x104 + 0.0001*m.x128*m.x105 + 0.0001*m.x128*m.x106 + 0.0001*m.x128*m.x107 +
0.0001*m.x128*m.x108 + 0.0001*m.x128*m.x109 + 0.0001*m.x128*m.x110 + 0.0001*m.x128*m.x111 +
0.0001*m.x128*m.x112 + 0.0001*m.x128*m.x113 + 0.0001*m.x128*m.x114 + 0.0001*m.x128*m.x115 +
0.0001*m.x128*m.x116 + 0.0001*m.x128*m.x117 + 0.0001*m.x128*m.x118 + 0.0001*m.x128*m.x119 +
0.0001*m.x128*m.x120 + 0.0001*m.x128*m.x121 + 0.0001*m.x128*m.x122 + 0.0001*m.x128*m.x123 +
0.0001*m.x128*m.x124 + 0.0001*m.x128*m.x125 + 0.0001*m.x128*m.x126 + 0.0001*m.x128*m.x127 +
6.61276422211265*m.x128**2 + 0.0001*m.x128*m.x129 + 0.0001*m.x128*m.x130 + 0.0001*m.x128*m.x131
+ 0.0001*m.x128*m.x132 + 0.0001*m.x128*m.x133 + 0.0001*m.x128*m.x134 + 0.0001*m.x128*m.x135 +
0.0001*m.x128*m.x136 + 0.0001*m.x128*m.x137 + 0.0001*m.x128*m.x138 + 0.0001*m.x128*m.x139 +
0.0001*m.x128*m.x140 + 0.0001*m.x128*m.x141 + 0.0001*m.x128*m.x142 + 0.0001*m.x128*m.x143 +
0.0001*m.x128*m.x144 + 0.0001*m.x128*m.x145 + 0.0001*m.x128*m.x146 + 0.0001*m.x128*m.x147 +
0.0001*m.x128*m.x148 + 0.0001*m.x128*m.x149 + 0.0001*m.x128*m.x150 + 0.0001*m.x128*m.x151 +
0.0001*m.x128*m.x152 + 0.0001*m.x128*m.x153 + 6.07157286341414*m.x128*m.x154 + 6.07157286341414*
m.x128*m.x155 + 0.0001*m.x128*m.x156 + 0.0001*m.x128*m.x157 + 0.0001*m.x128*m.x158 + 0.0001*
m.x128*m.x159 + 0.0001*m.x128*m.x160 + 0.0001*m.x128*m.x161 + 0.0001*m.x128*m.x162 + 0.0001*
m.x128*m.x163 + 0.0001*m.x128*m.x164 + 0.0001*m.x128*m.x165 + 0.0001*m.x128*m.x166 + 0.0001*
m.x128*m.x167 + 0.0001*m.x128*m.x168 + 6.60715115840967*m.x128*m.x169 + 0.0001*m.x128*m.x170 +
0.0001*m.x128*m.x171 + 0.0001*m.x128*m.x172 + 0.0001*m.x128*m.x173 + 0.0001*m.x128*m.x174 +
0.0001*m.x128*m.x175 + 0.0001*m.x128*m.x176 + 0.0001*m.x128*m.x177 + 0.0001*m.x128*m.x178 +
0.0001*m.x128*m.x179 + 0.0001*m.x128*m.x180 + 0.0001*m.x128*m.x181 + 0.0001*m.x128*m.x182 +
0.0001*m.x128*m.x183 + 0.0001*m.x128*m.x184 + 0.0001*m.x128*m.x185 + 0.0001*m.x129*m.x1 + 0.0001*
m.x129*m.x2 + 0.0001*m.x129*m.x3 + 0.0001*m.x129*m.x4 + 0.0001*m.x129*m.x5 + 0.0001*m.x129*m.x6
+ 0.0001*m.x129*m.x7 + 0.0001*m.x129*m.x8 + 0.0001*m.x129*m.x9 + 0.0001*m.x129*m.x10 + 0.0001*
m.x129*m.x11 + 0.0001*m.x129*m.x12 + 0.0001*m.x129*m.x13 + 0.0001*m.x129*m.x14 + 0.0001*m.x129*
m.x15 + 0.0001*m.x129*m.x16 + 0.0001*m.x129*m.x17 + 0.0001*m.x129*m.x18 + 0.0001*m.x129*m.x19 +
0.0001*m.x129*m.x20 + 0.0001*m.x129*m.x21 + 0.0001*m.x129*m.x22 + 0.0001*m.x129*m.x23 + 0.0001*
m.x129*m.x24 + 0.0001*m.x129*m.x25 + 0.0001*m.x129*m.x26 + 0.0001*m.x129*m.x27 + 0.0001*m.x129*
m.x28 + 0.0001*m.x129*m.x29 + 0.0001*m.x129*m.x30 + 0.0001*m.x129*m.x31 + 0.0001*m.x129*m.x32 +
0.0001*m.x129*m.x33 + 0.0001*m.x129*m.x34 + 0.0001*m.x129*m.x35 + 0.0001*m.x129*m.x36 + 0.0001*
m.x129*m.x37 + 0.0001*m.x129*m.x38 + 0.0001*m.x129*m.x39 + 0.0001*m.x129*m.x40 + 0.0001*m.x129*
m.x41 + 0.0001*m.x129*m.x42 + 0.0001*m.x129*m.x43 + 0.0001*m.x129*m.x44 + 0.0001*m.x129*m.x45 +
0.0001*m.x129*m.x46 + 0.0001*m.x129*m.x47 + 0.0001*m.x129*m.x48 + 0.0001*m.x129*m.x49 + 0.0001*
m.x129*m.x50 + 0.0001*m.x129*m.x51 + 0.0001*m.x129*m.x52 + 0.0001*m.x129*m.x53 + 0.0001*m.x129*
m.x54 + 0.0001*m.x129*m.x55 + 0.0001*m.x129*m.x56 + 0.0001*m.x129*m.x57 + 0.0001*m.x129*m.x58 +
0.0001*m.x129*m.x59 + 0.0001*m.x129*m.x60 + 0.0001*m.x129*m.x61 + 0.0001*m.x129*m.x62 + 0.0001*
m.x129*m.x63 + 0.0001*m.x129*m.x64 + 0.0001*m.x129*m.x65 + 0.0001*m.x129*m.x66 + 0.0001*m.x129*
m.x67 + 0.0001*m.x129*m.x68 + 0.0001*m.x129*m.x69 + 0.0001*m.x129*m.x70 + 0.0001*m.x129*m.x71 +
0.0001*m.x129*m.x72 + 0.0001*m.x129*m.x73 + 0.0001*m.x129*m.x74 + 0.0001*m.x129*m.x75 + 0.0001*
m.x129*m.x76 + 0.0001*m.x129*m.x77 + 0.0001*m.x129*m.x78 + 0.0001*m.x129*m.x79 + 0.0001*m.x129*
m.x80 + 0.0001*m.x129*m.x81 + 0.0001*m.x129*m.x82 + 0.0001*m.x129*m.x83 + 0.0001*m.x129*m.x84 +
0.0001*m.x129*m.x85 + 0.0001*m.x129*m.x86 + 0.0001*m.x129*m.x87 + 0.0001*m.x129*m.x88 + 0.0001*
m.x129*m.x89 + 0.0001*m.x129*m.x90 + 0.0001*m.x129*m.x91 + 0.0001*m.x129*m.x92 + 0.0001*m.x129*
m.x93 + 0.0001*m.x129*m.x94 + 0.0001*m.x129*m.x95 + 0.0001*m.x129*m.x96 + 0.0001*m.x129*m.x97 +
0.0001*m.x129*m.x98 + 0.0001*m.x129*m.x99 + 0.0001*m.x129*m.x100 + 0.0001*m.x129*m.x101 + 0.0001*
m.x129*m.x102 + 0.0001*m.x129*m.x103 + 0.0001*m.x129*m.x104 + 0.0001*m.x129*m.x105 + 0.0001*
m.x129*m.x106 + 0.0001*m.x129*m.x107 + 0.0001*m.x129*m.x108 + 0.0001*m.x129*m.x109 + 0.0001*
m.x129*m.x110 + 0.0001*m.x129*m.x111 + 0.0001*m.x129*m.x112 + 0.0001*m.x129*m.x113 + 0.0001*
m.x129*m.x114 + 0.0001*m.x129*m.x115 + 0.530384532962827*m.x129*m.x116 + 0.0001*m.x129*m.x117 +
0.0001*m.x129*m.x118 + 0.0001*m.x129*m.x119 + 0.0001*m.x129*m.x120 + 0.0001*m.x129*m.x121 +
0.0001*m.x129*m.x122 + 0.0001*m.x129*m.x123 + 0.0001*m.x129*m.x124 + 0.0001*m.x129*m.x125 +
0.0001*m.x129*m.x126 + 0.0001*m.x129*m.x127 + 0.0001*m.x129*m.x128 + 3.28445192399617*m.x129**2
+ 0.0001*m.x129*m.x130 + 0.0001*m.x129*m.x131 + 0.0001*m.x129*m.x132 + 0.0001*m.x129*m.x133 +
0.0001*m.x129*m.x134 + 0.0001*m.x129*m.x135 + 0.0001*m.x129*m.x136 + 0.0001*m.x129*m.x137 +
0.0001*m.x129*m.x138 + 0.0001*m.x129*m.x139 + 0.0001*m.x129*m.x140 + 0.0001*m.x129*m.x141 +
0.737425273741647*m.x129*m.x142 + 0.0001*m.x129*m.x143 + 0.0001*m.x129*m.x144 + 0.0001*m.x129*
m.x145 + 0.0001*m.x129*m.x146 + 0.0001*m.x129*m.x147 + 0.0001*m.x129*m.x148 + 0.0001*m.x129*
m.x149 + 0.0001*m.x129*m.x150 + 0.0001*m.x129*m.x151 + 0.0001*m.x129*m.x152 + 0.0001*m.x129*
m.x153 + 0.0001*m.x129*m.x154 + 0.0001*m.x129*m.x155 + 6.01366122063386*m.x129*m.x156 +
0.481481473554168*m.x129*m.x157 + 0.0001*m.x129*m.x158 + 0.0001*m.x129*m.x159 + 0.0001*m.x129*
m.x160 + 0.0001*m.x129*m.x161 + 0.0001*m.x129*m.x162 + 0.0001*m.x129*m.x163 + 0.0001*m.x129*
m.x164 + 0.0001*m.x129*m.x165 + 0.0001*m.x129*m.x166 + 0.0001*m.x129*m.x167 + 0.0001*m.x129*
m.x168 + 0.0001*m.x129*m.x169 + 3.0953837361136*m.x129*m.x170 + 0.0001*m.x129*m.x171 + 0.0001*
m.x129*m.x172 + 0.0001*m.x129*m.x173 + 0.0001*m.x129*m.x174 + 0.0001*m.x129*m.x175 + 0.0001*
m.x129*m.x176 + 0.0001*m.x129*m.x177 + 0.0001*m.x129*m.x178 + 0.0001*m.x129*m.x179 + 0.0001*
m.x129*m.x180 + 0.0001*m.x129*m.x181 + 0.0001*m.x129*m.x182 + 0.0001*m.x129*m.x183 + 0.0001*
m.x129*m.x184 + 0.0001*m.x129*m.x185 + 3.76549448672075*m.x130*m.x1 + 0.0001*m.x130*m.x2 + 0.0001
*m.x130*m.x3 + 0.0001*m.x130*m.x4 + 0.0001*m.x130*m.x5 + 0.0001*m.x130*m.x6 + 0.0001*m.x130*m.x7
+ 0.0001*m.x130*m.x8 + 0.0001*m.x130*m.x9 + 0.0001*m.x130*m.x10 + 0.0001*m.x130*m.x11 + 0.0001*
m.x130*m.x12 + 3.05296742049278*m.x130*m.x13 + 0.0001*m.x130*m.x14 + 0.0001*m.x130*m.x15 + 0.0001
*m.x130*m.x16 + 0.0001*m.x130*m.x17 + 0.0001*m.x130*m.x18 + 0.0001*m.x130*m.x19 + 0.0001*m.x130*
m.x20 + 0.0001*m.x130*m.x21 + 0.0001*m.x130*m.x22 + 0.0001*m.x130*m.x23 + 0.0001*m.x130*m.x24 +
0.0001*m.x130*m.x25 + 0.0001*m.x130*m.x26 + 0.0001*m.x130*m.x27 + 0.0001*m.x130*m.x28 + 0.0001*
m.x130*m.x29 + 0.0001*m.x130*m.x30 + 0.0001*m.x130*m.x31 + 0.0001*m.x130*m.x32 + 0.0001*m.x130*
m.x33 + 0.709807760487836*m.x130*m.x34 + 0.0001*m.x130*m.x35 + 2.88588347328381*m.x130*m.x36 +
0.0001*m.x130*m.x37 + 0.0001*m.x130*m.x38 + 0.0001*m.x130*m.x39 + 0.0001*m.x130*m.x40 + 0.0001*
m.x130*m.x41 + 0.0001*m.x130*m.x42 + 0.0001*m.x130*m.x43 + 0.0001*m.x130*m.x44 + 0.0001*m.x130*
m.x45 + 0.0001*m.x130*m.x46 + 0.0001*m.x130*m.x47 + 0.0001*m.x130*m.x48 + 0.0001*m.x130*m.x49 +
0.0001*m.x130*m.x50 + 0.0001*m.x130*m.x51 + 0.0001*m.x130*m.x52 + 0.0001*m.x130*m.x53 + 0.0001*
m.x130*m.x54 + 0.0001*m.x130*m.x55 + 0.437738595417195*m.x130*m.x56 + 0.0001*m.x130*m.x57 +
0.0001*m.x130*m.x58 + 0.0001*m.x130*m.x59 + 0.0001*m.x130*m.x60 + 0.0001*m.x130*m.x61 + 0.0001*
m.x130*m.x62 + 0.0001*m.x130*m.x63 + 0.0001*m.x130*m.x64 + 0.0001*m.x130*m.x65 + 0.0001*m.x130*
m.x66 + 0.0001*m.x130*m.x67 + 0.0001*m.x130*m.x68 + 0.0001*m.x130*m.x69 + 0.0001*m.x130*m.x70 +
0.0001*m.x130*m.x71 + 0.0001*m.x130*m.x72 + 0.0001*m.x130*m.x73 + 0.0001*m.x130*m.x74 + 0.0001*
m.x130*m.x75 + 0.0001*m.x130*m.x76 + 0.0001*m.x130*m.x77 + 0.0001*m.x130*m.x78 + 0.0001*m.x130*
m.x79 + 0.0001*m.x130*m.x80 + 0.0001*m.x130*m.x81 + 0.0001*m.x130*m.x82 + 0.0001*m.x130*m.x83 +
0.0001*m.x130*m.x84 + 0.0001*m.x130*m.x85 + 0.0001*m.x130*m.x86 + 0.0001*m.x130*m.x87 + 0.0001*
m.x130*m.x88 + 0.0001*m.x130*m.x89 + 0.0001*m.x130*m.x90 + 0.0001*m.x130*m.x91 + 0.0001*m.x130*
m.x92 + 1.35189577717393*m.x130*m.x93 + 0.0001*m.x130*m.x94 + 0.0001*m.x130*m.x95 + 0.0001*m.x130
*m.x96 + 0.0001*m.x130*m.x97 + 0.0001*m.x130*m.x98 + 0.0001*m.x130*m.x99 + 0.0001*m.x130*m.x100
+ 0.0001*m.x130*m.x101 + 0.0001*m.x130*m.x102 + 0.0001*m.x130*m.x103 + 0.0001*m.x130*m.x104 +
0.0001*m.x130*m.x105 + 0.0001*m.x130*m.x106 + 0.0001*m.x130*m.x107 + 0.0001*m.x130*m.x108 +
0.0001*m.x130*m.x109 + 0.0001*m.x130*m.x110 + 0.0001*m.x130*m.x111 + 0.0001*m.x130*m.x112 +
0.0001*m.x130*m.x113 + 0.0001*m.x130*m.x114 + 0.0001*m.x130*m.x115 + 0.0001*m.x130*m.x116 +
0.0001*m.x130*m.x117 + 0.0001*m.x130*m.x118 + 0.0001*m.x130*m.x119 + 0.0001*m.x130*m.x120 +
0.0001*m.x130*m.x121 + 0.0001*m.x130*m.x122 + 0.0001*m.x130*m.x123 + 0.0001*m.x130*m.x124 +
0.0001*m.x130*m.x125 + 0.0001*m.x130*m.x126 + 0.0001*m.x130*m.x127 + 0.0001*m.x130*m.x128 +
0.0001*m.x130*m.x129 + 1.76803453067464*m.x130**2 + 0.0001*m.x130*m.x131 + 0.0001*m.x130*m.x132
+ 0.0001*m.x130*m.x133 + 0.0001*m.x130*m.x134 + 0.0001*m.x130*m.x135 + 0.0001*m.x130*m.x136 +
0.0001*m.x130*m.x137 + 0.0001*m.x130*m.x138 + 0.0001*m.x130*m.x139 + 0.0001*m.x130*m.x140 +
0.0001*m.x130*m.x141 + 0.0001*m.x130*m.x142 + 0.0001*m.x130*m.x143 + 0.0001*m.x130*m.x144 +
0.0001*m.x130*m.x145 + 0.0001*m.x130*m.x146 + 0.0001*m.x130*m.x147 + 0.0001*m.x130*m.x148 +
0.0001*m.x130*m.x149 + 0.0001*m.x130*m.x150 + 0.0001*m.x130*m.x151 + 0.0001*m.x130*m.x152 +
0.0001*m.x130*m.x153 + 0.0001*m.x130*m.x154 + 0.0001*m.x130*m.x155 + 0.0001*m.x130*m.x156 +
0.0001*m.x130*m.x157 + 0.0001*m.x130*m.x158 + 0.0001*m.x130*m.x159 + 0.0001*m.x130*m.x160 +
0.0001*m.x130*m.x161 + 0.0001*m.x130*m.x162 + 0.0001*m.x130*m.x163 + 0.0001*m.x130*m.x164 +
0.0001*m.x130*m.x165 + 0.0001*m.x130*m.x166 + 0.0001*m.x130*m.x167 + 0.0001*m.x130*m.x168 +
0.0001*m.x130*m.x169 + 0.0001*m.x130*m.x170 + 0.0001*m.x130*m.x171 + 0.0001*m.x130*m.x172 +
0.0001*m.x130*m.x173 + 0.0001*m.x130*m.x174 + 0.0001*m.x130*m.x175 + 0.0001*m.x130*m.x176 +
0.0001*m.x130*m.x177 + 0.0001*m.x130*m.x178 + 0.0001*m.x130*m.x179 + 0.0001*m.x130*m.x180 +
0.0001*m.x130*m.x181 + 0.0001*m.x130*m.x182 + 0.0001*m.x130*m.x183 + 0.0001*m.x130*m.x184 +
0.0001*m.x130*m.x185 + 0.0001*m.x131*m.x1 + 3.77224840915951*m.x131*m.x2 + 0.0001*m.x131*m.x3 +
0.0001*m.x131*m.x4 + 0.0001*m.x131*m.x5 + 0.0001*m.x131*m.x6 + 0.0001*m.x131*m.x7 + 0.0001*m.x131
*m.x8 + 0.0001*m.x131*m.x9 + 0.0001*m.x131*m.x10 + 0.0001*m.x131*m.x11 + 0.0001*m.x131*m.x12 +
0.0001*m.x131*m.x13 + 3.10036242205314*m.x131*m.x14 + 0.0001*m.x131*m.x15 + 0.0001*m.x131*m.x16
+ 0.0001*m.x131*m.x17 + 0.0001*m.x131*m.x18 + 0.0001*m.x131*m.x19 + 0.0001*m.x131*m.x20 + 0.0001
*m.x131*m.x21 + 0.0001*m.x131*m.x22 + 0.0001*m.x131*m.x23 + 0.0001*m.x131*m.x24 +
0.846153145046179*m.x131*m.x25 + 0.0001*m.x131*m.x26 + 0.0001*m.x131*m.x27 + 0.0001*m.x131*m.x28
+ 0.0001*m.x131*m.x29 + 0.0001*m.x131*m.x30 + 0.0001*m.x131*m.x31 + 0.0001*m.x131*m.x32 + 0.0001
*m.x131*m.x33 + 0.0001*m.x131*m.x34 + 0.716539116478635*m.x131*m.x35 + 0.0001*m.x131*m.x36 +
2.93068453844014*m.x131*m.x37 + 0.0001*m.x131*m.x38 + 0.0001*m.x131*m.x39 + 0.0001*m.x131*m.x40
+ 0.0001*m.x131*m.x41 + 0.0001*m.x131*m.x42 + 0.0001*m.x131*m.x43 + 0.0001*m.x131*m.x44 + 0.0001
*m.x131*m.x45 + 0.0001*m.x131*m.x46 + 0.0001*m.x131*m.x47 + 0.0001*m.x131*m.x48 + 0.0001*m.x131*
m.x49 + 0.0001*m.x131*m.x50 + 0.0001*m.x131*m.x51 + 0.0001*m.x131*m.x52 + 0.0001*m.x131*m.x53 +
0.0001*m.x131*m.x54 + 0.0001*m.x131*m.x55 + 0.0001*m.x131*m.x56 + 0.447942246308306*m.x131*m.x57
+ 0.0001*m.x131*m.x58 + 0.0001*m.x131*m.x59 + 0.0001*m.x131*m.x60 + 0.0001*m.x131*m.x61 + 0.0001
*m.x131*m.x62 + 0.0001*m.x131*m.x63 + 0.0001*m.x131*m.x64 + 0.0001*m.x131*m.x65 + 0.0001*m.x131*
m.x66 + 0.0001*m.x131*m.x67 + 0.0001*m.x131*m.x68 + 0.0001*m.x131*m.x69 + 0.0001*m.x131*m.x70 +
0.0001*m.x131*m.x71 + 0.0001*m.x131*m.x72 + 0.0001*m.x131*m.x73 + 0.0001*m.x131*m.x74 + 0.0001*
m.x131*m.x75 + 0.0001*m.x131*m.x76 + 0.0001*m.x131*m.x77 + 0.0001*m.x131*m.x78 + 0.0001*m.x131*
m.x79 + 0.0001*m.x131*m.x80 + 0.0001*m.x131*m.x81 + 0.0001*m.x131*m.x82 + 0.0001*m.x131*m.x83 +
0.0001*m.x131*m.x84 + 0.0001*m.x131*m.x85 + 0.0001*m.x131*m.x86 + 0.0001*m.x131*m.x87 + 0.0001*
m.x131*m.x88 + 0.0001*m.x131*m.x89 + 0.0001*m.x131*m.x90 + 0.0001*m.x131*m.x91 + 0.0001*m.x131*
m.x92 + 0.0001*m.x131*m.x93 + 1.35189577717393*m.x131*m.x94 + 0.0001*m.x131*m.x95 + 0.0001*m.x131
*m.x96 + 0.0001*m.x131*m.x97 + 0.0001*m.x131*m.x98 + 0.0001*m.x131*m.x99 + 0.0001*m.x131*m.x100
+ 0.0001*m.x131*m.x101 + 0.0001*m.x131*m.x102 + 0.0001*m.x131*m.x103 + 0.0001*m.x131*m.x104 +
0.0001*m.x131*m.x105 + 0.0001*m.x131*m.x106 + 0.0001*m.x131*m.x107 + 0.0001*m.x131*m.x108 +
0.0001*m.x131*m.x109 + 0.0001*m.x131*m.x110 + 0.0001*m.x131*m.x111 + 0.0001*m.x131*m.x112 +
0.0001*m.x131*m.x113 + 0.0001*m.x131*m.x114 + 0.0001*m.x131*m.x115 + 0.0001*m.x131*m.x116 +
0.0001*m.x131*m.x117 + 0.0001*m.x131*m.x118 + 0.0001*m.x131*m.x119 + 0.0001*m.x131*m.x120 +
0.0001*m.x131*m.x121 + 0.0001*m.x131*m.x122 + 0.0001*m.x131*m.x123 + 0.0001*m.x131*m.x124 +
0.0001*m.x131*m.x125 + 0.0001*m.x131*m.x126 + 0.0001*m.x131*m.x127 + 0.0001*m.x131*m.x128 +
0.0001*m.x131*m.x129 + 0.0001*m.x131*m.x130 + 1.79256029956487*m.x131**2 + 0.0001*m.x131*m.x132
+ 0.0001*m.x131*m.x133 + 0.0001*m.x131*m.x134 + 0.0001*m.x131*m.x135 + 0.0001*m.x131*m.x136 +
0.0001*m.x131*m.x137 + 0.0001*m.x131*m.x138 + 0.0001*m.x131*m.x139 + 0.0001*m.x131*m.x140 +
0.0001*m.x131*m.x141 + 0.0001*m.x131*m.x142 + 0.0001*m.x131*m.x143 + 0.0001*m.x131*m.x144 +
0.0001*m.x131*m.x145 + 0.0001*m.x131*m.x146 + 0.0001*m.x131*m.x147 + 0.0001*m.x131*m.x148 +
0.0001*m.x131*m.x149 + 0.0001*m.x131*m.x150 + 0.0001*m.x131*m.x151 + 0.0001*m.x131*m.x152 +
0.0001*m.x131*m.x153 + 0.0001*m.x131*m.x154 + 0.0001*m.x131*m.x155 + 0.0001*m.x131*m.x156 +
0.0001*m.x131*m.x157 + 0.0001*m.x131*m.x158 + 0.0001*m.x131*m.x159 + 0.0001*m.x131*m.x160 +
0.0001*m.x131*m.x161 + 0.0001*m.x131*m.x162 + 0.0001*m.x131*m.x163 + 0.0001*m.x131*m.x164 +
0.0001*m.x131*m.x165 + 0.0001*m.x131*m.x166 + 0.0001*m.x131*m.x167 + 0.0001*m.x131*m.x168 +
0.0001*m.x131*m.x169 + 0.0001*m.x131*m.x170 + 0.0001*m.x131*m.x171 + 0.0001*m.x131*m.x172 +
0.0001*m.x131*m.x173 + 0.0001*m.x131*m.x174 + 0.0001*m.x131*m.x175 + 0.0001*m.x131*m.x176 +
0.0001*m.x131*m.x177 + 0.0001*m.x131*m.x178 + 0.0001*m.x131*m.x179 + 0.0001*m.x131*m.x180 +
0.0001*m.x131*m.x181 + 0.0001*m.x131*m.x182 + 0.0001*m.x131*m.x183 + 0.0001*m.x131*m.x184 +
0.0001*m.x131*m.x185 + 0.0001*m.x132*m.x1 + 0.0001*m.x132*m.x2 + 3.76257545380017*m.x132*m.x3 +
0.0001*m.x132*m.x4 + 0.0001*m.x132*m.x5 + 0.0001*m.x132*m.x6 + 0.0001*m.x132*m.x7 + 0.0001*m.x132
*m.x8 + 0.0001*m.x132*m.x9 + 0.0001*m.x132*m.x10 + 0.0001*m.x132*m.x11 + 0.0001*m.x132*m.x12 +
0.0001*m.x132*m.x13 + 0.0001*m.x132*m.x14 + 3.09241239019915*m.x132*m.x15 + 0.0001*m.x132*m.x16
+ 0.0001*m.x132*m.x17 + 0.0001*m.x132*m.x18 + 0.0001*m.x132*m.x19 + 0.0001*m.x132*m.x20 + 0.0001
*m.x132*m.x21 + 0.0001*m.x132*m.x22 + 0.0001*m.x132*m.x23 + 0.0001*m.x132*m.x24 + 0.0001*m.x132*
m.x25 + 0.83639696474523*m.x132*m.x26 + 0.0001*m.x132*m.x27 + 0.0001*m.x132*m.x28 + 0.0001*m.x132
*m.x29 + 0.0001*m.x132*m.x30 + 0.0001*m.x132*m.x31 + 0.0001*m.x132*m.x32 + 0.0001*m.x132*m.x33 +
0.0001*m.x132*m.x34 + 0.0001*m.x132*m.x35 + 0.0001*m.x132*m.x36 + 0.0001*m.x132*m.x37 +
2.92316961316618*m.x132*m.x38 + 0.0001*m.x132*m.x39 + 0.0001*m.x132*m.x40 + 0.0001*m.x132*m.x41
+ 0.0001*m.x132*m.x42 + 0.0001*m.x132*m.x43 + 0.0001*m.x132*m.x44 + 0.0001*m.x132*m.x45 + 0.0001
*m.x132*m.x46 + 0.0001*m.x132*m.x47 + 0.0001*m.x132*m.x48 + 0.0001*m.x132*m.x49 + 0.0001*m.x132*
m.x50 + 0.0001*m.x132*m.x51 + 0.0001*m.x132*m.x52 + 0.0001*m.x132*m.x53 + 0.0001*m.x132*m.x54 +
0.0001*m.x132*m.x55 + 0.0001*m.x132*m.x56 + 0.0001*m.x132*m.x57 + 0.475488660826549*m.x132*m.x58
+ 0.0001*m.x132*m.x59 + 0.0001*m.x132*m.x60 + 0.0001*m.x132*m.x61 + 0.0001*m.x132*m.x62 + 0.0001
*m.x132*m.x63 + 0.0001*m.x132*m.x64 + 0.0001*m.x132*m.x65 + 0.0001*m.x132*m.x66 + 0.0001*m.x132*
m.x67 + 0.0001*m.x132*m.x68 + 0.0001*m.x132*m.x69 + 0.0001*m.x132*m.x70 + 0.0001*m.x132*m.x71 +
0.0001*m.x132*m.x72 + 0.0001*m.x132*m.x73 + 0.0001*m.x132*m.x74 + 0.0001*m.x132*m.x75 + 0.0001*
m.x132*m.x76 + 0.0001*m.x132*m.x77 + 0.0001*m.x132*m.x78 + 0.0001*m.x132*m.x79 + 0.0001*m.x132*
m.x80 + 0.0001*m.x132*m.x81 + 0.0001*m.x132*m.x82 + 0.0001*m.x132*m.x83 + 0.0001*m.x132*m.x84 +
0.0001*m.x132*m.x85 + 0.0001*m.x132*m.x86 + 0.0001*m.x132*m.x87 + 0.0001*m.x132*m.x88 + 0.0001*
m.x132*m.x89 + 0.0001*m.x132*m.x90 + 0.0001*m.x132*m.x91 + 0.0001*m.x132*m.x92 + 0.0001*m.x132*
m.x93 + 0.0001*m.x132*m.x94 + 1.33196082493441*m.x132*m.x95 + 0.0001*m.x132*m.x96 + 0.0001*m.x132
*m.x97 + 0.0001*m.x132*m.x98 + 0.0001*m.x132*m.x99 + 0.0001*m.x132*m.x100 + 0.0001*m.x132*m.x101
+ 0.0001*m.x132*m.x102 + 0.0001*m.x132*m.x103 + 0.0001*m.x132*m.x104 + 0.0001*m.x132*m.x105 +
0.0001*m.x132*m.x106 + 0.0001*m.x132*m.x107 + 0.0001*m.x132*m.x108 + 0.0001*m.x132*m.x109 +
0.0001*m.x132*m.x110 + 0.0001*m.x132*m.x111 + 0.0001*m.x132*m.x112 + 0.0001*m.x132*m.x113 +
0.0001*m.x132*m.x114 + 0.0001*m.x132*m.x115 + 0.0001*m.x132*m.x116 + 0.0001*m.x132*m.x117 +
0.0001*m.x132*m.x118 + 0.0001*m.x132*m.x119 + 0.0001*m.x132*m.x120 + 0.0001*m.x132*m.x121 +
0.0001*m.x132*m.x122 + 0.0001*m.x132*m.x123 + 0.0001*m.x132*m.x124 + 0.0001*m.x132*m.x125 +
0.0001*m.x132*m.x126 + 0.0001*m.x132*m.x127 + 0.0001*m.x132*m.x128 + 0.0001*m.x132*m.x129 +
0.0001*m.x132*m.x130 + 0.0001*m.x132*m.x131 + 1.79540371507622*m.x132**2 + 0.0001*m.x132*m.x133
+ 0.0001*m.x132*m.x134 + 0.0001*m.x132*m.x135 + 0.0001*m.x132*m.x136 + 0.0001*m.x132*m.x137 +
0.0001*m.x132*m.x138 + 0.0001*m.x132*m.x139 + 0.0001*m.x132*m.x140 + 0.0001*m.x132*m.x141 +
0.0001*m.x132*m.x142 + 0.0001*m.x132*m.x143 + 0.0001*m.x132*m.x144 + 0.0001*m.x132*m.x145 +
0.0001*m.x132*m.x146 + 0.0001*m.x132*m.x147 + 0.0001*m.x132*m.x148 + 0.0001*m.x132*m.x149 +
0.0001*m.x132*m.x150 + 0.0001*m.x132*m.x151 + 0.0001*m.x132*m.x152 + 0.0001*m.x132*m.x153 +
0.0001*m.x132*m.x154 + 0.0001*m.x132*m.x155 + 0.0001*m.x132*m.x156 + 0.0001*m.x132*m.x157 +
0.0001*m.x132*m.x158 + 0.0001*m.x132*m.x159 + 0.0001*m.x132*m.x160 + 0.0001*m.x132*m.x161 +
0.0001*m.x132*m.x162 + 0.0001*m.x132*m.x163 + 0.0001*m.x132*m.x164 + 0.0001*m.x132*m.x165 +
0.0001*m.x132*m.x166 + 0.0001*m.x132*m.x167 + 0.0001*m.x132*m.x168 + 0.0001*m.x132*m.x169 +
0.0001*m.x132*m.x170 + 0.0001*m.x132*m.x171 + 0.0001*m.x132*m.x172 + 0.0001*m.x132*m.x173 +
0.0001*m.x132*m.x174 + 0.0001*m.x132*m.x175 + 0.0001*m.x132*m.x176 + 0.0001*m.x132*m.x177 +
0.0001*m.x132*m.x178 + 0.0001*m.x132*m.x179 + 0.0001*m.x132*m.x180 + 0.0001*m.x132*m.x181 +
0.0001*m.x132*m.x182 + 0.0001*m.x132*m.x183 + 0.0001*m.x132*m.x184 + 0.0001*m.x132*m.x185 +
0.0001*m.x133*m.x1 + 0.0001*m.x133*m.x2 + 0.0001*m.x133*m.x3 + 3.72778316578126*m.x133*m.x4 +
0.0001*m.x133*m.x5 + 0.0001*m.x133*m.x6 + 0.0001*m.x133*m.x7 + 0.0001*m.x133*m.x8 + 0.0001*m.x133
*m.x9 + 0.0001*m.x133*m.x10 + 0.0001*m.x133*m.x11 + 0.0001*m.x133*m.x12 + 0.0001*m.x133*m.x13 +
0.0001*m.x133*m.x14 + 0.0001*m.x133*m.x15 + 3.04574536914387*m.x133*m.x16 + 0.0001*m.x133*m.x17
+ 0.0001*m.x133*m.x18 + 0.0001*m.x133*m.x19 + 0.0001*m.x133*m.x20 + 0.0001*m.x133*m.x21 + 0.0001
*m.x133*m.x22 + 0.0001*m.x133*m.x23 + 0.0001*m.x133*m.x24 + 0.0001*m.x133*m.x25 + 0.0001*m.x133*
m.x26 + 0.830775905057381*m.x133*m.x27 + 0.0001*m.x133*m.x28 + 0.0001*m.x133*m.x29 + 0.0001*
m.x133*m.x30 + 0.0001*m.x133*m.x31 + 0.0001*m.x133*m.x32 + 0.0001*m.x133*m.x33 + 0.0001*m.x133*
m.x34 + 0.0001*m.x133*m.x35 + 0.0001*m.x133*m.x36 + 0.0001*m.x133*m.x37 + 0.0001*m.x133*m.x38 +
3.00889518410223*m.x133*m.x39 + 0.0001*m.x133*m.x40 + 0.0001*m.x133*m.x41 + 0.0001*m.x133*m.x42
+ 0.0001*m.x133*m.x43 + 0.0001*m.x133*m.x44 + 0.0001*m.x133*m.x45 + 0.0001*m.x133*m.x46 + 0.0001
*m.x133*m.x47 + 0.0001*m.x133*m.x48 + 0.0001*m.x133*m.x49 + 0.0001*m.x133*m.x50 + 0.0001*m.x133*
m.x51 + 0.0001*m.x133*m.x52 + 0.0001*m.x133*m.x53 + 0.0001*m.x133*m.x54 + 0.0001*m.x133*m.x55 +
0.0001*m.x133*m.x56 + 0.0001*m.x133*m.x57 + 0.0001*m.x133*m.x58 + 0.0001*m.x133*m.x59 + 0.0001*
m.x133*m.x60 + 0.0001*m.x133*m.x61 + 0.0001*m.x133*m.x62 + 0.0001*m.x133*m.x63 + 0.0001*m.x133*
m.x64 + 0.0001*m.x133*m.x65 + 0.0001*m.x133*m.x66 + 0.0001*m.x133*m.x67 + 0.0001*m.x133*m.x68 +
0.0001*m.x133*m.x69 + 0.0001*m.x133*m.x70 + 0.0001*m.x133*m.x71 + 0.0001*m.x133*m.x72 + 0.0001*
m.x133*m.x73 + 0.0001*m.x133*m.x74 + 0.0001*m.x133*m.x75 + 0.0001*m.x133*m.x76 + 0.0001*m.x133*
m.x77 + 0.0001*m.x133*m.x78 + 0.0001*m.x133*m.x79 + 0.0001*m.x133*m.x80 + 0.0001*m.x133*m.x81 +
0.0001*m.x133*m.x82 + 0.0001*m.x133*m.x83 + 0.0001*m.x133*m.x84 + 0.0001*m.x133*m.x85 + 0.0001*
m.x133*m.x86 + 0.0001*m.x133*m.x87 + 0.0001*m.x133*m.x88 + 0.0001*m.x133*m.x89 + 0.0001*m.x133*
m.x90 + 0.0001*m.x133*m.x91 + 0.0001*m.x133*m.x92 + 0.0001*m.x133*m.x93 + 0.0001*m.x133*m.x94 +
0.0001*m.x133*m.x95 + 1.32500350566268*m.x133*m.x96 + 0.0001*m.x133*m.x97 + 0.0001*m.x133*m.x98
+ 0.0001*m.x133*m.x99 + 0.0001*m.x133*m.x100 + 0.0001*m.x133*m.x101 + 0.0001*m.x133*m.x102 +
0.0001*m.x133*m.x103 + 0.0001*m.x133*m.x104 + 0.0001*m.x133*m.x105 + 0.0001*m.x133*m.x106 +
0.0001*m.x133*m.x107 + 0.0001*m.x133*m.x108 + 0.0001*m.x133*m.x109 + 0.0001*m.x133*m.x110 +
0.0001*m.x133*m.x111 + 0.0001*m.x133*m.x112 + 0.0001*m.x133*m.x113 + 0.0001*m.x133*m.x114 +
0.0001*m.x133*m.x115 + 0.0001*m.x133*m.x116 + 0.0001*m.x133*m.x117 + 0.0001*m.x133*m.x118 +
0.0001*m.x133*m.x119 + 0.0001*m.x133*m.x120 + 0.0001*m.x133*m.x121 + 0.0001*m.x133*m.x122 +
0.0001*m.x133*m.x123 + 0.0001*m.x133*m.x124 + 0.0001*m.x133*m.x125 + 0.0001*m.x133*m.x126 +
0.0001*m.x133*m.x127 + 0.0001*m.x133*m.x128 + 0.0001*m.x133*m.x129 + 0.0001*m.x133*m.x130 +
0.0001*m.x133*m.x131 + 0.0001*m.x133*m.x132 + 1.76394565270807*m.x133**2 + 0.0001*m.x133*m.x134
+ 0.0001*m.x133*m.x135 + 0.0001*m.x133*m.x136 + 0.0001*m.x133*m.x137 + 0.0001*m.x133*m.x138 +
0.0001*m.x133*m.x139 + 0.0001*m.x133*m.x140 + 0.0001*m.x133*m.x141 + 0.0001*m.x133*m.x142 +
0.0001*m.x133*m.x143 + 0.0001*m.x133*m.x144 + 0.0001*m.x133*m.x145 + 0.0001*m.x133*m.x146 +
0.0001*m.x133*m.x147 + 0.0001*m.x133*m.x148 + 0.0001*m.x133*m.x149 + 0.0001*m.x133*m.x150 +
0.0001*m.x133*m.x151 + 0.0001*m.x133*m.x152 + 0.0001*m.x133*m.x153 + 0.0001*m.x133*m.x154 +
0.0001*m.x133*m.x155 + 0.0001*m.x133*m.x156 + 0.0001*m.x133*m.x157 + 0.0001*m.x133*m.x158 +
0.0001*m.x133*m.x159 + 0.0001*m.x133*m.x160 + 0.0001*m.x133*m.x161 + 0.0001*m.x133*m.x162 +
0.0001*m.x133*m.x163 + 0.0001*m.x133*m.x164 + 0.0001*m.x133*m.x165 + 0.0001*m.x133*m.x166 +
0.0001*m.x133*m.x167 + 0.0001*m.x133*m.x168 + 0.0001*m.x133*m.x169 + 0.0001*m.x133*m.x170 +
0.0001*m.x133*m.x171 + 0.0001*m.x133*m.x172 + 0.0001*m.x133*m.x173 + 0.0001*m.x133*m.x174 +
0.0001*m.x133*m.x175 + 0.0001*m.x133*m.x176 + 0.0001*m.x133*m.x177 + 0.0001*m.x133*m.x178 +
0.0001*m.x133*m.x179 + 0.0001*m.x133*m.x180 + 0.0001*m.x133*m.x181 + 0.0001*m.x133*m.x182 +
0.0001*m.x133*m.x183 + 0.0001*m.x133*m.x184 + 0.0001*m.x133*m.x185 + 0.0001*m.x134*m.x1 + 0.0001*
m.x134*m.x2 + 0.0001*m.x134*m.x3 + 0.0001*m.x134*m.x4 + 3.73746229794978*m.x134*m.x5 + 0.0001*
m.x134*m.x6 + 0.0001*m.x134*m.x7 + 0.0001*m.x134*m.x8 + 0.0001*m.x134*m.x9 + 0.0001*m.x134*m.x10
+ 0.0001*m.x134*m.x11 + 0.0001*m.x134*m.x12 + 0.0001*m.x134*m.x13 + 0.0001*m.x134*m.x14 + 0.0001
*m.x134*m.x15 + 0.0001*m.x134*m.x16 + 2.9828914391795*m.x134*m.x17 + 0.0001*m.x134*m.x18 + 0.0001
*m.x134*m.x19 + 0.0001*m.x134*m.x20 + 0.0001*m.x134*m.x21 + 0.0001*m.x134*m.x22 + 0.0001*m.x134*
m.x23 + 0.0001*m.x134*m.x24 + 0.0001*m.x134*m.x25 + 0.0001*m.x134*m.x26 + 0.0001*m.x134*m.x27 +
0.815539264390752*m.x134*m.x28 + 0.0001*m.x134*m.x29 + 0.0001*m.x134*m.x30 + 0.0001*m.x134*m.x31
+ 0.0001*m.x134*m.x32 + 0.0001*m.x134*m.x33 + 0.0001*m.x134*m.x34 + 0.0001*m.x134*m.x35 + 0.0001
*m.x134*m.x36 + 0.0001*m.x134*m.x37 + 0.0001*m.x134*m.x38 + 0.0001*m.x134*m.x39 +
2.94634320050838*m.x134*m.x40 + 0.0001*m.x134*m.x41 + 0.0001*m.x134*m.x42 + 0.0001*m.x134*m.x43
+ 0.0001*m.x134*m.x44 + 0.0001*m.x134*m.x45 + 0.0001*m.x134*m.x46 + 0.0001*m.x134*m.x47 + 0.0001
*m.x134*m.x48 + 0.0001*m.x134*m.x49 + 0.0001*m.x134*m.x50 + 0.0001*m.x134*m.x51 + 0.0001*m.x134*
m.x52 + 0.0001*m.x134*m.x53 + 0.0001*m.x134*m.x54 + 0.0001*m.x134*m.x55 + 0.0001*m.x134*m.x56 +
0.0001*m.x134*m.x57 + 0.0001*m.x134*m.x58 + 0.0001*m.x134*m.x59 + 0.0001*m.x134*m.x60 + 0.0001*
m.x134*m.x61 + 0.0001*m.x134*m.x62 + 0.0001*m.x134*m.x63 + 0.0001*m.x134*m.x64 + 0.0001*m.x134*
m.x65 + 0.0001*m.x134*m.x66 + 0.0001*m.x134*m.x67 + 0.0001*m.x134*m.x68 + 0.0001*m.x134*m.x69 +
0.0001*m.x134*m.x70 + 0.0001*m.x134*m.x71 + 0.0001*m.x134*m.x72 + 0.0001*m.x134*m.x73 + 0.0001*
m.x134*m.x74 + 0.0001*m.x134*m.x75 + 0.0001*m.x134*m.x76 + 0.0001*m.x134*m.x77 + 0.0001*m.x134*
m.x78 + 0.0001*m.x134*m.x79 + 0.0001*m.x134*m.x80 + 0.0001*m.x134*m.x81 + 0.0001*m.x134*m.x82 +
0.0001*m.x134*m.x83 + 0.0001*m.x134*m.x84 + 0.0001*m.x134*m.x85 + 0.0001*m.x134*m.x86 + 0.0001*
m.x134*m.x87 + 0.0001*m.x134*m.x88 + 0.0001*m.x134*m.x89 + 0.0001*m.x134*m.x90 + 0.0001*m.x134*
m.x91 + 0.0001*m.x134*m.x92 + 0.0001*m.x134*m.x93 + 0.0001*m.x134*m.x94 + 0.0001*m.x134*m.x95 +
0.0001*m.x134*m.x96 + 1.32511560093607*m.x134*m.x97 + 0.0001*m.x134*m.x98 + 0.0001*m.x134*m.x99
+ 0.0001*m.x134*m.x100 + 0.0001*m.x134*m.x101 + 0.0001*m.x134*m.x102 + 0.0001*m.x134*m.x103 +
0.0001*m.x134*m.x104 + 0.0001*m.x134*m.x105 + 0.0001*m.x134*m.x106 + 0.0001*m.x134*m.x107 +
0.0001*m.x134*m.x108 + 0.0001*m.x134*m.x109 + 0.0001*m.x134*m.x110 + 0.0001*m.x134*m.x111 +
0.0001*m.x134*m.x112 + 0.0001*m.x134*m.x113 + 0.0001*m.x134*m.x114 + 0.0001*m.x134*m.x115 +
0.0001*m.x134*m.x116 + 0.0001*m.x134*m.x117 + 0.0001*m.x134*m.x118 + 0.0001*m.x134*m.x119 +
0.0001*m.x134*m.x120 + 0.0001*m.x134*m.x121 + 0.0001*m.x134*m.x122 + 0.0001*m.x134*m.x123 +
0.0001*m.x134*m.x124 + 0.0001*m.x134*m.x125 + 0.0001*m.x134*m.x126 + 0.0001*m.x134*m.x127 +
0.0001*m.x134*m.x128 + 0.0001*m.x134*m.x129 + 0.0001*m.x134*m.x130 + 0.0001*m.x134*m.x131 +
0.0001*m.x134*m.x132 + 0.0001*m.x134*m.x133 + 1.73139085475637*m.x134**2 + 0.0001*m.x134*m.x135
+ 0.0001*m.x134*m.x136 + 0.0001*m.x134*m.x137 + 0.0001*m.x134*m.x138 + 0.0001*m.x134*m.x139 +
0.0001*m.x134*m.x140 + 0.0001*m.x134*m.x141 + 0.0001*m.x134*m.x142 + 0.0001*m.x134*m.x143 +
0.0001*m.x134*m.x144 + 0.0001*m.x134*m.x145 + 0.0001*m.x134*m.x146 + 0.0001*m.x134*m.x147 +
0.0001*m.x134*m.x148 + 0.0001*m.x134*m.x149 + 0.0001*m.x134*m.x150 + 0.0001*m.x134*m.x151 +
0.0001*m.x134*m.x152 + 0.0001*m.x134*m.x153 + 0.0001*m.x134*m.x154 + 0.0001*m.x134*m.x155 +
0.0001*m.x134*m.x156 + 0.0001*m.x134*m.x157 + 0.0001*m.x134*m.x158 + 0.0001*m.x134*m.x159 +
0.0001*m.x134*m.x160 + 0.0001*m.x134*m.x161 + 0.0001*m.x134*m.x162 + 0.0001*m.x134*m.x163 +
0.0001*m.x134*m.x164 + 0.0001*m.x134*m.x165 + 0.0001*m.x134*m.x166 + 0.0001*m.x134*m.x167 +
0.0001*m.x134*m.x168 + 0.0001*m.x134*m.x169 + 0.0001*m.x134*m.x170 + 0.0001*m.x134*m.x171 +
0.0001*m.x134*m.x172 + 0.0001*m.x134*m.x173 + 0.0001*m.x134*m.x174 + 0.0001*m.x134*m.x175 +
0.0001*m.x134*m.x176 + 0.0001*m.x134*m.x177 + 0.0001*m.x134*m.x178 + 0.0001*m.x134*m.x179 +
0.0001*m.x134*m.x180 + 0.0001*m.x134*m.x181 + 0.0001*m.x134*m.x182 + 0.0001*m.x134*m.x183 +
0.0001*m.x134*m.x184 + 0.0001*m.x134*m.x185 + 0.0001*m.x135*m.x1 + 0.0001*m.x135*m.x2 + 0.0001*
m.x135*m.x3 + 0.0001*m.x135*m.x4 + 0.0001*m.x135*m.x5 + 3.80077230205016*m.x135*m.x6 + 0.0001*
m.x135*m.x7 + 0.0001*m.x135*m.x8 + 0.0001*m.x135*m.x9 + 0.0001*m.x135*m.x10 + 0.0001*m.x135*m.x11
+ 0.0001*m.x135*m.x12 + 0.0001*m.x135*m.x13 + 0.0001*m.x135*m.x14 + 0.0001*m.x135*m.x15 + 0.0001
*m.x135*m.x16 + 0.0001*m.x135*m.x17 + 3.03300046678543*m.x135*m.x18 + 0.0001*m.x135*m.x19 +
0.0001*m.x135*m.x20 + 0.0001*m.x135*m.x21 + 0.0001*m.x135*m.x22 + 0.0001*m.x135*m.x23 + 0.0001*
m.x135*m.x24 + 0.0001*m.x135*m.x25 + 0.0001*m.x135*m.x26 + 0.0001*m.x135*m.x27 + 0.0001*m.x135*
m.x28 + 0.84527694313714*m.x135*m.x29 + 0.0001*m.x135*m.x30 + 0.0001*m.x135*m.x31 + 0.0001*m.x135
*m.x32 + 0.0001*m.x135*m.x33 + 0.0001*m.x135*m.x34 + 0.0001*m.x135*m.x35 + 0.0001*m.x135*m.x36 +
0.0001*m.x135*m.x37 + 0.0001*m.x135*m.x38 + 0.0001*m.x135*m.x39 + 0.0001*m.x135*m.x40 +
2.99630448617448*m.x135*m.x41 + 0.0001*m.x135*m.x42 + 0.0001*m.x135*m.x43 + 0.0001*m.x135*m.x44
+ 0.0001*m.x135*m.x45 + 0.0001*m.x135*m.x46 + 0.0001*m.x135*m.x47 + 0.0001*m.x135*m.x48 + 0.0001
*m.x135*m.x49 + 0.0001*m.x135*m.x50 + 0.0001*m.x135*m.x51 + 0.0001*m.x135*m.x52 + 0.0001*m.x135*
m.x53 + 0.0001*m.x135*m.x54 + 0.0001*m.x135*m.x55 + 0.0001*m.x135*m.x56 + 0.0001*m.x135*m.x57 +
0.0001*m.x135*m.x58 + 0.0001*m.x135*m.x59 + 0.0001*m.x135*m.x60 + 0.0001*m.x135*m.x61 + 0.0001*
m.x135*m.x62 + 0.0001*m.x135*m.x63 + 0.0001*m.x135*m.x64 + 0.0001*m.x135*m.x65 + 0.0001*m.x135*
m.x66 + 0.0001*m.x135*m.x67 + 0.0001*m.x135*m.x68 + 0.0001*m.x135*m.x69 + 0.0001*m.x135*m.x70 +
0.0001*m.x135*m.x71 + 0.0001*m.x135*m.x72 + 0.0001*m.x135*m.x73 + 0.0001*m.x135*m.x74 + 0.0001*
m.x135*m.x75 + 0.0001*m.x135*m.x76 + 0.0001*m.x135*m.x77 + 0.0001*m.x135*m.x78 + 0.0001*m.x135*
m.x79 + 0.0001*m.x135*m.x80 + 0.0001*m.x135*m.x81 + 0.0001*m.x135*m.x82 + 0.0001*m.x135*m.x83 +
0.0001*m.x135*m.x84 + 0.0001*m.x135*m.x85 + 0.0001*m.x135*m.x86 + 0.0001*m.x135*m.x87 + 0.0001*
m.x135*m.x88 + 0.0001*m.x135*m.x89 + 0.0001*m.x135*m.x90 + 0.0001*m.x135*m.x91 + 0.0001*m.x135*
m.x92 + 0.0001*m.x135*m.x93 + 0.0001*m.x135*m.x94 + 0.0001*m.x135*m.x95 + 0.0001*m.x135*m.x96 +
0.0001*m.x135*m.x97 + 1.43304340993365*m.x135*m.x98 + 0.0001*m.x135*m.x99 + 0.0001*m.x135*m.x100
+ 0.0001*m.x135*m.x101 + 0.0001*m.x135*m.x102 + 0.0001*m.x135*m.x103 + 0.0001*m.x135*m.x104 +
0.0001*m.x135*m.x105 + 0.0001*m.x135*m.x106 + 0.0001*m.x135*m.x107 + 0.0001*m.x135*m.x108 +
0.0001*m.x135*m.x109 + 0.0001*m.x135*m.x110 + 0.0001*m.x135*m.x111 + 0.0001*m.x135*m.x112 +
0.0001*m.x135*m.x113 + 0.0001*m.x135*m.x114 + 0.0001*m.x135*m.x115 + 0.0001*m.x135*m.x116 +
0.0001*m.x135*m.x117 + 0.0001*m.x135*m.x118 + 0.0001*m.x135*m.x119 + 0.0001*m.x135*m.x120 +
0.0001*m.x135*m.x121 + 0.0001*m.x135*m.x122 + 0.0001*m.x135*m.x123 + 0.0001*m.x135*m.x124 +
0.0001*m.x135*m.x125 + 0.0001*m.x135*m.x126 + 0.0001*m.x135*m.x127 + 0.0001*m.x135*m.x128 +
0.0001*m.x135*m.x129 + 0.0001*m.x135*m.x130 + 0.0001*m.x135*m.x131 + 0.0001*m.x135*m.x132 +
0.0001*m.x135*m.x133 + 0.0001*m.x135*m.x134 + 1.81657116996559*m.x135**2 + 0.0001*m.x135*m.x136
+ 0.0001*m.x135*m.x137 + 0.0001*m.x135*m.x138 + 0.0001*m.x135*m.x139 + 0.0001*m.x135*m.x140 +
0.0001*m.x135*m.x141 + 0.0001*m.x135*m.x142 + 0.0001*m.x135*m.x143 + 0.0001*m.x135*m.x144 +
0.0001*m.x135*m.x145 + 0.0001*m.x135*m.x146 + 0.0001*m.x135*m.x147 + 0.0001*m.x135*m.x148 +
0.0001*m.x135*m.x149 + 0.0001*m.x135*m.x150 + 0.0001*m.x135*m.x151 + 0.0001*m.x135*m.x152 +
0.0001*m.x135*m.x153 + 0.0001*m.x135*m.x154 + 0.0001*m.x135*m.x155 + 0.0001*m.x135*m.x156 +
0.0001*m.x135*m.x157 + 0.0001*m.x135*m.x158 + 0.0001*m.x135*m.x159 + 0.0001*m.x135*m.x160 +
0.0001*m.x135*m.x161 + 0.0001*m.x135*m.x162 + 0.0001*m.x135*m.x163 + 0.0001*m.x135*m.x164 +
0.0001*m.x135*m.x165 + 0.0001*m.x135*m.x166 + 0.0001*m.x135*m.x167 + 0.0001*m.x135*m.x168 +
0.0001*m.x135*m.x169 + 0.0001*m.x135*m.x170 + 0.0001*m.x135*m.x171 + 0.0001*m.x135*m.x172 +
0.0001*m.x135*m.x173 + 0.0001*m.x135*m.x174 + 0.0001*m.x135*m.x175 + 0.0001*m.x135*m.x176 +
0.0001*m.x135*m.x177 + 0.0001*m.x135*m.x178 + 0.0001*m.x135*m.x179 + 0.0001*m.x135*m.x180 +
0.0001*m.x135*m.x181 + 0.0001*m.x135*m.x182 + 0.0001*m.x135*m.x183 + 0.0001*m.x135*m.x184 +
0.0001*m.x135*m.x185 + 0.0001*m.x136*m.x1 + 0.0001*m.x136*m.x2 + 0.0001*m.x136*m.x3 + 0.0001*
m.x136*m.x4 + 0.0001*m.x136*m.x5 + 0.0001*m.x136*m.x6 + 3.87695415522262*m.x136*m.x7 + 0.0001*
m.x136*m.x8 + 0.0001*m.x136*m.x9 + 0.0001*m.x136*m.x10 + 0.0001*m.x136*m.x11 + 0.0001*m.x136*
m.x12 + 0.0001*m.x136*m.x13 + 0.0001*m.x136*m.x14 + 0.0001*m.x136*m.x15 + 0.0001*m.x136*m.x16 +
0.0001*m.x136*m.x17 + 0.0001*m.x136*m.x18 + 3.15673633542148*m.x136*m.x19 + 0.0001*m.x136*m.x20
+ 0.0001*m.x136*m.x21 + 0.0001*m.x136*m.x22 + 0.0001*m.x136*m.x23 + 0.0001*m.x136*m.x24 + 0.0001
*m.x136*m.x25 + 0.0001*m.x136*m.x26 + 0.0001*m.x136*m.x27 + 0.0001*m.x136*m.x28 + 0.0001*m.x136*
m.x29 + 0.735363248013873*m.x136*m.x30 + 0.0001*m.x136*m.x31 + 0.0001*m.x136*m.x32 + 0.0001*
m.x136*m.x33 + 0.0001*m.x136*m.x34 + 0.0001*m.x136*m.x35 + 0.0001*m.x136*m.x36 + 0.0001*m.x136*
m.x37 + 0.0001*m.x136*m.x38 + 0.0001*m.x136*m.x39 + 0.0001*m.x136*m.x40 + 0.0001*m.x136*m.x41 +
3.0433224117282*m.x136*m.x42 + 0.0001*m.x136*m.x43 + 0.0001*m.x136*m.x44 + 0.0001*m.x136*m.x45 +
0.0001*m.x136*m.x46 + 0.0001*m.x136*m.x47 + 0.0001*m.x136*m.x48 + 0.0001*m.x136*m.x49 + 0.0001*
m.x136*m.x50 + 0.0001*m.x136*m.x51 + 0.0001*m.x136*m.x52 + 0.0001*m.x136*m.x53 + 0.0001*m.x136*
m.x54 + 0.0001*m.x136*m.x55 + 0.0001*m.x136*m.x56 + 0.0001*m.x136*m.x57 + 0.0001*m.x136*m.x58 +
0.0001*m.x136*m.x59 + 0.0001*m.x136*m.x60 + 0.0001*m.x136*m.x61 + 0.0001*m.x136*m.x62 + 0.0001*
m.x136*m.x63 + 0.0001*m.x136*m.x64 + 0.0001*m.x136*m.x65 + 0.0001*m.x136*m.x66 + 0.0001*m.x136*
m.x67 + 0.0001*m.x136*m.x68 + 0.0001*m.x136*m.x69 + 0.0001*m.x136*m.x70 + 0.0001*m.x136*m.x71 +
0.0001*m.x136*m.x72 + 0.0001*m.x136*m.x73 + 0.0001*m.x136*m.x74 + 0.0001*m.x136*m.x75 + 0.0001*
m.x136*m.x76 + 0.0001*m.x136*m.x77 + 0.0001*m.x136*m.x78 + 0.0001*m.x136*m.x79 + 0.0001*m.x136*
m.x80 + 0.0001*m.x136*m.x81 + 0.0001*m.x136*m.x82 + 0.0001*m.x136*m.x83 + 0.0001*m.x136*m.x84 +
0.0001*m.x136*m.x85 + 0.0001*m.x136*m.x86 + 0.0001*m.x136*m.x87 + 0.0001*m.x136*m.x88 + 0.0001*
m.x136*m.x89 + 0.0001*m.x136*m.x90 + 0.0001*m.x136*m.x91 + 0.0001*m.x136*m.x92 + 0.0001*m.x136*
m.x93 + 0.0001*m.x136*m.x94 + 0.0001*m.x136*m.x95 + 0.0001*m.x136*m.x96 + 0.0001*m.x136*m.x97 +
0.0001*m.x136*m.x98 + 0.0001*m.x136*m.x99 + 0.0001*m.x136*m.x100 + 0.0001*m.x136*m.x101 + 0.0001*
m.x136*m.x102 + 0.0001*m.x136*m.x103 + 0.0001*m.x136*m.x104 + 0.0001*m.x136*m.x105 + 0.0001*
m.x136*m.x106 + 0.0001*m.x136*m.x107 + 0.0001*m.x136*m.x108 + 0.0001*m.x136*m.x109 + 0.0001*
m.x136*m.x110 + 0.0001*m.x136*m.x111 + 0.0001*m.x136*m.x112 + 0.0001*m.x136*m.x113 + 0.0001*
m.x136*m.x114 + 0.0001*m.x136*m.x115 + 0.0001*m.x136*m.x116 + 0.0001*m.x136*m.x117 + 0.0001*
m.x136*m.x118 + 0.0001*m.x136*m.x119 + 0.0001*m.x136*m.x120 + 0.0001*m.x136*m.x121 + 0.0001*
m.x136*m.x122 + 0.0001*m.x136*m.x123 + 0.0001*m.x136*m.x124 + 0.0001*m.x136*m.x125 + 0.0001*
m.x136*m.x126 + 0.0001*m.x136*m.x127 + 0.0001*m.x136*m.x128 + 0.0001*m.x136*m.x129 + 0.0001*
m.x136*m.x130 + 0.0001*m.x136*m.x131 + 0.0001*m.x136*m.x132 + 0.0001*m.x136*m.x133 + 0.0001*
m.x136*m.x134 + 0.0001*m.x136*m.x135 + 1.65089628628065*m.x136**2 + 0.0001*m.x136*m.x137 + 0.0001
*m.x136*m.x138 + 0.0001*m.x136*m.x139 + 0.0001*m.x136*m.x140 + 0.0001*m.x136*m.x141 + 0.0001*
m.x136*m.x142 + 0.0001*m.x136*m.x143 + 0.0001*m.x136*m.x144 + 0.0001*m.x136*m.x145 + 0.0001*
m.x136*m.x146 + 0.0001*m.x136*m.x147 + 0.0001*m.x136*m.x148 + 0.0001*m.x136*m.x149 + 0.0001*
m.x136*m.x150 + 0.0001*m.x136*m.x151 + 0.0001*m.x136*m.x152 + 0.0001*m.x136*m.x153 + 0.0001*
m.x136*m.x154 + 0.0001*m.x136*m.x155 + 0.0001*m.x136*m.x156 + 0.0001*m.x136*m.x157 + 0.0001*
m.x136*m.x158 + 0.0001*m.x136*m.x159 + 0.0001*m.x136*m.x160 + 0.0001*m.x136*m.x161 + 0.0001*
m.x136*m.x162 + 0.0001*m.x136*m.x163 + 0.0001*m.x136*m.x164 + 0.0001*m.x136*m.x165 + 0.0001*
m.x136*m.x166 + 0.0001*m.x136*m.x167 + 0.0001*m.x136*m.x168 + 0.0001*m.x136*m.x169 + 0.0001*
m.x136*m.x170 + 0.0001*m.x136*m.x171 + 0.0001*m.x136*m.x172 + 0.0001*m.x136*m.x173 + 0.0001*
m.x136*m.x174 + 0.0001*m.x136*m.x175 + 0.0001*m.x136*m.x176 + 0.0001*m.x136*m.x177 + 0.0001*
m.x136*m.x178 + 0.0001*m.x136*m.x179 + 0.0001*m.x136*m.x180 + 0.0001*m.x136*m.x181 + 0.0001*
m.x136*m.x182 + 0.0001*m.x136*m.x183 + 0.0001*m.x136*m.x184 + 0.0001*m.x136*m.x185 + 0.0001*
m.x137*m.x1 + 0.0001*m.x137*m.x2 + 0.0001*m.x137*m.x3 + 0.0001*m.x137*m.x4 + 0.0001*m.x137*m.x5
+ 0.0001*m.x137*m.x6 + 0.0001*m.x137*m.x7 + 3.89718096986595*m.x137*m.x8 + 0.0001*m.x137*m.x9 +
0.0001*m.x137*m.x10 + 0.0001*m.x137*m.x11 + 0.0001*m.x137*m.x12 + 0.0001*m.x137*m.x13 + 0.0001*
m.x137*m.x14 + 0.0001*m.x137*m.x15 + 0.0001*m.x137*m.x16 + 0.0001*m.x137*m.x17 + 0.0001*m.x137*
m.x18 + 0.0001*m.x137*m.x19 + 3.50472792610672*m.x137*m.x20 + 0.0001*m.x137*m.x21 + 0.0001*m.x137
*m.x22 + 0.0001*m.x137*m.x23 + 0.0001*m.x137*m.x24 + 0.0001*m.x137*m.x25 + 0.0001*m.x137*m.x26 +
0.0001*m.x137*m.x27 + 0.0001*m.x137*m.x28 + 0.0001*m.x137*m.x29 + 0.0001*m.x137*m.x30 +
0.923236326862633*m.x137*m.x31 + 0.0001*m.x137*m.x32 + 0.0001*m.x137*m.x33 + 0.0001*m.x137*m.x34
+ 0.0001*m.x137*m.x35 + 0.0001*m.x137*m.x36 + 0.0001*m.x137*m.x37 + 0.0001*m.x137*m.x38 + 0.0001
*m.x137*m.x39 + 0.0001*m.x137*m.x40 + 0.0001*m.x137*m.x41 + 0.0001*m.x137*m.x42 + 3.3788111077122
*m.x137*m.x43 + 0.0001*m.x137*m.x44 + 0.0001*m.x137*m.x45 + 0.0001*m.x137*m.x46 + 0.0001*m.x137*
m.x47 + 0.0001*m.x137*m.x48 + 0.0001*m.x137*m.x49 + 0.0001*m.x137*m.x50 + 0.0001*m.x137*m.x51 +
0.0001*m.x137*m.x52 + 0.0001*m.x137*m.x53 + 0.0001*m.x137*m.x54 + 0.0001*m.x137*m.x55 + 0.0001*
m.x137*m.x56 + 0.0001*m.x137*m.x57 + 0.0001*m.x137*m.x58 + 0.0001*m.x137*m.x59 + 0.0001*m.x137*
m.x60 + 0.0001*m.x137*m.x61 + 0.0001*m.x137*m.x62 + 0.0001*m.x137*m.x63 + 0.0001*m.x137*m.x64 +
0.0001*m.x137*m.x65 + 0.0001*m.x137*m.x66 + 0.0001*m.x137*m.x67 + 0.0001*m.x137*m.x68 + 0.0001*
m.x137*m.x69 + 0.0001*m.x137*m.x70 + 0.0001*m.x137*m.x71 + 0.0001*m.x137*m.x72 + 0.0001*m.x137*
m.x73 + 0.0001*m.x137*m.x74 + 0.0001*m.x137*m.x75 + 0.0001*m.x137*m.x76 + 0.0001*m.x137*m.x77 +
0.0001*m.x137*m.x78 + 0.0001*m.x137*m.x79 + 0.0001*m.x137*m.x80 + 0.0001*m.x137*m.x81 + 0.0001*
m.x137*m.x82 + 0.0001*m.x137*m.x83 + 0.0001*m.x137*m.x84 + 0.0001*m.x137*m.x85 + 0.0001*m.x137*
m.x86 + 0.0001*m.x137*m.x87 + 0.0001*m.x137*m.x88 + 0.0001*m.x137*m.x89 + 0.0001*m.x137*m.x90 +
0.0001*m.x137*m.x91 + 0.0001*m.x137*m.x92 + 0.0001*m.x137*m.x93 + 0.0001*m.x137*m.x94 + 0.0001*
m.x137*m.x95 + 0.0001*m.x137*m.x96 + 0.0001*m.x137*m.x97 + 0.0001*m.x137*m.x98 + 1.4635914120443*
m.x137*m.x99 + 0.0001*m.x137*m.x100 + 0.0001*m.x137*m.x101 + 0.0001*m.x137*m.x102 + 0.0001*m.x137
*m.x103 + 0.0001*m.x137*m.x104 + 0.0001*m.x137*m.x105 + 0.0001*m.x137*m.x106 + 0.0001*m.x137*
m.x107 + 0.0001*m.x137*m.x108 + 0.0001*m.x137*m.x109 + 0.0001*m.x137*m.x110 + 0.0001*m.x137*
m.x111 + 0.0001*m.x137*m.x112 + 0.0001*m.x137*m.x113 + 0.0001*m.x137*m.x114 + 0.0001*m.x137*
m.x115 + 0.0001*m.x137*m.x116 + 0.0001*m.x137*m.x117 + 0.0001*m.x137*m.x118 + 0.0001*m.x137*
m.x119 + 0.0001*m.x137*m.x120 + 0.0001*m.x137*m.x121 + 0.0001*m.x137*m.x122 + 0.0001*m.x137*
m.x123 + 0.0001*m.x137*m.x124 + 0.0001*m.x137*m.x125 + 0.0001*m.x137*m.x126 + 0.0001*m.x137*
m.x127 + 0.0001*m.x137*m.x128 + 0.0001*m.x137*m.x129 + 0.0001*m.x137*m.x130 + 0.0001*m.x137*
m.x131 + 0.0001*m.x137*m.x132 + 0.0001*m.x137*m.x133 + 0.0001*m.x137*m.x134 + 0.0001*m.x137*
m.x135 + 0.0001*m.x137*m.x136 + 2.07270464089841*m.x137**2 + 0.0001*m.x137*m.x138 + 0.0001*m.x137
*m.x139 + 0.0001*m.x137*m.x140 + 0.0001*m.x137*m.x141 + 0.0001*m.x137*m.x142 + 0.0001*m.x137*
m.x143 + 0.0001*m.x137*m.x144 + 0.0001*m.x137*m.x145 + 0.0001*m.x137*m.x146 + 0.0001*m.x137*
m.x147 + 0.0001*m.x137*m.x148 + 0.0001*m.x137*m.x149 + 0.0001*m.x137*m.x150 + 0.0001*m.x137*
m.x151 + 0.0001*m.x137*m.x152 + 0.0001*m.x137*m.x153 + 0.0001*m.x137*m.x154 + 0.0001*m.x137*
m.x155 + 0.0001*m.x137*m.x156 + 0.0001*m.x137*m.x157 + 0.0001*m.x137*m.x158 + 0.0001*m.x137*
m.x159 + 0.0001*m.x137*m.x160 + 0.0001*m.x137*m.x161 + 0.0001*m.x137*m.x162 + 0.0001*m.x137*
m.x163 + 0.0001*m.x137*m.x164 + 0.0001*m.x137*m.x165 + 0.0001*m.x137*m.x166 + 0.0001*m.x137*
m.x167 + 0.0001*m.x137*m.x168 + 0.0001*m.x137*m.x169 + 0.0001*m.x137*m.x170 + 0.0001*m.x137*
m.x171 + 0.0001*m.x137*m.x172 + 0.0001*m.x137*m.x173 + 0.0001*m.x137*m.x174 + 0.0001*m.x137*
m.x175 + 0.0001*m.x137*m.x176 + 0.0001*m.x137*m.x177 + 0.0001*m.x137*m.x178 + 0.0001*m.x137*
m.x179 + 0.0001*m.x137*m.x180 + 0.0001*m.x137*m.x181 + 0.0001*m.x137*m.x182 + 0.0001*m.x137*
m.x183 + 0.0001*m.x137*m.x184 + 0.0001*m.x137*m.x185 + 0.0001*m.x138*m.x1 + 0.0001*m.x138*m.x2 +
0.0001*m.x138*m.x3 + 0.0001*m.x138*m.x4 + 0.0001*m.x138*m.x5 + 0.0001*m.x138*m.x6 + 0.0001*m.x138
*m.x7 + 0.0001*m.x138*m.x8 + 3.92192189312951*m.x138*m.x9 + 0.0001*m.x138*m.x10 + 0.0001*m.x138*
m.x11 + 0.0001*m.x138*m.x12 + 0.0001*m.x138*m.x13 + 0.0001*m.x138*m.x14 + 0.0001*m.x138*m.x15 +
0.0001*m.x138*m.x16 + 0.0001*m.x138*m.x17 + 0.0001*m.x138*m.x18 + 0.0001*m.x138*m.x19 + 0.0001*
m.x138*m.x20 + 3.52697733053469*m.x138*m.x21 + 0.0001*m.x138*m.x22 + 0.0001*m.x138*m.x23 + 0.0001
*m.x138*m.x24 + 0.0001*m.x138*m.x25 + 0.0001*m.x138*m.x26 + 0.0001*m.x138*m.x27 + 0.0001*m.x138*
m.x28 + 0.0001*m.x138*m.x29 + 0.0001*m.x138*m.x30 + 0.0001*m.x138*m.x31 + 0.969443186220753*
m.x138*m.x32 + 0.0001*m.x138*m.x33 + 0.0001*m.x138*m.x34 + 0.0001*m.x138*m.x35 + 0.0001*m.x138*
m.x36 + 0.0001*m.x138*m.x37 + 0.0001*m.x138*m.x38 + 0.0001*m.x138*m.x39 + 0.0001*m.x138*m.x40 +
0.0001*m.x138*m.x41 + 0.0001*m.x138*m.x42 + 0.0001*m.x138*m.x43 + 3.40026111937272*m.x138*m.x44
+ 0.0001*m.x138*m.x45 + 0.0001*m.x138*m.x46 + 0.0001*m.x138*m.x47 + 0.0001*m.x138*m.x48 + 0.0001
*m.x138*m.x49 + 0.0001*m.x138*m.x50 + 0.0001*m.x138*m.x51 + 0.0001*m.x138*m.x52 + 0.0001*m.x138*
m.x53 + 0.0001*m.x138*m.x54 + 0.0001*m.x138*m.x55 + 0.0001*m.x138*m.x56 + 0.0001*m.x138*m.x57 +
0.0001*m.x138*m.x58 + 0.0001*m.x138*m.x59 + 0.0001*m.x138*m.x60 + 0.0001*m.x138*m.x61 + 0.0001*
m.x138*m.x62 + 0.0001*m.x138*m.x63 + 0.0001*m.x138*m.x64 + 0.0001*m.x138*m.x65 + 0.0001*m.x138*
m.x66 + 0.0001*m.x138*m.x67 + 0.0001*m.x138*m.x68 + 0.0001*m.x138*m.x69 + 0.0001*m.x138*m.x70 +
0.0001*m.x138*m.x71 + 0.0001*m.x138*m.x72 + 0.0001*m.x138*m.x73 + 0.0001*m.x138*m.x74 + 0.0001*
m.x138*m.x75 + 0.0001*m.x138*m.x76 + 0.0001*m.x138*m.x77 + 0.0001*m.x138*m.x78 + 0.0001*m.x138*
m.x79 + 0.0001*m.x138*m.x80 + 0.0001*m.x138*m.x81 + 0.0001*m.x138*m.x82 + 0.0001*m.x138*m.x83 +
0.0001*m.x138*m.x84 + 0.0001*m.x138*m.x85 + 0.0001*m.x138*m.x86 + 0.0001*m.x138*m.x87 + 0.0001*
m.x138*m.x88 + 0.0001*m.x138*m.x89 + 0.0001*m.x138*m.x90 + 0.0001*m.x138*m.x91 + 0.0001*m.x138*
m.x92 + 0.0001*m.x138*m.x93 + 0.0001*m.x138*m.x94 + 0.0001*m.x138*m.x95 + 0.0001*m.x138*m.x96 +
0.0001*m.x138*m.x97 + 0.0001*m.x138*m.x98 + 0.0001*m.x138*m.x99 + 1.47288250170917*m.x138*m.x100
+ 0.0001*m.x138*m.x101 + 0.0001*m.x138*m.x102 + 0.0001*m.x138*m.x103 + 0.0001*m.x138*m.x104 +
0.0001*m.x138*m.x105 + 0.0001*m.x138*m.x106 + 0.0001*m.x138*m.x107 + 0.0001*m.x138*m.x108 +
0.0001*m.x138*m.x109 + 0.0001*m.x138*m.x110 + 0.0001*m.x138*m.x111 + 0.0001*m.x138*m.x112 +
0.0001*m.x138*m.x113 + 0.0001*m.x138*m.x114 + 0.0001*m.x138*m.x115 + 0.0001*m.x138*m.x116 +
0.0001*m.x138*m.x117 + 0.0001*m.x138*m.x118 + 0.0001*m.x138*m.x119 + 0.0001*m.x138*m.x120 +
0.0001*m.x138*m.x121 + 0.0001*m.x138*m.x122 + 0.0001*m.x138*m.x123 + 0.0001*m.x138*m.x124 +
0.0001*m.x138*m.x125 + 0.0001*m.x138*m.x126 + 0.0001*m.x138*m.x127 + 0.0001*m.x138*m.x128 +
0.0001*m.x138*m.x129 + 0.0001*m.x138*m.x130 + 0.0001*m.x138*m.x131 + 0.0001*m.x138*m.x132 +
0.0001*m.x138*m.x133 + 0.0001*m.x138*m.x134 + 0.0001*m.x138*m.x135 + 0.0001*m.x138*m.x136 +
0.0001*m.x138*m.x137 + 2.0991043613322*m.x138**2 + 0.0001*m.x138*m.x139 + 0.0001*m.x138*m.x140 +
0.0001*m.x138*m.x141 + 0.0001*m.x138*m.x142 + 0.0001*m.x138*m.x143 + 0.0001*m.x138*m.x144 +
0.0001*m.x138*m.x145 + 0.0001*m.x138*m.x146 + 0.0001*m.x138*m.x147 + 0.0001*m.x138*m.x148 +
0.0001*m.x138*m.x149 + 0.0001*m.x138*m.x150 + 0.0001*m.x138*m.x151 + 0.0001*m.x138*m.x152 +
0.0001*m.x138*m.x153 + 0.0001*m.x138*m.x154 + 0.0001*m.x138*m.x155 + 0.0001*m.x138*m.x156 +
0.0001*m.x138*m.x157 + 0.0001*m.x138*m.x158 + 0.0001*m.x138*m.x159 + 0.0001*m.x138*m.x160 +
0.0001*m.x138*m.x161 + 0.0001*m.x138*m.x162 + 0.0001*m.x138*m.x163 + 0.0001*m.x138*m.x164 +
0.0001*m.x138*m.x165 + 0.0001*m.x138*m.x166 + 0.0001*m.x138*m.x167 + 0.0001*m.x138*m.x168 +
0.0001*m.x138*m.x169 + 0.0001*m.x138*m.x170 + 0.0001*m.x138*m.x171 + 0.0001*m.x138*m.x172 +
0.0001*m.x138*m.x173 + 0.0001*m.x138*m.x174 + 0.0001*m.x138*m.x175 + 0.0001*m.x138*m.x176 +
0.0001*m.x138*m.x177 + 0.0001*m.x138*m.x178 + 0.0001*m.x138*m.x179 + 0.0001*m.x138*m.x180 +
0.0001*m.x138*m.x181 + 0.0001*m.x138*m.x182 + 0.0001*m.x138*m.x183 + 0.0001*m.x138*m.x184 +
0.0001*m.x138*m.x185 + 0.0001*m.x139*m.x1 + 0.0001*m.x139*m.x2 + 0.0001*m.x139*m.x3 + 0.0001*
m.x139*m.x4 + 0.0001*m.x139*m.x5 + 0.0001*m.x139*m.x6 + 0.0001*m.x139*m.x7 + 0.0001*m.x139*m.x8
+ 0.0001*m.x139*m.x9 + 4.04894461999615*m.x139*m.x10 + 0.0001*m.x139*m.x11 + 0.0001*m.x139*m.x12
+ 0.0001*m.x139*m.x13 + 0.0001*m.x139*m.x14 + 0.0001*m.x139*m.x15 + 0.0001*m.x139*m.x16 + 0.0001
*m.x139*m.x17 + 0.0001*m.x139*m.x18 + 0.0001*m.x139*m.x19 + 0.0001*m.x139*m.x20 + 0.0001*m.x139*
m.x21 + 3.33930736808*m.x139*m.x22 + 0.0001*m.x139*m.x23 + 0.0001*m.x139*m.x24 + 0.0001*m.x139*
m.x25 + 0.0001*m.x139*m.x26 + 0.0001*m.x139*m.x27 + 0.0001*m.x139*m.x28 + 0.0001*m.x139*m.x29 +
0.0001*m.x139*m.x30 + 0.0001*m.x139*m.x31 + 0.0001*m.x139*m.x32 + 1.01807942895716*m.x139*m.x33
+ 0.0001*m.x139*m.x34 + 0.0001*m.x139*m.x35 + 0.0001*m.x139*m.x36 + 0.0001*m.x139*m.x37 + 0.0001
*m.x139*m.x38 + 0.0001*m.x139*m.x39 + 0.0001*m.x139*m.x40 + 0.0001*m.x139*m.x41 + 0.0001*m.x139*
m.x42 + 0.0001*m.x139*m.x43 + 0.0001*m.x139*m.x44 + 3.55308816066067*m.x139*m.x45 + 0.0001*m.x139
*m.x46 + 0.0001*m.x139*m.x47 + 0.0001*m.x139*m.x48 + 0.0001*m.x139*m.x49 + 0.0001*m.x139*m.x50 +
0.0001*m.x139*m.x51 + 0.0001*m.x139*m.x52 + 0.0001*m.x139*m.x53 + 0.0001*m.x139*m.x54 + 0.0001*
m.x139*m.x55 + 0.0001*m.x139*m.x56 + 0.0001*m.x139*m.x57 + 0.0001*m.x139*m.x58 +
0.552520159022577*m.x139*m.x59 + 0.0001*m.x139*m.x60 + 0.0001*m.x139*m.x61 + 0.0001*m.x139*m.x62
+ 0.0001*m.x139*m.x63 + 0.0001*m.x139*m.x64 + 0.0001*m.x139*m.x65 + 0.0001*m.x139*m.x66 + 0.0001
*m.x139*m.x67 + 0.0001*m.x139*m.x68 + 0.0001*m.x139*m.x69 + 0.0001*m.x139*m.x70 + 0.0001*m.x139*
m.x71 + 0.0001*m.x139*m.x72 + 0.0001*m.x139*m.x73 + 0.0001*m.x139*m.x74 + 0.0001*m.x139*m.x75 +
0.0001*m.x139*m.x76 + 0.0001*m.x139*m.x77 + 0.0001*m.x139*m.x78 + 0.0001*m.x139*m.x79 + 0.0001*
m.x139*m.x80 + 0.0001*m.x139*m.x81 + 0.0001*m.x139*m.x82 + 0.0001*m.x139*m.x83 + 0.0001*m.x139*
m.x84 + 0.0001*m.x139*m.x85 + 0.0001*m.x139*m.x86 + 0.0001*m.x139*m.x87 + 0.0001*m.x139*m.x88 +
0.0001*m.x139*m.x89 + 0.0001*m.x139*m.x90 + 0.0001*m.x139*m.x91 + 0.0001*m.x139*m.x92 + 0.0001*
m.x139*m.x93 + 0.0001*m.x139*m.x94 + 0.0001*m.x139*m.x95 + 0.0001*m.x139*m.x96 + 0.0001*m.x139*
m.x97 + 0.0001*m.x139*m.x98 + 0.0001*m.x139*m.x99 + 0.0001*m.x139*m.x100 + 1.40576631319842*
m.x139*m.x101 + 0.0001*m.x139*m.x102 + 0.0001*m.x139*m.x103 + 0.0001*m.x139*m.x104 + 0.0001*
m.x139*m.x105 + 0.0001*m.x139*m.x106 + 0.0001*m.x139*m.x107 + 0.0001*m.x139*m.x108 + 0.0001*
m.x139*m.x109 + 0.0001*m.x139*m.x110 + 0.0001*m.x139*m.x111 + 0.0001*m.x139*m.x112 + 0.0001*
m.x139*m.x113 + 0.0001*m.x139*m.x114 + 0.0001*m.x139*m.x115 + 0.0001*m.x139*m.x116 + 0.0001*
m.x139*m.x117 + 0.0001*m.x139*m.x118 + 0.0001*m.x139*m.x119 + 0.0001*m.x139*m.x120 + 0.0001*
m.x139*m.x121 + 0.0001*m.x139*m.x122 + 0.0001*m.x139*m.x123 + 0.0001*m.x139*m.x124 + 0.0001*
m.x139*m.x125 + 0.0001*m.x139*m.x126 + 0.0001*m.x139*m.x127 + 0.0001*m.x139*m.x128 + 0.0001*
m.x139*m.x129 + 0.0001*m.x139*m.x130 + 0.0001*m.x139*m.x131 + 0.0001*m.x139*m.x132 + 0.0001*
m.x139*m.x133 + 0.0001*m.x139*m.x134 + 0.0001*m.x139*m.x135 + 0.0001*m.x139*m.x136 + 0.0001*
m.x139*m.x137 + 0.0001*m.x139*m.x138 + 2.21319412642794*m.x139**2 + 0.0001*m.x139*m.x140 + 0.0001
*m.x139*m.x141 + 0.0001*m.x139*m.x142 + 0.0001*m.x139*m.x143 + 0.0001*m.x139*m.x144 + 0.0001*
m.x139*m.x145 + 0.0001*m.x139*m.x146 + 0.0001*m.x139*m.x147 + 0.0001*m.x139*m.x148 + 0.0001*
m.x139*m.x149 + 0.0001*m.x139*m.x150 + 0.0001*m.x139*m.x151 + 0.0001*m.x139*m.x152 + 0.0001*
m.x139*m.x153 + 0.0001*m.x139*m.x154 + 0.0001*m.x139*m.x155 + 0.0001*m.x139*m.x156 + 0.0001*
m.x139*m.x157 + 0.0001*m.x139*m.x158 + 0.0001*m.x139*m.x159 + 0.0001*m.x139*m.x160 + 0.0001*
m.x139*m.x161 + 0.0001*m.x139*m.x162 + 0.0001*m.x139*m.x163 + 0.0001*m.x139*m.x164 + 0.0001*
m.x139*m.x165 + 0.0001*m.x139*m.x166 + 0.0001*m.x139*m.x167 + 0.0001*m.x139*m.x168 + 0.0001*
m.x139*m.x169 + 0.0001*m.x139*m.x170 + 0.0001*m.x139*m.x171 + 0.0001*m.x139*m.x172 + 0.0001*
m.x139*m.x173 + 0.0001*m.x139*m.x174 + 0.0001*m.x139*m.x175 + 0.0001*m.x139*m.x176 + 0.0001*
m.x139*m.x177 + 0.0001*m.x139*m.x178 + 0.0001*m.x139*m.x179 + 0.0001*m.x139*m.x180 + 0.0001*
m.x139*m.x181 + 0.0001*m.x139*m.x182 + 0.0001*m.x139*m.x183 + 0.0001*m.x139*m.x184 + 0.0001*
m.x139*m.x185 + 0.0001*m.x140*m.x1 + 0.0001*m.x140*m.x2 + 0.0001*m.x140*m.x3 + 0.0001*m.x140*m.x4
+ 0.0001*m.x140*m.x5 + 0.0001*m.x140*m.x6 + 0.0001*m.x140*m.x7 + 0.0001*m.x140*m.x8 + 0.0001*
m.x140*m.x9 + 0.0001*m.x140*m.x10 + 4.00357255534043*m.x140*m.x11 + 0.0001*m.x140*m.x12 + 0.0001*
m.x140*m.x13 + 0.0001*m.x140*m.x14 + 0.0001*m.x140*m.x15 + 0.0001*m.x140*m.x16 + 0.0001*m.x140*
m.x17 + 0.0001*m.x140*m.x18 + 0.0001*m.x140*m.x19 + 0.0001*m.x140*m.x20 + 0.0001*m.x140*m.x21 +
0.0001*m.x140*m.x22 + 3.22970873986782*m.x140*m.x23 + 0.0001*m.x140*m.x24 + 0.0001*m.x140*m.x25
+ 0.0001*m.x140*m.x26 + 0.0001*m.x140*m.x27 + 0.0001*m.x140*m.x28 + 0.0001*m.x140*m.x29 + 0.0001
*m.x140*m.x30 + 0.0001*m.x140*m.x31 + 0.0001*m.x140*m.x32 + 0.0001*m.x140*m.x33 +
0.988072237295943*m.x140*m.x34 + 0.0001*m.x140*m.x35 + 0.0001*m.x140*m.x36 + 0.0001*m.x140*m.x37
+ 0.0001*m.x140*m.x38 + 0.0001*m.x140*m.x39 + 0.0001*m.x140*m.x40 + 0.0001*m.x140*m.x41 + 0.0001
*m.x140*m.x42 + 0.0001*m.x140*m.x43 + 0.0001*m.x140*m.x44 + 0.0001*m.x140*m.x45 +
3.43647287279779*m.x140*m.x46 + 0.0001*m.x140*m.x47 + 0.0001*m.x140*m.x48 + 0.0001*m.x140*m.x49
+ 0.0001*m.x140*m.x50 + 0.0001*m.x140*m.x51 + 0.0001*m.x140*m.x52 + 0.0001*m.x140*m.x53 + 0.0001
*m.x140*m.x54 + 0.0001*m.x140*m.x55 + 0.0001*m.x140*m.x56 + 0.0001*m.x140*m.x57 + 0.0001*m.x140*
m.x58 + 0.0001*m.x140*m.x59 + 0.0001*m.x140*m.x60 + 0.0001*m.x140*m.x61 + 0.0001*m.x140*m.x62 +
0.0001*m.x140*m.x63 + 0.0001*m.x140*m.x64 + 0.0001*m.x140*m.x65 + 0.0001*m.x140*m.x66 + 0.0001*
m.x140*m.x67 + 0.0001*m.x140*m.x68 + 0.0001*m.x140*m.x69 + 0.0001*m.x140*m.x70 + 0.0001*m.x140*
m.x71 + 0.0001*m.x140*m.x72 + 0.0001*m.x140*m.x73 + 0.0001*m.x140*m.x74 + 0.0001*m.x140*m.x75 +
0.0001*m.x140*m.x76 + 0.0001*m.x140*m.x77 + 0.0001*m.x140*m.x78 + 0.0001*m.x140*m.x79 + 0.0001*
m.x140*m.x80 + 0.0001*m.x140*m.x81 + 0.0001*m.x140*m.x82 + 0.0001*m.x140*m.x83 + 0.0001*m.x140*
m.x84 + 0.0001*m.x140*m.x85 + 0.0001*m.x140*m.x86 + 0.0001*m.x140*m.x87 + 0.0001*m.x140*m.x88 +
0.0001*m.x140*m.x89 + 0.0001*m.x140*m.x90 + 0.0001*m.x140*m.x91 + 0.0001*m.x140*m.x92 + 0.0001*
m.x140*m.x93 + 0.0001*m.x140*m.x94 + 0.0001*m.x140*m.x95 + 0.0001*m.x140*m.x96 + 0.0001*m.x140*
m.x97 + 0.0001*m.x140*m.x98 + 0.0001*m.x140*m.x99 + 0.0001*m.x140*m.x100 + 0.0001*m.x140*m.x101
+ 1.40558683166425*m.x140*m.x102 + 0.0001*m.x140*m.x103 + 0.0001*m.x140*m.x104 + 0.0001*m.x140*
m.x105 + 0.0001*m.x140*m.x106 + 0.0001*m.x140*m.x107 + 0.0001*m.x140*m.x108 + 0.0001*m.x140*
m.x109 + 0.0001*m.x140*m.x110 + 0.0001*m.x140*m.x111 + 0.0001*m.x140*m.x112 + 0.0001*m.x140*
m.x113 + 0.0001*m.x140*m.x114 + 0.0001*m.x140*m.x115 + 0.0001*m.x140*m.x116 + 0.0001*m.x140*
m.x117 + 0.0001*m.x140*m.x118 + 0.0001*m.x140*m.x119 + 0.0001*m.x140*m.x120 + 0.0001*m.x140*
m.x121 + 0.0001*m.x140*m.x122 + 0.0001*m.x140*m.x123 + 0.0001*m.x140*m.x124 + 0.0001*m.x140*
m.x125 + 0.0001*m.x140*m.x126 + 0.0001*m.x140*m.x127 + 0.0001*m.x140*m.x128 + 0.0001*m.x140*
m.x129 + 0.0001*m.x140*m.x130 + 0.0001*m.x140*m.x131 + 0.0001*m.x140*m.x132 + 0.0001*m.x140*
m.x133 + 0.0001*m.x140*m.x134 + 0.0001*m.x140*m.x135 + 0.0001*m.x140*m.x136 + 0.0001*m.x140*
m.x137 + 0.0001*m.x140*m.x138 + 0.0001*m.x140*m.x139 + 2.14795828990021*m.x140**2 + 0.0001*m.x140
*m.x141 + 0.0001*m.x140*m.x142 + 0.0001*m.x140*m.x143 + 0.0001*m.x140*m.x144 + 0.0001*m.x140*
m.x145 + 0.0001*m.x140*m.x146 + 0.0001*m.x140*m.x147 + 0.0001*m.x140*m.x148 + 0.0001*m.x140*
m.x149 + 0.0001*m.x140*m.x150 + 0.0001*m.x140*m.x151 + 0.0001*m.x140*m.x152 + 0.0001*m.x140*
m.x153 + 0.0001*m.x140*m.x154 + 0.0001*m.x140*m.x155 + 0.0001*m.x140*m.x156 + 0.0001*m.x140*
m.x157 + 0.0001*m.x140*m.x158 + 0.0001*m.x140*m.x159 + 0.0001*m.x140*m.x160 + 0.0001*m.x140*
m.x161 + 0.0001*m.x140*m.x162 + 0.0001*m.x140*m.x163 + 0.0001*m.x140*m.x164 + 0.0001*m.x140*
m.x165 + 0.0001*m.x140*m.x166 + 0.0001*m.x140*m.x167 + 0.0001*m.x140*m.x168 + 0.0001*m.x140*
m.x169 + 0.0001*m.x140*m.x170 + 0.0001*m.x140*m.x171 + 0.0001*m.x140*m.x172 + 0.0001*m.x140*
m.x173 + 0.0001*m.x140*m.x174 + 0.0001*m.x140*m.x175 + 0.0001*m.x140*m.x176 + 0.0001*m.x140*
m.x177 + 0.0001*m.x140*m.x178 + 0.0001*m.x140*m.x179 + 0.0001*m.x140*m.x180 + 0.0001*m.x140*
m.x181 + 0.0001*m.x140*m.x182 + 0.0001*m.x140*m.x183 + 0.0001*m.x140*m.x184 + 0.0001*m.x140*
m.x185 + 0.0001*m.x141*m.x1 + 0.0001*m.x141*m.x2 + 0.0001*m.x141*m.x3 + 0.0001*m.x141*m.x4 +
0.0001*m.x141*m.x5 + 0.0001*m.x141*m.x6 + 0.0001*m.x141*m.x7 + 0.0001*m.x141*m.x8 + 0.0001*m.x141
*m.x9 + 0.0001*m.x141*m.x10 + 0.0001*m.x141*m.x11 + 3.99239821446817*m.x141*m.x12 + 0.0001*m.x141
*m.x13 + 0.0001*m.x141*m.x14 + 0.0001*m.x141*m.x15 + 0.0001*m.x141*m.x16 + 0.0001*m.x141*m.x17 +
0.0001*m.x141*m.x18 + 0.0001*m.x141*m.x19 + 0.0001*m.x141*m.x20 + 0.0001*m.x141*m.x21 + 0.0001*
m.x141*m.x22 + 0.0001*m.x141*m.x23 + 3.2206943783493*m.x141*m.x24 + 0.0001*m.x141*m.x25 + 0.0001*
m.x141*m.x26 + 0.0001*m.x141*m.x27 + 0.0001*m.x141*m.x28 + 0.0001*m.x141*m.x29 + 0.0001*m.x141*
m.x30 + 0.0001*m.x141*m.x31 + 0.0001*m.x141*m.x32 + 0.0001*m.x141*m.x33 + 0.0001*m.x141*m.x34 +
0.991883123544148*m.x141*m.x35 + 0.0001*m.x141*m.x36 + 0.0001*m.x141*m.x37 + 0.0001*m.x141*m.x38
+ 0.0001*m.x141*m.x39 + 0.0001*m.x141*m.x40 + 0.0001*m.x141*m.x41 + 0.0001*m.x141*m.x42 + 0.0001
*m.x141*m.x43 + 0.0001*m.x141*m.x44 + 0.0001*m.x141*m.x45 + 0.0001*m.x141*m.x46 +
3.42688139906742*m.x141*m.x47 + 0.0001*m.x141*m.x48 + 0.0001*m.x141*m.x49 + 0.0001*m.x141*m.x50
+ 0.0001*m.x141*m.x51 + 0.0001*m.x141*m.x52 + 0.0001*m.x141*m.x53 + 0.0001*m.x141*m.x54 + 0.0001
*m.x141*m.x55 + 0.0001*m.x141*m.x56 + 0.0001*m.x141*m.x57 + 0.0001*m.x141*m.x58 + 0.0001*m.x141*
m.x59 + 0.0001*m.x141*m.x60 + 0.0001*m.x141*m.x61 + 0.0001*m.x141*m.x62 + 0.0001*m.x141*m.x63 +
0.0001*m.x141*m.x64 + 0.0001*m.x141*m.x65 + 0.0001*m.x141*m.x66 + 0.0001*m.x141*m.x67 + 0.0001*
m.x141*m.x68 + 0.0001*m.x141*m.x69 + 0.0001*m.x141*m.x70 + 0.0001*m.x141*m.x71 + 0.0001*m.x141*
m.x72 + 0.0001*m.x141*m.x73 + 0.0001*m.x141*m.x74 + 0.0001*m.x141*m.x75 + 0.0001*m.x141*m.x76 +
0.0001*m.x141*m.x77 + 0.0001*m.x141*m.x78 + 0.0001*m.x141*m.x79 + 0.0001*m.x141*m.x80 + 0.0001*
m.x141*m.x81 + 0.0001*m.x141*m.x82 + 0.0001*m.x141*m.x83 + 0.0001*m.x141*m.x84 + 0.0001*m.x141*
m.x85 + 0.0001*m.x141*m.x86 + 0.0001*m.x141*m.x87 + 0.0001*m.x141*m.x88 + 0.0001*m.x141*m.x89 +
0.0001*m.x141*m.x90 + 0.0001*m.x141*m.x91 + 0.0001*m.x141*m.x92 + 0.0001*m.x141*m.x93 + 0.0001*
m.x141*m.x94 + 0.0001*m.x141*m.x95 + 0.0001*m.x141*m.x96 + 0.0001*m.x141*m.x97 + 0.0001*m.x141*
m.x98 + 0.0001*m.x141*m.x99 + 0.0001*m.x141*m.x100 + 0.0001*m.x141*m.x101 + 0.0001*m.x141*m.x102
+ 1.40166389008506*m.x141*m.x103 + 0.0001*m.x141*m.x104 + 0.0001*m.x141*m.x105 + 0.0001*m.x141*
m.x106 + 0.0001*m.x141*m.x107 + 0.0001*m.x141*m.x108 + 0.0001*m.x141*m.x109 + 0.0001*m.x141*
m.x110 + 0.0001*m.x141*m.x111 + 0.0001*m.x141*m.x112 + 0.0001*m.x141*m.x113 + 0.0001*m.x141*
m.x114 + 0.0001*m.x141*m.x115 + 0.0001*m.x141*m.x116 + 0.0001*m.x141*m.x117 + 0.0001*m.x141*
m.x118 + 0.0001*m.x141*m.x119 + 0.0001*m.x141*m.x120 + 0.0001*m.x141*m.x121 + 0.0001*m.x141*
m.x122 + 0.0001*m.x141*m.x123 + 0.0001*m.x141*m.x124 + 0.0001*m.x141*m.x125 + 0.0001*m.x141*
m.x126 + 0.0001*m.x141*m.x127 + 0.0001*m.x141*m.x128 + 0.0001*m.x141*m.x129 + 0.0001*m.x141*
m.x130 + 0.0001*m.x141*m.x131 + 0.0001*m.x141*m.x132 + 0.0001*m.x141*m.x133 + 0.0001*m.x141*
m.x134 + 0.0001*m.x141*m.x135 + 0.0001*m.x141*m.x136 + 0.0001*m.x141*m.x137 + 0.0001*m.x141*
m.x138 + 0.0001*m.x141*m.x139 + 0.0001*m.x141*m.x140 + 2.13598498165685*m.x141**2 + 0.0001*m.x141
*m.x142 + 0.0001*m.x141*m.x143 + 0.0001*m.x141*m.x144 + 0.0001*m.x141*m.x145 + 0.0001*m.x141*
m.x146 + 0.0001*m.x141*m.x147 + 0.0001*m.x141*m.x148 + 0.0001*m.x141*m.x149 + 0.0001*m.x141*
m.x150 + 0.0001*m.x141*m.x151 + 0.0001*m.x141*m.x152 + 0.0001*m.x141*m.x153 + 0.0001*m.x141*
m.x154 + 0.0001*m.x141*m.x155 + 0.0001*m.x141*m.x156 + 0.0001*m.x141*m.x157 + 0.0001*m.x141*
m.x158 + 0.0001*m.x141*m.x159 + 0.0001*m.x141*m.x160 + 0.0001*m.x141*m.x161 + 0.0001*m.x141*
m.x162 + 0.0001*m.x141*m.x163 + 0.0001*m.x141*m.x164 + 0.0001*m.x141*m.x165 + 0.0001*m.x141*
m.x166 + 0.0001*m.x141*m.x167 + 0.0001*m.x141*m.x168 + 0.0001*m.x141*m.x169 + 0.0001*m.x141*
m.x170 + 0.0001*m.x141*m.x171 + 0.0001*m.x141*m.x172 + 0.0001*m.x141*m.x173 + 0.0001*m.x141*
m.x174 + 0.0001*m.x141*m.x175 + 0.0001*m.x141*m.x176 + 0.0001*m.x141*m.x177 + 0.0001*m.x141*
m.x178 + 0.0001*m.x141*m.x179 + 0.0001*m.x141*m.x180 + 0.0001*m.x141*m.x181 + 0.0001*m.x141*
m.x182 + 0.0001*m.x141*m.x183 + 0.0001*m.x141*m.x184 + 0.0001*m.x141*m.x185 + 0.0001*m.x142*m.x1
+ 0.0001*m.x142*m.x2 + 0.0001*m.x142*m.x3 + 0.0001*m.x142*m.x4 + 0.0001*m.x142*m.x5 + 0.0001*
m.x142*m.x6 + 0.0001*m.x142*m.x7 + 0.0001*m.x142*m.x8 + 0.0001*m.x142*m.x9 + 0.0001*m.x142*m.x10
+ 0.0001*m.x142*m.x11 + 0.0001*m.x142*m.x12 + 0.0001*m.x142*m.x13 + 0.0001*m.x142*m.x14 + 0.0001
*m.x142*m.x15 + 0.0001*m.x142*m.x16 + 0.0001*m.x142*m.x17 + 0.0001*m.x142*m.x18 + 0.0001*m.x142*
m.x19 + 0.0001*m.x142*m.x20 + 0.0001*m.x142*m.x21 + 0.0001*m.x142*m.x22 + 0.0001*m.x142*m.x23 +
0.0001*m.x142*m.x24 + 0.0001*m.x142*m.x25 + 0.0001*m.x142*m.x26 + 0.0001*m.x142*m.x27 + 0.0001*
m.x142*m.x28 + 0.0001*m.x142*m.x29 + 0.0001*m.x142*m.x30 + 0.0001*m.x142*m.x31 + 0.0001*m.x142*
m.x32 + 0.0001*m.x142*m.x33 + 0.0001*m.x142*m.x34 + 0.0001*m.x142*m.x35 + 0.0001*m.x142*m.x36 +
0.0001*m.x142*m.x37 + 0.0001*m.x142*m.x38 + 0.0001*m.x142*m.x39 + 0.0001*m.x142*m.x40 + 0.0001*
m.x142*m.x41 + 0.0001*m.x142*m.x42 + 0.0001*m.x142*m.x43 + 0.0001*m.x142*m.x44 + 0.0001*m.x142*
m.x45 + 0.0001*m.x142*m.x46 + 0.0001*m.x142*m.x47 + 0.0001*m.x142*m.x48 + 0.0001*m.x142*m.x49 +
0.0001*m.x142*m.x50 + 0.0001*m.x142*m.x51 + 0.0001*m.x142*m.x52 + 0.0001*m.x142*m.x53 + 0.0001*
m.x142*m.x54 + 0.0001*m.x142*m.x55 + 0.0001*m.x142*m.x56 + 0.0001*m.x142*m.x57 + 0.0001*m.x142*
m.x58 + 0.0001*m.x142*m.x59 + 0.0001*m.x142*m.x60 + 0.0001*m.x142*m.x61 + 0.0001*m.x142*m.x62 +
0.0001*m.x142*m.x63 + 0.0001*m.x142*m.x64 + 0.0001*m.x142*m.x65 + 0.0001*m.x142*m.x66 + 0.0001*
m.x142*m.x67 + 0.0001*m.x142*m.x68 + 0.0001*m.x142*m.x69 + 0.0001*m.x142*m.x70 + 0.0001*m.x142*
m.x71 + 0.0001*m.x142*m.x72 + 0.0001*m.x142*m.x73 + 0.0001*m.x142*m.x74 + 0.0001*m.x142*m.x75 +
0.0001*m.x142*m.x76 + 0.0001*m.x142*m.x77 + 0.0001*m.x142*m.x78 + 0.0001*m.x142*m.x79 + 0.0001*
m.x142*m.x80 + 0.0001*m.x142*m.x81 + 0.0001*m.x142*m.x82 + 0.0001*m.x142*m.x83 + 0.0001*m.x142*
m.x84 + 0.0001*m.x142*m.x85 + 0.0001*m.x142*m.x86 + 0.0001*m.x142*m.x87 + 0.0001*m.x142*m.x88 +
0.0001*m.x142*m.x89 + 0.0001*m.x142*m.x90 + 0.0001*m.x142*m.x91 + 0.0001*m.x142*m.x92 + 0.0001*
m.x142*m.x93 + 0.0001*m.x142*m.x94 + 0.0001*m.x142*m.x95 + 0.0001*m.x142*m.x96 + 0.0001*m.x142*
m.x97 + 0.0001*m.x142*m.x98 + 0.0001*m.x142*m.x99 + 0.0001*m.x142*m.x100 + 0.0001*m.x142*m.x101
+ 0.0001*m.x142*m.x102 + 0.0001*m.x142*m.x103 + 0.0001*m.x142*m.x104 + 0.0001*m.x142*m.x105 +
0.0001*m.x142*m.x106 + 0.0001*m.x142*m.x107 + 0.0001*m.x142*m.x108 + 0.0001*m.x142*m.x109 +
0.0001*m.x142*m.x110 + 0.0001*m.x142*m.x111 + 0.0001*m.x142*m.x112 + 0.0001*m.x142*m.x113 +
0.0001*m.x142*m.x114 + 0.0001*m.x142*m.x115 + 9.26079022689604*m.x142*m.x116 + 0.0001*m.x142*
m.x117 + 0.0001*m.x142*m.x118 + 0.0001*m.x142*m.x119 + 0.0001*m.x142*m.x120 + 0.0001*m.x142*
m.x121 + 0.0001*m.x142*m.x122 + 0.0001*m.x142*m.x123 + 0.0001*m.x142*m.x124 + 0.0001*m.x142*
m.x125 + 0.0001*m.x142*m.x126 + 0.0001*m.x142*m.x127 + 0.0001*m.x142*m.x128 + 0.737425273741647*
m.x142*m.x129 + 0.0001*m.x142*m.x130 + 0.0001*m.x142*m.x131 + 0.0001*m.x142*m.x132 + 0.0001*
m.x142*m.x133 + 0.0001*m.x142*m.x134 + 0.0001*m.x142*m.x135 + 0.0001*m.x142*m.x136 + 0.0001*
m.x142*m.x137 + 0.0001*m.x142*m.x138 + 0.0001*m.x142*m.x139 + 0.0001*m.x142*m.x140 + 0.0001*
m.x142*m.x141 + 12.8764720835534*m.x142**2 + 0.0001*m.x142*m.x143 + 0.0001*m.x142*m.x144 + 0.0001
*m.x142*m.x145 + 0.0001*m.x142*m.x146 + 0.0001*m.x142*m.x147 + 0.0001*m.x142*m.x148 + 0.0001*
m.x142*m.x149 + 0.0001*m.x142*m.x150 + 0.0001*m.x142*m.x151 + 0.0001*m.x142*m.x152 + 0.0001*
m.x142*m.x153 + 0.0001*m.x142*m.x154 + 0.0001*m.x142*m.x155 + 0.0001*m.x142*m.x156 +
8.40676553603667*m.x142*m.x157 + 0.0001*m.x142*m.x158 + 0.0001*m.x142*m.x159 + 0.0001*m.x142*
m.x160 + 0.0001*m.x142*m.x161 + 0.0001*m.x142*m.x162 + 0.0001*m.x142*m.x163 + 0.0001*m.x142*
m.x164 + 0.0001*m.x142*m.x165 + 0.0001*m.x142*m.x166 + 0.0001*m.x142*m.x167 + 0.0001*m.x142*
m.x168 + 0.0001*m.x142*m.x169 + 0.694980140999375*m.x142*m.x170 + 0.0001*m.x142*m.x171 + 0.0001*
m.x142*m.x172 + 0.0001*m.x142*m.x173 + 0.0001*m.x142*m.x174 + 0.0001*m.x142*m.x175 + 0.0001*
m.x142*m.x176 + 0.0001*m.x142*m.x177 + 0.0001*m.x142*m.x178 + 0.0001*m.x142*m.x179 + 0.0001*
m.x142*m.x180 + 0.0001*m.x142*m.x181 + 0.0001*m.x142*m.x182 + 0.0001*m.x142*m.x183 + 0.0001*
m.x142*m.x184 + 0.0001*m.x142*m.x185 + 0.0001*m.x143*m.x1 + 0.0001*m.x143*m.x2 + 0.0001*m.x143*
m.x3 + 0.0001*m.x143*m.x4 + 0.0001*m.x143*m.x5 + 0.0001*m.x143*m.x6 + 0.0001*m.x143*m.x7 + 0.0001
*m.x143*m.x8 + 0.0001*m.x143*m.x9 + 0.0001*m.x143*m.x10 + 0.0001*m.x143*m.x11 + 0.0001*m.x143*
m.x12 + 0.0001*m.x143*m.x13 + 0.0001*m.x143*m.x14 + 0.0001*m.x143*m.x15 + 0.0001*m.x143*m.x16 +
0.0001*m.x143*m.x17 + 0.0001*m.x143*m.x18 + 0.0001*m.x143*m.x19 + 0.0001*m.x143*m.x20 + 0.0001*
m.x143*m.x21 + 0.0001*m.x143*m.x22 + 0.0001*m.x143*m.x23 + 0.0001*m.x143*m.x24 + 0.0001*m.x143*
m.x25 + 0.0001*m.x143*m.x26 + 0.0001*m.x143*m.x27 + 0.0001*m.x143*m.x28 + 0.0001*m.x143*m.x29 +
0.0001*m.x143*m.x30 + 0.0001*m.x143*m.x31 + 0.0001*m.x143*m.x32 + 0.0001*m.x143*m.x33 + 0.0001*
m.x143*m.x34 + 0.0001*m.x143*m.x35 + 0.0001*m.x143*m.x36 + 0.0001*m.x143*m.x37 + 0.0001*m.x143*
m.x38 + 0.0001*m.x143*m.x39 + 0.0001*m.x143*m.x40 + 0.0001*m.x143*m.x41 + 0.0001*m.x143*m.x42 +
0.0001*m.x143*m.x43 + 0.0001*m.x143*m.x44 + 0.0001*m.x143*m.x45 + 0.0001*m.x143*m.x46 + 0.0001*
m.x143*m.x47 + 0.0001*m.x143*m.x48 + 0.0001*m.x143*m.x49 + 0.0001*m.x143*m.x50 + 0.0001*m.x143*
m.x51 + 0.0001*m.x143*m.x52 + 0.0001*m.x143*m.x53 + 0.0001*m.x143*m.x54 + 0.0001*m.x143*m.x55 +
0.0001*m.x143*m.x56 + 0.0001*m.x143*m.x57 + 0.0001*m.x143*m.x58 + 0.0001*m.x143*m.x59 +
0.709657765000672*m.x143*m.x60 + 0.0001*m.x143*m.x61 + 0.0001*m.x143*m.x62 + 0.0001*m.x143*m.x63
+ 0.0001*m.x143*m.x64 + 0.0001*m.x143*m.x65 + 0.0001*m.x143*m.x66 + 0.0001*m.x143*m.x67 + 0.0001
*m.x143*m.x68 + 0.0001*m.x143*m.x69 + 0.0001*m.x143*m.x70 + 0.0001*m.x143*m.x71 +
2.02594580793731*m.x143*m.x72 + 0.0001*m.x143*m.x73 + 0.0001*m.x143*m.x74 + 0.0001*m.x143*m.x75
+ 0.0001*m.x143*m.x76 + 0.0001*m.x143*m.x77 + 0.0001*m.x143*m.x78 + 0.0001*m.x143*m.x79 + 0.0001
*m.x143*m.x80 + 0.0001*m.x143*m.x81 + 0.0001*m.x143*m.x82 + 0.0001*m.x143*m.x83 + 0.0001*m.x143*
m.x84 + 0.0001*m.x143*m.x85 + 0.0001*m.x143*m.x86 + 0.0001*m.x143*m.x87 + 0.0001*m.x143*m.x88 +
0.0001*m.x143*m.x89 + 0.0001*m.x143*m.x90 + 0.0001*m.x143*m.x91 + 0.0001*m.x143*m.x92 + 0.0001*
m.x143*m.x93 + 0.0001*m.x143*m.x94 + 0.0001*m.x143*m.x95 + 0.0001*m.x143*m.x96 + 0.0001*m.x143*
m.x97 + 0.0001*m.x143*m.x98 + 0.0001*m.x143*m.x99 + 0.0001*m.x143*m.x100 + 0.0001*m.x143*m.x101
+ 0.0001*m.x143*m.x102 + 0.0001*m.x143*m.x103 + 0.0001*m.x143*m.x104 + 0.0001*m.x143*m.x105 +
0.0001*m.x143*m.x106 + 0.0001*m.x143*m.x107 + 0.0001*m.x143*m.x108 + 0.0001*m.x143*m.x109 +
0.0001*m.x143*m.x110 + 0.0001*m.x143*m.x111 + 0.0001*m.x143*m.x112 + 0.0001*m.x143*m.x113 +
0.0001*m.x143*m.x114 + 0.0001*m.x143*m.x115 + 0.0001*m.x143*m.x116 + 9.26079022689604*m.x143*
m.x117 + 0.0001*m.x143*m.x118 + 0.0001*m.x143*m.x119 + 0.0001*m.x143*m.x120 + 0.0001*m.x143*
m.x121 + 0.0001*m.x143*m.x122 + 0.0001*m.x143*m.x123 + 0.0001*m.x143*m.x124 + 0.0001*m.x143*
m.x125 + 0.0001*m.x143*m.x126 + 0.0001*m.x143*m.x127 + 0.0001*m.x143*m.x128 + 0.0001*m.x143*
m.x129 + 0.0001*m.x143*m.x130 + 0.0001*m.x143*m.x131 + 0.0001*m.x143*m.x132 + 0.0001*m.x143*
m.x133 + 0.0001*m.x143*m.x134 + 0.0001*m.x143*m.x135 + 0.0001*m.x143*m.x136 + 0.0001*m.x143*
m.x137 + 0.0001*m.x143*m.x138 + 0.0001*m.x143*m.x139 + 0.0001*m.x143*m.x140 + 0.0001*m.x143*
m.x141 + 0.0001*m.x143*m.x142 + 12.8764720835534*m.x143**2 + 0.0001*m.x143*m.x144 + 0.0001*m.x143
*m.x145 + 0.0001*m.x143*m.x146 + 0.0001*m.x143*m.x147 + 0.0001*m.x143*m.x148 + 0.0001*m.x143*
m.x149 + 0.0001*m.x143*m.x150 + 0.0001*m.x143*m.x151 + 0.0001*m.x143*m.x152 + 0.0001*m.x143*
m.x153 + 0.0001*m.x143*m.x154 + 0.0001*m.x143*m.x155 + 0.0001*m.x143*m.x156 + 0.0001*m.x143*
m.x157 + 9.01610644057731*m.x143*m.x158 + 0.0001*m.x143*m.x159 + 0.0001*m.x143*m.x160 + 0.0001*
m.x143*m.x161 + 0.0001*m.x143*m.x162 + 0.0001*m.x143*m.x163 + 0.0001*m.x143*m.x164 + 0.0001*
m.x143*m.x165 + 0.0001*m.x143*m.x166 + 0.0001*m.x143*m.x167 + 0.0001*m.x143*m.x168 + 0.0001*
m.x143*m.x169 + 0.0001*m.x143*m.x170 + 0.0001*m.x143*m.x171 + 0.0001*m.x143*m.x172 + 0.0001*
m.x143*m.x173 + 0.0001*m.x143*m.x174 + 0.0001*m.x143*m.x175 + 0.0001*m.x143*m.x176 + 0.0001*
m.x143*m.x177 + 0.0001*m.x143*m.x178 + 0.0001*m.x143*m.x179 + 0.0001*m.x143*m.x180 + 0.0001*
m.x143*m.x181 + 0.0001*m.x143*m.x182 + 0.0001*m.x143*m.x183 + 0.0001*m.x143*m.x184 + 0.0001*
m.x143*m.x185 + 0.0001*m.x144*m.x1 + 0.0001*m.x144*m.x2 + 0.0001*m.x144*m.x3 + 0.0001*m.x144*m.x4
+ 0.0001*m.x144*m.x5 + 0.0001*m.x144*m.x6 + 0.0001*m.x144*m.x7 + 0.0001*m.x144*m.x8 + 0.0001*
m.x144*m.x9 + 0.0001*m.x144*m.x10 + 0.0001*m.x144*m.x11 + 0.0001*m.x144*m.x12 + 0.0001*m.x144*
m.x13 + 0.0001*m.x144*m.x14 + 0.0001*m.x144*m.x15 + 0.0001*m.x144*m.x16 + 0.0001*m.x144*m.x17 +
0.0001*m.x144*m.x18 + 0.0001*m.x144*m.x19 + 0.0001*m.x144*m.x20 + 0.0001*m.x144*m.x21 + 0.0001*
m.x144*m.x22 + 0.0001*m.x144*m.x23 + 0.0001*m.x144*m.x24 + 0.0001*m.x144*m.x25 + 0.0001*m.x144*
m.x26 + 0.0001*m.x144*m.x27 + 0.0001*m.x144*m.x28 + 0.0001*m.x144*m.x29 + 0.0001*m.x144*m.x30 +
0.0001*m.x144*m.x31 + 0.0001*m.x144*m.x32 + 0.0001*m.x144*m.x33 + 0.0001*m.x144*m.x34 + 0.0001*
m.x144*m.x35 + 0.0001*m.x144*m.x36 + 0.0001*m.x144*m.x37 + 0.0001*m.x144*m.x38 + 0.0001*m.x144*
m.x39 + 0.0001*m.x144*m.x40 + 0.0001*m.x144*m.x41 + 0.0001*m.x144*m.x42 + 0.0001*m.x144*m.x43 +
0.0001*m.x144*m.x44 + 0.0001*m.x144*m.x45 + 0.0001*m.x144*m.x46 + 0.0001*m.x144*m.x47 + 0.0001*
m.x144*m.x48 + 0.0001*m.x144*m.x49 + 0.0001*m.x144*m.x50 + 0.0001*m.x144*m.x51 + 0.0001*m.x144*
m.x52 + 0.0001*m.x144*m.x53 + 0.0001*m.x144*m.x54 + 0.0001*m.x144*m.x55 + 0.0001*m.x144*m.x56 +
0.0001*m.x144*m.x57 + 0.0001*m.x144*m.x58 + 0.0001*m.x144*m.x59 + 0.0001*m.x144*m.x60 + 0.0001*
m.x144*m.x61 + 0.0001*m.x144*m.x62 + 0.0001*m.x144*m.x63 + 0.0001*m.x144*m.x64 + 0.0001*m.x144*
m.x65 + 0.0001*m.x144*m.x66 + 0.0001*m.x144*m.x67 + 0.0001*m.x144*m.x68 + 0.0001*m.x144*m.x69 +
0.0001*m.x144*m.x70 + 0.0001*m.x144*m.x71 + 0.0001*m.x144*m.x72 + 1.07615655996441*m.x144*m.x73
+ 0.0001*m.x144*m.x74 + 0.0001*m.x144*m.x75 + 0.0001*m.x144*m.x76 + 0.0001*m.x144*m.x77 + 0.0001
*m.x144*m.x78 + 0.0001*m.x144*m.x79 + 0.0001*m.x144*m.x80 + 0.0001*m.x144*m.x81 + 0.0001*m.x144*
m.x82 + 0.0001*m.x144*m.x83 + 0.0001*m.x144*m.x84 + 0.0001*m.x144*m.x85 + 0.0001*m.x144*m.x86 +
0.0001*m.x144*m.x87 + 0.0001*m.x144*m.x88 + 0.0001*m.x144*m.x89 + 0.0001*m.x144*m.x90 + 0.0001*
m.x144*m.x91 + 0.0001*m.x144*m.x92 + 0.0001*m.x144*m.x93 + 0.0001*m.x144*m.x94 + 0.0001*m.x144*
m.x95 + 0.0001*m.x144*m.x96 + 0.0001*m.x144*m.x97 + 0.0001*m.x144*m.x98 + 0.0001*m.x144*m.x99 +
0.0001*m.x144*m.x100 + 0.0001*m.x144*m.x101 + 0.0001*m.x144*m.x102 + 0.0001*m.x144*m.x103 +
0.0001*m.x144*m.x104 + 0.0001*m.x144*m.x105 + 0.0001*m.x144*m.x106 + 0.0001*m.x144*m.x107 +
0.0001*m.x144*m.x108 + 0.0001*m.x144*m.x109 + 0.0001*m.x144*m.x110 + 0.0001*m.x144*m.x111 +
0.0001*m.x144*m.x112 + 0.0001*m.x144*m.x113 + 0.0001*m.x144*m.x114 + 0.0001*m.x144*m.x115 +
0.0001*m.x144*m.x116 + 0.0001*m.x144*m.x117 + 5.79346015976993*m.x144*m.x118 + 0.0001*m.x144*
m.x119 + 0.0001*m.x144*m.x120 + 0.0001*m.x144*m.x121 + 0.0001*m.x144*m.x122 + 0.0001*m.x144*
m.x123 + 0.0001*m.x144*m.x124 + 0.0001*m.x144*m.x125 + 0.0001*m.x144*m.x126 + 0.0001*m.x144*
m.x127 + 0.0001*m.x144*m.x128 + 0.0001*m.x144*m.x129 + 0.0001*m.x144*m.x130 + 0.0001*m.x144*
m.x131 + 0.0001*m.x144*m.x132 + 0.0001*m.x144*m.x133 + 0.0001*m.x144*m.x134 + 0.0001*m.x144*
m.x135 + 0.0001*m.x144*m.x136 + 0.0001*m.x144*m.x137 + 0.0001*m.x144*m.x138 + 0.0001*m.x144*
m.x139 + 0.0001*m.x144*m.x140 + 0.0001*m.x144*m.x141 + 0.0001*m.x144*m.x142 + 0.0001*m.x144*
m.x143 + 8.05538089197683*m.x144**2 + 0.0001*m.x144*m.x145 + 0.0001*m.x144*m.x146 + 0.0001*m.x144
*m.x147 + 0.0001*m.x144*m.x148 + 0.0001*m.x144*m.x149 + 0.0001*m.x144*m.x150 + 0.0001*m.x144*
m.x151 + 0.0001*m.x144*m.x152 + 0.0001*m.x144*m.x153 + 0.0001*m.x144*m.x154 + 0.0001*m.x144*
m.x155 + 0.0001*m.x144*m.x156 + 0.0001*m.x144*m.x157 + 0.0001*m.x144*m.x158 + 5.64038935568629*
m.x144*m.x159 + 0.0001*m.x144*m.x160 + 0.0001*m.x144*m.x161 + 0.0001*m.x144*m.x162 + 0.0001*
m.x144*m.x163 + 0.0001*m.x144*m.x164 + 0.0001*m.x144*m.x165 + 0.0001*m.x144*m.x166 + 0.0001*
m.x144*m.x167 + 0.0001*m.x144*m.x168 + 0.0001*m.x144*m.x169 + 0.0001*m.x144*m.x170 + 0.0001*
m.x144*m.x171 + 0.0001*m.x144*m.x172 + 0.0001*m.x144*m.x173 + 0.0001*m.x144*m.x174 + 0.0001*
m.x144*m.x175 + 0.0001*m.x144*m.x176 + 0.0001*m.x144*m.x177 + 0.0001*m.x144*m.x178 + 0.0001*
m.x144*m.x179 + 0.0001*m.x144*m.x180 + 0.0001*m.x144*m.x181 + 0.0001*m.x144*m.x182 + 0.0001*
m.x144*m.x183 + 0.0001*m.x144*m.x184 + 0.0001*m.x144*m.x185 + 0.0001*m.x145*m.x1 + 0.0001*m.x145*
m.x2 + 0.0001*m.x145*m.x3 + 0.0001*m.x145*m.x4 + 0.0001*m.x145*m.x5 + 0.0001*m.x145*m.x6 + 0.0001
*m.x145*m.x7 + 0.0001*m.x145*m.x8 + 0.0001*m.x145*m.x9 + 0.0001*m.x145*m.x10 + 0.0001*m.x145*
m.x11 + 0.0001*m.x145*m.x12 + 0.0001*m.x145*m.x13 + 0.0001*m.x145*m.x14 + 0.0001*m.x145*m.x15 +
0.0001*m.x145*m.x16 + 0.0001*m.x145*m.x17 + 0.0001*m.x145*m.x18 + 0.0001*m.x145*m.x19 + 0.0001*
m.x145*m.x20 + 0.0001*m.x145*m.x21 + 0.0001*m.x145*m.x22 + 0.0001*m.x145*m.x23 + 0.0001*m.x145*
m.x24 + 0.0001*m.x145*m.x25 + 0.0001*m.x145*m.x26 + 0.0001*m.x145*m.x27 + 0.0001*m.x145*m.x28 +
0.0001*m.x145*m.x29 + 0.0001*m.x145*m.x30 + 0.0001*m.x145*m.x31 + 0.0001*m.x145*m.x32 + 0.0001*
m.x145*m.x33 + 0.0001*m.x145*m.x34 + 0.0001*m.x145*m.x35 + 0.0001*m.x145*m.x36 + 0.0001*m.x145*
m.x37 + 0.0001*m.x145*m.x38 + 0.0001*m.x145*m.x39 + 0.0001*m.x145*m.x40 + 0.0001*m.x145*m.x41 +
0.0001*m.x145*m.x42 + 0.0001*m.x145*m.x43 + 0.0001*m.x145*m.x44 + 0.0001*m.x145*m.x45 + 0.0001*
m.x145*m.x46 + 0.0001*m.x145*m.x47 + 0.0001*m.x145*m.x48 + 0.0001*m.x145*m.x49 + 0.0001*m.x145*
m.x50 + 0.0001*m.x145*m.x51 + 0.0001*m.x145*m.x52 + 0.0001*m.x145*m.x53 + 0.0001*m.x145*m.x54 +
0.0001*m.x145*m.x55 + 0.0001*m.x145*m.x56 + 0.0001*m.x145*m.x57 + 0.0001*m.x145*m.x58 + 0.0001*
m.x145*m.x59 + 0.0001*m.x145*m.x60 + 0.0001*m.x145*m.x61 + 0.0001*m.x145*m.x62 + 0.0001*m.x145*
m.x63 + 0.0001*m.x145*m.x64 + 0.0001*m.x145*m.x65 + 0.0001*m.x145*m.x66 + 0.0001*m.x145*m.x67 +
0.0001*m.x145*m.x68 + 0.0001*m.x145*m.x69 + 0.0001*m.x145*m.x70 + 0.0001*m.x145*m.x71 + 0.0001*
m.x145*m.x72 + 0.0001*m.x145*m.x73 + 1.17562792915444*m.x145*m.x74 + 0.0001*m.x145*m.x75 + 0.0001
*m.x145*m.x76 + 0.0001*m.x145*m.x77 + 0.0001*m.x145*m.x78 + 0.0001*m.x145*m.x79 + 0.0001*m.x145*
m.x80 + 0.0001*m.x145*m.x81 + 0.0001*m.x145*m.x82 + 0.0001*m.x145*m.x83 + 0.0001*m.x145*m.x84 +
0.0001*m.x145*m.x85 + 0.0001*m.x145*m.x86 + 0.0001*m.x145*m.x87 + 0.0001*m.x145*m.x88 + 0.0001*
m.x145*m.x89 + 0.0001*m.x145*m.x90 + 0.0001*m.x145*m.x91 + 0.0001*m.x145*m.x92 + 0.0001*m.x145*
m.x93 + 0.0001*m.x145*m.x94 + 0.0001*m.x145*m.x95 + 0.0001*m.x145*m.x96 + 0.0001*m.x145*m.x97 +
0.0001*m.x145*m.x98 + 0.0001*m.x145*m.x99 + 0.0001*m.x145*m.x100 + 0.0001*m.x145*m.x101 + 0.0001*
m.x145*m.x102 + 0.0001*m.x145*m.x103 + 0.0001*m.x145*m.x104 + 0.0001*m.x145*m.x105 + 0.0001*
m.x145*m.x106 + 0.0001*m.x145*m.x107 + 0.0001*m.x145*m.x108 + 0.0001*m.x145*m.x109 + 0.0001*
m.x145*m.x110 + 0.0001*m.x145*m.x111 + 0.0001*m.x145*m.x112 + 0.0001*m.x145*m.x113 + 0.0001*
m.x145*m.x114 + 0.0001*m.x145*m.x115 + 0.0001*m.x145*m.x116 + 0.0001*m.x145*m.x117 + 0.0001*
m.x145*m.x118 + 6.32668681277508*m.x145*m.x119 + 0.0001*m.x145*m.x120 + 0.0001*m.x145*m.x121 +
0.0001*m.x145*m.x122 + 0.0001*m.x145*m.x123 + 0.0001*m.x145*m.x124 + 0.0001*m.x145*m.x125 +
0.0001*m.x145*m.x126 + 0.0001*m.x145*m.x127 + 0.0001*m.x145*m.x128 + 0.0001*m.x145*m.x129 +
0.0001*m.x145*m.x130 + 0.0001*m.x145*m.x131 + 0.0001*m.x145*m.x132 + 0.0001*m.x145*m.x133 +
0.0001*m.x145*m.x134 + 0.0001*m.x145*m.x135 + 0.0001*m.x145*m.x136 + 0.0001*m.x145*m.x137 +
0.0001*m.x145*m.x138 + 0.0001*m.x145*m.x139 + 0.0001*m.x145*m.x140 + 0.0001*m.x145*m.x141 +
0.0001*m.x145*m.x142 + 0.0001*m.x145*m.x143 + 0.0001*m.x145*m.x144 + 10.6125972598811*m.x145**2
+ 0.0001*m.x145*m.x146 + 0.0001*m.x145*m.x147 + 0.0001*m.x145*m.x148 + 0.0001*m.x145*m.x149 +
0.0001*m.x145*m.x150 + 0.0001*m.x145*m.x151 + 0.0001*m.x145*m.x152 + 0.0001*m.x145*m.x153 +
0.0001*m.x145*m.x154 + 0.0001*m.x145*m.x155 + 0.0001*m.x145*m.x156 + 0.0001*m.x145*m.x157 +
0.0001*m.x145*m.x158 + 0.0001*m.x145*m.x159 + 6.16722574049717*m.x145*m.x160 + 0.0001*m.x145*
m.x161 + 0.0001*m.x145*m.x162 + 0.0001*m.x145*m.x163 + 0.0001*m.x145*m.x164 + 0.0001*m.x145*
m.x165 + 0.0001*m.x145*m.x166 + 0.0001*m.x145*m.x167 + 0.0001*m.x145*m.x168 + 0.0001*m.x145*
m.x169 + 0.0001*m.x145*m.x170 + 0.0001*m.x145*m.x171 + 0.0001*m.x145*m.x172 + 0.0001*m.x145*
m.x173 + 0.0001*m.x145*m.x174 + 0.0001*m.x145*m.x175 + 0.0001*m.x145*m.x176 + 0.0001*m.x145*
m.x177 + 0.0001*m.x145*m.x178 + 0.0001*m.x145*m.x179 + 0.0001*m.x145*m.x180 + 0.0001*m.x145*
m.x181 + 0.0001*m.x145*m.x182 + 0.0001*m.x145*m.x183 + 0.0001*m.x145*m.x184 + 0.0001*m.x145*
m.x185 + 0.0001*m.x146*m.x1 + 0.0001*m.x146*m.x2 + 0.0001*m.x146*m.x3 + 0.0001*m.x146*m.x4 +
0.0001*m.x146*m.x5 + 0.0001*m.x146*m.x6 + 0.0001*m.x146*m.x7 + 0.0001*m.x146*m.x8 + 0.0001*m.x146
*m.x9 + 0.0001*m.x146*m.x10 + 0.0001*m.x146*m.x11 + 0.0001*m.x146*m.x12 + 0.0001*m.x146*m.x13 +
0.0001*m.x146*m.x14 + 0.0001*m.x146*m.x15 + 0.0001*m.x146*m.x16 + 0.0001*m.x146*m.x17 + 0.0001*
m.x146*m.x18 + 0.0001*m.x146*m.x19 + 0.0001*m.x146*m.x20 + 0.0001*m.x146*m.x21 + 0.0001*m.x146*
m.x22 + 0.0001*m.x146*m.x23 + 0.0001*m.x146*m.x24 + 0.0001*m.x146*m.x25 + 0.0001*m.x146*m.x26 +
0.0001*m.x146*m.x27 + 0.0001*m.x146*m.x28 + 0.0001*m.x146*m.x29 + 0.0001*m.x146*m.x30 + 0.0001*
m.x146*m.x31 + 0.0001*m.x146*m.x32 + 0.0001*m.x146*m.x33 + 0.0001*m.x146*m.x34 + 0.0001*m.x146*
m.x35 + 0.0001*m.x146*m.x36 + 0.0001*m.x146*m.x37 + 0.0001*m.x146*m.x38 + 0.0001*m.x146*m.x39 +
0.0001*m.x146*m.x40 + 0.0001*m.x146*m.x41 + 0.0001*m.x146*m.x42 + 0.0001*m.x146*m.x43 + 0.0001*
m.x146*m.x44 + 0.0001*m.x146*m.x45 + 0.0001*m.x146*m.x46 + 0.0001*m.x146*m.x47 + 0.0001*m.x146*
m.x48 + 0.0001*m.x146*m.x49 + 0.0001*m.x146*m.x50 + 0.0001*m.x146*m.x51 + 0.0001*m.x146*m.x52 +
0.0001*m.x146*m.x53 + 0.0001*m.x146*m.x54 + 0.0001*m.x146*m.x55 + 0.0001*m.x146*m.x56 + 0.0001*
m.x146*m.x57 + 0.0001*m.x146*m.x58 + 0.0001*m.x146*m.x59 + 0.0001*m.x146*m.x60 + 0.0001*m.x146*
m.x61 + 0.0001*m.x146*m.x62 + 0.0001*m.x146*m.x63 + 0.0001*m.x146*m.x64 + 0.0001*m.x146*m.x65 +
0.0001*m.x146*m.x66 + 0.0001*m.x146*m.x67 + 0.0001*m.x146*m.x68 + 0.0001*m.x146*m.x69 + 0.0001*
m.x146*m.x70 + 0.0001*m.x146*m.x71 + 0.0001*m.x146*m.x72 + 0.0001*m.x146*m.x73 + 0.0001*m.x146*
m.x74 + 1.30764034687751*m.x146*m.x75 + 0.0001*m.x146*m.x76 + 0.0001*m.x146*m.x77 + 0.0001*m.x146
*m.x78 + 0.0001*m.x146*m.x79 + 0.0001*m.x146*m.x80 + 0.0001*m.x146*m.x81 + 0.0001*m.x146*m.x82 +
0.0001*m.x146*m.x83 + 0.0001*m.x146*m.x84 + 0.0001*m.x146*m.x85 + 0.0001*m.x146*m.x86 + 0.0001*
m.x146*m.x87 + 0.0001*m.x146*m.x88 + 0.0001*m.x146*m.x89 + 0.0001*m.x146*m.x90 + 0.0001*m.x146*
m.x91 + 0.0001*m.x146*m.x92 + 0.0001*m.x146*m.x93 + 0.0001*m.x146*m.x94 + 0.0001*m.x146*m.x95 +
0.0001*m.x146*m.x96 + 0.0001*m.x146*m.x97 + 0.0001*m.x146*m.x98 + 0.0001*m.x146*m.x99 + 0.0001*
m.x146*m.x100 + 0.0001*m.x146*m.x101 + 0.0001*m.x146*m.x102 + 0.0001*m.x146*m.x103 + 0.0001*
m.x146*m.x104 + 0.0001*m.x146*m.x105 + 0.0001*m.x146*m.x106 + 0.0001*m.x146*m.x107 + 0.0001*
m.x146*m.x108 + 0.0001*m.x146*m.x109 + 0.0001*m.x146*m.x110 + 0.0001*m.x146*m.x111 + 0.0001*
m.x146*m.x112 + 0.0001*m.x146*m.x113 + 0.0001*m.x146*m.x114 + 0.0001*m.x146*m.x115 + 0.0001*
m.x146*m.x116 + 0.0001*m.x146*m.x117 + 0.0001*m.x146*m.x118 + 0.0001*m.x146*m.x119 +
6.32668681277508*m.x146*m.x120 + 0.0001*m.x146*m.x121 + 0.0001*m.x146*m.x122 + 0.0001*m.x146*
m.x123 + 0.0001*m.x146*m.x124 + 0.0001*m.x146*m.x125 + 0.0001*m.x146*m.x126 + 0.0001*m.x146*
m.x127 + 0.0001*m.x146*m.x128 + 0.0001*m.x146*m.x129 + 0.0001*m.x146*m.x130 + 0.0001*m.x146*
m.x131 + 0.0001*m.x146*m.x132 + 0.0001*m.x146*m.x133 + 0.0001*m.x146*m.x134 + 0.0001*m.x146*
m.x135 + 0.0001*m.x146*m.x136 + 0.0001*m.x146*m.x137 + 0.0001*m.x146*m.x138 + 0.0001*m.x146*
m.x139 + 0.0001*m.x146*m.x140 + 0.0001*m.x146*m.x141 + 0.0001*m.x146*m.x142 + 0.0001*m.x146*
m.x143 + 0.0001*m.x146*m.x144 + 0.0001*m.x146*m.x145 + 10.6125972598811*m.x146**2 + 0.0001*m.x146
*m.x147 + 0.0001*m.x146*m.x148 + 0.0001*m.x146*m.x149 + 0.0001*m.x146*m.x150 + 0.0001*m.x146*
m.x151 + 0.0001*m.x146*m.x152 + 0.0001*m.x146*m.x153 + 0.0001*m.x146*m.x154 + 0.0001*m.x146*
m.x155 + 0.0001*m.x146*m.x156 + 0.0001*m.x146*m.x157 + 0.0001*m.x146*m.x158 + 0.0001*m.x146*
m.x159 + 0.0001*m.x146*m.x160 + 5.52392322779655*m.x146*m.x161 + 0.0001*m.x146*m.x162 + 0.0001*
m.x146*m.x163 + 0.0001*m.x146*m.x164 + 0.0001*m.x146*m.x165 + 0.0001*m.x146*m.x166 + 0.0001*
m.x146*m.x167 + 0.0001*m.x146*m.x168 + 0.0001*m.x146*m.x169 + 0.0001*m.x146*m.x170 + 0.0001*
m.x146*m.x171 + 0.0001*m.x146*m.x172 + 0.0001*m.x146*m.x173 + 0.0001*m.x146*m.x174 + 0.0001*
m.x146*m.x175 + 0.0001*m.x146*m.x176 + 0.0001*m.x146*m.x177 + 0.0001*m.x146*m.x178 + 0.0001*
m.x146*m.x179 + 0.0001*m.x146*m.x180 + 0.0001*m.x146*m.x181 + 0.0001*m.x146*m.x182 + 0.0001*
m.x146*m.x183 + 0.0001*m.x146*m.x184 + 0.0001*m.x146*m.x185 + 0.0001*m.x147*m.x1 + 0.0001*m.x147*
m.x2 + 0.0001*m.x147*m.x3 + 0.0001*m.x147*m.x4 + 0.0001*m.x147*m.x5 + 0.0001*m.x147*m.x6 + 0.0001
*m.x147*m.x7 + 0.0001*m.x147*m.x8 + 0.0001*m.x147*m.x9 + 0.0001*m.x147*m.x10 + 0.0001*m.x147*
m.x11 + 0.0001*m.x147*m.x12 + 0.0001*m.x147*m.x13 + 0.0001*m.x147*m.x14 + 0.0001*m.x147*m.x15 +
0.0001*m.x147*m.x16 + 0.0001*m.x147*m.x17 + 0.0001*m.x147*m.x18 + 0.0001*m.x147*m.x19 + 0.0001*
m.x147*m.x20 + 0.0001*m.x147*m.x21 + 0.0001*m.x147*m.x22 + 0.0001*m.x147*m.x23 + 0.0001*m.x147*
m.x24 + 0.0001*m.x147*m.x25 + 0.0001*m.x147*m.x26 + 0.0001*m.x147*m.x27 + 0.0001*m.x147*m.x28 +
0.0001*m.x147*m.x29 + 0.0001*m.x147*m.x30 + 0.0001*m.x147*m.x31 + 0.0001*m.x147*m.x32 + 0.0001*
m.x147*m.x33 + 0.0001*m.x147*m.x34 + 0.0001*m.x147*m.x35 + 0.0001*m.x147*m.x36 + 0.0001*m.x147*
m.x37 + 0.0001*m.x147*m.x38 + 0.0001*m.x147*m.x39 + 0.0001*m.x147*m.x40 + 0.0001*m.x147*m.x41 +
0.0001*m.x147*m.x42 + 0.0001*m.x147*m.x43 + 0.0001*m.x147*m.x44 + 0.0001*m.x147*m.x45 + 0.0001*
m.x147*m.x46 + 0.0001*m.x147*m.x47 + 0.0001*m.x147*m.x48 + 0.0001*m.x147*m.x49 + 0.0001*m.x147*
m.x50 + 0.0001*m.x147*m.x51 + 0.0001*m.x147*m.x52 + 0.0001*m.x147*m.x53 + 0.0001*m.x147*m.x54 +
0.0001*m.x147*m.x55 + 0.0001*m.x147*m.x56 + 0.0001*m.x147*m.x57 + 0.0001*m.x147*m.x58 + 0.0001*
m.x147*m.x59 + 0.0001*m.x147*m.x60 + 0.0001*m.x147*m.x61 + 0.0001*m.x147*m.x62 + 0.0001*m.x147*
m.x63 + 0.0001*m.x147*m.x64 + 0.0001*m.x147*m.x65 + 0.0001*m.x147*m.x66 + 0.0001*m.x147*m.x67 +
0.0001*m.x147*m.x68 + 0.0001*m.x147*m.x69 + 0.0001*m.x147*m.x70 + 0.0001*m.x147*m.x71 + 0.0001*
m.x147*m.x72 + 0.0001*m.x147*m.x73 + 0.0001*m.x147*m.x74 + 0.0001*m.x147*m.x75 + 1.42317774497402
*m.x147*m.x76 + 0.0001*m.x147*m.x77 + 0.0001*m.x147*m.x78 + 0.0001*m.x147*m.x79 + 0.0001*m.x147*
m.x80 + 0.0001*m.x147*m.x81 + 0.0001*m.x147*m.x82 + 0.0001*m.x147*m.x83 + 0.0001*m.x147*m.x84 +
0.0001*m.x147*m.x85 + 0.0001*m.x147*m.x86 + 0.0001*m.x147*m.x87 + 0.0001*m.x147*m.x88 + 0.0001*
m.x147*m.x89 + 0.0001*m.x147*m.x90 + 0.0001*m.x147*m.x91 + 0.0001*m.x147*m.x92 + 0.0001*m.x147*
m.x93 + 0.0001*m.x147*m.x94 + 0.0001*m.x147*m.x95 + 0.0001*m.x147*m.x96 + 0.0001*m.x147*m.x97 +
0.0001*m.x147*m.x98 + 0.0001*m.x147*m.x99 + 0.0001*m.x147*m.x100 + 0.0001*m.x147*m.x101 + 0.0001*
m.x147*m.x102 + 0.0001*m.x147*m.x103 + 0.0001*m.x147*m.x104 + 0.0001*m.x147*m.x105 + 0.0001*
m.x147*m.x106 + 0.0001*m.x147*m.x107 + 0.0001*m.x147*m.x108 + 0.0001*m.x147*m.x109 + 0.0001*
m.x147*m.x110 + 0.0001*m.x147*m.x111 + 0.0001*m.x147*m.x112 + 0.0001*m.x147*m.x113 + 0.0001*
m.x147*m.x114 + 0.0001*m.x147*m.x115 + 0.0001*m.x147*m.x116 + 0.0001*m.x147*m.x117 + 0.0001*
m.x147*m.x118 + 0.0001*m.x147*m.x119 + 0.0001*m.x147*m.x120 + 6.88571918292358*m.x147*m.x121 +
0.0001*m.x147*m.x122 + 0.0001*m.x147*m.x123 + 0.0001*m.x147*m.x124 + 0.0001*m.x147*m.x125 +
0.0001*m.x147*m.x126 + 0.0001*m.x147*m.x127 + 0.0001*m.x147*m.x128 + 0.0001*m.x147*m.x129 +
0.0001*m.x147*m.x130 + 0.0001*m.x147*m.x131 + 0.0001*m.x147*m.x132 + 0.0001*m.x147*m.x133 +
0.0001*m.x147*m.x134 + 0.0001*m.x147*m.x135 + 0.0001*m.x147*m.x136 + 0.0001*m.x147*m.x137 +
0.0001*m.x147*m.x138 + 0.0001*m.x147*m.x139 + 0.0001*m.x147*m.x140 + 0.0001*m.x147*m.x141 +
0.0001*m.x147*m.x142 + 0.0001*m.x147*m.x143 + 0.0001*m.x147*m.x144 + 0.0001*m.x147*m.x145 +
0.0001*m.x147*m.x146 + 11.5503429467665*m.x147**2 + 0.0001*m.x147*m.x148 + 0.0001*m.x147*m.x149
+ 0.0001*m.x147*m.x150 + 0.0001*m.x147*m.x151 + 0.0001*m.x147*m.x152 + 0.0001*m.x147*m.x153 +
0.0001*m.x147*m.x154 + 0.0001*m.x147*m.x155 + 0.0001*m.x147*m.x156 + 0.0001*m.x147*m.x157 +
0.0001*m.x147*m.x158 + 0.0001*m.x147*m.x159 + 0.0001*m.x147*m.x160 + 0.0001*m.x147*m.x161 +
6.01202148404445*m.x147*m.x162 + 0.0001*m.x147*m.x163 + 0.0001*m.x147*m.x164 + 0.0001*m.x147*
m.x165 + 0.0001*m.x147*m.x166 + 0.0001*m.x147*m.x167 + 0.0001*m.x147*m.x168 + 0.0001*m.x147*
m.x169 + 0.0001*m.x147*m.x170 + 0.0001*m.x147*m.x171 + 0.0001*m.x147*m.x172 + 0.0001*m.x147*
m.x173 + 0.0001*m.x147*m.x174 + 0.0001*m.x147*m.x175 + 0.0001*m.x147*m.x176 + 0.0001*m.x147*
m.x177 + 0.0001*m.x147*m.x178 + 0.0001*m.x147*m.x179 + 0.0001*m.x147*m.x180 + 0.0001*m.x147*
m.x181 + 0.0001*m.x147*m.x182 + 0.0001*m.x147*m.x183 + 0.0001*m.x147*m.x184 + 0.0001*m.x147*
m.x185 + 0.0001*m.x148*m.x1 + 0.0001*m.x148*m.x2 + 0.0001*m.x148*m.x3 + 0.0001*m.x148*m.x4 +
0.0001*m.x148*m.x5 + 0.0001*m.x148*m.x6 + 0.0001*m.x148*m.x7 + 0.0001*m.x148*m.x8 + 0.0001*m.x148
*m.x9 + 0.0001*m.x148*m.x10 + 0.0001*m.x148*m.x11 + 0.0001*m.x148*m.x12 + 0.0001*m.x148*m.x13 +
0.0001*m.x148*m.x14 + 0.0001*m.x148*m.x15 + 0.0001*m.x148*m.x16 + 0.0001*m.x148*m.x17 + 0.0001*
m.x148*m.x18 + 0.0001*m.x148*m.x19 + 0.0001*m.x148*m.x20 + 0.0001*m.x148*m.x21 + 0.0001*m.x148*
m.x22 + 0.0001*m.x148*m.x23 + 0.0001*m.x148*m.x24 + 0.0001*m.x148*m.x25 + 0.0001*m.x148*m.x26 +
0.0001*m.x148*m.x27 + 0.0001*m.x148*m.x28 + 0.0001*m.x148*m.x29 + 0.0001*m.x148*m.x30 + 0.0001*
m.x148*m.x31 + 0.0001*m.x148*m.x32 + 0.0001*m.x148*m.x33 + 0.0001*m.x148*m.x34 + 0.0001*m.x148*
m.x35 + 0.0001*m.x148*m.x36 + 0.0001*m.x148*m.x37 + 0.0001*m.x148*m.x38 + 0.0001*m.x148*m.x39 +
0.0001*m.x148*m.x40 + 0.0001*m.x148*m.x41 + 0.0001*m.x148*m.x42 + 0.0001*m.x148*m.x43 + 0.0001*
m.x148*m.x44 + 0.0001*m.x148*m.x45 + 0.0001*m.x148*m.x46 + 0.0001*m.x148*m.x47 + 0.0001*m.x148*
m.x48 + 0.0001*m.x148*m.x49 + 0.0001*m.x148*m.x50 + 0.0001*m.x148*m.x51 + 0.0001*m.x148*m.x52 +
0.0001*m.x148*m.x53 + 0.0001*m.x148*m.x54 + 0.0001*m.x148*m.x55 + 0.0001*m.x148*m.x56 + 0.0001*
m.x148*m.x57 + 0.0001*m.x148*m.x58 + 0.0001*m.x148*m.x59 + 0.0001*m.x148*m.x60 + 0.0001*m.x148*
m.x61 + 0.0001*m.x148*m.x62 + 0.0001*m.x148*m.x63 + 0.0001*m.x148*m.x64 + 0.0001*m.x148*m.x65 +
0.0001*m.x148*m.x66 + 0.0001*m.x148*m.x67 + 0.0001*m.x148*m.x68 + 0.0001*m.x148*m.x69 + 0.0001*
m.x148*m.x70 + 0.0001*m.x148*m.x71 + 0.0001*m.x148*m.x72 + 0.0001*m.x148*m.x73 + 0.0001*m.x148*
m.x74 + 0.0001*m.x148*m.x75 + 0.0001*m.x148*m.x76 + 1.29968892387316*m.x148*m.x77 + 0.0001*m.x148
*m.x78 + 0.0001*m.x148*m.x79 + 0.0001*m.x148*m.x80 + 0.0001*m.x148*m.x81 + 0.0001*m.x148*m.x82 +
0.0001*m.x148*m.x83 + 0.0001*m.x148*m.x84 + 0.0001*m.x148*m.x85 + 0.0001*m.x148*m.x86 + 0.0001*
m.x148*m.x87 + 0.0001*m.x148*m.x88 + 0.0001*m.x148*m.x89 + 0.0001*m.x148*m.x90 + 0.0001*m.x148*
m.x91 + 0.0001*m.x148*m.x92 + 0.0001*m.x148*m.x93 + 0.0001*m.x148*m.x94 + 0.0001*m.x148*m.x95 +
0.0001*m.x148*m.x96 + 0.0001*m.x148*m.x97 + 0.0001*m.x148*m.x98 + 0.0001*m.x148*m.x99 + 0.0001*
m.x148*m.x100 + 0.0001*m.x148*m.x101 + 0.0001*m.x148*m.x102 + 0.0001*m.x148*m.x103 + 0.0001*
m.x148*m.x104 + 0.0001*m.x148*m.x105 + 0.0001*m.x148*m.x106 + 0.0001*m.x148*m.x107 + 0.0001*
m.x148*m.x108 + 0.0001*m.x148*m.x109 + 0.0001*m.x148*m.x110 + 0.0001*m.x148*m.x111 + 0.0001*
m.x148*m.x112 + 0.0001*m.x148*m.x113 + 0.0001*m.x148*m.x114 + 0.0001*m.x148*m.x115 + 0.0001*
m.x148*m.x116 + 0.0001*m.x148*m.x117 + 0.0001*m.x148*m.x118 + 0.0001*m.x148*m.x119 + 0.0001*
m.x148*m.x120 + 0.0001*m.x148*m.x121 + 5.98091594661548*m.x148*m.x122 + 0.0001*m.x148*m.x123 +
0.0001*m.x148*m.x124 + 0.0001*m.x148*m.x125 + 0.0001*m.x148*m.x126 + 0.0001*m.x148*m.x127 +
0.0001*m.x148*m.x128 + 0.0001*m.x148*m.x129 + 0.0001*m.x148*m.x130 + 0.0001*m.x148*m.x131 +
0.0001*m.x148*m.x132 + 0.0001*m.x148*m.x133 + 0.0001*m.x148*m.x134 + 0.0001*m.x148*m.x135 +
0.0001*m.x148*m.x136 + 0.0001*m.x148*m.x137 + 0.0001*m.x148*m.x138 + 0.0001*m.x148*m.x139 +
0.0001*m.x148*m.x140 + 0.0001*m.x148*m.x141 + 0.0001*m.x148*m.x142 + 0.0001*m.x148*m.x143 +
0.0001*m.x148*m.x144 + 0.0001*m.x148*m.x145 + 0.0001*m.x148*m.x146 + 0.0001*m.x148*m.x147 +
9.01622890790513*m.x148**2 + 0.0001*m.x148*m.x149 + 0.0001*m.x148*m.x150 + 0.0001*m.x148*m.x151
+ 0.0001*m.x148*m.x152 + 0.0001*m.x148*m.x153 + 0.0001*m.x148*m.x154 + 0.0001*m.x148*m.x155 +
0.0001*m.x148*m.x156 + 0.0001*m.x148*m.x157 + 0.0001*m.x148*m.x158 + 0.0001*m.x148*m.x159 +
0.0001*m.x148*m.x160 + 0.0001*m.x148*m.x161 + 0.0001*m.x148*m.x162 + 5.5395442897713*m.x148*
m.x163 + 0.0001*m.x148*m.x164 + 0.0001*m.x148*m.x165 + 0.0001*m.x148*m.x166 + 0.0001*m.x148*
m.x167 + 0.0001*m.x148*m.x168 + 0.0001*m.x148*m.x169 + 0.0001*m.x148*m.x170 + 0.0001*m.x148*
m.x171 + 0.0001*m.x148*m.x172 + 0.0001*m.x148*m.x173 + 0.0001*m.x148*m.x174 + 0.0001*m.x148*
m.x175 + 0.0001*m.x148*m.x176 + 0.0001*m.x148*m.x177 + 0.0001*m.x148*m.x178 + 0.0001*m.x148*
m.x179 + 0.0001*m.x148*m.x180 + 0.0001*m.x148*m.x181 + 0.0001*m.x148*m.x182 + 0.0001*m.x148*
m.x183 + 0.0001*m.x148*m.x184 + 0.0001*m.x148*m.x185 + 0.0001*m.x149*m.x1 + 0.0001*m.x149*m.x2 +
0.0001*m.x149*m.x3 + 0.0001*m.x149*m.x4 + 0.0001*m.x149*m.x5 + 0.0001*m.x149*m.x6 + 0.0001*m.x149
*m.x7 + 0.0001*m.x149*m.x8 + 0.0001*m.x149*m.x9 + 0.0001*m.x149*m.x10 + 0.0001*m.x149*m.x11 +
0.0001*m.x149*m.x12 + 0.0001*m.x149*m.x13 + 0.0001*m.x149*m.x14 + 0.0001*m.x149*m.x15 + 0.0001*
m.x149*m.x16 + 0.0001*m.x149*m.x17 + 0.0001*m.x149*m.x18 + 0.0001*m.x149*m.x19 + 0.0001*m.x149*
m.x20 + 0.0001*m.x149*m.x21 + 0.0001*m.x149*m.x22 + 0.0001*m.x149*m.x23 + 0.0001*m.x149*m.x24 +
0.0001*m.x149*m.x25 + 0.0001*m.x149*m.x26 + 0.0001*m.x149*m.x27 + 0.0001*m.x149*m.x28 + 0.0001*
m.x149*m.x29 + 0.0001*m.x149*m.x30 + 0.0001*m.x149*m.x31 + 0.0001*m.x149*m.x32 + 0.0001*m.x149*
m.x33 + 0.0001*m.x149*m.x34 + 0.0001*m.x149*m.x35 + 0.0001*m.x149*m.x36 + 0.0001*m.x149*m.x37 +
0.0001*m.x149*m.x38 + 0.0001*m.x149*m.x39 + 0.0001*m.x149*m.x40 + 0.0001*m.x149*m.x41 + 0.0001*
m.x149*m.x42 + 0.0001*m.x149*m.x43 + 0.0001*m.x149*m.x44 + 0.0001*m.x149*m.x45 + 0.0001*m.x149*
m.x46 + 0.0001*m.x149*m.x47 + 0.0001*m.x149*m.x48 + 0.0001*m.x149*m.x49 + 0.0001*m.x149*m.x50 +
0.0001*m.x149*m.x51 + 0.0001*m.x149*m.x52 + 0.0001*m.x149*m.x53 + 0.0001*m.x149*m.x54 + 0.0001*
m.x149*m.x55 + 0.0001*m.x149*m.x56 + 0.0001*m.x149*m.x57 + 0.0001*m.x149*m.x58 + 0.0001*m.x149*
m.x59 + 0.0001*m.x149*m.x60 + 0.0001*m.x149*m.x61 + 0.0001*m.x149*m.x62 + 0.0001*m.x149*m.x63 +
0.0001*m.x149*m.x64 + 0.0001*m.x149*m.x65 + 0.0001*m.x149*m.x66 + 0.0001*m.x149*m.x67 + 0.0001*
m.x149*m.x68 + 0.0001*m.x149*m.x69 + 0.0001*m.x149*m.x70 + 0.0001*m.x149*m.x71 + 0.0001*m.x149*
m.x72 + 0.0001*m.x149*m.x73 + 0.0001*m.x149*m.x74 + 0.0001*m.x149*m.x75 + 0.0001*m.x149*m.x76 +
0.0001*m.x149*m.x77 + 1.21137656774799*m.x149*m.x78 + 0.0001*m.x149*m.x79 + 0.0001*m.x149*m.x80
+ 0.0001*m.x149*m.x81 + 0.0001*m.x149*m.x82 + 0.0001*m.x149*m.x83 + 0.0001*m.x149*m.x84 + 0.0001
*m.x149*m.x85 + 0.0001*m.x149*m.x86 + 0.0001*m.x149*m.x87 + 0.0001*m.x149*m.x88 + 0.0001*m.x149*
m.x89 + 0.0001*m.x149*m.x90 + 0.0001*m.x149*m.x91 + 0.0001*m.x149*m.x92 + 0.0001*m.x149*m.x93 +
0.0001*m.x149*m.x94 + 0.0001*m.x149*m.x95 + 0.0001*m.x149*m.x96 + 0.0001*m.x149*m.x97 + 0.0001*
m.x149*m.x98 + 0.0001*m.x149*m.x99 + 0.0001*m.x149*m.x100 + 0.0001*m.x149*m.x101 + 0.0001*m.x149*
m.x102 + 0.0001*m.x149*m.x103 + 0.0001*m.x149*m.x104 + 0.0001*m.x149*m.x105 + 0.0001*m.x149*
m.x106 + 0.0001*m.x149*m.x107 + 0.0001*m.x149*m.x108 + 0.0001*m.x149*m.x109 + 0.0001*m.x149*
m.x110 + 0.0001*m.x149*m.x111 + 0.0001*m.x149*m.x112 + 0.0001*m.x149*m.x113 + 0.0001*m.x149*
m.x114 + 0.0001*m.x149*m.x115 + 0.0001*m.x149*m.x116 + 0.0001*m.x149*m.x117 + 0.0001*m.x149*
m.x118 + 0.0001*m.x149*m.x119 + 0.0001*m.x149*m.x120 + 0.0001*m.x149*m.x121 + 0.0001*m.x149*
m.x122 + 5.98091594661548*m.x149*m.x123 + 0.0001*m.x149*m.x124 + 0.0001*m.x149*m.x125 + 0.0001*
m.x149*m.x126 + 0.0001*m.x149*m.x127 + 0.0001*m.x149*m.x128 + 0.0001*m.x149*m.x129 + 0.0001*
m.x149*m.x130 + 0.0001*m.x149*m.x131 + 0.0001*m.x149*m.x132 + 0.0001*m.x149*m.x133 + 0.0001*
m.x149*m.x134 + 0.0001*m.x149*m.x135 + 0.0001*m.x149*m.x136 + 0.0001*m.x149*m.x137 + 0.0001*
m.x149*m.x138 + 0.0001*m.x149*m.x139 + 0.0001*m.x149*m.x140 + 0.0001*m.x149*m.x141 + 0.0001*
m.x149*m.x142 + 0.0001*m.x149*m.x143 + 0.0001*m.x149*m.x144 + 0.0001*m.x149*m.x145 + 0.0001*
m.x149*m.x146 + 0.0001*m.x149*m.x147 + 0.0001*m.x149*m.x148 + 9.01622890790513*m.x149**2 + 0.0001
*m.x149*m.x150 + 0.0001*m.x149*m.x151 + 0.0001*m.x149*m.x152 + 0.0001*m.x149*m.x153 + 0.0001*
m.x149*m.x154 + 0.0001*m.x149*m.x155 + 0.0001*m.x149*m.x156 + 0.0001*m.x149*m.x157 + 0.0001*
m.x149*m.x158 + 0.0001*m.x149*m.x159 + 0.0001*m.x149*m.x160 + 0.0001*m.x149*m.x161 + 0.0001*
m.x149*m.x162 + 0.0001*m.x149*m.x163 + 5.9608785151742*m.x149*m.x164 + 0.0001*m.x149*m.x165 +
0.0001*m.x149*m.x166 + 0.0001*m.x149*m.x167 + 0.0001*m.x149*m.x168 + 0.0001*m.x149*m.x169 +
0.0001*m.x149*m.x170 + 0.0001*m.x149*m.x171 + 0.0001*m.x149*m.x172 + 0.0001*m.x149*m.x173 +
0.0001*m.x149*m.x174 + 0.0001*m.x149*m.x175 + 0.0001*m.x149*m.x176 + 0.0001*m.x149*m.x177 +
0.0001*m.x149*m.x178 + 0.0001*m.x149*m.x179 + 0.0001*m.x149*m.x180 + 0.0001*m.x149*m.x181 +
0.0001*m.x149*m.x182 + 0.0001*m.x149*m.x183 + 0.0001*m.x149*m.x184 + 0.0001*m.x149*m.x185 +
0.0001*m.x150*m.x1 + 0.0001*m.x150*m.x2 + 0.0001*m.x150*m.x3 + 0.0001*m.x150*m.x4 + 0.0001*m.x150
*m.x5 + 0.0001*m.x150*m.x6 + 0.0001*m.x150*m.x7 + 0.0001*m.x150*m.x8 + 0.0001*m.x150*m.x9 +
0.0001*m.x150*m.x10 + 0.0001*m.x150*m.x11 + 0.0001*m.x150*m.x12 + 0.0001*m.x150*m.x13 + 0.0001*
m.x150*m.x14 + 0.0001*m.x150*m.x15 + 0.0001*m.x150*m.x16 + 0.0001*m.x150*m.x17 + 0.0001*m.x150*
m.x18 + 0.0001*m.x150*m.x19 + 0.0001*m.x150*m.x20 + 0.0001*m.x150*m.x21 + 0.0001*m.x150*m.x22 +
0.0001*m.x150*m.x23 + 0.0001*m.x150*m.x24 + 0.0001*m.x150*m.x25 + 0.0001*m.x150*m.x26 + 0.0001*
m.x150*m.x27 + 0.0001*m.x150*m.x28 + 0.0001*m.x150*m.x29 + 0.0001*m.x150*m.x30 + 0.0001*m.x150*
m.x31 + 0.0001*m.x150*m.x32 + 0.0001*m.x150*m.x33 + 0.0001*m.x150*m.x34 + 0.0001*m.x150*m.x35 +
0.0001*m.x150*m.x36 + 0.0001*m.x150*m.x37 + 0.0001*m.x150*m.x38 + 0.0001*m.x150*m.x39 + 0.0001*
m.x150*m.x40 + 0.0001*m.x150*m.x41 + 0.0001*m.x150*m.x42 + 0.0001*m.x150*m.x43 + 0.0001*m.x150*
m.x44 + 0.0001*m.x150*m.x45 + 0.0001*m.x150*m.x46 + 0.0001*m.x150*m.x47 + 0.0001*m.x150*m.x48 +
0.0001*m.x150*m.x49 + 0.0001*m.x150*m.x50 + 0.0001*m.x150*m.x51 + 0.0001*m.x150*m.x52 + 0.0001*
m.x150*m.x53 + 0.0001*m.x150*m.x54 + 0.0001*m.x150*m.x55 + 0.0001*m.x150*m.x56 + 0.0001*m.x150*
m.x57 + 0.0001*m.x150*m.x58 + 0.0001*m.x150*m.x59 + 0.0001*m.x150*m.x60 + 0.0001*m.x150*m.x61 +
0.0001*m.x150*m.x62 + 0.0001*m.x150*m.x63 + 0.0001*m.x150*m.x64 + 0.0001*m.x150*m.x65 + 0.0001*
m.x150*m.x66 + 0.0001*m.x150*m.x67 + 0.0001*m.x150*m.x68 + 0.0001*m.x150*m.x69 + 0.0001*m.x150*
m.x70 + 0.0001*m.x150*m.x71 + 0.0001*m.x150*m.x72 + 0.0001*m.x150*m.x73 + 0.0001*m.x150*m.x74 +
0.0001*m.x150*m.x75 + 0.0001*m.x150*m.x76 + 0.0001*m.x150*m.x77 + 0.0001*m.x150*m.x78 +
1.15256777331454*m.x150*m.x79 + 0.0001*m.x150*m.x80 + 0.0001*m.x150*m.x81 + 0.0001*m.x150*m.x82
+ 0.0001*m.x150*m.x83 + 0.0001*m.x150*m.x84 + 0.0001*m.x150*m.x85 + 0.0001*m.x150*m.x86 + 0.0001
*m.x150*m.x87 + 0.0001*m.x150*m.x88 + 0.0001*m.x150*m.x89 + 0.0001*m.x150*m.x90 + 0.0001*m.x150*
m.x91 + 0.0001*m.x150*m.x92 + 0.0001*m.x150*m.x93 + 0.0001*m.x150*m.x94 + 0.0001*m.x150*m.x95 +
0.0001*m.x150*m.x96 + 0.0001*m.x150*m.x97 + 0.0001*m.x150*m.x98 + 0.0001*m.x150*m.x99 + 0.0001*
m.x150*m.x100 + 0.0001*m.x150*m.x101 + 0.0001*m.x150*m.x102 + 0.0001*m.x150*m.x103 + 0.0001*
m.x150*m.x104 + 0.0001*m.x150*m.x105 + 0.0001*m.x150*m.x106 + 0.0001*m.x150*m.x107 + 0.0001*
m.x150*m.x108 + 0.0001*m.x150*m.x109 + 0.0001*m.x150*m.x110 + 0.0001*m.x150*m.x111 + 0.0001*
m.x150*m.x112 + 0.0001*m.x150*m.x113 + 0.0001*m.x150*m.x114 + 0.0001*m.x150*m.x115 + 0.0001*
m.x150*m.x116 + 0.0001*m.x150*m.x117 + 0.0001*m.x150*m.x118 + 0.0001*m.x150*m.x119 + 0.0001*
m.x150*m.x120 + 0.0001*m.x150*m.x121 + 0.0001*m.x150*m.x122 + 0.0001*m.x150*m.x123 +
5.69054082922776*m.x150*m.x124 + 0.0001*m.x150*m.x125 + 0.0001*m.x150*m.x126 + 0.0001*m.x150*
m.x127 + 0.0001*m.x150*m.x128 + 0.0001*m.x150*m.x129 + 0.0001*m.x150*m.x130 + 0.0001*m.x150*
m.x131 + 0.0001*m.x150*m.x132 + 0.0001*m.x150*m.x133 + 0.0001*m.x150*m.x134 + 0.0001*m.x150*
m.x135 + 0.0001*m.x150*m.x136 + 0.0001*m.x150*m.x137 + 0.0001*m.x150*m.x138 + 0.0001*m.x150*
m.x139 + 0.0001*m.x150*m.x140 + 0.0001*m.x150*m.x141 + 0.0001*m.x150*m.x142 + 0.0001*m.x150*
m.x143 + 0.0001*m.x150*m.x144 + 0.0001*m.x150*m.x145 + 0.0001*m.x150*m.x146 + 0.0001*m.x150*
m.x147 + 0.0001*m.x150*m.x148 + 0.0001*m.x150*m.x149 + 8.57848604583005*m.x150**2 + 0.0001*m.x150
*m.x151 + 0.0001*m.x150*m.x152 + 0.0001*m.x150*m.x153 + 0.0001*m.x150*m.x154 + 0.0001*m.x150*
m.x155 + 0.0001*m.x150*m.x156 + 0.0001*m.x150*m.x157 + 0.0001*m.x150*m.x158 + 0.0001*m.x150*
m.x159 + 0.0001*m.x150*m.x160 + 0.0001*m.x150*m.x161 + 0.0001*m.x150*m.x162 + 0.0001*m.x150*
m.x163 + 0.0001*m.x150*m.x164 + 5.67147623687046*m.x150*m.x165 + 0.0001*m.x150*m.x166 + 0.0001*
m.x150*m.x167 + 0.0001*m.x150*m.x168 + 0.0001*m.x150*m.x169 + 0.0001*m.x150*m.x170 + 0.0001*
m.x150*m.x171 + 0.0001*m.x150*m.x172 + 0.0001*m.x150*m.x173 + 0.0001*m.x150*m.x174 + 0.0001*
m.x150*m.x175 + 0.0001*m.x150*m.x176 + 0.0001*m.x150*m.x177 + 0.0001*m.x150*m.x178 + 0.0001*
m.x150*m.x179 + 0.0001*m.x150*m.x180 + 0.0001*m.x150*m.x181 + 0.0001*m.x150*m.x182 + 0.0001*
m.x150*m.x183 + 0.0001*m.x150*m.x184 + 0.0001*m.x150*m.x185 + 0.0001*m.x151*m.x1 + 0.0001*m.x151*
m.x2 + 0.0001*m.x151*m.x3 + 0.0001*m.x151*m.x4 + 0.0001*m.x151*m.x5 + 0.0001*m.x151*m.x6 + 0.0001
*m.x151*m.x7 + 0.0001*m.x151*m.x8 + 0.0001*m.x151*m.x9 + 0.0001*m.x151*m.x10 + 0.0001*m.x151*
m.x11 + 0.0001*m.x151*m.x12 + 0.0001*m.x151*m.x13 + 0.0001*m.x151*m.x14 + 0.0001*m.x151*m.x15 +
0.0001*m.x151*m.x16 + 0.0001*m.x151*m.x17 + 0.0001*m.x151*m.x18 + 0.0001*m.x151*m.x19 + 0.0001*
m.x151*m.x20 + 0.0001*m.x151*m.x21 + 0.0001*m.x151*m.x22 + 0.0001*m.x151*m.x23 + 0.0001*m.x151*
m.x24 + 0.0001*m.x151*m.x25 + 0.0001*m.x151*m.x26 + 0.0001*m.x151*m.x27 + 0.0001*m.x151*m.x28 +
0.0001*m.x151*m.x29 + 0.0001*m.x151*m.x30 + 0.0001*m.x151*m.x31 + 0.0001*m.x151*m.x32 + 0.0001*
m.x151*m.x33 + 0.0001*m.x151*m.x34 + 0.0001*m.x151*m.x35 + 0.0001*m.x151*m.x36 + 0.0001*m.x151*
m.x37 + 0.0001*m.x151*m.x38 + 0.0001*m.x151*m.x39 + 0.0001*m.x151*m.x40 + 0.0001*m.x151*m.x41 +
0.0001*m.x151*m.x42 + 0.0001*m.x151*m.x43 + 0.0001*m.x151*m.x44 + 0.0001*m.x151*m.x45 + 0.0001*
m.x151*m.x46 + 0.0001*m.x151*m.x47 + 0.0001*m.x151*m.x48 + 0.0001*m.x151*m.x49 + 0.0001*m.x151*
m.x50 + 0.0001*m.x151*m.x51 + 0.0001*m.x151*m.x52 + 0.0001*m.x151*m.x53 + 0.0001*m.x151*m.x54 +
0.0001*m.x151*m.x55 + 0.0001*m.x151*m.x56 + 0.0001*m.x151*m.x57 + 0.0001*m.x151*m.x58 + 0.0001*
m.x151*m.x59 + 0.0001*m.x151*m.x60 + 0.0001*m.x151*m.x61 + 0.0001*m.x151*m.x62 + 0.0001*m.x151*
m.x63 + 0.0001*m.x151*m.x64 + 0.0001*m.x151*m.x65 + 0.0001*m.x151*m.x66 + 0.0001*m.x151*m.x67 +
0.0001*m.x151*m.x68 + 0.0001*m.x151*m.x69 + 0.0001*m.x151*m.x70 + 0.0001*m.x151*m.x71 + 0.0001*
m.x151*m.x72 + 0.0001*m.x151*m.x73 + 0.0001*m.x151*m.x74 + 0.0001*m.x151*m.x75 + 0.0001*m.x151*
m.x76 + 0.0001*m.x151*m.x77 + 0.0001*m.x151*m.x78 + 0.0001*m.x151*m.x79 + 1.20913493689189*m.x151
*m.x80 + 0.0001*m.x151*m.x81 + 0.0001*m.x151*m.x82 + 0.0001*m.x151*m.x83 + 0.0001*m.x151*m.x84 +
0.0001*m.x151*m.x85 + 0.0001*m.x151*m.x86 + 0.0001*m.x151*m.x87 + 0.0001*m.x151*m.x88 + 0.0001*
m.x151*m.x89 + 0.0001*m.x151*m.x90 + 0.0001*m.x151*m.x91 + 0.0001*m.x151*m.x92 + 0.0001*m.x151*
m.x93 + 0.0001*m.x151*m.x94 + 0.0001*m.x151*m.x95 + 0.0001*m.x151*m.x96 + 0.0001*m.x151*m.x97 +
0.0001*m.x151*m.x98 + 0.0001*m.x151*m.x99 + 0.0001*m.x151*m.x100 + 0.0001*m.x151*m.x101 + 0.0001*
m.x151*m.x102 + 0.0001*m.x151*m.x103 + 0.0001*m.x151*m.x104 + 0.0001*m.x151*m.x105 + 0.0001*
m.x151*m.x106 + 0.0001*m.x151*m.x107 + 0.0001*m.x151*m.x108 + 0.0001*m.x151*m.x109 + 0.0001*
m.x151*m.x110 + 0.0001*m.x151*m.x111 + 0.0001*m.x151*m.x112 + 0.0001*m.x151*m.x113 + 0.0001*
m.x151*m.x114 + 0.0001*m.x151*m.x115 + 0.0001*m.x151*m.x116 + 0.0001*m.x151*m.x117 + 0.0001*
m.x151*m.x118 + 0.0001*m.x151*m.x119 + 0.0001*m.x151*m.x120 + 0.0001*m.x151*m.x121 + 0.0001*
m.x151*m.x122 + 0.0001*m.x151*m.x123 + 0.0001*m.x151*m.x124 + 7.05569268711518*m.x151*m.x125 +
0.0001*m.x151*m.x126 + 0.0001*m.x151*m.x127 + 0.0001*m.x151*m.x128 + 0.0001*m.x151*m.x129 +
0.0001*m.x151*m.x130 + 0.0001*m.x151*m.x131 + 0.0001*m.x151*m.x132 + 0.0001*m.x151*m.x133 +
0.0001*m.x151*m.x134 + 0.0001*m.x151*m.x135 + 0.0001*m.x151*m.x136 + 0.0001*m.x151*m.x137 +
0.0001*m.x151*m.x138 + 0.0001*m.x151*m.x139 + 0.0001*m.x151*m.x140 + 0.0001*m.x151*m.x141 +
0.0001*m.x151*m.x142 + 0.0001*m.x151*m.x143 + 0.0001*m.x151*m.x144 + 0.0001*m.x151*m.x145 +
0.0001*m.x151*m.x146 + 0.0001*m.x151*m.x147 + 0.0001*m.x151*m.x148 + 0.0001*m.x151*m.x149 +
0.0001*m.x151*m.x150 + 9.98866051152078*m.x151**2 + 0.0001*m.x151*m.x152 + 0.0001*m.x151*m.x153
+ 0.0001*m.x151*m.x154 + 0.0001*m.x151*m.x155 + 0.0001*m.x151*m.x156 + 0.0001*m.x151*m.x157 +
0.0001*m.x151*m.x158 + 0.0001*m.x151*m.x159 + 0.0001*m.x151*m.x160 + 0.0001*m.x151*m.x161 +
0.0001*m.x151*m.x162 + 0.0001*m.x151*m.x163 + 0.0001*m.x151*m.x164 + 0.0001*m.x151*m.x165 +
5.96705343413159*m.x151*m.x166 + 0.0001*m.x151*m.x167 + 0.0001*m.x151*m.x168 + 0.0001*m.x151*
m.x169 + 0.0001*m.x151*m.x170 + 0.0001*m.x151*m.x171 + 0.0001*m.x151*m.x172 + 0.0001*m.x151*
m.x173 + 0.0001*m.x151*m.x174 + 0.0001*m.x151*m.x175 + 0.0001*m.x151*m.x176 + 0.0001*m.x151*
m.x177 + 0.0001*m.x151*m.x178 + 0.0001*m.x151*m.x179 + 0.0001*m.x151*m.x180 + 0.0001*m.x151*
m.x181 + 0.0001*m.x151*m.x182 + 0.0001*m.x151*m.x183 + 0.0001*m.x151*m.x184 + 0.0001*m.x151*
m.x185 + 0.0001*m.x152*m.x1 + 0.0001*m.x152*m.x2 + 0.0001*m.x152*m.x3 + 0.0001*m.x152*m.x4 +
0.0001*m.x152*m.x5 + 0.0001*m.x152*m.x6 + 0.0001*m.x152*m.x7 + 0.0001*m.x152*m.x8 + 0.0001*m.x152
*m.x9 + 0.0001*m.x152*m.x10 + 0.0001*m.x152*m.x11 + 0.0001*m.x152*m.x12 + 0.0001*m.x152*m.x13 +
0.0001*m.x152*m.x14 + 0.0001*m.x152*m.x15 + 0.0001*m.x152*m.x16 + 0.0001*m.x152*m.x17 + 0.0001*
m.x152*m.x18 + 0.0001*m.x152*m.x19 + 0.0001*m.x152*m.x20 + 0.0001*m.x152*m.x21 + 0.0001*m.x152*
m.x22 + 0.0001*m.x152*m.x23 + 0.0001*m.x152*m.x24 + 0.0001*m.x152*m.x25 + 0.0001*m.x152*m.x26 +
0.0001*m.x152*m.x27 + 0.0001*m.x152*m.x28 + 0.0001*m.x152*m.x29 + 0.0001*m.x152*m.x30 + 0.0001*
m.x152*m.x31 + 0.0001*m.x152*m.x32 + 0.0001*m.x152*m.x33 + 0.0001*m.x152*m.x34 + 0.0001*m.x152*
m.x35 + 0.0001*m.x152*m.x36 + 0.0001*m.x152*m.x37 + 0.0001*m.x152*m.x38 + 0.0001*m.x152*m.x39 +
0.0001*m.x152*m.x40 + 0.0001*m.x152*m.x41 + 0.0001*m.x152*m.x42 + 0.0001*m.x152*m.x43 + 0.0001*
m.x152*m.x44 + 0.0001*m.x152*m.x45 + 0.0001*m.x152*m.x46 + 0.0001*m.x152*m.x47 + 0.0001*m.x152*
m.x48 + 0.0001*m.x152*m.x49 + 0.0001*m.x152*m.x50 + 0.0001*m.x152*m.x51 + 0.0001*m.x152*m.x52 +
0.0001*m.x152*m.x53 + 0.0001*m.x152*m.x54 + 0.0001*m.x152*m.x55 + 0.0001*m.x152*m.x56 + 0.0001*
m.x152*m.x57 + 0.0001*m.x152*m.x58 + 0.0001*m.x152*m.x59 + 0.0001*m.x152*m.x60 + 0.0001*m.x152*
m.x61 + 0.0001*m.x152*m.x62 + 0.0001*m.x152*m.x63 + 0.0001*m.x152*m.x64 + 0.0001*m.x152*m.x65 +
0.0001*m.x152*m.x66 + 0.0001*m.x152*m.x67 + 0.0001*m.x152*m.x68 + 0.0001*m.x152*m.x69 + 0.0001*
m.x152*m.x70 + 0.0001*m.x152*m.x71 + 0.0001*m.x152*m.x72 + 0.0001*m.x152*m.x73 + 0.0001*m.x152*
m.x74 + 0.0001*m.x152*m.x75 + 0.0001*m.x152*m.x76 + 0.0001*m.x152*m.x77 + 0.0001*m.x152*m.x78 +
0.0001*m.x152*m.x79 + 0.0001*m.x152*m.x80 + 1.25084164368406*m.x152*m.x81 + 0.0001*m.x152*m.x82
+ 0.0001*m.x152*m.x83 + 0.0001*m.x152*m.x84 + 0.0001*m.x152*m.x85 + 0.0001*m.x152*m.x86 + 0.0001
*m.x152*m.x87 + 0.0001*m.x152*m.x88 + 0.0001*m.x152*m.x89 + 0.0001*m.x152*m.x90 + 0.0001*m.x152*
m.x91 + 0.0001*m.x152*m.x92 + 0.0001*m.x152*m.x93 + 0.0001*m.x152*m.x94 + 0.0001*m.x152*m.x95 +
0.0001*m.x152*m.x96 + 0.0001*m.x152*m.x97 + 0.0001*m.x152*m.x98 + 0.0001*m.x152*m.x99 + 0.0001*
m.x152*m.x100 + 0.0001*m.x152*m.x101 + 0.0001*m.x152*m.x102 + 0.0001*m.x152*m.x103 + 0.0001*
m.x152*m.x104 + 0.0001*m.x152*m.x105 + 0.0001*m.x152*m.x106 + 0.0001*m.x152*m.x107 + 0.0001*
m.x152*m.x108 + 0.0001*m.x152*m.x109 + 0.0001*m.x152*m.x110 + 0.0001*m.x152*m.x111 + 0.0001*
m.x152*m.x112 + 0.0001*m.x152*m.x113 + 0.0001*m.x152*m.x114 + 0.0001*m.x152*m.x115 + 0.0001*
m.x152*m.x116 + 0.0001*m.x152*m.x117 + 0.0001*m.x152*m.x118 + 0.0001*m.x152*m.x119 + 0.0001*
m.x152*m.x120 + 0.0001*m.x152*m.x121 + 0.0001*m.x152*m.x122 + 0.0001*m.x152*m.x123 + 0.0001*
m.x152*m.x124 + 0.0001*m.x152*m.x125 + 7.05569268711518*m.x152*m.x126 + 0.0001*m.x152*m.x127 +
0.0001*m.x152*m.x128 + 0.0001*m.x152*m.x129 + 0.0001*m.x152*m.x130 + 0.0001*m.x152*m.x131 +
0.0001*m.x152*m.x132 + 0.0001*m.x152*m.x133 + 0.0001*m.x152*m.x134 + 0.0001*m.x152*m.x135 +
0.0001*m.x152*m.x136 + 0.0001*m.x152*m.x137 + 0.0001*m.x152*m.x138 + 0.0001*m.x152*m.x139 +
0.0001*m.x152*m.x140 + 0.0001*m.x152*m.x141 + 0.0001*m.x152*m.x142 + 0.0001*m.x152*m.x143 +
0.0001*m.x152*m.x144 + 0.0001*m.x152*m.x145 + 0.0001*m.x152*m.x146 + 0.0001*m.x152*m.x147 +
0.0001*m.x152*m.x148 + 0.0001*m.x152*m.x149 + 0.0001*m.x152*m.x150 + 0.0001*m.x152*m.x151 +
9.98866051152078*m.x152**2 + 0.0001*m.x152*m.x153 + 0.0001*m.x152*m.x154 + 0.0001*m.x152*m.x155
+ 0.0001*m.x152*m.x156 + 0.0001*m.x152*m.x157 + 0.0001*m.x152*m.x158 + 0.0001*m.x152*m.x159 +
0.0001*m.x152*m.x160 + 0.0001*m.x152*m.x161 + 0.0001*m.x152*m.x162 + 0.0001*m.x152*m.x163 +
0.0001*m.x152*m.x164 + 0.0001*m.x152*m.x165 + 0.0001*m.x152*m.x166 + 6.05530167878749*m.x152*
m.x167 + 0.0001*m.x152*m.x168 + 0.0001*m.x152*m.x169 + 0.0001*m.x152*m.x170 + 0.0001*m.x152*
m.x171 + 0.0001*m.x152*m.x172 + 0.0001*m.x152*m.x173 + 0.0001*m.x152*m.x174 + 0.0001*m.x152*
m.x175 + 0.0001*m.x152*m.x176 + 0.0001*m.x152*m.x177 + 0.0001*m.x152*m.x178 + 0.0001*m.x152*
m.x179 + 0.0001*m.x152*m.x180 + 0.0001*m.x152*m.x181 + 0.0001*m.x152*m.x182 + 0.0001*m.x152*
m.x183 + 0.0001*m.x152*m.x184 + 0.0001*m.x152*m.x185 + 0.0001*m.x153*m.x1 + 0.0001*m.x153*m.x2 +
0.0001*m.x153*m.x3 + 0.0001*m.x153*m.x4 + 0.0001*m.x153*m.x5 + 0.0001*m.x153*m.x6 + 0.0001*m.x153
*m.x7 + 0.0001*m.x153*m.x8 + 0.0001*m.x153*m.x9 + 0.0001*m.x153*m.x10 + 0.0001*m.x153*m.x11 +
0.0001*m.x153*m.x12 + 0.0001*m.x153*m.x13 + 0.0001*m.x153*m.x14 + 0.0001*m.x153*m.x15 + 0.0001*
m.x153*m.x16 + 0.0001*m.x153*m.x17 + 0.0001*m.x153*m.x18 + 0.0001*m.x153*m.x19 + 0.0001*m.x153*
m.x20 + 0.0001*m.x153*m.x21 + 0.0001*m.x153*m.x22 + 0.0001*m.x153*m.x23 + 0.0001*m.x153*m.x24 +
0.0001*m.x153*m.x25 + 0.0001*m.x153*m.x26 + 0.0001*m.x153*m.x27 + 0.0001*m.x153*m.x28 + 0.0001*
m.x153*m.x29 + 0.0001*m.x153*m.x30 + 0.0001*m.x153*m.x31 + 0.0001*m.x153*m.x32 + 0.0001*m.x153*
m.x33 + 0.0001*m.x153*m.x34 + 0.0001*m.x153*m.x35 + 0.0001*m.x153*m.x36 + 0.0001*m.x153*m.x37 +
0.0001*m.x153*m.x38 + 0.0001*m.x153*m.x39 + 0.0001*m.x153*m.x40 + 0.0001*m.x153*m.x41 + 0.0001*
m.x153*m.x42 + 0.0001*m.x153*m.x43 + 0.0001*m.x153*m.x44 + 0.0001*m.x153*m.x45 + 0.0001*m.x153*
m.x46 + 0.0001*m.x153*m.x47 + 0.0001*m.x153*m.x48 + 0.0001*m.x153*m.x49 + 0.0001*m.x153*m.x50 +
0.0001*m.x153*m.x51 + 0.0001*m.x153*m.x52 + 0.0001*m.x153*m.x53 + 0.0001*m.x153*m.x54 + 0.0001*
m.x153*m.x55 + 0.0001*m.x153*m.x56 + 0.0001*m.x153*m.x57 + 0.0001*m.x153*m.x58 + 0.0001*m.x153*
m.x59 + 0.0001*m.x153*m.x60 + 0.0001*m.x153*m.x61 + 0.0001*m.x153*m.x62 + 0.0001*m.x153*m.x63 +
0.0001*m.x153*m.x64 + 0.0001*m.x153*m.x65 + 0.0001*m.x153*m.x66 + 0.0001*m.x153*m.x67 + 0.0001*
m.x153*m.x68 + 0.0001*m.x153*m.x69 + 0.0001*m.x153*m.x70 + 0.0001*m.x153*m.x71 + 0.0001*m.x153*
m.x72 + 0.0001*m.x153*m.x73 + 0.0001*m.x153*m.x74 + 0.0001*m.x153*m.x75 + 0.0001*m.x153*m.x76 +
0.0001*m.x153*m.x77 + 0.0001*m.x153*m.x78 + 0.0001*m.x153*m.x79 + 0.0001*m.x153*m.x80 + 0.0001*
m.x153*m.x81 + 1.16455074109673*m.x153*m.x82 + 0.0001*m.x153*m.x83 + 0.0001*m.x153*m.x84 + 0.0001
*m.x153*m.x85 + 0.0001*m.x153*m.x86 + 0.0001*m.x153*m.x87 + 0.0001*m.x153*m.x88 + 0.0001*m.x153*
m.x89 + 0.0001*m.x153*m.x90 + 0.0001*m.x153*m.x91 + 0.0001*m.x153*m.x92 + 0.0001*m.x153*m.x93 +
0.0001*m.x153*m.x94 + 0.0001*m.x153*m.x95 + 0.0001*m.x153*m.x96 + 0.0001*m.x153*m.x97 + 0.0001*
m.x153*m.x98 + 0.0001*m.x153*m.x99 + 0.0001*m.x153*m.x100 + 0.0001*m.x153*m.x101 + 0.0001*m.x153*
m.x102 + 0.0001*m.x153*m.x103 + 0.0001*m.x153*m.x104 + 0.0001*m.x153*m.x105 + 0.0001*m.x153*
m.x106 + 0.0001*m.x153*m.x107 + 0.0001*m.x153*m.x108 + 0.0001*m.x153*m.x109 + 0.0001*m.x153*
m.x110 + 0.0001*m.x153*m.x111 + 0.0001*m.x153*m.x112 + 0.0001*m.x153*m.x113 + 0.0001*m.x153*
m.x114 + 0.0001*m.x153*m.x115 + 0.0001*m.x153*m.x116 + 0.0001*m.x153*m.x117 + 0.0001*m.x153*
m.x118 + 0.0001*m.x153*m.x119 + 0.0001*m.x153*m.x120 + 0.0001*m.x153*m.x121 + 0.0001*m.x153*
m.x122 + 0.0001*m.x153*m.x123 + 0.0001*m.x153*m.x124 + 0.0001*m.x153*m.x125 + 0.0001*m.x153*
m.x126 + 6.56891473074487*m.x153*m.x127 + 0.0001*m.x153*m.x128 + 0.0001*m.x153*m.x129 + 0.0001*
m.x153*m.x130 + 0.0001*m.x153*m.x131 + 0.0001*m.x153*m.x132 + 0.0001*m.x153*m.x133 + 0.0001*
m.x153*m.x134 + 0.0001*m.x153*m.x135 + 0.0001*m.x153*m.x136 + 0.0001*m.x153*m.x137 + 0.0001*
m.x153*m.x138 + 0.0001*m.x153*m.x139 + 0.0001*m.x153*m.x140 + 0.0001*m.x153*m.x141 + 0.0001*
m.x153*m.x142 + 0.0001*m.x153*m.x143 + 0.0001*m.x153*m.x144 + 0.0001*m.x153*m.x145 + 0.0001*
m.x153*m.x146 + 0.0001*m.x153*m.x147 + 0.0001*m.x153*m.x148 + 0.0001*m.x153*m.x149 + 0.0001*
m.x153*m.x150 + 0.0001*m.x153*m.x151 + 0.0001*m.x153*m.x152 + 9.29953186018033*m.x153**2 + 0.0001
*m.x153*m.x154 + 0.0001*m.x153*m.x155 + 0.0001*m.x153*m.x156 + 0.0001*m.x153*m.x157 + 0.0001*
m.x153*m.x158 + 0.0001*m.x153*m.x159 + 0.0001*m.x153*m.x160 + 0.0001*m.x153*m.x161 + 0.0001*
m.x153*m.x162 + 0.0001*m.x153*m.x163 + 0.0001*m.x153*m.x164 + 0.0001*m.x153*m.x165 + 0.0001*
m.x153*m.x166 + 0.0001*m.x153*m.x167 + 5.6375424869916*m.x153*m.x168 + 0.0001*m.x153*m.x169 +
0.0001*m.x153*m.x170 + 0.0001*m.x153*m.x171 + 0.0001*m.x153*m.x172 + 0.0001*m.x153*m.x173 +
0.0001*m.x153*m.x174 + 0.0001*m.x153*m.x175 + 0.0001*m.x153*m.x176 + 0.0001*m.x153*m.x177 +
0.0001*m.x153*m.x178 + 0.0001*m.x153*m.x179 + 0.0001*m.x153*m.x180 + 0.0001*m.x153*m.x181 +
0.0001*m.x153*m.x182 + 0.0001*m.x153*m.x183 + 0.0001*m.x153*m.x184 + 0.0001*m.x153*m.x185 +
0.0001*m.x154*m.x1 + 0.0001*m.x154*m.x2 + 0.0001*m.x154*m.x3 + 0.0001*m.x154*m.x4 + 0.0001*m.x154
*m.x5 + 0.0001*m.x154*m.x6 + 0.0001*m.x154*m.x7 + 0.0001*m.x154*m.x8 + 0.0001*m.x154*m.x9 +
0.0001*m.x154*m.x10 + 0.0001*m.x154*m.x11 + 0.0001*m.x154*m.x12 + 0.0001*m.x154*m.x13 + 0.0001*
m.x154*m.x14 + 0.0001*m.x154*m.x15 + 0.0001*m.x154*m.x16 + 0.0001*m.x154*m.x17 + 0.0001*m.x154*
m.x18 + 0.0001*m.x154*m.x19 + 0.0001*m.x154*m.x20 + 0.0001*m.x154*m.x21 + 0.0001*m.x154*m.x22 +
0.0001*m.x154*m.x23 + 0.0001*m.x154*m.x24 + 0.0001*m.x154*m.x25 + 0.0001*m.x154*m.x26 + 0.0001*
m.x154*m.x27 + 0.0001*m.x154*m.x28 + 0.0001*m.x154*m.x29 + 0.0001*m.x154*m.x30 + 0.0001*m.x154*
m.x31 + 0.0001*m.x154*m.x32 + 0.0001*m.x154*m.x33 + 0.0001*m.x154*m.x34 + 0.0001*m.x154*m.x35 +
0.0001*m.x154*m.x36 + 0.0001*m.x154*m.x37 + 0.0001*m.x154*m.x38 + 0.0001*m.x154*m.x39 + 0.0001*
m.x154*m.x40 + 0.0001*m.x154*m.x41 + 0.0001*m.x154*m.x42 + 0.0001*m.x154*m.x43 + 0.0001*m.x154*
m.x44 + 0.0001*m.x154*m.x45 + 0.0001*m.x154*m.x46 + 0.0001*m.x154*m.x47 + 0.0001*m.x154*m.x48 +
0.0001*m.x154*m.x49 + 0.0001*m.x154*m.x50 + 0.0001*m.x154*m.x51 + 0.0001*m.x154*m.x52 + 0.0001*
m.x154*m.x53 + 0.0001*m.x154*m.x54 + 0.0001*m.x154*m.x55 + 0.0001*m.x154*m.x56 + 0.0001*m.x154*
m.x57 + 0.0001*m.x154*m.x58 + 0.0001*m.x154*m.x59 + 0.0001*m.x154*m.x60 + 0.0001*m.x154*m.x61 +
0.0001*m.x154*m.x62 + 0.0001*m.x154*m.x63 + 0.0001*m.x154*m.x64 + 0.0001*m.x154*m.x65 + 0.0001*
m.x154*m.x66 + 0.0001*m.x154*m.x67 + 0.0001*m.x154*m.x68 + 0.0001*m.x154*m.x69 + 0.0001*m.x154*
m.x70 + 0.0001*m.x154*m.x71 + 0.0001*m.x154*m.x72 + 0.0001*m.x154*m.x73 + 0.0001*m.x154*m.x74 +
0.0001*m.x154*m.x75 + 0.0001*m.x154*m.x76 + 0.0001*m.x154*m.x77 + 0.0001*m.x154*m.x78 + 0.0001*
m.x154*m.x79 + 0.0001*m.x154*m.x80 + 0.0001*m.x154*m.x81 + 0.0001*m.x154*m.x82 + 1.24614469444164
*m.x154*m.x83 + 0.0001*m.x154*m.x84 + 0.0001*m.x154*m.x85 + 0.0001*m.x154*m.x86 + 0.0001*m.x154*
m.x87 + 0.0001*m.x154*m.x88 + 0.0001*m.x154*m.x89 + 0.0001*m.x154*m.x90 + 0.0001*m.x154*m.x91 +
0.0001*m.x154*m.x92 + 0.0001*m.x154*m.x93 + 0.0001*m.x154*m.x94 + 0.0001*m.x154*m.x95 + 0.0001*
m.x154*m.x96 + 0.0001*m.x154*m.x97 + 0.0001*m.x154*m.x98 + 0.0001*m.x154*m.x99 + 0.0001*m.x154*
m.x100 + 0.0001*m.x154*m.x101 + 0.0001*m.x154*m.x102 + 0.0001*m.x154*m.x103 + 0.0001*m.x154*
m.x104 + 0.0001*m.x154*m.x105 + 0.0001*m.x154*m.x106 + 0.0001*m.x154*m.x107 + 0.0001*m.x154*
m.x108 + 0.0001*m.x154*m.x109 + 0.0001*m.x154*m.x110 + 0.0001*m.x154*m.x111 + 0.0001*m.x154*
m.x112 + 0.0001*m.x154*m.x113 + 0.0001*m.x154*m.x114 + 0.0001*m.x154*m.x115 + 0.0001*m.x154*
m.x116 + 0.0001*m.x154*m.x117 + 0.0001*m.x154*m.x118 + 0.0001*m.x154*m.x119 + 0.0001*m.x154*
m.x120 + 0.0001*m.x154*m.x121 + 0.0001*m.x154*m.x122 + 0.0001*m.x154*m.x123 + 0.0001*m.x154*
m.x124 + 0.0001*m.x154*m.x125 + 0.0001*m.x154*m.x126 + 0.0001*m.x154*m.x127 + 6.07157286341414*
m.x154*m.x128 + 0.0001*m.x154*m.x129 + 0.0001*m.x154*m.x130 + 0.0001*m.x154*m.x131 + 0.0001*
m.x154*m.x132 + 0.0001*m.x154*m.x133 + 0.0001*m.x154*m.x134 + 0.0001*m.x154*m.x135 + 0.0001*
m.x154*m.x136 + 0.0001*m.x154*m.x137 + 0.0001*m.x154*m.x138 + 0.0001*m.x154*m.x139 + 0.0001*
m.x154*m.x140 + 0.0001*m.x154*m.x141 + 0.0001*m.x154*m.x142 + 0.0001*m.x154*m.x143 + 0.0001*
m.x154*m.x144 + 0.0001*m.x154*m.x145 + 0.0001*m.x154*m.x146 + 0.0001*m.x154*m.x147 + 0.0001*
m.x154*m.x148 + 0.0001*m.x154*m.x149 + 0.0001*m.x154*m.x150 + 0.0001*m.x154*m.x151 + 0.0001*
m.x154*m.x152 + 0.0001*m.x154*m.x153 + 11.5878321060596*m.x154**2 + 0.0001*m.x154*m.x155 + 0.0001
*m.x154*m.x156 + 0.0001*m.x154*m.x157 + 0.0001*m.x154*m.x158 + 0.0001*m.x154*m.x159 + 0.0001*
m.x154*m.x160 + 0.0001*m.x154*m.x161 + 0.0001*m.x154*m.x162 + 0.0001*m.x154*m.x163 + 0.0001*
m.x154*m.x164 + 0.0001*m.x154*m.x165 + 0.0001*m.x154*m.x166 + 0.0001*m.x154*m.x167 + 0.0001*
m.x154*m.x168 + 6.06641918211284*m.x154*m.x169 + 0.0001*m.x154*m.x170 + 0.0001*m.x154*m.x171 +
0.0001*m.x154*m.x172 + 0.0001*m.x154*m.x173 + 0.0001*m.x154*m.x174 + 0.0001*m.x154*m.x175 +
0.0001*m.x154*m.x176 + 0.0001*m.x154*m.x177 + 0.0001*m.x154*m.x178 + 0.0001*m.x154*m.x179 +
0.0001*m.x154*m.x180 + 0.0001*m.x154*m.x181 + 0.0001*m.x154*m.x182 + 0.0001*m.x154*m.x183 +
0.0001*m.x154*m.x184 + 0.0001*m.x154*m.x185 + 0.0001*m.x155*m.x1 + 0.0001*m.x155*m.x2 + 0.0001*
m.x155*m.x3 + 0.0001*m.x155*m.x4 + 0.0001*m.x155*m.x5 + 0.0001*m.x155*m.x6 + 0.0001*m.x155*m.x7
+ 0.0001*m.x155*m.x8 + 0.0001*m.x155*m.x9 + 0.0001*m.x155*m.x10 + 0.0001*m.x155*m.x11 + 0.0001*
m.x155*m.x12 + 0.0001*m.x155*m.x13 + 0.0001*m.x155*m.x14 + 0.0001*m.x155*m.x15 + 0.0001*m.x155*
m.x16 + 0.0001*m.x155*m.x17 + 0.0001*m.x155*m.x18 + 0.0001*m.x155*m.x19 + 0.0001*m.x155*m.x20 +
0.0001*m.x155*m.x21 + 0.0001*m.x155*m.x22 + 0.0001*m.x155*m.x23 + 0.0001*m.x155*m.x24 + 0.0001*
m.x155*m.x25 + 0.0001*m.x155*m.x26 + 0.0001*m.x155*m.x27 + 0.0001*m.x155*m.x28 + 0.0001*m.x155*
m.x29 + 0.0001*m.x155*m.x30 + 0.0001*m.x155*m.x31 + 0.0001*m.x155*m.x32 + 0.0001*m.x155*m.x33 +
0.0001*m.x155*m.x34 + 0.0001*m.x155*m.x35 + 0.0001*m.x155*m.x36 + 0.0001*m.x155*m.x37 + 0.0001*
m.x155*m.x38 + 0.0001*m.x155*m.x39 + 0.0001*m.x155*m.x40 + 0.0001*m.x155*m.x41 + 0.0001*m.x155*
m.x42 + 0.0001*m.x155*m.x43 + 0.0001*m.x155*m.x44 + 0.0001*m.x155*m.x45 + 0.0001*m.x155*m.x46 +
0.0001*m.x155*m.x47 + 0.0001*m.x155*m.x48 + 0.0001*m.x155*m.x49 + 0.0001*m.x155*m.x50 + 0.0001*
m.x155*m.x51 + 0.0001*m.x155*m.x52 + 0.0001*m.x155*m.x53 + 0.0001*m.x155*m.x54 + 0.0001*m.x155*
m.x55 + 0.0001*m.x155*m.x56 + 0.0001*m.x155*m.x57 + 0.0001*m.x155*m.x58 + 0.0001*m.x155*m.x59 +
0.0001*m.x155*m.x60 + 0.0001*m.x155*m.x61 + 0.0001*m.x155*m.x62 + 0.0001*m.x155*m.x63 + 0.0001*
m.x155*m.x64 + 0.0001*m.x155*m.x65 + 0.0001*m.x155*m.x66 + 0.0001*m.x155*m.x67 + 0.0001*m.x155*
m.x68 + 0.0001*m.x155*m.x69 + 0.0001*m.x155*m.x70 + 0.0001*m.x155*m.x71 + 0.0001*m.x155*m.x72 +
0.0001*m.x155*m.x73 + 0.0001*m.x155*m.x74 + 0.0001*m.x155*m.x75 + 0.0001*m.x155*m.x76 + 0.0001*
m.x155*m.x77 + 0.0001*m.x155*m.x78 + 0.0001*m.x155*m.x79 + 0.0001*m.x155*m.x80 + 0.0001*m.x155*
m.x81 + 0.0001*m.x155*m.x82 + 1.24614469444164*m.x155*m.x83 + 0.0001*m.x155*m.x84 + 0.0001*m.x155
*m.x85 + 0.0001*m.x155*m.x86 + 0.0001*m.x155*m.x87 + 0.0001*m.x155*m.x88 + 0.0001*m.x155*m.x89 +
0.0001*m.x155*m.x90 + 0.0001*m.x155*m.x91 + 0.0001*m.x155*m.x92 + 0.0001*m.x155*m.x93 + 0.0001*
m.x155*m.x94 + 0.0001*m.x155*m.x95 + 0.0001*m.x155*m.x96 + 0.0001*m.x155*m.x97 + 0.0001*m.x155*
m.x98 + 0.0001*m.x155*m.x99 + 0.0001*m.x155*m.x100 + 0.0001*m.x155*m.x101 + 0.0001*m.x155*m.x102
+ 0.0001*m.x155*m.x103 + 0.0001*m.x155*m.x104 + 0.0001*m.x155*m.x105 + 0.0001*m.x155*m.x106 +
0.0001*m.x155*m.x107 + 0.0001*m.x155*m.x108 + 0.0001*m.x155*m.x109 + 0.0001*m.x155*m.x110 +
0.0001*m.x155*m.x111 + 0.0001*m.x155*m.x112 + 0.0001*m.x155*m.x113 + 0.0001*m.x155*m.x114 +
0.0001*m.x155*m.x115 + 0.0001*m.x155*m.x116 + 0.0001*m.x155*m.x117 + 0.0001*m.x155*m.x118 +
0.0001*m.x155*m.x119 + 0.0001*m.x155*m.x120 + 0.0001*m.x155*m.x121 + 0.0001*m.x155*m.x122 +
0.0001*m.x155*m.x123 + 0.0001*m.x155*m.x124 + 0.0001*m.x155*m.x125 + 0.0001*m.x155*m.x126 +
0.0001*m.x155*m.x127 + 6.07157286341414*m.x155*m.x128 + 0.0001*m.x155*m.x129 + 0.0001*m.x155*
m.x130 + 0.0001*m.x155*m.x131 + 0.0001*m.x155*m.x132 + 0.0001*m.x155*m.x133 + 0.0001*m.x155*
m.x134 + 0.0001*m.x155*m.x135 + 0.0001*m.x155*m.x136 + 0.0001*m.x155*m.x137 + 0.0001*m.x155*
m.x138 + 0.0001*m.x155*m.x139 + 0.0001*m.x155*m.x140 + 0.0001*m.x155*m.x141 + 0.0001*m.x155*
m.x142 + 0.0001*m.x155*m.x143 + 0.0001*m.x155*m.x144 + 0.0001*m.x155*m.x145 + 0.0001*m.x155*
m.x146 + 0.0001*m.x155*m.x147 + 0.0001*m.x155*m.x148 + 0.0001*m.x155*m.x149 + 0.0001*m.x155*
m.x150 + 0.0001*m.x155*m.x151 + 0.0001*m.x155*m.x152 + 0.0001*m.x155*m.x153 + 0.0001*m.x155*
m.x154 + 11.5878321060596*m.x155**2 + 0.0001*m.x155*m.x156 + 0.0001*m.x155*m.x157 + 0.0001*m.x155
*m.x158 + 0.0001*m.x155*m.x159 + 0.0001*m.x155*m.x160 + 0.0001*m.x155*m.x161 + 0.0001*m.x155*
m.x162 + 0.0001*m.x155*m.x163 + 0.0001*m.x155*m.x164 + 0.0001*m.x155*m.x165 + 0.0001*m.x155*
m.x166 + 0.0001*m.x155*m.x167 + 0.0001*m.x155*m.x168 + 6.06641918211284*m.x155*m.x169 + 0.0001*
m.x155*m.x170 + 0.0001*m.x155*m.x171 + 0.0001*m.x155*m.x172 + 0.0001*m.x155*m.x173 + 0.0001*
m.x155*m.x174 + 0.0001*m.x155*m.x175 + 0.0001*m.x155*m.x176 + 0.0001*m.x155*m.x177 + 0.0001*
m.x155*m.x178 + 0.0001*m.x155*m.x179 + 0.0001*m.x155*m.x180 + 0.0001*m.x155*m.x181 + 0.0001*
m.x155*m.x182 + 0.0001*m.x155*m.x183 + 0.0001*m.x155*m.x184 + 0.0001*m.x155*m.x185 + 0.0001*
m.x156*m.x1 + 0.0001*m.x156*m.x2 + 0.0001*m.x156*m.x3 + 0.0001*m.x156*m.x4 + 0.0001*m.x156*m.x5
+ 0.0001*m.x156*m.x6 + 0.0001*m.x156*m.x7 + 0.0001*m.x156*m.x8 + 0.0001*m.x156*m.x9 + 0.0001*
m.x156*m.x10 + 0.0001*m.x156*m.x11 + 0.0001*m.x156*m.x12 + 0.0001*m.x156*m.x13 + 0.0001*m.x156*
m.x14 + 0.0001*m.x156*m.x15 + 0.0001*m.x156*m.x16 + 0.0001*m.x156*m.x17 + 0.0001*m.x156*m.x18 +
0.0001*m.x156*m.x19 + 0.0001*m.x156*m.x20 + 0.0001*m.x156*m.x21 + 0.0001*m.x156*m.x22 + 0.0001*
m.x156*m.x23 + 0.0001*m.x156*m.x24 + 0.0001*m.x156*m.x25 + 0.0001*m.x156*m.x26 + 0.0001*m.x156*
m.x27 + 0.0001*m.x156*m.x28 + 0.0001*m.x156*m.x29 + 0.0001*m.x156*m.x30 + 0.0001*m.x156*m.x31 +
0.0001*m.x156*m.x32 + 0.0001*m.x156*m.x33 + 0.0001*m.x156*m.x34 + 0.0001*m.x156*m.x35 + 0.0001*
m.x156*m.x36 + 0.0001*m.x156*m.x37 + 0.0001*m.x156*m.x38 + 0.0001*m.x156*m.x39 + 0.0001*m.x156*
m.x40 + 0.0001*m.x156*m.x41 + 0.0001*m.x156*m.x42 + 0.0001*m.x156*m.x43 + 0.0001*m.x156*m.x44 +
0.0001*m.x156*m.x45 + 0.0001*m.x156*m.x46 + 0.0001*m.x156*m.x47 + 0.0001*m.x156*m.x48 + 0.0001*
m.x156*m.x49 + 0.0001*m.x156*m.x50 + 0.0001*m.x156*m.x51 + 0.0001*m.x156*m.x52 + 0.0001*m.x156*
m.x53 + 0.0001*m.x156*m.x54 + 0.0001*m.x156*m.x55 + 0.0001*m.x156*m.x56 + 0.0001*m.x156*m.x57 +
0.0001*m.x156*m.x58 + 0.0001*m.x156*m.x59 + 0.0001*m.x156*m.x60 + 0.0001*m.x156*m.x61 + 0.0001*
m.x156*m.x62 + 0.0001*m.x156*m.x63 + 0.0001*m.x156*m.x64 + 0.0001*m.x156*m.x65 + 0.0001*m.x156*
m.x66 + 0.0001*m.x156*m.x67 + 0.0001*m.x156*m.x68 + 0.0001*m.x156*m.x69 + 0.0001*m.x156*m.x70 +
0.0001*m.x156*m.x71 + 0.0001*m.x156*m.x72 + 0.0001*m.x156*m.x73 + 0.0001*m.x156*m.x74 + 0.0001*
m.x156*m.x75 + 0.0001*m.x156*m.x76 + 0.0001*m.x156*m.x77 + 0.0001*m.x156*m.x78 + 0.0001*m.x156*
m.x79 + 0.0001*m.x156*m.x80 + 0.0001*m.x156*m.x81 + 0.0001*m.x156*m.x82 + 0.0001*m.x156*m.x83 +
0.0001*m.x156*m.x84 + 0.0001*m.x156*m.x85 + 0.0001*m.x156*m.x86 + 0.0001*m.x156*m.x87 + 0.0001*
m.x156*m.x88 + 0.0001*m.x156*m.x89 + 0.0001*m.x156*m.x90 + 0.0001*m.x156*m.x91 + 0.0001*m.x156*
m.x92 + 0.0001*m.x156*m.x93 + 0.0001*m.x156*m.x94 + 0.0001*m.x156*m.x95 + 0.0001*m.x156*m.x96 +
0.0001*m.x156*m.x97 + 0.0001*m.x156*m.x98 + 0.0001*m.x156*m.x99 + 0.0001*m.x156*m.x100 + 0.0001*
m.x156*m.x101 + 0.0001*m.x156*m.x102 + 0.0001*m.x156*m.x103 + 0.0001*m.x156*m.x104 + 0.0001*
m.x156*m.x105 + 0.0001*m.x156*m.x106 + 0.0001*m.x156*m.x107 + 0.0001*m.x156*m.x108 + 0.0001*
m.x156*m.x109 + 0.0001*m.x156*m.x110 + 0.0001*m.x156*m.x111 + 0.0001*m.x156*m.x112 + 0.0001*
m.x156*m.x113 + 0.0001*m.x156*m.x114 + 0.0001*m.x156*m.x115 + 0.0001*m.x156*m.x116 + 0.0001*
m.x156*m.x117 + 0.0001*m.x156*m.x118 + 0.0001*m.x156*m.x119 + 0.0001*m.x156*m.x120 + 0.0001*
m.x156*m.x121 + 0.0001*m.x156*m.x122 + 0.0001*m.x156*m.x123 + 0.0001*m.x156*m.x124 + 0.0001*
m.x156*m.x125 + 0.0001*m.x156*m.x126 + 0.0001*m.x156*m.x127 + 0.0001*m.x156*m.x128 +
6.01366122063386*m.x156*m.x129 + 0.0001*m.x156*m.x130 + 0.0001*m.x156*m.x131 + 0.0001*m.x156*
m.x132 + 0.0001*m.x156*m.x133 + 0.0001*m.x156*m.x134 + 0.0001*m.x156*m.x135 + 0.0001*m.x156*
m.x136 + 0.0001*m.x156*m.x137 + 0.0001*m.x156*m.x138 + 0.0001*m.x156*m.x139 + 0.0001*m.x156*
m.x140 + 0.0001*m.x156*m.x141 + 0.0001*m.x156*m.x142 + 0.0001*m.x156*m.x143 + 0.0001*m.x156*
m.x144 + 0.0001*m.x156*m.x145 + 0.0001*m.x156*m.x146 + 0.0001*m.x156*m.x147 + 0.0001*m.x156*
m.x148 + 0.0001*m.x156*m.x149 + 0.0001*m.x156*m.x150 + 0.0001*m.x156*m.x151 + 0.0001*m.x156*
m.x152 + 0.0001*m.x156*m.x153 + 0.0001*m.x156*m.x154 + 0.0001*m.x156*m.x155 + 11.4773046249267*
m.x156**2 + 0.0001*m.x156*m.x157 + 0.0001*m.x156*m.x158 + 0.0001*m.x156*m.x159 + 0.0001*m.x156*
m.x160 + 0.0001*m.x156*m.x161 + 0.0001*m.x156*m.x162 + 0.0001*m.x156*m.x163 + 0.0001*m.x156*
m.x164 + 0.0001*m.x156*m.x165 + 0.0001*m.x156*m.x166 + 0.0001*m.x156*m.x167 + 0.0001*m.x156*
m.x168 + 0.0001*m.x156*m.x169 + 5.66748238565604*m.x156*m.x170 + 0.0001*m.x156*m.x171 + 0.0001*
m.x156*m.x172 + 0.0001*m.x156*m.x173 + 0.0001*m.x156*m.x174 + 0.0001*m.x156*m.x175 + 0.0001*
m.x156*m.x176 + 0.0001*m.x156*m.x177 + 0.0001*m.x156*m.x178 + 0.0001*m.x156*m.x179 + 0.0001*
m.x156*m.x180 + 0.0001*m.x156*m.x181 + 0.0001*m.x156*m.x182 + 0.0001*m.x156*m.x183 + 0.0001*
m.x156*m.x184 + 0.0001*m.x156*m.x185 + 0.0001*m.x157*m.x1 + 0.0001*m.x157*m.x2 + 0.0001*m.x157*
m.x3 + 0.0001*m.x157*m.x4 + 0.0001*m.x157*m.x5 + 0.0001*m.x157*m.x6 + 0.0001*m.x157*m.x7 + 0.0001
*m.x157*m.x8 + 0.0001*m.x157*m.x9 + 0.0001*m.x157*m.x10 + 0.0001*m.x157*m.x11 + 0.0001*m.x157*
m.x12 + 0.0001*m.x157*m.x13 + 0.0001*m.x157*m.x14 + 0.0001*m.x157*m.x15 + 0.0001*m.x157*m.x16 +
0.0001*m.x157*m.x17 + 0.0001*m.x157*m.x18 + 0.0001*m.x157*m.x19 + 0.0001*m.x157*m.x20 + 0.0001*
m.x157*m.x21 + 0.0001*m.x157*m.x22 + 0.0001*m.x157*m.x23 + 0.0001*m.x157*m.x24 + 0.0001*m.x157*
m.x25 + 0.0001*m.x157*m.x26 + 0.0001*m.x157*m.x27 + 0.0001*m.x157*m.x28 + 0.0001*m.x157*m.x29 +
0.0001*m.x157*m.x30 + 0.0001*m.x157*m.x31 + 0.0001*m.x157*m.x32 + 0.0001*m.x157*m.x33 + 0.0001*
m.x157*m.x34 + 0.0001*m.x157*m.x35 + 0.0001*m.x157*m.x36 + 0.0001*m.x157*m.x37 + 0.0001*m.x157*
m.x38 + 0.0001*m.x157*m.x39 + 0.0001*m.x157*m.x40 + 0.0001*m.x157*m.x41 + 0.0001*m.x157*m.x42 +
0.0001*m.x157*m.x43 + 0.0001*m.x157*m.x44 + 0.0001*m.x157*m.x45 + 0.0001*m.x157*m.x46 + 0.0001*
m.x157*m.x47 + 0.0001*m.x157*m.x48 + 0.0001*m.x157*m.x49 + 0.0001*m.x157*m.x50 + 0.0001*m.x157*
m.x51 + 0.0001*m.x157*m.x52 + 0.0001*m.x157*m.x53 + 0.0001*m.x157*m.x54 + 0.0001*m.x157*m.x55 +
0.0001*m.x157*m.x56 + 0.0001*m.x157*m.x57 + 0.0001*m.x157*m.x58 + 0.0001*m.x157*m.x59 + 0.0001*
m.x157*m.x60 + 0.0001*m.x157*m.x61 + 0.0001*m.x157*m.x62 + 0.0001*m.x157*m.x63 + 0.0001*m.x157*
m.x64 + 0.0001*m.x157*m.x65 + 0.0001*m.x157*m.x66 + 0.0001*m.x157*m.x67 + 0.0001*m.x157*m.x68 +
0.0001*m.x157*m.x69 + 0.0001*m.x157*m.x70 + 0.0001*m.x157*m.x71 + 0.0001*m.x157*m.x72 + 0.0001*
m.x157*m.x73 + 0.0001*m.x157*m.x74 + 0.0001*m.x157*m.x75 + 0.0001*m.x157*m.x76 + 0.0001*m.x157*
m.x77 + 0.0001*m.x157*m.x78 + 0.0001*m.x157*m.x79 + 0.0001*m.x157*m.x80 + 0.0001*m.x157*m.x81 +
0.0001*m.x157*m.x82 + 0.0001*m.x157*m.x83 + 0.0001*m.x157*m.x84 + 0.0001*m.x157*m.x85 + 0.0001*
m.x157*m.x86 + 0.0001*m.x157*m.x87 + 0.0001*m.x157*m.x88 + 0.0001*m.x157*m.x89 + 0.0001*m.x157*
m.x90 + 0.0001*m.x157*m.x91 + 0.0001*m.x157*m.x92 + 0.0001*m.x157*m.x93 + 0.0001*m.x157*m.x94 +
0.0001*m.x157*m.x95 + 0.0001*m.x157*m.x96 + 0.0001*m.x157*m.x97 + 0.0001*m.x157*m.x98 + 0.0001*
m.x157*m.x99 + 0.0001*m.x157*m.x100 + 0.0001*m.x157*m.x101 + 0.0001*m.x157*m.x102 + 0.0001*m.x157
*m.x103 + 0.0001*m.x157*m.x104 + 0.0001*m.x157*m.x105 + 0.0001*m.x157*m.x106 + 0.0001*m.x157*
m.x107 + 0.0001*m.x157*m.x108 + 0.0001*m.x157*m.x109 + 0.0001*m.x157*m.x110 + 0.0001*m.x157*
m.x111 + 0.0001*m.x157*m.x112 + 0.0001*m.x157*m.x113 + 0.0001*m.x157*m.x114 + 0.0001*m.x157*
m.x115 + 6.1573862905904*m.x157*m.x116 + 0.0001*m.x157*m.x117 + 0.0001*m.x157*m.x118 + 0.0001*
m.x157*m.x119 + 0.0001*m.x157*m.x120 + 0.0001*m.x157*m.x121 + 0.0001*m.x157*m.x122 + 0.0001*
m.x157*m.x123 + 0.0001*m.x157*m.x124 + 0.0001*m.x157*m.x125 + 0.0001*m.x157*m.x126 + 0.0001*
m.x157*m.x127 + 0.0001*m.x157*m.x128 + 0.481481473554168*m.x157*m.x129 + 0.0001*m.x157*m.x130 +
0.0001*m.x157*m.x131 + 0.0001*m.x157*m.x132 + 0.0001*m.x157*m.x133 + 0.0001*m.x157*m.x134 +
0.0001*m.x157*m.x135 + 0.0001*m.x157*m.x136 + 0.0001*m.x157*m.x137 + 0.0001*m.x157*m.x138 +
0.0001*m.x157*m.x139 + 0.0001*m.x157*m.x140 + 0.0001*m.x157*m.x141 + 8.40676553603667*m.x157*
m.x142 + 0.0001*m.x157*m.x143 + 0.0001*m.x157*m.x144 + 0.0001*m.x157*m.x145 + 0.0001*m.x157*
m.x146 + 0.0001*m.x157*m.x147 + 0.0001*m.x157*m.x148 + 0.0001*m.x157*m.x149 + 0.0001*m.x157*
m.x150 + 0.0001*m.x157*m.x151 + 0.0001*m.x157*m.x152 + 0.0001*m.x157*m.x153 + 0.0001*m.x157*
m.x154 + 0.0001*m.x157*m.x155 + 0.0001*m.x157*m.x156 + 5.58955879695696*m.x157**2 + 0.0001*m.x157
*m.x158 + 0.0001*m.x157*m.x159 + 0.0001*m.x157*m.x160 + 0.0001*m.x157*m.x161 + 0.0001*m.x157*
m.x162 + 0.0001*m.x157*m.x163 + 0.0001*m.x157*m.x164 + 0.0001*m.x157*m.x165 + 0.0001*m.x157*
m.x166 + 0.0001*m.x157*m.x167 + 0.0001*m.x157*m.x168 + 0.0001*m.x157*m.x169 + 0.453770093960477*
m.x157*m.x170 + 0.0001*m.x157*m.x171 + 0.0001*m.x157*m.x172 + 0.0001*m.x157*m.x173 + 0.0001*
m.x157*m.x174 + 0.0001*m.x157*m.x175 + 0.0001*m.x157*m.x176 + 0.0001*m.x157*m.x177 + 0.0001*
m.x157*m.x178 + 0.0001*m.x157*m.x179 + 0.0001*m.x157*m.x180 + 0.0001*m.x157*m.x181 + 0.0001*
m.x157*m.x182 + 0.0001*m.x157*m.x183 + 0.0001*m.x157*m.x184 + 0.0001*m.x157*m.x185 + 0.0001*
m.x158*m.x1 + 0.0001*m.x158*m.x2 + 0.0001*m.x158*m.x3 + 0.0001*m.x158*m.x4 + 0.0001*m.x158*m.x5
+ 0.0001*m.x158*m.x6 + 0.0001*m.x158*m.x7 + 0.0001*m.x158*m.x8 + 0.0001*m.x158*m.x9 + 0.0001*
m.x158*m.x10 + 0.0001*m.x158*m.x11 + 0.0001*m.x158*m.x12 + 0.0001*m.x158*m.x13 + 0.0001*m.x158*
m.x14 + 0.0001*m.x158*m.x15 + 0.0001*m.x158*m.x16 + 0.0001*m.x158*m.x17 + 0.0001*m.x158*m.x18 +
0.0001*m.x158*m.x19 + 0.0001*m.x158*m.x20 + 0.0001*m.x158*m.x21 + 0.0001*m.x158*m.x22 + 0.0001*
m.x158*m.x23 + 0.0001*m.x158*m.x24 + 0.0001*m.x158*m.x25 + 0.0001*m.x158*m.x26 + 0.0001*m.x158*
m.x27 + 0.0001*m.x158*m.x28 + 0.0001*m.x158*m.x29 + 0.0001*m.x158*m.x30 + 0.0001*m.x158*m.x31 +
0.0001*m.x158*m.x32 + 0.0001*m.x158*m.x33 + 0.0001*m.x158*m.x34 + 0.0001*m.x158*m.x35 + 0.0001*
m.x158*m.x36 + 0.0001*m.x158*m.x37 + 0.0001*m.x158*m.x38 + 0.0001*m.x158*m.x39 + 0.0001*m.x158*
m.x40 + 0.0001*m.x158*m.x41 + 0.0001*m.x158*m.x42 + 0.0001*m.x158*m.x43 + 0.0001*m.x158*m.x44 +
0.0001*m.x158*m.x45 + 0.0001*m.x158*m.x46 + 0.0001*m.x158*m.x47 + 0.0001*m.x158*m.x48 + 0.0001*
m.x158*m.x49 + 0.0001*m.x158*m.x50 + 0.0001*m.x158*m.x51 + 0.0001*m.x158*m.x52 + 0.0001*m.x158*
m.x53 + 0.0001*m.x158*m.x54 + 0.0001*m.x158*m.x55 + 0.0001*m.x158*m.x56 + 0.0001*m.x158*m.x57 +
0.0001*m.x158*m.x58 + 0.0001*m.x158*m.x59 + 0.496930732887788*m.x158*m.x60 + 0.0001*m.x158*m.x61
+ 0.0001*m.x158*m.x62 + 0.0001*m.x158*m.x63 + 0.0001*m.x158*m.x64 + 0.0001*m.x158*m.x65 + 0.0001
*m.x158*m.x66 + 0.0001*m.x158*m.x67 + 0.0001*m.x158*m.x68 + 0.0001*m.x158*m.x69 + 0.0001*m.x158*
m.x70 + 0.0001*m.x158*m.x71 + 1.44661993423099*m.x158*m.x72 + 0.0001*m.x158*m.x73 + 0.0001*m.x158
*m.x74 + 0.0001*m.x158*m.x75 + 0.0001*m.x158*m.x76 + 0.0001*m.x158*m.x77 + 0.0001*m.x158*m.x78 +
0.0001*m.x158*m.x79 + 0.0001*m.x158*m.x80 + 0.0001*m.x158*m.x81 + 0.0001*m.x158*m.x82 + 0.0001*
m.x158*m.x83 + 0.0001*m.x158*m.x84 + 0.0001*m.x158*m.x85 + 0.0001*m.x158*m.x86 + 0.0001*m.x158*
m.x87 + 0.0001*m.x158*m.x88 + 0.0001*m.x158*m.x89 + 0.0001*m.x158*m.x90 + 0.0001*m.x158*m.x91 +
0.0001*m.x158*m.x92 + 0.0001*m.x158*m.x93 + 0.0001*m.x158*m.x94 + 0.0001*m.x158*m.x95 + 0.0001*
m.x158*m.x96 + 0.0001*m.x158*m.x97 + 0.0001*m.x158*m.x98 + 0.0001*m.x158*m.x99 + 0.0001*m.x158*
m.x100 + 0.0001*m.x158*m.x101 + 0.0001*m.x158*m.x102 + 0.0001*m.x158*m.x103 + 0.0001*m.x158*
m.x104 + 0.0001*m.x158*m.x105 + 0.0001*m.x158*m.x106 + 0.0001*m.x158*m.x107 + 0.0001*m.x158*
m.x108 + 0.0001*m.x158*m.x109 + 0.0001*m.x158*m.x110 + 0.0001*m.x158*m.x111 + 0.0001*m.x158*
m.x112 + 0.0001*m.x158*m.x113 + 0.0001*m.x158*m.x114 + 0.0001*m.x158*m.x115 + 0.0001*m.x158*
m.x116 + 6.63439031667751*m.x158*m.x117 + 0.0001*m.x158*m.x118 + 0.0001*m.x158*m.x119 + 0.0001*
m.x158*m.x120 + 0.0001*m.x158*m.x121 + 0.0001*m.x158*m.x122 + 0.0001*m.x158*m.x123 + 0.0001*
m.x158*m.x124 + 0.0001*m.x158*m.x125 + 0.0001*m.x158*m.x126 + 0.0001*m.x158*m.x127 + 0.0001*
m.x158*m.x128 + 0.0001*m.x158*m.x129 + 0.0001*m.x158*m.x130 + 0.0001*m.x158*m.x131 + 0.0001*
m.x158*m.x132 + 0.0001*m.x158*m.x133 + 0.0001*m.x158*m.x134 + 0.0001*m.x158*m.x135 + 0.0001*
m.x158*m.x136 + 0.0001*m.x158*m.x137 + 0.0001*m.x158*m.x138 + 0.0001*m.x158*m.x139 + 0.0001*
m.x158*m.x140 + 0.0001*m.x158*m.x141 + 0.0001*m.x158*m.x142 + 9.01610644057731*m.x158*m.x143 +
0.0001*m.x158*m.x144 + 0.0001*m.x158*m.x145 + 0.0001*m.x158*m.x146 + 0.0001*m.x158*m.x147 +
0.0001*m.x158*m.x148 + 0.0001*m.x158*m.x149 + 0.0001*m.x158*m.x150 + 0.0001*m.x158*m.x151 +
0.0001*m.x158*m.x152 + 0.0001*m.x158*m.x153 + 0.0001*m.x158*m.x154 + 0.0001*m.x158*m.x155 +
0.0001*m.x158*m.x156 + 0.0001*m.x158*m.x157 + 6.45910065311575*m.x158**2 + 0.0001*m.x158*m.x159
+ 0.0001*m.x158*m.x160 + 0.0001*m.x158*m.x161 + 0.0001*m.x158*m.x162 + 0.0001*m.x158*m.x163 +
0.0001*m.x158*m.x164 + 0.0001*m.x158*m.x165 + 0.0001*m.x158*m.x166 + 0.0001*m.x158*m.x167 +
0.0001*m.x158*m.x168 + 0.0001*m.x158*m.x169 + 0.0001*m.x158*m.x170 + 0.0001*m.x158*m.x171 +
0.0001*m.x158*m.x172 + 0.0001*m.x158*m.x173 + 0.0001*m.x158*m.x174 + 0.0001*m.x158*m.x175 +
0.0001*m.x158*m.x176 + 0.0001*m.x158*m.x177 + 0.0001*m.x158*m.x178 + 0.0001*m.x158*m.x179 +
0.0001*m.x158*m.x180 + 0.0001*m.x158*m.x181 + 0.0001*m.x158*m.x182 + 0.0001*m.x158*m.x183 +
0.0001*m.x158*m.x184 + 0.0001*m.x158*m.x185 + 0.0001*m.x159*m.x1 + 0.0001*m.x159*m.x2 + 0.0001*
m.x159*m.x3 + 0.0001*m.x159*m.x4 + 0.0001*m.x159*m.x5 + 0.0001*m.x159*m.x6 + 0.0001*m.x159*m.x7
+ 0.0001*m.x159*m.x8 + 0.0001*m.x159*m.x9 + 0.0001*m.x159*m.x10 + 0.0001*m.x159*m.x11 + 0.0001*
m.x159*m.x12 + 0.0001*m.x159*m.x13 + 0.0001*m.x159*m.x14 + 0.0001*m.x159*m.x15 + 0.0001*m.x159*
m.x16 + 0.0001*m.x159*m.x17 + 0.0001*m.x159*m.x18 + 0.0001*m.x159*m.x19 + 0.0001*m.x159*m.x20 +
0.0001*m.x159*m.x21 + 0.0001*m.x159*m.x22 + 0.0001*m.x159*m.x23 + 0.0001*m.x159*m.x24 + 0.0001*
m.x159*m.x25 + 0.0001*m.x159*m.x26 + 0.0001*m.x159*m.x27 + 0.0001*m.x159*m.x28 + 0.0001*m.x159*
m.x29 + 0.0001*m.x159*m.x30 + 0.0001*m.x159*m.x31 + 0.0001*m.x159*m.x32 + 0.0001*m.x159*m.x33 +
0.0001*m.x159*m.x34 + 0.0001*m.x159*m.x35 + 0.0001*m.x159*m.x36 + 0.0001*m.x159*m.x37 + 0.0001*
m.x159*m.x38 + 0.0001*m.x159*m.x39 + 0.0001*m.x159*m.x40 + 0.0001*m.x159*m.x41 + 0.0001*m.x159*
m.x42 + 0.0001*m.x159*m.x43 + 0.0001*m.x159*m.x44 + 0.0001*m.x159*m.x45 + 0.0001*m.x159*m.x46 +
0.0001*m.x159*m.x47 + 0.0001*m.x159*m.x48 + 0.0001*m.x159*m.x49 + 0.0001*m.x159*m.x50 + 0.0001*
m.x159*m.x51 + 0.0001*m.x159*m.x52 + 0.0001*m.x159*m.x53 + 0.0001*m.x159*m.x54 + 0.0001*m.x159*
m.x55 + 0.0001*m.x159*m.x56 + 0.0001*m.x159*m.x57 + 0.0001*m.x159*m.x58 + 0.0001*m.x159*m.x59 +
0.0001*m.x159*m.x60 + 0.0001*m.x159*m.x61 + 0.0001*m.x159*m.x62 + 0.0001*m.x159*m.x63 + 0.0001*
m.x159*m.x64 + 0.0001*m.x159*m.x65 + 0.0001*m.x159*m.x66 + 0.0001*m.x159*m.x67 + 0.0001*m.x159*
m.x68 + 0.0001*m.x159*m.x69 + 0.0001*m.x159*m.x70 + 0.0001*m.x159*m.x71 + 0.0001*m.x159*m.x72 +
0.803862866089973*m.x159*m.x73 + 0.0001*m.x159*m.x74 + 0.0001*m.x159*m.x75 + 0.0001*m.x159*m.x76
+ 0.0001*m.x159*m.x77 + 0.0001*m.x159*m.x78 + 0.0001*m.x159*m.x79 + 0.0001*m.x159*m.x80 + 0.0001
*m.x159*m.x81 + 0.0001*m.x159*m.x82 + 0.0001*m.x159*m.x83 + 0.0001*m.x159*m.x84 + 0.0001*m.x159*
m.x85 + 0.0001*m.x159*m.x86 + 0.0001*m.x159*m.x87 + 0.0001*m.x159*m.x88 + 0.0001*m.x159*m.x89 +
0.0001*m.x159*m.x90 + 0.0001*m.x159*m.x91 + 0.0001*m.x159*m.x92 + 0.0001*m.x159*m.x93 + 0.0001*
m.x159*m.x94 + 0.0001*m.x159*m.x95 + 0.0001*m.x159*m.x96 + 0.0001*m.x159*m.x97 + 0.0001*m.x159*
m.x98 + 0.0001*m.x159*m.x99 + 0.0001*m.x159*m.x100 + 0.0001*m.x159*m.x101 + 0.0001*m.x159*m.x102
+ 0.0001*m.x159*m.x103 + 0.0001*m.x159*m.x104 + 0.0001*m.x159*m.x105 + 0.0001*m.x159*m.x106 +
0.0001*m.x159*m.x107 + 0.0001*m.x159*m.x108 + 0.0001*m.x159*m.x109 + 0.0001*m.x159*m.x110 +
0.0001*m.x159*m.x111 + 0.0001*m.x159*m.x112 + 0.0001*m.x159*m.x113 + 0.0001*m.x159*m.x114 +
0.0001*m.x159*m.x115 + 0.0001*m.x159*m.x116 + 0.0001*m.x159*m.x117 + 4.32746339292626*m.x159*
m.x118 + 0.0001*m.x159*m.x119 + 0.0001*m.x159*m.x120 + 0.0001*m.x159*m.x121 + 0.0001*m.x159*
m.x122 + 0.0001*m.x159*m.x123 + 0.0001*m.x159*m.x124 + 0.0001*m.x159*m.x125 + 0.0001*m.x159*
m.x126 + 0.0001*m.x159*m.x127 + 0.0001*m.x159*m.x128 + 0.0001*m.x159*m.x129 + 0.0001*m.x159*
m.x130 + 0.0001*m.x159*m.x131 + 0.0001*m.x159*m.x132 + 0.0001*m.x159*m.x133 + 0.0001*m.x159*
m.x134 + 0.0001*m.x159*m.x135 + 0.0001*m.x159*m.x136 + 0.0001*m.x159*m.x137 + 0.0001*m.x159*
m.x138 + 0.0001*m.x159*m.x139 + 0.0001*m.x159*m.x140 + 0.0001*m.x159*m.x141 + 0.0001*m.x159*
m.x142 + 0.0001*m.x159*m.x143 + 5.64038935568629*m.x159*m.x144 + 0.0001*m.x159*m.x145 + 0.0001*
m.x159*m.x146 + 0.0001*m.x159*m.x147 + 0.0001*m.x159*m.x148 + 0.0001*m.x159*m.x149 + 0.0001*
m.x159*m.x150 + 0.0001*m.x159*m.x151 + 0.0001*m.x159*m.x152 + 0.0001*m.x159*m.x153 + 0.0001*
m.x159*m.x154 + 0.0001*m.x159*m.x155 + 0.0001*m.x159*m.x156 + 0.0001*m.x159*m.x157 + 0.0001*
m.x159*m.x158 + 4.21312681176268*m.x159**2 + 0.0001*m.x159*m.x160 + 0.0001*m.x159*m.x161 + 0.0001
*m.x159*m.x162 + 0.0001*m.x159*m.x163 + 0.0001*m.x159*m.x164 + 0.0001*m.x159*m.x165 + 0.0001*
m.x159*m.x166 + 0.0001*m.x159*m.x167 + 0.0001*m.x159*m.x168 + 0.0001*m.x159*m.x169 + 0.0001*
m.x159*m.x170 + 0.0001*m.x159*m.x171 + 0.0001*m.x159*m.x172 + 0.0001*m.x159*m.x173 + 0.0001*
m.x159*m.x174 + 0.0001*m.x159*m.x175 + 0.0001*m.x159*m.x176 + 0.0001*m.x159*m.x177 + 0.0001*
m.x159*m.x178 + 0.0001*m.x159*m.x179 + 0.0001*m.x159*m.x180 + 0.0001*m.x159*m.x181 + 0.0001*
m.x159*m.x182 + 0.0001*m.x159*m.x183 + 0.0001*m.x159*m.x184 + 0.0001*m.x159*m.x185 + 0.0001*
m.x160*m.x1 + 0.0001*m.x160*m.x2 + 0.0001*m.x160*m.x3 + 0.0001*m.x160*m.x4 + 0.0001*m.x160*m.x5
+ 0.0001*m.x160*m.x6 + 0.0001*m.x160*m.x7 + 0.0001*m.x160*m.x8 + 0.0001*m.x160*m.x9 + 0.0001*
m.x160*m.x10 + 0.0001*m.x160*m.x11 + 0.0001*m.x160*m.x12 + 0.0001*m.x160*m.x13 + 0.0001*m.x160*
m.x14 + 0.0001*m.x160*m.x15 + 0.0001*m.x160*m.x16 + 0.0001*m.x160*m.x17 + 0.0001*m.x160*m.x18 +
0.0001*m.x160*m.x19 + 0.0001*m.x160*m.x20 + 0.0001*m.x160*m.x21 + 0.0001*m.x160*m.x22 + 0.0001*
m.x160*m.x23 + 0.0001*m.x160*m.x24 + 0.0001*m.x160*m.x25 + 0.0001*m.x160*m.x26 + 0.0001*m.x160*
m.x27 + 0.0001*m.x160*m.x28 + 0.0001*m.x160*m.x29 + 0.0001*m.x160*m.x30 + 0.0001*m.x160*m.x31 +
0.0001*m.x160*m.x32 + 0.0001*m.x160*m.x33 + 0.0001*m.x160*m.x34 + 0.0001*m.x160*m.x35 + 0.0001*
m.x160*m.x36 + 0.0001*m.x160*m.x37 + 0.0001*m.x160*m.x38 + 0.0001*m.x160*m.x39 + 0.0001*m.x160*
m.x40 + 0.0001*m.x160*m.x41 + 0.0001*m.x160*m.x42 + 0.0001*m.x160*m.x43 + 0.0001*m.x160*m.x44 +
0.0001*m.x160*m.x45 + 0.0001*m.x160*m.x46 + 0.0001*m.x160*m.x47 + 0.0001*m.x160*m.x48 + 0.0001*
m.x160*m.x49 + 0.0001*m.x160*m.x50 + 0.0001*m.x160*m.x51 + 0.0001*m.x160*m.x52 + 0.0001*m.x160*
m.x53 + 0.0001*m.x160*m.x54 + 0.0001*m.x160*m.x55 + 0.0001*m.x160*m.x56 + 0.0001*m.x160*m.x57 +
0.0001*m.x160*m.x58 + 0.0001*m.x160*m.x59 + 0.0001*m.x160*m.x60 + 0.0001*m.x160*m.x61 + 0.0001*
m.x160*m.x62 + 0.0001*m.x160*m.x63 + 0.0001*m.x160*m.x64 + 0.0001*m.x160*m.x65 + 0.0001*m.x160*
m.x66 + 0.0001*m.x160*m.x67 + 0.0001*m.x160*m.x68 + 0.0001*m.x160*m.x69 + 0.0001*m.x160*m.x70 +
0.0001*m.x160*m.x71 + 0.0001*m.x160*m.x72 + 0.0001*m.x160*m.x73 + 0.707825371164089*m.x160*m.x74
+ 0.0001*m.x160*m.x75 + 0.0001*m.x160*m.x76 + 0.0001*m.x160*m.x77 + 0.0001*m.x160*m.x78 + 0.0001
*m.x160*m.x79 + 0.0001*m.x160*m.x80 + 0.0001*m.x160*m.x81 + 0.0001*m.x160*m.x82 + 0.0001*m.x160*
m.x83 + 0.0001*m.x160*m.x84 + 0.0001*m.x160*m.x85 + 0.0001*m.x160*m.x86 + 0.0001*m.x160*m.x87 +
0.0001*m.x160*m.x88 + 0.0001*m.x160*m.x89 + 0.0001*m.x160*m.x90 + 0.0001*m.x160*m.x91 + 0.0001*
m.x160*m.x92 + 0.0001*m.x160*m.x93 + 0.0001*m.x160*m.x94 + 0.0001*m.x160*m.x95 + 0.0001*m.x160*
m.x96 + 0.0001*m.x160*m.x97 + 0.0001*m.x160*m.x98 + 0.0001*m.x160*m.x99 + 0.0001*m.x160*m.x100 +
0.0001*m.x160*m.x101 + 0.0001*m.x160*m.x102 + 0.0001*m.x160*m.x103 + 0.0001*m.x160*m.x104 +
0.0001*m.x160*m.x105 + 0.0001*m.x160*m.x106 + 0.0001*m.x160*m.x107 + 0.0001*m.x160*m.x108 +
0.0001*m.x160*m.x109 + 0.0001*m.x160*m.x110 + 0.0001*m.x160*m.x111 + 0.0001*m.x160*m.x112 +
0.0001*m.x160*m.x113 + 0.0001*m.x160*m.x114 + 0.0001*m.x160*m.x115 + 0.0001*m.x160*m.x116 +
0.0001*m.x160*m.x117 + 0.0001*m.x160*m.x118 + 3.80901503232404*m.x160*m.x119 + 0.0001*m.x160*
m.x120 + 0.0001*m.x160*m.x121 + 0.0001*m.x160*m.x122 + 0.0001*m.x160*m.x123 + 0.0001*m.x160*
m.x124 + 0.0001*m.x160*m.x125 + 0.0001*m.x160*m.x126 + 0.0001*m.x160*m.x127 + 0.0001*m.x160*
m.x128 + 0.0001*m.x160*m.x129 + 0.0001*m.x160*m.x130 + 0.0001*m.x160*m.x131 + 0.0001*m.x160*
m.x132 + 0.0001*m.x160*m.x133 + 0.0001*m.x160*m.x134 + 0.0001*m.x160*m.x135 + 0.0001*m.x160*
m.x136 + 0.0001*m.x160*m.x137 + 0.0001*m.x160*m.x138 + 0.0001*m.x160*m.x139 + 0.0001*m.x160*
m.x140 + 0.0001*m.x160*m.x141 + 0.0001*m.x160*m.x142 + 0.0001*m.x160*m.x143 + 0.0001*m.x160*
m.x144 + 6.16722574049717*m.x160*m.x145 + 0.0001*m.x160*m.x146 + 0.0001*m.x160*m.x147 + 0.0001*
m.x160*m.x148 + 0.0001*m.x160*m.x149 + 0.0001*m.x160*m.x150 + 0.0001*m.x160*m.x151 + 0.0001*
m.x160*m.x152 + 0.0001*m.x160*m.x153 + 0.0001*m.x160*m.x154 + 0.0001*m.x160*m.x155 + 0.0001*
m.x160*m.x156 + 0.0001*m.x160*m.x157 + 0.0001*m.x160*m.x158 + 0.0001*m.x160*m.x159 +
3.71301165906068*m.x160**2 + 0.0001*m.x160*m.x161 + 0.0001*m.x160*m.x162 + 0.0001*m.x160*m.x163
+ 0.0001*m.x160*m.x164 + 0.0001*m.x160*m.x165 + 0.0001*m.x160*m.x166 + 0.0001*m.x160*m.x167 +
0.0001*m.x160*m.x168 + 0.0001*m.x160*m.x169 + 0.0001*m.x160*m.x170 + 0.0001*m.x160*m.x171 +
0.0001*m.x160*m.x172 + 0.0001*m.x160*m.x173 + 0.0001*m.x160*m.x174 + 0.0001*m.x160*m.x175 +
0.0001*m.x160*m.x176 + 0.0001*m.x160*m.x177 + 0.0001*m.x160*m.x178 + 0.0001*m.x160*m.x179 +
0.0001*m.x160*m.x180 + 0.0001*m.x160*m.x181 + 0.0001*m.x160*m.x182 + 0.0001*m.x160*m.x183 +
0.0001*m.x160*m.x184 + 0.0001*m.x160*m.x185 + 0.0001*m.x161*m.x1 + 0.0001*m.x161*m.x2 + 0.0001*
m.x161*m.x3 + 0.0001*m.x161*m.x4 + 0.0001*m.x161*m.x5 + 0.0001*m.x161*m.x6 + 0.0001*m.x161*m.x7
+ 0.0001*m.x161*m.x8 + 0.0001*m.x161*m.x9 + 0.0001*m.x161*m.x10 + 0.0001*m.x161*m.x11 + 0.0001*
m.x161*m.x12 + 0.0001*m.x161*m.x13 + 0.0001*m.x161*m.x14 + 0.0001*m.x161*m.x15 + 0.0001*m.x161*
m.x16 + 0.0001*m.x161*m.x17 + 0.0001*m.x161*m.x18 + 0.0001*m.x161*m.x19 + 0.0001*m.x161*m.x20 +
0.0001*m.x161*m.x21 + 0.0001*m.x161*m.x22 + 0.0001*m.x161*m.x23 + 0.0001*m.x161*m.x24 + 0.0001*
m.x161*m.x25 + 0.0001*m.x161*m.x26 + 0.0001*m.x161*m.x27 + 0.0001*m.x161*m.x28 + 0.0001*m.x161*
m.x29 + 0.0001*m.x161*m.x30 + 0.0001*m.x161*m.x31 + 0.0001*m.x161*m.x32 + 0.0001*m.x161*m.x33 +
0.0001*m.x161*m.x34 + 0.0001*m.x161*m.x35 + 0.0001*m.x161*m.x36 + 0.0001*m.x161*m.x37 + 0.0001*
m.x161*m.x38 + 0.0001*m.x161*m.x39 + 0.0001*m.x161*m.x40 + 0.0001*m.x161*m.x41 + 0.0001*m.x161*
m.x42 + 0.0001*m.x161*m.x43 + 0.0001*m.x161*m.x44 + 0.0001*m.x161*m.x45 + 0.0001*m.x161*m.x46 +
0.0001*m.x161*m.x47 + 0.0001*m.x161*m.x48 + 0.0001*m.x161*m.x49 + 0.0001*m.x161*m.x50 + 0.0001*
m.x161*m.x51 + 0.0001*m.x161*m.x52 + 0.0001*m.x161*m.x53 + 0.0001*m.x161*m.x54 + 0.0001*m.x161*
m.x55 + 0.0001*m.x161*m.x56 + 0.0001*m.x161*m.x57 + 0.0001*m.x161*m.x58 + 0.0001*m.x161*m.x59 +
0.0001*m.x161*m.x60 + 0.0001*m.x161*m.x61 + 0.0001*m.x161*m.x62 + 0.0001*m.x161*m.x63 + 0.0001*
m.x161*m.x64 + 0.0001*m.x161*m.x65 + 0.0001*m.x161*m.x66 + 0.0001*m.x161*m.x67 + 0.0001*m.x161*
m.x68 + 0.0001*m.x161*m.x69 + 0.0001*m.x161*m.x70 + 0.0001*m.x161*m.x71 + 0.0001*m.x161*m.x72 +
0.0001*m.x161*m.x73 + 0.0001*m.x161*m.x74 + 0.70518890429601*m.x161*m.x75 + 0.0001*m.x161*m.x76
+ 0.0001*m.x161*m.x77 + 0.0001*m.x161*m.x78 + 0.0001*m.x161*m.x79 + 0.0001*m.x161*m.x80 + 0.0001
*m.x161*m.x81 + 0.0001*m.x161*m.x82 + 0.0001*m.x161*m.x83 + 0.0001*m.x161*m.x84 + 0.0001*m.x161*
m.x85 + 0.0001*m.x161*m.x86 + 0.0001*m.x161*m.x87 + 0.0001*m.x161*m.x88 + 0.0001*m.x161*m.x89 +
0.0001*m.x161*m.x90 + 0.0001*m.x161*m.x91 + 0.0001*m.x161*m.x92 + 0.0001*m.x161*m.x93 + 0.0001*
m.x161*m.x94 + 0.0001*m.x161*m.x95 + 0.0001*m.x161*m.x96 + 0.0001*m.x161*m.x97 + 0.0001*m.x161*
m.x98 + 0.0001*m.x161*m.x99 + 0.0001*m.x161*m.x100 + 0.0001*m.x161*m.x101 + 0.0001*m.x161*m.x102
+ 0.0001*m.x161*m.x103 + 0.0001*m.x161*m.x104 + 0.0001*m.x161*m.x105 + 0.0001*m.x161*m.x106 +
0.0001*m.x161*m.x107 + 0.0001*m.x161*m.x108 + 0.0001*m.x161*m.x109 + 0.0001*m.x161*m.x110 +
0.0001*m.x161*m.x111 + 0.0001*m.x161*m.x112 + 0.0001*m.x161*m.x113 + 0.0001*m.x161*m.x114 +
0.0001*m.x161*m.x115 + 0.0001*m.x161*m.x116 + 0.0001*m.x161*m.x117 + 0.0001*m.x161*m.x118 +
0.0001*m.x161*m.x119 + 3.41170115969337*m.x161*m.x120 + 0.0001*m.x161*m.x121 + 0.0001*m.x161*
m.x122 + 0.0001*m.x161*m.x123 + 0.0001*m.x161*m.x124 + 0.0001*m.x161*m.x125 + 0.0001*m.x161*
m.x126 + 0.0001*m.x161*m.x127 + 0.0001*m.x161*m.x128 + 0.0001*m.x161*m.x129 + 0.0001*m.x161*
m.x130 + 0.0001*m.x161*m.x131 + 0.0001*m.x161*m.x132 + 0.0001*m.x161*m.x133 + 0.0001*m.x161*
m.x134 + 0.0001*m.x161*m.x135 + 0.0001*m.x161*m.x136 + 0.0001*m.x161*m.x137 + 0.0001*m.x161*
m.x138 + 0.0001*m.x161*m.x139 + 0.0001*m.x161*m.x140 + 0.0001*m.x161*m.x141 + 0.0001*m.x161*
m.x142 + 0.0001*m.x161*m.x143 + 0.0001*m.x161*m.x144 + 0.0001*m.x161*m.x145 + 5.52392322779655*
m.x161*m.x146 + 0.0001*m.x161*m.x147 + 0.0001*m.x161*m.x148 + 0.0001*m.x161*m.x149 + 0.0001*
m.x161*m.x150 + 0.0001*m.x161*m.x151 + 0.0001*m.x161*m.x152 + 0.0001*m.x161*m.x153 + 0.0001*
m.x161*m.x154 + 0.0001*m.x161*m.x155 + 0.0001*m.x161*m.x156 + 0.0001*m.x161*m.x157 + 0.0001*
m.x161*m.x158 + 0.0001*m.x161*m.x159 + 0.0001*m.x161*m.x160 + 2.97881226422415*m.x161**2 + 0.0001
*m.x161*m.x162 + 0.0001*m.x161*m.x163 + 0.0001*m.x161*m.x164 + 0.0001*m.x161*m.x165 + 0.0001*
m.x161*m.x166 + 0.0001*m.x161*m.x167 + 0.0001*m.x161*m.x168 + 0.0001*m.x161*m.x169 + 0.0001*
m.x161*m.x170 + 0.0001*m.x161*m.x171 + 0.0001*m.x161*m.x172 + 0.0001*m.x161*m.x173 + 0.0001*
m.x161*m.x174 + 0.0001*m.x161*m.x175 + 0.0001*m.x161*m.x176 + 0.0001*m.x161*m.x177 + 0.0001*
m.x161*m.x178 + 0.0001*m.x161*m.x179 + 0.0001*m.x161*m.x180 + 0.0001*m.x161*m.x181 + 0.0001*
m.x161*m.x182 + 0.0001*m.x161*m.x183 + 0.0001*m.x161*m.x184 + 0.0001*m.x161*m.x185 + 0.0001*
m.x162*m.x1 + 0.0001*m.x162*m.x2 + 0.0001*m.x162*m.x3 + 0.0001*m.x162*m.x4 + 0.0001*m.x162*m.x5
+ 0.0001*m.x162*m.x6 + 0.0001*m.x162*m.x7 + 0.0001*m.x162*m.x8 + 0.0001*m.x162*m.x9 + 0.0001*
m.x162*m.x10 + 0.0001*m.x162*m.x11 + 0.0001*m.x162*m.x12 + 0.0001*m.x162*m.x13 + 0.0001*m.x162*
m.x14 + 0.0001*m.x162*m.x15 + 0.0001*m.x162*m.x16 + 0.0001*m.x162*m.x17 + 0.0001*m.x162*m.x18 +
0.0001*m.x162*m.x19 + 0.0001*m.x162*m.x20 + 0.0001*m.x162*m.x21 + 0.0001*m.x162*m.x22 + 0.0001*
m.x162*m.x23 + 0.0001*m.x162*m.x24 + 0.0001*m.x162*m.x25 + 0.0001*m.x162*m.x26 + 0.0001*m.x162*
m.x27 + 0.0001*m.x162*m.x28 + 0.0001*m.x162*m.x29 + 0.0001*m.x162*m.x30 + 0.0001*m.x162*m.x31 +
0.0001*m.x162*m.x32 + 0.0001*m.x162*m.x33 + 0.0001*m.x162*m.x34 + 0.0001*m.x162*m.x35 + 0.0001*
m.x162*m.x36 + 0.0001*m.x162*m.x37 + 0.0001*m.x162*m.x38 + 0.0001*m.x162*m.x39 + 0.0001*m.x162*
m.x40 + 0.0001*m.x162*m.x41 + 0.0001*m.x162*m.x42 + 0.0001*m.x162*m.x43 + 0.0001*m.x162*m.x44 +
0.0001*m.x162*m.x45 + 0.0001*m.x162*m.x46 + 0.0001*m.x162*m.x47 + 0.0001*m.x162*m.x48 + 0.0001*
m.x162*m.x49 + 0.0001*m.x162*m.x50 + 0.0001*m.x162*m.x51 + 0.0001*m.x162*m.x52 + 0.0001*m.x162*
m.x53 + 0.0001*m.x162*m.x54 + 0.0001*m.x162*m.x55 + 0.0001*m.x162*m.x56 + 0.0001*m.x162*m.x57 +
0.0001*m.x162*m.x58 + 0.0001*m.x162*m.x59 + 0.0001*m.x162*m.x60 + 0.0001*m.x162*m.x61 + 0.0001*
m.x162*m.x62 + 0.0001*m.x162*m.x63 + 0.0001*m.x162*m.x64 + 0.0001*m.x162*m.x65 + 0.0001*m.x162*
m.x66 + 0.0001*m.x162*m.x67 + 0.0001*m.x162*m.x68 + 0.0001*m.x162*m.x69 + 0.0001*m.x162*m.x70 +
0.0001*m.x162*m.x71 + 0.0001*m.x162*m.x72 + 0.0001*m.x162*m.x73 + 0.0001*m.x162*m.x74 + 0.0001*
m.x162*m.x75 + 0.763965431364781*m.x162*m.x76 + 0.0001*m.x162*m.x77 + 0.0001*m.x162*m.x78 +
0.0001*m.x162*m.x79 + 0.0001*m.x162*m.x80 + 0.0001*m.x162*m.x81 + 0.0001*m.x162*m.x82 + 0.0001*
m.x162*m.x83 + 0.0001*m.x162*m.x84 + 0.0001*m.x162*m.x85 + 0.0001*m.x162*m.x86 + 0.0001*m.x162*
m.x87 + 0.0001*m.x162*m.x88 + 0.0001*m.x162*m.x89 + 0.0001*m.x162*m.x90 + 0.0001*m.x162*m.x91 +
0.0001*m.x162*m.x92 + 0.0001*m.x162*m.x93 + 0.0001*m.x162*m.x94 + 0.0001*m.x162*m.x95 + 0.0001*
m.x162*m.x96 + 0.0001*m.x162*m.x97 + 0.0001*m.x162*m.x98 + 0.0001*m.x162*m.x99 + 0.0001*m.x162*
m.x100 + 0.0001*m.x162*m.x101 + 0.0001*m.x162*m.x102 + 0.0001*m.x162*m.x103 + 0.0001*m.x162*
m.x104 + 0.0001*m.x162*m.x105 + 0.0001*m.x162*m.x106 + 0.0001*m.x162*m.x107 + 0.0001*m.x162*
m.x108 + 0.0001*m.x162*m.x109 + 0.0001*m.x162*m.x110 + 0.0001*m.x162*m.x111 + 0.0001*m.x162*
m.x112 + 0.0001*m.x162*m.x113 + 0.0001*m.x162*m.x114 + 0.0001*m.x162*m.x115 + 0.0001*m.x162*
m.x116 + 0.0001*m.x162*m.x117 + 0.0001*m.x162*m.x118 + 0.0001*m.x162*m.x119 + 0.0001*m.x162*
m.x120 + 3.69609376137639*m.x162*m.x121 + 0.0001*m.x162*m.x122 + 0.0001*m.x162*m.x123 + 0.0001*
m.x162*m.x124 + 0.0001*m.x162*m.x125 + 0.0001*m.x162*m.x126 + 0.0001*m.x162*m.x127 + 0.0001*
m.x162*m.x128 + 0.0001*m.x162*m.x129 + 0.0001*m.x162*m.x130 + 0.0001*m.x162*m.x131 + 0.0001*
m.x162*m.x132 + 0.0001*m.x162*m.x133 + 0.0001*m.x162*m.x134 + 0.0001*m.x162*m.x135 + 0.0001*
m.x162*m.x136 + 0.0001*m.x162*m.x137 + 0.0001*m.x162*m.x138 + 0.0001*m.x162*m.x139 + 0.0001*
m.x162*m.x140 + 0.0001*m.x162*m.x141 + 0.0001*m.x162*m.x142 + 0.0001*m.x162*m.x143 + 0.0001*
m.x162*m.x144 + 0.0001*m.x162*m.x145 + 0.0001*m.x162*m.x146 + 6.01202148404445*m.x162*m.x147 +
0.0001*m.x162*m.x148 + 0.0001*m.x162*m.x149 + 0.0001*m.x162*m.x150 + 0.0001*m.x162*m.x151 +
0.0001*m.x162*m.x152 + 0.0001*m.x162*m.x153 + 0.0001*m.x162*m.x154 + 0.0001*m.x162*m.x155 +
0.0001*m.x162*m.x156 + 0.0001*m.x162*m.x157 + 0.0001*m.x162*m.x158 + 0.0001*m.x162*m.x159 +
0.0001*m.x162*m.x160 + 0.0001*m.x162*m.x161 + 3.22711905356876*m.x162**2 + 0.0001*m.x162*m.x163
+ 0.0001*m.x162*m.x164 + 0.0001*m.x162*m.x165 + 0.0001*m.x162*m.x166 + 0.0001*m.x162*m.x167 +
0.0001*m.x162*m.x168 + 0.0001*m.x162*m.x169 + 0.0001*m.x162*m.x170 + 0.0001*m.x162*m.x171 +
0.0001*m.x162*m.x172 + 0.0001*m.x162*m.x173 + 0.0001*m.x162*m.x174 + 0.0001*m.x162*m.x175 +
0.0001*m.x162*m.x176 + 0.0001*m.x162*m.x177 + 0.0001*m.x162*m.x178 + 0.0001*m.x162*m.x179 +
0.0001*m.x162*m.x180 + 0.0001*m.x162*m.x181 + 0.0001*m.x162*m.x182 + 0.0001*m.x162*m.x183 +
0.0001*m.x162*m.x184 + 0.0001*m.x162*m.x185 + 0.0001*m.x163*m.x1 + 0.0001*m.x163*m.x2 + 0.0001*
m.x163*m.x3 + 0.0001*m.x163*m.x4 + 0.0001*m.x163*m.x5 + 0.0001*m.x163*m.x6 + 0.0001*m.x163*m.x7
+ 0.0001*m.x163*m.x8 + 0.0001*m.x163*m.x9 + 0.0001*m.x163*m.x10 + 0.0001*m.x163*m.x11 + 0.0001*
m.x163*m.x12 + 0.0001*m.x163*m.x13 + 0.0001*m.x163*m.x14 + 0.0001*m.x163*m.x15 + 0.0001*m.x163*
m.x16 + 0.0001*m.x163*m.x17 + 0.0001*m.x163*m.x18 + 0.0001*m.x163*m.x19 + 0.0001*m.x163*m.x20 +
0.0001*m.x163*m.x21 + 0.0001*m.x163*m.x22 + 0.0001*m.x163*m.x23 + 0.0001*m.x163*m.x24 + 0.0001*
m.x163*m.x25 + 0.0001*m.x163*m.x26 + 0.0001*m.x163*m.x27 + 0.0001*m.x163*m.x28 + 0.0001*m.x163*
m.x29 + 0.0001*m.x163*m.x30 + 0.0001*m.x163*m.x31 + 0.0001*m.x163*m.x32 + 0.0001*m.x163*m.x33 +
0.0001*m.x163*m.x34 + 0.0001*m.x163*m.x35 + 0.0001*m.x163*m.x36 + 0.0001*m.x163*m.x37 + 0.0001*
m.x163*m.x38 + 0.0001*m.x163*m.x39 + 0.0001*m.x163*m.x40 + 0.0001*m.x163*m.x41 + 0.0001*m.x163*
m.x42 + 0.0001*m.x163*m.x43 + 0.0001*m.x163*m.x44 + 0.0001*m.x163*m.x45 + 0.0001*m.x163*m.x46 +
0.0001*m.x163*m.x47 + 0.0001*m.x163*m.x48 + 0.0001*m.x163*m.x49 + 0.0001*m.x163*m.x50 + 0.0001*
m.x163*m.x51 + 0.0001*m.x163*m.x52 + 0.0001*m.x163*m.x53 + 0.0001*m.x163*m.x54 + 0.0001*m.x163*
m.x55 + 0.0001*m.x163*m.x56 + 0.0001*m.x163*m.x57 + 0.0001*m.x163*m.x58 + 0.0001*m.x163*m.x59 +
0.0001*m.x163*m.x60 + 0.0001*m.x163*m.x61 + 0.0001*m.x163*m.x62 + 0.0001*m.x163*m.x63 + 0.0001*
m.x163*m.x64 + 0.0001*m.x163*m.x65 + 0.0001*m.x163*m.x66 + 0.0001*m.x163*m.x67 + 0.0001*m.x163*
m.x68 + 0.0001*m.x163*m.x69 + 0.0001*m.x163*m.x70 + 0.0001*m.x163*m.x71 + 0.0001*m.x163*m.x72 +
0.0001*m.x163*m.x73 + 0.0001*m.x163*m.x74 + 0.0001*m.x163*m.x75 + 0.0001*m.x163*m.x76 +
0.847177128279277*m.x163*m.x77 + 0.0001*m.x163*m.x78 + 0.0001*m.x163*m.x79 + 0.0001*m.x163*m.x80
+ 0.0001*m.x163*m.x81 + 0.0001*m.x163*m.x82 + 0.0001*m.x163*m.x83 + 0.0001*m.x163*m.x84 + 0.0001
*m.x163*m.x85 + 0.0001*m.x163*m.x86 + 0.0001*m.x163*m.x87 + 0.0001*m.x163*m.x88 + 0.0001*m.x163*
m.x89 + 0.0001*m.x163*m.x90 + 0.0001*m.x163*m.x91 + 0.0001*m.x163*m.x92 + 0.0001*m.x163*m.x93 +
0.0001*m.x163*m.x94 + 0.0001*m.x163*m.x95 + 0.0001*m.x163*m.x96 + 0.0001*m.x163*m.x97 + 0.0001*
m.x163*m.x98 + 0.0001*m.x163*m.x99 + 0.0001*m.x163*m.x100 + 0.0001*m.x163*m.x101 + 0.0001*m.x163*
m.x102 + 0.0001*m.x163*m.x103 + 0.0001*m.x163*m.x104 + 0.0001*m.x163*m.x105 + 0.0001*m.x163*
m.x106 + 0.0001*m.x163*m.x107 + 0.0001*m.x163*m.x108 + 0.0001*m.x163*m.x109 + 0.0001*m.x163*
m.x110 + 0.0001*m.x163*m.x111 + 0.0001*m.x163*m.x112 + 0.0001*m.x163*m.x113 + 0.0001*m.x163*
m.x114 + 0.0001*m.x163*m.x115 + 0.0001*m.x163*m.x116 + 0.0001*m.x163*m.x117 + 0.0001*m.x163*
m.x118 + 0.0001*m.x163*m.x119 + 0.0001*m.x163*m.x120 + 0.0001*m.x163*m.x121 + 3.89841915597365*
m.x163*m.x122 + 0.0001*m.x163*m.x123 + 0.0001*m.x163*m.x124 + 0.0001*m.x163*m.x125 + 0.0001*
m.x163*m.x126 + 0.0001*m.x163*m.x127 + 0.0001*m.x163*m.x128 + 0.0001*m.x163*m.x129 + 0.0001*
m.x163*m.x130 + 0.0001*m.x163*m.x131 + 0.0001*m.x163*m.x132 + 0.0001*m.x163*m.x133 + 0.0001*
m.x163*m.x134 + 0.0001*m.x163*m.x135 + 0.0001*m.x163*m.x136 + 0.0001*m.x163*m.x137 + 0.0001*
m.x163*m.x138 + 0.0001*m.x163*m.x139 + 0.0001*m.x163*m.x140 + 0.0001*m.x163*m.x141 + 0.0001*
m.x163*m.x142 + 0.0001*m.x163*m.x143 + 0.0001*m.x163*m.x144 + 0.0001*m.x163*m.x145 + 0.0001*
m.x163*m.x146 + 0.0001*m.x163*m.x147 + 5.5395442897713*m.x163*m.x148 + 0.0001*m.x163*m.x149 +
0.0001*m.x163*m.x150 + 0.0001*m.x163*m.x151 + 0.0001*m.x163*m.x152 + 0.0001*m.x163*m.x153 +
0.0001*m.x163*m.x154 + 0.0001*m.x163*m.x155 + 0.0001*m.x163*m.x156 + 0.0001*m.x163*m.x157 +
0.0001*m.x163*m.x158 + 0.0001*m.x163*m.x159 + 0.0001*m.x163*m.x160 + 0.0001*m.x163*m.x161 +
0.0001*m.x163*m.x162 + 3.61073138893024*m.x163**2 + 0.0001*m.x163*m.x164 + 0.0001*m.x163*m.x165
+ 0.0001*m.x163*m.x166 + 0.0001*m.x163*m.x167 + 0.0001*m.x163*m.x168 + 0.0001*m.x163*m.x169 +
0.0001*m.x163*m.x170 + 0.0001*m.x163*m.x171 + 0.0001*m.x163*m.x172 + 0.0001*m.x163*m.x173 +
0.0001*m.x163*m.x174 + 0.0001*m.x163*m.x175 + 0.0001*m.x163*m.x176 + 0.0001*m.x163*m.x177 +
0.0001*m.x163*m.x178 + 0.0001*m.x163*m.x179 + 0.0001*m.x163*m.x180 + 0.0001*m.x163*m.x181 +
0.0001*m.x163*m.x182 + 0.0001*m.x163*m.x183 + 0.0001*m.x163*m.x184 + 0.0001*m.x163*m.x185 +
0.0001*m.x164*m.x1 + 0.0001*m.x164*m.x2 + 0.0001*m.x164*m.x3 + 0.0001*m.x164*m.x4 + 0.0001*m.x164
*m.x5 + 0.0001*m.x164*m.x6 + 0.0001*m.x164*m.x7 + 0.0001*m.x164*m.x8 + 0.0001*m.x164*m.x9 +
0.0001*m.x164*m.x10 + 0.0001*m.x164*m.x11 + 0.0001*m.x164*m.x12 + 0.0001*m.x164*m.x13 + 0.0001*
m.x164*m.x14 + 0.0001*m.x164*m.x15 + 0.0001*m.x164*m.x16 + 0.0001*m.x164*m.x17 + 0.0001*m.x164*
m.x18 + 0.0001*m.x164*m.x19 + 0.0001*m.x164*m.x20 + 0.0001*m.x164*m.x21 + 0.0001*m.x164*m.x22 +
0.0001*m.x164*m.x23 + 0.0001*m.x164*m.x24 + 0.0001*m.x164*m.x25 + 0.0001*m.x164*m.x26 + 0.0001*
m.x164*m.x27 + 0.0001*m.x164*m.x28 + 0.0001*m.x164*m.x29 + 0.0001*m.x164*m.x30 + 0.0001*m.x164*
m.x31 + 0.0001*m.x164*m.x32 + 0.0001*m.x164*m.x33 + 0.0001*m.x164*m.x34 + 0.0001*m.x164*m.x35 +
0.0001*m.x164*m.x36 + 0.0001*m.x164*m.x37 + 0.0001*m.x164*m.x38 + 0.0001*m.x164*m.x39 + 0.0001*
m.x164*m.x40 + 0.0001*m.x164*m.x41 + 0.0001*m.x164*m.x42 + 0.0001*m.x164*m.x43 + 0.0001*m.x164*
m.x44 + 0.0001*m.x164*m.x45 + 0.0001*m.x164*m.x46 + 0.0001*m.x164*m.x47 + 0.0001*m.x164*m.x48 +
0.0001*m.x164*m.x49 + 0.0001*m.x164*m.x50 + 0.0001*m.x164*m.x51 + 0.0001*m.x164*m.x52 + 0.0001*
m.x164*m.x53 + 0.0001*m.x164*m.x54 + 0.0001*m.x164*m.x55 + 0.0001*m.x164*m.x56 + 0.0001*m.x164*
m.x57 + 0.0001*m.x164*m.x58 + 0.0001*m.x164*m.x59 + 0.0001*m.x164*m.x60 + 0.0001*m.x164*m.x61 +
0.0001*m.x164*m.x62 + 0.0001*m.x164*m.x63 + 0.0001*m.x164*m.x64 + 0.0001*m.x164*m.x65 + 0.0001*
m.x164*m.x66 + 0.0001*m.x164*m.x67 + 0.0001*m.x164*m.x68 + 0.0001*m.x164*m.x69 + 0.0001*m.x164*
m.x70 + 0.0001*m.x164*m.x71 + 0.0001*m.x164*m.x72 + 0.0001*m.x164*m.x73 + 0.0001*m.x164*m.x74 +
0.0001*m.x164*m.x75 + 0.0001*m.x164*m.x76 + 0.0001*m.x164*m.x77 + 0.823380777001311*m.x164*m.x78
+ 0.0001*m.x164*m.x79 + 0.0001*m.x164*m.x80 + 0.0001*m.x164*m.x81 + 0.0001*m.x164*m.x82 + 0.0001
*m.x164*m.x83 + 0.0001*m.x164*m.x84 + 0.0001*m.x164*m.x85 + 0.0001*m.x164*m.x86 + 0.0001*m.x164*
m.x87 + 0.0001*m.x164*m.x88 + 0.0001*m.x164*m.x89 + 0.0001*m.x164*m.x90 + 0.0001*m.x164*m.x91 +
0.0001*m.x164*m.x92 + 0.0001*m.x164*m.x93 + 0.0001*m.x164*m.x94 + 0.0001*m.x164*m.x95 + 0.0001*
m.x164*m.x96 + 0.0001*m.x164*m.x97 + 0.0001*m.x164*m.x98 + 0.0001*m.x164*m.x99 + 0.0001*m.x164*
m.x100 + 0.0001*m.x164*m.x101 + 0.0001*m.x164*m.x102 + 0.0001*m.x164*m.x103 + 0.0001*m.x164*
m.x104 + 0.0001*m.x164*m.x105 + 0.0001*m.x164*m.x106 + 0.0001*m.x164*m.x107 + 0.0001*m.x164*
m.x108 + 0.0001*m.x164*m.x109 + 0.0001*m.x164*m.x110 + 0.0001*m.x164*m.x111 + 0.0001*m.x164*
m.x112 + 0.0001*m.x164*m.x113 + 0.0001*m.x164*m.x114 + 0.0001*m.x164*m.x115 + 0.0001*m.x164*
m.x116 + 0.0001*m.x164*m.x117 + 0.0001*m.x164*m.x118 + 0.0001*m.x164*m.x119 + 0.0001*m.x164*
m.x120 + 0.0001*m.x164*m.x121 + 0.0001*m.x164*m.x122 + 4.06514255983911*m.x164*m.x123 + 0.0001*
m.x164*m.x124 + 0.0001*m.x164*m.x125 + 0.0001*m.x164*m.x126 + 0.0001*m.x164*m.x127 + 0.0001*
m.x164*m.x128 + 0.0001*m.x164*m.x129 + 0.0001*m.x164*m.x130 + 0.0001*m.x164*m.x131 + 0.0001*
m.x164*m.x132 + 0.0001*m.x164*m.x133 + 0.0001*m.x164*m.x134 + 0.0001*m.x164*m.x135 + 0.0001*
m.x164*m.x136 + 0.0001*m.x164*m.x137 + 0.0001*m.x164*m.x138 + 0.0001*m.x164*m.x139 + 0.0001*
m.x164*m.x140 + 0.0001*m.x164*m.x141 + 0.0001*m.x164*m.x142 + 0.0001*m.x164*m.x143 + 0.0001*
m.x164*m.x144 + 0.0001*m.x164*m.x145 + 0.0001*m.x164*m.x146 + 0.0001*m.x164*m.x147 + 0.0001*
m.x164*m.x148 + 5.9608785151742*m.x164*m.x149 + 0.0001*m.x164*m.x150 + 0.0001*m.x164*m.x151 +
0.0001*m.x164*m.x152 + 0.0001*m.x164*m.x153 + 0.0001*m.x164*m.x154 + 0.0001*m.x164*m.x155 +
0.0001*m.x164*m.x156 + 0.0001*m.x164*m.x157 + 0.0001*m.x164*m.x158 + 0.0001*m.x164*m.x159 +
0.0001*m.x164*m.x160 + 0.0001*m.x164*m.x161 + 0.0001*m.x164*m.x162 + 0.0001*m.x164*m.x163 +
4.05152351315289*m.x164**2 + 0.0001*m.x164*m.x165 + 0.0001*m.x164*m.x166 + 0.0001*m.x164*m.x167
+ 0.0001*m.x164*m.x168 + 0.0001*m.x164*m.x169 + 0.0001*m.x164*m.x170 + 0.0001*m.x164*m.x171 +
0.0001*m.x164*m.x172 + 0.0001*m.x164*m.x173 + 0.0001*m.x164*m.x174 + 0.0001*m.x164*m.x175 +
0.0001*m.x164*m.x176 + 0.0001*m.x164*m.x177 + 0.0001*m.x164*m.x178 + 0.0001*m.x164*m.x179 +
0.0001*m.x164*m.x180 + 0.0001*m.x164*m.x181 + 0.0001*m.x164*m.x182 + 0.0001*m.x164*m.x183 +
0.0001*m.x164*m.x184 + 0.0001*m.x164*m.x185 + 0.0001*m.x165*m.x1 + 0.0001*m.x165*m.x2 + 0.0001*
m.x165*m.x3 + 0.0001*m.x165*m.x4 + 0.0001*m.x165*m.x5 + 0.0001*m.x165*m.x6 + 0.0001*m.x165*m.x7
+ 0.0001*m.x165*m.x8 + 0.0001*m.x165*m.x9 + 0.0001*m.x165*m.x10 + 0.0001*m.x165*m.x11 + 0.0001*
m.x165*m.x12 + 0.0001*m.x165*m.x13 + 0.0001*m.x165*m.x14 + 0.0001*m.x165*m.x15 + 0.0001*m.x165*
m.x16 + 0.0001*m.x165*m.x17 + 0.0001*m.x165*m.x18 + 0.0001*m.x165*m.x19 + 0.0001*m.x165*m.x20 +
0.0001*m.x165*m.x21 + 0.0001*m.x165*m.x22 + 0.0001*m.x165*m.x23 + 0.0001*m.x165*m.x24 + 0.0001*
m.x165*m.x25 + 0.0001*m.x165*m.x26 + 0.0001*m.x165*m.x27 + 0.0001*m.x165*m.x28 + 0.0001*m.x165*
m.x29 + 0.0001*m.x165*m.x30 + 0.0001*m.x165*m.x31 + 0.0001*m.x165*m.x32 + 0.0001*m.x165*m.x33 +
0.0001*m.x165*m.x34 + 0.0001*m.x165*m.x35 + 0.0001*m.x165*m.x36 + 0.0001*m.x165*m.x37 + 0.0001*
m.x165*m.x38 + 0.0001*m.x165*m.x39 + 0.0001*m.x165*m.x40 + 0.0001*m.x165*m.x41 + 0.0001*m.x165*
m.x42 + 0.0001*m.x165*m.x43 + 0.0001*m.x165*m.x44 + 0.0001*m.x165*m.x45 + 0.0001*m.x165*m.x46 +
0.0001*m.x165*m.x47 + 0.0001*m.x165*m.x48 + 0.0001*m.x165*m.x49 + 0.0001*m.x165*m.x50 + 0.0001*
m.x165*m.x51 + 0.0001*m.x165*m.x52 + 0.0001*m.x165*m.x53 + 0.0001*m.x165*m.x54 + 0.0001*m.x165*
m.x55 + 0.0001*m.x165*m.x56 + 0.0001*m.x165*m.x57 + 0.0001*m.x165*m.x58 + 0.0001*m.x165*m.x59 +
0.0001*m.x165*m.x60 + 0.0001*m.x165*m.x61 + 0.0001*m.x165*m.x62 + 0.0001*m.x165*m.x63 + 0.0001*
m.x165*m.x64 + 0.0001*m.x165*m.x65 + 0.0001*m.x165*m.x66 + 0.0001*m.x165*m.x67 + 0.0001*m.x165*
m.x68 + 0.0001*m.x165*m.x69 + 0.0001*m.x165*m.x70 + 0.0001*m.x165*m.x71 + 0.0001*m.x165*m.x72 +
0.0001*m.x165*m.x73 + 0.0001*m.x165*m.x74 + 0.0001*m.x165*m.x75 + 0.0001*m.x165*m.x76 + 0.0001*
m.x165*m.x77 + 0.0001*m.x165*m.x78 + 0.786568956360439*m.x165*m.x79 + 0.0001*m.x165*m.x80 +
0.0001*m.x165*m.x81 + 0.0001*m.x165*m.x82 + 0.0001*m.x165*m.x83 + 0.0001*m.x165*m.x84 + 0.0001*
m.x165*m.x85 + 0.0001*m.x165*m.x86 + 0.0001*m.x165*m.x87 + 0.0001*m.x165*m.x88 + 0.0001*m.x165*
m.x89 + 0.0001*m.x165*m.x90 + 0.0001*m.x165*m.x91 + 0.0001*m.x165*m.x92 + 0.0001*m.x165*m.x93 +
0.0001*m.x165*m.x94 + 0.0001*m.x165*m.x95 + 0.0001*m.x165*m.x96 + 0.0001*m.x165*m.x97 + 0.0001*
m.x165*m.x98 + 0.0001*m.x165*m.x99 + 0.0001*m.x165*m.x100 + 0.0001*m.x165*m.x101 + 0.0001*m.x165*
m.x102 + 0.0001*m.x165*m.x103 + 0.0001*m.x165*m.x104 + 0.0001*m.x165*m.x105 + 0.0001*m.x165*
m.x106 + 0.0001*m.x165*m.x107 + 0.0001*m.x165*m.x108 + 0.0001*m.x165*m.x109 + 0.0001*m.x165*
m.x110 + 0.0001*m.x165*m.x111 + 0.0001*m.x165*m.x112 + 0.0001*m.x165*m.x113 + 0.0001*m.x165*
m.x114 + 0.0001*m.x165*m.x115 + 0.0001*m.x165*m.x116 + 0.0001*m.x165*m.x117 + 0.0001*m.x165*
m.x118 + 0.0001*m.x165*m.x119 + 0.0001*m.x165*m.x120 + 0.0001*m.x165*m.x121 + 0.0001*m.x165*
m.x122 + 0.0001*m.x165*m.x123 + 3.88338000471745*m.x165*m.x124 + 0.0001*m.x165*m.x125 + 0.0001*
m.x165*m.x126 + 0.0001*m.x165*m.x127 + 0.0001*m.x165*m.x128 + 0.0001*m.x165*m.x129 + 0.0001*
m.x165*m.x130 + 0.0001*m.x165*m.x131 + 0.0001*m.x165*m.x132 + 0.0001*m.x165*m.x133 + 0.0001*
m.x165*m.x134 + 0.0001*m.x165*m.x135 + 0.0001*m.x165*m.x136 + 0.0001*m.x165*m.x137 + 0.0001*
m.x165*m.x138 + 0.0001*m.x165*m.x139 + 0.0001*m.x165*m.x140 + 0.0001*m.x165*m.x141 + 0.0001*
m.x165*m.x142 + 0.0001*m.x165*m.x143 + 0.0001*m.x165*m.x144 + 0.0001*m.x165*m.x145 + 0.0001*
m.x165*m.x146 + 0.0001*m.x165*m.x147 + 0.0001*m.x165*m.x148 + 0.0001*m.x165*m.x149 +
5.67147623687046*m.x165*m.x150 + 0.0001*m.x165*m.x151 + 0.0001*m.x165*m.x152 + 0.0001*m.x165*
m.x153 + 0.0001*m.x165*m.x154 + 0.0001*m.x165*m.x155 + 0.0001*m.x165*m.x156 + 0.0001*m.x165*
m.x157 + 0.0001*m.x165*m.x158 + 0.0001*m.x165*m.x159 + 0.0001*m.x165*m.x160 + 0.0001*m.x165*
m.x161 + 0.0001*m.x165*m.x162 + 0.0001*m.x165*m.x163 + 0.0001*m.x165*m.x164 + 3.87036991419529*
m.x165**2 + 0.0001*m.x165*m.x166 + 0.0001*m.x165*m.x167 + 0.0001*m.x165*m.x168 + 0.0001*m.x165*
m.x169 + 0.0001*m.x165*m.x170 + 0.0001*m.x165*m.x171 + 0.0001*m.x165*m.x172 + 0.0001*m.x165*
m.x173 + 0.0001*m.x165*m.x174 + 0.0001*m.x165*m.x175 + 0.0001*m.x165*m.x176 + 0.0001*m.x165*
m.x177 + 0.0001*m.x165*m.x178 + 0.0001*m.x165*m.x179 + 0.0001*m.x165*m.x180 + 0.0001*m.x165*
m.x181 + 0.0001*m.x165*m.x182 + 0.0001*m.x165*m.x183 + 0.0001*m.x165*m.x184 + 0.0001*m.x165*
m.x185 + 0.0001*m.x166*m.x1 + 0.0001*m.x166*m.x2 + 0.0001*m.x166*m.x3 + 0.0001*m.x166*m.x4 +
0.0001*m.x166*m.x5 + 0.0001*m.x166*m.x6 + 0.0001*m.x166*m.x7 + 0.0001*m.x166*m.x8 + 0.0001*m.x166
*m.x9 + 0.0001*m.x166*m.x10 + 0.0001*m.x166*m.x11 + 0.0001*m.x166*m.x12 + 0.0001*m.x166*m.x13 +
0.0001*m.x166*m.x14 + 0.0001*m.x166*m.x15 + 0.0001*m.x166*m.x16 + 0.0001*m.x166*m.x17 + 0.0001*
m.x166*m.x18 + 0.0001*m.x166*m.x19 + 0.0001*m.x166*m.x20 + 0.0001*m.x166*m.x21 + 0.0001*m.x166*
m.x22 + 0.0001*m.x166*m.x23 + 0.0001*m.x166*m.x24 + 0.0001*m.x166*m.x25 + 0.0001*m.x166*m.x26 +
0.0001*m.x166*m.x27 + 0.0001*m.x166*m.x28 + 0.0001*m.x166*m.x29 + 0.0001*m.x166*m.x30 + 0.0001*
m.x166*m.x31 + 0.0001*m.x166*m.x32 + 0.0001*m.x166*m.x33 + 0.0001*m.x166*m.x34 + 0.0001*m.x166*
m.x35 + 0.0001*m.x166*m.x36 + 0.0001*m.x166*m.x37 + 0.0001*m.x166*m.x38 + 0.0001*m.x166*m.x39 +
0.0001*m.x166*m.x40 + 0.0001*m.x166*m.x41 + 0.0001*m.x166*m.x42 + 0.0001*m.x166*m.x43 + 0.0001*
m.x166*m.x44 + 0.0001*m.x166*m.x45 + 0.0001*m.x166*m.x46 + 0.0001*m.x166*m.x47 + 0.0001*m.x166*
m.x48 + 0.0001*m.x166*m.x49 + 0.0001*m.x166*m.x50 + 0.0001*m.x166*m.x51 + 0.0001*m.x166*m.x52 +
0.0001*m.x166*m.x53 + 0.0001*m.x166*m.x54 + 0.0001*m.x166*m.x55 + 0.0001*m.x166*m.x56 + 0.0001*
m.x166*m.x57 + 0.0001*m.x166*m.x58 + 0.0001*m.x166*m.x59 + 0.0001*m.x166*m.x60 + 0.0001*m.x166*
m.x61 + 0.0001*m.x166*m.x62 + 0.0001*m.x166*m.x63 + 0.0001*m.x166*m.x64 + 0.0001*m.x166*m.x65 +
0.0001*m.x166*m.x66 + 0.0001*m.x166*m.x67 + 0.0001*m.x166*m.x68 + 0.0001*m.x166*m.x69 + 0.0001*
m.x166*m.x70 + 0.0001*m.x166*m.x71 + 0.0001*m.x166*m.x72 + 0.0001*m.x166*m.x73 + 0.0001*m.x166*
m.x74 + 0.0001*m.x166*m.x75 + 0.0001*m.x166*m.x76 + 0.0001*m.x166*m.x77 + 0.0001*m.x166*m.x78 +
0.0001*m.x166*m.x79 + 0.746872060090427*m.x166*m.x80 + 0.0001*m.x166*m.x81 + 0.0001*m.x166*m.x82
+ 0.0001*m.x166*m.x83 + 0.0001*m.x166*m.x84 + 0.0001*m.x166*m.x85 + 0.0001*m.x166*m.x86 + 0.0001
*m.x166*m.x87 + 0.0001*m.x166*m.x88 + 0.0001*m.x166*m.x89 + 0.0001*m.x166*m.x90 + 0.0001*m.x166*
m.x91 + 0.0001*m.x166*m.x92 + 0.0001*m.x166*m.x93 + 0.0001*m.x166*m.x94 + 0.0001*m.x166*m.x95 +
0.0001*m.x166*m.x96 + 0.0001*m.x166*m.x97 + 0.0001*m.x166*m.x98 + 0.0001*m.x166*m.x99 + 0.0001*
m.x166*m.x100 + 0.0001*m.x166*m.x101 + 0.0001*m.x166*m.x102 + 0.0001*m.x166*m.x103 + 0.0001*
m.x166*m.x104 + 0.0001*m.x166*m.x105 + 0.0001*m.x166*m.x106 + 0.0001*m.x166*m.x107 + 0.0001*
m.x166*m.x108 + 0.0001*m.x166*m.x109 + 0.0001*m.x166*m.x110 + 0.0001*m.x166*m.x111 + 0.0001*
m.x166*m.x112 + 0.0001*m.x166*m.x113 + 0.0001*m.x166*m.x114 + 0.0001*m.x166*m.x115 + 0.0001*
m.x166*m.x116 + 0.0001*m.x166*m.x117 + 0.0001*m.x166*m.x118 + 0.0001*m.x166*m.x119 + 0.0001*
m.x166*m.x120 + 0.0001*m.x166*m.x121 + 0.0001*m.x166*m.x122 + 0.0001*m.x166*m.x123 + 0.0001*
m.x166*m.x124 + 4.35805470035046*m.x166*m.x125 + 0.0001*m.x166*m.x126 + 0.0001*m.x166*m.x127 +
0.0001*m.x166*m.x128 + 0.0001*m.x166*m.x129 + 0.0001*m.x166*m.x130 + 0.0001*m.x166*m.x131 +
0.0001*m.x166*m.x132 + 0.0001*m.x166*m.x133 + 0.0001*m.x166*m.x134 + 0.0001*m.x166*m.x135 +
0.0001*m.x166*m.x136 + 0.0001*m.x166*m.x137 + 0.0001*m.x166*m.x138 + 0.0001*m.x166*m.x139 +
0.0001*m.x166*m.x140 + 0.0001*m.x166*m.x141 + 0.0001*m.x166*m.x142 + 0.0001*m.x166*m.x143 +
0.0001*m.x166*m.x144 + 0.0001*m.x166*m.x145 + 0.0001*m.x166*m.x146 + 0.0001*m.x166*m.x147 +
0.0001*m.x166*m.x148 + 0.0001*m.x166*m.x149 + 0.0001*m.x166*m.x150 + 5.96705343413159*m.x166*
m.x151 + 0.0001*m.x166*m.x152 + 0.0001*m.x166*m.x153 + 0.0001*m.x166*m.x154 + 0.0001*m.x166*
m.x155 + 0.0001*m.x166*m.x156 + 0.0001*m.x166*m.x157 + 0.0001*m.x166*m.x158 + 0.0001*m.x166*
m.x159 + 0.0001*m.x166*m.x160 + 0.0001*m.x166*m.x161 + 0.0001*m.x166*m.x162 + 0.0001*m.x166*
m.x163 + 0.0001*m.x166*m.x164 + 0.0001*m.x166*m.x165 + 3.68564619267261*m.x166**2 + 0.0001*m.x166
*m.x167 + 0.0001*m.x166*m.x168 + 0.0001*m.x166*m.x169 + 0.0001*m.x166*m.x170 + 0.0001*m.x166*
m.x171 + 0.0001*m.x166*m.x172 + 0.0001*m.x166*m.x173 + 0.0001*m.x166*m.x174 + 0.0001*m.x166*
m.x175 + 0.0001*m.x166*m.x176 + 0.0001*m.x166*m.x177 + 0.0001*m.x166*m.x178 + 0.0001*m.x166*
m.x179 + 0.0001*m.x166*m.x180 + 0.0001*m.x166*m.x181 + 0.0001*m.x166*m.x182 + 0.0001*m.x166*
m.x183 + 0.0001*m.x166*m.x184 + 0.0001*m.x166*m.x185 + 0.0001*m.x167*m.x1 + 0.0001*m.x167*m.x2 +
0.0001*m.x167*m.x3 + 0.0001*m.x167*m.x4 + 0.0001*m.x167*m.x5 + 0.0001*m.x167*m.x6 + 0.0001*m.x167
*m.x7 + 0.0001*m.x167*m.x8 + 0.0001*m.x167*m.x9 + 0.0001*m.x167*m.x10 + 0.0001*m.x167*m.x11 +
0.0001*m.x167*m.x12 + 0.0001*m.x167*m.x13 + 0.0001*m.x167*m.x14 + 0.0001*m.x167*m.x15 + 0.0001*
m.x167*m.x16 + 0.0001*m.x167*m.x17 + 0.0001*m.x167*m.x18 + 0.0001*m.x167*m.x19 + 0.0001*m.x167*
m.x20 + 0.0001*m.x167*m.x21 + 0.0001*m.x167*m.x22 + 0.0001*m.x167*m.x23 + 0.0001*m.x167*m.x24 +
0.0001*m.x167*m.x25 + 0.0001*m.x167*m.x26 + 0.0001*m.x167*m.x27 + 0.0001*m.x167*m.x28 + 0.0001*
m.x167*m.x29 + 0.0001*m.x167*m.x30 + 0.0001*m.x167*m.x31 + 0.0001*m.x167*m.x32 + 0.0001*m.x167*
m.x33 + 0.0001*m.x167*m.x34 + 0.0001*m.x167*m.x35 + 0.0001*m.x167*m.x36 + 0.0001*m.x167*m.x37 +
0.0001*m.x167*m.x38 + 0.0001*m.x167*m.x39 + 0.0001*m.x167*m.x40 + 0.0001*m.x167*m.x41 + 0.0001*
m.x167*m.x42 + 0.0001*m.x167*m.x43 + 0.0001*m.x167*m.x44 + 0.0001*m.x167*m.x45 + 0.0001*m.x167*
m.x46 + 0.0001*m.x167*m.x47 + 0.0001*m.x167*m.x48 + 0.0001*m.x167*m.x49 + 0.0001*m.x167*m.x50 +
0.0001*m.x167*m.x51 + 0.0001*m.x167*m.x52 + 0.0001*m.x167*m.x53 + 0.0001*m.x167*m.x54 + 0.0001*
m.x167*m.x55 + 0.0001*m.x167*m.x56 + 0.0001*m.x167*m.x57 + 0.0001*m.x167*m.x58 + 0.0001*m.x167*
m.x59 + 0.0001*m.x167*m.x60 + 0.0001*m.x167*m.x61 + 0.0001*m.x167*m.x62 + 0.0001*m.x167*m.x63 +
0.0001*m.x167*m.x64 + 0.0001*m.x167*m.x65 + 0.0001*m.x167*m.x66 + 0.0001*m.x167*m.x67 + 0.0001*
m.x167*m.x68 + 0.0001*m.x167*m.x69 + 0.0001*m.x167*m.x70 + 0.0001*m.x167*m.x71 + 0.0001*m.x167*
m.x72 + 0.0001*m.x167*m.x73 + 0.0001*m.x167*m.x74 + 0.0001*m.x167*m.x75 + 0.0001*m.x167*m.x76 +
0.0001*m.x167*m.x77 + 0.0001*m.x167*m.x78 + 0.0001*m.x167*m.x79 + 0.0001*m.x167*m.x80 +
0.790163389415287*m.x167*m.x81 + 0.0001*m.x167*m.x82 + 0.0001*m.x167*m.x83 + 0.0001*m.x167*m.x84
+ 0.0001*m.x167*m.x85 + 0.0001*m.x167*m.x86 + 0.0001*m.x167*m.x87 + 0.0001*m.x167*m.x88 + 0.0001
*m.x167*m.x89 + 0.0001*m.x167*m.x90 + 0.0001*m.x167*m.x91 + 0.0001*m.x167*m.x92 + 0.0001*m.x167*
m.x93 + 0.0001*m.x167*m.x94 + 0.0001*m.x167*m.x95 + 0.0001*m.x167*m.x96 + 0.0001*m.x167*m.x97 +
0.0001*m.x167*m.x98 + 0.0001*m.x167*m.x99 + 0.0001*m.x167*m.x100 + 0.0001*m.x167*m.x101 + 0.0001*
m.x167*m.x102 + 0.0001*m.x167*m.x103 + 0.0001*m.x167*m.x104 + 0.0001*m.x167*m.x105 + 0.0001*
m.x167*m.x106 + 0.0001*m.x167*m.x107 + 0.0001*m.x167*m.x108 + 0.0001*m.x167*m.x109 + 0.0001*
m.x167*m.x110 + 0.0001*m.x167*m.x111 + 0.0001*m.x167*m.x112 + 0.0001*m.x167*m.x113 + 0.0001*
m.x167*m.x114 + 0.0001*m.x167*m.x115 + 0.0001*m.x167*m.x116 + 0.0001*m.x167*m.x117 + 0.0001*
m.x167*m.x118 + 0.0001*m.x167*m.x119 + 0.0001*m.x167*m.x120 + 0.0001*m.x167*m.x121 + 0.0001*
m.x167*m.x122 + 0.0001*m.x167*m.x123 + 0.0001*m.x167*m.x124 + 0.0001*m.x167*m.x125 +
4.45694806359899*m.x167*m.x126 + 0.0001*m.x167*m.x127 + 0.0001*m.x167*m.x128 + 0.0001*m.x167*
m.x129 + 0.0001*m.x167*m.x130 + 0.0001*m.x167*m.x131 + 0.0001*m.x167*m.x132 + 0.0001*m.x167*
m.x133 + 0.0001*m.x167*m.x134 + 0.0001*m.x167*m.x135 + 0.0001*m.x167*m.x136 + 0.0001*m.x167*
m.x137 + 0.0001*m.x167*m.x138 + 0.0001*m.x167*m.x139 + 0.0001*m.x167*m.x140 + 0.0001*m.x167*
m.x141 + 0.0001*m.x167*m.x142 + 0.0001*m.x167*m.x143 + 0.0001*m.x167*m.x144 + 0.0001*m.x167*
m.x145 + 0.0001*m.x167*m.x146 + 0.0001*m.x167*m.x147 + 0.0001*m.x167*m.x148 + 0.0001*m.x167*
m.x149 + 0.0001*m.x167*m.x150 + 0.0001*m.x167*m.x151 + 6.05530167878749*m.x167*m.x152 + 0.0001*
m.x167*m.x153 + 0.0001*m.x167*m.x154 + 0.0001*m.x167*m.x155 + 0.0001*m.x167*m.x156 + 0.0001*
m.x167*m.x157 + 0.0001*m.x167*m.x158 + 0.0001*m.x167*m.x159 + 0.0001*m.x167*m.x160 + 0.0001*
m.x167*m.x161 + 0.0001*m.x167*m.x162 + 0.0001*m.x167*m.x163 + 0.0001*m.x167*m.x164 + 0.0001*
m.x167*m.x165 + 0.0001*m.x167*m.x166 + 3.82502514428857*m.x167**2 + 0.0001*m.x167*m.x168 + 0.0001
*m.x167*m.x169 + 0.0001*m.x167*m.x170 + 0.0001*m.x167*m.x171 + 0.0001*m.x167*m.x172 + 0.0001*
m.x167*m.x173 + 0.0001*m.x167*m.x174 + 0.0001*m.x167*m.x175 + 0.0001*m.x167*m.x176 + 0.0001*
m.x167*m.x177 + 0.0001*m.x167*m.x178 + 0.0001*m.x167*m.x179 + 0.0001*m.x167*m.x180 + 0.0001*
m.x167*m.x181 + 0.0001*m.x167*m.x182 + 0.0001*m.x167*m.x183 + 0.0001*m.x167*m.x184 + 0.0001*
m.x167*m.x185 + 0.0001*m.x168*m.x1 + 0.0001*m.x168*m.x2 + 0.0001*m.x168*m.x3 + 0.0001*m.x168*m.x4
+ 0.0001*m.x168*m.x5 + 0.0001*m.x168*m.x6 + 0.0001*m.x168*m.x7 + 0.0001*m.x168*m.x8 + 0.0001*
m.x168*m.x9 + 0.0001*m.x168*m.x10 + 0.0001*m.x168*m.x11 + 0.0001*m.x168*m.x12 + 0.0001*m.x168*
m.x13 + 0.0001*m.x168*m.x14 + 0.0001*m.x168*m.x15 + 0.0001*m.x168*m.x16 + 0.0001*m.x168*m.x17 +
0.0001*m.x168*m.x18 + 0.0001*m.x168*m.x19 + 0.0001*m.x168*m.x20 + 0.0001*m.x168*m.x21 + 0.0001*
m.x168*m.x22 + 0.0001*m.x168*m.x23 + 0.0001*m.x168*m.x24 + 0.0001*m.x168*m.x25 + 0.0001*m.x168*
m.x26 + 0.0001*m.x168*m.x27 + 0.0001*m.x168*m.x28 + 0.0001*m.x168*m.x29 + 0.0001*m.x168*m.x30 +
0.0001*m.x168*m.x31 + 0.0001*m.x168*m.x32 + 0.0001*m.x168*m.x33 + 0.0001*m.x168*m.x34 + 0.0001*
m.x168*m.x35 + 0.0001*m.x168*m.x36 + 0.0001*m.x168*m.x37 + 0.0001*m.x168*m.x38 + 0.0001*m.x168*
m.x39 + 0.0001*m.x168*m.x40 + 0.0001*m.x168*m.x41 + 0.0001*m.x168*m.x42 + 0.0001*m.x168*m.x43 +
0.0001*m.x168*m.x44 + 0.0001*m.x168*m.x45 + 0.0001*m.x168*m.x46 + 0.0001*m.x168*m.x47 + 0.0001*
m.x168*m.x48 + 0.0001*m.x168*m.x49 + 0.0001*m.x168*m.x50 + 0.0001*m.x168*m.x51 + 0.0001*m.x168*
m.x52 + 0.0001*m.x168*m.x53 + 0.0001*m.x168*m.x54 + 0.0001*m.x168*m.x55 + 0.0001*m.x168*m.x56 +
0.0001*m.x168*m.x57 + 0.0001*m.x168*m.x58 + 0.0001*m.x168*m.x59 + 0.0001*m.x168*m.x60 + 0.0001*
m.x168*m.x61 + 0.0001*m.x168*m.x62 + 0.0001*m.x168*m.x63 + 0.0001*m.x168*m.x64 + 0.0001*m.x168*
m.x65 + 0.0001*m.x168*m.x66 + 0.0001*m.x168*m.x67 + 0.0001*m.x168*m.x68 + 0.0001*m.x168*m.x69 +
0.0001*m.x168*m.x70 + 0.0001*m.x168*m.x71 + 0.0001*m.x168*m.x72 + 0.0001*m.x168*m.x73 + 0.0001*
m.x168*m.x74 + 0.0001*m.x168*m.x75 + 0.0001*m.x168*m.x76 + 0.0001*m.x168*m.x77 + 0.0001*m.x168*
m.x78 + 0.0001*m.x168*m.x79 + 0.0001*m.x168*m.x80 + 0.0001*m.x168*m.x81 + 0.734199996191235*
m.x168*m.x82 + 0.0001*m.x168*m.x83 + 0.0001*m.x168*m.x84 + 0.0001*m.x168*m.x85 + 0.0001*m.x168*
m.x86 + 0.0001*m.x168*m.x87 + 0.0001*m.x168*m.x88 + 0.0001*m.x168*m.x89 + 0.0001*m.x168*m.x90 +
0.0001*m.x168*m.x91 + 0.0001*m.x168*m.x92 + 0.0001*m.x168*m.x93 + 0.0001*m.x168*m.x94 + 0.0001*
m.x168*m.x95 + 0.0001*m.x168*m.x96 + 0.0001*m.x168*m.x97 + 0.0001*m.x168*m.x98 + 0.0001*m.x168*
m.x99 + 0.0001*m.x168*m.x100 + 0.0001*m.x168*m.x101 + 0.0001*m.x168*m.x102 + 0.0001*m.x168*m.x103
+ 0.0001*m.x168*m.x104 + 0.0001*m.x168*m.x105 + 0.0001*m.x168*m.x106 + 0.0001*m.x168*m.x107 +
0.0001*m.x168*m.x108 + 0.0001*m.x168*m.x109 + 0.0001*m.x168*m.x110 + 0.0001*m.x168*m.x111 +
0.0001*m.x168*m.x112 + 0.0001*m.x168*m.x113 + 0.0001*m.x168*m.x114 + 0.0001*m.x168*m.x115 +
0.0001*m.x168*m.x116 + 0.0001*m.x168*m.x117 + 0.0001*m.x168*m.x118 + 0.0001*m.x168*m.x119 +
0.0001*m.x168*m.x120 + 0.0001*m.x168*m.x121 + 0.0001*m.x168*m.x122 + 0.0001*m.x168*m.x123 +
0.0001*m.x168*m.x124 + 0.0001*m.x168*m.x125 + 0.0001*m.x168*m.x126 + 4.14125144473953*m.x168*
m.x127 + 0.0001*m.x168*m.x128 + 0.0001*m.x168*m.x129 + 0.0001*m.x168*m.x130 + 0.0001*m.x168*
m.x131 + 0.0001*m.x168*m.x132 + 0.0001*m.x168*m.x133 + 0.0001*m.x168*m.x134 + 0.0001*m.x168*
m.x135 + 0.0001*m.x168*m.x136 + 0.0001*m.x168*m.x137 + 0.0001*m.x168*m.x138 + 0.0001*m.x168*
m.x139 + 0.0001*m.x168*m.x140 + 0.0001*m.x168*m.x141 + 0.0001*m.x168*m.x142 + 0.0001*m.x168*
m.x143 + 0.0001*m.x168*m.x144 + 0.0001*m.x168*m.x145 + 0.0001*m.x168*m.x146 + 0.0001*m.x168*
m.x147 + 0.0001*m.x168*m.x148 + 0.0001*m.x168*m.x149 + 0.0001*m.x168*m.x150 + 0.0001*m.x168*
m.x151 + 0.0001*m.x168*m.x152 + 5.6375424869916*m.x168*m.x153 + 0.0001*m.x168*m.x154 + 0.0001*
m.x168*m.x155 + 0.0001*m.x168*m.x156 + 0.0001*m.x168*m.x157 + 0.0001*m.x168*m.x158 + 0.0001*
m.x168*m.x159 + 0.0001*m.x168*m.x160 + 0.0001*m.x168*m.x161 + 0.0001*m.x168*m.x162 + 0.0001*
m.x168*m.x163 + 0.0001*m.x168*m.x164 + 0.0001*m.x168*m.x165 + 0.0001*m.x168*m.x166 + 0.0001*
m.x168*m.x167 + 3.55409018796714*m.x168**2 + 0.0001*m.x168*m.x169 + 0.0001*m.x168*m.x170 + 0.0001
*m.x168*m.x171 + 0.0001*m.x168*m.x172 + 0.0001*m.x168*m.x173 + 0.0001*m.x168*m.x174 + 0.0001*
m.x168*m.x175 + 0.0001*m.x168*m.x176 + 0.0001*m.x168*m.x177 + 0.0001*m.x168*m.x178 + 0.0001*
m.x168*m.x179 + 0.0001*m.x168*m.x180 + 0.0001*m.x168*m.x181 + 0.0001*m.x168*m.x182 + 0.0001*
m.x168*m.x183 + 0.0001*m.x168*m.x184 + 0.0001*m.x168*m.x185 + 0.0001*m.x169*m.x1 + 0.0001*m.x169*
m.x2 + 0.0001*m.x169*m.x3 + 0.0001*m.x169*m.x4 + 0.0001*m.x169*m.x5 + 0.0001*m.x169*m.x6 + 0.0001
*m.x169*m.x7 + 0.0001*m.x169*m.x8 + 0.0001*m.x169*m.x9 + 0.0001*m.x169*m.x10 + 0.0001*m.x169*
m.x11 + 0.0001*m.x169*m.x12 + 0.0001*m.x169*m.x13 + 0.0001*m.x169*m.x14 + 0.0001*m.x169*m.x15 +
0.0001*m.x169*m.x16 + 0.0001*m.x169*m.x17 + 0.0001*m.x169*m.x18 + 0.0001*m.x169*m.x19 + 0.0001*
m.x169*m.x20 + 0.0001*m.x169*m.x21 + 0.0001*m.x169*m.x22 + 0.0001*m.x169*m.x23 + 0.0001*m.x169*
m.x24 + 0.0001*m.x169*m.x25 + 0.0001*m.x169*m.x26 + 0.0001*m.x169*m.x27 + 0.0001*m.x169*m.x28 +
0.0001*m.x169*m.x29 + 0.0001*m.x169*m.x30 + 0.0001*m.x169*m.x31 + 0.0001*m.x169*m.x32 + 0.0001*
m.x169*m.x33 + 0.0001*m.x169*m.x34 + 0.0001*m.x169*m.x35 + 0.0001*m.x169*m.x36 + 0.0001*m.x169*
m.x37 + 0.0001*m.x169*m.x38 + 0.0001*m.x169*m.x39 + 0.0001*m.x169*m.x40 + 0.0001*m.x169*m.x41 +
0.0001*m.x169*m.x42 + 0.0001*m.x169*m.x43 + 0.0001*m.x169*m.x44 + 0.0001*m.x169*m.x45 + 0.0001*
m.x169*m.x46 + 0.0001*m.x169*m.x47 + 0.0001*m.x169*m.x48 + 0.0001*m.x169*m.x49 + 0.0001*m.x169*
m.x50 + 0.0001*m.x169*m.x51 + 0.0001*m.x169*m.x52 + 0.0001*m.x169*m.x53 + 0.0001*m.x169*m.x54 +
0.0001*m.x169*m.x55 + 0.0001*m.x169*m.x56 + 0.0001*m.x169*m.x57 + 0.0001*m.x169*m.x58 + 0.0001*
m.x169*m.x59 + 0.0001*m.x169*m.x60 + 0.0001*m.x169*m.x61 + 0.0001*m.x169*m.x62 + 0.0001*m.x169*
m.x63 + 0.0001*m.x169*m.x64 + 0.0001*m.x169*m.x65 + 0.0001*m.x169*m.x66 + 0.0001*m.x169*m.x67 +
0.0001*m.x169*m.x68 + 0.0001*m.x169*m.x69 + 0.0001*m.x169*m.x70 + 0.0001*m.x169*m.x71 + 0.0001*
m.x169*m.x72 + 0.0001*m.x169*m.x73 + 0.0001*m.x169*m.x74 + 0.0001*m.x169*m.x75 + 0.0001*m.x169*
m.x76 + 0.0001*m.x169*m.x77 + 0.0001*m.x169*m.x78 + 0.0001*m.x169*m.x79 + 0.0001*m.x169*m.x80 +
0.0001*m.x169*m.x81 + 0.0001*m.x169*m.x82 + 1.35606110318633*m.x169*m.x83 + 0.0001*m.x169*m.x84
+ 0.0001*m.x169*m.x85 + 0.0001*m.x169*m.x86 + 0.0001*m.x169*m.x87 + 0.0001*m.x169*m.x88 + 0.0001
*m.x169*m.x89 + 0.0001*m.x169*m.x90 + 0.0001*m.x169*m.x91 + 0.0001*m.x169*m.x92 + 0.0001*m.x169*
m.x93 + 0.0001*m.x169*m.x94 + 0.0001*m.x169*m.x95 + 0.0001*m.x169*m.x96 + 0.0001*m.x169*m.x97 +
0.0001*m.x169*m.x98 + 0.0001*m.x169*m.x99 + 0.0001*m.x169*m.x100 + 0.0001*m.x169*m.x101 + 0.0001*
m.x169*m.x102 + 0.0001*m.x169*m.x103 + 0.0001*m.x169*m.x104 + 0.0001*m.x169*m.x105 + 0.0001*
m.x169*m.x106 + 0.0001*m.x169*m.x107 + 0.0001*m.x169*m.x108 + 0.0001*m.x169*m.x109 + 0.0001*
m.x169*m.x110 + 0.0001*m.x169*m.x111 + 0.0001*m.x169*m.x112 + 0.0001*m.x169*m.x113 + 0.0001*
m.x169*m.x114 + 0.0001*m.x169*m.x115 + 0.0001*m.x169*m.x116 + 0.0001*m.x169*m.x117 + 0.0001*
m.x169*m.x118 + 0.0001*m.x169*m.x119 + 0.0001*m.x169*m.x120 + 0.0001*m.x169*m.x121 + 0.0001*
m.x169*m.x122 + 0.0001*m.x169*m.x123 + 0.0001*m.x169*m.x124 + 0.0001*m.x169*m.x125 + 0.0001*
m.x169*m.x126 + 0.0001*m.x169*m.x127 + 6.60715115840967*m.x169*m.x128 + 0.0001*m.x169*m.x129 +
0.0001*m.x169*m.x130 + 0.0001*m.x169*m.x131 + 0.0001*m.x169*m.x132 + 0.0001*m.x169*m.x133 +
0.0001*m.x169*m.x134 + 0.0001*m.x169*m.x135 + 0.0001*m.x169*m.x136 + 0.0001*m.x169*m.x137 +
0.0001*m.x169*m.x138 + 0.0001*m.x169*m.x139 + 0.0001*m.x169*m.x140 + 0.0001*m.x169*m.x141 +
0.0001*m.x169*m.x142 + 0.0001*m.x169*m.x143 + 0.0001*m.x169*m.x144 + 0.0001*m.x169*m.x145 +
0.0001*m.x169*m.x146 + 0.0001*m.x169*m.x147 + 0.0001*m.x169*m.x148 + 0.0001*m.x169*m.x149 +
0.0001*m.x169*m.x150 + 0.0001*m.x169*m.x151 + 0.0001*m.x169*m.x152 + 0.0001*m.x169*m.x153 +
6.06641918211284*m.x169*m.x154 + 6.06641918211284*m.x169*m.x155 + 0.0001*m.x169*m.x156 + 0.0001*
m.x169*m.x157 + 0.0001*m.x169*m.x158 + 0.0001*m.x169*m.x159 + 0.0001*m.x169*m.x160 + 0.0001*
m.x169*m.x161 + 0.0001*m.x169*m.x162 + 0.0001*m.x169*m.x163 + 0.0001*m.x169*m.x164 + 0.0001*
m.x169*m.x165 + 0.0001*m.x169*m.x166 + 0.0001*m.x169*m.x167 + 0.0001*m.x169*m.x168 +
6.60154285927405*m.x169**2 + 0.0001*m.x169*m.x170 + 0.0001*m.x169*m.x171 + 0.0001*m.x169*m.x172
+ 0.0001*m.x169*m.x173 + 0.0001*m.x169*m.x174 + 0.0001*m.x169*m.x175 + 0.0001*m.x169*m.x176 +
0.0001*m.x169*m.x177 + 0.0001*m.x169*m.x178 + 0.0001*m.x169*m.x179 + 0.0001*m.x169*m.x180 +
0.0001*m.x169*m.x181 + 0.0001*m.x169*m.x182 + 0.0001*m.x169*m.x183 + 0.0001*m.x169*m.x184 +
0.0001*m.x169*m.x185 + 0.0001*m.x170*m.x1 + 0.0001*m.x170*m.x2 + 0.0001*m.x170*m.x3 + 0.0001*
m.x170*m.x4 + 0.0001*m.x170*m.x5 + 0.0001*m.x170*m.x6 + 0.0001*m.x170*m.x7 + 0.0001*m.x170*m.x8
+ 0.0001*m.x170*m.x9 + 0.0001*m.x170*m.x10 + 0.0001*m.x170*m.x11 + 0.0001*m.x170*m.x12 + 0.0001*
m.x170*m.x13 + 0.0001*m.x170*m.x14 + 0.0001*m.x170*m.x15 + 0.0001*m.x170*m.x16 + 0.0001*m.x170*
m.x17 + 0.0001*m.x170*m.x18 + 0.0001*m.x170*m.x19 + 0.0001*m.x170*m.x20 + 0.0001*m.x170*m.x21 +
0.0001*m.x170*m.x22 + 0.0001*m.x170*m.x23 + 0.0001*m.x170*m.x24 + 0.0001*m.x170*m.x25 + 0.0001*
m.x170*m.x26 + 0.0001*m.x170*m.x27 + 0.0001*m.x170*m.x28 + 0.0001*m.x170*m.x29 + 0.0001*m.x170*
m.x30 + 0.0001*m.x170*m.x31 + 0.0001*m.x170*m.x32 + 0.0001*m.x170*m.x33 + 0.0001*m.x170*m.x34 +
0.0001*m.x170*m.x35 + 0.0001*m.x170*m.x36 + 0.0001*m.x170*m.x37 + 0.0001*m.x170*m.x38 + 0.0001*
m.x170*m.x39 + 0.0001*m.x170*m.x40 + 0.0001*m.x170*m.x41 + 0.0001*m.x170*m.x42 + 0.0001*m.x170*
m.x43 + 0.0001*m.x170*m.x44 + 0.0001*m.x170*m.x45 + 0.0001*m.x170*m.x46 + 0.0001*m.x170*m.x47 +
0.0001*m.x170*m.x48 + 0.0001*m.x170*m.x49 + 0.0001*m.x170*m.x50 + 0.0001*m.x170*m.x51 + 0.0001*
m.x170*m.x52 + 0.0001*m.x170*m.x53 + 0.0001*m.x170*m.x54 + 0.0001*m.x170*m.x55 + 0.0001*m.x170*
m.x56 + 0.0001*m.x170*m.x57 + 0.0001*m.x170*m.x58 + 0.0001*m.x170*m.x59 + 0.0001*m.x170*m.x60 +
0.0001*m.x170*m.x61 + 0.0001*m.x170*m.x62 + 0.0001*m.x170*m.x63 + 0.0001*m.x170*m.x64 + 0.0001*
m.x170*m.x65 + 0.0001*m.x170*m.x66 + 0.0001*m.x170*m.x67 + 0.0001*m.x170*m.x68 + 0.0001*m.x170*
m.x69 + 0.0001*m.x170*m.x70 + 0.0001*m.x170*m.x71 + 0.0001*m.x170*m.x72 + 0.0001*m.x170*m.x73 +
0.0001*m.x170*m.x74 + 0.0001*m.x170*m.x75 + 0.0001*m.x170*m.x76 + 0.0001*m.x170*m.x77 + 0.0001*
m.x170*m.x78 + 0.0001*m.x170*m.x79 + 0.0001*m.x170*m.x80 + 0.0001*m.x170*m.x81 + 0.0001*m.x170*
m.x82 + 0.0001*m.x170*m.x83 + 0.0001*m.x170*m.x84 + 0.0001*m.x170*m.x85 + 0.0001*m.x170*m.x86 +
0.0001*m.x170*m.x87 + 0.0001*m.x170*m.x88 + 0.0001*m.x170*m.x89 + 0.0001*m.x170*m.x90 + 0.0001*
m.x170*m.x91 + 0.0001*m.x170*m.x92 + 0.0001*m.x170*m.x93 + 0.0001*m.x170*m.x94 + 0.0001*m.x170*
m.x95 + 0.0001*m.x170*m.x96 + 0.0001*m.x170*m.x97 + 0.0001*m.x170*m.x98 + 0.0001*m.x170*m.x99 +
0.0001*m.x170*m.x100 + 0.0001*m.x170*m.x101 + 0.0001*m.x170*m.x102 + 0.0001*m.x170*m.x103 +
0.0001*m.x170*m.x104 + 0.0001*m.x170*m.x105 + 0.0001*m.x170*m.x106 + 0.0001*m.x170*m.x107 +
0.0001*m.x170*m.x108 + 0.0001*m.x170*m.x109 + 0.0001*m.x170*m.x110 + 0.0001*m.x170*m.x111 +
0.0001*m.x170*m.x112 + 0.0001*m.x170*m.x113 + 0.0001*m.x170*m.x114 + 0.0001*m.x170*m.x115 +
0.499857982206522*m.x170*m.x116 + 0.0001*m.x170*m.x117 + 0.0001*m.x170*m.x118 + 0.0001*m.x170*
m.x119 + 0.0001*m.x170*m.x120 + 0.0001*m.x170*m.x121 + 0.0001*m.x170*m.x122 + 0.0001*m.x170*
m.x123 + 0.0001*m.x170*m.x124 + 0.0001*m.x170*m.x125 + 0.0001*m.x170*m.x126 + 0.0001*m.x170*
m.x127 + 0.0001*m.x170*m.x128 + 3.0953837361136*m.x170*m.x129 + 0.0001*m.x170*m.x130 + 0.0001*
m.x170*m.x131 + 0.0001*m.x170*m.x132 + 0.0001*m.x170*m.x133 + 0.0001*m.x170*m.x134 + 0.0001*
m.x170*m.x135 + 0.0001*m.x170*m.x136 + 0.0001*m.x170*m.x137 + 0.0001*m.x170*m.x138 + 0.0001*
m.x170*m.x139 + 0.0001*m.x170*m.x140 + 0.0001*m.x170*m.x141 + 0.694980140999375*m.x170*m.x142 +
0.0001*m.x170*m.x143 + 0.0001*m.x170*m.x144 + 0.0001*m.x170*m.x145 + 0.0001*m.x170*m.x146 +
0.0001*m.x170*m.x147 + 0.0001*m.x170*m.x148 + 0.0001*m.x170*m.x149 + 0.0001*m.x170*m.x150 +
0.0001*m.x170*m.x151 + 0.0001*m.x170*m.x152 + 0.0001*m.x170*m.x153 + 0.0001*m.x170*m.x154 +
0.0001*m.x170*m.x155 + 5.66748238565604*m.x170*m.x156 + 0.453770093960477*m.x170*m.x157 + 0.0001*
m.x170*m.x158 + 0.0001*m.x170*m.x159 + 0.0001*m.x170*m.x160 + 0.0001*m.x170*m.x161 + 0.0001*
m.x170*m.x162 + 0.0001*m.x170*m.x163 + 0.0001*m.x170*m.x164 + 0.0001*m.x170*m.x165 + 0.0001*
m.x170*m.x166 + 0.0001*m.x170*m.x167 + 0.0001*m.x170*m.x168 + 0.0001*m.x170*m.x169 +
2.9171995157523*m.x170**2 + 0.0001*m.x170*m.x171 + 0.0001*m.x170*m.x172 + 0.0001*m.x170*m.x173 +
0.0001*m.x170*m.x174 + 0.0001*m.x170*m.x175 + 0.0001*m.x170*m.x176 + 0.0001*m.x170*m.x177 +
0.0001*m.x170*m.x178 + 0.0001*m.x170*m.x179 + 0.0001*m.x170*m.x180 + 0.0001*m.x170*m.x181 +
0.0001*m.x170*m.x182 + 0.0001*m.x170*m.x183 + 0.0001*m.x170*m.x184 + 0.0001*m.x170*m.x185 +
0.0001*m.x171*m.x1 + 0.0001*m.x171*m.x2 + 0.0001*m.x171*m.x3 + 0.0001*m.x171*m.x4 + 0.0001*m.x171
*m.x5 + 0.0001*m.x171*m.x6 + 0.0001*m.x171*m.x7 + 0.0001*m.x171*m.x8 + 0.0001*m.x171*m.x9 +
0.0001*m.x171*m.x10 + 0.0001*m.x171*m.x11 + 0.0001*m.x171*m.x12 + 0.0001*m.x171*m.x13 + 0.0001*
m.x171*m.x14 + 0.0001*m.x171*m.x15 + 0.0001*m.x171*m.x16 + 0.0001*m.x171*m.x17 + 0.0001*m.x171*
m.x18 + 0.0001*m.x171*m.x19 + 0.0001*m.x171*m.x20 + 0.0001*m.x171*m.x21 + 0.0001*m.x171*m.x22 +
0.0001*m.x171*m.x23 + 0.0001*m.x171*m.x24 + 0.0001*m.x171*m.x25 + 0.0001*m.x171*m.x26 + 0.0001*
m.x171*m.x27 + 0.0001*m.x171*m.x28 + 0.0001*m.x171*m.x29 + 0.0001*m.x171*m.x30 + 0.0001*m.x171*
m.x31 + 0.0001*m.x171*m.x32 + 0.0001*m.x171*m.x33 + 0.0001*m.x171*m.x34 + 0.0001*m.x171*m.x35 +
0.0001*m.x171*m.x36 + 0.0001*m.x171*m.x37 + 0.0001*m.x171*m.x38 + 0.0001*m.x171*m.x39 + 0.0001*
m.x171*m.x40 + 0.0001*m.x171*m.x41 + 0.0001*m.x171*m.x42 + 0.0001*m.x171*m.x43 + 0.0001*m.x171*
m.x44 + 0.0001*m.x171*m.x45 + 0.0001*m.x171*m.x46 + 0.0001*m.x171*m.x47 + 0.0001*m.x171*m.x48 +
0.0001*m.x171*m.x49 + 0.0001*m.x171*m.x50 + 0.0001*m.x171*m.x51 + 0.0001*m.x171*m.x52 + 0.0001*
m.x171*m.x53 + 0.0001*m.x171*m.x54 + 0.0001*m.x171*m.x55 + 0.0001*m.x171*m.x56 + 0.0001*m.x171*
m.x57 + 0.0001*m.x171*m.x58 + 0.0001*m.x171*m.x59 + 0.0001*m.x171*m.x60 + 0.0001*m.x171*m.x61 +
0.0001*m.x171*m.x62 + 0.0001*m.x171*m.x63 + 0.0001*m.x171*m.x64 + 0.0001*m.x171*m.x65 + 0.0001*
m.x171*m.x66 + 0.0001*m.x171*m.x67 + 0.0001*m.x171*m.x68 + 0.0001*m.x171*m.x69 + 0.0001*m.x171*
m.x70 + 0.0001*m.x171*m.x71 + 0.0001*m.x171*m.x72 + 0.0001*m.x171*m.x73 + 0.0001*m.x171*m.x74 +
0.0001*m.x171*m.x75 + 0.0001*m.x171*m.x76 + 0.0001*m.x171*m.x77 + 0.0001*m.x171*m.x78 + 0.0001*
m.x171*m.x79 + 0.0001*m.x171*m.x80 + 0.0001*m.x171*m.x81 + 0.0001*m.x171*m.x82 + 0.0001*m.x171*
m.x83 + 0.0001*m.x171*m.x84 + 0.0001*m.x171*m.x85 + 0.0001*m.x171*m.x86 + 0.0001*m.x171*m.x87 +
0.0001*m.x171*m.x88 + 0.0001*m.x171*m.x89 + 0.0001*m.x171*m.x90 + 0.0001*m.x171*m.x91 + 0.0001*
m.x171*m.x92 + 0.0001*m.x171*m.x93 + 0.0001*m.x171*m.x94 + 0.0001*m.x171*m.x95 + 0.0001*m.x171*
m.x96 + 0.0001*m.x171*m.x97 + 0.0001*m.x171*m.x98 + 0.0001*m.x171*m.x99 + 0.0001*m.x171*m.x100 +
0.0001*m.x171*m.x101 + 0.0001*m.x171*m.x102 + 0.0001*m.x171*m.x103 + 2.06289850672701*m.x171*
m.x104 + 0.0001*m.x171*m.x105 + 0.0001*m.x171*m.x106 + 0.0001*m.x171*m.x107 + 0.0001*m.x171*
m.x108 + 0.0001*m.x171*m.x109 + 0.0001*m.x171*m.x110 + 0.0001*m.x171*m.x111 + 0.0001*m.x171*
m.x112 + 0.0001*m.x171*m.x113 + 0.0001*m.x171*m.x114 + 0.0001*m.x171*m.x115 + 0.0001*m.x171*
m.x116 + 0.0001*m.x171*m.x117 + 0.0001*m.x171*m.x118 + 0.0001*m.x171*m.x119 + 0.0001*m.x171*
m.x120 + 0.0001*m.x171*m.x121 + 0.0001*m.x171*m.x122 + 0.0001*m.x171*m.x123 + 0.0001*m.x171*
m.x124 + 0.0001*m.x171*m.x125 + 0.0001*m.x171*m.x126 + 0.0001*m.x171*m.x127 + 0.0001*m.x171*
m.x128 + 0.0001*m.x171*m.x129 + 0.0001*m.x171*m.x130 + 0.0001*m.x171*m.x131 + 0.0001*m.x171*
m.x132 + 0.0001*m.x171*m.x133 + 0.0001*m.x171*m.x134 + 0.0001*m.x171*m.x135 + 0.0001*m.x171*
m.x136 + 0.0001*m.x171*m.x137 + 0.0001*m.x171*m.x138 + 0.0001*m.x171*m.x139 + 0.0001*m.x171*
m.x140 + 0.0001*m.x171*m.x141 + 0.0001*m.x171*m.x142 + 0.0001*m.x171*m.x143 + 0.0001*m.x171*
m.x144 + 0.0001*m.x171*m.x145 + 0.0001*m.x171*m.x146 + 0.0001*m.x171*m.x147 + 0.0001*m.x171*
m.x148 + 0.0001*m.x171*m.x149 + 0.0001*m.x171*m.x150 + 0.0001*m.x171*m.x151 + 0.0001*m.x171*
m.x152 + 0.0001*m.x171*m.x153 + 0.0001*m.x171*m.x154 + 0.0001*m.x171*m.x155 + 0.0001*m.x171*
m.x156 + 0.0001*m.x171*m.x157 + 0.0001*m.x171*m.x158 + 0.0001*m.x171*m.x159 + 0.0001*m.x171*
m.x160 + 0.0001*m.x171*m.x161 + 0.0001*m.x171*m.x162 + 0.0001*m.x171*m.x163 + 0.0001*m.x171*
m.x164 + 0.0001*m.x171*m.x165 + 0.0001*m.x171*m.x166 + 0.0001*m.x171*m.x167 + 0.0001*m.x171*
m.x168 + 0.0001*m.x171*m.x169 + 0.0001*m.x171*m.x170 + 2.30979835693109*m.x171**2 + 0.0001*m.x171
*m.x172 + 0.0001*m.x171*m.x173 + 0.0001*m.x171*m.x174 + 0.0001*m.x171*m.x175 + 0.0001*m.x171*
m.x176 + 0.0001*m.x171*m.x177 + 0.0001*m.x171*m.x178 + 0.0001*m.x171*m.x179 + 0.0001*m.x171*
m.x180 + 0.0001*m.x171*m.x181 + 0.0001*m.x171*m.x182 + 0.0001*m.x171*m.x183 + 0.0001*m.x171*
m.x184 + 0.0001*m.x171*m.x185 + 0.0001*m.x172*m.x1 + 0.0001*m.x172*m.x2 + 0.0001*m.x172*m.x3 +
0.0001*m.x172*m.x4 + 0.0001*m.x172*m.x5 + 0.0001*m.x172*m.x6 + 0.0001*m.x172*m.x7 + 0.0001*m.x172
*m.x8 + 0.0001*m.x172*m.x9 + 0.0001*m.x172*m.x10 + 0.0001*m.x172*m.x11 + 0.0001*m.x172*m.x12 +
0.0001*m.x172*m.x13 + 0.0001*m.x172*m.x14 + 0.0001*m.x172*m.x15 + 0.0001*m.x172*m.x16 + 0.0001*
m.x172*m.x17 + 0.0001*m.x172*m.x18 + 0.0001*m.x172*m.x19 + 0.0001*m.x172*m.x20 + 0.0001*m.x172*
m.x21 + 0.0001*m.x172*m.x22 + 0.0001*m.x172*m.x23 + 0.0001*m.x172*m.x24 + 0.0001*m.x172*m.x25 +
0.0001*m.x172*m.x26 + 0.0001*m.x172*m.x27 + 0.0001*m.x172*m.x28 + 0.0001*m.x172*m.x29 + 0.0001*
m.x172*m.x30 + 0.0001*m.x172*m.x31 + 0.0001*m.x172*m.x32 + 0.0001*m.x172*m.x33 + 0.0001*m.x172*
m.x34 + 0.0001*m.x172*m.x35 + 0.0001*m.x172*m.x36 + 0.0001*m.x172*m.x37 + 0.0001*m.x172*m.x38 +
0.0001*m.x172*m.x39 + 0.0001*m.x172*m.x40 + 0.0001*m.x172*m.x41 + 0.0001*m.x172*m.x42 + 0.0001*
m.x172*m.x43 + 0.0001*m.x172*m.x44 + 0.0001*m.x172*m.x45 + 0.0001*m.x172*m.x46 + 0.0001*m.x172*
m.x47 + 0.0001*m.x172*m.x48 + 0.0001*m.x172*m.x49 + 0.0001*m.x172*m.x50 + 0.0001*m.x172*m.x51 +
0.0001*m.x172*m.x52 + 0.0001*m.x172*m.x53 + 0.0001*m.x172*m.x54 + 0.0001*m.x172*m.x55 + 0.0001*
m.x172*m.x56 + 0.0001*m.x172*m.x57 + 0.0001*m.x172*m.x58 + 0.0001*m.x172*m.x59 + 0.0001*m.x172*
m.x60 + 0.0001*m.x172*m.x61 + 0.0001*m.x172*m.x62 + 0.0001*m.x172*m.x63 + 0.0001*m.x172*m.x64 +
0.0001*m.x172*m.x65 + 0.0001*m.x172*m.x66 + 0.0001*m.x172*m.x67 + 0.0001*m.x172*m.x68 + 0.0001*
m.x172*m.x69 + 0.0001*m.x172*m.x70 + 0.0001*m.x172*m.x71 + 0.0001*m.x172*m.x72 + 0.0001*m.x172*
m.x73 + 0.0001*m.x172*m.x74 + 0.0001*m.x172*m.x75 + 0.0001*m.x172*m.x76 + 0.0001*m.x172*m.x77 +
0.0001*m.x172*m.x78 + 0.0001*m.x172*m.x79 + 0.0001*m.x172*m.x80 + 0.0001*m.x172*m.x81 + 0.0001*
m.x172*m.x82 + 0.0001*m.x172*m.x83 + 0.0001*m.x172*m.x84 + 0.0001*m.x172*m.x85 + 0.0001*m.x172*
m.x86 + 0.0001*m.x172*m.x87 + 0.0001*m.x172*m.x88 + 0.0001*m.x172*m.x89 + 0.0001*m.x172*m.x90 +
0.0001*m.x172*m.x91 + 0.0001*m.x172*m.x92 + 0.0001*m.x172*m.x93 + 0.0001*m.x172*m.x94 + 0.0001*
m.x172*m.x95 + 0.0001*m.x172*m.x96 + 0.0001*m.x172*m.x97 + 0.0001*m.x172*m.x98 + 0.0001*m.x172*
m.x99 + 0.0001*m.x172*m.x100 + 0.0001*m.x172*m.x101 + 0.0001*m.x172*m.x102 + 0.0001*m.x172*m.x103
+ 0.0001*m.x172*m.x104 + 1.99237583036916*m.x172*m.x105 + 0.0001*m.x172*m.x106 + 0.0001*m.x172*
m.x107 + 0.0001*m.x172*m.x108 + 0.0001*m.x172*m.x109 + 0.0001*m.x172*m.x110 + 0.0001*m.x172*
m.x111 + 0.0001*m.x172*m.x112 + 0.0001*m.x172*m.x113 + 0.0001*m.x172*m.x114 + 0.0001*m.x172*
m.x115 + 0.0001*m.x172*m.x116 + 0.0001*m.x172*m.x117 + 0.0001*m.x172*m.x118 + 0.0001*m.x172*
m.x119 + 0.0001*m.x172*m.x120 + 0.0001*m.x172*m.x121 + 0.0001*m.x172*m.x122 + 0.0001*m.x172*
m.x123 + 0.0001*m.x172*m.x124 + 0.0001*m.x172*m.x125 + 0.0001*m.x172*m.x126 + 0.0001*m.x172*
m.x127 + 0.0001*m.x172*m.x128 + 0.0001*m.x172*m.x129 + 0.0001*m.x172*m.x130 + 0.0001*m.x172*
m.x131 + 0.0001*m.x172*m.x132 + 0.0001*m.x172*m.x133 + 0.0001*m.x172*m.x134 + 0.0001*m.x172*
m.x135 + 0.0001*m.x172*m.x136 + 0.0001*m.x172*m.x137 + 0.0001*m.x172*m.x138 + 0.0001*m.x172*
m.x139 + 0.0001*m.x172*m.x140 + 0.0001*m.x172*m.x141 + 0.0001*m.x172*m.x142 + 0.0001*m.x172*
m.x143 + 0.0001*m.x172*m.x144 + 0.0001*m.x172*m.x145 + 0.0001*m.x172*m.x146 + 0.0001*m.x172*
m.x147 + 0.0001*m.x172*m.x148 + 0.0001*m.x172*m.x149 + 0.0001*m.x172*m.x150 + 0.0001*m.x172*
m.x151 + 0.0001*m.x172*m.x152 + 0.0001*m.x172*m.x153 + 0.0001*m.x172*m.x154 + 0.0001*m.x172*
m.x155 + 0.0001*m.x172*m.x156 + 0.0001*m.x172*m.x157 + 0.0001*m.x172*m.x158 + 0.0001*m.x172*
m.x159 + 0.0001*m.x172*m.x160 + 0.0001*m.x172*m.x161 + 0.0001*m.x172*m.x162 + 0.0001*m.x172*
m.x163 + 0.0001*m.x172*m.x164 + 0.0001*m.x172*m.x165 + 0.0001*m.x172*m.x166 + 0.0001*m.x172*
m.x167 + 0.0001*m.x172*m.x168 + 0.0001*m.x172*m.x169 + 0.0001*m.x172*m.x170 + 0.0001*m.x172*
m.x171 + 2.30979835693109*m.x172**2 + 0.0001*m.x172*m.x173 + 0.0001*m.x172*m.x174 + 0.0001*m.x172
*m.x175 + 0.0001*m.x172*m.x176 + 0.0001*m.x172*m.x177 + 0.0001*m.x172*m.x178 + 0.0001*m.x172*
m.x179 + 0.0001*m.x172*m.x180 + 0.0001*m.x172*m.x181 + 0.0001*m.x172*m.x182 + 0.0001*m.x172*
m.x183 + 0.0001*m.x172*m.x184 + 0.0001*m.x172*m.x185 + 0.0001*m.x173*m.x1 + 0.0001*m.x173*m.x2 +
0.0001*m.x173*m.x3 + 0.0001*m.x173*m.x4 + 0.0001*m.x173*m.x5 + 0.0001*m.x173*m.x6 + 0.0001*m.x173
*m.x7 + 0.0001*m.x173*m.x8 + 0.0001*m.x173*m.x9 + 0.0001*m.x173*m.x10 + 0.0001*m.x173*m.x11 +
0.0001*m.x173*m.x12 + 0.0001*m.x173*m.x13 + 0.0001*m.x173*m.x14 + 0.0001*m.x173*m.x15 + 0.0001*
m.x173*m.x16 + 0.0001*m.x173*m.x17 + 0.0001*m.x173*m.x18 + 0.0001*m.x173*m.x19 + 0.0001*m.x173*
m.x20 + 0.0001*m.x173*m.x21 + 0.0001*m.x173*m.x22 + 0.0001*m.x173*m.x23 + 0.0001*m.x173*m.x24 +
0.0001*m.x173*m.x25 + 0.0001*m.x173*m.x26 + 0.0001*m.x173*m.x27 + 0.0001*m.x173*m.x28 + 0.0001*
m.x173*m.x29 + 0.0001*m.x173*m.x30 + 0.0001*m.x173*m.x31 + 0.0001*m.x173*m.x32 + 0.0001*m.x173*
m.x33 + 0.0001*m.x173*m.x34 + 0.0001*m.x173*m.x35 + 0.0001*m.x173*m.x36 + 0.0001*m.x173*m.x37 +
0.0001*m.x173*m.x38 + 0.0001*m.x173*m.x39 + 0.0001*m.x173*m.x40 + 0.0001*m.x173*m.x41 + 0.0001*
m.x173*m.x42 + 0.0001*m.x173*m.x43 + 0.0001*m.x173*m.x44 + 0.0001*m.x173*m.x45 + 0.0001*m.x173*
m.x46 + 0.0001*m.x173*m.x47 + 0.0001*m.x173*m.x48 + 0.0001*m.x173*m.x49 + 0.0001*m.x173*m.x50 +
0.0001*m.x173*m.x51 + 0.0001*m.x173*m.x52 + 0.0001*m.x173*m.x53 + 0.0001*m.x173*m.x54 + 0.0001*
m.x173*m.x55 + 0.0001*m.x173*m.x56 + 0.0001*m.x173*m.x57 + 0.0001*m.x173*m.x58 + 0.0001*m.x173*
m.x59 + 0.0001*m.x173*m.x60 + 0.0001*m.x173*m.x61 + 0.0001*m.x173*m.x62 + 0.0001*m.x173*m.x63 +
0.0001*m.x173*m.x64 + 0.0001*m.x173*m.x65 + 0.0001*m.x173*m.x66 + 0.0001*m.x173*m.x67 + 0.0001*
m.x173*m.x68 + 0.0001*m.x173*m.x69 + 0.0001*m.x173*m.x70 + 0.0001*m.x173*m.x71 + 0.0001*m.x173*
m.x72 + 0.0001*m.x173*m.x73 + 0.0001*m.x173*m.x74 + 0.0001*m.x173*m.x75 + 0.0001*m.x173*m.x76 +
0.0001*m.x173*m.x77 + 0.0001*m.x173*m.x78 + 0.0001*m.x173*m.x79 + 0.0001*m.x173*m.x80 + 0.0001*
m.x173*m.x81 + 0.0001*m.x173*m.x82 + 0.0001*m.x173*m.x83 + 0.0001*m.x173*m.x84 + 0.0001*m.x173*
m.x85 + 0.0001*m.x173*m.x86 + 0.0001*m.x173*m.x87 + 0.0001*m.x173*m.x88 + 0.0001*m.x173*m.x89 +
0.0001*m.x173*m.x90 + 0.0001*m.x173*m.x91 + 0.0001*m.x173*m.x92 + 0.0001*m.x173*m.x93 + 0.0001*
m.x173*m.x94 + 0.0001*m.x173*m.x95 + 0.0001*m.x173*m.x96 + 0.0001*m.x173*m.x97 + 0.0001*m.x173*
m.x98 + 0.0001*m.x173*m.x99 + 0.0001*m.x173*m.x100 + 0.0001*m.x173*m.x101 + 0.0001*m.x173*m.x102
+ 0.0001*m.x173*m.x103 + 0.0001*m.x173*m.x104 + 1.97716255370005*m.x173*m.x105 + 0.0001*m.x173*
m.x106 + 0.0001*m.x173*m.x107 + 0.0001*m.x173*m.x108 + 0.0001*m.x173*m.x109 + 0.0001*m.x173*
m.x110 + 0.0001*m.x173*m.x111 + 0.0001*m.x173*m.x112 + 0.0001*m.x173*m.x113 + 0.0001*m.x173*
m.x114 + 0.0001*m.x173*m.x115 + 0.0001*m.x173*m.x116 + 0.0001*m.x173*m.x117 + 0.0001*m.x173*
m.x118 + 0.0001*m.x173*m.x119 + 0.0001*m.x173*m.x120 + 0.0001*m.x173*m.x121 + 0.0001*m.x173*
m.x122 + 0.0001*m.x173*m.x123 + 0.0001*m.x173*m.x124 + 0.0001*m.x173*m.x125 + 0.0001*m.x173*
m.x126 + 0.0001*m.x173*m.x127 + 0.0001*m.x173*m.x128 + 0.0001*m.x173*m.x129 + 0.0001*m.x173*
m.x130 + 0.0001*m.x173*m.x131 + 0.0001*m.x173*m.x132 + 0.0001*m.x173*m.x133 + 0.0001*m.x173*
m.x134 + 0.0001*m.x173*m.x135 + 0.0001*m.x173*m.x136 + 0.0001*m.x173*m.x137 + 0.0001*m.x173*
m.x138 + 0.0001*m.x173*m.x139 + 0.0001*m.x173*m.x140 + 0.0001*m.x173*m.x141 + 0.0001*m.x173*
m.x142 + 0.0001*m.x173*m.x143 + 0.0001*m.x173*m.x144 + 0.0001*m.x173*m.x145 + 0.0001*m.x173*
m.x146 + 0.0001*m.x173*m.x147 + 0.0001*m.x173*m.x148 + 0.0001*m.x173*m.x149 + 0.0001*m.x173*
m.x150 + 0.0001*m.x173*m.x151 + 0.0001*m.x173*m.x152 + 0.0001*m.x173*m.x153 + 0.0001*m.x173*
m.x154 + 0.0001*m.x173*m.x155 + 0.0001*m.x173*m.x156 + 0.0001*m.x173*m.x157 + 0.0001*m.x173*
m.x158 + 0.0001*m.x173*m.x159 + 0.0001*m.x173*m.x160 + 0.0001*m.x173*m.x161 + 0.0001*m.x173*
m.x162 + 0.0001*m.x173*m.x163 + 0.0001*m.x173*m.x164 + 0.0001*m.x173*m.x165 + 0.0001*m.x173*
m.x166 + 0.0001*m.x173*m.x167 + 0.0001*m.x173*m.x168 + 0.0001*m.x173*m.x169 + 0.0001*m.x173*
m.x170 + 0.0001*m.x173*m.x171 + 0.0001*m.x173*m.x172 + 2.29216120067462*m.x173**2 + 0.0001*m.x173
*m.x174 + 0.0001*m.x173*m.x175 + 0.0001*m.x173*m.x176 + 0.0001*m.x173*m.x177 + 0.0001*m.x173*
m.x178 + 0.0001*m.x173*m.x179 + 0.0001*m.x173*m.x180 + 0.0001*m.x173*m.x181 + 0.0001*m.x173*
m.x182 + 0.0001*m.x173*m.x183 + 0.0001*m.x173*m.x184 + 0.0001*m.x173*m.x185 + 0.0001*m.x174*m.x1
+ 0.0001*m.x174*m.x2 + 0.0001*m.x174*m.x3 + 0.0001*m.x174*m.x4 + 0.0001*m.x174*m.x5 + 0.0001*
m.x174*m.x6 + 0.0001*m.x174*m.x7 + 0.0001*m.x174*m.x8 + 0.0001*m.x174*m.x9 + 0.0001*m.x174*m.x10
+ 0.0001*m.x174*m.x11 + 0.0001*m.x174*m.x12 + 0.0001*m.x174*m.x13 + 0.0001*m.x174*m.x14 + 0.0001
*m.x174*m.x15 + 0.0001*m.x174*m.x16 + 0.0001*m.x174*m.x17 + 0.0001*m.x174*m.x18 + 0.0001*m.x174*
m.x19 + 0.0001*m.x174*m.x20 + 0.0001*m.x174*m.x21 + 0.0001*m.x174*m.x22 + 0.0001*m.x174*m.x23 +
0.0001*m.x174*m.x24 + 0.0001*m.x174*m.x25 + 0.0001*m.x174*m.x26 + 0.0001*m.x174*m.x27 + 0.0001*
m.x174*m.x28 + 0.0001*m.x174*m.x29 + 0.0001*m.x174*m.x30 + 0.0001*m.x174*m.x31 + 0.0001*m.x174*
m.x32 + 0.0001*m.x174*m.x33 + 0.0001*m.x174*m.x34 + 0.0001*m.x174*m.x35 + 0.0001*m.x174*m.x36 +
0.0001*m.x174*m.x37 + 0.0001*m.x174*m.x38 + 0.0001*m.x174*m.x39 + 0.0001*m.x174*m.x40 + 0.0001*
m.x174*m.x41 + 0.0001*m.x174*m.x42 + 0.0001*m.x174*m.x43 + 0.0001*m.x174*m.x44 + 0.0001*m.x174*
m.x45 + 0.0001*m.x174*m.x46 + 0.0001*m.x174*m.x47 + 0.0001*m.x174*m.x48 + 0.0001*m.x174*m.x49 +
0.0001*m.x174*m.x50 + 0.0001*m.x174*m.x51 + 0.0001*m.x174*m.x52 + 0.0001*m.x174*m.x53 + 0.0001*
m.x174*m.x54 + 0.0001*m.x174*m.x55 + 0.0001*m.x174*m.x56 + 0.0001*m.x174*m.x57 + 0.0001*m.x174*
m.x58 + 0.0001*m.x174*m.x59 + 0.0001*m.x174*m.x60 + 0.0001*m.x174*m.x61 + 0.0001*m.x174*m.x62 +
0.0001*m.x174*m.x63 + 0.0001*m.x174*m.x64 + 0.0001*m.x174*m.x65 + 0.0001*m.x174*m.x66 + 0.0001*
m.x174*m.x67 + 0.0001*m.x174*m.x68 + 0.0001*m.x174*m.x69 + 0.0001*m.x174*m.x70 + 0.0001*m.x174*
m.x71 + 0.0001*m.x174*m.x72 + 0.0001*m.x174*m.x73 + 0.0001*m.x174*m.x74 + 0.0001*m.x174*m.x75 +
0.0001*m.x174*m.x76 + 0.0001*m.x174*m.x77 + 0.0001*m.x174*m.x78 + 0.0001*m.x174*m.x79 + 0.0001*
m.x174*m.x80 + 0.0001*m.x174*m.x81 + 0.0001*m.x174*m.x82 + 0.0001*m.x174*m.x83 + 0.0001*m.x174*
m.x84 + 0.0001*m.x174*m.x85 + 0.0001*m.x174*m.x86 + 0.0001*m.x174*m.x87 + 0.0001*m.x174*m.x88 +
0.0001*m.x174*m.x89 + 0.0001*m.x174*m.x90 + 0.0001*m.x174*m.x91 + 0.0001*m.x174*m.x92 + 0.0001*
m.x174*m.x93 + 0.0001*m.x174*m.x94 + 0.0001*m.x174*m.x95 + 0.0001*m.x174*m.x96 + 0.0001*m.x174*
m.x97 + 0.0001*m.x174*m.x98 + 0.0001*m.x174*m.x99 + 0.0001*m.x174*m.x100 + 0.0001*m.x174*m.x101
+ 0.0001*m.x174*m.x102 + 0.0001*m.x174*m.x103 + 0.0001*m.x174*m.x104 + 0.0001*m.x174*m.x105 +
2.18408636387853*m.x174*m.x106 + 0.0001*m.x174*m.x107 + 0.0001*m.x174*m.x108 + 0.0001*m.x174*
m.x109 + 0.0001*m.x174*m.x110 + 0.0001*m.x174*m.x111 + 0.0001*m.x174*m.x112 + 0.0001*m.x174*
m.x113 + 0.0001*m.x174*m.x114 + 0.0001*m.x174*m.x115 + 0.0001*m.x174*m.x116 + 0.0001*m.x174*
m.x117 + 0.0001*m.x174*m.x118 + 0.0001*m.x174*m.x119 + 0.0001*m.x174*m.x120 + 0.0001*m.x174*
m.x121 + 0.0001*m.x174*m.x122 + 0.0001*m.x174*m.x123 + 0.0001*m.x174*m.x124 + 0.0001*m.x174*
m.x125 + 0.0001*m.x174*m.x126 + 0.0001*m.x174*m.x127 + 0.0001*m.x174*m.x128 + 0.0001*m.x174*
m.x129 + 0.0001*m.x174*m.x130 + 0.0001*m.x174*m.x131 + 0.0001*m.x174*m.x132 + 0.0001*m.x174*
m.x133 + 0.0001*m.x174*m.x134 + 0.0001*m.x174*m.x135 + 0.0001*m.x174*m.x136 + 0.0001*m.x174*
m.x137 + 0.0001*m.x174*m.x138 + 0.0001*m.x174*m.x139 + 0.0001*m.x174*m.x140 + 0.0001*m.x174*
m.x141 + 0.0001*m.x174*m.x142 + 0.0001*m.x174*m.x143 + 0.0001*m.x174*m.x144 + 0.0001*m.x174*
m.x145 + 0.0001*m.x174*m.x146 + 0.0001*m.x174*m.x147 + 0.0001*m.x174*m.x148 + 0.0001*m.x174*
m.x149 + 0.0001*m.x174*m.x150 + 0.0001*m.x174*m.x151 + 0.0001*m.x174*m.x152 + 0.0001*m.x174*
m.x153 + 0.0001*m.x174*m.x154 + 0.0001*m.x174*m.x155 + 0.0001*m.x174*m.x156 + 0.0001*m.x174*
m.x157 + 0.0001*m.x174*m.x158 + 0.0001*m.x174*m.x159 + 0.0001*m.x174*m.x160 + 0.0001*m.x174*
m.x161 + 0.0001*m.x174*m.x162 + 0.0001*m.x174*m.x163 + 0.0001*m.x174*m.x164 + 0.0001*m.x174*
m.x165 + 0.0001*m.x174*m.x166 + 0.0001*m.x174*m.x167 + 0.0001*m.x174*m.x168 + 0.0001*m.x174*
m.x169 + 0.0001*m.x174*m.x170 + 0.0001*m.x174*m.x171 + 0.0001*m.x174*m.x172 + 0.0001*m.x174*
m.x173 + 2.58965215960902*m.x174**2 + 0.0001*m.x174*m.x175 + 0.0001*m.x174*m.x176 + 0.0001*m.x174
*m.x177 + 0.0001*m.x174*m.x178 + 0.0001*m.x174*m.x179 + 0.0001*m.x174*m.x180 + 0.0001*m.x174*
m.x181 + 0.0001*m.x174*m.x182 + 0.0001*m.x174*m.x183 + 0.0001*m.x174*m.x184 + 0.0001*m.x174*
m.x185 + 0.0001*m.x175*m.x1 + 0.0001*m.x175*m.x2 + 0.0001*m.x175*m.x3 + 0.0001*m.x175*m.x4 +
0.0001*m.x175*m.x5 + 0.0001*m.x175*m.x6 + 0.0001*m.x175*m.x7 + 0.0001*m.x175*m.x8 + 0.0001*m.x175
*m.x9 + 0.0001*m.x175*m.x10 + 0.0001*m.x175*m.x11 + 0.0001*m.x175*m.x12 + 0.0001*m.x175*m.x13 +
0.0001*m.x175*m.x14 + 0.0001*m.x175*m.x15 + 0.0001*m.x175*m.x16 + 0.0001*m.x175*m.x17 + 0.0001*
m.x175*m.x18 + 0.0001*m.x175*m.x19 + 0.0001*m.x175*m.x20 + 0.0001*m.x175*m.x21 + 0.0001*m.x175*
m.x22 + 0.0001*m.x175*m.x23 + 0.0001*m.x175*m.x24 + 0.0001*m.x175*m.x25 + 0.0001*m.x175*m.x26 +
0.0001*m.x175*m.x27 + 0.0001*m.x175*m.x28 + 0.0001*m.x175*m.x29 + 0.0001*m.x175*m.x30 + 0.0001*
m.x175*m.x31 + 0.0001*m.x175*m.x32 + 0.0001*m.x175*m.x33 + 0.0001*m.x175*m.x34 + 0.0001*m.x175*
m.x35 + 0.0001*m.x175*m.x36 + 0.0001*m.x175*m.x37 + 0.0001*m.x175*m.x38 + 0.0001*m.x175*m.x39 +
0.0001*m.x175*m.x40 + 0.0001*m.x175*m.x41 + 0.0001*m.x175*m.x42 + 0.0001*m.x175*m.x43 + 0.0001*
m.x175*m.x44 + 0.0001*m.x175*m.x45 + 0.0001*m.x175*m.x46 + 0.0001*m.x175*m.x47 + 0.0001*m.x175*
m.x48 + 0.0001*m.x175*m.x49 + 0.0001*m.x175*m.x50 + 0.0001*m.x175*m.x51 + 0.0001*m.x175*m.x52 +
0.0001*m.x175*m.x53 + 0.0001*m.x175*m.x54 + 0.0001*m.x175*m.x55 + 0.0001*m.x175*m.x56 + 0.0001*
m.x175*m.x57 + 0.0001*m.x175*m.x58 + 0.0001*m.x175*m.x59 + 0.0001*m.x175*m.x60 + 0.0001*m.x175*
m.x61 + 0.0001*m.x175*m.x62 + 0.0001*m.x175*m.x63 + 0.0001*m.x175*m.x64 + 0.0001*m.x175*m.x65 +
0.0001*m.x175*m.x66 + 0.0001*m.x175*m.x67 + 0.0001*m.x175*m.x68 + 0.0001*m.x175*m.x69 + 0.0001*
m.x175*m.x70 + 0.0001*m.x175*m.x71 + 0.0001*m.x175*m.x72 + 0.0001*m.x175*m.x73 + 0.0001*m.x175*
m.x74 + 0.0001*m.x175*m.x75 + 0.0001*m.x175*m.x76 + 0.0001*m.x175*m.x77 + 0.0001*m.x175*m.x78 +
0.0001*m.x175*m.x79 + 0.0001*m.x175*m.x80 + 0.0001*m.x175*m.x81 + 0.0001*m.x175*m.x82 + 0.0001*
m.x175*m.x83 + 0.0001*m.x175*m.x84 + 0.0001*m.x175*m.x85 + 0.0001*m.x175*m.x86 + 0.0001*m.x175*
m.x87 + 0.0001*m.x175*m.x88 + 0.0001*m.x175*m.x89 + 0.0001*m.x175*m.x90 + 0.0001*m.x175*m.x91 +
0.0001*m.x175*m.x92 + 0.0001*m.x175*m.x93 + 0.0001*m.x175*m.x94 + 0.0001*m.x175*m.x95 + 0.0001*
m.x175*m.x96 + 0.0001*m.x175*m.x97 + 0.0001*m.x175*m.x98 + 0.0001*m.x175*m.x99 + 0.0001*m.x175*
m.x100 + 0.0001*m.x175*m.x101 + 0.0001*m.x175*m.x102 + 0.0001*m.x175*m.x103 + 0.0001*m.x175*
m.x104 + 0.0001*m.x175*m.x105 + 0.0001*m.x175*m.x106 + 1.98513072555675*m.x175*m.x107 + 0.0001*
m.x175*m.x108 + 0.0001*m.x175*m.x109 + 0.0001*m.x175*m.x110 + 0.0001*m.x175*m.x111 + 0.0001*
m.x175*m.x112 + 0.0001*m.x175*m.x113 + 0.0001*m.x175*m.x114 + 0.0001*m.x175*m.x115 + 0.0001*
m.x175*m.x116 + 0.0001*m.x175*m.x117 + 0.0001*m.x175*m.x118 + 0.0001*m.x175*m.x119 + 0.0001*
m.x175*m.x120 + 0.0001*m.x175*m.x121 + 0.0001*m.x175*m.x122 + 0.0001*m.x175*m.x123 + 0.0001*
m.x175*m.x124 + 0.0001*m.x175*m.x125 + 0.0001*m.x175*m.x126 + 0.0001*m.x175*m.x127 + 0.0001*
m.x175*m.x128 + 0.0001*m.x175*m.x129 + 0.0001*m.x175*m.x130 + 0.0001*m.x175*m.x131 + 0.0001*
m.x175*m.x132 + 0.0001*m.x175*m.x133 + 0.0001*m.x175*m.x134 + 0.0001*m.x175*m.x135 + 0.0001*
m.x175*m.x136 + 0.0001*m.x175*m.x137 + 0.0001*m.x175*m.x138 + 0.0001*m.x175*m.x139 + 0.0001*
m.x175*m.x140 + 0.0001*m.x175*m.x141 + 0.0001*m.x175*m.x142 + 0.0001*m.x175*m.x143 + 0.0001*
m.x175*m.x144 + 0.0001*m.x175*m.x145 + 0.0001*m.x175*m.x146 + 0.0001*m.x175*m.x147 + 0.0001*
m.x175*m.x148 + 0.0001*m.x175*m.x149 + 0.0001*m.x175*m.x150 + 0.0001*m.x175*m.x151 + 0.0001*
m.x175*m.x152 + 0.0001*m.x175*m.x153 + 0.0001*m.x175*m.x154 + 0.0001*m.x175*m.x155 + 0.0001*
m.x175*m.x156 + 0.0001*m.x175*m.x157 + 0.0001*m.x175*m.x158 + 0.0001*m.x175*m.x159 + 0.0001*
m.x175*m.x160 + 0.0001*m.x175*m.x161 + 0.0001*m.x175*m.x162 + 0.0001*m.x175*m.x163 + 0.0001*
m.x175*m.x164 + 0.0001*m.x175*m.x165 + 0.0001*m.x175*m.x166 + 0.0001*m.x175*m.x167 + 0.0001*
m.x175*m.x168 + 0.0001*m.x175*m.x169 + 0.0001*m.x175*m.x170 + 0.0001*m.x175*m.x171 + 0.0001*
m.x175*m.x172 + 0.0001*m.x175*m.x173 + 0.0001*m.x175*m.x174 + 2.3537505022527*m.x175**2 + 0.0001*
m.x175*m.x176 + 0.0001*m.x175*m.x177 + 0.0001*m.x175*m.x178 + 0.0001*m.x175*m.x179 + 0.0001*
m.x175*m.x180 + 0.0001*m.x175*m.x181 + 0.0001*m.x175*m.x182 + 0.0001*m.x175*m.x183 + 0.0001*
m.x175*m.x184 + 0.0001*m.x175*m.x185 + 0.0001*m.x176*m.x1 + 0.0001*m.x176*m.x2 + 0.0001*m.x176*
m.x3 + 0.0001*m.x176*m.x4 + 0.0001*m.x176*m.x5 + 0.0001*m.x176*m.x6 + 0.0001*m.x176*m.x7 + 0.0001
*m.x176*m.x8 + 0.0001*m.x176*m.x9 + 0.0001*m.x176*m.x10 + 0.0001*m.x176*m.x11 + 0.0001*m.x176*
m.x12 + 0.0001*m.x176*m.x13 + 0.0001*m.x176*m.x14 + 0.0001*m.x176*m.x15 + 0.0001*m.x176*m.x16 +
0.0001*m.x176*m.x17 + 0.0001*m.x176*m.x18 + 0.0001*m.x176*m.x19 + 0.0001*m.x176*m.x20 + 0.0001*
m.x176*m.x21 + 0.0001*m.x176*m.x22 + 0.0001*m.x176*m.x23 + 0.0001*m.x176*m.x24 + 0.0001*m.x176*
m.x25 + 0.0001*m.x176*m.x26 + 0.0001*m.x176*m.x27 + 0.0001*m.x176*m.x28 + 0.0001*m.x176*m.x29 +
0.0001*m.x176*m.x30 + 0.0001*m.x176*m.x31 + 0.0001*m.x176*m.x32 + 0.0001*m.x176*m.x33 + 0.0001*
m.x176*m.x34 + 0.0001*m.x176*m.x35 + 0.0001*m.x176*m.x36 + 0.0001*m.x176*m.x37 + 0.0001*m.x176*
m.x38 + 0.0001*m.x176*m.x39 + 0.0001*m.x176*m.x40 + 0.0001*m.x176*m.x41 + 0.0001*m.x176*m.x42 +
0.0001*m.x176*m.x43 + 0.0001*m.x176*m.x44 + 0.0001*m.x176*m.x45 + 0.0001*m.x176*m.x46 + 0.0001*
m.x176*m.x47 + 0.0001*m.x176*m.x48 + 0.0001*m.x176*m.x49 + 0.0001*m.x176*m.x50 + 0.0001*m.x176*
m.x51 + 0.0001*m.x176*m.x52 + 0.0001*m.x176*m.x53 + 0.0001*m.x176*m.x54 + 0.0001*m.x176*m.x55 +
0.0001*m.x176*m.x56 + 0.0001*m.x176*m.x57 + 0.0001*m.x176*m.x58 + 0.0001*m.x176*m.x59 + 0.0001*
m.x176*m.x60 + 0.0001*m.x176*m.x61 + 0.0001*m.x176*m.x62 + 0.0001*m.x176*m.x63 + 0.0001*m.x176*
m.x64 + 0.0001*m.x176*m.x65 + 0.0001*m.x176*m.x66 + 0.0001*m.x176*m.x67 + 0.0001*m.x176*m.x68 +
0.0001*m.x176*m.x69 + 0.0001*m.x176*m.x70 + 0.0001*m.x176*m.x71 + 0.0001*m.x176*m.x72 + 0.0001*
m.x176*m.x73 + 0.0001*m.x176*m.x74 + 0.0001*m.x176*m.x75 + 0.0001*m.x176*m.x76 + 0.0001*m.x176*
m.x77 + 0.0001*m.x176*m.x78 + 0.0001*m.x176*m.x79 + 0.0001*m.x176*m.x80 + 0.0001*m.x176*m.x81 +
0.0001*m.x176*m.x82 + 0.0001*m.x176*m.x83 + 0.0001*m.x176*m.x84 + 0.0001*m.x176*m.x85 + 0.0001*
m.x176*m.x86 + 0.0001*m.x176*m.x87 + 0.0001*m.x176*m.x88 + 0.0001*m.x176*m.x89 + 0.0001*m.x176*
m.x90 + 0.0001*m.x176*m.x91 + 0.0001*m.x176*m.x92 + 0.0001*m.x176*m.x93 + 0.0001*m.x176*m.x94 +
0.0001*m.x176*m.x95 + 0.0001*m.x176*m.x96 + 0.0001*m.x176*m.x97 + 0.0001*m.x176*m.x98 + 0.0001*
m.x176*m.x99 + 0.0001*m.x176*m.x100 + 0.0001*m.x176*m.x101 + 0.0001*m.x176*m.x102 + 0.0001*m.x176
*m.x103 + 0.0001*m.x176*m.x104 + 0.0001*m.x176*m.x105 + 0.0001*m.x176*m.x106 + 0.0001*m.x176*
m.x107 + 2.06902936086386*m.x176*m.x108 + 0.0001*m.x176*m.x109 + 0.0001*m.x176*m.x110 + 0.0001*
m.x176*m.x111 + 0.0001*m.x176*m.x112 + 0.0001*m.x176*m.x113 + 0.0001*m.x176*m.x114 + 0.0001*
m.x176*m.x115 + 0.0001*m.x176*m.x116 + 0.0001*m.x176*m.x117 + 0.0001*m.x176*m.x118 + 0.0001*
m.x176*m.x119 + 0.0001*m.x176*m.x120 + 0.0001*m.x176*m.x121 + 0.0001*m.x176*m.x122 + 0.0001*
m.x176*m.x123 + 0.0001*m.x176*m.x124 + 0.0001*m.x176*m.x125 + 0.0001*m.x176*m.x126 + 0.0001*
m.x176*m.x127 + 0.0001*m.x176*m.x128 + 0.0001*m.x176*m.x129 + 0.0001*m.x176*m.x130 + 0.0001*
m.x176*m.x131 + 0.0001*m.x176*m.x132 + 0.0001*m.x176*m.x133 + 0.0001*m.x176*m.x134 + 0.0001*
m.x176*m.x135 + 0.0001*m.x176*m.x136 + 0.0001*m.x176*m.x137 + 0.0001*m.x176*m.x138 + 0.0001*
m.x176*m.x139 + 0.0001*m.x176*m.x140 + 0.0001*m.x176*m.x141 + 0.0001*m.x176*m.x142 + 0.0001*
m.x176*m.x143 + 0.0001*m.x176*m.x144 + 0.0001*m.x176*m.x145 + 0.0001*m.x176*m.x146 + 0.0001*
m.x176*m.x147 + 0.0001*m.x176*m.x148 + 0.0001*m.x176*m.x149 + 0.0001*m.x176*m.x150 + 0.0001*
m.x176*m.x151 + 0.0001*m.x176*m.x152 + 0.0001*m.x176*m.x153 + 0.0001*m.x176*m.x154 + 0.0001*
m.x176*m.x155 + 0.0001*m.x176*m.x156 + 0.0001*m.x176*m.x157 + 0.0001*m.x176*m.x158 + 0.0001*
m.x176*m.x159 + 0.0001*m.x176*m.x160 + 0.0001*m.x176*m.x161 + 0.0001*m.x176*m.x162 + 0.0001*
m.x176*m.x163 + 0.0001*m.x176*m.x164 + 0.0001*m.x176*m.x165 + 0.0001*m.x176*m.x166 + 0.0001*
m.x176*m.x167 + 0.0001*m.x176*m.x168 + 0.0001*m.x176*m.x169 + 0.0001*m.x176*m.x170 + 0.0001*
m.x176*m.x171 + 0.0001*m.x176*m.x172 + 0.0001*m.x176*m.x173 + 0.0001*m.x176*m.x174 + 0.0001*
m.x176*m.x175 + 2.36682670060936*m.x176**2 + 0.0001*m.x176*m.x177 + 0.0001*m.x176*m.x178 + 0.0001
*m.x176*m.x179 + 0.0001*m.x176*m.x180 + 0.0001*m.x176*m.x181 + 0.0001*m.x176*m.x182 + 0.0001*
m.x176*m.x183 + 0.0001*m.x176*m.x184 + 0.0001*m.x176*m.x185 + 0.0001*m.x177*m.x1 + 0.0001*m.x177*
m.x2 + 0.0001*m.x177*m.x3 + 0.0001*m.x177*m.x4 + 0.0001*m.x177*m.x5 + 0.0001*m.x177*m.x6 + 0.0001
*m.x177*m.x7 + 0.0001*m.x177*m.x8 + 0.0001*m.x177*m.x9 + 0.0001*m.x177*m.x10 + 0.0001*m.x177*
m.x11 + 0.0001*m.x177*m.x12 + 0.0001*m.x177*m.x13 + 0.0001*m.x177*m.x14 + 0.0001*m.x177*m.x15 +
0.0001*m.x177*m.x16 + 0.0001*m.x177*m.x17 + 0.0001*m.x177*m.x18 + 0.0001*m.x177*m.x19 + 0.0001*
m.x177*m.x20 + 0.0001*m.x177*m.x21 + 0.0001*m.x177*m.x22 + 0.0001*m.x177*m.x23 + 0.0001*m.x177*
m.x24 + 0.0001*m.x177*m.x25 + 0.0001*m.x177*m.x26 + 0.0001*m.x177*m.x27 + 0.0001*m.x177*m.x28 +
0.0001*m.x177*m.x29 + 0.0001*m.x177*m.x30 + 0.0001*m.x177*m.x31 + 0.0001*m.x177*m.x32 + 0.0001*
m.x177*m.x33 + 0.0001*m.x177*m.x34 + 0.0001*m.x177*m.x35 + 0.0001*m.x177*m.x36 + 0.0001*m.x177*
m.x37 + 0.0001*m.x177*m.x38 + 0.0001*m.x177*m.x39 + 0.0001*m.x177*m.x40 + 0.0001*m.x177*m.x41 +
0.0001*m.x177*m.x42 + 0.0001*m.x177*m.x43 + 0.0001*m.x177*m.x44 + 0.0001*m.x177*m.x45 + 0.0001*
m.x177*m.x46 + 0.0001*m.x177*m.x47 + 0.0001*m.x177*m.x48 + 0.0001*m.x177*m.x49 + 0.0001*m.x177*
m.x50 + 0.0001*m.x177*m.x51 + 0.0001*m.x177*m.x52 + 0.0001*m.x177*m.x53 + 0.0001*m.x177*m.x54 +
0.0001*m.x177*m.x55 + 0.0001*m.x177*m.x56 + 0.0001*m.x177*m.x57 + 0.0001*m.x177*m.x58 + 0.0001*
m.x177*m.x59 + 0.0001*m.x177*m.x60 + 0.0001*m.x177*m.x61 + 0.0001*m.x177*m.x62 + 0.0001*m.x177*
m.x63 + 0.0001*m.x177*m.x64 + 0.0001*m.x177*m.x65 + 0.0001*m.x177*m.x66 + 0.0001*m.x177*m.x67 +
0.0001*m.x177*m.x68 + 0.0001*m.x177*m.x69 + 0.0001*m.x177*m.x70 + 0.0001*m.x177*m.x71 + 0.0001*
m.x177*m.x72 + 0.0001*m.x177*m.x73 + 0.0001*m.x177*m.x74 + 0.0001*m.x177*m.x75 + 0.0001*m.x177*
m.x76 + 0.0001*m.x177*m.x77 + 0.0001*m.x177*m.x78 + 0.0001*m.x177*m.x79 + 0.0001*m.x177*m.x80 +
0.0001*m.x177*m.x81 + 0.0001*m.x177*m.x82 + 0.0001*m.x177*m.x83 + 0.0001*m.x177*m.x84 + 0.0001*
m.x177*m.x85 + 0.0001*m.x177*m.x86 + 0.0001*m.x177*m.x87 + 0.0001*m.x177*m.x88 + 0.0001*m.x177*
m.x89 + 0.0001*m.x177*m.x90 + 0.0001*m.x177*m.x91 + 0.0001*m.x177*m.x92 + 0.0001*m.x177*m.x93 +
0.0001*m.x177*m.x94 + 0.0001*m.x177*m.x95 + 0.0001*m.x177*m.x96 + 0.0001*m.x177*m.x97 + 0.0001*
m.x177*m.x98 + 0.0001*m.x177*m.x99 + 0.0001*m.x177*m.x100 + 0.0001*m.x177*m.x101 + 0.0001*m.x177*
m.x102 + 0.0001*m.x177*m.x103 + 0.0001*m.x177*m.x104 + 0.0001*m.x177*m.x105 + 0.0001*m.x177*
m.x106 + 0.0001*m.x177*m.x107 + 0.0001*m.x177*m.x108 + 2.08391055624166*m.x177*m.x109 + 0.0001*
m.x177*m.x110 + 0.0001*m.x177*m.x111 + 0.0001*m.x177*m.x112 + 0.0001*m.x177*m.x113 + 0.0001*
m.x177*m.x114 + 0.0001*m.x177*m.x115 + 0.0001*m.x177*m.x116 + 0.0001*m.x177*m.x117 + 0.0001*
m.x177*m.x118 + 0.0001*m.x177*m.x119 + 0.0001*m.x177*m.x120 + 0.0001*m.x177*m.x121 + 0.0001*
m.x177*m.x122 + 0.0001*m.x177*m.x123 + 0.0001*m.x177*m.x124 + 0.0001*m.x177*m.x125 + 0.0001*
m.x177*m.x126 + 0.0001*m.x177*m.x127 + 0.0001*m.x177*m.x128 + 0.0001*m.x177*m.x129 + 0.0001*
m.x177*m.x130 + 0.0001*m.x177*m.x131 + 0.0001*m.x177*m.x132 + 0.0001*m.x177*m.x133 + 0.0001*
m.x177*m.x134 + 0.0001*m.x177*m.x135 + 0.0001*m.x177*m.x136 + 0.0001*m.x177*m.x137 + 0.0001*
m.x177*m.x138 + 0.0001*m.x177*m.x139 + 0.0001*m.x177*m.x140 + 0.0001*m.x177*m.x141 + 0.0001*
m.x177*m.x142 + 0.0001*m.x177*m.x143 + 0.0001*m.x177*m.x144 + 0.0001*m.x177*m.x145 + 0.0001*
m.x177*m.x146 + 0.0001*m.x177*m.x147 + 0.0001*m.x177*m.x148 + 0.0001*m.x177*m.x149 + 0.0001*
m.x177*m.x150 + 0.0001*m.x177*m.x151 + 0.0001*m.x177*m.x152 + 0.0001*m.x177*m.x153 + 0.0001*
m.x177*m.x154 + 0.0001*m.x177*m.x155 + 0.0001*m.x177*m.x156 + 0.0001*m.x177*m.x157 + 0.0001*
m.x177*m.x158 + 0.0001*m.x177*m.x159 + 0.0001*m.x177*m.x160 + 0.0001*m.x177*m.x161 + 0.0001*
m.x177*m.x162 + 0.0001*m.x177*m.x163 + 0.0001*m.x177*m.x164 + 0.0001*m.x177*m.x165 + 0.0001*
m.x177*m.x166 + 0.0001*m.x177*m.x167 + 0.0001*m.x177*m.x168 + 0.0001*m.x177*m.x169 + 0.0001*
m.x177*m.x170 + 0.0001*m.x177*m.x171 + 0.0001*m.x177*m.x172 + 0.0001*m.x177*m.x173 + 0.0001*
m.x177*m.x174 + 0.0001*m.x177*m.x175 + 0.0001*m.x177*m.x176 + 2.45829657892161*m.x177**2 + 0.0001
*m.x177*m.x178 + 0.0001*m.x177*m.x179 + 0.0001*m.x177*m.x180 + 0.0001*m.x177*m.x181 + 0.0001*
m.x177*m.x182 + 0.0001*m.x177*m.x183 + 0.0001*m.x177*m.x184 + 0.0001*m.x177*m.x185 + 0.0001*
m.x178*m.x1 + 0.0001*m.x178*m.x2 + 0.0001*m.x178*m.x3 + 0.0001*m.x178*m.x4 + 0.0001*m.x178*m.x5
+ 0.0001*m.x178*m.x6 + 0.0001*m.x178*m.x7 + 0.0001*m.x178*m.x8 + 0.0001*m.x178*m.x9 + 0.0001*
m.x178*m.x10 + 0.0001*m.x178*m.x11 + 0.0001*m.x178*m.x12 + 0.0001*m.x178*m.x13 + 0.0001*m.x178*
m.x14 + 0.0001*m.x178*m.x15 + 0.0001*m.x178*m.x16 + 0.0001*m.x178*m.x17 + 0.0001*m.x178*m.x18 +
0.0001*m.x178*m.x19 + 0.0001*m.x178*m.x20 + 0.0001*m.x178*m.x21 + 0.0001*m.x178*m.x22 + 0.0001*
m.x178*m.x23 + 0.0001*m.x178*m.x24 + 0.0001*m.x178*m.x25 + 0.0001*m.x178*m.x26 + 0.0001*m.x178*
m.x27 + 0.0001*m.x178*m.x28 + 0.0001*m.x178*m.x29 + 0.0001*m.x178*m.x30 + 0.0001*m.x178*m.x31 +
0.0001*m.x178*m.x32 + 0.0001*m.x178*m.x33 + 0.0001*m.x178*m.x34 + 0.0001*m.x178*m.x35 + 0.0001*
m.x178*m.x36 + 0.0001*m.x178*m.x37 + 0.0001*m.x178*m.x38 + 0.0001*m.x178*m.x39 + 0.0001*m.x178*
m.x40 + 0.0001*m.x178*m.x41 + 0.0001*m.x178*m.x42 + 0.0001*m.x178*m.x43 + 0.0001*m.x178*m.x44 +
0.0001*m.x178*m.x45 + 0.0001*m.x178*m.x46 + 0.0001*m.x178*m.x47 + 0.0001*m.x178*m.x48 + 0.0001*
m.x178*m.x49 + 0.0001*m.x178*m.x50 + 0.0001*m.x178*m.x51 + 0.0001*m.x178*m.x52 + 0.0001*m.x178*
m.x53 + 0.0001*m.x178*m.x54 + 0.0001*m.x178*m.x55 + 0.0001*m.x178*m.x56 + 0.0001*m.x178*m.x57 +
0.0001*m.x178*m.x58 + 0.0001*m.x178*m.x59 + 0.0001*m.x178*m.x60 + 0.0001*m.x178*m.x61 + 0.0001*
m.x178*m.x62 + 0.0001*m.x178*m.x63 + 0.0001*m.x178*m.x64 + 0.0001*m.x178*m.x65 + 0.0001*m.x178*
m.x66 + 0.0001*m.x178*m.x67 + 0.0001*m.x178*m.x68 + 0.0001*m.x178*m.x69 + 0.0001*m.x178*m.x70 +
0.0001*m.x178*m.x71 + 0.0001*m.x178*m.x72 + 0.0001*m.x178*m.x73 + 0.0001*m.x178*m.x74 + 0.0001*
m.x178*m.x75 + 0.0001*m.x178*m.x76 + 0.0001*m.x178*m.x77 + 0.0001*m.x178*m.x78 + 0.0001*m.x178*
m.x79 + 0.0001*m.x178*m.x80 + 0.0001*m.x178*m.x81 + 0.0001*m.x178*m.x82 + 0.0001*m.x178*m.x83 +
0.0001*m.x178*m.x84 + 0.0001*m.x178*m.x85 + 0.0001*m.x178*m.x86 + 0.0001*m.x178*m.x87 + 0.0001*
m.x178*m.x88 + 0.0001*m.x178*m.x89 + 0.0001*m.x178*m.x90 + 0.0001*m.x178*m.x91 + 0.0001*m.x178*
m.x92 + 0.0001*m.x178*m.x93 + 0.0001*m.x178*m.x94 + 0.0001*m.x178*m.x95 + 0.0001*m.x178*m.x96 +
0.0001*m.x178*m.x97 + 0.0001*m.x178*m.x98 + 0.0001*m.x178*m.x99 + 0.0001*m.x178*m.x100 + 0.0001*
m.x178*m.x101 + 0.0001*m.x178*m.x102 + 0.0001*m.x178*m.x103 + 0.0001*m.x178*m.x104 + 0.0001*
m.x178*m.x105 + 0.0001*m.x178*m.x106 + 0.0001*m.x178*m.x107 + 0.0001*m.x178*m.x108 + 0.0001*
m.x178*m.x109 + 2.0828675588171*m.x178*m.x110 + 0.0001*m.x178*m.x111 + 0.0001*m.x178*m.x112 +
0.0001*m.x178*m.x113 + 0.0001*m.x178*m.x114 + 0.0001*m.x178*m.x115 + 0.0001*m.x178*m.x116 +
0.0001*m.x178*m.x117 + 0.0001*m.x178*m.x118 + 0.0001*m.x178*m.x119 + 0.0001*m.x178*m.x120 +
0.0001*m.x178*m.x121 + 0.0001*m.x178*m.x122 + 0.0001*m.x178*m.x123 + 0.0001*m.x178*m.x124 +
0.0001*m.x178*m.x125 + 0.0001*m.x178*m.x126 + 0.0001*m.x178*m.x127 + 0.0001*m.x178*m.x128 +
0.0001*m.x178*m.x129 + 0.0001*m.x178*m.x130 + 0.0001*m.x178*m.x131 + 0.0001*m.x178*m.x132 +
0.0001*m.x178*m.x133 + 0.0001*m.x178*m.x134 + 0.0001*m.x178*m.x135 + 0.0001*m.x178*m.x136 +
0.0001*m.x178*m.x137 + 0.0001*m.x178*m.x138 + 0.0001*m.x178*m.x139 + 0.0001*m.x178*m.x140 +
0.0001*m.x178*m.x141 + 0.0001*m.x178*m.x142 + 0.0001*m.x178*m.x143 + 0.0001*m.x178*m.x144 +
0.0001*m.x178*m.x145 + 0.0001*m.x178*m.x146 + 0.0001*m.x178*m.x147 + 0.0001*m.x178*m.x148 +
0.0001*m.x178*m.x149 + 0.0001*m.x178*m.x150 + 0.0001*m.x178*m.x151 + 0.0001*m.x178*m.x152 +
0.0001*m.x178*m.x153 + 0.0001*m.x178*m.x154 + 0.0001*m.x178*m.x155 + 0.0001*m.x178*m.x156 +
0.0001*m.x178*m.x157 + 0.0001*m.x178*m.x158 + 0.0001*m.x178*m.x159 + 0.0001*m.x178*m.x160 +
0.0001*m.x178*m.x161 + 0.0001*m.x178*m.x162 + 0.0001*m.x178*m.x163 + 0.0001*m.x178*m.x164 +
0.0001*m.x178*m.x165 + 0.0001*m.x178*m.x166 + 0.0001*m.x178*m.x167 + 0.0001*m.x178*m.x168 +
0.0001*m.x178*m.x169 + 0.0001*m.x178*m.x170 + 0.0001*m.x178*m.x171 + 0.0001*m.x178*m.x172 +
0.0001*m.x178*m.x173 + 0.0001*m.x178*m.x174 + 0.0001*m.x178*m.x175 + 0.0001*m.x178*m.x176 +
0.0001*m.x178*m.x177 + 2.45706619226616*m.x178**2 + 0.0001*m.x178*m.x179 + 0.0001*m.x178*m.x180
+ 0.0001*m.x178*m.x181 + 0.0001*m.x178*m.x182 + 0.0001*m.x178*m.x183 + 0.0001*m.x178*m.x184 +
0.0001*m.x178*m.x185 + 0.0001*m.x179*m.x1 + 0.0001*m.x179*m.x2 + 0.0001*m.x179*m.x3 + 0.0001*
m.x179*m.x4 + 0.0001*m.x179*m.x5 + 0.0001*m.x179*m.x6 + 0.0001*m.x179*m.x7 + 0.0001*m.x179*m.x8
+ 0.0001*m.x179*m.x9 + 0.0001*m.x179*m.x10 + 0.0001*m.x179*m.x11 + 0.0001*m.x179*m.x12 + 0.0001*
m.x179*m.x13 + 0.0001*m.x179*m.x14 + 0.0001*m.x179*m.x15 + 0.0001*m.x179*m.x16 + 0.0001*m.x179*
m.x17 + 0.0001*m.x179*m.x18 + 0.0001*m.x179*m.x19 + 0.0001*m.x179*m.x20 + 0.0001*m.x179*m.x21 +
0.0001*m.x179*m.x22 + 0.0001*m.x179*m.x23 + 0.0001*m.x179*m.x24 + 0.0001*m.x179*m.x25 + 0.0001*
m.x179*m.x26 + 0.0001*m.x179*m.x27 + 0.0001*m.x179*m.x28 + 0.0001*m.x179*m.x29 + 0.0001*m.x179*
m.x30 + 0.0001*m.x179*m.x31 + 0.0001*m.x179*m.x32 + 0.0001*m.x179*m.x33 + 0.0001*m.x179*m.x34 +
0.0001*m.x179*m.x35 + 0.0001*m.x179*m.x36 + 0.0001*m.x179*m.x37 + 0.0001*m.x179*m.x38 + 0.0001*
m.x179*m.x39 + 0.0001*m.x179*m.x40 + 0.0001*m.x179*m.x41 + 0.0001*m.x179*m.x42 + 0.0001*m.x179*
m.x43 + 0.0001*m.x179*m.x44 + 0.0001*m.x179*m.x45 + 0.0001*m.x179*m.x46 + 0.0001*m.x179*m.x47 +
0.0001*m.x179*m.x48 + 0.0001*m.x179*m.x49 + 0.0001*m.x179*m.x50 + 0.0001*m.x179*m.x51 + 0.0001*
m.x179*m.x52 + 0.0001*m.x179*m.x53 + 0.0001*m.x179*m.x54 + 0.0001*m.x179*m.x55 + 0.0001*m.x179*
m.x56 + 0.0001*m.x179*m.x57 + 0.0001*m.x179*m.x58 + 0.0001*m.x179*m.x59 + 0.0001*m.x179*m.x60 +
0.0001*m.x179*m.x61 + 0.0001*m.x179*m.x62 + 0.0001*m.x179*m.x63 + 0.0001*m.x179*m.x64 + 0.0001*
m.x179*m.x65 + 0.0001*m.x179*m.x66 + 0.0001*m.x179*m.x67 + 0.0001*m.x179*m.x68 + 0.0001*m.x179*
m.x69 + 0.0001*m.x179*m.x70 + 0.0001*m.x179*m.x71 + 0.0001*m.x179*m.x72 + 0.0001*m.x179*m.x73 +
0.0001*m.x179*m.x74 + 0.0001*m.x179*m.x75 + 0.0001*m.x179*m.x76 + 0.0001*m.x179*m.x77 + 0.0001*
m.x179*m.x78 + 0.0001*m.x179*m.x79 + 0.0001*m.x179*m.x80 + 0.0001*m.x179*m.x81 + 0.0001*m.x179*
m.x82 + 0.0001*m.x179*m.x83 + 0.0001*m.x179*m.x84 + 0.0001*m.x179*m.x85 + 0.0001*m.x179*m.x86 +
0.0001*m.x179*m.x87 + 0.0001*m.x179*m.x88 + 0.0001*m.x179*m.x89 + 0.0001*m.x179*m.x90 + 0.0001*
m.x179*m.x91 + 0.0001*m.x179*m.x92 + 0.0001*m.x179*m.x93 + 0.0001*m.x179*m.x94 + 0.0001*m.x179*
m.x95 + 0.0001*m.x179*m.x96 + 0.0001*m.x179*m.x97 + 0.0001*m.x179*m.x98 + 0.0001*m.x179*m.x99 +
0.0001*m.x179*m.x100 + 0.0001*m.x179*m.x101 + 0.0001*m.x179*m.x102 + 0.0001*m.x179*m.x103 +
0.0001*m.x179*m.x104 + 0.0001*m.x179*m.x105 + 0.0001*m.x179*m.x106 + 0.0001*m.x179*m.x107 +
0.0001*m.x179*m.x108 + 0.0001*m.x179*m.x109 + 0.0001*m.x179*m.x110 + 2.12900182336716*m.x179*
m.x111 + 0.0001*m.x179*m.x112 + 0.0001*m.x179*m.x113 + 0.0001*m.x179*m.x114 + 0.0001*m.x179*
m.x115 + 0.0001*m.x179*m.x116 + 0.0001*m.x179*m.x117 + 0.0001*m.x179*m.x118 + 0.0001*m.x179*
m.x119 + 0.0001*m.x179*m.x120 + 0.0001*m.x179*m.x121 + 0.0001*m.x179*m.x122 + 0.0001*m.x179*
m.x123 + 0.0001*m.x179*m.x124 + 0.0001*m.x179*m.x125 + 0.0001*m.x179*m.x126 + 0.0001*m.x179*
m.x127 + 0.0001*m.x179*m.x128 + 0.0001*m.x179*m.x129 + 0.0001*m.x179*m.x130 + 0.0001*m.x179*
m.x131 + 0.0001*m.x179*m.x132 + 0.0001*m.x179*m.x133 + 0.0001*m.x179*m.x134 + 0.0001*m.x179*
m.x135 + 0.0001*m.x179*m.x136 + 0.0001*m.x179*m.x137 + 0.0001*m.x179*m.x138 + 0.0001*m.x179*
m.x139 + 0.0001*m.x179*m.x140 + 0.0001*m.x179*m.x141 + 0.0001*m.x179*m.x142 + 0.0001*m.x179*
m.x143 + 0.0001*m.x179*m.x144 + 0.0001*m.x179*m.x145 + 0.0001*m.x179*m.x146 + 0.0001*m.x179*
m.x147 + 0.0001*m.x179*m.x148 + 0.0001*m.x179*m.x149 + 0.0001*m.x179*m.x150 + 0.0001*m.x179*
m.x151 + 0.0001*m.x179*m.x152 + 0.0001*m.x179*m.x153 + 0.0001*m.x179*m.x154 + 0.0001*m.x179*
m.x155 + 0.0001*m.x179*m.x156 + 0.0001*m.x179*m.x157 + 0.0001*m.x179*m.x158 + 0.0001*m.x179*
m.x159 + 0.0001*m.x179*m.x160 + 0.0001*m.x179*m.x161 + 0.0001*m.x179*m.x162 + 0.0001*m.x179*
m.x163 + 0.0001*m.x179*m.x164 + 0.0001*m.x179*m.x165 + 0.0001*m.x179*m.x166 + 0.0001*m.x179*
m.x167 + 0.0001*m.x179*m.x168 + 0.0001*m.x179*m.x169 + 0.0001*m.x179*m.x170 + 0.0001*m.x179*
m.x171 + 0.0001*m.x179*m.x172 + 0.0001*m.x179*m.x173 + 0.0001*m.x179*m.x174 + 0.0001*m.x179*
m.x175 + 0.0001*m.x179*m.x176 + 0.0001*m.x179*m.x177 + 0.0001*m.x179*m.x178 + 2.44702945539991*
m.x179**2 + 0.0001*m.x179*m.x180 + 0.0001*m.x179*m.x181 + 0.0001*m.x179*m.x182 + 0.0001*m.x179*
m.x183 + 0.0001*m.x179*m.x184 + 0.0001*m.x179*m.x185 + 0.0001*m.x180*m.x1 + 0.0001*m.x180*m.x2 +
0.0001*m.x180*m.x3 + 0.0001*m.x180*m.x4 + 0.0001*m.x180*m.x5 + 0.0001*m.x180*m.x6 + 0.0001*m.x180
*m.x7 + 0.0001*m.x180*m.x8 + 0.0001*m.x180*m.x9 + 0.0001*m.x180*m.x10 + 0.0001*m.x180*m.x11 +
0.0001*m.x180*m.x12 + 0.0001*m.x180*m.x13 + 0.0001*m.x180*m.x14 + 0.0001*m.x180*m.x15 + 0.0001*
m.x180*m.x16 + 0.0001*m.x180*m.x17 + 0.0001*m.x180*m.x18 + 0.0001*m.x180*m.x19 + 0.0001*m.x180*
m.x20 + 0.0001*m.x180*m.x21 + 0.0001*m.x180*m.x22 + 0.0001*m.x180*m.x23 + 0.0001*m.x180*m.x24 +
0.0001*m.x180*m.x25 + 0.0001*m.x180*m.x26 + 0.0001*m.x180*m.x27 + 0.0001*m.x180*m.x28 + 0.0001*
m.x180*m.x29 + 0.0001*m.x180*m.x30 + 0.0001*m.x180*m.x31 + 0.0001*m.x180*m.x32 + 0.0001*m.x180*
m.x33 + 0.0001*m.x180*m.x34 + 0.0001*m.x180*m.x35 + 0.0001*m.x180*m.x36 + 0.0001*m.x180*m.x37 +
0.0001*m.x180*m.x38 + 0.0001*m.x180*m.x39 + 0.0001*m.x180*m.x40 + 0.0001*m.x180*m.x41 + 0.0001*
m.x180*m.x42 + 0.0001*m.x180*m.x43 + 0.0001*m.x180*m.x44 + 0.0001*m.x180*m.x45 + 0.0001*m.x180*
m.x46 + 0.0001*m.x180*m.x47 + 0.0001*m.x180*m.x48 + 0.0001*m.x180*m.x49 + 0.0001*m.x180*m.x50 +
0.0001*m.x180*m.x51 + 0.0001*m.x180*m.x52 + 0.0001*m.x180*m.x53 + 0.0001*m.x180*m.x54 + 0.0001*
m.x180*m.x55 + 0.0001*m.x180*m.x56 + 0.0001*m.x180*m.x57 + 0.0001*m.x180*m.x58 + 0.0001*m.x180*
m.x59 + 0.0001*m.x180*m.x60 + 0.0001*m.x180*m.x61 + 0.0001*m.x180*m.x62 + 0.0001*m.x180*m.x63 +
0.0001*m.x180*m.x64 + 0.0001*m.x180*m.x65 + 0.0001*m.x180*m.x66 + 0.0001*m.x180*m.x67 + 0.0001*
m.x180*m.x68 + 0.0001*m.x180*m.x69 + 0.0001*m.x180*m.x70 + 0.0001*m.x180*m.x71 + 0.0001*m.x180*
m.x72 + 0.0001*m.x180*m.x73 + 0.0001*m.x180*m.x74 + 0.0001*m.x180*m.x75 + 0.0001*m.x180*m.x76 +
0.0001*m.x180*m.x77 + 0.0001*m.x180*m.x78 + 0.0001*m.x180*m.x79 + 0.0001*m.x180*m.x80 + 0.0001*
m.x180*m.x81 + 0.0001*m.x180*m.x82 + 0.0001*m.x180*m.x83 + 0.0001*m.x180*m.x84 + 0.0001*m.x180*
m.x85 + 0.0001*m.x180*m.x86 + 0.0001*m.x180*m.x87 + 0.0001*m.x180*m.x88 + 0.0001*m.x180*m.x89 +
0.0001*m.x180*m.x90 + 0.0001*m.x180*m.x91 + 0.0001*m.x180*m.x92 + 0.0001*m.x180*m.x93 + 0.0001*
m.x180*m.x94 + 0.0001*m.x180*m.x95 + 0.0001*m.x180*m.x96 + 0.0001*m.x180*m.x97 + 0.0001*m.x180*
m.x98 + 0.0001*m.x180*m.x99 + 0.0001*m.x180*m.x100 + 0.0001*m.x180*m.x101 + 0.0001*m.x180*m.x102
+ 0.0001*m.x180*m.x103 + 0.0001*m.x180*m.x104 + 0.0001*m.x180*m.x105 + 0.0001*m.x180*m.x106 +
0.0001*m.x180*m.x107 + 0.0001*m.x180*m.x108 + 0.0001*m.x180*m.x109 + 0.0001*m.x180*m.x110 +
0.0001*m.x180*m.x111 + 2.11770940690243*m.x180*m.x112 + 0.0001*m.x180*m.x113 + 0.0001*m.x180*
m.x114 + 0.0001*m.x180*m.x115 + 0.0001*m.x180*m.x116 + 0.0001*m.x180*m.x117 + 0.0001*m.x180*
m.x118 + 0.0001*m.x180*m.x119 + 0.0001*m.x180*m.x120 + 0.0001*m.x180*m.x121 + 0.0001*m.x180*
m.x122 + 0.0001*m.x180*m.x123 + 0.0001*m.x180*m.x124 + 0.0001*m.x180*m.x125 + 0.0001*m.x180*
m.x126 + 0.0001*m.x180*m.x127 + 0.0001*m.x180*m.x128 + 0.0001*m.x180*m.x129 + 0.0001*m.x180*
m.x130 + 0.0001*m.x180*m.x131 + 0.0001*m.x180*m.x132 + 0.0001*m.x180*m.x133 + 0.0001*m.x180*
m.x134 + 0.0001*m.x180*m.x135 + 0.0001*m.x180*m.x136 + 0.0001*m.x180*m.x137 + 0.0001*m.x180*
m.x138 + 0.0001*m.x180*m.x139 + 0.0001*m.x180*m.x140 + 0.0001*m.x180*m.x141 + 0.0001*m.x180*
m.x142 + 0.0001*m.x180*m.x143 + 0.0001*m.x180*m.x144 + 0.0001*m.x180*m.x145 + 0.0001*m.x180*
m.x146 + 0.0001*m.x180*m.x147 + 0.0001*m.x180*m.x148 + 0.0001*m.x180*m.x149 + 0.0001*m.x180*
m.x150 + 0.0001*m.x180*m.x151 + 0.0001*m.x180*m.x152 + 0.0001*m.x180*m.x153 + 0.0001*m.x180*
m.x154 + 0.0001*m.x180*m.x155 + 0.0001*m.x180*m.x156 + 0.0001*m.x180*m.x157 + 0.0001*m.x180*
m.x158 + 0.0001*m.x180*m.x159 + 0.0001*m.x180*m.x160 + 0.0001*m.x180*m.x161 + 0.0001*m.x180*
m.x162 + 0.0001*m.x180*m.x163 + 0.0001*m.x180*m.x164 + 0.0001*m.x180*m.x165 + 0.0001*m.x180*
m.x166 + 0.0001*m.x180*m.x167 + 0.0001*m.x180*m.x168 + 0.0001*m.x180*m.x169 + 0.0001*m.x180*
m.x170 + 0.0001*m.x180*m.x171 + 0.0001*m.x180*m.x172 + 0.0001*m.x180*m.x173 + 0.0001*m.x180*
m.x174 + 0.0001*m.x180*m.x175 + 0.0001*m.x180*m.x176 + 0.0001*m.x180*m.x177 + 0.0001*m.x180*
m.x178 + 0.0001*m.x180*m.x179 + 2.38739919976447*m.x180**2 + 0.0001*m.x180*m.x181 + 0.0001*m.x180
*m.x182 + 0.0001*m.x180*m.x183 + 0.0001*m.x180*m.x184 + 0.0001*m.x180*m.x185 + 0.0001*m.x181*m.x1
+ 0.0001*m.x181*m.x2 + 0.0001*m.x181*m.x3 + 0.0001*m.x181*m.x4 + 0.0001*m.x181*m.x5 + 0.0001*
m.x181*m.x6 + 0.0001*m.x181*m.x7 + 0.0001*m.x181*m.x8 + 0.0001*m.x181*m.x9 + 0.0001*m.x181*m.x10
+ 0.0001*m.x181*m.x11 + 0.0001*m.x181*m.x12 + 0.0001*m.x181*m.x13 + 0.0001*m.x181*m.x14 + 0.0001
*m.x181*m.x15 + 0.0001*m.x181*m.x16 + 0.0001*m.x181*m.x17 + 0.0001*m.x181*m.x18 + 0.0001*m.x181*
m.x19 + 0.0001*m.x181*m.x20 + 0.0001*m.x181*m.x21 + 0.0001*m.x181*m.x22 + 0.0001*m.x181*m.x23 +
0.0001*m.x181*m.x24 + 0.0001*m.x181*m.x25 + 0.0001*m.x181*m.x26 + 0.0001*m.x181*m.x27 + 0.0001*
m.x181*m.x28 + 0.0001*m.x181*m.x29 + 0.0001*m.x181*m.x30 + 0.0001*m.x181*m.x31 + 0.0001*m.x181*
m.x32 + 0.0001*m.x181*m.x33 + 0.0001*m.x181*m.x34 + 0.0001*m.x181*m.x35 + 0.0001*m.x181*m.x36 +
0.0001*m.x181*m.x37 + 0.0001*m.x181*m.x38 + 0.0001*m.x181*m.x39 + 0.0001*m.x181*m.x40 + 0.0001*
m.x181*m.x41 + 0.0001*m.x181*m.x42 + 0.0001*m.x181*m.x43 + 0.0001*m.x181*m.x44 + 0.0001*m.x181*
m.x45 + 0.0001*m.x181*m.x46 + 0.0001*m.x181*m.x47 + 0.0001*m.x181*m.x48 + 0.0001*m.x181*m.x49 +
0.0001*m.x181*m.x50 + 0.0001*m.x181*m.x51 + 0.0001*m.x181*m.x52 + 0.0001*m.x181*m.x53 + 0.0001*
m.x181*m.x54 + 0.0001*m.x181*m.x55 + 0.0001*m.x181*m.x56 + 0.0001*m.x181*m.x57 + 0.0001*m.x181*
m.x58 + 0.0001*m.x181*m.x59 + 0.0001*m.x181*m.x60 + 0.0001*m.x181*m.x61 + 0.0001*m.x181*m.x62 +
0.0001*m.x181*m.x63 + 0.0001*m.x181*m.x64 + 0.0001*m.x181*m.x65 + 0.0001*m.x181*m.x66 + 0.0001*
m.x181*m.x67 + 0.0001*m.x181*m.x68 + 0.0001*m.x181*m.x69 + 0.0001*m.x181*m.x70 + 0.0001*m.x181*
m.x71 + 0.0001*m.x181*m.x72 + 0.0001*m.x181*m.x73 + 0.0001*m.x181*m.x74 + 0.0001*m.x181*m.x75 +
0.0001*m.x181*m.x76 + 0.0001*m.x181*m.x77 + 0.0001*m.x181*m.x78 + 0.0001*m.x181*m.x79 + 0.0001*
m.x181*m.x80 + 0.0001*m.x181*m.x81 + 0.0001*m.x181*m.x82 + 0.0001*m.x181*m.x83 + 0.0001*m.x181*
m.x84 + 0.0001*m.x181*m.x85 + 0.0001*m.x181*m.x86 + 0.0001*m.x181*m.x87 + 0.0001*m.x181*m.x88 +
0.0001*m.x181*m.x89 + 0.0001*m.x181*m.x90 + 0.0001*m.x181*m.x91 + 0.0001*m.x181*m.x92 + 0.0001*
m.x181*m.x93 + 0.0001*m.x181*m.x94 + 0.0001*m.x181*m.x95 + 0.0001*m.x181*m.x96 + 0.0001*m.x181*
m.x97 + 0.0001*m.x181*m.x98 + 0.0001*m.x181*m.x99 + 0.0001*m.x181*m.x100 + 0.0001*m.x181*m.x101
+ 0.0001*m.x181*m.x102 + 0.0001*m.x181*m.x103 + 0.0001*m.x181*m.x104 + 0.0001*m.x181*m.x105 +
0.0001*m.x181*m.x106 + 0.0001*m.x181*m.x107 + 0.0001*m.x181*m.x108 + 0.0001*m.x181*m.x109 +
0.0001*m.x181*m.x110 + 0.0001*m.x181*m.x111 + 2.33597160736182*m.x181*m.x112 + 0.0001*m.x181*
m.x113 + 0.0001*m.x181*m.x114 + 0.0001*m.x181*m.x115 + 0.0001*m.x181*m.x116 + 0.0001*m.x181*
m.x117 + 0.0001*m.x181*m.x118 + 0.0001*m.x181*m.x119 + 0.0001*m.x181*m.x120 + 0.0001*m.x181*
m.x121 + 0.0001*m.x181*m.x122 + 0.0001*m.x181*m.x123 + 0.0001*m.x181*m.x124 + 0.0001*m.x181*
m.x125 + 0.0001*m.x181*m.x126 + 0.0001*m.x181*m.x127 + 0.0001*m.x181*m.x128 + 0.0001*m.x181*
m.x129 + 0.0001*m.x181*m.x130 + 0.0001*m.x181*m.x131 + 0.0001*m.x181*m.x132 + 0.0001*m.x181*
m.x133 + 0.0001*m.x181*m.x134 + 0.0001*m.x181*m.x135 + 0.0001*m.x181*m.x136 + 0.0001*m.x181*
m.x137 + 0.0001*m.x181*m.x138 + 0.0001*m.x181*m.x139 + 0.0001*m.x181*m.x140 + 0.0001*m.x181*
m.x141 + 0.0001*m.x181*m.x142 + 0.0001*m.x181*m.x143 + 0.0001*m.x181*m.x144 + 0.0001*m.x181*
m.x145 + 0.0001*m.x181*m.x146 + 0.0001*m.x181*m.x147 + 0.0001*m.x181*m.x148 + 0.0001*m.x181*
m.x149 + 0.0001*m.x181*m.x150 + 0.0001*m.x181*m.x151 + 0.0001*m.x181*m.x152 + 0.0001*m.x181*
m.x153 + 0.0001*m.x181*m.x154 + 0.0001*m.x181*m.x155 + 0.0001*m.x181*m.x156 + 0.0001*m.x181*
m.x157 + 0.0001*m.x181*m.x158 + 0.0001*m.x181*m.x159 + 0.0001*m.x181*m.x160 + 0.0001*m.x181*
m.x161 + 0.0001*m.x181*m.x162 + 0.0001*m.x181*m.x163 + 0.0001*m.x181*m.x164 + 0.0001*m.x181*
m.x165 + 0.0001*m.x181*m.x166 + 0.0001*m.x181*m.x167 + 0.0001*m.x181*m.x168 + 0.0001*m.x181*
m.x169 + 0.0001*m.x181*m.x170 + 0.0001*m.x181*m.x171 + 0.0001*m.x181*m.x172 + 0.0001*m.x181*
m.x173 + 0.0001*m.x181*m.x174 + 0.0001*m.x181*m.x175 + 0.0001*m.x181*m.x176 + 0.0001*m.x181*
m.x177 + 0.0001*m.x181*m.x178 + 0.0001*m.x181*m.x179 + 0.0001*m.x181*m.x180 + 2.63345835250395*
m.x181**2 + 0.0001*m.x181*m.x182 + 0.0001*m.x181*m.x183 + 0.0001*m.x181*m.x184 + 0.0001*m.x181*
m.x185 + 0.0001*m.x182*m.x1 + 0.0001*m.x182*m.x2 + 0.0001*m.x182*m.x3 + 0.0001*m.x182*m.x4 +
0.0001*m.x182*m.x5 + 0.0001*m.x182*m.x6 + 0.0001*m.x182*m.x7 + 0.0001*m.x182*m.x8 + 0.0001*m.x182
*m.x9 + 0.0001*m.x182*m.x10 + 0.0001*m.x182*m.x11 + 0.0001*m.x182*m.x12 + 0.0001*m.x182*m.x13 +
0.0001*m.x182*m.x14 + 0.0001*m.x182*m.x15 + 0.0001*m.x182*m.x16 + 0.0001*m.x182*m.x17 + 0.0001*
m.x182*m.x18 + 0.0001*m.x182*m.x19 + 0.0001*m.x182*m.x20 + 0.0001*m.x182*m.x21 + 0.0001*m.x182*
m.x22 + 0.0001*m.x182*m.x23 + 0.0001*m.x182*m.x24 + 0.0001*m.x182*m.x25 + 0.0001*m.x182*m.x26 +
0.0001*m.x182*m.x27 + 0.0001*m.x182*m.x28 + 0.0001*m.x182*m.x29 + 0.0001*m.x182*m.x30 + 0.0001*
m.x182*m.x31 + 0.0001*m.x182*m.x32 + 0.0001*m.x182*m.x33 + 0.0001*m.x182*m.x34 + 0.0001*m.x182*
m.x35 + 0.0001*m.x182*m.x36 + 0.0001*m.x182*m.x37 + 0.0001*m.x182*m.x38 + 0.0001*m.x182*m.x39 +
0.0001*m.x182*m.x40 + 0.0001*m.x182*m.x41 + 0.0001*m.x182*m.x42 + 0.0001*m.x182*m.x43 + 0.0001*
m.x182*m.x44 + 0.0001*m.x182*m.x45 + 0.0001*m.x182*m.x46 + 0.0001*m.x182*m.x47 + 0.0001*m.x182*
m.x48 + 0.0001*m.x182*m.x49 + 0.0001*m.x182*m.x50 + 0.0001*m.x182*m.x51 + 0.0001*m.x182*m.x52 +
0.0001*m.x182*m.x53 + 0.0001*m.x182*m.x54 + 0.0001*m.x182*m.x55 + 0.0001*m.x182*m.x56 + 0.0001*
m.x182*m.x57 + 0.0001*m.x182*m.x58 + 0.0001*m.x182*m.x59 + 0.0001*m.x182*m.x60 + 0.0001*m.x182*
m.x61 + 0.0001*m.x182*m.x62 + 0.0001*m.x182*m.x63 + 0.0001*m.x182*m.x64 + 0.0001*m.x182*m.x65 +
0.0001*m.x182*m.x66 + 0.0001*m.x182*m.x67 + 0.0001*m.x182*m.x68 + 0.0001*m.x182*m.x69 + 0.0001*
m.x182*m.x70 + 0.0001*m.x182*m.x71 + 0.0001*m.x182*m.x72 + 0.0001*m.x182*m.x73 + 0.0001*m.x182*
m.x74 + 0.0001*m.x182*m.x75 + 0.0001*m.x182*m.x76 + 0.0001*m.x182*m.x77 + 0.0001*m.x182*m.x78 +
0.0001*m.x182*m.x79 + 0.0001*m.x182*m.x80 + 0.0001*m.x182*m.x81 + 0.0001*m.x182*m.x82 + 0.0001*
m.x182*m.x83 + 0.0001*m.x182*m.x84 + 0.0001*m.x182*m.x85 + 0.0001*m.x182*m.x86 + 0.0001*m.x182*
m.x87 + 0.0001*m.x182*m.x88 + 0.0001*m.x182*m.x89 + 0.0001*m.x182*m.x90 + 0.0001*m.x182*m.x91 +
0.0001*m.x182*m.x92 + 0.0001*m.x182*m.x93 + 0.0001*m.x182*m.x94 + 0.0001*m.x182*m.x95 + 0.0001*
m.x182*m.x96 + 0.0001*m.x182*m.x97 + 0.0001*m.x182*m.x98 + 0.0001*m.x182*m.x99 + 0.0001*m.x182*
m.x100 + 0.0001*m.x182*m.x101 + 0.0001*m.x182*m.x102 + 0.0001*m.x182*m.x103 + 0.0001*m.x182*
m.x104 + 0.0001*m.x182*m.x105 + 0.0001*m.x182*m.x106 + 0.0001*m.x182*m.x107 + 0.0001*m.x182*
m.x108 + 0.0001*m.x182*m.x109 + 0.0001*m.x182*m.x110 + 0.0001*m.x182*m.x111 + 0.0001*m.x182*
m.x112 + 2.07913408000641*m.x182*m.x113 + 0.0001*m.x182*m.x114 + 0.0001*m.x182*m.x115 + 0.0001*
m.x182*m.x116 + 0.0001*m.x182*m.x117 + 0.0001*m.x182*m.x118 + 0.0001*m.x182*m.x119 + 0.0001*
m.x182*m.x120 + 0.0001*m.x182*m.x121 + 0.0001*m.x182*m.x122 + 0.0001*m.x182*m.x123 + 0.0001*
m.x182*m.x124 + 0.0001*m.x182*m.x125 + 0.0001*m.x182*m.x126 + 0.0001*m.x182*m.x127 + 0.0001*
m.x182*m.x128 + 0.0001*m.x182*m.x129 + 0.0001*m.x182*m.x130 + 0.0001*m.x182*m.x131 + 0.0001*
m.x182*m.x132 + 0.0001*m.x182*m.x133 + 0.0001*m.x182*m.x134 + 0.0001*m.x182*m.x135 + 0.0001*
m.x182*m.x136 + 0.0001*m.x182*m.x137 + 0.0001*m.x182*m.x138 + 0.0001*m.x182*m.x139 + 0.0001*
m.x182*m.x140 + 0.0001*m.x182*m.x141 + 0.0001*m.x182*m.x142 + 0.0001*m.x182*m.x143 + 0.0001*
m.x182*m.x144 + 0.0001*m.x182*m.x145 + 0.0001*m.x182*m.x146 + 0.0001*m.x182*m.x147 + 0.0001*
m.x182*m.x148 + 0.0001*m.x182*m.x149 + 0.0001*m.x182*m.x150 + 0.0001*m.x182*m.x151 + 0.0001*
m.x182*m.x152 + 0.0001*m.x182*m.x153 + 0.0001*m.x182*m.x154 + 0.0001*m.x182*m.x155 + 0.0001*
m.x182*m.x156 + 0.0001*m.x182*m.x157 + 0.0001*m.x182*m.x158 + 0.0001*m.x182*m.x159 + 0.0001*
m.x182*m.x160 + 0.0001*m.x182*m.x161 + 0.0001*m.x182*m.x162 + 0.0001*m.x182*m.x163 + 0.0001*
m.x182*m.x164 + 0.0001*m.x182*m.x165 + 0.0001*m.x182*m.x166 + 0.0001*m.x182*m.x167 + 0.0001*
m.x182*m.x168 + 0.0001*m.x182*m.x169 + 0.0001*m.x182*m.x170 + 0.0001*m.x182*m.x171 + 0.0001*
m.x182*m.x172 + 0.0001*m.x182*m.x173 + 0.0001*m.x182*m.x174 + 0.0001*m.x182*m.x175 + 0.0001*
m.x182*m.x176 + 0.0001*m.x182*m.x177 + 0.0001*m.x182*m.x178 + 0.0001*m.x182*m.x179 + 0.0001*
m.x182*m.x180 + 0.0001*m.x182*m.x181 + 2.34384730262563*m.x182**2 + 0.0001*m.x182*m.x183 + 0.0001
*m.x182*m.x184 + 0.0001*m.x182*m.x185 + 0.0001*m.x183*m.x1 + 0.0001*m.x183*m.x2 + 0.0001*m.x183*
m.x3 + 0.0001*m.x183*m.x4 + 0.0001*m.x183*m.x5 + 0.0001*m.x183*m.x6 + 0.0001*m.x183*m.x7 + 0.0001
*m.x183*m.x8 + 0.0001*m.x183*m.x9 + 0.0001*m.x183*m.x10 + 0.0001*m.x183*m.x11 + 0.0001*m.x183*
m.x12 + 0.0001*m.x183*m.x13 + 0.0001*m.x183*m.x14 + 0.0001*m.x183*m.x15 + 0.0001*m.x183*m.x16 +
0.0001*m.x183*m.x17 + 0.0001*m.x183*m.x18 + 0.0001*m.x183*m.x19 + 0.0001*m.x183*m.x20 + 0.0001*
m.x183*m.x21 + 0.0001*m.x183*m.x22 + 0.0001*m.x183*m.x23 + 0.0001*m.x183*m.x24 + 0.0001*m.x183*
m.x25 + 0.0001*m.x183*m.x26 + 0.0001*m.x183*m.x27 + 0.0001*m.x183*m.x28 + 0.0001*m.x183*m.x29 +
0.0001*m.x183*m.x30 + 0.0001*m.x183*m.x31 + 0.0001*m.x183*m.x32 + 0.0001*m.x183*m.x33 + 0.0001*
m.x183*m.x34 + 0.0001*m.x183*m.x35 + 0.0001*m.x183*m.x36 + 0.0001*m.x183*m.x37 + 0.0001*m.x183*
m.x38 + 0.0001*m.x183*m.x39 + 0.0001*m.x183*m.x40 + 0.0001*m.x183*m.x41 + 0.0001*m.x183*m.x42 +
0.0001*m.x183*m.x43 + 0.0001*m.x183*m.x44 + 0.0001*m.x183*m.x45 + 0.0001*m.x183*m.x46 + 0.0001*
m.x183*m.x47 + 0.0001*m.x183*m.x48 + 0.0001*m.x183*m.x49 + 0.0001*m.x183*m.x50 + 0.0001*m.x183*
m.x51 + 0.0001*m.x183*m.x52 + 0.0001*m.x183*m.x53 + 0.0001*m.x183*m.x54 + 0.0001*m.x183*m.x55 +
0.0001*m.x183*m.x56 + 0.0001*m.x183*m.x57 + 0.0001*m.x183*m.x58 + 0.0001*m.x183*m.x59 + 0.0001*
m.x183*m.x60 + 0.0001*m.x183*m.x61 + 0.0001*m.x183*m.x62 + 0.0001*m.x183*m.x63 + 0.0001*m.x183*
m.x64 + 0.0001*m.x183*m.x65 + 0.0001*m.x183*m.x66 + 0.0001*m.x183*m.x67 + 0.0001*m.x183*m.x68 +
0.0001*m.x183*m.x69 + 0.0001*m.x183*m.x70 + 0.0001*m.x183*m.x71 + 0.0001*m.x183*m.x72 + 0.0001*
m.x183*m.x73 + 0.0001*m.x183*m.x74 + 0.0001*m.x183*m.x75 + 0.0001*m.x183*m.x76 + 0.0001*m.x183*
m.x77 + 0.0001*m.x183*m.x78 + 0.0001*m.x183*m.x79 + 0.0001*m.x183*m.x80 + 0.0001*m.x183*m.x81 +
0.0001*m.x183*m.x82 + 0.0001*m.x183*m.x83 + 0.0001*m.x183*m.x84 + 0.0001*m.x183*m.x85 + 0.0001*
m.x183*m.x86 + 0.0001*m.x183*m.x87 + 0.0001*m.x183*m.x88 + 0.0001*m.x183*m.x89 + 0.0001*m.x183*
m.x90 + 0.0001*m.x183*m.x91 + 0.0001*m.x183*m.x92 + 0.0001*m.x183*m.x93 + 0.0001*m.x183*m.x94 +
0.0001*m.x183*m.x95 + 0.0001*m.x183*m.x96 + 0.0001*m.x183*m.x97 + 0.0001*m.x183*m.x98 + 0.0001*
m.x183*m.x99 + 0.0001*m.x183*m.x100 + 0.0001*m.x183*m.x101 + 0.0001*m.x183*m.x102 + 0.0001*m.x183
*m.x103 + 0.0001*m.x183*m.x104 + 0.0001*m.x183*m.x105 + 0.0001*m.x183*m.x106 + 0.0001*m.x183*
m.x107 + 0.0001*m.x183*m.x108 + 0.0001*m.x183*m.x109 + 0.0001*m.x183*m.x110 + 0.0001*m.x183*
m.x111 + 0.0001*m.x183*m.x112 + 0.0001*m.x183*m.x113 + 1.81266542307986*m.x183*m.x114 + 0.0001*
m.x183*m.x115 + 0.0001*m.x183*m.x116 + 0.0001*m.x183*m.x117 + 0.0001*m.x183*m.x118 + 0.0001*
m.x183*m.x119 + 0.0001*m.x183*m.x120 + 0.0001*m.x183*m.x121 + 0.0001*m.x183*m.x122 + 0.0001*
m.x183*m.x123 + 0.0001*m.x183*m.x124 + 0.0001*m.x183*m.x125 + 0.0001*m.x183*m.x126 + 0.0001*
m.x183*m.x127 + 0.0001*m.x183*m.x128 + 0.0001*m.x183*m.x129 + 0.0001*m.x183*m.x130 + 0.0001*
m.x183*m.x131 + 0.0001*m.x183*m.x132 + 0.0001*m.x183*m.x133 + 0.0001*m.x183*m.x134 + 0.0001*
m.x183*m.x135 + 0.0001*m.x183*m.x136 + 0.0001*m.x183*m.x137 + 0.0001*m.x183*m.x138 + 0.0001*
m.x183*m.x139 + 0.0001*m.x183*m.x140 + 0.0001*m.x183*m.x141 + 0.0001*m.x183*m.x142 + 0.0001*
m.x183*m.x143 + 0.0001*m.x183*m.x144 + 0.0001*m.x183*m.x145 + 0.0001*m.x183*m.x146 + 0.0001*
m.x183*m.x147 + 0.0001*m.x183*m.x148 + 0.0001*m.x183*m.x149 + 0.0001*m.x183*m.x150 + 0.0001*
m.x183*m.x151 + 0.0001*m.x183*m.x152 + 0.0001*m.x183*m.x153 + 0.0001*m.x183*m.x154 + 0.0001*
m.x183*m.x155 + 0.0001*m.x183*m.x156 + 0.0001*m.x183*m.x157 + 0.0001*m.x183*m.x158 + 0.0001*
m.x183*m.x159 + 0.0001*m.x183*m.x160 + 0.0001*m.x183*m.x161 + 0.0001*m.x183*m.x162 + 0.0001*
m.x183*m.x163 + 0.0001*m.x183*m.x164 + 0.0001*m.x183*m.x165 + 0.0001*m.x183*m.x166 + 0.0001*
m.x183*m.x167 + 0.0001*m.x183*m.x168 + 0.0001*m.x183*m.x169 + 0.0001*m.x183*m.x170 + 0.0001*
m.x183*m.x171 + 0.0001*m.x183*m.x172 + 0.0001*m.x183*m.x173 + 0.0001*m.x183*m.x174 + 0.0001*
m.x183*m.x175 + 0.0001*m.x183*m.x176 + 0.0001*m.x183*m.x177 + 0.0001*m.x183*m.x178 + 0.0001*
m.x183*m.x179 + 0.0001*m.x183*m.x180 + 0.0001*m.x183*m.x181 + 0.0001*m.x183*m.x182 +
2.40940177949448*m.x183**2 + 0.0001*m.x183*m.x184 + 0.0001*m.x183*m.x185 + 0.0001*m.x184*m.x1 +
0.0001*m.x184*m.x2 + 0.0001*m.x184*m.x3 + 0.0001*m.x184*m.x4 + 0.0001*m.x184*m.x5 + 0.0001*m.x184
*m.x6 + 0.0001*m.x184*m.x7 + 0.0001*m.x184*m.x8 + 0.0001*m.x184*m.x9 + 0.0001*m.x184*m.x10 +
0.0001*m.x184*m.x11 + 0.0001*m.x184*m.x12 + 0.0001*m.x184*m.x13 + 0.0001*m.x184*m.x14 + 0.0001*
m.x184*m.x15 + 0.0001*m.x184*m.x16 + 0.0001*m.x184*m.x17 + 0.0001*m.x184*m.x18 + 0.0001*m.x184*
m.x19 + 0.0001*m.x184*m.x20 + 0.0001*m.x184*m.x21 + 0.0001*m.x184*m.x22 + 0.0001*m.x184*m.x23 +
0.0001*m.x184*m.x24 + 0.0001*m.x184*m.x25 + 0.0001*m.x184*m.x26 + 0.0001*m.x184*m.x27 + 0.0001*
m.x184*m.x28 + 0.0001*m.x184*m.x29 + 0.0001*m.x184*m.x30 + 0.0001*m.x184*m.x31 + 0.0001*m.x184*
m.x32 + 0.0001*m.x184*m.x33 + 0.0001*m.x184*m.x34 + 0.0001*m.x184*m.x35 + 0.0001*m.x184*m.x36 +
0.0001*m.x184*m.x37 + 0.0001*m.x184*m.x38 + 0.0001*m.x184*m.x39 + 0.0001*m.x184*m.x40 + 0.0001*
m.x184*m.x41 + 0.0001*m.x184*m.x42 + 0.0001*m.x184*m.x43 + 0.0001*m.x184*m.x44 + 0.0001*m.x184*
m.x45 + 0.0001*m.x184*m.x46 + 0.0001*m.x184*m.x47 + 0.0001*m.x184*m.x48 + 0.0001*m.x184*m.x49 +
0.0001*m.x184*m.x50 + 0.0001*m.x184*m.x51 + 0.0001*m.x184*m.x52 + 0.0001*m.x184*m.x53 + 0.0001*
m.x184*m.x54 + 0.0001*m.x184*m.x55 + 0.0001*m.x184*m.x56 + 0.0001*m.x184*m.x57 + 0.0001*m.x184*
m.x58 + 0.0001*m.x184*m.x59 + 0.0001*m.x184*m.x60 + 0.0001*m.x184*m.x61 + 0.0001*m.x184*m.x62 +
0.0001*m.x184*m.x63 + 0.0001*m.x184*m.x64 + 0.0001*m.x184*m.x65 + 0.0001*m.x184*m.x66 + 0.0001*
m.x184*m.x67 + 0.0001*m.x184*m.x68 + 0.0001*m.x184*m.x69 + 0.0001*m.x184*m.x70 + 0.0001*m.x184*
m.x71 + 0.0001*m.x184*m.x72 + 0.0001*m.x184*m.x73 + 0.0001*m.x184*m.x74 + 0.0001*m.x184*m.x75 +
0.0001*m.x184*m.x76 + 0.0001*m.x184*m.x77 + 0.0001*m.x184*m.x78 + 0.0001*m.x184*m.x79 + 0.0001*
m.x184*m.x80 + 0.0001*m.x184*m.x81 + 0.0001*m.x184*m.x82 + 0.0001*m.x184*m.x83 + 0.0001*m.x184*
m.x84 + 0.0001*m.x184*m.x85 + 0.0001*m.x184*m.x86 + 0.0001*m.x184*m.x87 + 0.0001*m.x184*m.x88 +
0.0001*m.x184*m.x89 + 0.0001*m.x184*m.x90 + 0.0001*m.x184*m.x91 + 0.0001*m.x184*m.x92 + 0.0001*
m.x184*m.x93 + 0.0001*m.x184*m.x94 + 0.0001*m.x184*m.x95 + 0.0001*m.x184*m.x96 + 0.0001*m.x184*
m.x97 + 0.0001*m.x184*m.x98 + 0.0001*m.x184*m.x99 + 0.0001*m.x184*m.x100 + 0.0001*m.x184*m.x101
+ 0.0001*m.x184*m.x102 + 0.0001*m.x184*m.x103 + 0.0001*m.x184*m.x104 + 0.0001*m.x184*m.x105 +
0.0001*m.x184*m.x106 + 0.0001*m.x184*m.x107 + 0.0001*m.x184*m.x108 + 0.0001*m.x184*m.x109 +
0.0001*m.x184*m.x110 + 0.0001*m.x184*m.x111 + 0.0001*m.x184*m.x112 + 0.0001*m.x184*m.x113 +
0.0001*m.x184*m.x114 + 1.81266542307986*m.x184*m.x115 + 0.0001*m.x184*m.x116 + 0.0001*m.x184*
m.x117 + 0.0001*m.x184*m.x118 + 0.0001*m.x184*m.x119 + 0.0001*m.x184*m.x120 + 0.0001*m.x184*
m.x121 + 0.0001*m.x184*m.x122 + 0.0001*m.x184*m.x123 + 0.0001*m.x184*m.x124 + 0.0001*m.x184*
m.x125 + 0.0001*m.x184*m.x126 + 0.0001*m.x184*m.x127 + 0.0001*m.x184*m.x128 + 0.0001*m.x184*
m.x129 + 0.0001*m.x184*m.x130 + 0.0001*m.x184*m.x131 + 0.0001*m.x184*m.x132 + 0.0001*m.x184*
m.x133 + 0.0001*m.x184*m.x134 + 0.0001*m.x184*m.x135 + 0.0001*m.x184*m.x136 + 0.0001*m.x184*
m.x137 + 0.0001*m.x184*m.x138 + 0.0001*m.x184*m.x139 + 0.0001*m.x184*m.x140 + 0.0001*m.x184*
m.x141 + 0.0001*m.x184*m.x142 + 0.0001*m.x184*m.x143 + 0.0001*m.x184*m.x144 + 0.0001*m.x184*
m.x145 + 0.0001*m.x184*m.x146 + 0.0001*m.x184*m.x147 + 0.0001*m.x184*m.x148 + 0.0001*m.x184*
m.x149 + 0.0001*m.x184*m.x150 + 0.0001*m.x184*m.x151 + 0.0001*m.x184*m.x152 + 0.0001*m.x184*
m.x153 + 0.0001*m.x184*m.x154 + 0.0001*m.x184*m.x155 + 0.0001*m.x184*m.x156 + 0.0001*m.x184*
m.x157 + 0.0001*m.x184*m.x158 + 0.0001*m.x184*m.x159 + 0.0001*m.x184*m.x160 + 0.0001*m.x184*
m.x161 + 0.0001*m.x184*m.x162 + 0.0001*m.x184*m.x163 + 0.0001*m.x184*m.x164 + 0.0001*m.x184*
m.x165 + 0.0001*m.x184*m.x166 + 0.0001*m.x184*m.x167 + 0.0001*m.x184*m.x168 + 0.0001*m.x184*
m.x169 + 0.0001*m.x184*m.x170 + 0.0001*m.x184*m.x171 + 0.0001*m.x184*m.x172 + 0.0001*m.x184*
m.x173 + 0.0001*m.x184*m.x174 + 0.0001*m.x184*m.x175 + 0.0001*m.x184*m.x176 + 0.0001*m.x184*
m.x177 + 0.0001*m.x184*m.x178 + 0.0001*m.x184*m.x179 + 0.0001*m.x184*m.x180 + 0.0001*m.x184*
m.x181 + 0.0001*m.x184*m.x182 + 0.0001*m.x184*m.x183 + 2.40940177949448*m.x184**2 + 0.0001*m.x184
*m.x185 + 0.0001*m.x185*m.x1 + 0.0001*m.x185*m.x2 + 0.0001*m.x185*m.x3 + 0.0001*m.x185*m.x4 +
0.0001*m.x185*m.x5 + 0.0001*m.x185*m.x6 + 0.0001*m.x185*m.x7 + 0.0001*m.x185*m.x8 + 0.0001*m.x185
*m.x9 + 0.0001*m.x185*m.x10 + 0.0001*m.x185*m.x11 + 0.0001*m.x185*m.x12 + 0.0001*m.x185*m.x13 +
0.0001*m.x185*m.x14 + 0.0001*m.x185*m.x15 + 0.0001*m.x185*m.x16 + 0.0001*m.x185*m.x17 + 0.0001*
m.x185*m.x18 + 0.0001*m.x185*m.x19 + 0.0001*m.x185*m.x20 + 0.0001*m.x185*m.x21 + 0.0001*m.x185*
m.x22 + 0.0001*m.x185*m.x23 + 0.0001*m.x185*m.x24 + 0.0001*m.x185*m.x25 + 0.0001*m.x185*m.x26 +
0.0001*m.x185*m.x27 + 0.0001*m.x185*m.x28 + 0.0001*m.x185*m.x29 + 0.0001*m.x185*m.x30 + 0.0001*
m.x185*m.x31 + 0.0001*m.x185*m.x32 + 0.0001*m.x185*m.x33 + 0.0001*m.x185*m.x34 + 0.0001*m.x185*
m.x35 + 0.0001*m.x185*m.x36 + 0.0001*m.x185*m.x37 + 0.0001*m.x185*m.x38 + 0.0001*m.x185*m.x39 +
0.0001*m.x185*m.x40 + 0.0001*m.x185*m.x41 + 0.0001*m.x185*m.x42 + 0.0001*m.x185*m.x43 + 0.0001*
m.x185*m.x44 + 0.0001*m.x185*m.x45 + 0.0001*m.x185*m.x46 + 0.0001*m.x185*m.x47 + 0.0001*m.x185*
m.x48 + 0.0001*m.x185*m.x49 + 0.0001*m.x185*m.x50 + 0.0001*m.x185*m.x51 + 0.0001*m.x185*m.x52 +
0.0001*m.x185*m.x53 + 0.0001*m.x185*m.x54 + 0.0001*m.x185*m.x55 + 0.0001*m.x185*m.x56 + 0.0001*
m.x185*m.x57 + 0.0001*m.x185*m.x58 + 0.0001*m.x185*m.x59 + 0.0001*m.x185*m.x60 + 0.0001*m.x185*
m.x61 + 0.0001*m.x185*m.x62 + 0.0001*m.x185*m.x63 + 0.0001*m.x185*m.x64 + 0.0001*m.x185*m.x65 +
0.0001*m.x185*m.x66 + 0.0001*m.x185*m.x67 + 0.0001*m.x185*m.x68 + 0.0001*m.x185*m.x69 + 0.0001*
m.x185*m.x70 + 0.0001*m.x185*m.x71 + 0.0001*m.x185*m.x72 + 0.0001*m.x185*m.x73 + 0.0001*m.x185*
m.x74 + 0.0001*m.x185*m.x75 + 0.0001*m.x185*m.x76 + 0.0001*m.x185*m.x77 + 0.0001*m.x185*m.x78 +
0.0001*m.x185*m.x79 + 0.0001*m.x185*m.x80 + 0.0001*m.x185*m.x81 + 0.0001*m.x185*m.x82 + 0.0001*
m.x185*m.x83 + 0.0001*m.x185*m.x84 + 0.0001*m.x185*m.x85 + 0.0001*m.x185*m.x86 + 0.0001*m.x185*
m.x87 + 0.0001*m.x185*m.x88 + 0.0001*m.x185*m.x89 + 0.0001*m.x185*m.x90 + 0.0001*m.x185*m.x91 +
0.0001*m.x185*m.x92 + 0.0001*m.x185*m.x93 + 0.0001*m.x185*m.x94 + 0.0001*m.x185*m.x95 + 0.0001*
m.x185*m.x96 + 0.0001*m.x185*m.x97 + 0.0001*m.x185*m.x98 + 0.0001*m.x185*m.x99 + 0.0001*m.x185*
m.x100 + 0.0001*m.x185*m.x101 + 0.0001*m.x185*m.x102 + 0.0001*m.x185*m.x103 + 0.0001*m.x185*
m.x104 + 0.0001*m.x185*m.x105 + 0.0001*m.x185*m.x106 + 0.0001*m.x185*m.x107 + 0.0001*m.x185*
m.x108 + 0.0001*m.x185*m.x109 + 0.0001*m.x185*m.x110 + 0.0001*m.x185*m.x111 + 0.0001*m.x185*
m.x112 + 0.0001*m.x185*m.x113 + 0.0001*m.x185*m.x114 + 0.0001*m.x185*m.x115 + 0.0001*m.x185*
m.x116 + 0.0001*m.x185*m.x117 + 0.0001*m.x185*m.x118 + 0.0001*m.x185*m.x119 + 0.0001*m.x185*
m.x120 + 0.0001*m.x185*m.x121 + 0.0001*m.x185*m.x122 + 0.0001*m.x185*m.x123 + 0.0001*m.x185*
m.x124 + 0.0001*m.x185*m.x125 + 0.0001*m.x185*m.x126 + 0.0001*m.x185*m.x127 + 0.0001*m.x185*
m.x128 + 0.0001*m.x185*m.x129 + 0.0001*m.x185*m.x130 + 0.0001*m.x185*m.x131 + 0.0001*m.x185*
m.x132 + 0.0001*m.x185*m.x133 + 0.0001*m.x185*m.x134 + 0.0001*m.x185*m.x135 + 0.0001*m.x185*
m.x136 + 0.0001*m.x185*m.x137 + 0.0001*m.x185*m.x138 + 0.0001*m.x185*m.x139 + 0.0001*m.x185*
m.x140 + 0.0001*m.x185*m.x141 + 0.0001*m.x185*m.x142 + 0.0001*m.x185*m.x143 + 0.0001*m.x185*
m.x144 + 0.0001*m.x185*m.x145 + 0.0001*m.x185*m.x146 + 0.0001*m.x185*m.x147 + 0.0001*m.x185*
m.x148 + 0.0001*m.x185*m.x149 + 0.0001*m.x185*m.x150 + 0.0001*m.x185*m.x151 + 0.0001*m.x185*
m.x152 + 0.0001*m.x185*m.x153 + 0.0001*m.x185*m.x154 + 0.0001*m.x185*m.x155 + 0.0001*m.x185*
m.x156 + 0.0001*m.x185*m.x157 + 0.0001*m.x185*m.x158 + 0.0001*m.x185*m.x159 + 0.0001*m.x185*
m.x160 + 0.0001*m.x185*m.x161 + 0.0001*m.x185*m.x162 + 0.0001*m.x185*m.x163 + 0.0001*m.x185*
m.x164 + 0.0001*m.x185*m.x165 + 0.0001*m.x185*m.x166 + 0.0001*m.x185*m.x167 + 0.0001*m.x185*
m.x168 + 0.0001*m.x185*m.x169 + 0.0001*m.x185*m.x170 + 0.0001*m.x185*m.x171 + 0.0001*m.x185*
m.x172 + 0.0001*m.x185*m.x173 + 0.0001*m.x185*m.x174 + 0.0001*m.x185*m.x175 + 0.0001*m.x185*
m.x176 + 0.0001*m.x185*m.x177 + 0.0001*m.x185*m.x178 + 0.0001*m.x185*m.x179 + 0.0001*m.x185*
m.x180 + 0.0001*m.x185*m.x181 + 0.0001*m.x185*m.x182 + 0.0001*m.x185*m.x183 + 0.0001*m.x185*
m.x184 + 2.46066974883064*m.x185**2, sense=minimize)
m.c2 = Constraint(expr= - m.x1 + 0.0692401*m.b371 <= 0.692401)
m.c3 = Constraint(expr= - m.x2 + 0.0513191*m.b371 <= 0.513191)
m.c4 = Constraint(expr= - m.x3 + 0.0470779*m.b371 <= 0.470779)
m.c5 = Constraint(expr= - m.x4 + 0.0607966*m.b371 <= 0.607966)
m.c6 = Constraint(expr= - m.x5 + 0.0610414*m.b371 <= 0.610414)
m.c7 = Constraint(expr= - m.x6 + 0.0604472*m.b371 <= 0.604472)
m.c8 = Constraint(expr= - m.x7 + 0.0638469*m.b371 <= 0.638469)
m.c9 = Constraint(expr= - m.x8 + 0.061071*m.b371 <= 0.61071)
m.c10 = Constraint(expr= - m.x9 + 0.0614154*m.b371 <= 0.614154)
m.c11 = Constraint(expr= - m.x10 + 0.0647275*m.b371 <= 0.647275)
m.c12 = Constraint(expr= - m.x11 + 0.062866*m.b371 <= 0.62866)
m.c13 = Constraint(expr= - m.x12 + 0.0628454*m.b371 <= 0.628454)
m.c14 = Constraint(expr= - m.x13 + 0.0561378*m.b372 <= 0.561378)
m.c15 = Constraint(expr= - m.x14 + 0.0421782*m.b372 <= 0.421782)
m.c16 = Constraint(expr= - m.x15 + 0.0386925*m.b372 <= 0.386925)
m.c17 = Constraint(expr= - m.x16 + 0.0496729*m.b372 <= 0.496729)
m.c18 = Constraint(expr= - m.x17 + 0.0487172*m.b372 <= 0.487172)
m.c19 = Constraint(expr= - m.x18 + 0.0482363*m.b372 <= 0.482363)
m.c20 = Constraint(expr= - m.x19 + 0.0519859*m.b372 <= 0.519859)
m.c21 = Constraint(expr= - m.x20 + 0.0549209*m.b372 <= 0.549209)
m.c22 = Constraint(expr= - m.x21 + 0.0552306*m.b372 <= 0.552306)
m.c23 = Constraint(expr= - m.x22 + 0.0533827*m.b372 <= 0.533827)
m.c24 = Constraint(expr= - m.x23 + 0.0507141*m.b372 <= 0.507141)
m.c25 = Constraint(expr= - m.x24 + 0.0506975*m.b372 <= 0.506975)
m.c26 = Constraint(expr= - m.x25 + 0.241073*m.b373 <= 2.41073)
m.c27 = Constraint(expr= - m.x26 + 0.243231*m.b373 <= 2.43231)
m.c28 = Constraint(expr= - m.x27 + 0.209474*m.b373 <= 2.09474)
m.c29 = Constraint(expr= - m.x28 + 0.206093*m.b373 <= 2.06093)
m.c30 = Constraint(expr= - m.x29 + 0.205633*m.b373 <= 2.05633)
m.c31 = Constraint(expr= - m.x30 + 0.199737*m.b373 <= 1.99737)
m.c32 = Constraint(expr= - m.x31 + 0.208874*m.b373 <= 2.08874)
m.c33 = Constraint(expr= - m.x32 + 0.198451*m.b373 <= 1.98451)
m.c34 = Constraint(expr= - m.x33 + 0.204814*m.b373 <= 2.04814)
m.c35 = Constraint(expr= - m.x34 + 0.235521*m.b373 <= 2.35521)
m.c36 = Constraint(expr= - m.x35 + 0.230543*m.b373 <= 2.30543)
m.c37 = Constraint(expr= - m.x36 + 0.0530653*m.b374 <= 0.530653)
m.c38 = Constraint(expr= - m.x37 + 0.0398698*m.b374 <= 0.398698)
m.c39 = Constraint(expr= - m.x38 + 0.0365749*m.b374 <= 0.365749)
m.c40 = Constraint(expr= - m.x39 + 0.0490719*m.b374 <= 0.490719)
m.c41 = Constraint(expr= - m.x40 + 0.0481203*m.b374 <= 0.481203)
m.c42 = Constraint(expr= - m.x41 + 0.0476526*m.b374 <= 0.476526)
m.c43 = Constraint(expr= - m.x42 + 0.0501181*m.b374 <= 0.501181)
m.c44 = Constraint(expr= - m.x43 + 0.0529476*m.b374 <= 0.529476)
m.c45 = Constraint(expr= - m.x44 + 0.0532463*m.b374 <= 0.532463)
m.c46 = Constraint(expr= - m.x45 + 0.0568004*m.b374 <= 0.568004)
m.c47 = Constraint(expr= - m.x46 + 0.0539609*m.b374 <= 0.539609)
m.c48 = Constraint(expr= - m.x47 + 0.0539432*m.b374 <= 0.539432)
m.c49 = Constraint(expr= - m.x48 + 0.116172*m.b375 <= 1.16172)
m.c50 = Constraint(expr= - m.x49 + 0.131023*m.b375 <= 1.31023)
m.c51 = Constraint(expr= - m.x50 + 0.132577*m.b375 <= 1.32577)
m.c52 = Constraint(expr= - m.x51 + 0.130429*m.b375 <= 1.30429)
m.c53 = Constraint(expr= - m.x52 + 0.128257*m.b375 <= 1.28257)
m.c54 = Constraint(expr= - m.x53 + 0.130249*m.b375 <= 1.30249)
m.c55 = Constraint(expr= - m.x54 + 0.133113*m.b375 <= 1.33113)
m.c56 = Constraint(expr= - m.x55 + 0.235835*m.b375 <= 2.35835)
m.c57 = Constraint(expr= - m.x56 + 0.134486*m.b375 <= 1.34486)
m.c58 = Constraint(expr= - m.x57 + 0.133164*m.b375 <= 1.33164)
m.c59 = Constraint(expr= - m.x58 + 0.194623*m.b375 <= 1.94623)
m.c60 = Constraint(expr= - m.x59 + 0.0198697*m.b375 <= 0.198697)
m.c61 = Constraint(expr= - m.x60 + 0.349831*m.b376 <= 3.49831)
m.c62 = Constraint(expr= - m.x61 + 0.37018*m.b376 <= 3.7018)
m.c63 = Constraint(expr= - m.x62 + 0.370431*m.b376 <= 3.70431)
m.c64 = Constraint(expr= - m.x63 + 0.396073*m.b376 <= 3.96073)
m.c65 = Constraint(expr= - m.x64 + 0.371726*m.b376 <= 3.71726)
m.c66 = Constraint(expr= - m.x65 + 0.374194*m.b376 <= 3.74194)
m.c67 = Constraint(expr= - m.x66 + 0.364062*m.b376 <= 3.64062)
m.c68 = Constraint(expr= - m.x67 + 0.38712*m.b376 <= 3.8712)
m.c69 = Constraint(expr= - m.x68 + 0.387628*m.b376 <= 3.87628)
m.c70 = Constraint(expr= - m.x69 + 0.395493*m.b376 <= 3.95493)
m.c71 = Constraint(expr= - m.x70 + 0.375282*m.b376 <= 3.75282)
m.c72 = Constraint(expr= - m.x71 + 0.37019*m.b376 <= 3.7019)
m.c73 = Constraint(expr= - m.x72 + 0.153165*m.b377 <= 1.53165)
m.c74 = Constraint(expr= - m.x73 + 0.173161*m.b377 <= 1.73161)
m.c75 = Constraint(expr= - m.x74 + 0.172602*m.b377 <= 1.72602)
m.c76 = Constraint(expr= - m.x75 + 0.204698*m.b377 <= 2.04698)
m.c77 = Constraint(expr= - m.x76 + 0.18199*m.b377 <= 1.8199)
m.c78 = Constraint(expr= - m.x77 + 0.184341*m.b377 <= 1.84341)
m.c79 = Constraint(expr= - m.x78 + 0.167159*m.b377 <= 1.67159)
m.c80 = Constraint(expr= - m.x79 + 0.193571*m.b377 <= 1.93571)
m.c81 = Constraint(expr= - m.x80 + 0.192513*m.b377 <= 1.92513)
m.c82 = Constraint(expr= - m.x81 + 0.203089*m.b377 <= 2.03089)
m.c83 = Constraint(expr= - m.x82 + 0.178443*m.b377 <= 1.78443)
m.c84 = Constraint(expr= - m.x83 + 0.189588*m.b377 <= 1.89588)
m.c85 = Constraint(expr= - m.x84 + 0.372749*m.b378 <= 3.72749)
m.c86 = Constraint(expr= - m.x85 + 0.362121*m.b378 <= 3.62121)
m.c87 = Constraint(expr= - m.x86 + 0.370018*m.b378 <= 3.70018)
m.c88 = Constraint(expr= - m.x87 + 0.364025*m.b378 <= 3.64025)
m.c89 = Constraint(expr= - m.x88 + 0.367531*m.b378 <= 3.67531)
m.c90 = Constraint(expr= - m.x89 + 0.366627*m.b378 <= 3.66627)
m.c91 = Constraint(expr= - m.x90 + 0.376405*m.b378 <= 3.76405)
m.c92 = Constraint(expr= - m.x91 + 0.341879*m.b378 <= 3.41879)
m.c93 = Constraint(expr= - m.x92 + 0.355005*m.b378 <= 3.55005)
m.c94 = Constraint(expr= - m.x93 + 0.415405*m.b378 <= 4.15405)
m.c95 = Constraint(expr= - m.x94 + 0.40195*m.b378 <= 4.0195)
m.c96 = Constraint(expr= - m.x95 + 0.545261*m.b378 <= 5.45261)
m.c97 = Constraint(expr= - m.x96 + 0.0440955*m.b378 <= 0.440955)
m.c98 = Constraint(expr= - m.x97 + 0.0437507*m.b378 <= 0.437507)
m.c99 = Constraint(expr= - m.x98 + 0.0417871*m.b378 <= 0.417871)
m.c100 = Constraint(expr= - m.x99 + 0.0472616*m.b378 <= 0.472616)
m.c101 = Constraint(expr= - m.x100 + 0.0475038*m.b378 <= 0.475038)
m.c102 = Constraint(expr= - m.x101 + 0.0505596*m.b378 <= 0.505596)
m.c103 = Constraint(expr= - m.x102 + 0.046999*m.b378 <= 0.46999)
m.c104 = Constraint(expr= - m.x103 + 0.0466464*m.b378 <= 0.466464)
m.c105 = Constraint(expr= - m.x104 + 0.428329*m.b379 <= 4.28329)
m.c106 = Constraint(expr= - m.x105 + 0.597785*m.b379 <= 5.97785)
m.c107 = Constraint(expr= - m.x106 + 0.415427*m.b379 <= 4.15427)
m.c108 = Constraint(expr= - m.x107 + 0.430813*m.b379 <= 4.30813)
m.c109 = Constraint(expr= - m.x108 + 0.433171*m.b379 <= 4.33171)
m.c110 = Constraint(expr= - m.x109 + 0.418136*m.b379 <= 4.18136)
m.c111 = Constraint(expr= - m.x110 + 0.429279*m.b379 <= 4.29279)
m.c112 = Constraint(expr= - m.x111 + 0.429341*m.b379 <= 4.29341)
m.c113 = Constraint(expr= - m.x112 + 0.607043*m.b379 <= 6.07043)
m.c114 = Constraint(expr= - m.x113 + 0.377426*m.b379 <= 3.77426)
m.c115 = Constraint(expr= - m.x114 + 0.361529*m.b379 <= 3.61529)
m.c116 = Constraint(expr= - m.x115 + 0.361529*m.b379 <= 3.61529)
m.c117 = Constraint(expr= - m.x116 + 0.03013*m.b380 <= 0.3013)
m.c118 = Constraint(expr= - m.x117 + 0.0407356*m.b380 <= 0.407356)
m.c119 = Constraint(expr= - m.x118 + 0.0400957*m.b380 <= 0.400957)
m.c120 = Constraint(expr= - m.x119 + 0.0364663*m.b380 <= 0.364663)
m.c121 = Constraint(expr= - m.x120 + 0.0362005*m.b380 <= 0.362005)
m.c122 = Constraint(expr= - m.x121 + 0.0372731*m.b380 <= 0.372731)
m.c123 = Constraint(expr= - m.x122 + 0.0409479*m.b380 <= 0.409479)
m.c124 = Constraint(expr= - m.x123 + 0.0398242*m.b380 <= 0.398242)
m.c125 = Constraint(expr= - m.x124 + 0.038497*m.b380 <= 0.38497)
m.c126 = Constraint(expr= - m.x125 + 0.0378994*m.b380 <= 0.378994)
m.c127 = Constraint(expr= - m.x126 + 0.0380718*m.b380 <= 0.380718)
m.c128 = Constraint(expr= - m.x127 + 0.0392795*m.b380 <= 0.392795)
m.c129 = Constraint(expr= - m.x128 + 0.0995721*m.b380 <= 0.995721)
m.c130 = Constraint(expr= - m.x129 + 0.0732346*m.b380 <= 0.732346)
m.c131 = Constraint(expr= - m.x130 + 0.0868679*m.b381 <= 0.868679)
m.c132 = Constraint(expr= - m.x131 + 0.0777715*m.b381 <= 0.777715)
m.c133 = Constraint(expr= - m.x132 + 0.101527*m.b381 <= 1.01527)
m.c134 = Constraint(expr= - m.x133 + 0.0321133*m.b381 <= 0.321133)
m.c135 = Constraint(expr= - m.x134 + 0.0315665*m.b381 <= 0.315665)
m.c136 = Constraint(expr= - m.x135 + 0.0319378*m.b381 <= 0.319378)
m.c137 = Constraint(expr= - m.x136 + 0.0271866*m.b381 <= 0.271866)
m.c138 = Constraint(expr= - m.x137 + 0.0364662*m.b381 <= 0.364662)
m.c139 = Constraint(expr= - m.x138 + 0.0369007*m.b381 <= 0.369007)
m.c140 = Constraint(expr= - m.x139 + 0.0400714*m.b381 <= 0.400714)
m.c141 = Constraint(expr= - m.x140 + 0.0378908*m.b381 <= 0.378908)
m.c142 = Constraint(expr= - m.x141 + 0.0377165*m.b381 <= 0.377165)
m.c143 = Constraint(expr= - m.x142 + 0.0929079*m.b382 <= 0.929079)
m.c144 = Constraint(expr= - m.x143 + 0.0558954*m.b382 <= 0.558954)
m.c145 = Constraint(expr= - m.x144 + 0.0542686*m.b382 <= 0.542686)
m.c146 = Constraint(expr= - m.x145 + 0.060239*m.b382 <= 0.60239)
m.c147 = Constraint(expr= - m.x146 + 0.0600093*m.b382 <= 0.600093)
m.c148 = Constraint(expr= - m.x147 + 0.0616804*m.b382 <= 0.616804)
m.c149 = Constraint(expr= - m.x148 + 0.0602731*m.b382 <= 0.602731)
m.c150 = Constraint(expr= - m.x149 + 0.0593095*m.b382 <= 0.593095)
m.c151 = Constraint(expr= - m.x150 + 0.0575161*m.b382 <= 0.575161)
m.c152 = Constraint(expr= - m.x151 + 0.0529298*m.b382 <= 0.529298)
m.c153 = Constraint(expr= - m.x152 + 0.0530236*m.b382 <= 0.530236)
m.c154 = Constraint(expr= - m.x153 + 0.0546282*m.b382 <= 0.546282)
m.c155 = Constraint(expr= - m.x154 + 0.0854295*m.b382 <= 0.854295)
m.c156 = Constraint(expr= - m.x155 + 0.083876*m.b382 <= 0.83876)
m.c157 = Constraint(expr= - m.x156 + 0.136064*m.b382 <= 1.36064)
m.c158 = Constraint(expr= - m.x157 + 0.0273514*m.b383 <= 0.273514)
m.c159 = Constraint(expr= - m.x158 + 0.0396593*m.b383 <= 0.396593)
m.c160 = Constraint(expr= - m.x159 + 0.0390363*m.b383 <= 0.390363)
m.c161 = Constraint(expr= - m.x160 + 0.0355471*m.b383 <= 0.355471)
m.c162 = Constraint(expr= - m.x161 + 0.0316072*m.b383 <= 0.316072)
m.c163 = Constraint(expr= - m.x162 + 0.0325436*m.b383 <= 0.325436)
m.c164 = Constraint(expr= - m.x163 + 0.037926*m.b383 <= 0.37926)
m.c165 = Constraint(expr= - m.x164 + 0.0396908*m.b383 <= 0.396908)
m.c166 = Constraint(expr= - m.x165 + 0.038368*m.b383 <= 0.38368)
m.c167 = Constraint(expr= - m.x166 + 0.0320518*m.b383 <= 0.320518)
m.c168 = Constraint(expr= - m.x167 + 0.0326737*m.b383 <= 0.326737)
m.c169 = Constraint(expr= - m.x168 + 0.0337102*m.b383 <= 0.337102)
m.c170 = Constraint(expr= - m.x169 + 0.0994876*m.b383 <= 0.994876)
m.c171 = Constraint(expr= - m.x170 + 0.0690188*m.b383 <= 0.690188)
m.c172 = Constraint(expr= - m.x171 + 0.479596*m.b384 <= 4.79596)
m.c173 = Constraint(expr= - m.x172 + 0.346514*m.b384 <= 3.46514)
m.c174 = Constraint(expr= - m.x173 + 0.346514*m.b384 <= 3.46514)
m.c175 = Constraint(expr= - m.x174 + 0.492571*m.b384 <= 4.92571)
m.c176 = Constraint(expr= - m.x175 + 0.510815*m.b384 <= 5.10815)
m.c177 = Constraint(expr= - m.x176 + 0.495521*m.b384 <= 4.95521)
m.c178 = Constraint(expr= - m.x177 + 0.493259*m.b384 <= 4.93259)
m.c179 = Constraint(expr= - m.x178 + 0.506405*m.b384 <= 5.06405)
m.c180 = Constraint(expr= - m.x179 + 0.493479*m.b384 <= 4.93479)
m.c181 = Constraint(expr= - m.x180 + 0.34506*m.b384 <= 3.4506)
m.c182 = Constraint(expr= - m.x181 + 0.339293*m.b384 <= 3.39293)
m.c183 = Constraint(expr= - m.x182 + 0.425482*m.b384 <= 4.25482)
m.c184 = Constraint(expr= - m.x183 + 0.480552*m.b384 <= 4.80552)
m.c185 = Constraint(expr= - m.x184 + 0.480552*m.b384 <= 4.80552)
m.c186 = Constraint(expr= - m.x185 + 0.620126*m.b384 <= 6.20126)
m.c187 = Constraint(expr= m.x1 - 96.93614*m.b371 <= -0.692401)
m.c188 = Constraint(expr= m.x2 - 71.84674*m.b371 <= -0.513191)
m.c189 = Constraint(expr= m.x3 - 65.90906*m.b371 <= -0.470779)
m.c190 = Constraint(expr= m.x4 - 85.11524*m.b371 <= -0.607966)
m.c191 = Constraint(expr= m.x5 - 85.45796*m.b371 <= -0.610414)
m.c192 = Constraint(expr= m.x6 - 84.62608*m.b371 <= -0.604472)
m.c193 = Constraint(expr= m.x7 - 89.38566*m.b371 <= -0.638469)
m.c194 = Constraint(expr= m.x8 - 85.4994*m.b371 <= -0.61071)
m.c195 = Constraint(expr= m.x9 - 85.98156*m.b371 <= -0.614154)
m.c196 = Constraint(expr= m.x10 - 90.6185*m.b371 <= -0.647275)
m.c197 = Constraint(expr= m.x11 - 88.0124*m.b371 <= -0.62866)
m.c198 = Constraint(expr= m.x12 - 87.98356*m.b371 <= -0.628454)
m.c199 = Constraint(expr= m.x13 - 78.59292*m.b372 <= -0.561378)
m.c200 = Constraint(expr= m.x14 - 59.04948*m.b372 <= -0.421782)
m.c201 = Constraint(expr= m.x15 - 54.1695*m.b372 <= -0.386925)
m.c202 = Constraint(expr= m.x16 - 69.54206*m.b372 <= -0.496729)
m.c203 = Constraint(expr= m.x17 - 68.20408*m.b372 <= -0.487172)
m.c204 = Constraint(expr= m.x18 - 67.53082*m.b372 <= -0.482363)
m.c205 = Constraint(expr= m.x19 - 72.78026*m.b372 <= -0.519859)
m.c206 = Constraint(expr= m.x20 - 76.88926*m.b372 <= -0.549209)
m.c207 = Constraint(expr= m.x21 - 77.32284*m.b372 <= -0.552306)
m.c208 = Constraint(expr= m.x22 - 74.73578*m.b372 <= -0.533827)
m.c209 = Constraint(expr= m.x23 - 70.99974*m.b372 <= -0.507141)
m.c210 = Constraint(expr= m.x24 - 70.9765*m.b372 <= -0.506975)
m.c211 = Constraint(expr= m.x25 - 337.5022*m.b373 <= -2.41073)
m.c212 = Constraint(expr= m.x26 - 340.5234*m.b373 <= -2.43231)
m.c213 = Constraint(expr= m.x27 - 293.2636*m.b373 <= -2.09474)
m.c214 = Constraint(expr= m.x28 - 288.5302*m.b373 <= -2.06093)
m.c215 = Constraint(expr= m.x29 - 287.8862*m.b373 <= -2.05633)
m.c216 = Constraint(expr= m.x30 - 279.6318*m.b373 <= -1.99737)
m.c217 = Constraint(expr= m.x31 - 292.4236*m.b373 <= -2.08874)
m.c218 = Constraint(expr= m.x32 - 277.8314*m.b373 <= -1.98451)
m.c219 = Constraint(expr= m.x33 - 286.7396*m.b373 <= -2.04814)
m.c220 = Constraint(expr= m.x34 - 329.7294*m.b373 <= -2.35521)
m.c221 = Constraint(expr= m.x35 - 322.7602*m.b373 <= -2.30543)
m.c222 = Constraint(expr= m.x36 - 74.29142*m.b374 <= -0.530653)
m.c223 = Constraint(expr= m.x37 - 55.81772*m.b374 <= -0.398698)
m.c224 = Constraint(expr= m.x38 - 51.20486*m.b374 <= -0.365749)
m.c225 = Constraint(expr= m.x39 - 68.70066*m.b374 <= -0.490719)
m.c226 = Constraint(expr= m.x40 - 67.36842*m.b374 <= -0.481203)
m.c227 = Constraint(expr= m.x41 - 66.71364*m.b374 <= -0.476526)
m.c228 = Constraint(expr= m.x42 - 70.16534*m.b374 <= -0.501181)
m.c229 = Constraint(expr= m.x43 - 74.12664*m.b374 <= -0.529476)
m.c230 = Constraint(expr= m.x44 - 74.54482*m.b374 <= -0.532463)
m.c231 = Constraint(expr= m.x45 - 79.52056*m.b374 <= -0.568004)
m.c232 = Constraint(expr= m.x46 - 75.54526*m.b374 <= -0.539609)
m.c233 = Constraint(expr= m.x47 - 75.52048*m.b374 <= -0.539432)
m.c234 = Constraint(expr= m.x48 - 162.6408*m.b375 <= -1.16172)
m.c235 = Constraint(expr= m.x49 - 183.4322*m.b375 <= -1.31023)
m.c236 = Constraint(expr= m.x50 - 185.6078*m.b375 <= -1.32577)
m.c237 = Constraint(expr= m.x51 - 182.6006*m.b375 <= -1.30429)
m.c238 = Constraint(expr= m.x52 - 179.5598*m.b375 <= -1.28257)
m.c239 = Constraint(expr= m.x53 - 182.3486*m.b375 <= -1.30249)
m.c240 = Constraint(expr= m.x54 - 186.3582*m.b375 <= -1.33113)
m.c241 = Constraint(expr= m.x55 - 330.169*m.b375 <= -2.35835)
m.c242 = Constraint(expr= m.x56 - 188.2804*m.b375 <= -1.34486)
m.c243 = Constraint(expr= m.x57 - 186.4296*m.b375 <= -1.33164)
m.c244 = Constraint(expr= m.x58 - 272.4722*m.b375 <= -1.94623)
m.c245 = Constraint(expr= m.x59 - 27.81758*m.b375 <= -0.198697)
m.c246 = Constraint(expr= m.x60 - 489.7634*m.b376 <= -3.49831)
m.c247 = Constraint(expr= m.x61 - 518.252*m.b376 <= -3.7018)
m.c248 = Constraint(expr= m.x62 - 518.6034*m.b376 <= -3.70431)
m.c249 = Constraint(expr= m.x63 - 554.5022*m.b376 <= -3.96073)
m.c250 = Constraint(expr= m.x64 - 520.4164*m.b376 <= -3.71726)
m.c251 = Constraint(expr= m.x65 - 523.8716*m.b376 <= -3.74194)
m.c252 = Constraint(expr= m.x66 - 509.6868*m.b376 <= -3.64062)
m.c253 = Constraint(expr= m.x67 - 541.968*m.b376 <= -3.8712)
m.c254 = Constraint(expr= m.x68 - 542.6792*m.b376 <= -3.87628)
m.c255 = Constraint(expr= m.x69 - 553.6902*m.b376 <= -3.95493)
m.c256 = Constraint(expr= m.x70 - 525.3948*m.b376 <= -3.75282)
m.c257 = Constraint(expr= m.x71 - 518.266*m.b376 <= -3.7019)
m.c258 = Constraint(expr= m.x72 - 214.431*m.b377 <= -1.53165)
m.c259 = Constraint(expr= m.x73 - 242.4254*m.b377 <= -1.73161)
m.c260 = Constraint(expr= m.x74 - 241.6428*m.b377 <= -1.72602)
m.c261 = Constraint(expr= m.x75 - 286.5772*m.b377 <= -2.04698)
m.c262 = Constraint(expr= m.x76 - 254.786*m.b377 <= -1.8199)
m.c263 = Constraint(expr= m.x77 - 258.0774*m.b377 <= -1.84341)
m.c264 = Constraint(expr= m.x78 - 234.0226*m.b377 <= -1.67159)
m.c265 = Constraint(expr= m.x79 - 270.9994*m.b377 <= -1.93571)
m.c266 = Constraint(expr= m.x80 - 269.5182*m.b377 <= -1.92513)
m.c267 = Constraint(expr= m.x81 - 284.3246*m.b377 <= -2.03089)
m.c268 = Constraint(expr= m.x82 - 249.8202*m.b377 <= -1.78443)
m.c269 = Constraint(expr= m.x83 - 265.4232*m.b377 <= -1.89588)
m.c270 = Constraint(expr= m.x84 - 521.8486*m.b378 <= -3.72749)
m.c271 = Constraint(expr= m.x85 - 506.9694*m.b378 <= -3.62121)
m.c272 = Constraint(expr= m.x86 - 518.0252*m.b378 <= -3.70018)
m.c273 = Constraint(expr= m.x87 - 509.635*m.b378 <= -3.64025)
m.c274 = Constraint(expr= m.x88 - 514.5434*m.b378 <= -3.67531)
m.c275 = Constraint(expr= m.x89 - 513.2778*m.b378 <= -3.66627)
m.c276 = Constraint(expr= m.x90 - 526.967*m.b378 <= -3.76405)
m.c277 = Constraint(expr= m.x91 - 478.6306*m.b378 <= -3.41879)
m.c278 = Constraint(expr= m.x92 - 497.007*m.b378 <= -3.55005)
m.c279 = Constraint(expr= m.x93 - 581.567*m.b378 <= -4.15405)
m.c280 = Constraint(expr= m.x94 - 562.73*m.b378 <= -4.0195)
m.c281 = Constraint(expr= m.x95 - 763.3654*m.b378 <= -5.45261)
m.c282 = Constraint(expr= m.x96 - 61.7337*m.b378 <= -0.440955)
m.c283 = Constraint(expr= m.x97 - 61.25098*m.b378 <= -0.437507)
m.c284 = Constraint(expr= m.x98 - 58.50194*m.b378 <= -0.417871)
m.c285 = Constraint(expr= m.x99 - 66.16624*m.b378 <= -0.472616)
m.c286 = Constraint(expr= m.x100 - 66.50532*m.b378 <= -0.475038)
m.c287 = Constraint(expr= m.x101 - 70.78344*m.b378 <= -0.505596)
m.c288 = Constraint(expr= m.x102 - 65.7986*m.b378 <= -0.46999)
m.c289 = Constraint(expr= m.x103 - 65.30496*m.b378 <= -0.466464)
m.c290 = Constraint(expr= m.x104 - 599.6606*m.b379 <= -4.28329)
m.c291 = Constraint(expr= m.x105 - 836.899*m.b379 <= -5.97785)
m.c292 = Constraint(expr= m.x106 - 581.5978*m.b379 <= -4.15427)
m.c293 = Constraint(expr= m.x107 - 603.1382*m.b379 <= -4.30813)
m.c294 = Constraint(expr= m.x108 - 606.4394*m.b379 <= -4.33171)
m.c295 = Constraint(expr= m.x109 - 585.3904*m.b379 <= -4.18136)
m.c296 = Constraint(expr= m.x110 - 600.9906*m.b379 <= -4.29279)
m.c297 = Constraint(expr= m.x111 - 601.0774*m.b379 <= -4.29341)
m.c298 = Constraint(expr= m.x112 - 849.8602*m.b379 <= -6.07043)
m.c299 = Constraint(expr= m.x113 - 528.3964*m.b379 <= -3.77426)
m.c300 = Constraint(expr= m.x114 - 506.1406*m.b379 <= -3.61529)
m.c301 = Constraint(expr= m.x115 - 506.1406*m.b379 <= -3.61529)
m.c302 = Constraint(expr= m.x116 - 42.182*m.b380 <= -0.3013)
m.c303 = Constraint(expr= m.x117 - 57.02984*m.b380 <= -0.407356)
m.c304 = Constraint(expr= m.x118 - 56.13398*m.b380 <= -0.400957)
m.c305 = Constraint(expr= m.x119 - 51.05282*m.b380 <= -0.364663)
m.c306 = Constraint(expr= m.x120 - 50.6807*m.b380 <= -0.362005)
m.c307 = Constraint(expr= m.x121 - 52.18234*m.b380 <= -0.372731)
m.c308 = Constraint(expr= m.x122 - 57.32706*m.b380 <= -0.409479)
m.c309 = Constraint(expr= m.x123 - 55.75388*m.b380 <= -0.398242)
m.c310 = Constraint(expr= m.x124 - 53.8958*m.b380 <= -0.38497)
m.c311 = Constraint(expr= m.x125 - 53.05916*m.b380 <= -0.378994)
m.c312 = Constraint(expr= m.x126 - 53.30052*m.b380 <= -0.380718)
m.c313 = Constraint(expr= m.x127 - 54.9913*m.b380 <= -0.392795)
m.c314 = Constraint(expr= m.x128 - 139.40094*m.b380 <= -0.995721)
m.c315 = Constraint(expr= m.x129 - 102.52844*m.b380 <= -0.732346)
m.c316 = Constraint(expr= m.x130 - 121.61506*m.b381 <= -0.868679)
m.c317 = Constraint(expr= m.x131 - 108.8801*m.b381 <= -0.777715)
m.c318 = Constraint(expr= m.x132 - 142.1378*m.b381 <= -1.01527)
m.c319 = Constraint(expr= m.x133 - 44.95862*m.b381 <= -0.321133)
m.c320 = Constraint(expr= m.x134 - 44.1931*m.b381 <= -0.315665)
m.c321 = Constraint(expr= m.x135 - 44.71292*m.b381 <= -0.319378)
m.c322 = Constraint(expr= m.x136 - 38.06124*m.b381 <= -0.271866)
m.c323 = Constraint(expr= m.x137 - 51.05268*m.b381 <= -0.364662)
m.c324 = Constraint(expr= m.x138 - 51.66098*m.b381 <= -0.369007)
m.c325 = Constraint(expr= m.x139 - 56.09996*m.b381 <= -0.400714)
m.c326 = Constraint(expr= m.x140 - 53.04712*m.b381 <= -0.378908)
m.c327 = Constraint(expr= m.x141 - 52.8031*m.b381 <= -0.377165)
m.c328 = Constraint(expr= m.x142 - 130.07106*m.b382 <= -0.929079)
m.c329 = Constraint(expr= m.x143 - 78.25356*m.b382 <= -0.558954)
m.c330 = Constraint(expr= m.x144 - 75.97604*m.b382 <= -0.542686)
m.c331 = Constraint(expr= m.x145 - 84.3346*m.b382 <= -0.60239)
m.c332 = Constraint(expr= m.x146 - 84.01302*m.b382 <= -0.600093)
m.c333 = Constraint(expr= m.x147 - 86.35256*m.b382 <= -0.616804)
m.c334 = Constraint(expr= m.x148 - 84.38234*m.b382 <= -0.602731)
m.c335 = Constraint(expr= m.x149 - 83.0333*m.b382 <= -0.593095)
m.c336 = Constraint(expr= m.x150 - 80.52254*m.b382 <= -0.575161)
m.c337 = Constraint(expr= m.x151 - 74.10172*m.b382 <= -0.529298)
m.c338 = Constraint(expr= m.x152 - 74.23304*m.b382 <= -0.530236)
m.c339 = Constraint(expr= m.x153 - 76.47948*m.b382 <= -0.546282)
m.c340 = Constraint(expr= m.x154 - 119.6013*m.b382 <= -0.854295)
m.c341 = Constraint(expr= m.x155 - 117.4264*m.b382 <= -0.83876)
m.c342 = Constraint(expr= m.x156 - 190.4896*m.b382 <= -1.36064)
m.c343 = Constraint(expr= m.x157 - 38.29196*m.b383 <= -0.273514)
m.c344 = Constraint(expr= m.x158 - 55.52302*m.b383 <= -0.396593)
m.c345 = Constraint(expr= m.x159 - 54.65082*m.b383 <= -0.390363)
m.c346 = Constraint(expr= m.x160 - 49.76594*m.b383 <= -0.355471)
m.c347 = Constraint(expr= m.x161 - 44.25008*m.b383 <= -0.316072)
m.c348 = Constraint(expr= m.x162 - 45.56104*m.b383 <= -0.325436)
m.c349 = Constraint(expr= m.x163 - 53.0964*m.b383 <= -0.37926)
m.c350 = Constraint(expr= m.x164 - 55.56712*m.b383 <= -0.396908)
m.c351 = Constraint(expr= m.x165 - 53.7152*m.b383 <= -0.38368)
m.c352 = Constraint(expr= m.x166 - 44.87252*m.b383 <= -0.320518)
m.c353 = Constraint(expr= m.x167 - 45.74318*m.b383 <= -0.326737)
m.c354 = Constraint(expr= m.x168 - 47.19428*m.b383 <= -0.337102)
m.c355 = Constraint(expr= m.x169 - 139.28264*m.b383 <= -0.994876)
m.c356 = Constraint(expr= m.x170 - 96.62632*m.b383 <= -0.690188)
m.c357 = Constraint(expr= m.x171 - 671.4344*m.b384 <= -4.79596)
m.c358 = Constraint(expr= m.x172 - 485.1196*m.b384 <= -3.46514)
m.c359 = Constraint(expr= m.x173 - 485.1196*m.b384 <= -3.46514)
m.c360 = Constraint(expr= m.x174 - 689.5994*m.b384 <= -4.92571)
m.c361 = Constraint(expr= m.x175 - 715.141*m.b384 <= -5.10815)
m.c362 = Constraint(expr= m.x176 - 693.7294*m.b384 <= -4.95521)
m.c363 = Constraint(expr= m.x177 - 690.5626*m.b384 <= -4.93259)
m.c364 = Constraint(expr= m.x178 - 708.967*m.b384 <= -5.06405)
m.c365 = Constraint(expr= m.x179 - 690.8706*m.b384 <= -4.93479)
m.c366 = Constraint(expr= m.x180 - 483.084*m.b384 <= -3.4506)
m.c367 = Constraint(expr= m.x181 - 475.0102*m.b384 <= -3.39293)
m.c368 = Constraint(expr= m.x182 - 595.6748*m.b384 <= -4.25482)
m.c369 = Constraint(expr= m.x183 - 672.7728*m.b384 <= -4.80552)
m.c370 = Constraint(expr= m.x184 - 672.7728*m.b384 <= -4.80552)
m.c371 = Constraint(expr= m.x185 - 868.1764*m.b384 <= -6.20126)
m.c372 = Constraint(expr= - m.x1 + m.x186 == 0.692401)
m.c373 = Constraint(expr= - m.x2 + m.x187 == 0.513191)
m.c374 = Constraint(expr= - m.x3 + m.x188 == 0.470779)
m.c375 = Constraint(expr= - m.x4 + m.x189 == 0.607966)
m.c376 = Constraint(expr= - m.x5 + m.x190 == 0.610414)
m.c377 = Constraint(expr= - m.x6 + m.x191 == 0.604472)
m.c378 = Constraint(expr= - m.x7 + m.x192 == 0.638469)
m.c379 = Constraint(expr= - m.x8 + m.x193 == 0.61071)
m.c380 = Constraint(expr= - m.x9 + m.x194 == 0.614154)
m.c381 = Constraint(expr= - m.x10 + m.x195 == 0.647275)
m.c382 = Constraint(expr= - m.x11 + m.x196 == 0.62866)
m.c383 = Constraint(expr= - m.x12 + m.x197 == 0.628454)
m.c384 = Constraint(expr= - m.x13 + m.x198 == 0.561378)
m.c385 = Constraint(expr= - m.x14 + m.x199 == 0.421782)
m.c386 = Constraint(expr= - m.x15 + m.x200 == 0.386925)
m.c387 = Constraint(expr= - m.x16 + m.x201 == 0.496729)
m.c388 = Constraint(expr= - m.x17 + m.x202 == 0.487172)
m.c389 = Constraint(expr= - m.x18 + m.x203 == 0.482363)
m.c390 = Constraint(expr= - m.x19 + m.x204 == 0.519859)
m.c391 = Constraint(expr= - m.x20 + m.x205 == 0.549209)
m.c392 = Constraint(expr= - m.x21 + m.x206 == 0.552306)
m.c393 = Constraint(expr= - m.x22 + m.x207 == 0.533827)
m.c394 = Constraint(expr= - m.x23 + m.x208 == 0.507141)
m.c395 = Constraint(expr= - m.x24 + m.x209 == 0.506975)
m.c396 = Constraint(expr= - m.x25 + m.x210 == 2.41073)
m.c397 = Constraint(expr= - m.x26 + m.x211 == 2.43231)
m.c398 = Constraint(expr= - m.x27 + m.x212 == 2.09474)
m.c399 = Constraint(expr= - m.x28 + m.x213 == 2.06093)
m.c400 = Constraint(expr= - m.x29 + m.x214 == 2.05633)
m.c401 = Constraint(expr= - m.x30 + m.x215 == 1.99737)
m.c402 = Constraint(expr= - m.x31 + m.x216 == 2.08874)
m.c403 = Constraint(expr= - m.x32 + m.x217 == 1.98451)
m.c404 = Constraint(expr= - m.x33 + m.x218 == 2.04814)
m.c405 = Constraint(expr= - m.x34 + m.x219 == 2.35521)
m.c406 = Constraint(expr= - m.x35 + m.x220 == 2.30543)
m.c407 = Constraint(expr= - m.x36 + m.x221 == 0.530653)
m.c408 = Constraint(expr= - m.x37 + m.x222 == 0.398698)
m.c409 = Constraint(expr= - m.x38 + m.x223 == 0.365749)
m.c410 = Constraint(expr= - m.x39 + m.x224 == 0.490719)
m.c411 = Constraint(expr= - m.x40 + m.x225 == 0.481203)
m.c412 = Constraint(expr= - m.x41 + m.x226 == 0.476526)
m.c413 = Constraint(expr= - m.x42 + m.x227 == 0.501181)
m.c414 = Constraint(expr= - m.x43 + m.x228 == 0.529476)
m.c415 = Constraint(expr= - m.x44 + m.x229 == 0.532463)
m.c416 = Constraint(expr= - m.x45 + m.x230 == 0.568004)
m.c417 = Constraint(expr= - m.x46 + m.x231 == 0.539609)
m.c418 = Constraint(expr= - m.x47 + m.x232 == 0.539432)
m.c419 = Constraint(expr= - m.x48 + m.x233 == 1.16172)
m.c420 = Constraint(expr= - m.x49 + m.x234 == 1.31023)
m.c421 = Constraint(expr= - m.x50 + m.x235 == 1.32577)
m.c422 = Constraint(expr= - m.x51 + m.x236 == 1.30429)
m.c423 = Constraint(expr= - m.x52 + m.x237 == 1.28257)
m.c424 = Constraint(expr= - m.x53 + m.x238 == 1.30249)
m.c425 = Constraint(expr= - m.x54 + m.x239 == 1.33113)
m.c426 = Constraint(expr= - m.x55 + m.x240 == 2.35835)
m.c427 = Constraint(expr= - m.x56 + m.x241 == 1.34486)
m.c428 = Constraint(expr= - m.x57 + m.x242 == 1.33164)
m.c429 = Constraint(expr= - m.x58 + m.x243 == 1.94623)
m.c430 = Constraint(expr= - m.x59 + m.x244 == 0.198697)
m.c431 = Constraint(expr= - m.x60 + m.x245 == 3.49831)
m.c432 = Constraint(expr= - m.x61 + m.x246 == 3.7018)
m.c433 = Constraint(expr= - m.x62 + m.x247 == 3.70431)
m.c434 = Constraint(expr= - m.x63 + m.x248 == 3.96073)
m.c435 = Constraint(expr= - m.x64 + m.x249 == 3.71726)
m.c436 = Constraint(expr= - m.x65 + m.x250 == 3.74194)
m.c437 = Constraint(expr= - m.x66 + m.x251 == 3.64062)
m.c438 = Constraint(expr= - m.x67 + m.x252 == 3.8712)
m.c439 = Constraint(expr= - m.x68 + m.x253 == 3.87628)
m.c440 = Constraint(expr= - m.x69 + m.x254 == 3.95493)
m.c441 = Constraint(expr= - m.x70 + m.x255 == 3.75282)
m.c442 = Constraint(expr= - m.x71 + m.x256 == 3.7019)
m.c443 = Constraint(expr= - m.x72 + m.x257 == 1.53165)
m.c444 = Constraint(expr= - m.x73 + m.x258 == 1.73161)
m.c445 = Constraint(expr= - m.x74 + m.x259 == 1.72602)
m.c446 = Constraint(expr= - m.x75 + m.x260 == 2.04698)
m.c447 = Constraint(expr= - m.x76 + m.x261 == 1.8199)
m.c448 = Constraint(expr= - m.x77 + m.x262 == 1.84341)
m.c449 = Constraint(expr= - m.x78 + m.x263 == 1.67159)
m.c450 = Constraint(expr= - m.x79 + m.x264 == 1.93571)
m.c451 = Constraint(expr= - m.x80 + m.x265 == 1.92513)
m.c452 = Constraint(expr= - m.x81 + m.x266 == 2.03089)
m.c453 = Constraint(expr= - m.x82 + m.x267 == 1.78443)
m.c454 = Constraint(expr= - m.x83 + m.x268 == 1.89588)
m.c455 = Constraint(expr= - m.x84 + m.x269 == 3.72749)
m.c456 = Constraint(expr= - m.x85 + m.x270 == 3.62121)
m.c457 = Constraint(expr= - m.x86 + m.x271 == 3.70018)
m.c458 = Constraint(expr= - m.x87 + m.x272 == 3.64025)
m.c459 = Constraint(expr= - m.x88 + m.x273 == 3.67531)
m.c460 = Constraint(expr= - m.x89 + m.x274 == 3.66627)
m.c461 = Constraint(expr= - m.x90 + m.x275 == 3.76405)
m.c462 = Constraint(expr= - m.x91 + m.x276 == 3.41879)
m.c463 = Constraint(expr= - m.x92 + m.x277 == 3.55005)
m.c464 = Constraint(expr= - m.x93 + m.x278 == 4.15405)
m.c465 = Constraint(expr= - m.x94 + m.x279 == 4.0195)
m.c466 = Constraint(expr= - m.x95 + m.x280 == 5.45261)
m.c467 = Constraint(expr= - m.x96 + m.x281 == 0.440955)
m.c468 = Constraint(expr= - m.x97 + m.x282 == 0.437507)
m.c469 = Constraint(expr= - m.x98 + m.x283 == 0.417871)
m.c470 = Constraint(expr= - m.x99 + m.x284 == 0.472616)
m.c471 = Constraint(expr= - m.x100 + m.x285 == 0.475038)
m.c472 = Constraint(expr= - m.x101 + m.x286 == 0.505596)
m.c473 = Constraint(expr= - m.x102 + m.x287 == 0.46999)
m.c474 = Constraint(expr= - m.x103 + m.x288 == 0.466464)
m.c475 = Constraint(expr= - m.x104 + m.x289 == 4.28329)
m.c476 = Constraint(expr= - m.x105 + m.x290 == 5.97785)
m.c477 = Constraint(expr= - m.x106 + m.x291 == 4.15427)
m.c478 = Constraint(expr= - m.x107 + m.x292 == 4.30813)
m.c479 = Constraint(expr= - m.x108 + m.x293 == 4.33171)
m.c480 = Constraint(expr= - m.x109 + m.x294 == 4.18136)
m.c481 = Constraint(expr= - m.x110 + m.x295 == 4.29279)
m.c482 = Constraint(expr= - m.x111 + m.x296 == 4.29341)
m.c483 = Constraint(expr= - m.x112 + m.x297 == 6.07043)
m.c484 = Constraint(expr= - m.x113 + m.x298 == 3.77426)
m.c485 = Constraint(expr= - m.x114 + m.x299 == 3.61529)
m.c486 = Constraint(expr= - m.x115 + m.x300 == 3.61529)
m.c487 = Constraint(expr= - m.x116 + m.x301 == 0.3013)
m.c488 = Constraint(expr= - m.x117 + m.x302 == 0.407356)
m.c489 = Constraint(expr= - m.x118 + m.x303 == 0.400957)
m.c490 = Constraint(expr= - m.x119 + m.x304 == 0.364663)
m.c491 = Constraint(expr= - m.x120 + m.x305 == 0.362005)
m.c492 = Constraint(expr= - m.x121 + m.x306 == 0.372731)
m.c493 = Constraint(expr= - m.x122 + m.x307 == 0.409479)
m.c494 = Constraint(expr= - m.x123 + m.x308 == 0.398242)
m.c495 = Constraint(expr= - m.x124 + m.x309 == 0.38497)
m.c496 = Constraint(expr= - m.x125 + m.x310 == 0.378994)
m.c497 = Constraint(expr= - m.x126 + m.x311 == 0.380718)
m.c498 = Constraint(expr= - m.x127 + m.x312 == 0.392795)
m.c499 = Constraint(expr= - m.x128 + m.x313 == 0.995721)
m.c500 = Constraint(expr= - m.x129 + m.x314 == 0.732346)
m.c501 = Constraint(expr= - m.x130 + m.x315 == 0.868679)
m.c502 = Constraint(expr= - m.x131 + m.x316 == 0.777715)
m.c503 = Constraint(expr= - m.x132 + m.x317 == 1.01527)
m.c504 = Constraint(expr= - m.x133 + m.x318 == 0.321133)
m.c505 = Constraint(expr= - m.x134 + m.x319 == 0.315665)
m.c506 = Constraint(expr= - m.x135 + m.x320 == 0.319378)
m.c507 = Constraint(expr= - m.x136 + m.x321 == 0.271866)
m.c508 = Constraint(expr= - m.x137 + m.x322 == 0.364662)
m.c509 = Constraint(expr= - m.x138 + m.x323 == 0.369007)
m.c510 = Constraint(expr= - m.x139 + m.x324 == 0.400714)
m.c511 = Constraint(expr= - m.x140 + m.x325 == 0.378908)
m.c512 = Constraint(expr= - m.x141 + m.x326 == 0.377165)
m.c513 = Constraint(expr= - m.x142 + m.x327 == 0.929079)
m.c514 = Constraint(expr= - m.x143 + m.x328 == 0.558954)
m.c515 = Constraint(expr= - m.x144 + m.x329 == 0.542686)
m.c516 = Constraint(expr= - m.x145 + m.x330 == 0.60239)
m.c517 = Constraint(expr= - m.x146 + m.x331 == 0.600093)
m.c518 = Constraint(expr= - m.x147 + m.x332 == 0.616804)
m.c519 = Constraint(expr= - m.x148 + m.x333 == 0.602731)
m.c520 = Constraint(expr= - m.x149 + m.x334 == 0.593095)
m.c521 = Constraint(expr= - m.x150 + m.x335 == 0.575161)
m.c522 = Constraint(expr= - m.x151 + m.x336 == 0.529298)
m.c523 = Constraint(expr= - m.x152 + m.x337 == 0.530236)
m.c524 = Constraint(expr= - m.x153 + m.x338 == 0.546282)
m.c525 = Constraint(expr= - m.x154 + m.x339 == 0.854295)
m.c526 = Constraint(expr= - m.x155 + m.x340 == 0.83876)
m.c527 = Constraint(expr= - m.x156 + m.x341 == 1.36064)
m.c528 = Constraint(expr= - m.x157 + m.x342 == 0.273514)
m.c529 = Constraint(expr= - m.x158 + m.x343 == 0.396593)
m.c530 = Constraint(expr= - m.x159 + m.x344 == 0.390363)
m.c531 = Constraint(expr= - m.x160 + m.x345 == 0.355471)
m.c532 = Constraint(expr= - m.x161 + m.x346 == 0.316072)
m.c533 = Constraint(expr= - m.x162 + m.x347 == 0.325436)
m.c534 = Constraint(expr= - m.x163 + m.x348 == 0.37926)
m.c535 = Constraint(expr= - m.x164 + m.x349 == 0.396908)
m.c536 = Constraint(expr= - m.x165 + m.x350 == 0.38368)
m.c537 = Constraint(expr= - m.x166 + m.x351 == 0.320518)
m.c538 = Constraint(expr= - m.x167 + m.x352 == 0.326737)
m.c539 = Constraint(expr= - m.x168 + m.x353 == 0.337102)
m.c540 = Constraint(expr= - m.x169 + m.x354 == 0.994876)
m.c541 = Constraint(expr= - m.x170 + m.x355 == 0.690188)
m.c542 = Constraint(expr= - m.x171 + m.x356 == 4.79596)
m.c543 = Constraint(expr= - m.x172 + m.x357 == 3.46514)
m.c544 = Constraint(expr= - m.x173 + m.x358 == 3.46514)
m.c545 = Constraint(expr= - m.x174 + m.x359 == 4.92571)
m.c546 = Constraint(expr= - m.x175 + m.x360 == 5.10815)
m.c547 = Constraint(expr= - m.x176 + m.x361 == 4.95521)
m.c548 = Constraint(expr= - m.x177 + m.x362 == 4.93259)
m.c549 = Constraint(expr= - m.x178 + m.x363 == 5.06405)
m.c550 = Constraint(expr= - m.x179 + m.x364 == 4.93479)
m.c551 = Constraint(expr= - m.x180 + m.x365 == 3.4506)
m.c552 = Constraint(expr= - m.x181 + m.x366 == 3.39293)
m.c553 = Constraint(expr= - m.x182 + m.x367 == 4.25482)
m.c554 = Constraint(expr= - m.x183 + m.x368 == 4.80552)
m.c555 = Constraint(expr= - m.x184 + m.x369 == 4.80552)
m.c556 = Constraint(expr= - m.x185 + m.x370 == 6.20126)
m.c557 = Constraint(expr= m.b371 + m.b372 + m.b373 + m.b374 + m.b375 + m.b376 + m.b377 + m.b378 + m.b379 + m.b380
+ m.b381 + m.b382 + m.b383 + m.b384 == 3)
| 105.644758 | 120 | 0.517286 | # MINLP written by GAMS Convert at 01/15/21 11:37:41
#
# Equation counts
# Total E G L N X C B
# 557 187 0 370 0 0 0 0
#
# Variable counts
# x b i s1s s2s sc si
# Total cont binary integer sos1 sos2 scont sint
# 385 371 14 0 0 0 0 0
# FX 0 0 0 0 0 0 0 0
#
# Nonzero counts
# Total const NL DLL
# 1310 1125 185 0
#
# Reformulation has removed 1 variable and 1 equation
from pyomo.environ import *
model = m = ConcreteModel()
m.x1 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x2 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x3 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x4 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x5 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x6 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x7 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x8 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x9 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x10 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x11 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x12 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x13 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x14 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x15 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x16 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x17 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x18 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x19 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x20 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x21 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x22 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x23 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x24 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x25 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x26 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x27 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x28 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x29 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x30 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x31 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x32 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x33 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x34 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x35 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x36 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x37 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x38 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x39 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x40 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x41 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x42 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x43 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x44 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x45 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x46 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x47 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x48 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x49 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x50 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x51 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x52 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x53 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x54 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x55 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x56 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x57 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x58 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x59 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x60 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x61 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x62 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x63 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x64 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x65 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x66 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x67 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x68 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x69 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x70 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x71 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x72 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x73 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x74 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x75 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x76 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x77 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x78 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x79 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x80 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x81 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x82 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x83 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x84 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x85 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x86 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x87 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x88 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x89 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x90 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x91 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x92 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x93 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x94 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x95 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x96 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x97 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x98 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x99 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x100 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x101 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x102 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x103 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x104 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x105 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x106 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x107 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x108 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x109 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x110 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x111 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x112 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x113 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x114 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x115 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x116 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x117 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x118 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x119 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x120 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x121 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x122 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x123 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x124 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x125 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x126 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x127 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x128 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x129 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x130 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x131 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x132 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x133 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x134 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x135 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x136 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x137 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x138 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x139 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x140 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x141 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x142 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x143 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x144 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x145 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x146 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x147 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x148 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x149 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x150 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x151 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x152 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x153 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x154 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x155 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x156 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x157 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x158 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x159 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x160 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x161 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x162 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x163 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x164 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x165 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x166 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x167 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x168 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x169 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x170 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x171 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x172 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x173 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x174 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x175 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x176 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x177 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x178 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x179 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x180 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x181 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x182 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x183 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x184 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x185 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x186 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x187 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x188 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x189 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x190 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x191 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x192 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x193 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x194 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x195 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x196 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x197 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x198 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x199 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x200 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x201 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x202 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x203 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x204 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x205 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x206 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x207 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x208 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x209 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x210 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x211 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x212 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x213 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x214 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x215 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x216 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x217 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x218 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x219 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x220 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x221 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x222 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x223 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x224 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x225 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x226 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x227 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x228 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x229 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x230 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x231 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x232 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x233 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x234 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x235 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x236 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x237 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x238 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x239 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x240 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x241 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x242 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x243 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x244 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x245 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x246 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x247 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x248 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x249 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x250 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x251 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x252 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x253 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x254 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x255 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x256 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x257 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x258 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x259 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x260 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x261 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x262 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x263 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x264 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x265 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x266 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x267 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x268 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x269 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x270 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x271 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x272 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x273 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x274 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x275 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x276 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x277 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x278 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x279 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x280 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x281 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x282 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x283 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x284 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x285 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x286 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x287 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x288 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x289 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x290 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x291 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x292 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x293 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x294 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x295 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x296 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x297 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x298 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x299 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x300 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x301 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x302 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x303 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x304 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x305 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x306 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x307 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x308 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x309 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x310 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x311 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x312 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x313 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x314 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x315 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x316 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x317 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x318 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x319 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x320 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x321 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x322 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x323 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x324 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x325 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x326 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x327 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x328 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x329 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x330 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x331 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x332 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x333 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x334 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x335 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x336 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x337 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x338 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x339 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x340 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x341 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x342 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x343 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x344 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x345 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x346 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x347 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x348 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x349 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x350 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x351 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x352 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x353 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x354 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x355 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x356 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x357 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x358 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x359 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x360 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x361 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x362 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x363 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x364 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x365 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x366 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x367 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x368 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x369 = Var(within=Reals,bounds=(None,None),initialize=0)
m.x370 = Var(within=Reals,bounds=(None,None),initialize=0)
m.b371 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b372 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b373 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b374 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b375 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b376 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b377 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b378 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b379 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b380 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b381 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b382 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b383 = Var(within=Binary,bounds=(0,1),initialize=0)
m.b384 = Var(within=Binary,bounds=(0,1),initialize=0)
m.obj = Objective(expr=8.97486180308713*m.x1**2 + 0.0001*m.x1*m.x2 + 0.0001*m.x1*m.x3 + 0.0001*m.x1*m.x4 + 0.0001*m.x1*
m.x5 + 0.0001*m.x1*m.x6 + 0.0001*m.x1*m.x7 + 0.0001*m.x1*m.x8 + 0.0001*m.x1*m.x9 + 0.0001*m.x1*
m.x10 + 0.0001*m.x1*m.x11 + 0.0001*m.x1*m.x12 + 7.2765641293107*m.x1*m.x13 + 0.0001*m.x1*m.x14 +
0.0001*m.x1*m.x15 + 0.0001*m.x1*m.x16 + 0.0001*m.x1*m.x17 + 0.0001*m.x1*m.x18 + 0.0001*m.x1*m.x19
+ 0.0001*m.x1*m.x20 + 0.0001*m.x1*m.x21 + 0.0001*m.x1*m.x22 + 0.0001*m.x1*m.x23 + 0.0001*m.x1*
m.x24 + 0.0001*m.x1*m.x25 + 0.0001*m.x1*m.x26 + 0.0001*m.x1*m.x27 + 0.0001*m.x1*m.x28 + 0.0001*
m.x1*m.x29 + 0.0001*m.x1*m.x30 + 0.0001*m.x1*m.x31 + 0.0001*m.x1*m.x32 + 0.0001*m.x1*m.x33 +
0.0001*m.x1*m.x34 + 0.0001*m.x1*m.x35 + 6.87832202410539*m.x1*m.x36 + 0.0001*m.x1*m.x37 + 0.0001*
m.x1*m.x38 + 0.0001*m.x1*m.x39 + 0.0001*m.x1*m.x40 + 0.0001*m.x1*m.x41 + 0.0001*m.x1*m.x42 +
0.0001*m.x1*m.x43 + 0.0001*m.x1*m.x44 + 0.0001*m.x1*m.x45 + 0.0001*m.x1*m.x46 + 0.0001*m.x1*m.x47
+ 0.0001*m.x1*m.x48 + 0.0001*m.x1*m.x49 + 0.0001*m.x1*m.x50 + 0.0001*m.x1*m.x51 + 0.0001*m.x1*
m.x52 + 0.0001*m.x1*m.x53 + 0.0001*m.x1*m.x54 + 0.0001*m.x1*m.x55 + 0.0001*m.x1*m.x56 + 0.0001*
m.x1*m.x57 + 0.0001*m.x1*m.x58 + 0.0001*m.x1*m.x59 + 0.0001*m.x1*m.x60 + 0.0001*m.x1*m.x61 +
0.0001*m.x1*m.x62 + 0.0001*m.x1*m.x63 + 0.0001*m.x1*m.x64 + 0.0001*m.x1*m.x65 + 0.0001*m.x1*m.x66
+ 0.0001*m.x1*m.x67 + 0.0001*m.x1*m.x68 + 0.0001*m.x1*m.x69 + 0.0001*m.x1*m.x70 + 0.0001*m.x1*
m.x71 + 0.0001*m.x1*m.x72 + 0.0001*m.x1*m.x73 + 0.0001*m.x1*m.x74 + 0.0001*m.x1*m.x75 + 0.0001*
m.x1*m.x76 + 0.0001*m.x1*m.x77 + 0.0001*m.x1*m.x78 + 0.0001*m.x1*m.x79 + 0.0001*m.x1*m.x80 +
0.0001*m.x1*m.x81 + 0.0001*m.x1*m.x82 + 0.0001*m.x1*m.x83 + 0.0001*m.x1*m.x84 + 0.0001*m.x1*m.x85
+ 0.0001*m.x1*m.x86 + 0.0001*m.x1*m.x87 + 0.0001*m.x1*m.x88 + 0.0001*m.x1*m.x89 + 0.0001*m.x1*
m.x90 + 0.0001*m.x1*m.x91 + 0.0001*m.x1*m.x92 + 0.0001*m.x1*m.x93 + 0.0001*m.x1*m.x94 + 0.0001*
m.x1*m.x95 + 0.0001*m.x1*m.x96 + 0.0001*m.x1*m.x97 + 0.0001*m.x1*m.x98 + 0.0001*m.x1*m.x99 +
0.0001*m.x1*m.x100 + 0.0001*m.x1*m.x101 + 0.0001*m.x1*m.x102 + 0.0001*m.x1*m.x103 + 0.0001*m.x1*
m.x104 + 0.0001*m.x1*m.x105 + 0.0001*m.x1*m.x106 + 0.0001*m.x1*m.x107 + 0.0001*m.x1*m.x108 +
0.0001*m.x1*m.x109 + 0.0001*m.x1*m.x110 + 0.0001*m.x1*m.x111 + 0.0001*m.x1*m.x112 + 0.0001*m.x1*
m.x113 + 0.0001*m.x1*m.x114 + 0.0001*m.x1*m.x115 + 0.0001*m.x1*m.x116 + 0.0001*m.x1*m.x117 +
0.0001*m.x1*m.x118 + 0.0001*m.x1*m.x119 + 0.0001*m.x1*m.x120 + 0.0001*m.x1*m.x121 + 0.0001*m.x1*
m.x122 + 0.0001*m.x1*m.x123 + 0.0001*m.x1*m.x124 + 0.0001*m.x1*m.x125 + 0.0001*m.x1*m.x126 +
0.0001*m.x1*m.x127 + 0.0001*m.x1*m.x128 + 0.0001*m.x1*m.x129 + 3.76549448672075*m.x1*m.x130 +
0.0001*m.x1*m.x131 + 0.0001*m.x1*m.x132 + 0.0001*m.x1*m.x133 + 0.0001*m.x1*m.x134 + 0.0001*m.x1*
m.x135 + 0.0001*m.x1*m.x136 + 0.0001*m.x1*m.x137 + 0.0001*m.x1*m.x138 + 0.0001*m.x1*m.x139 +
0.0001*m.x1*m.x140 + 0.0001*m.x1*m.x141 + 0.0001*m.x1*m.x142 + 0.0001*m.x1*m.x143 + 0.0001*m.x1*
m.x144 + 0.0001*m.x1*m.x145 + 0.0001*m.x1*m.x146 + 0.0001*m.x1*m.x147 + 0.0001*m.x1*m.x148 +
0.0001*m.x1*m.x149 + 0.0001*m.x1*m.x150 + 0.0001*m.x1*m.x151 + 0.0001*m.x1*m.x152 + 0.0001*m.x1*
m.x153 + 0.0001*m.x1*m.x154 + 0.0001*m.x1*m.x155 + 0.0001*m.x1*m.x156 + 0.0001*m.x1*m.x157 +
0.0001*m.x1*m.x158 + 0.0001*m.x1*m.x159 + 0.0001*m.x1*m.x160 + 0.0001*m.x1*m.x161 + 0.0001*m.x1*
m.x162 + 0.0001*m.x1*m.x163 + 0.0001*m.x1*m.x164 + 0.0001*m.x1*m.x165 + 0.0001*m.x1*m.x166 +
0.0001*m.x1*m.x167 + 0.0001*m.x1*m.x168 + 0.0001*m.x1*m.x169 + 0.0001*m.x1*m.x170 + 0.0001*m.x1*
m.x171 + 0.0001*m.x1*m.x172 + 0.0001*m.x1*m.x173 + 0.0001*m.x1*m.x174 + 0.0001*m.x1*m.x175 +
0.0001*m.x1*m.x176 + 0.0001*m.x1*m.x177 + 0.0001*m.x1*m.x178 + 0.0001*m.x1*m.x179 + 0.0001*m.x1*
m.x180 + 0.0001*m.x1*m.x181 + 0.0001*m.x1*m.x182 + 0.0001*m.x1*m.x183 + 0.0001*m.x1*m.x184 +
0.0001*m.x1*m.x185 + 0.0001*m.x2*m.x1 + 8.8693928761105*m.x2**2 + 0.0001*m.x2*m.x3 + 0.0001*m.x2*
m.x4 + 0.0001*m.x2*m.x5 + 0.0001*m.x2*m.x6 + 0.0001*m.x2*m.x7 + 0.0001*m.x2*m.x8 + 0.0001*m.x2*
m.x9 + 0.0001*m.x2*m.x10 + 0.0001*m.x2*m.x11 + 0.0001*m.x2*m.x12 + 0.0001*m.x2*m.x13 +
7.28961579614963*m.x2*m.x14 + 0.0001*m.x2*m.x15 + 0.0001*m.x2*m.x16 + 0.0001*m.x2*m.x17 + 0.0001*
m.x2*m.x18 + 0.0001*m.x2*m.x19 + 0.0001*m.x2*m.x20 + 0.0001*m.x2*m.x21 + 0.0001*m.x2*m.x22 +
0.0001*m.x2*m.x23 + 0.0001*m.x2*m.x24 + 1.78057905770917*m.x2*m.x25 + 0.0001*m.x2*m.x26 + 0.0001*
m.x2*m.x27 + 0.0001*m.x2*m.x28 + 0.0001*m.x2*m.x29 + 0.0001*m.x2*m.x30 + 0.0001*m.x2*m.x31 +
0.0001*m.x2*m.x32 + 0.0001*m.x2*m.x33 + 0.0001*m.x2*m.x34 + 0.0001*m.x2*m.x35 + 0.0001*m.x2*m.x36
+ 6.89065937102382*m.x2*m.x37 + 0.0001*m.x2*m.x38 + 0.0001*m.x2*m.x39 + 0.0001*m.x2*m.x40 +
0.0001*m.x2*m.x41 + 0.0001*m.x2*m.x42 + 0.0001*m.x2*m.x43 + 0.0001*m.x2*m.x44 + 0.0001*m.x2*m.x45
+ 0.0001*m.x2*m.x46 + 0.0001*m.x2*m.x47 + 0.0001*m.x2*m.x48 + 0.0001*m.x2*m.x49 + 0.0001*m.x2*
m.x50 + 0.0001*m.x2*m.x51 + 0.0001*m.x2*m.x52 + 0.0001*m.x2*m.x53 + 0.0001*m.x2*m.x54 + 0.0001*
m.x2*m.x55 + 0.0001*m.x2*m.x56 + 0.0001*m.x2*m.x57 + 0.0001*m.x2*m.x58 + 0.0001*m.x2*m.x59 +
0.0001*m.x2*m.x60 + 0.0001*m.x2*m.x61 + 0.0001*m.x2*m.x62 + 0.0001*m.x2*m.x63 + 0.0001*m.x2*m.x64
+ 0.0001*m.x2*m.x65 + 0.0001*m.x2*m.x66 + 0.0001*m.x2*m.x67 + 0.0001*m.x2*m.x68 + 0.0001*m.x2*
m.x69 + 0.0001*m.x2*m.x70 + 0.0001*m.x2*m.x71 + 0.0001*m.x2*m.x72 + 0.0001*m.x2*m.x73 + 0.0001*
m.x2*m.x74 + 0.0001*m.x2*m.x75 + 0.0001*m.x2*m.x76 + 0.0001*m.x2*m.x77 + 0.0001*m.x2*m.x78 +
0.0001*m.x2*m.x79 + 0.0001*m.x2*m.x80 + 0.0001*m.x2*m.x81 + 0.0001*m.x2*m.x82 + 0.0001*m.x2*m.x83
+ 0.0001*m.x2*m.x84 + 0.0001*m.x2*m.x85 + 0.0001*m.x2*m.x86 + 0.0001*m.x2*m.x87 + 0.0001*m.x2*
m.x88 + 0.0001*m.x2*m.x89 + 0.0001*m.x2*m.x90 + 0.0001*m.x2*m.x91 + 0.0001*m.x2*m.x92 + 0.0001*
m.x2*m.x93 + 0.0001*m.x2*m.x94 + 0.0001*m.x2*m.x95 + 0.0001*m.x2*m.x96 + 0.0001*m.x2*m.x97 +
0.0001*m.x2*m.x98 + 0.0001*m.x2*m.x99 + 0.0001*m.x2*m.x100 + 0.0001*m.x2*m.x101 + 0.0001*m.x2*
m.x102 + 0.0001*m.x2*m.x103 + 0.0001*m.x2*m.x104 + 0.0001*m.x2*m.x105 + 0.0001*m.x2*m.x106 +
0.0001*m.x2*m.x107 + 0.0001*m.x2*m.x108 + 0.0001*m.x2*m.x109 + 0.0001*m.x2*m.x110 + 0.0001*m.x2*
m.x111 + 0.0001*m.x2*m.x112 + 0.0001*m.x2*m.x113 + 0.0001*m.x2*m.x114 + 0.0001*m.x2*m.x115 +
0.0001*m.x2*m.x116 + 0.0001*m.x2*m.x117 + 0.0001*m.x2*m.x118 + 0.0001*m.x2*m.x119 + 0.0001*m.x2*
m.x120 + 0.0001*m.x2*m.x121 + 0.0001*m.x2*m.x122 + 0.0001*m.x2*m.x123 + 0.0001*m.x2*m.x124 +
0.0001*m.x2*m.x125 + 0.0001*m.x2*m.x126 + 0.0001*m.x2*m.x127 + 0.0001*m.x2*m.x128 + 0.0001*m.x2*
m.x129 + 0.0001*m.x2*m.x130 + 3.77224840915951*m.x2*m.x131 + 0.0001*m.x2*m.x132 + 0.0001*m.x2*
m.x133 + 0.0001*m.x2*m.x134 + 0.0001*m.x2*m.x135 + 0.0001*m.x2*m.x136 + 0.0001*m.x2*m.x137 +
0.0001*m.x2*m.x138 + 0.0001*m.x2*m.x139 + 0.0001*m.x2*m.x140 + 0.0001*m.x2*m.x141 + 0.0001*m.x2*
m.x142 + 0.0001*m.x2*m.x143 + 0.0001*m.x2*m.x144 + 0.0001*m.x2*m.x145 + 0.0001*m.x2*m.x146 +
0.0001*m.x2*m.x147 + 0.0001*m.x2*m.x148 + 0.0001*m.x2*m.x149 + 0.0001*m.x2*m.x150 + 0.0001*m.x2*
m.x151 + 0.0001*m.x2*m.x152 + 0.0001*m.x2*m.x153 + 0.0001*m.x2*m.x154 + 0.0001*m.x2*m.x155 +
0.0001*m.x2*m.x156 + 0.0001*m.x2*m.x157 + 0.0001*m.x2*m.x158 + 0.0001*m.x2*m.x159 + 0.0001*m.x2*
m.x160 + 0.0001*m.x2*m.x161 + 0.0001*m.x2*m.x162 + 0.0001*m.x2*m.x163 + 0.0001*m.x2*m.x164 +
0.0001*m.x2*m.x165 + 0.0001*m.x2*m.x166 + 0.0001*m.x2*m.x167 + 0.0001*m.x2*m.x168 + 0.0001*m.x2*
m.x169 + 0.0001*m.x2*m.x170 + 0.0001*m.x2*m.x171 + 0.0001*m.x2*m.x172 + 0.0001*m.x2*m.x173 +
0.0001*m.x2*m.x174 + 0.0001*m.x2*m.x175 + 0.0001*m.x2*m.x176 + 0.0001*m.x2*m.x177 + 0.0001*m.x2*
m.x178 + 0.0001*m.x2*m.x179 + 0.0001*m.x2*m.x180 + 0.0001*m.x2*m.x181 + 0.0001*m.x2*m.x182 +
0.0001*m.x2*m.x183 + 0.0001*m.x2*m.x184 + 0.0001*m.x2*m.x185 + 0.0001*m.x3*m.x1 + 0.0001*m.x3*
m.x2 + 8.8693928761105*m.x3**2 + 0.0001*m.x3*m.x4 + 0.0001*m.x3*m.x5 + 0.0001*m.x3*m.x6 + 0.0001*
m.x3*m.x7 + 0.0001*m.x3*m.x8 + 0.0001*m.x3*m.x9 + 0.0001*m.x3*m.x10 + 0.0001*m.x3*m.x11 + 0.0001*
m.x3*m.x12 + 0.0001*m.x3*m.x13 + 0.0001*m.x3*m.x14 + 7.28961579614963*m.x3*m.x15 + 0.0001*m.x3*
m.x16 + 0.0001*m.x3*m.x17 + 0.0001*m.x3*m.x18 + 0.0001*m.x3*m.x19 + 0.0001*m.x3*m.x20 + 0.0001*
m.x3*m.x21 + 0.0001*m.x3*m.x22 + 0.0001*m.x3*m.x23 + 0.0001*m.x3*m.x24 + 0.0001*m.x3*m.x25 +
1.75275431443054*m.x3*m.x26 + 0.0001*m.x3*m.x27 + 0.0001*m.x3*m.x28 + 0.0001*m.x3*m.x29 + 0.0001*
m.x3*m.x30 + 0.0001*m.x3*m.x31 + 0.0001*m.x3*m.x32 + 0.0001*m.x3*m.x33 + 0.0001*m.x3*m.x34 +
0.0001*m.x3*m.x35 + 0.0001*m.x3*m.x36 + 0.0001*m.x3*m.x37 + 6.89065937102382*m.x3*m.x38 + 0.0001*
m.x3*m.x39 + 0.0001*m.x3*m.x40 + 0.0001*m.x3*m.x41 + 0.0001*m.x3*m.x42 + 0.0001*m.x3*m.x43 +
0.0001*m.x3*m.x44 + 0.0001*m.x3*m.x45 + 0.0001*m.x3*m.x46 + 0.0001*m.x3*m.x47 + 0.0001*m.x3*m.x48
+ 0.0001*m.x3*m.x49 + 0.0001*m.x3*m.x50 + 0.0001*m.x3*m.x51 + 0.0001*m.x3*m.x52 + 0.0001*m.x3*
m.x53 + 0.0001*m.x3*m.x54 + 0.0001*m.x3*m.x55 + 0.0001*m.x3*m.x56 + 0.0001*m.x3*m.x57 + 0.0001*
m.x3*m.x58 + 0.0001*m.x3*m.x59 + 0.0001*m.x3*m.x60 + 0.0001*m.x3*m.x61 + 0.0001*m.x3*m.x62 +
0.0001*m.x3*m.x63 + 0.0001*m.x3*m.x64 + 0.0001*m.x3*m.x65 + 0.0001*m.x3*m.x66 + 0.0001*m.x3*m.x67
+ 0.0001*m.x3*m.x68 + 0.0001*m.x3*m.x69 + 0.0001*m.x3*m.x70 + 0.0001*m.x3*m.x71 + 0.0001*m.x3*
m.x72 + 0.0001*m.x3*m.x73 + 0.0001*m.x3*m.x74 + 0.0001*m.x3*m.x75 + 0.0001*m.x3*m.x76 + 0.0001*
m.x3*m.x77 + 0.0001*m.x3*m.x78 + 0.0001*m.x3*m.x79 + 0.0001*m.x3*m.x80 + 0.0001*m.x3*m.x81 +
0.0001*m.x3*m.x82 + 0.0001*m.x3*m.x83 + 0.0001*m.x3*m.x84 + 0.0001*m.x3*m.x85 + 0.0001*m.x3*m.x86
+ 0.0001*m.x3*m.x87 + 0.0001*m.x3*m.x88 + 0.0001*m.x3*m.x89 + 0.0001*m.x3*m.x90 + 0.0001*m.x3*
m.x91 + 0.0001*m.x3*m.x92 + 0.0001*m.x3*m.x93 + 0.0001*m.x3*m.x94 + 0.0001*m.x3*m.x95 + 0.0001*
m.x3*m.x96 + 0.0001*m.x3*m.x97 + 0.0001*m.x3*m.x98 + 0.0001*m.x3*m.x99 + 0.0001*m.x3*m.x100 +
0.0001*m.x3*m.x101 + 0.0001*m.x3*m.x102 + 0.0001*m.x3*m.x103 + 0.0001*m.x3*m.x104 + 0.0001*m.x3*
m.x105 + 0.0001*m.x3*m.x106 + 0.0001*m.x3*m.x107 + 0.0001*m.x3*m.x108 + 0.0001*m.x3*m.x109 +
0.0001*m.x3*m.x110 + 0.0001*m.x3*m.x111 + 0.0001*m.x3*m.x112 + 0.0001*m.x3*m.x113 + 0.0001*m.x3*
m.x114 + 0.0001*m.x3*m.x115 + 0.0001*m.x3*m.x116 + 0.0001*m.x3*m.x117 + 0.0001*m.x3*m.x118 +
0.0001*m.x3*m.x119 + 0.0001*m.x3*m.x120 + 0.0001*m.x3*m.x121 + 0.0001*m.x3*m.x122 + 0.0001*m.x3*
m.x123 + 0.0001*m.x3*m.x124 + 0.0001*m.x3*m.x125 + 0.0001*m.x3*m.x126 + 0.0001*m.x3*m.x127 +
0.0001*m.x3*m.x128 + 0.0001*m.x3*m.x129 + 0.0001*m.x3*m.x130 + 0.0001*m.x3*m.x131 +
3.76257545380017*m.x3*m.x132 + 0.0001*m.x3*m.x133 + 0.0001*m.x3*m.x134 + 0.0001*m.x3*m.x135 +
0.0001*m.x3*m.x136 + 0.0001*m.x3*m.x137 + 0.0001*m.x3*m.x138 + 0.0001*m.x3*m.x139 + 0.0001*m.x3*
m.x140 + 0.0001*m.x3*m.x141 + 0.0001*m.x3*m.x142 + 0.0001*m.x3*m.x143 + 0.0001*m.x3*m.x144 +
0.0001*m.x3*m.x145 + 0.0001*m.x3*m.x146 + 0.0001*m.x3*m.x147 + 0.0001*m.x3*m.x148 + 0.0001*m.x3*
m.x149 + 0.0001*m.x3*m.x150 + 0.0001*m.x3*m.x151 + 0.0001*m.x3*m.x152 + 0.0001*m.x3*m.x153 +
0.0001*m.x3*m.x154 + 0.0001*m.x3*m.x155 + 0.0001*m.x3*m.x156 + 0.0001*m.x3*m.x157 + 0.0001*m.x3*
m.x158 + 0.0001*m.x3*m.x159 + 0.0001*m.x3*m.x160 + 0.0001*m.x3*m.x161 + 0.0001*m.x3*m.x162 +
0.0001*m.x3*m.x163 + 0.0001*m.x3*m.x164 + 0.0001*m.x3*m.x165 + 0.0001*m.x3*m.x166 + 0.0001*m.x3*
m.x167 + 0.0001*m.x3*m.x168 + 0.0001*m.x3*m.x169 + 0.0001*m.x3*m.x170 + 0.0001*m.x3*m.x171 +
0.0001*m.x3*m.x172 + 0.0001*m.x3*m.x173 + 0.0001*m.x3*m.x174 + 0.0001*m.x3*m.x175 + 0.0001*m.x3*
m.x176 + 0.0001*m.x3*m.x177 + 0.0001*m.x3*m.x178 + 0.0001*m.x3*m.x179 + 0.0001*m.x3*m.x180 +
0.0001*m.x3*m.x181 + 0.0001*m.x3*m.x182 + 0.0001*m.x3*m.x183 + 0.0001*m.x3*m.x184 + 0.0001*m.x3*
m.x185 + 0.0001*m.x4*m.x1 + 0.0001*m.x4*m.x2 + 0.0001*m.x4*m.x3 + 8.8693928761105*m.x4**2 +
0.0001*m.x4*m.x5 + 0.0001*m.x4*m.x6 + 0.0001*m.x4*m.x7 + 0.0001*m.x4*m.x8 + 0.0001*m.x4*m.x9 +
0.0001*m.x4*m.x10 + 0.0001*m.x4*m.x11 + 0.0001*m.x4*m.x12 + 0.0001*m.x4*m.x13 + 0.0001*m.x4*m.x14
+ 0.0001*m.x4*m.x15 + 7.24661736061512*m.x4*m.x16 + 0.0001*m.x4*m.x17 + 0.0001*m.x4*m.x18 +
0.0001*m.x4*m.x19 + 0.0001*m.x4*m.x20 + 0.0001*m.x4*m.x21 + 0.0001*m.x4*m.x22 + 0.0001*m.x4*m.x23
+ 0.0001*m.x4*m.x24 + 0.0001*m.x4*m.x25 + 0.0001*m.x4*m.x26 + 1.75563715981236*m.x4*m.x27 +
0.0001*m.x4*m.x28 + 0.0001*m.x4*m.x29 + 0.0001*m.x4*m.x30 + 0.0001*m.x4*m.x31 + 0.0001*m.x4*m.x32
+ 0.0001*m.x4*m.x33 + 0.0001*m.x4*m.x34 + 0.0001*m.x4*m.x35 + 0.0001*m.x4*m.x36 + 0.0001*m.x4*
m.x37 + 0.0001*m.x4*m.x38 + 7.15893955401573*m.x4*m.x39 + 0.0001*m.x4*m.x40 + 0.0001*m.x4*m.x41
+ 0.0001*m.x4*m.x42 + 0.0001*m.x4*m.x43 + 0.0001*m.x4*m.x44 + 0.0001*m.x4*m.x45 + 0.0001*m.x4*
m.x46 + 0.0001*m.x4*m.x47 + 0.0001*m.x4*m.x48 + 0.0001*m.x4*m.x49 + 0.0001*m.x4*m.x50 + 0.0001*
m.x4*m.x51 + 0.0001*m.x4*m.x52 + 0.0001*m.x4*m.x53 + 0.0001*m.x4*m.x54 + 0.0001*m.x4*m.x55 +
0.0001*m.x4*m.x56 + 0.0001*m.x4*m.x57 + 0.0001*m.x4*m.x58 + 0.0001*m.x4*m.x59 + 0.0001*m.x4*m.x60
+ 0.0001*m.x4*m.x61 + 0.0001*m.x4*m.x62 + 0.0001*m.x4*m.x63 + 0.0001*m.x4*m.x64 + 0.0001*m.x4*
m.x65 + 0.0001*m.x4*m.x66 + 0.0001*m.x4*m.x67 + 0.0001*m.x4*m.x68 + 0.0001*m.x4*m.x69 + 0.0001*
m.x4*m.x70 + 0.0001*m.x4*m.x71 + 0.0001*m.x4*m.x72 + 0.0001*m.x4*m.x73 + 0.0001*m.x4*m.x74 +
0.0001*m.x4*m.x75 + 0.0001*m.x4*m.x76 + 0.0001*m.x4*m.x77 + 0.0001*m.x4*m.x78 + 0.0001*m.x4*m.x79
+ 0.0001*m.x4*m.x80 + 0.0001*m.x4*m.x81 + 0.0001*m.x4*m.x82 + 0.0001*m.x4*m.x83 + 0.0001*m.x4*
m.x84 + 0.0001*m.x4*m.x85 + 0.0001*m.x4*m.x86 + 0.0001*m.x4*m.x87 + 0.0001*m.x4*m.x88 + 0.0001*
m.x4*m.x89 + 0.0001*m.x4*m.x90 + 0.0001*m.x4*m.x91 + 0.0001*m.x4*m.x92 + 0.0001*m.x4*m.x93 +
0.0001*m.x4*m.x94 + 0.0001*m.x4*m.x95 + 0.0001*m.x4*m.x96 + 0.0001*m.x4*m.x97 + 0.0001*m.x4*m.x98
+ 0.0001*m.x4*m.x99 + 0.0001*m.x4*m.x100 + 0.0001*m.x4*m.x101 + 0.0001*m.x4*m.x102 + 0.0001*m.x4
*m.x103 + 0.0001*m.x4*m.x104 + 0.0001*m.x4*m.x105 + 0.0001*m.x4*m.x106 + 0.0001*m.x4*m.x107 +
0.0001*m.x4*m.x108 + 0.0001*m.x4*m.x109 + 0.0001*m.x4*m.x110 + 0.0001*m.x4*m.x111 + 0.0001*m.x4*
m.x112 + 0.0001*m.x4*m.x113 + 0.0001*m.x4*m.x114 + 0.0001*m.x4*m.x115 + 0.0001*m.x4*m.x116 +
0.0001*m.x4*m.x117 + 0.0001*m.x4*m.x118 + 0.0001*m.x4*m.x119 + 0.0001*m.x4*m.x120 + 0.0001*m.x4*
m.x121 + 0.0001*m.x4*m.x122 + 0.0001*m.x4*m.x123 + 0.0001*m.x4*m.x124 + 0.0001*m.x4*m.x125 +
0.0001*m.x4*m.x126 + 0.0001*m.x4*m.x127 + 0.0001*m.x4*m.x128 + 0.0001*m.x4*m.x129 + 0.0001*m.x4*
m.x130 + 0.0001*m.x4*m.x131 + 0.0001*m.x4*m.x132 + 3.72778316578126*m.x4*m.x133 + 0.0001*m.x4*
m.x134 + 0.0001*m.x4*m.x135 + 0.0001*m.x4*m.x136 + 0.0001*m.x4*m.x137 + 0.0001*m.x4*m.x138 +
0.0001*m.x4*m.x139 + 0.0001*m.x4*m.x140 + 0.0001*m.x4*m.x141 + 0.0001*m.x4*m.x142 + 0.0001*m.x4*
m.x143 + 0.0001*m.x4*m.x144 + 0.0001*m.x4*m.x145 + 0.0001*m.x4*m.x146 + 0.0001*m.x4*m.x147 +
0.0001*m.x4*m.x148 + 0.0001*m.x4*m.x149 + 0.0001*m.x4*m.x150 + 0.0001*m.x4*m.x151 + 0.0001*m.x4*
m.x152 + 0.0001*m.x4*m.x153 + 0.0001*m.x4*m.x154 + 0.0001*m.x4*m.x155 + 0.0001*m.x4*m.x156 +
0.0001*m.x4*m.x157 + 0.0001*m.x4*m.x158 + 0.0001*m.x4*m.x159 + 0.0001*m.x4*m.x160 + 0.0001*m.x4*
m.x161 + 0.0001*m.x4*m.x162 + 0.0001*m.x4*m.x163 + 0.0001*m.x4*m.x164 + 0.0001*m.x4*m.x165 +
0.0001*m.x4*m.x166 + 0.0001*m.x4*m.x167 + 0.0001*m.x4*m.x168 + 0.0001*m.x4*m.x169 + 0.0001*m.x4*
m.x170 + 0.0001*m.x4*m.x171 + 0.0001*m.x4*m.x172 + 0.0001*m.x4*m.x173 + 0.0001*m.x4*m.x174 +
0.0001*m.x4*m.x175 + 0.0001*m.x4*m.x176 + 0.0001*m.x4*m.x177 + 0.0001*m.x4*m.x178 + 0.0001*m.x4*
m.x179 + 0.0001*m.x4*m.x180 + 0.0001*m.x4*m.x181 + 0.0001*m.x4*m.x182 + 0.0001*m.x4*m.x183 +
0.0001*m.x4*m.x184 + 0.0001*m.x4*m.x185 + 0.0001*m.x5*m.x1 + 0.0001*m.x5*m.x2 + 0.0001*m.x5*m.x3
+ 0.0001*m.x5*m.x4 + 9.10479587663686*m.x5**2 + 0.0001*m.x5*m.x6 + 0.0001*m.x5*m.x7 + 0.0001*
m.x5*m.x8 + 0.0001*m.x5*m.x9 + 0.0001*m.x5*m.x10 + 0.0001*m.x5*m.x11 + 0.0001*m.x5*m.x12 + 0.0001
*m.x5*m.x13 + 0.0001*m.x5*m.x14 + 0.0001*m.x5*m.x15 + 0.0001*m.x5*m.x16 + 7.26656408673387*m.x5*
m.x17 + 0.0001*m.x5*m.x18 + 0.0001*m.x5*m.x19 + 0.0001*m.x5*m.x20 + 0.0001*m.x5*m.x21 + 0.0001*
m.x5*m.x22 + 0.0001*m.x5*m.x23 + 0.0001*m.x5*m.x24 + 0.0001*m.x5*m.x25 + 0.0001*m.x5*m.x26 +
0.0001*m.x5*m.x27 + 1.76040038778825*m.x5*m.x28 + 0.0001*m.x5*m.x29 + 0.0001*m.x5*m.x30 + 0.0001*
m.x5*m.x31 + 0.0001*m.x5*m.x32 + 0.0001*m.x5*m.x33 + 0.0001*m.x5*m.x34 + 0.0001*m.x5*m.x35 +
0.0001*m.x5*m.x36 + 0.0001*m.x5*m.x37 + 0.0001*m.x5*m.x38 + 0.0001*m.x5*m.x39 + 7.17752787044043*
m.x5*m.x40 + 0.0001*m.x5*m.x41 + 0.0001*m.x5*m.x42 + 0.0001*m.x5*m.x43 + 0.0001*m.x5*m.x44 +
0.0001*m.x5*m.x45 + 0.0001*m.x5*m.x46 + 0.0001*m.x5*m.x47 + 0.0001*m.x5*m.x48 + 0.0001*m.x5*m.x49
+ 0.0001*m.x5*m.x50 + 0.0001*m.x5*m.x51 + 0.0001*m.x5*m.x52 + 0.0001*m.x5*m.x53 + 0.0001*m.x5*
m.x54 + 0.0001*m.x5*m.x55 + 0.0001*m.x5*m.x56 + 0.0001*m.x5*m.x57 + 0.0001*m.x5*m.x58 + 0.0001*
m.x5*m.x59 + 0.0001*m.x5*m.x60 + 0.0001*m.x5*m.x61 + 0.0001*m.x5*m.x62 + 0.0001*m.x5*m.x63 +
0.0001*m.x5*m.x64 + 0.0001*m.x5*m.x65 + 0.0001*m.x5*m.x66 + 0.0001*m.x5*m.x67 + 0.0001*m.x5*m.x68
+ 0.0001*m.x5*m.x69 + 0.0001*m.x5*m.x70 + 0.0001*m.x5*m.x71 + 0.0001*m.x5*m.x72 + 0.0001*m.x5*
m.x73 + 0.0001*m.x5*m.x74 + 0.0001*m.x5*m.x75 + 0.0001*m.x5*m.x76 + 0.0001*m.x5*m.x77 + 0.0001*
m.x5*m.x78 + 0.0001*m.x5*m.x79 + 0.0001*m.x5*m.x80 + 0.0001*m.x5*m.x81 + 0.0001*m.x5*m.x82 +
0.0001*m.x5*m.x83 + 0.0001*m.x5*m.x84 + 0.0001*m.x5*m.x85 + 0.0001*m.x5*m.x86 + 0.0001*m.x5*m.x87
+ 0.0001*m.x5*m.x88 + 0.0001*m.x5*m.x89 + 0.0001*m.x5*m.x90 + 0.0001*m.x5*m.x91 + 0.0001*m.x5*
m.x92 + 0.0001*m.x5*m.x93 + 0.0001*m.x5*m.x94 + 0.0001*m.x5*m.x95 + 0.0001*m.x5*m.x96 + 0.0001*
m.x5*m.x97 + 0.0001*m.x5*m.x98 + 0.0001*m.x5*m.x99 + 0.0001*m.x5*m.x100 + 0.0001*m.x5*m.x101 +
0.0001*m.x5*m.x102 + 0.0001*m.x5*m.x103 + 0.0001*m.x5*m.x104 + 0.0001*m.x5*m.x105 + 0.0001*m.x5*
m.x106 + 0.0001*m.x5*m.x107 + 0.0001*m.x5*m.x108 + 0.0001*m.x5*m.x109 + 0.0001*m.x5*m.x110 +
0.0001*m.x5*m.x111 + 0.0001*m.x5*m.x112 + 0.0001*m.x5*m.x113 + 0.0001*m.x5*m.x114 + 0.0001*m.x5*
m.x115 + 0.0001*m.x5*m.x116 + 0.0001*m.x5*m.x117 + 0.0001*m.x5*m.x118 + 0.0001*m.x5*m.x119 +
0.0001*m.x5*m.x120 + 0.0001*m.x5*m.x121 + 0.0001*m.x5*m.x122 + 0.0001*m.x5*m.x123 + 0.0001*m.x5*
m.x124 + 0.0001*m.x5*m.x125 + 0.0001*m.x5*m.x126 + 0.0001*m.x5*m.x127 + 0.0001*m.x5*m.x128 +
0.0001*m.x5*m.x129 + 0.0001*m.x5*m.x130 + 0.0001*m.x5*m.x131 + 0.0001*m.x5*m.x132 + 0.0001*m.x5*
m.x133 + 3.73746229794978*m.x5*m.x134 + 0.0001*m.x5*m.x135 + 0.0001*m.x5*m.x136 + 0.0001*m.x5*
m.x137 + 0.0001*m.x5*m.x138 + 0.0001*m.x5*m.x139 + 0.0001*m.x5*m.x140 + 0.0001*m.x5*m.x141 +
0.0001*m.x5*m.x142 + 0.0001*m.x5*m.x143 + 0.0001*m.x5*m.x144 + 0.0001*m.x5*m.x145 + 0.0001*m.x5*
m.x146 + 0.0001*m.x5*m.x147 + 0.0001*m.x5*m.x148 + 0.0001*m.x5*m.x149 + 0.0001*m.x5*m.x150 +
0.0001*m.x5*m.x151 + 0.0001*m.x5*m.x152 + 0.0001*m.x5*m.x153 + 0.0001*m.x5*m.x154 + 0.0001*m.x5*
m.x155 + 0.0001*m.x5*m.x156 + 0.0001*m.x5*m.x157 + 0.0001*m.x5*m.x158 + 0.0001*m.x5*m.x159 +
0.0001*m.x5*m.x160 + 0.0001*m.x5*m.x161 + 0.0001*m.x5*m.x162 + 0.0001*m.x5*m.x163 + 0.0001*m.x5*
m.x164 + 0.0001*m.x5*m.x165 + 0.0001*m.x5*m.x166 + 0.0001*m.x5*m.x167 + 0.0001*m.x5*m.x168 +
0.0001*m.x5*m.x169 + 0.0001*m.x5*m.x170 + 0.0001*m.x5*m.x171 + 0.0001*m.x5*m.x172 + 0.0001*m.x5*
m.x173 + 0.0001*m.x5*m.x174 + 0.0001*m.x5*m.x175 + 0.0001*m.x5*m.x176 + 0.0001*m.x5*m.x177 +
0.0001*m.x5*m.x178 + 0.0001*m.x5*m.x179 + 0.0001*m.x5*m.x180 + 0.0001*m.x5*m.x181 + 0.0001*m.x5*
m.x182 + 0.0001*m.x5*m.x183 + 0.0001*m.x5*m.x184 + 0.0001*m.x5*m.x185 + 0.0001*m.x6*m.x1 + 0.0001
*m.x6*m.x2 + 0.0001*m.x6*m.x3 + 0.0001*m.x6*m.x4 + 0.0001*m.x6*m.x5 + 9.10479587663686*m.x6**2 +
0.0001*m.x6*m.x7 + 0.0001*m.x6*m.x8 + 0.0001*m.x6*m.x9 + 0.0001*m.x6*m.x10 + 0.0001*m.x6*m.x11 +
0.0001*m.x6*m.x12 + 0.0001*m.x6*m.x13 + 0.0001*m.x6*m.x14 + 0.0001*m.x6*m.x15 + 0.0001*m.x6*m.x16
+ 0.0001*m.x6*m.x17 + 7.26556099733353*m.x6*m.x18 + 0.0001*m.x6*m.x19 + 0.0001*m.x6*m.x20 +
0.0001*m.x6*m.x21 + 0.0001*m.x6*m.x22 + 0.0001*m.x6*m.x23 + 0.0001*m.x6*m.x24 + 0.0001*m.x6*m.x25
+ 0.0001*m.x6*m.x26 + 0.0001*m.x6*m.x27 + 0.0001*m.x6*m.x28 + 1.76849613599461*m.x6*m.x29 +
0.0001*m.x6*m.x30 + 0.0001*m.x6*m.x31 + 0.0001*m.x6*m.x32 + 0.0001*m.x6*m.x33 + 0.0001*m.x6*m.x34
+ 0.0001*m.x6*m.x35 + 0.0001*m.x6*m.x36 + 0.0001*m.x6*m.x37 + 0.0001*m.x6*m.x38 + 0.0001*m.x6*
m.x39 + 0.0001*m.x6*m.x40 + 7.17765398594047*m.x6*m.x41 + 0.0001*m.x6*m.x42 + 0.0001*m.x6*m.x43
+ 0.0001*m.x6*m.x44 + 0.0001*m.x6*m.x45 + 0.0001*m.x6*m.x46 + 0.0001*m.x6*m.x47 + 0.0001*m.x6*
m.x48 + 0.0001*m.x6*m.x49 + 0.0001*m.x6*m.x50 + 0.0001*m.x6*m.x51 + 0.0001*m.x6*m.x52 + 0.0001*
m.x6*m.x53 + 0.0001*m.x6*m.x54 + 0.0001*m.x6*m.x55 + 0.0001*m.x6*m.x56 + 0.0001*m.x6*m.x57 +
0.0001*m.x6*m.x58 + 0.0001*m.x6*m.x59 + 0.0001*m.x6*m.x60 + 0.0001*m.x6*m.x61 + 0.0001*m.x6*m.x62
+ 0.0001*m.x6*m.x63 + 0.0001*m.x6*m.x64 + 0.0001*m.x6*m.x65 + 0.0001*m.x6*m.x66 + 0.0001*m.x6*
m.x67 + 0.0001*m.x6*m.x68 + 0.0001*m.x6*m.x69 + 0.0001*m.x6*m.x70 + 0.0001*m.x6*m.x71 + 0.0001*
m.x6*m.x72 + 0.0001*m.x6*m.x73 + 0.0001*m.x6*m.x74 + 0.0001*m.x6*m.x75 + 0.0001*m.x6*m.x76 +
0.0001*m.x6*m.x77 + 0.0001*m.x6*m.x78 + 0.0001*m.x6*m.x79 + 0.0001*m.x6*m.x80 + 0.0001*m.x6*m.x81
+ 0.0001*m.x6*m.x82 + 0.0001*m.x6*m.x83 + 0.0001*m.x6*m.x84 + 0.0001*m.x6*m.x85 + 0.0001*m.x6*
m.x86 + 0.0001*m.x6*m.x87 + 0.0001*m.x6*m.x88 + 0.0001*m.x6*m.x89 + 0.0001*m.x6*m.x90 + 0.0001*
m.x6*m.x91 + 0.0001*m.x6*m.x92 + 0.0001*m.x6*m.x93 + 0.0001*m.x6*m.x94 + 0.0001*m.x6*m.x95 +
0.0001*m.x6*m.x96 + 0.0001*m.x6*m.x97 + 0.0001*m.x6*m.x98 + 0.0001*m.x6*m.x99 + 0.0001*m.x6*
m.x100 + 0.0001*m.x6*m.x101 + 0.0001*m.x6*m.x102 + 0.0001*m.x6*m.x103 + 0.0001*m.x6*m.x104 +
0.0001*m.x6*m.x105 + 0.0001*m.x6*m.x106 + 0.0001*m.x6*m.x107 + 0.0001*m.x6*m.x108 + 0.0001*m.x6*
m.x109 + 0.0001*m.x6*m.x110 + 0.0001*m.x6*m.x111 + 0.0001*m.x6*m.x112 + 0.0001*m.x6*m.x113 +
0.0001*m.x6*m.x114 + 0.0001*m.x6*m.x115 + 0.0001*m.x6*m.x116 + 0.0001*m.x6*m.x117 + 0.0001*m.x6*
m.x118 + 0.0001*m.x6*m.x119 + 0.0001*m.x6*m.x120 + 0.0001*m.x6*m.x121 + 0.0001*m.x6*m.x122 +
0.0001*m.x6*m.x123 + 0.0001*m.x6*m.x124 + 0.0001*m.x6*m.x125 + 0.0001*m.x6*m.x126 + 0.0001*m.x6*
m.x127 + 0.0001*m.x6*m.x128 + 0.0001*m.x6*m.x129 + 0.0001*m.x6*m.x130 + 0.0001*m.x6*m.x131 +
0.0001*m.x6*m.x132 + 0.0001*m.x6*m.x133 + 0.0001*m.x6*m.x134 + 3.80077230205016*m.x6*m.x135 +
0.0001*m.x6*m.x136 + 0.0001*m.x6*m.x137 + 0.0001*m.x6*m.x138 + 0.0001*m.x6*m.x139 + 0.0001*m.x6*
m.x140 + 0.0001*m.x6*m.x141 + 0.0001*m.x6*m.x142 + 0.0001*m.x6*m.x143 + 0.0001*m.x6*m.x144 +
0.0001*m.x6*m.x145 + 0.0001*m.x6*m.x146 + 0.0001*m.x6*m.x147 + 0.0001*m.x6*m.x148 + 0.0001*m.x6*
m.x149 + 0.0001*m.x6*m.x150 + 0.0001*m.x6*m.x151 + 0.0001*m.x6*m.x152 + 0.0001*m.x6*m.x153 +
0.0001*m.x6*m.x154 + 0.0001*m.x6*m.x155 + 0.0001*m.x6*m.x156 + 0.0001*m.x6*m.x157 + 0.0001*m.x6*
m.x158 + 0.0001*m.x6*m.x159 + 0.0001*m.x6*m.x160 + 0.0001*m.x6*m.x161 + 0.0001*m.x6*m.x162 +
0.0001*m.x6*m.x163 + 0.0001*m.x6*m.x164 + 0.0001*m.x6*m.x165 + 0.0001*m.x6*m.x166 + 0.0001*m.x6*
m.x167 + 0.0001*m.x6*m.x168 + 0.0001*m.x6*m.x169 + 0.0001*m.x6*m.x170 + 0.0001*m.x6*m.x171 +
0.0001*m.x6*m.x172 + 0.0001*m.x6*m.x173 + 0.0001*m.x6*m.x174 + 0.0001*m.x6*m.x175 + 0.0001*m.x6*
m.x176 + 0.0001*m.x6*m.x177 + 0.0001*m.x6*m.x178 + 0.0001*m.x6*m.x179 + 0.0001*m.x6*m.x180 +
0.0001*m.x6*m.x181 + 0.0001*m.x6*m.x182 + 0.0001*m.x6*m.x183 + 0.0001*m.x6*m.x184 + 0.0001*m.x6*
m.x185 + 0.0001*m.x7*m.x1 + 0.0001*m.x7*m.x2 + 0.0001*m.x7*m.x3 + 0.0001*m.x7*m.x4 + 0.0001*m.x7*
m.x5 + 0.0001*m.x7*m.x6 + 9.10479587663686*m.x7**2 + 0.0001*m.x7*m.x8 + 0.0001*m.x7*m.x9 + 0.0001
*m.x7*m.x10 + 0.0001*m.x7*m.x11 + 0.0001*m.x7*m.x12 + 0.0001*m.x7*m.x13 + 0.0001*m.x7*m.x14 +
0.0001*m.x7*m.x15 + 0.0001*m.x7*m.x16 + 0.0001*m.x7*m.x17 + 0.0001*m.x7*m.x18 + 7.41338218097586*
m.x7*m.x19 + 0.0001*m.x7*m.x20 + 0.0001*m.x7*m.x21 + 0.0001*m.x7*m.x22 + 0.0001*m.x7*m.x23 +
0.0001*m.x7*m.x24 + 0.0001*m.x7*m.x25 + 0.0001*m.x7*m.x26 + 0.0001*m.x7*m.x27 + 0.0001*m.x7*m.x28
+ 0.0001*m.x7*m.x29 + 1.72684751084366*m.x7*m.x30 + 0.0001*m.x7*m.x31 + 0.0001*m.x7*m.x32 +
0.0001*m.x7*m.x33 + 0.0001*m.x7*m.x34 + 0.0001*m.x7*m.x35 + 0.0001*m.x7*m.x36 + 0.0001*m.x7*m.x37
+ 0.0001*m.x7*m.x38 + 0.0001*m.x7*m.x39 + 0.0001*m.x7*m.x40 + 0.0001*m.x7*m.x41 +
7.14703239270426*m.x7*m.x42 + 0.0001*m.x7*m.x43 + 0.0001*m.x7*m.x44 + 0.0001*m.x7*m.x45 + 0.0001*
m.x7*m.x46 + 0.0001*m.x7*m.x47 + 0.0001*m.x7*m.x48 + 0.0001*m.x7*m.x49 + 0.0001*m.x7*m.x50 +
0.0001*m.x7*m.x51 + 0.0001*m.x7*m.x52 + 0.0001*m.x7*m.x53 + 0.0001*m.x7*m.x54 + 0.0001*m.x7*m.x55
+ 0.0001*m.x7*m.x56 + 0.0001*m.x7*m.x57 + 0.0001*m.x7*m.x58 + 0.0001*m.x7*m.x59 + 0.0001*m.x7*
m.x60 + 0.0001*m.x7*m.x61 + 0.0001*m.x7*m.x62 + 0.0001*m.x7*m.x63 + 0.0001*m.x7*m.x64 + 0.0001*
m.x7*m.x65 + 0.0001*m.x7*m.x66 + 0.0001*m.x7*m.x67 + 0.0001*m.x7*m.x68 + 0.0001*m.x7*m.x69 +
0.0001*m.x7*m.x70 + 0.0001*m.x7*m.x71 + 0.0001*m.x7*m.x72 + 0.0001*m.x7*m.x73 + 0.0001*m.x7*m.x74
+ 0.0001*m.x7*m.x75 + 0.0001*m.x7*m.x76 + 0.0001*m.x7*m.x77 + 0.0001*m.x7*m.x78 + 0.0001*m.x7*
m.x79 + 0.0001*m.x7*m.x80 + 0.0001*m.x7*m.x81 + 0.0001*m.x7*m.x82 + 0.0001*m.x7*m.x83 + 0.0001*
m.x7*m.x84 + 0.0001*m.x7*m.x85 + 0.0001*m.x7*m.x86 + 0.0001*m.x7*m.x87 + 0.0001*m.x7*m.x88 +
0.0001*m.x7*m.x89 + 0.0001*m.x7*m.x90 + 0.0001*m.x7*m.x91 + 0.0001*m.x7*m.x92 + 0.0001*m.x7*m.x93
+ 0.0001*m.x7*m.x94 + 0.0001*m.x7*m.x95 + 0.0001*m.x7*m.x96 + 0.0001*m.x7*m.x97 + 0.0001*m.x7*
m.x98 + 0.0001*m.x7*m.x99 + 0.0001*m.x7*m.x100 + 0.0001*m.x7*m.x101 + 0.0001*m.x7*m.x102 + 0.0001
*m.x7*m.x103 + 0.0001*m.x7*m.x104 + 0.0001*m.x7*m.x105 + 0.0001*m.x7*m.x106 + 0.0001*m.x7*m.x107
+ 0.0001*m.x7*m.x108 + 0.0001*m.x7*m.x109 + 0.0001*m.x7*m.x110 + 0.0001*m.x7*m.x111 + 0.0001*
m.x7*m.x112 + 0.0001*m.x7*m.x113 + 0.0001*m.x7*m.x114 + 0.0001*m.x7*m.x115 + 0.0001*m.x7*m.x116
+ 0.0001*m.x7*m.x117 + 0.0001*m.x7*m.x118 + 0.0001*m.x7*m.x119 + 0.0001*m.x7*m.x120 + 0.0001*
m.x7*m.x121 + 0.0001*m.x7*m.x122 + 0.0001*m.x7*m.x123 + 0.0001*m.x7*m.x124 + 0.0001*m.x7*m.x125
+ 0.0001*m.x7*m.x126 + 0.0001*m.x7*m.x127 + 0.0001*m.x7*m.x128 + 0.0001*m.x7*m.x129 + 0.0001*
m.x7*m.x130 + 0.0001*m.x7*m.x131 + 0.0001*m.x7*m.x132 + 0.0001*m.x7*m.x133 + 0.0001*m.x7*m.x134
+ 0.0001*m.x7*m.x135 + 3.87695415522262*m.x7*m.x136 + 0.0001*m.x7*m.x137 + 0.0001*m.x7*m.x138 +
0.0001*m.x7*m.x139 + 0.0001*m.x7*m.x140 + 0.0001*m.x7*m.x141 + 0.0001*m.x7*m.x142 + 0.0001*m.x7*
m.x143 + 0.0001*m.x7*m.x144 + 0.0001*m.x7*m.x145 + 0.0001*m.x7*m.x146 + 0.0001*m.x7*m.x147 +
0.0001*m.x7*m.x148 + 0.0001*m.x7*m.x149 + 0.0001*m.x7*m.x150 + 0.0001*m.x7*m.x151 + 0.0001*m.x7*
m.x152 + 0.0001*m.x7*m.x153 + 0.0001*m.x7*m.x154 + 0.0001*m.x7*m.x155 + 0.0001*m.x7*m.x156 +
0.0001*m.x7*m.x157 + 0.0001*m.x7*m.x158 + 0.0001*m.x7*m.x159 + 0.0001*m.x7*m.x160 + 0.0001*m.x7*
m.x161 + 0.0001*m.x7*m.x162 + 0.0001*m.x7*m.x163 + 0.0001*m.x7*m.x164 + 0.0001*m.x7*m.x165 +
0.0001*m.x7*m.x166 + 0.0001*m.x7*m.x167 + 0.0001*m.x7*m.x168 + 0.0001*m.x7*m.x169 + 0.0001*m.x7*
m.x170 + 0.0001*m.x7*m.x171 + 0.0001*m.x7*m.x172 + 0.0001*m.x7*m.x173 + 0.0001*m.x7*m.x174 +
0.0001*m.x7*m.x175 + 0.0001*m.x7*m.x176 + 0.0001*m.x7*m.x177 + 0.0001*m.x7*m.x178 + 0.0001*m.x7*
m.x179 + 0.0001*m.x7*m.x180 + 0.0001*m.x7*m.x181 + 0.0001*m.x7*m.x182 + 0.0001*m.x7*m.x183 +
0.0001*m.x7*m.x184 + 0.0001*m.x7*m.x185 + 0.0001*m.x8*m.x1 + 0.0001*m.x8*m.x2 + 0.0001*m.x8*m.x3
+ 0.0001*m.x8*m.x4 + 0.0001*m.x8*m.x5 + 0.0001*m.x8*m.x6 + 0.0001*m.x8*m.x7 + 8.28654036729117*
m.x8**2 + 0.0001*m.x8*m.x9 + 0.0001*m.x8*m.x10 + 0.0001*m.x8*m.x11 + 0.0001*m.x8*m.x12 + 0.0001*
m.x8*m.x13 + 0.0001*m.x8*m.x14 + 0.0001*m.x8*m.x15 + 0.0001*m.x8*m.x16 + 0.0001*m.x8*m.x17 +
0.0001*m.x8*m.x18 + 0.0001*m.x8*m.x19 + 7.4520596959325*m.x8*m.x20 + 0.0001*m.x8*m.x21 + 0.0001*
m.x8*m.x22 + 0.0001*m.x8*m.x23 + 0.0001*m.x8*m.x24 + 0.0001*m.x8*m.x25 + 0.0001*m.x8*m.x26 +
0.0001*m.x8*m.x27 + 0.0001*m.x8*m.x28 + 0.0001*m.x8*m.x29 + 0.0001*m.x8*m.x30 + 1.73585651671266*
m.x8*m.x31 + 0.0001*m.x8*m.x32 + 0.0001*m.x8*m.x33 + 0.0001*m.x8*m.x34 + 0.0001*m.x8*m.x35 +
0.0001*m.x8*m.x36 + 0.0001*m.x8*m.x37 + 0.0001*m.x8*m.x38 + 0.0001*m.x8*m.x39 + 0.0001*m.x8*m.x40
+ 0.0001*m.x8*m.x41 + 0.0001*m.x8*m.x42 + 7.18432027380264*m.x8*m.x43 + 0.0001*m.x8*m.x44 +
0.0001*m.x8*m.x45 + 0.0001*m.x8*m.x46 + 0.0001*m.x8*m.x47 + 0.0001*m.x8*m.x48 + 0.0001*m.x8*m.x49
+ 0.0001*m.x8*m.x50 + 0.0001*m.x8*m.x51 + 0.0001*m.x8*m.x52 + 0.0001*m.x8*m.x53 + 0.0001*m.x8*
m.x54 + 0.0001*m.x8*m.x55 + 0.0001*m.x8*m.x56 + 0.0001*m.x8*m.x57 + 0.0001*m.x8*m.x58 + 0.0001*
m.x8*m.x59 + 0.0001*m.x8*m.x60 + 0.0001*m.x8*m.x61 + 0.0001*m.x8*m.x62 + 0.0001*m.x8*m.x63 +
0.0001*m.x8*m.x64 + 0.0001*m.x8*m.x65 + 0.0001*m.x8*m.x66 + 0.0001*m.x8*m.x67 + 0.0001*m.x8*m.x68
+ 0.0001*m.x8*m.x69 + 0.0001*m.x8*m.x70 + 0.0001*m.x8*m.x71 + 0.0001*m.x8*m.x72 + 0.0001*m.x8*
m.x73 + 0.0001*m.x8*m.x74 + 0.0001*m.x8*m.x75 + 0.0001*m.x8*m.x76 + 0.0001*m.x8*m.x77 + 0.0001*
m.x8*m.x78 + 0.0001*m.x8*m.x79 + 0.0001*m.x8*m.x80 + 0.0001*m.x8*m.x81 + 0.0001*m.x8*m.x82 +
0.0001*m.x8*m.x83 + 0.0001*m.x8*m.x84 + 0.0001*m.x8*m.x85 + 0.0001*m.x8*m.x86 + 0.0001*m.x8*m.x87
+ 0.0001*m.x8*m.x88 + 0.0001*m.x8*m.x89 + 0.0001*m.x8*m.x90 + 0.0001*m.x8*m.x91 + 0.0001*m.x8*
m.x92 + 0.0001*m.x8*m.x93 + 0.0001*m.x8*m.x94 + 0.0001*m.x8*m.x95 + 0.0001*m.x8*m.x96 + 0.0001*
m.x8*m.x97 + 0.0001*m.x8*m.x98 + 0.0001*m.x8*m.x99 + 0.0001*m.x8*m.x100 + 0.0001*m.x8*m.x101 +
0.0001*m.x8*m.x102 + 0.0001*m.x8*m.x103 + 0.0001*m.x8*m.x104 + 0.0001*m.x8*m.x105 + 0.0001*m.x8*
m.x106 + 0.0001*m.x8*m.x107 + 0.0001*m.x8*m.x108 + 0.0001*m.x8*m.x109 + 0.0001*m.x8*m.x110 +
0.0001*m.x8*m.x111 + 0.0001*m.x8*m.x112 + 0.0001*m.x8*m.x113 + 0.0001*m.x8*m.x114 + 0.0001*m.x8*
m.x115 + 0.0001*m.x8*m.x116 + 0.0001*m.x8*m.x117 + 0.0001*m.x8*m.x118 + 0.0001*m.x8*m.x119 +
0.0001*m.x8*m.x120 + 0.0001*m.x8*m.x121 + 0.0001*m.x8*m.x122 + 0.0001*m.x8*m.x123 + 0.0001*m.x8*
m.x124 + 0.0001*m.x8*m.x125 + 0.0001*m.x8*m.x126 + 0.0001*m.x8*m.x127 + 0.0001*m.x8*m.x128 +
0.0001*m.x8*m.x129 + 0.0001*m.x8*m.x130 + 0.0001*m.x8*m.x131 + 0.0001*m.x8*m.x132 + 0.0001*m.x8*
m.x133 + 0.0001*m.x8*m.x134 + 0.0001*m.x8*m.x135 + 0.0001*m.x8*m.x136 + 3.89718096986595*m.x8*
m.x137 + 0.0001*m.x8*m.x138 + 0.0001*m.x8*m.x139 + 0.0001*m.x8*m.x140 + 0.0001*m.x8*m.x141 +
0.0001*m.x8*m.x142 + 0.0001*m.x8*m.x143 + 0.0001*m.x8*m.x144 + 0.0001*m.x8*m.x145 + 0.0001*m.x8*
m.x146 + 0.0001*m.x8*m.x147 + 0.0001*m.x8*m.x148 + 0.0001*m.x8*m.x149 + 0.0001*m.x8*m.x150 +
0.0001*m.x8*m.x151 + 0.0001*m.x8*m.x152 + 0.0001*m.x8*m.x153 + 0.0001*m.x8*m.x154 + 0.0001*m.x8*
m.x155 + 0.0001*m.x8*m.x156 + 0.0001*m.x8*m.x157 + 0.0001*m.x8*m.x158 + 0.0001*m.x8*m.x159 +
0.0001*m.x8*m.x160 + 0.0001*m.x8*m.x161 + 0.0001*m.x8*m.x162 + 0.0001*m.x8*m.x163 + 0.0001*m.x8*
m.x164 + 0.0001*m.x8*m.x165 + 0.0001*m.x8*m.x166 + 0.0001*m.x8*m.x167 + 0.0001*m.x8*m.x168 +
0.0001*m.x8*m.x169 + 0.0001*m.x8*m.x170 + 0.0001*m.x8*m.x171 + 0.0001*m.x8*m.x172 + 0.0001*m.x8*
m.x173 + 0.0001*m.x8*m.x174 + 0.0001*m.x8*m.x175 + 0.0001*m.x8*m.x176 + 0.0001*m.x8*m.x177 +
0.0001*m.x8*m.x178 + 0.0001*m.x8*m.x179 + 0.0001*m.x8*m.x180 + 0.0001*m.x8*m.x181 + 0.0001*m.x8*
m.x182 + 0.0001*m.x8*m.x183 + 0.0001*m.x8*m.x184 + 0.0001*m.x8*m.x185 + 0.0001*m.x9*m.x1 + 0.0001
*m.x9*m.x2 + 0.0001*m.x9*m.x3 + 0.0001*m.x9*m.x4 + 0.0001*m.x9*m.x5 + 0.0001*m.x9*m.x6 + 0.0001*
m.x9*m.x7 + 0.0001*m.x9*m.x8 + 8.28654036729117*m.x9**2 + 0.0001*m.x9*m.x10 + 0.0001*m.x9*m.x11
+ 0.0001*m.x9*m.x12 + 0.0001*m.x9*m.x13 + 0.0001*m.x9*m.x14 + 0.0001*m.x9*m.x15 + 0.0001*m.x9*
m.x16 + 0.0001*m.x9*m.x17 + 0.0001*m.x9*m.x18 + 0.0001*m.x9*m.x19 + 0.0001*m.x9*m.x20 +
7.4520596959325*m.x9*m.x21 + 0.0001*m.x9*m.x22 + 0.0001*m.x9*m.x23 + 0.0001*m.x9*m.x24 + 0.0001*
m.x9*m.x25 + 0.0001*m.x9*m.x26 + 0.0001*m.x9*m.x27 + 0.0001*m.x9*m.x28 + 0.0001*m.x9*m.x29 +
0.0001*m.x9*m.x30 + 0.0001*m.x9*m.x31 + 1.81124027188761*m.x9*m.x32 + 0.0001*m.x9*m.x33 + 0.0001*
m.x9*m.x34 + 0.0001*m.x9*m.x35 + 0.0001*m.x9*m.x36 + 0.0001*m.x9*m.x37 + 0.0001*m.x9*m.x38 +
0.0001*m.x9*m.x39 + 0.0001*m.x9*m.x40 + 0.0001*m.x9*m.x41 + 0.0001*m.x9*m.x42 + 0.0001*m.x9*m.x43
+ 7.18432027380264*m.x9*m.x44 + 0.0001*m.x9*m.x45 + 0.0001*m.x9*m.x46 + 0.0001*m.x9*m.x47 +
0.0001*m.x9*m.x48 + 0.0001*m.x9*m.x49 + 0.0001*m.x9*m.x50 + 0.0001*m.x9*m.x51 + 0.0001*m.x9*m.x52
+ 0.0001*m.x9*m.x53 + 0.0001*m.x9*m.x54 + 0.0001*m.x9*m.x55 + 0.0001*m.x9*m.x56 + 0.0001*m.x9*
m.x57 + 0.0001*m.x9*m.x58 + 0.0001*m.x9*m.x59 + 0.0001*m.x9*m.x60 + 0.0001*m.x9*m.x61 + 0.0001*
m.x9*m.x62 + 0.0001*m.x9*m.x63 + 0.0001*m.x9*m.x64 + 0.0001*m.x9*m.x65 + 0.0001*m.x9*m.x66 +
0.0001*m.x9*m.x67 + 0.0001*m.x9*m.x68 + 0.0001*m.x9*m.x69 + 0.0001*m.x9*m.x70 + 0.0001*m.x9*m.x71
+ 0.0001*m.x9*m.x72 + 0.0001*m.x9*m.x73 + 0.0001*m.x9*m.x74 + 0.0001*m.x9*m.x75 + 0.0001*m.x9*
m.x76 + 0.0001*m.x9*m.x77 + 0.0001*m.x9*m.x78 + 0.0001*m.x9*m.x79 + 0.0001*m.x9*m.x80 + 0.0001*
m.x9*m.x81 + 0.0001*m.x9*m.x82 + 0.0001*m.x9*m.x83 + 0.0001*m.x9*m.x84 + 0.0001*m.x9*m.x85 +
0.0001*m.x9*m.x86 + 0.0001*m.x9*m.x87 + 0.0001*m.x9*m.x88 + 0.0001*m.x9*m.x89 + 0.0001*m.x9*m.x90
+ 0.0001*m.x9*m.x91 + 0.0001*m.x9*m.x92 + 0.0001*m.x9*m.x93 + 0.0001*m.x9*m.x94 + 0.0001*m.x9*
m.x95 + 0.0001*m.x9*m.x96 + 0.0001*m.x9*m.x97 + 0.0001*m.x9*m.x98 + 0.0001*m.x9*m.x99 + 0.0001*
m.x9*m.x100 + 0.0001*m.x9*m.x101 + 0.0001*m.x9*m.x102 + 0.0001*m.x9*m.x103 + 0.0001*m.x9*m.x104
+ 0.0001*m.x9*m.x105 + 0.0001*m.x9*m.x106 + 0.0001*m.x9*m.x107 + 0.0001*m.x9*m.x108 + 0.0001*
m.x9*m.x109 + 0.0001*m.x9*m.x110 + 0.0001*m.x9*m.x111 + 0.0001*m.x9*m.x112 + 0.0001*m.x9*m.x113
+ 0.0001*m.x9*m.x114 + 0.0001*m.x9*m.x115 + 0.0001*m.x9*m.x116 + 0.0001*m.x9*m.x117 + 0.0001*
m.x9*m.x118 + 0.0001*m.x9*m.x119 + 0.0001*m.x9*m.x120 + 0.0001*m.x9*m.x121 + 0.0001*m.x9*m.x122
+ 0.0001*m.x9*m.x123 + 0.0001*m.x9*m.x124 + 0.0001*m.x9*m.x125 + 0.0001*m.x9*m.x126 + 0.0001*
m.x9*m.x127 + 0.0001*m.x9*m.x128 + 0.0001*m.x9*m.x129 + 0.0001*m.x9*m.x130 + 0.0001*m.x9*m.x131
+ 0.0001*m.x9*m.x132 + 0.0001*m.x9*m.x133 + 0.0001*m.x9*m.x134 + 0.0001*m.x9*m.x135 + 0.0001*
m.x9*m.x136 + 0.0001*m.x9*m.x137 + 3.92192189312951*m.x9*m.x138 + 0.0001*m.x9*m.x139 + 0.0001*
m.x9*m.x140 + 0.0001*m.x9*m.x141 + 0.0001*m.x9*m.x142 + 0.0001*m.x9*m.x143 + 0.0001*m.x9*m.x144
+ 0.0001*m.x9*m.x145 + 0.0001*m.x9*m.x146 + 0.0001*m.x9*m.x147 + 0.0001*m.x9*m.x148 + 0.0001*
m.x9*m.x149 + 0.0001*m.x9*m.x150 + 0.0001*m.x9*m.x151 + 0.0001*m.x9*m.x152 + 0.0001*m.x9*m.x153
+ 0.0001*m.x9*m.x154 + 0.0001*m.x9*m.x155 + 0.0001*m.x9*m.x156 + 0.0001*m.x9*m.x157 + 0.0001*
m.x9*m.x158 + 0.0001*m.x9*m.x159 + 0.0001*m.x9*m.x160 + 0.0001*m.x9*m.x161 + 0.0001*m.x9*m.x162
+ 0.0001*m.x9*m.x163 + 0.0001*m.x9*m.x164 + 0.0001*m.x9*m.x165 + 0.0001*m.x9*m.x166 + 0.0001*
m.x9*m.x167 + 0.0001*m.x9*m.x168 + 0.0001*m.x9*m.x169 + 0.0001*m.x9*m.x170 + 0.0001*m.x9*m.x171
+ 0.0001*m.x9*m.x172 + 0.0001*m.x9*m.x173 + 0.0001*m.x9*m.x174 + 0.0001*m.x9*m.x175 + 0.0001*
m.x9*m.x176 + 0.0001*m.x9*m.x177 + 0.0001*m.x9*m.x178 + 0.0001*m.x9*m.x179 + 0.0001*m.x9*m.x180
+ 0.0001*m.x9*m.x181 + 0.0001*m.x9*m.x182 + 0.0001*m.x9*m.x183 + 0.0001*m.x9*m.x184 + 0.0001*
m.x9*m.x185 + 0.0001*m.x10*m.x1 + 0.0001*m.x10*m.x2 + 0.0001*m.x10*m.x3 + 0.0001*m.x10*m.x4 +
0.0001*m.x10*m.x5 + 0.0001*m.x10*m.x6 + 0.0001*m.x10*m.x7 + 0.0001*m.x10*m.x8 + 0.0001*m.x10*m.x9
+ 8.28654036729117*m.x10**2 + 0.0001*m.x10*m.x11 + 0.0001*m.x10*m.x12 + 0.0001*m.x10*m.x13 +
0.0001*m.x10*m.x14 + 0.0001*m.x10*m.x15 + 0.0001*m.x10*m.x16 + 0.0001*m.x10*m.x17 + 0.0001*m.x10*
m.x18 + 0.0001*m.x10*m.x19 + 0.0001*m.x10*m.x20 + 0.0001*m.x10*m.x21 + 6.8341836279463*m.x10*
m.x22 + 0.0001*m.x10*m.x23 + 0.0001*m.x10*m.x24 + 0.0001*m.x10*m.x25 + 0.0001*m.x10*m.x26 +
0.0001*m.x10*m.x27 + 0.0001*m.x10*m.x28 + 0.0001*m.x10*m.x29 + 0.0001*m.x10*m.x30 + 0.0001*m.x10*
m.x31 + 0.0001*m.x10*m.x32 + 1.86248826671711*m.x10*m.x33 + 0.0001*m.x10*m.x34 + 0.0001*m.x10*
m.x35 + 0.0001*m.x10*m.x36 + 0.0001*m.x10*m.x37 + 0.0001*m.x10*m.x38 + 0.0001*m.x10*m.x39 +
0.0001*m.x10*m.x40 + 0.0001*m.x10*m.x41 + 0.0001*m.x10*m.x42 + 0.0001*m.x10*m.x43 + 0.0001*m.x10*
m.x44 + 7.27171135638595*m.x10*m.x45 + 0.0001*m.x10*m.x46 + 0.0001*m.x10*m.x47 + 0.0001*m.x10*
m.x48 + 0.0001*m.x10*m.x49 + 0.0001*m.x10*m.x50 + 0.0001*m.x10*m.x51 + 0.0001*m.x10*m.x52 +
0.0001*m.x10*m.x53 + 0.0001*m.x10*m.x54 + 0.0001*m.x10*m.x55 + 0.0001*m.x10*m.x56 + 0.0001*m.x10*
m.x57 + 0.0001*m.x10*m.x58 + 0.0001*m.x10*m.x59 + 0.0001*m.x10*m.x60 + 0.0001*m.x10*m.x61 +
0.0001*m.x10*m.x62 + 0.0001*m.x10*m.x63 + 0.0001*m.x10*m.x64 + 0.0001*m.x10*m.x65 + 0.0001*m.x10*
m.x66 + 0.0001*m.x10*m.x67 + 0.0001*m.x10*m.x68 + 0.0001*m.x10*m.x69 + 0.0001*m.x10*m.x70 +
0.0001*m.x10*m.x71 + 0.0001*m.x10*m.x72 + 0.0001*m.x10*m.x73 + 0.0001*m.x10*m.x74 + 0.0001*m.x10*
m.x75 + 0.0001*m.x10*m.x76 + 0.0001*m.x10*m.x77 + 0.0001*m.x10*m.x78 + 0.0001*m.x10*m.x79 +
0.0001*m.x10*m.x80 + 0.0001*m.x10*m.x81 + 0.0001*m.x10*m.x82 + 0.0001*m.x10*m.x83 + 0.0001*m.x10*
m.x84 + 0.0001*m.x10*m.x85 + 0.0001*m.x10*m.x86 + 0.0001*m.x10*m.x87 + 0.0001*m.x10*m.x88 +
0.0001*m.x10*m.x89 + 0.0001*m.x10*m.x90 + 0.0001*m.x10*m.x91 + 0.0001*m.x10*m.x92 + 0.0001*m.x10*
m.x93 + 0.0001*m.x10*m.x94 + 0.0001*m.x10*m.x95 + 0.0001*m.x10*m.x96 + 0.0001*m.x10*m.x97 +
0.0001*m.x10*m.x98 + 0.0001*m.x10*m.x99 + 0.0001*m.x10*m.x100 + 0.0001*m.x10*m.x101 + 0.0001*
m.x10*m.x102 + 0.0001*m.x10*m.x103 + 0.0001*m.x10*m.x104 + 0.0001*m.x10*m.x105 + 0.0001*m.x10*
m.x106 + 0.0001*m.x10*m.x107 + 0.0001*m.x10*m.x108 + 0.0001*m.x10*m.x109 + 0.0001*m.x10*m.x110 +
0.0001*m.x10*m.x111 + 0.0001*m.x10*m.x112 + 0.0001*m.x10*m.x113 + 0.0001*m.x10*m.x114 + 0.0001*
m.x10*m.x115 + 0.0001*m.x10*m.x116 + 0.0001*m.x10*m.x117 + 0.0001*m.x10*m.x118 + 0.0001*m.x10*
m.x119 + 0.0001*m.x10*m.x120 + 0.0001*m.x10*m.x121 + 0.0001*m.x10*m.x122 + 0.0001*m.x10*m.x123 +
0.0001*m.x10*m.x124 + 0.0001*m.x10*m.x125 + 0.0001*m.x10*m.x126 + 0.0001*m.x10*m.x127 + 0.0001*
m.x10*m.x128 + 0.0001*m.x10*m.x129 + 0.0001*m.x10*m.x130 + 0.0001*m.x10*m.x131 + 0.0001*m.x10*
m.x132 + 0.0001*m.x10*m.x133 + 0.0001*m.x10*m.x134 + 0.0001*m.x10*m.x135 + 0.0001*m.x10*m.x136 +
0.0001*m.x10*m.x137 + 0.0001*m.x10*m.x138 + 4.04894461999615*m.x10*m.x139 + 0.0001*m.x10*m.x140
+ 0.0001*m.x10*m.x141 + 0.0001*m.x10*m.x142 + 0.0001*m.x10*m.x143 + 0.0001*m.x10*m.x144 + 0.0001
*m.x10*m.x145 + 0.0001*m.x10*m.x146 + 0.0001*m.x10*m.x147 + 0.0001*m.x10*m.x148 + 0.0001*m.x10*
m.x149 + 0.0001*m.x10*m.x150 + 0.0001*m.x10*m.x151 + 0.0001*m.x10*m.x152 + 0.0001*m.x10*m.x153 +
0.0001*m.x10*m.x154 + 0.0001*m.x10*m.x155 + 0.0001*m.x10*m.x156 + 0.0001*m.x10*m.x157 + 0.0001*
m.x10*m.x158 + 0.0001*m.x10*m.x159 + 0.0001*m.x10*m.x160 + 0.0001*m.x10*m.x161 + 0.0001*m.x10*
m.x162 + 0.0001*m.x10*m.x163 + 0.0001*m.x10*m.x164 + 0.0001*m.x10*m.x165 + 0.0001*m.x10*m.x166 +
0.0001*m.x10*m.x167 + 0.0001*m.x10*m.x168 + 0.0001*m.x10*m.x169 + 0.0001*m.x10*m.x170 + 0.0001*
m.x10*m.x171 + 0.0001*m.x10*m.x172 + 0.0001*m.x10*m.x173 + 0.0001*m.x10*m.x174 + 0.0001*m.x10*
m.x175 + 0.0001*m.x10*m.x176 + 0.0001*m.x10*m.x177 + 0.0001*m.x10*m.x178 + 0.0001*m.x10*m.x179 +
0.0001*m.x10*m.x180 + 0.0001*m.x10*m.x181 + 0.0001*m.x10*m.x182 + 0.0001*m.x10*m.x183 + 0.0001*
m.x10*m.x184 + 0.0001*m.x10*m.x185 + 0.0001*m.x11*m.x1 + 0.0001*m.x11*m.x2 + 0.0001*m.x11*m.x3 +
0.0001*m.x11*m.x4 + 0.0001*m.x11*m.x5 + 0.0001*m.x11*m.x6 + 0.0001*m.x11*m.x7 + 0.0001*m.x11*m.x8
+ 0.0001*m.x11*m.x9 + 0.0001*m.x11*m.x10 + 8.37787001988959*m.x11**2 + 0.0001*m.x11*m.x12 +
0.0001*m.x11*m.x13 + 0.0001*m.x11*m.x14 + 0.0001*m.x11*m.x15 + 0.0001*m.x11*m.x16 + 0.0001*m.x11*
m.x17 + 0.0001*m.x11*m.x18 + 0.0001*m.x11*m.x19 + 0.0001*m.x11*m.x20 + 0.0001*m.x11*m.x21 +
0.0001*m.x11*m.x22 + 6.75846262215549*m.x11*m.x23 + 0.0001*m.x11*m.x24 + 0.0001*m.x11*m.x25 +
0.0001*m.x11*m.x26 + 0.0001*m.x11*m.x27 + 0.0001*m.x11*m.x28 + 0.0001*m.x11*m.x29 + 0.0001*m.x11*
m.x30 + 0.0001*m.x11*m.x31 + 0.0001*m.x11*m.x32 + 0.0001*m.x11*m.x33 + 1.84161801636613*m.x11*
m.x34 + 0.0001*m.x11*m.x35 + 0.0001*m.x11*m.x36 + 0.0001*m.x11*m.x37 + 0.0001*m.x11*m.x38 +
0.0001*m.x11*m.x39 + 0.0001*m.x11*m.x40 + 0.0001*m.x11*m.x41 + 0.0001*m.x11*m.x42 + 0.0001*m.x11*
m.x43 + 0.0001*m.x11*m.x44 + 0.0001*m.x11*m.x45 + 7.19114258438939*m.x11*m.x46 + 0.0001*m.x11*
m.x47 + 0.0001*m.x11*m.x48 + 0.0001*m.x11*m.x49 + 0.0001*m.x11*m.x50 + 0.0001*m.x11*m.x51 +
0.0001*m.x11*m.x52 + 0.0001*m.x11*m.x53 + 0.0001*m.x11*m.x54 + 0.0001*m.x11*m.x55 + 0.0001*m.x11*
m.x56 + 0.0001*m.x11*m.x57 + 0.0001*m.x11*m.x58 + 0.0001*m.x11*m.x59 + 0.0001*m.x11*m.x60 +
0.0001*m.x11*m.x61 + 0.0001*m.x11*m.x62 + 0.0001*m.x11*m.x63 + 0.0001*m.x11*m.x64 + 0.0001*m.x11*
m.x65 + 0.0001*m.x11*m.x66 + 0.0001*m.x11*m.x67 + 0.0001*m.x11*m.x68 + 0.0001*m.x11*m.x69 +
0.0001*m.x11*m.x70 + 0.0001*m.x11*m.x71 + 0.0001*m.x11*m.x72 + 0.0001*m.x11*m.x73 + 0.0001*m.x11*
m.x74 + 0.0001*m.x11*m.x75 + 0.0001*m.x11*m.x76 + 0.0001*m.x11*m.x77 + 0.0001*m.x11*m.x78 +
0.0001*m.x11*m.x79 + 0.0001*m.x11*m.x80 + 0.0001*m.x11*m.x81 + 0.0001*m.x11*m.x82 + 0.0001*m.x11*
m.x83 + 0.0001*m.x11*m.x84 + 0.0001*m.x11*m.x85 + 0.0001*m.x11*m.x86 + 0.0001*m.x11*m.x87 +
0.0001*m.x11*m.x88 + 0.0001*m.x11*m.x89 + 0.0001*m.x11*m.x90 + 0.0001*m.x11*m.x91 + 0.0001*m.x11*
m.x92 + 0.0001*m.x11*m.x93 + 0.0001*m.x11*m.x94 + 0.0001*m.x11*m.x95 + 0.0001*m.x11*m.x96 +
0.0001*m.x11*m.x97 + 0.0001*m.x11*m.x98 + 0.0001*m.x11*m.x99 + 0.0001*m.x11*m.x100 + 0.0001*m.x11
*m.x101 + 0.0001*m.x11*m.x102 + 0.0001*m.x11*m.x103 + 0.0001*m.x11*m.x104 + 0.0001*m.x11*m.x105
+ 0.0001*m.x11*m.x106 + 0.0001*m.x11*m.x107 + 0.0001*m.x11*m.x108 + 0.0001*m.x11*m.x109 + 0.0001
*m.x11*m.x110 + 0.0001*m.x11*m.x111 + 0.0001*m.x11*m.x112 + 0.0001*m.x11*m.x113 + 0.0001*m.x11*
m.x114 + 0.0001*m.x11*m.x115 + 0.0001*m.x11*m.x116 + 0.0001*m.x11*m.x117 + 0.0001*m.x11*m.x118 +
0.0001*m.x11*m.x119 + 0.0001*m.x11*m.x120 + 0.0001*m.x11*m.x121 + 0.0001*m.x11*m.x122 + 0.0001*
m.x11*m.x123 + 0.0001*m.x11*m.x124 + 0.0001*m.x11*m.x125 + 0.0001*m.x11*m.x126 + 0.0001*m.x11*
m.x127 + 0.0001*m.x11*m.x128 + 0.0001*m.x11*m.x129 + 0.0001*m.x11*m.x130 + 0.0001*m.x11*m.x131 +
0.0001*m.x11*m.x132 + 0.0001*m.x11*m.x133 + 0.0001*m.x11*m.x134 + 0.0001*m.x11*m.x135 + 0.0001*
m.x11*m.x136 + 0.0001*m.x11*m.x137 + 0.0001*m.x11*m.x138 + 0.0001*m.x11*m.x139 + 4.00357255534043
*m.x11*m.x140 + 0.0001*m.x11*m.x141 + 0.0001*m.x11*m.x142 + 0.0001*m.x11*m.x143 + 0.0001*m.x11*
m.x144 + 0.0001*m.x11*m.x145 + 0.0001*m.x11*m.x146 + 0.0001*m.x11*m.x147 + 0.0001*m.x11*m.x148 +
0.0001*m.x11*m.x149 + 0.0001*m.x11*m.x150 + 0.0001*m.x11*m.x151 + 0.0001*m.x11*m.x152 + 0.0001*
m.x11*m.x153 + 0.0001*m.x11*m.x154 + 0.0001*m.x11*m.x155 + 0.0001*m.x11*m.x156 + 0.0001*m.x11*
m.x157 + 0.0001*m.x11*m.x158 + 0.0001*m.x11*m.x159 + 0.0001*m.x11*m.x160 + 0.0001*m.x11*m.x161 +
0.0001*m.x11*m.x162 + 0.0001*m.x11*m.x163 + 0.0001*m.x11*m.x164 + 0.0001*m.x11*m.x165 + 0.0001*
m.x11*m.x166 + 0.0001*m.x11*m.x167 + 0.0001*m.x11*m.x168 + 0.0001*m.x11*m.x169 + 0.0001*m.x11*
m.x170 + 0.0001*m.x11*m.x171 + 0.0001*m.x11*m.x172 + 0.0001*m.x11*m.x173 + 0.0001*m.x11*m.x174 +
0.0001*m.x11*m.x175 + 0.0001*m.x11*m.x176 + 0.0001*m.x11*m.x177 + 0.0001*m.x11*m.x178 + 0.0001*
m.x11*m.x179 + 0.0001*m.x11*m.x180 + 0.0001*m.x11*m.x181 + 0.0001*m.x11*m.x182 + 0.0001*m.x11*
m.x183 + 0.0001*m.x11*m.x184 + 0.0001*m.x11*m.x185 + 0.0001*m.x12*m.x1 + 0.0001*m.x12*m.x2 +
0.0001*m.x12*m.x3 + 0.0001*m.x12*m.x4 + 0.0001*m.x12*m.x5 + 0.0001*m.x12*m.x6 + 0.0001*m.x12*m.x7
+ 0.0001*m.x12*m.x8 + 0.0001*m.x12*m.x9 + 0.0001*m.x12*m.x10 + 0.0001*m.x12*m.x11 +
8.37787001988959*m.x12**2 + 0.0001*m.x12*m.x13 + 0.0001*m.x12*m.x14 + 0.0001*m.x12*m.x15 + 0.0001
*m.x12*m.x16 + 0.0001*m.x12*m.x17 + 0.0001*m.x12*m.x18 + 0.0001*m.x12*m.x19 + 0.0001*m.x12*m.x20
+ 0.0001*m.x12*m.x21 + 0.0001*m.x12*m.x22 + 0.0001*m.x12*m.x23 + 6.75846262215549*m.x12*m.x24 +
0.0001*m.x12*m.x25 + 0.0001*m.x12*m.x26 + 0.0001*m.x12*m.x27 + 0.0001*m.x12*m.x28 + 0.0001*m.x12*
m.x29 + 0.0001*m.x12*m.x30 + 0.0001*m.x12*m.x31 + 0.0001*m.x12*m.x32 + 0.0001*m.x12*m.x33 +
0.0001*m.x12*m.x34 + 1.85389551205678*m.x12*m.x35 + 0.0001*m.x12*m.x36 + 0.0001*m.x12*m.x37 +
0.0001*m.x12*m.x38 + 0.0001*m.x12*m.x39 + 0.0001*m.x12*m.x40 + 0.0001*m.x12*m.x41 + 0.0001*m.x12*
m.x42 + 0.0001*m.x12*m.x43 + 0.0001*m.x12*m.x44 + 0.0001*m.x12*m.x45 + 0.0001*m.x12*m.x46 +
7.19114258438938*m.x12*m.x47 + 0.0001*m.x12*m.x48 + 0.0001*m.x12*m.x49 + 0.0001*m.x12*m.x50 +
0.0001*m.x12*m.x51 + 0.0001*m.x12*m.x52 + 0.0001*m.x12*m.x53 + 0.0001*m.x12*m.x54 + 0.0001*m.x12*
m.x55 + 0.0001*m.x12*m.x56 + 0.0001*m.x12*m.x57 + 0.0001*m.x12*m.x58 + 0.0001*m.x12*m.x59 +
0.0001*m.x12*m.x60 + 0.0001*m.x12*m.x61 + 0.0001*m.x12*m.x62 + 0.0001*m.x12*m.x63 + 0.0001*m.x12*
m.x64 + 0.0001*m.x12*m.x65 + 0.0001*m.x12*m.x66 + 0.0001*m.x12*m.x67 + 0.0001*m.x12*m.x68 +
0.0001*m.x12*m.x69 + 0.0001*m.x12*m.x70 + 0.0001*m.x12*m.x71 + 0.0001*m.x12*m.x72 + 0.0001*m.x12*
m.x73 + 0.0001*m.x12*m.x74 + 0.0001*m.x12*m.x75 + 0.0001*m.x12*m.x76 + 0.0001*m.x12*m.x77 +
0.0001*m.x12*m.x78 + 0.0001*m.x12*m.x79 + 0.0001*m.x12*m.x80 + 0.0001*m.x12*m.x81 + 0.0001*m.x12*
m.x82 + 0.0001*m.x12*m.x83 + 0.0001*m.x12*m.x84 + 0.0001*m.x12*m.x85 + 0.0001*m.x12*m.x86 +
0.0001*m.x12*m.x87 + 0.0001*m.x12*m.x88 + 0.0001*m.x12*m.x89 + 0.0001*m.x12*m.x90 + 0.0001*m.x12*
m.x91 + 0.0001*m.x12*m.x92 + 0.0001*m.x12*m.x93 + 0.0001*m.x12*m.x94 + 0.0001*m.x12*m.x95 +
0.0001*m.x12*m.x96 + 0.0001*m.x12*m.x97 + 0.0001*m.x12*m.x98 + 0.0001*m.x12*m.x99 + 0.0001*m.x12*
m.x100 + 0.0001*m.x12*m.x101 + 0.0001*m.x12*m.x102 + 0.0001*m.x12*m.x103 + 0.0001*m.x12*m.x104 +
0.0001*m.x12*m.x105 + 0.0001*m.x12*m.x106 + 0.0001*m.x12*m.x107 + 0.0001*m.x12*m.x108 + 0.0001*
m.x12*m.x109 + 0.0001*m.x12*m.x110 + 0.0001*m.x12*m.x111 + 0.0001*m.x12*m.x112 + 0.0001*m.x12*
m.x113 + 0.0001*m.x12*m.x114 + 0.0001*m.x12*m.x115 + 0.0001*m.x12*m.x116 + 0.0001*m.x12*m.x117 +
0.0001*m.x12*m.x118 + 0.0001*m.x12*m.x119 + 0.0001*m.x12*m.x120 + 0.0001*m.x12*m.x121 + 0.0001*
m.x12*m.x122 + 0.0001*m.x12*m.x123 + 0.0001*m.x12*m.x124 + 0.0001*m.x12*m.x125 + 0.0001*m.x12*
m.x126 + 0.0001*m.x12*m.x127 + 0.0001*m.x12*m.x128 + 0.0001*m.x12*m.x129 + 0.0001*m.x12*m.x130 +
0.0001*m.x12*m.x131 + 0.0001*m.x12*m.x132 + 0.0001*m.x12*m.x133 + 0.0001*m.x12*m.x134 + 0.0001*
m.x12*m.x135 + 0.0001*m.x12*m.x136 + 0.0001*m.x12*m.x137 + 0.0001*m.x12*m.x138 + 0.0001*m.x12*
m.x139 + 0.0001*m.x12*m.x140 + 3.99239821446817*m.x12*m.x141 + 0.0001*m.x12*m.x142 + 0.0001*m.x12
*m.x143 + 0.0001*m.x12*m.x144 + 0.0001*m.x12*m.x145 + 0.0001*m.x12*m.x146 + 0.0001*m.x12*m.x147
+ 0.0001*m.x12*m.x148 + 0.0001*m.x12*m.x149 + 0.0001*m.x12*m.x150 + 0.0001*m.x12*m.x151 + 0.0001
*m.x12*m.x152 + 0.0001*m.x12*m.x153 + 0.0001*m.x12*m.x154 + 0.0001*m.x12*m.x155 + 0.0001*m.x12*
m.x156 + 0.0001*m.x12*m.x157 + 0.0001*m.x12*m.x158 + 0.0001*m.x12*m.x159 + 0.0001*m.x12*m.x160 +
0.0001*m.x12*m.x161 + 0.0001*m.x12*m.x162 + 0.0001*m.x12*m.x163 + 0.0001*m.x12*m.x164 + 0.0001*
m.x12*m.x165 + 0.0001*m.x12*m.x166 + 0.0001*m.x12*m.x167 + 0.0001*m.x12*m.x168 + 0.0001*m.x12*
m.x169 + 0.0001*m.x12*m.x170 + 0.0001*m.x12*m.x171 + 0.0001*m.x12*m.x172 + 0.0001*m.x12*m.x173 +
0.0001*m.x12*m.x174 + 0.0001*m.x12*m.x175 + 0.0001*m.x12*m.x176 + 0.0001*m.x12*m.x177 + 0.0001*
m.x12*m.x178 + 0.0001*m.x12*m.x179 + 0.0001*m.x12*m.x180 + 0.0001*m.x12*m.x181 + 0.0001*m.x12*
m.x182 + 0.0001*m.x12*m.x183 + 0.0001*m.x12*m.x184 + 0.0001*m.x12*m.x185 + 7.2765641293107*m.x13*
m.x1 + 0.0001*m.x13*m.x2 + 0.0001*m.x13*m.x3 + 0.0001*m.x13*m.x4 + 0.0001*m.x13*m.x5 + 0.0001*
m.x13*m.x6 + 0.0001*m.x13*m.x7 + 0.0001*m.x13*m.x8 + 0.0001*m.x13*m.x9 + 0.0001*m.x13*m.x10 +
0.0001*m.x13*m.x11 + 0.0001*m.x13*m.x12 + 5.89963598622892*m.x13**2 + 0.0001*m.x13*m.x14 + 0.0001
*m.x13*m.x15 + 0.0001*m.x13*m.x16 + 0.0001*m.x13*m.x17 + 0.0001*m.x13*m.x18 + 0.0001*m.x13*m.x19
+ 0.0001*m.x13*m.x20 + 0.0001*m.x13*m.x21 + 0.0001*m.x13*m.x22 + 0.0001*m.x13*m.x23 + 0.0001*
m.x13*m.x24 + 0.0001*m.x13*m.x25 + 0.0001*m.x13*m.x26 + 0.0001*m.x13*m.x27 + 0.0001*m.x13*m.x28
+ 0.0001*m.x13*m.x29 + 0.0001*m.x13*m.x30 + 0.0001*m.x13*m.x31 + 0.0001*m.x13*m.x32 + 0.0001*
m.x13*m.x33 + 0.0001*m.x13*m.x34 + 0.0001*m.x13*m.x35 + 5.57675338980047*m.x13*m.x36 + 0.0001*
m.x13*m.x37 + 0.0001*m.x13*m.x38 + 0.0001*m.x13*m.x39 + 0.0001*m.x13*m.x40 + 0.0001*m.x13*m.x41
+ 0.0001*m.x13*m.x42 + 0.0001*m.x13*m.x43 + 0.0001*m.x13*m.x44 + 0.0001*m.x13*m.x45 + 0.0001*
m.x13*m.x46 + 0.0001*m.x13*m.x47 + 0.0001*m.x13*m.x48 + 0.0001*m.x13*m.x49 + 0.0001*m.x13*m.x50
+ 0.0001*m.x13*m.x51 + 0.0001*m.x13*m.x52 + 0.0001*m.x13*m.x53 + 0.0001*m.x13*m.x54 + 0.0001*
m.x13*m.x55 + 0.0001*m.x13*m.x56 + 0.0001*m.x13*m.x57 + 0.0001*m.x13*m.x58 + 0.0001*m.x13*m.x59
+ 0.0001*m.x13*m.x60 + 0.0001*m.x13*m.x61 + 0.0001*m.x13*m.x62 + 0.0001*m.x13*m.x63 + 0.0001*
m.x13*m.x64 + 0.0001*m.x13*m.x65 + 0.0001*m.x13*m.x66 + 0.0001*m.x13*m.x67 + 0.0001*m.x13*m.x68
+ 0.0001*m.x13*m.x69 + 0.0001*m.x13*m.x70 + 0.0001*m.x13*m.x71 + 0.0001*m.x13*m.x72 + 0.0001*
m.x13*m.x73 + 0.0001*m.x13*m.x74 + 0.0001*m.x13*m.x75 + 0.0001*m.x13*m.x76 + 0.0001*m.x13*m.x77
+ 0.0001*m.x13*m.x78 + 0.0001*m.x13*m.x79 + 0.0001*m.x13*m.x80 + 0.0001*m.x13*m.x81 + 0.0001*
m.x13*m.x82 + 0.0001*m.x13*m.x83 + 0.0001*m.x13*m.x84 + 0.0001*m.x13*m.x85 + 0.0001*m.x13*m.x86
+ 0.0001*m.x13*m.x87 + 0.0001*m.x13*m.x88 + 0.0001*m.x13*m.x89 + 0.0001*m.x13*m.x90 + 0.0001*
m.x13*m.x91 + 0.0001*m.x13*m.x92 + 0.0001*m.x13*m.x93 + 0.0001*m.x13*m.x94 + 0.0001*m.x13*m.x95
+ 0.0001*m.x13*m.x96 + 0.0001*m.x13*m.x97 + 0.0001*m.x13*m.x98 + 0.0001*m.x13*m.x99 + 0.0001*
m.x13*m.x100 + 0.0001*m.x13*m.x101 + 0.0001*m.x13*m.x102 + 0.0001*m.x13*m.x103 + 0.0001*m.x13*
m.x104 + 0.0001*m.x13*m.x105 + 0.0001*m.x13*m.x106 + 0.0001*m.x13*m.x107 + 0.0001*m.x13*m.x108 +
0.0001*m.x13*m.x109 + 0.0001*m.x13*m.x110 + 0.0001*m.x13*m.x111 + 0.0001*m.x13*m.x112 + 0.0001*
m.x13*m.x113 + 0.0001*m.x13*m.x114 + 0.0001*m.x13*m.x115 + 0.0001*m.x13*m.x116 + 0.0001*m.x13*
m.x117 + 0.0001*m.x13*m.x118 + 0.0001*m.x13*m.x119 + 0.0001*m.x13*m.x120 + 0.0001*m.x13*m.x121 +
0.0001*m.x13*m.x122 + 0.0001*m.x13*m.x123 + 0.0001*m.x13*m.x124 + 0.0001*m.x13*m.x125 + 0.0001*
m.x13*m.x126 + 0.0001*m.x13*m.x127 + 0.0001*m.x13*m.x128 + 0.0001*m.x13*m.x129 + 3.05296742049278
*m.x13*m.x130 + 0.0001*m.x13*m.x131 + 0.0001*m.x13*m.x132 + 0.0001*m.x13*m.x133 + 0.0001*m.x13*
m.x134 + 0.0001*m.x13*m.x135 + 0.0001*m.x13*m.x136 + 0.0001*m.x13*m.x137 + 0.0001*m.x13*m.x138 +
0.0001*m.x13*m.x139 + 0.0001*m.x13*m.x140 + 0.0001*m.x13*m.x141 + 0.0001*m.x13*m.x142 + 0.0001*
m.x13*m.x143 + 0.0001*m.x13*m.x144 + 0.0001*m.x13*m.x145 + 0.0001*m.x13*m.x146 + 0.0001*m.x13*
m.x147 + 0.0001*m.x13*m.x148 + 0.0001*m.x13*m.x149 + 0.0001*m.x13*m.x150 + 0.0001*m.x13*m.x151 +
0.0001*m.x13*m.x152 + 0.0001*m.x13*m.x153 + 0.0001*m.x13*m.x154 + 0.0001*m.x13*m.x155 + 0.0001*
m.x13*m.x156 + 0.0001*m.x13*m.x157 + 0.0001*m.x13*m.x158 + 0.0001*m.x13*m.x159 + 0.0001*m.x13*
m.x160 + 0.0001*m.x13*m.x161 + 0.0001*m.x13*m.x162 + 0.0001*m.x13*m.x163 + 0.0001*m.x13*m.x164 +
0.0001*m.x13*m.x165 + 0.0001*m.x13*m.x166 + 0.0001*m.x13*m.x167 + 0.0001*m.x13*m.x168 + 0.0001*
m.x13*m.x169 + 0.0001*m.x13*m.x170 + 0.0001*m.x13*m.x171 + 0.0001*m.x13*m.x172 + 0.0001*m.x13*
m.x173 + 0.0001*m.x13*m.x174 + 0.0001*m.x13*m.x175 + 0.0001*m.x13*m.x176 + 0.0001*m.x13*m.x177 +
0.0001*m.x13*m.x178 + 0.0001*m.x13*m.x179 + 0.0001*m.x13*m.x180 + 0.0001*m.x13*m.x181 + 0.0001*
m.x13*m.x182 + 0.0001*m.x13*m.x183 + 0.0001*m.x13*m.x184 + 0.0001*m.x13*m.x185 + 0.0001*m.x14*
m.x1 + 7.28961579614963*m.x14*m.x2 + 0.0001*m.x14*m.x3 + 0.0001*m.x14*m.x4 + 0.0001*m.x14*m.x5 +
0.0001*m.x14*m.x6 + 0.0001*m.x14*m.x7 + 0.0001*m.x14*m.x8 + 0.0001*m.x14*m.x9 + 0.0001*m.x14*
m.x10 + 0.0001*m.x14*m.x11 + 0.0001*m.x14*m.x12 + 0.0001*m.x14*m.x13 + 5.99122480380934*m.x14**2
+ 0.0001*m.x14*m.x15 + 0.0001*m.x14*m.x16 + 0.0001*m.x14*m.x17 + 0.0001*m.x14*m.x18 + 0.0001*
m.x14*m.x19 + 0.0001*m.x14*m.x20 + 0.0001*m.x14*m.x21 + 0.0001*m.x14*m.x22 + 0.0001*m.x14*m.x23
+ 0.0001*m.x14*m.x24 + 1.46344441732589*m.x14*m.x25 + 0.0001*m.x14*m.x26 + 0.0001*m.x14*m.x27 +
0.0001*m.x14*m.x28 + 0.0001*m.x14*m.x29 + 0.0001*m.x14*m.x30 + 0.0001*m.x14*m.x31 + 0.0001*m.x14*
m.x32 + 0.0001*m.x14*m.x33 + 0.0001*m.x14*m.x34 + 0.0001*m.x14*m.x35 + 0.0001*m.x14*m.x36 +
5.66332953599568*m.x14*m.x37 + 0.0001*m.x14*m.x38 + 0.0001*m.x14*m.x39 + 0.0001*m.x14*m.x40 +
0.0001*m.x14*m.x41 + 0.0001*m.x14*m.x42 + 0.0001*m.x14*m.x43 + 0.0001*m.x14*m.x44 + 0.0001*m.x14*
m.x45 + 0.0001*m.x14*m.x46 + 0.0001*m.x14*m.x47 + 0.0001*m.x14*m.x48 + 0.0001*m.x14*m.x49 +
0.0001*m.x14*m.x50 + 0.0001*m.x14*m.x51 + 0.0001*m.x14*m.x52 + 0.0001*m.x14*m.x53 + 0.0001*m.x14*
m.x54 + 0.0001*m.x14*m.x55 + 0.0001*m.x14*m.x56 + 0.0001*m.x14*m.x57 + 0.0001*m.x14*m.x58 +
0.0001*m.x14*m.x59 + 0.0001*m.x14*m.x60 + 0.0001*m.x14*m.x61 + 0.0001*m.x14*m.x62 + 0.0001*m.x14*
m.x63 + 0.0001*m.x14*m.x64 + 0.0001*m.x14*m.x65 + 0.0001*m.x14*m.x66 + 0.0001*m.x14*m.x67 +
0.0001*m.x14*m.x68 + 0.0001*m.x14*m.x69 + 0.0001*m.x14*m.x70 + 0.0001*m.x14*m.x71 + 0.0001*m.x14*
m.x72 + 0.0001*m.x14*m.x73 + 0.0001*m.x14*m.x74 + 0.0001*m.x14*m.x75 + 0.0001*m.x14*m.x76 +
0.0001*m.x14*m.x77 + 0.0001*m.x14*m.x78 + 0.0001*m.x14*m.x79 + 0.0001*m.x14*m.x80 + 0.0001*m.x14*
m.x81 + 0.0001*m.x14*m.x82 + 0.0001*m.x14*m.x83 + 0.0001*m.x14*m.x84 + 0.0001*m.x14*m.x85 +
0.0001*m.x14*m.x86 + 0.0001*m.x14*m.x87 + 0.0001*m.x14*m.x88 + 0.0001*m.x14*m.x89 + 0.0001*m.x14*
m.x90 + 0.0001*m.x14*m.x91 + 0.0001*m.x14*m.x92 + 0.0001*m.x14*m.x93 + 0.0001*m.x14*m.x94 +
0.0001*m.x14*m.x95 + 0.0001*m.x14*m.x96 + 0.0001*m.x14*m.x97 + 0.0001*m.x14*m.x98 + 0.0001*m.x14*
m.x99 + 0.0001*m.x14*m.x100 + 0.0001*m.x14*m.x101 + 0.0001*m.x14*m.x102 + 0.0001*m.x14*m.x103 +
0.0001*m.x14*m.x104 + 0.0001*m.x14*m.x105 + 0.0001*m.x14*m.x106 + 0.0001*m.x14*m.x107 + 0.0001*
m.x14*m.x108 + 0.0001*m.x14*m.x109 + 0.0001*m.x14*m.x110 + 0.0001*m.x14*m.x111 + 0.0001*m.x14*
m.x112 + 0.0001*m.x14*m.x113 + 0.0001*m.x14*m.x114 + 0.0001*m.x14*m.x115 + 0.0001*m.x14*m.x116 +
0.0001*m.x14*m.x117 + 0.0001*m.x14*m.x118 + 0.0001*m.x14*m.x119 + 0.0001*m.x14*m.x120 + 0.0001*
m.x14*m.x121 + 0.0001*m.x14*m.x122 + 0.0001*m.x14*m.x123 + 0.0001*m.x14*m.x124 + 0.0001*m.x14*
m.x125 + 0.0001*m.x14*m.x126 + 0.0001*m.x14*m.x127 + 0.0001*m.x14*m.x128 + 0.0001*m.x14*m.x129 +
0.0001*m.x14*m.x130 + 3.10036242205314*m.x14*m.x131 + 0.0001*m.x14*m.x132 + 0.0001*m.x14*m.x133
+ 0.0001*m.x14*m.x134 + 0.0001*m.x14*m.x135 + 0.0001*m.x14*m.x136 + 0.0001*m.x14*m.x137 + 0.0001
*m.x14*m.x138 + 0.0001*m.x14*m.x139 + 0.0001*m.x14*m.x140 + 0.0001*m.x14*m.x141 + 0.0001*m.x14*
m.x142 + 0.0001*m.x14*m.x143 + 0.0001*m.x14*m.x144 + 0.0001*m.x14*m.x145 + 0.0001*m.x14*m.x146 +
0.0001*m.x14*m.x147 + 0.0001*m.x14*m.x148 + 0.0001*m.x14*m.x149 + 0.0001*m.x14*m.x150 + 0.0001*
m.x14*m.x151 + 0.0001*m.x14*m.x152 + 0.0001*m.x14*m.x153 + 0.0001*m.x14*m.x154 + 0.0001*m.x14*
m.x155 + 0.0001*m.x14*m.x156 + 0.0001*m.x14*m.x157 + 0.0001*m.x14*m.x158 + 0.0001*m.x14*m.x159 +
0.0001*m.x14*m.x160 + 0.0001*m.x14*m.x161 + 0.0001*m.x14*m.x162 + 0.0001*m.x14*m.x163 + 0.0001*
m.x14*m.x164 + 0.0001*m.x14*m.x165 + 0.0001*m.x14*m.x166 + 0.0001*m.x14*m.x167 + 0.0001*m.x14*
m.x168 + 0.0001*m.x14*m.x169 + 0.0001*m.x14*m.x170 + 0.0001*m.x14*m.x171 + 0.0001*m.x14*m.x172 +
0.0001*m.x14*m.x173 + 0.0001*m.x14*m.x174 + 0.0001*m.x14*m.x175 + 0.0001*m.x14*m.x176 + 0.0001*
m.x14*m.x177 + 0.0001*m.x14*m.x178 + 0.0001*m.x14*m.x179 + 0.0001*m.x14*m.x180 + 0.0001*m.x14*
m.x181 + 0.0001*m.x14*m.x182 + 0.0001*m.x14*m.x183 + 0.0001*m.x14*m.x184 + 0.0001*m.x14*m.x185 +
0.0001*m.x15*m.x1 + 0.0001*m.x15*m.x2 + 7.28961579614963*m.x15*m.x3 + 0.0001*m.x15*m.x4 + 0.0001*
m.x15*m.x5 + 0.0001*m.x15*m.x6 + 0.0001*m.x15*m.x7 + 0.0001*m.x15*m.x8 + 0.0001*m.x15*m.x9 +
0.0001*m.x15*m.x10 + 0.0001*m.x15*m.x11 + 0.0001*m.x15*m.x12 + 0.0001*m.x15*m.x13 + 0.0001*m.x15*
m.x14 + 5.99122480380933*m.x15**2 + 0.0001*m.x15*m.x16 + 0.0001*m.x15*m.x17 + 0.0001*m.x15*m.x18
+ 0.0001*m.x15*m.x19 + 0.0001*m.x15*m.x20 + 0.0001*m.x15*m.x21 + 0.0001*m.x15*m.x22 + 0.0001*
m.x15*m.x23 + 0.0001*m.x15*m.x24 + 0.0001*m.x15*m.x25 + 1.44057575028709*m.x15*m.x26 + 0.0001*
m.x15*m.x27 + 0.0001*m.x15*m.x28 + 0.0001*m.x15*m.x29 + 0.0001*m.x15*m.x30 + 0.0001*m.x15*m.x31
+ 0.0001*m.x15*m.x32 + 0.0001*m.x15*m.x33 + 0.0001*m.x15*m.x34 + 0.0001*m.x15*m.x35 + 0.0001*
m.x15*m.x36 + 0.0001*m.x15*m.x37 + 5.66332953599568*m.x15*m.x38 + 0.0001*m.x15*m.x39 + 0.0001*
m.x15*m.x40 + 0.0001*m.x15*m.x41 + 0.0001*m.x15*m.x42 + 0.0001*m.x15*m.x43 + 0.0001*m.x15*m.x44
+ 0.0001*m.x15*m.x45 + 0.0001*m.x15*m.x46 + 0.0001*m.x15*m.x47 + 0.0001*m.x15*m.x48 + 0.0001*
m.x15*m.x49 + 0.0001*m.x15*m.x50 + 0.0001*m.x15*m.x51 + 0.0001*m.x15*m.x52 + 0.0001*m.x15*m.x53
+ 0.0001*m.x15*m.x54 + 0.0001*m.x15*m.x55 + 0.0001*m.x15*m.x56 + 0.0001*m.x15*m.x57 + 0.0001*
m.x15*m.x58 + 0.0001*m.x15*m.x59 + 0.0001*m.x15*m.x60 + 0.0001*m.x15*m.x61 + 0.0001*m.x15*m.x62
+ 0.0001*m.x15*m.x63 + 0.0001*m.x15*m.x64 + 0.0001*m.x15*m.x65 + 0.0001*m.x15*m.x66 + 0.0001*
m.x15*m.x67 + 0.0001*m.x15*m.x68 + 0.0001*m.x15*m.x69 + 0.0001*m.x15*m.x70 + 0.0001*m.x15*m.x71
+ 0.0001*m.x15*m.x72 + 0.0001*m.x15*m.x73 + 0.0001*m.x15*m.x74 + 0.0001*m.x15*m.x75 + 0.0001*
m.x15*m.x76 + 0.0001*m.x15*m.x77 + 0.0001*m.x15*m.x78 + 0.0001*m.x15*m.x79 + 0.0001*m.x15*m.x80
+ 0.0001*m.x15*m.x81 + 0.0001*m.x15*m.x82 + 0.0001*m.x15*m.x83 + 0.0001*m.x15*m.x84 + 0.0001*
m.x15*m.x85 + 0.0001*m.x15*m.x86 + 0.0001*m.x15*m.x87 + 0.0001*m.x15*m.x88 + 0.0001*m.x15*m.x89
+ 0.0001*m.x15*m.x90 + 0.0001*m.x15*m.x91 + 0.0001*m.x15*m.x92 + 0.0001*m.x15*m.x93 + 0.0001*
m.x15*m.x94 + 0.0001*m.x15*m.x95 + 0.0001*m.x15*m.x96 + 0.0001*m.x15*m.x97 + 0.0001*m.x15*m.x98
+ 0.0001*m.x15*m.x99 + 0.0001*m.x15*m.x100 + 0.0001*m.x15*m.x101 + 0.0001*m.x15*m.x102 + 0.0001*
m.x15*m.x103 + 0.0001*m.x15*m.x104 + 0.0001*m.x15*m.x105 + 0.0001*m.x15*m.x106 + 0.0001*m.x15*
m.x107 + 0.0001*m.x15*m.x108 + 0.0001*m.x15*m.x109 + 0.0001*m.x15*m.x110 + 0.0001*m.x15*m.x111 +
0.0001*m.x15*m.x112 + 0.0001*m.x15*m.x113 + 0.0001*m.x15*m.x114 + 0.0001*m.x15*m.x115 + 0.0001*
m.x15*m.x116 + 0.0001*m.x15*m.x117 + 0.0001*m.x15*m.x118 + 0.0001*m.x15*m.x119 + 0.0001*m.x15*
m.x120 + 0.0001*m.x15*m.x121 + 0.0001*m.x15*m.x122 + 0.0001*m.x15*m.x123 + 0.0001*m.x15*m.x124 +
0.0001*m.x15*m.x125 + 0.0001*m.x15*m.x126 + 0.0001*m.x15*m.x127 + 0.0001*m.x15*m.x128 + 0.0001*
m.x15*m.x129 + 0.0001*m.x15*m.x130 + 0.0001*m.x15*m.x131 + 3.09241239019915*m.x15*m.x132 + 0.0001
*m.x15*m.x133 + 0.0001*m.x15*m.x134 + 0.0001*m.x15*m.x135 + 0.0001*m.x15*m.x136 + 0.0001*m.x15*
m.x137 + 0.0001*m.x15*m.x138 + 0.0001*m.x15*m.x139 + 0.0001*m.x15*m.x140 + 0.0001*m.x15*m.x141 +
0.0001*m.x15*m.x142 + 0.0001*m.x15*m.x143 + 0.0001*m.x15*m.x144 + 0.0001*m.x15*m.x145 + 0.0001*
m.x15*m.x146 + 0.0001*m.x15*m.x147 + 0.0001*m.x15*m.x148 + 0.0001*m.x15*m.x149 + 0.0001*m.x15*
m.x150 + 0.0001*m.x15*m.x151 + 0.0001*m.x15*m.x152 + 0.0001*m.x15*m.x153 + 0.0001*m.x15*m.x154 +
0.0001*m.x15*m.x155 + 0.0001*m.x15*m.x156 + 0.0001*m.x15*m.x157 + 0.0001*m.x15*m.x158 + 0.0001*
m.x15*m.x159 + 0.0001*m.x15*m.x160 + 0.0001*m.x15*m.x161 + 0.0001*m.x15*m.x162 + 0.0001*m.x15*
m.x163 + 0.0001*m.x15*m.x164 + 0.0001*m.x15*m.x165 + 0.0001*m.x15*m.x166 + 0.0001*m.x15*m.x167 +
0.0001*m.x15*m.x168 + 0.0001*m.x15*m.x169 + 0.0001*m.x15*m.x170 + 0.0001*m.x15*m.x171 + 0.0001*
m.x15*m.x172 + 0.0001*m.x15*m.x173 + 0.0001*m.x15*m.x174 + 0.0001*m.x15*m.x175 + 0.0001*m.x15*
m.x176 + 0.0001*m.x15*m.x177 + 0.0001*m.x15*m.x178 + 0.0001*m.x15*m.x179 + 0.0001*m.x15*m.x180 +
0.0001*m.x15*m.x181 + 0.0001*m.x15*m.x182 + 0.0001*m.x15*m.x183 + 0.0001*m.x15*m.x184 + 0.0001*
m.x15*m.x185 + 0.0001*m.x16*m.x1 + 0.0001*m.x16*m.x2 + 0.0001*m.x16*m.x3 + 7.24661736061512*m.x16
*m.x4 + 0.0001*m.x16*m.x5 + 0.0001*m.x16*m.x6 + 0.0001*m.x16*m.x7 + 0.0001*m.x16*m.x8 + 0.0001*
m.x16*m.x9 + 0.0001*m.x16*m.x10 + 0.0001*m.x16*m.x11 + 0.0001*m.x16*m.x12 + 0.0001*m.x16*m.x13 +
0.0001*m.x16*m.x14 + 0.0001*m.x16*m.x15 + 5.92075394515698*m.x16**2 + 0.0001*m.x16*m.x17 + 0.0001
*m.x16*m.x18 + 0.0001*m.x16*m.x19 + 0.0001*m.x16*m.x20 + 0.0001*m.x16*m.x21 + 0.0001*m.x16*m.x22
+ 0.0001*m.x16*m.x23 + 0.0001*m.x16*m.x24 + 0.0001*m.x16*m.x25 + 0.0001*m.x16*m.x26 +
1.43443424552376*m.x16*m.x27 + 0.0001*m.x16*m.x28 + 0.0001*m.x16*m.x29 + 0.0001*m.x16*m.x30 +
0.0001*m.x16*m.x31 + 0.0001*m.x16*m.x32 + 0.0001*m.x16*m.x33 + 0.0001*m.x16*m.x34 + 0.0001*m.x16*
m.x35 + 0.0001*m.x16*m.x36 + 0.0001*m.x16*m.x37 + 0.0001*m.x16*m.x38 + 5.84911816127454*m.x16*
m.x39 + 0.0001*m.x16*m.x40 + 0.0001*m.x16*m.x41 + 0.0001*m.x16*m.x42 + 0.0001*m.x16*m.x43 +
0.0001*m.x16*m.x44 + 0.0001*m.x16*m.x45 + 0.0001*m.x16*m.x46 + 0.0001*m.x16*m.x47 + 0.0001*m.x16*
m.x48 + 0.0001*m.x16*m.x49 + 0.0001*m.x16*m.x50 + 0.0001*m.x16*m.x51 + 0.0001*m.x16*m.x52 +
0.0001*m.x16*m.x53 + 0.0001*m.x16*m.x54 + 0.0001*m.x16*m.x55 + 0.0001*m.x16*m.x56 + 0.0001*m.x16*
m.x57 + 0.0001*m.x16*m.x58 + 0.0001*m.x16*m.x59 + 0.0001*m.x16*m.x60 + 0.0001*m.x16*m.x61 +
0.0001*m.x16*m.x62 + 0.0001*m.x16*m.x63 + 0.0001*m.x16*m.x64 + 0.0001*m.x16*m.x65 + 0.0001*m.x16*
m.x66 + 0.0001*m.x16*m.x67 + 0.0001*m.x16*m.x68 + 0.0001*m.x16*m.x69 + 0.0001*m.x16*m.x70 +
0.0001*m.x16*m.x71 + 0.0001*m.x16*m.x72 + 0.0001*m.x16*m.x73 + 0.0001*m.x16*m.x74 + 0.0001*m.x16*
m.x75 + 0.0001*m.x16*m.x76 + 0.0001*m.x16*m.x77 + 0.0001*m.x16*m.x78 + 0.0001*m.x16*m.x79 +
0.0001*m.x16*m.x80 + 0.0001*m.x16*m.x81 + 0.0001*m.x16*m.x82 + 0.0001*m.x16*m.x83 + 0.0001*m.x16*
m.x84 + 0.0001*m.x16*m.x85 + 0.0001*m.x16*m.x86 + 0.0001*m.x16*m.x87 + 0.0001*m.x16*m.x88 +
0.0001*m.x16*m.x89 + 0.0001*m.x16*m.x90 + 0.0001*m.x16*m.x91 + 0.0001*m.x16*m.x92 + 0.0001*m.x16*
m.x93 + 0.0001*m.x16*m.x94 + 0.0001*m.x16*m.x95 + 0.0001*m.x16*m.x96 + 0.0001*m.x16*m.x97 +
0.0001*m.x16*m.x98 + 0.0001*m.x16*m.x99 + 0.0001*m.x16*m.x100 + 0.0001*m.x16*m.x101 + 0.0001*
m.x16*m.x102 + 0.0001*m.x16*m.x103 + 0.0001*m.x16*m.x104 + 0.0001*m.x16*m.x105 + 0.0001*m.x16*
m.x106 + 0.0001*m.x16*m.x107 + 0.0001*m.x16*m.x108 + 0.0001*m.x16*m.x109 + 0.0001*m.x16*m.x110 +
0.0001*m.x16*m.x111 + 0.0001*m.x16*m.x112 + 0.0001*m.x16*m.x113 + 0.0001*m.x16*m.x114 + 0.0001*
m.x16*m.x115 + 0.0001*m.x16*m.x116 + 0.0001*m.x16*m.x117 + 0.0001*m.x16*m.x118 + 0.0001*m.x16*
m.x119 + 0.0001*m.x16*m.x120 + 0.0001*m.x16*m.x121 + 0.0001*m.x16*m.x122 + 0.0001*m.x16*m.x123 +
0.0001*m.x16*m.x124 + 0.0001*m.x16*m.x125 + 0.0001*m.x16*m.x126 + 0.0001*m.x16*m.x127 + 0.0001*
m.x16*m.x128 + 0.0001*m.x16*m.x129 + 0.0001*m.x16*m.x130 + 0.0001*m.x16*m.x131 + 0.0001*m.x16*
m.x132 + 3.04574536914387*m.x16*m.x133 + 0.0001*m.x16*m.x134 + 0.0001*m.x16*m.x135 + 0.0001*m.x16
*m.x136 + 0.0001*m.x16*m.x137 + 0.0001*m.x16*m.x138 + 0.0001*m.x16*m.x139 + 0.0001*m.x16*m.x140
+ 0.0001*m.x16*m.x141 + 0.0001*m.x16*m.x142 + 0.0001*m.x16*m.x143 + 0.0001*m.x16*m.x144 + 0.0001
*m.x16*m.x145 + 0.0001*m.x16*m.x146 + 0.0001*m.x16*m.x147 + 0.0001*m.x16*m.x148 + 0.0001*m.x16*
m.x149 + 0.0001*m.x16*m.x150 + 0.0001*m.x16*m.x151 + 0.0001*m.x16*m.x152 + 0.0001*m.x16*m.x153 +
0.0001*m.x16*m.x154 + 0.0001*m.x16*m.x155 + 0.0001*m.x16*m.x156 + 0.0001*m.x16*m.x157 + 0.0001*
m.x16*m.x158 + 0.0001*m.x16*m.x159 + 0.0001*m.x16*m.x160 + 0.0001*m.x16*m.x161 + 0.0001*m.x16*
m.x162 + 0.0001*m.x16*m.x163 + 0.0001*m.x16*m.x164 + 0.0001*m.x16*m.x165 + 0.0001*m.x16*m.x166 +
0.0001*m.x16*m.x167 + 0.0001*m.x16*m.x168 + 0.0001*m.x16*m.x169 + 0.0001*m.x16*m.x170 + 0.0001*
m.x16*m.x171 + 0.0001*m.x16*m.x172 + 0.0001*m.x16*m.x173 + 0.0001*m.x16*m.x174 + 0.0001*m.x16*
m.x175 + 0.0001*m.x16*m.x176 + 0.0001*m.x16*m.x177 + 0.0001*m.x16*m.x178 + 0.0001*m.x16*m.x179 +
0.0001*m.x16*m.x180 + 0.0001*m.x16*m.x181 + 0.0001*m.x16*m.x182 + 0.0001*m.x16*m.x183 + 0.0001*
m.x16*m.x184 + 0.0001*m.x16*m.x185 + 0.0001*m.x17*m.x1 + 0.0001*m.x17*m.x2 + 0.0001*m.x17*m.x3 +
0.0001*m.x17*m.x4 + 7.26656408673387*m.x17*m.x5 + 0.0001*m.x17*m.x6 + 0.0001*m.x17*m.x7 + 0.0001*
m.x17*m.x8 + 0.0001*m.x17*m.x9 + 0.0001*m.x17*m.x10 + 0.0001*m.x17*m.x11 + 0.0001*m.x17*m.x12 +
0.0001*m.x17*m.x13 + 0.0001*m.x17*m.x14 + 0.0001*m.x17*m.x15 + 0.0001*m.x17*m.x16 +
5.79947002171425*m.x17**2 + 0.0001*m.x17*m.x18 + 0.0001*m.x17*m.x19 + 0.0001*m.x17*m.x20 + 0.0001
*m.x17*m.x21 + 0.0001*m.x17*m.x22 + 0.0001*m.x17*m.x23 + 0.0001*m.x17*m.x24 + 0.0001*m.x17*m.x25
+ 0.0001*m.x17*m.x26 + 0.0001*m.x17*m.x27 + 1.40499695900221*m.x17*m.x28 + 0.0001*m.x17*m.x29 +
0.0001*m.x17*m.x30 + 0.0001*m.x17*m.x31 + 0.0001*m.x17*m.x32 + 0.0001*m.x17*m.x33 + 0.0001*m.x17*
m.x34 + 0.0001*m.x17*m.x35 + 0.0001*m.x17*m.x36 + 0.0001*m.x17*m.x37 + 0.0001*m.x17*m.x38 +
0.0001*m.x17*m.x39 + 5.72841015580757*m.x17*m.x40 + 0.0001*m.x17*m.x41 + 0.0001*m.x17*m.x42 +
0.0001*m.x17*m.x43 + 0.0001*m.x17*m.x44 + 0.0001*m.x17*m.x45 + 0.0001*m.x17*m.x46 + 0.0001*m.x17*
m.x47 + 0.0001*m.x17*m.x48 + 0.0001*m.x17*m.x49 + 0.0001*m.x17*m.x50 + 0.0001*m.x17*m.x51 +
0.0001*m.x17*m.x52 + 0.0001*m.x17*m.x53 + 0.0001*m.x17*m.x54 + 0.0001*m.x17*m.x55 + 0.0001*m.x17*
m.x56 + 0.0001*m.x17*m.x57 + 0.0001*m.x17*m.x58 + 0.0001*m.x17*m.x59 + 0.0001*m.x17*m.x60 +
0.0001*m.x17*m.x61 + 0.0001*m.x17*m.x62 + 0.0001*m.x17*m.x63 + 0.0001*m.x17*m.x64 + 0.0001*m.x17*
m.x65 + 0.0001*m.x17*m.x66 + 0.0001*m.x17*m.x67 + 0.0001*m.x17*m.x68 + 0.0001*m.x17*m.x69 +
0.0001*m.x17*m.x70 + 0.0001*m.x17*m.x71 + 0.0001*m.x17*m.x72 + 0.0001*m.x17*m.x73 + 0.0001*m.x17*
m.x74 + 0.0001*m.x17*m.x75 + 0.0001*m.x17*m.x76 + 0.0001*m.x17*m.x77 + 0.0001*m.x17*m.x78 +
0.0001*m.x17*m.x79 + 0.0001*m.x17*m.x80 + 0.0001*m.x17*m.x81 + 0.0001*m.x17*m.x82 + 0.0001*m.x17*
m.x83 + 0.0001*m.x17*m.x84 + 0.0001*m.x17*m.x85 + 0.0001*m.x17*m.x86 + 0.0001*m.x17*m.x87 +
0.0001*m.x17*m.x88 + 0.0001*m.x17*m.x89 + 0.0001*m.x17*m.x90 + 0.0001*m.x17*m.x91 + 0.0001*m.x17*
m.x92 + 0.0001*m.x17*m.x93 + 0.0001*m.x17*m.x94 + 0.0001*m.x17*m.x95 + 0.0001*m.x17*m.x96 +
0.0001*m.x17*m.x97 + 0.0001*m.x17*m.x98 + 0.0001*m.x17*m.x99 + 0.0001*m.x17*m.x100 + 0.0001*m.x17
*m.x101 + 0.0001*m.x17*m.x102 + 0.0001*m.x17*m.x103 + 0.0001*m.x17*m.x104 + 0.0001*m.x17*m.x105
+ 0.0001*m.x17*m.x106 + 0.0001*m.x17*m.x107 + 0.0001*m.x17*m.x108 + 0.0001*m.x17*m.x109 + 0.0001
*m.x17*m.x110 + 0.0001*m.x17*m.x111 + 0.0001*m.x17*m.x112 + 0.0001*m.x17*m.x113 + 0.0001*m.x17*
m.x114 + 0.0001*m.x17*m.x115 + 0.0001*m.x17*m.x116 + 0.0001*m.x17*m.x117 + 0.0001*m.x17*m.x118 +
0.0001*m.x17*m.x119 + 0.0001*m.x17*m.x120 + 0.0001*m.x17*m.x121 + 0.0001*m.x17*m.x122 + 0.0001*
m.x17*m.x123 + 0.0001*m.x17*m.x124 + 0.0001*m.x17*m.x125 + 0.0001*m.x17*m.x126 + 0.0001*m.x17*
m.x127 + 0.0001*m.x17*m.x128 + 0.0001*m.x17*m.x129 + 0.0001*m.x17*m.x130 + 0.0001*m.x17*m.x131 +
0.0001*m.x17*m.x132 + 0.0001*m.x17*m.x133 + 2.9828914391795*m.x17*m.x134 + 0.0001*m.x17*m.x135 +
0.0001*m.x17*m.x136 + 0.0001*m.x17*m.x137 + 0.0001*m.x17*m.x138 + 0.0001*m.x17*m.x139 + 0.0001*
m.x17*m.x140 + 0.0001*m.x17*m.x141 + 0.0001*m.x17*m.x142 + 0.0001*m.x17*m.x143 + 0.0001*m.x17*
m.x144 + 0.0001*m.x17*m.x145 + 0.0001*m.x17*m.x146 + 0.0001*m.x17*m.x147 + 0.0001*m.x17*m.x148 +
0.0001*m.x17*m.x149 + 0.0001*m.x17*m.x150 + 0.0001*m.x17*m.x151 + 0.0001*m.x17*m.x152 + 0.0001*
m.x17*m.x153 + 0.0001*m.x17*m.x154 + 0.0001*m.x17*m.x155 + 0.0001*m.x17*m.x156 + 0.0001*m.x17*
m.x157 + 0.0001*m.x17*m.x158 + 0.0001*m.x17*m.x159 + 0.0001*m.x17*m.x160 + 0.0001*m.x17*m.x161 +
0.0001*m.x17*m.x162 + 0.0001*m.x17*m.x163 + 0.0001*m.x17*m.x164 + 0.0001*m.x17*m.x165 + 0.0001*
m.x17*m.x166 + 0.0001*m.x17*m.x167 + 0.0001*m.x17*m.x168 + 0.0001*m.x17*m.x169 + 0.0001*m.x17*
m.x170 + 0.0001*m.x17*m.x171 + 0.0001*m.x17*m.x172 + 0.0001*m.x17*m.x173 + 0.0001*m.x17*m.x174 +
0.0001*m.x17*m.x175 + 0.0001*m.x17*m.x176 + 0.0001*m.x17*m.x177 + 0.0001*m.x17*m.x178 + 0.0001*
m.x17*m.x179 + 0.0001*m.x17*m.x180 + 0.0001*m.x17*m.x181 + 0.0001*m.x17*m.x182 + 0.0001*m.x17*
m.x183 + 0.0001*m.x17*m.x184 + 0.0001*m.x17*m.x185 + 0.0001*m.x18*m.x1 + 0.0001*m.x18*m.x2 +
0.0001*m.x18*m.x3 + 0.0001*m.x18*m.x4 + 0.0001*m.x18*m.x5 + 7.26556099733353*m.x18*m.x6 + 0.0001*
m.x18*m.x7 + 0.0001*m.x18*m.x8 + 0.0001*m.x18*m.x9 + 0.0001*m.x18*m.x10 + 0.0001*m.x18*m.x11 +
0.0001*m.x18*m.x12 + 0.0001*m.x18*m.x13 + 0.0001*m.x18*m.x14 + 0.0001*m.x18*m.x15 + 0.0001*m.x18*
m.x16 + 0.0001*m.x18*m.x17 + 5.7978689995367*m.x18**2 + 0.0001*m.x18*m.x19 + 0.0001*m.x18*m.x20
+ 0.0001*m.x18*m.x21 + 0.0001*m.x18*m.x22 + 0.0001*m.x18*m.x23 + 0.0001*m.x18*m.x24 + 0.0001*
m.x18*m.x25 + 0.0001*m.x18*m.x26 + 0.0001*m.x18*m.x27 + 0.0001*m.x18*m.x28 + 1.41126335218548*
m.x18*m.x29 + 0.0001*m.x18*m.x30 + 0.0001*m.x18*m.x31 + 0.0001*m.x18*m.x32 + 0.0001*m.x18*m.x33
+ 0.0001*m.x18*m.x34 + 0.0001*m.x18*m.x35 + 0.0001*m.x18*m.x36 + 0.0001*m.x18*m.x37 + 0.0001*
m.x18*m.x38 + 0.0001*m.x18*m.x39 + 0.0001*m.x18*m.x40 + 5.72772003780067*m.x18*m.x41 + 0.0001*
m.x18*m.x42 + 0.0001*m.x18*m.x43 + 0.0001*m.x18*m.x44 + 0.0001*m.x18*m.x45 + 0.0001*m.x18*m.x46
+ 0.0001*m.x18*m.x47 + 0.0001*m.x18*m.x48 + 0.0001*m.x18*m.x49 + 0.0001*m.x18*m.x50 + 0.0001*
m.x18*m.x51 + 0.0001*m.x18*m.x52 + 0.0001*m.x18*m.x53 + 0.0001*m.x18*m.x54 + 0.0001*m.x18*m.x55
+ 0.0001*m.x18*m.x56 + 0.0001*m.x18*m.x57 + 0.0001*m.x18*m.x58 + 0.0001*m.x18*m.x59 + 0.0001*
m.x18*m.x60 + 0.0001*m.x18*m.x61 + 0.0001*m.x18*m.x62 + 0.0001*m.x18*m.x63 + 0.0001*m.x18*m.x64
+ 0.0001*m.x18*m.x65 + 0.0001*m.x18*m.x66 + 0.0001*m.x18*m.x67 + 0.0001*m.x18*m.x68 + 0.0001*
m.x18*m.x69 + 0.0001*m.x18*m.x70 + 0.0001*m.x18*m.x71 + 0.0001*m.x18*m.x72 + 0.0001*m.x18*m.x73
+ 0.0001*m.x18*m.x74 + 0.0001*m.x18*m.x75 + 0.0001*m.x18*m.x76 + 0.0001*m.x18*m.x77 + 0.0001*
m.x18*m.x78 + 0.0001*m.x18*m.x79 + 0.0001*m.x18*m.x80 + 0.0001*m.x18*m.x81 + 0.0001*m.x18*m.x82
+ 0.0001*m.x18*m.x83 + 0.0001*m.x18*m.x84 + 0.0001*m.x18*m.x85 + 0.0001*m.x18*m.x86 + 0.0001*
m.x18*m.x87 + 0.0001*m.x18*m.x88 + 0.0001*m.x18*m.x89 + 0.0001*m.x18*m.x90 + 0.0001*m.x18*m.x91
+ 0.0001*m.x18*m.x92 + 0.0001*m.x18*m.x93 + 0.0001*m.x18*m.x94 + 0.0001*m.x18*m.x95 + 0.0001*
m.x18*m.x96 + 0.0001*m.x18*m.x97 + 0.0001*m.x18*m.x98 + 0.0001*m.x18*m.x99 + 0.0001*m.x18*m.x100
+ 0.0001*m.x18*m.x101 + 0.0001*m.x18*m.x102 + 0.0001*m.x18*m.x103 + 0.0001*m.x18*m.x104 + 0.0001
*m.x18*m.x105 + 0.0001*m.x18*m.x106 + 0.0001*m.x18*m.x107 + 0.0001*m.x18*m.x108 + 0.0001*m.x18*
m.x109 + 0.0001*m.x18*m.x110 + 0.0001*m.x18*m.x111 + 0.0001*m.x18*m.x112 + 0.0001*m.x18*m.x113 +
0.0001*m.x18*m.x114 + 0.0001*m.x18*m.x115 + 0.0001*m.x18*m.x116 + 0.0001*m.x18*m.x117 + 0.0001*
m.x18*m.x118 + 0.0001*m.x18*m.x119 + 0.0001*m.x18*m.x120 + 0.0001*m.x18*m.x121 + 0.0001*m.x18*
m.x122 + 0.0001*m.x18*m.x123 + 0.0001*m.x18*m.x124 + 0.0001*m.x18*m.x125 + 0.0001*m.x18*m.x126 +
0.0001*m.x18*m.x127 + 0.0001*m.x18*m.x128 + 0.0001*m.x18*m.x129 + 0.0001*m.x18*m.x130 + 0.0001*
m.x18*m.x131 + 0.0001*m.x18*m.x132 + 0.0001*m.x18*m.x133 + 0.0001*m.x18*m.x134 + 3.03300046678543
*m.x18*m.x135 + 0.0001*m.x18*m.x136 + 0.0001*m.x18*m.x137 + 0.0001*m.x18*m.x138 + 0.0001*m.x18*
m.x139 + 0.0001*m.x18*m.x140 + 0.0001*m.x18*m.x141 + 0.0001*m.x18*m.x142 + 0.0001*m.x18*m.x143 +
0.0001*m.x18*m.x144 + 0.0001*m.x18*m.x145 + 0.0001*m.x18*m.x146 + 0.0001*m.x18*m.x147 + 0.0001*
m.x18*m.x148 + 0.0001*m.x18*m.x149 + 0.0001*m.x18*m.x150 + 0.0001*m.x18*m.x151 + 0.0001*m.x18*
m.x152 + 0.0001*m.x18*m.x153 + 0.0001*m.x18*m.x154 + 0.0001*m.x18*m.x155 + 0.0001*m.x18*m.x156 +
0.0001*m.x18*m.x157 + 0.0001*m.x18*m.x158 + 0.0001*m.x18*m.x159 + 0.0001*m.x18*m.x160 + 0.0001*
m.x18*m.x161 + 0.0001*m.x18*m.x162 + 0.0001*m.x18*m.x163 + 0.0001*m.x18*m.x164 + 0.0001*m.x18*
m.x165 + 0.0001*m.x18*m.x166 + 0.0001*m.x18*m.x167 + 0.0001*m.x18*m.x168 + 0.0001*m.x18*m.x169 +
0.0001*m.x18*m.x170 + 0.0001*m.x18*m.x171 + 0.0001*m.x18*m.x172 + 0.0001*m.x18*m.x173 + 0.0001*
m.x18*m.x174 + 0.0001*m.x18*m.x175 + 0.0001*m.x18*m.x176 + 0.0001*m.x18*m.x177 + 0.0001*m.x18*
m.x178 + 0.0001*m.x18*m.x179 + 0.0001*m.x18*m.x180 + 0.0001*m.x18*m.x181 + 0.0001*m.x18*m.x182 +
0.0001*m.x18*m.x183 + 0.0001*m.x18*m.x184 + 0.0001*m.x18*m.x185 + 0.0001*m.x19*m.x1 + 0.0001*
m.x19*m.x2 + 0.0001*m.x19*m.x3 + 0.0001*m.x19*m.x4 + 0.0001*m.x19*m.x5 + 0.0001*m.x19*m.x6 +
7.41338218097586*m.x19*m.x7 + 0.0001*m.x19*m.x8 + 0.0001*m.x19*m.x9 + 0.0001*m.x19*m.x10 + 0.0001
*m.x19*m.x11 + 0.0001*m.x19*m.x12 + 0.0001*m.x19*m.x13 + 0.0001*m.x19*m.x14 + 0.0001*m.x19*m.x15
+ 0.0001*m.x19*m.x16 + 0.0001*m.x19*m.x17 + 0.0001*m.x19*m.x18 + 6.03618878752295*m.x19**2 +
0.0001*m.x19*m.x20 + 0.0001*m.x19*m.x21 + 0.0001*m.x19*m.x22 + 0.0001*m.x19*m.x23 + 0.0001*m.x19*
m.x24 + 0.0001*m.x19*m.x25 + 0.0001*m.x19*m.x26 + 0.0001*m.x19*m.x27 + 0.0001*m.x19*m.x28 +
0.0001*m.x19*m.x29 + 1.40606311251092*m.x19*m.x30 + 0.0001*m.x19*m.x31 + 0.0001*m.x19*m.x32 +
0.0001*m.x19*m.x33 + 0.0001*m.x19*m.x34 + 0.0001*m.x19*m.x35 + 0.0001*m.x19*m.x36 + 0.0001*m.x19*
m.x37 + 0.0001*m.x19*m.x38 + 0.0001*m.x19*m.x39 + 0.0001*m.x19*m.x40 + 0.0001*m.x19*m.x41 +
5.81931980408252*m.x19*m.x42 + 0.0001*m.x19*m.x43 + 0.0001*m.x19*m.x44 + 0.0001*m.x19*m.x45 +
0.0001*m.x19*m.x46 + 0.0001*m.x19*m.x47 + 0.0001*m.x19*m.x48 + 0.0001*m.x19*m.x49 + 0.0001*m.x19*
m.x50 + 0.0001*m.x19*m.x51 + 0.0001*m.x19*m.x52 + 0.0001*m.x19*m.x53 + 0.0001*m.x19*m.x54 +
0.0001*m.x19*m.x55 + 0.0001*m.x19*m.x56 + 0.0001*m.x19*m.x57 + 0.0001*m.x19*m.x58 + 0.0001*m.x19*
m.x59 + 0.0001*m.x19*m.x60 + 0.0001*m.x19*m.x61 + 0.0001*m.x19*m.x62 + 0.0001*m.x19*m.x63 +
0.0001*m.x19*m.x64 + 0.0001*m.x19*m.x65 + 0.0001*m.x19*m.x66 + 0.0001*m.x19*m.x67 + 0.0001*m.x19*
m.x68 + 0.0001*m.x19*m.x69 + 0.0001*m.x19*m.x70 + 0.0001*m.x19*m.x71 + 0.0001*m.x19*m.x72 +
0.0001*m.x19*m.x73 + 0.0001*m.x19*m.x74 + 0.0001*m.x19*m.x75 + 0.0001*m.x19*m.x76 + 0.0001*m.x19*
m.x77 + 0.0001*m.x19*m.x78 + 0.0001*m.x19*m.x79 + 0.0001*m.x19*m.x80 + 0.0001*m.x19*m.x81 +
0.0001*m.x19*m.x82 + 0.0001*m.x19*m.x83 + 0.0001*m.x19*m.x84 + 0.0001*m.x19*m.x85 + 0.0001*m.x19*
m.x86 + 0.0001*m.x19*m.x87 + 0.0001*m.x19*m.x88 + 0.0001*m.x19*m.x89 + 0.0001*m.x19*m.x90 +
0.0001*m.x19*m.x91 + 0.0001*m.x19*m.x92 + 0.0001*m.x19*m.x93 + 0.0001*m.x19*m.x94 + 0.0001*m.x19*
m.x95 + 0.0001*m.x19*m.x96 + 0.0001*m.x19*m.x97 + 0.0001*m.x19*m.x98 + 0.0001*m.x19*m.x99 +
0.0001*m.x19*m.x100 + 0.0001*m.x19*m.x101 + 0.0001*m.x19*m.x102 + 0.0001*m.x19*m.x103 + 0.0001*
m.x19*m.x104 + 0.0001*m.x19*m.x105 + 0.0001*m.x19*m.x106 + 0.0001*m.x19*m.x107 + 0.0001*m.x19*
m.x108 + 0.0001*m.x19*m.x109 + 0.0001*m.x19*m.x110 + 0.0001*m.x19*m.x111 + 0.0001*m.x19*m.x112 +
0.0001*m.x19*m.x113 + 0.0001*m.x19*m.x114 + 0.0001*m.x19*m.x115 + 0.0001*m.x19*m.x116 + 0.0001*
m.x19*m.x117 + 0.0001*m.x19*m.x118 + 0.0001*m.x19*m.x119 + 0.0001*m.x19*m.x120 + 0.0001*m.x19*
m.x121 + 0.0001*m.x19*m.x122 + 0.0001*m.x19*m.x123 + 0.0001*m.x19*m.x124 + 0.0001*m.x19*m.x125 +
0.0001*m.x19*m.x126 + 0.0001*m.x19*m.x127 + 0.0001*m.x19*m.x128 + 0.0001*m.x19*m.x129 + 0.0001*
m.x19*m.x130 + 0.0001*m.x19*m.x131 + 0.0001*m.x19*m.x132 + 0.0001*m.x19*m.x133 + 0.0001*m.x19*
m.x134 + 0.0001*m.x19*m.x135 + 3.15673633542148*m.x19*m.x136 + 0.0001*m.x19*m.x137 + 0.0001*m.x19
*m.x138 + 0.0001*m.x19*m.x139 + 0.0001*m.x19*m.x140 + 0.0001*m.x19*m.x141 + 0.0001*m.x19*m.x142
+ 0.0001*m.x19*m.x143 + 0.0001*m.x19*m.x144 + 0.0001*m.x19*m.x145 + 0.0001*m.x19*m.x146 + 0.0001
*m.x19*m.x147 + 0.0001*m.x19*m.x148 + 0.0001*m.x19*m.x149 + 0.0001*m.x19*m.x150 + 0.0001*m.x19*
m.x151 + 0.0001*m.x19*m.x152 + 0.0001*m.x19*m.x153 + 0.0001*m.x19*m.x154 + 0.0001*m.x19*m.x155 +
0.0001*m.x19*m.x156 + 0.0001*m.x19*m.x157 + 0.0001*m.x19*m.x158 + 0.0001*m.x19*m.x159 + 0.0001*
m.x19*m.x160 + 0.0001*m.x19*m.x161 + 0.0001*m.x19*m.x162 + 0.0001*m.x19*m.x163 + 0.0001*m.x19*
m.x164 + 0.0001*m.x19*m.x165 + 0.0001*m.x19*m.x166 + 0.0001*m.x19*m.x167 + 0.0001*m.x19*m.x168 +
0.0001*m.x19*m.x169 + 0.0001*m.x19*m.x170 + 0.0001*m.x19*m.x171 + 0.0001*m.x19*m.x172 + 0.0001*
m.x19*m.x173 + 0.0001*m.x19*m.x174 + 0.0001*m.x19*m.x175 + 0.0001*m.x19*m.x176 + 0.0001*m.x19*
m.x177 + 0.0001*m.x19*m.x178 + 0.0001*m.x19*m.x179 + 0.0001*m.x19*m.x180 + 0.0001*m.x19*m.x181 +
0.0001*m.x19*m.x182 + 0.0001*m.x19*m.x183 + 0.0001*m.x19*m.x184 + 0.0001*m.x19*m.x185 + 0.0001*
m.x20*m.x1 + 0.0001*m.x20*m.x2 + 0.0001*m.x20*m.x3 + 0.0001*m.x20*m.x4 + 0.0001*m.x20*m.x5 +
0.0001*m.x20*m.x6 + 0.0001*m.x20*m.x7 + 7.4520596959325*m.x20*m.x8 + 0.0001*m.x20*m.x9 + 0.0001*
m.x20*m.x10 + 0.0001*m.x20*m.x11 + 0.0001*m.x20*m.x12 + 0.0001*m.x20*m.x13 + 0.0001*m.x20*m.x14
+ 0.0001*m.x20*m.x15 + 0.0001*m.x20*m.x16 + 0.0001*m.x20*m.x17 + 0.0001*m.x20*m.x18 + 0.0001*
m.x20*m.x19 + 6.70161486626286*m.x20**2 + 0.0001*m.x20*m.x21 + 0.0001*m.x20*m.x22 + 0.0001*m.x20*
m.x23 + 0.0001*m.x20*m.x24 + 0.0001*m.x20*m.x25 + 0.0001*m.x20*m.x26 + 0.0001*m.x20*m.x27 +
0.0001*m.x20*m.x28 + 0.0001*m.x20*m.x29 + 0.0001*m.x20*m.x30 + 1.56105826810654*m.x20*m.x31 +
0.0001*m.x20*m.x32 + 0.0001*m.x20*m.x33 + 0.0001*m.x20*m.x34 + 0.0001*m.x20*m.x35 + 0.0001*m.x20*
m.x36 + 0.0001*m.x20*m.x37 + 0.0001*m.x20*m.x38 + 0.0001*m.x20*m.x39 + 0.0001*m.x20*m.x40 +
0.0001*m.x20*m.x41 + 0.0001*m.x20*m.x42 + 6.46083797120433*m.x20*m.x43 + 0.0001*m.x20*m.x44 +
0.0001*m.x20*m.x45 + 0.0001*m.x20*m.x46 + 0.0001*m.x20*m.x47 + 0.0001*m.x20*m.x48 + 0.0001*m.x20*
m.x49 + 0.0001*m.x20*m.x50 + 0.0001*m.x20*m.x51 + 0.0001*m.x20*m.x52 + 0.0001*m.x20*m.x53 +
0.0001*m.x20*m.x54 + 0.0001*m.x20*m.x55 + 0.0001*m.x20*m.x56 + 0.0001*m.x20*m.x57 + 0.0001*m.x20*
m.x58 + 0.0001*m.x20*m.x59 + 0.0001*m.x20*m.x60 + 0.0001*m.x20*m.x61 + 0.0001*m.x20*m.x62 +
0.0001*m.x20*m.x63 + 0.0001*m.x20*m.x64 + 0.0001*m.x20*m.x65 + 0.0001*m.x20*m.x66 + 0.0001*m.x20*
m.x67 + 0.0001*m.x20*m.x68 + 0.0001*m.x20*m.x69 + 0.0001*m.x20*m.x70 + 0.0001*m.x20*m.x71 +
0.0001*m.x20*m.x72 + 0.0001*m.x20*m.x73 + 0.0001*m.x20*m.x74 + 0.0001*m.x20*m.x75 + 0.0001*m.x20*
m.x76 + 0.0001*m.x20*m.x77 + 0.0001*m.x20*m.x78 + 0.0001*m.x20*m.x79 + 0.0001*m.x20*m.x80 +
0.0001*m.x20*m.x81 + 0.0001*m.x20*m.x82 + 0.0001*m.x20*m.x83 + 0.0001*m.x20*m.x84 + 0.0001*m.x20*
m.x85 + 0.0001*m.x20*m.x86 + 0.0001*m.x20*m.x87 + 0.0001*m.x20*m.x88 + 0.0001*m.x20*m.x89 +
0.0001*m.x20*m.x90 + 0.0001*m.x20*m.x91 + 0.0001*m.x20*m.x92 + 0.0001*m.x20*m.x93 + 0.0001*m.x20*
m.x94 + 0.0001*m.x20*m.x95 + 0.0001*m.x20*m.x96 + 0.0001*m.x20*m.x97 + 0.0001*m.x20*m.x98 +
0.0001*m.x20*m.x99 + 0.0001*m.x20*m.x100 + 0.0001*m.x20*m.x101 + 0.0001*m.x20*m.x102 + 0.0001*
m.x20*m.x103 + 0.0001*m.x20*m.x104 + 0.0001*m.x20*m.x105 + 0.0001*m.x20*m.x106 + 0.0001*m.x20*
m.x107 + 0.0001*m.x20*m.x108 + 0.0001*m.x20*m.x109 + 0.0001*m.x20*m.x110 + 0.0001*m.x20*m.x111 +
0.0001*m.x20*m.x112 + 0.0001*m.x20*m.x113 + 0.0001*m.x20*m.x114 + 0.0001*m.x20*m.x115 + 0.0001*
m.x20*m.x116 + 0.0001*m.x20*m.x117 + 0.0001*m.x20*m.x118 + 0.0001*m.x20*m.x119 + 0.0001*m.x20*
m.x120 + 0.0001*m.x20*m.x121 + 0.0001*m.x20*m.x122 + 0.0001*m.x20*m.x123 + 0.0001*m.x20*m.x124 +
0.0001*m.x20*m.x125 + 0.0001*m.x20*m.x126 + 0.0001*m.x20*m.x127 + 0.0001*m.x20*m.x128 + 0.0001*
m.x20*m.x129 + 0.0001*m.x20*m.x130 + 0.0001*m.x20*m.x131 + 0.0001*m.x20*m.x132 + 0.0001*m.x20*
m.x133 + 0.0001*m.x20*m.x134 + 0.0001*m.x20*m.x135 + 0.0001*m.x20*m.x136 + 3.50472792610672*m.x20
*m.x137 + 0.0001*m.x20*m.x138 + 0.0001*m.x20*m.x139 + 0.0001*m.x20*m.x140 + 0.0001*m.x20*m.x141
+ 0.0001*m.x20*m.x142 + 0.0001*m.x20*m.x143 + 0.0001*m.x20*m.x144 + 0.0001*m.x20*m.x145 + 0.0001
*m.x20*m.x146 + 0.0001*m.x20*m.x147 + 0.0001*m.x20*m.x148 + 0.0001*m.x20*m.x149 + 0.0001*m.x20*
m.x150 + 0.0001*m.x20*m.x151 + 0.0001*m.x20*m.x152 + 0.0001*m.x20*m.x153 + 0.0001*m.x20*m.x154 +
0.0001*m.x20*m.x155 + 0.0001*m.x20*m.x156 + 0.0001*m.x20*m.x157 + 0.0001*m.x20*m.x158 + 0.0001*
m.x20*m.x159 + 0.0001*m.x20*m.x160 + 0.0001*m.x20*m.x161 + 0.0001*m.x20*m.x162 + 0.0001*m.x20*
m.x163 + 0.0001*m.x20*m.x164 + 0.0001*m.x20*m.x165 + 0.0001*m.x20*m.x166 + 0.0001*m.x20*m.x167 +
0.0001*m.x20*m.x168 + 0.0001*m.x20*m.x169 + 0.0001*m.x20*m.x170 + 0.0001*m.x20*m.x171 + 0.0001*
m.x20*m.x172 + 0.0001*m.x20*m.x173 + 0.0001*m.x20*m.x174 + 0.0001*m.x20*m.x175 + 0.0001*m.x20*
m.x176 + 0.0001*m.x20*m.x177 + 0.0001*m.x20*m.x178 + 0.0001*m.x20*m.x179 + 0.0001*m.x20*m.x180 +
0.0001*m.x20*m.x181 + 0.0001*m.x20*m.x182 + 0.0001*m.x20*m.x183 + 0.0001*m.x20*m.x184 + 0.0001*
m.x20*m.x185 + 0.0001*m.x21*m.x1 + 0.0001*m.x21*m.x2 + 0.0001*m.x21*m.x3 + 0.0001*m.x21*m.x4 +
0.0001*m.x21*m.x5 + 0.0001*m.x21*m.x6 + 0.0001*m.x21*m.x7 + 0.0001*m.x21*m.x8 + 7.4520596959325*
m.x21*m.x9 + 0.0001*m.x21*m.x10 + 0.0001*m.x21*m.x11 + 0.0001*m.x21*m.x12 + 0.0001*m.x21*m.x13 +
0.0001*m.x21*m.x14 + 0.0001*m.x21*m.x15 + 0.0001*m.x21*m.x16 + 0.0001*m.x21*m.x17 + 0.0001*m.x21*
m.x18 + 0.0001*m.x21*m.x19 + 0.0001*m.x21*m.x20 + 6.70161486626286*m.x21**2 + 0.0001*m.x21*m.x22
+ 0.0001*m.x21*m.x23 + 0.0001*m.x21*m.x24 + 0.0001*m.x21*m.x25 + 0.0001*m.x21*m.x26 + 0.0001*
m.x21*m.x27 + 0.0001*m.x21*m.x28 + 0.0001*m.x21*m.x29 + 0.0001*m.x21*m.x30 + 0.0001*m.x21*m.x31
+ 1.62885055048501*m.x21*m.x32 + 0.0001*m.x21*m.x33 + 0.0001*m.x21*m.x34 + 0.0001*m.x21*m.x35 +
0.0001*m.x21*m.x36 + 0.0001*m.x21*m.x37 + 0.0001*m.x21*m.x38 + 0.0001*m.x21*m.x39 + 0.0001*m.x21*
m.x40 + 0.0001*m.x21*m.x41 + 0.0001*m.x21*m.x42 + 0.0001*m.x21*m.x43 + 6.46083797120433*m.x21*
m.x44 + 0.0001*m.x21*m.x45 + 0.0001*m.x21*m.x46 + 0.0001*m.x21*m.x47 + 0.0001*m.x21*m.x48 +
0.0001*m.x21*m.x49 + 0.0001*m.x21*m.x50 + 0.0001*m.x21*m.x51 + 0.0001*m.x21*m.x52 + 0.0001*m.x21*
m.x53 + 0.0001*m.x21*m.x54 + 0.0001*m.x21*m.x55 + 0.0001*m.x21*m.x56 + 0.0001*m.x21*m.x57 +
0.0001*m.x21*m.x58 + 0.0001*m.x21*m.x59 + 0.0001*m.x21*m.x60 + 0.0001*m.x21*m.x61 + 0.0001*m.x21*
m.x62 + 0.0001*m.x21*m.x63 + 0.0001*m.x21*m.x64 + 0.0001*m.x21*m.x65 + 0.0001*m.x21*m.x66 +
0.0001*m.x21*m.x67 + 0.0001*m.x21*m.x68 + 0.0001*m.x21*m.x69 + 0.0001*m.x21*m.x70 + 0.0001*m.x21*
m.x71 + 0.0001*m.x21*m.x72 + 0.0001*m.x21*m.x73 + 0.0001*m.x21*m.x74 + 0.0001*m.x21*m.x75 +
0.0001*m.x21*m.x76 + 0.0001*m.x21*m.x77 + 0.0001*m.x21*m.x78 + 0.0001*m.x21*m.x79 + 0.0001*m.x21*
m.x80 + 0.0001*m.x21*m.x81 + 0.0001*m.x21*m.x82 + 0.0001*m.x21*m.x83 + 0.0001*m.x21*m.x84 +
0.0001*m.x21*m.x85 + 0.0001*m.x21*m.x86 + 0.0001*m.x21*m.x87 + 0.0001*m.x21*m.x88 + 0.0001*m.x21*
m.x89 + 0.0001*m.x21*m.x90 + 0.0001*m.x21*m.x91 + 0.0001*m.x21*m.x92 + 0.0001*m.x21*m.x93 +
0.0001*m.x21*m.x94 + 0.0001*m.x21*m.x95 + 0.0001*m.x21*m.x96 + 0.0001*m.x21*m.x97 + 0.0001*m.x21*
m.x98 + 0.0001*m.x21*m.x99 + 0.0001*m.x21*m.x100 + 0.0001*m.x21*m.x101 + 0.0001*m.x21*m.x102 +
0.0001*m.x21*m.x103 + 0.0001*m.x21*m.x104 + 0.0001*m.x21*m.x105 + 0.0001*m.x21*m.x106 + 0.0001*
m.x21*m.x107 + 0.0001*m.x21*m.x108 + 0.0001*m.x21*m.x109 + 0.0001*m.x21*m.x110 + 0.0001*m.x21*
m.x111 + 0.0001*m.x21*m.x112 + 0.0001*m.x21*m.x113 + 0.0001*m.x21*m.x114 + 0.0001*m.x21*m.x115 +
0.0001*m.x21*m.x116 + 0.0001*m.x21*m.x117 + 0.0001*m.x21*m.x118 + 0.0001*m.x21*m.x119 + 0.0001*
m.x21*m.x120 + 0.0001*m.x21*m.x121 + 0.0001*m.x21*m.x122 + 0.0001*m.x21*m.x123 + 0.0001*m.x21*
m.x124 + 0.0001*m.x21*m.x125 + 0.0001*m.x21*m.x126 + 0.0001*m.x21*m.x127 + 0.0001*m.x21*m.x128 +
0.0001*m.x21*m.x129 + 0.0001*m.x21*m.x130 + 0.0001*m.x21*m.x131 + 0.0001*m.x21*m.x132 + 0.0001*
m.x21*m.x133 + 0.0001*m.x21*m.x134 + 0.0001*m.x21*m.x135 + 0.0001*m.x21*m.x136 + 0.0001*m.x21*
m.x137 + 3.52697733053469*m.x21*m.x138 + 0.0001*m.x21*m.x139 + 0.0001*m.x21*m.x140 + 0.0001*m.x21
*m.x141 + 0.0001*m.x21*m.x142 + 0.0001*m.x21*m.x143 + 0.0001*m.x21*m.x144 + 0.0001*m.x21*m.x145
+ 0.0001*m.x21*m.x146 + 0.0001*m.x21*m.x147 + 0.0001*m.x21*m.x148 + 0.0001*m.x21*m.x149 + 0.0001
*m.x21*m.x150 + 0.0001*m.x21*m.x151 + 0.0001*m.x21*m.x152 + 0.0001*m.x21*m.x153 + 0.0001*m.x21*
m.x154 + 0.0001*m.x21*m.x155 + 0.0001*m.x21*m.x156 + 0.0001*m.x21*m.x157 + 0.0001*m.x21*m.x158 +
0.0001*m.x21*m.x159 + 0.0001*m.x21*m.x160 + 0.0001*m.x21*m.x161 + 0.0001*m.x21*m.x162 + 0.0001*
m.x21*m.x163 + 0.0001*m.x21*m.x164 + 0.0001*m.x21*m.x165 + 0.0001*m.x21*m.x166 + 0.0001*m.x21*
m.x167 + 0.0001*m.x21*m.x168 + 0.0001*m.x21*m.x169 + 0.0001*m.x21*m.x170 + 0.0001*m.x21*m.x171 +
0.0001*m.x21*m.x172 + 0.0001*m.x21*m.x173 + 0.0001*m.x21*m.x174 + 0.0001*m.x21*m.x175 + 0.0001*
m.x21*m.x176 + 0.0001*m.x21*m.x177 + 0.0001*m.x21*m.x178 + 0.0001*m.x21*m.x179 + 0.0001*m.x21*
m.x180 + 0.0001*m.x21*m.x181 + 0.0001*m.x21*m.x182 + 0.0001*m.x21*m.x183 + 0.0001*m.x21*m.x184 +
0.0001*m.x21*m.x185 + 0.0001*m.x22*m.x1 + 0.0001*m.x22*m.x2 + 0.0001*m.x22*m.x3 + 0.0001*m.x22*
m.x4 + 0.0001*m.x22*m.x5 + 0.0001*m.x22*m.x6 + 0.0001*m.x22*m.x7 + 0.0001*m.x22*m.x8 + 0.0001*
m.x22*m.x9 + 6.8341836279463*m.x22*m.x10 + 0.0001*m.x22*m.x11 + 0.0001*m.x22*m.x12 + 0.0001*m.x22
*m.x13 + 0.0001*m.x22*m.x14 + 0.0001*m.x22*m.x15 + 0.0001*m.x22*m.x16 + 0.0001*m.x22*m.x17 +
0.0001*m.x22*m.x18 + 0.0001*m.x22*m.x19 + 0.0001*m.x22*m.x20 + 0.0001*m.x22*m.x21 +
5.63638011107397*m.x22**2 + 0.0001*m.x22*m.x23 + 0.0001*m.x22*m.x24 + 0.0001*m.x22*m.x25 + 0.0001
*m.x22*m.x26 + 0.0001*m.x22*m.x27 + 0.0001*m.x22*m.x28 + 0.0001*m.x22*m.x29 + 0.0001*m.x22*m.x30
+ 0.0001*m.x22*m.x31 + 0.0001*m.x22*m.x32 + 1.53606919766544*m.x22*m.x33 + 0.0001*m.x22*m.x34 +
0.0001*m.x22*m.x35 + 0.0001*m.x22*m.x36 + 0.0001*m.x22*m.x37 + 0.0001*m.x22*m.x38 + 0.0001*m.x22*
m.x39 + 0.0001*m.x22*m.x40 + 0.0001*m.x22*m.x41 + 0.0001*m.x22*m.x42 + 0.0001*m.x22*m.x43 +
0.0001*m.x22*m.x44 + 5.99722275920364*m.x22*m.x45 + 0.0001*m.x22*m.x46 + 0.0001*m.x22*m.x47 +
0.0001*m.x22*m.x48 + 0.0001*m.x22*m.x49 + 0.0001*m.x22*m.x50 + 0.0001*m.x22*m.x51 + 0.0001*m.x22*
m.x52 + 0.0001*m.x22*m.x53 + 0.0001*m.x22*m.x54 + 0.0001*m.x22*m.x55 + 0.0001*m.x22*m.x56 +
0.0001*m.x22*m.x57 + 0.0001*m.x22*m.x58 + 0.0001*m.x22*m.x59 + 0.0001*m.x22*m.x60 + 0.0001*m.x22*
m.x61 + 0.0001*m.x22*m.x62 + 0.0001*m.x22*m.x63 + 0.0001*m.x22*m.x64 + 0.0001*m.x22*m.x65 +
0.0001*m.x22*m.x66 + 0.0001*m.x22*m.x67 + 0.0001*m.x22*m.x68 + 0.0001*m.x22*m.x69 + 0.0001*m.x22*
m.x70 + 0.0001*m.x22*m.x71 + 0.0001*m.x22*m.x72 + 0.0001*m.x22*m.x73 + 0.0001*m.x22*m.x74 +
0.0001*m.x22*m.x75 + 0.0001*m.x22*m.x76 + 0.0001*m.x22*m.x77 + 0.0001*m.x22*m.x78 + 0.0001*m.x22*
m.x79 + 0.0001*m.x22*m.x80 + 0.0001*m.x22*m.x81 + 0.0001*m.x22*m.x82 + 0.0001*m.x22*m.x83 +
0.0001*m.x22*m.x84 + 0.0001*m.x22*m.x85 + 0.0001*m.x22*m.x86 + 0.0001*m.x22*m.x87 + 0.0001*m.x22*
m.x88 + 0.0001*m.x22*m.x89 + 0.0001*m.x22*m.x90 + 0.0001*m.x22*m.x91 + 0.0001*m.x22*m.x92 +
0.0001*m.x22*m.x93 + 0.0001*m.x22*m.x94 + 0.0001*m.x22*m.x95 + 0.0001*m.x22*m.x96 + 0.0001*m.x22*
m.x97 + 0.0001*m.x22*m.x98 + 0.0001*m.x22*m.x99 + 0.0001*m.x22*m.x100 + 0.0001*m.x22*m.x101 +
0.0001*m.x22*m.x102 + 0.0001*m.x22*m.x103 + 0.0001*m.x22*m.x104 + 0.0001*m.x22*m.x105 + 0.0001*
m.x22*m.x106 + 0.0001*m.x22*m.x107 + 0.0001*m.x22*m.x108 + 0.0001*m.x22*m.x109 + 0.0001*m.x22*
m.x110 + 0.0001*m.x22*m.x111 + 0.0001*m.x22*m.x112 + 0.0001*m.x22*m.x113 + 0.0001*m.x22*m.x114 +
0.0001*m.x22*m.x115 + 0.0001*m.x22*m.x116 + 0.0001*m.x22*m.x117 + 0.0001*m.x22*m.x118 + 0.0001*
m.x22*m.x119 + 0.0001*m.x22*m.x120 + 0.0001*m.x22*m.x121 + 0.0001*m.x22*m.x122 + 0.0001*m.x22*
m.x123 + 0.0001*m.x22*m.x124 + 0.0001*m.x22*m.x125 + 0.0001*m.x22*m.x126 + 0.0001*m.x22*m.x127 +
0.0001*m.x22*m.x128 + 0.0001*m.x22*m.x129 + 0.0001*m.x22*m.x130 + 0.0001*m.x22*m.x131 + 0.0001*
m.x22*m.x132 + 0.0001*m.x22*m.x133 + 0.0001*m.x22*m.x134 + 0.0001*m.x22*m.x135 + 0.0001*m.x22*
m.x136 + 0.0001*m.x22*m.x137 + 0.0001*m.x22*m.x138 + 3.33930736808*m.x22*m.x139 + 0.0001*m.x22*
m.x140 + 0.0001*m.x22*m.x141 + 0.0001*m.x22*m.x142 + 0.0001*m.x22*m.x143 + 0.0001*m.x22*m.x144 +
0.0001*m.x22*m.x145 + 0.0001*m.x22*m.x146 + 0.0001*m.x22*m.x147 + 0.0001*m.x22*m.x148 + 0.0001*
m.x22*m.x149 + 0.0001*m.x22*m.x150 + 0.0001*m.x22*m.x151 + 0.0001*m.x22*m.x152 + 0.0001*m.x22*
m.x153 + 0.0001*m.x22*m.x154 + 0.0001*m.x22*m.x155 + 0.0001*m.x22*m.x156 + 0.0001*m.x22*m.x157 +
0.0001*m.x22*m.x158 + 0.0001*m.x22*m.x159 + 0.0001*m.x22*m.x160 + 0.0001*m.x22*m.x161 + 0.0001*
m.x22*m.x162 + 0.0001*m.x22*m.x163 + 0.0001*m.x22*m.x164 + 0.0001*m.x22*m.x165 + 0.0001*m.x22*
m.x166 + 0.0001*m.x22*m.x167 + 0.0001*m.x22*m.x168 + 0.0001*m.x22*m.x169 + 0.0001*m.x22*m.x170 +
0.0001*m.x22*m.x171 + 0.0001*m.x22*m.x172 + 0.0001*m.x22*m.x173 + 0.0001*m.x22*m.x174 + 0.0001*
m.x22*m.x175 + 0.0001*m.x22*m.x176 + 0.0001*m.x22*m.x177 + 0.0001*m.x22*m.x178 + 0.0001*m.x22*
m.x179 + 0.0001*m.x22*m.x180 + 0.0001*m.x22*m.x181 + 0.0001*m.x22*m.x182 + 0.0001*m.x22*m.x183 +
0.0001*m.x22*m.x184 + 0.0001*m.x22*m.x185 + 0.0001*m.x23*m.x1 + 0.0001*m.x23*m.x2 + 0.0001*m.x23*
m.x3 + 0.0001*m.x23*m.x4 + 0.0001*m.x23*m.x5 + 0.0001*m.x23*m.x6 + 0.0001*m.x23*m.x7 + 0.0001*
m.x23*m.x8 + 0.0001*m.x23*m.x9 + 0.0001*m.x23*m.x10 + 6.75846262215549*m.x23*m.x11 + 0.0001*m.x23
*m.x12 + 0.0001*m.x23*m.x13 + 0.0001*m.x23*m.x14 + 0.0001*m.x23*m.x15 + 0.0001*m.x23*m.x16 +
0.0001*m.x23*m.x17 + 0.0001*m.x23*m.x18 + 0.0001*m.x23*m.x19 + 0.0001*m.x23*m.x20 + 0.0001*m.x23*
m.x21 + 0.0001*m.x23*m.x22 + 5.45208366917577*m.x23**2 + 0.0001*m.x23*m.x24 + 0.0001*m.x23*m.x25
+ 0.0001*m.x23*m.x26 + 0.0001*m.x23*m.x27 + 0.0001*m.x23*m.x28 + 0.0001*m.x23*m.x29 + 0.0001*
m.x23*m.x30 + 0.0001*m.x23*m.x31 + 0.0001*m.x23*m.x32 + 0.0001*m.x23*m.x33 + 1.48565600121365*
m.x23*m.x34 + 0.0001*m.x23*m.x35 + 0.0001*m.x23*m.x36 + 0.0001*m.x23*m.x37 + 0.0001*m.x23*m.x38
+ 0.0001*m.x23*m.x39 + 0.0001*m.x23*m.x40 + 0.0001*m.x23*m.x41 + 0.0001*m.x23*m.x42 + 0.0001*
m.x23*m.x43 + 0.0001*m.x23*m.x44 + 0.0001*m.x23*m.x45 + 5.80112739765899*m.x23*m.x46 + 0.0001*
m.x23*m.x47 + 0.0001*m.x23*m.x48 + 0.0001*m.x23*m.x49 + 0.0001*m.x23*m.x50 + 0.0001*m.x23*m.x51
+ 0.0001*m.x23*m.x52 + 0.0001*m.x23*m.x53 + 0.0001*m.x23*m.x54 + 0.0001*m.x23*m.x55 + 0.0001*
m.x23*m.x56 + 0.0001*m.x23*m.x57 + 0.0001*m.x23*m.x58 + 0.0001*m.x23*m.x59 + 0.0001*m.x23*m.x60
+ 0.0001*m.x23*m.x61 + 0.0001*m.x23*m.x62 + 0.0001*m.x23*m.x63 + 0.0001*m.x23*m.x64 + 0.0001*
m.x23*m.x65 + 0.0001*m.x23*m.x66 + 0.0001*m.x23*m.x67 + 0.0001*m.x23*m.x68 + 0.0001*m.x23*m.x69
+ 0.0001*m.x23*m.x70 + 0.0001*m.x23*m.x71 + 0.0001*m.x23*m.x72 + 0.0001*m.x23*m.x73 + 0.0001*
m.x23*m.x74 + 0.0001*m.x23*m.x75 + 0.0001*m.x23*m.x76 + 0.0001*m.x23*m.x77 + 0.0001*m.x23*m.x78
+ 0.0001*m.x23*m.x79 + 0.0001*m.x23*m.x80 + 0.0001*m.x23*m.x81 + 0.0001*m.x23*m.x82 + 0.0001*
m.x23*m.x83 + 0.0001*m.x23*m.x84 + 0.0001*m.x23*m.x85 + 0.0001*m.x23*m.x86 + 0.0001*m.x23*m.x87
+ 0.0001*m.x23*m.x88 + 0.0001*m.x23*m.x89 + 0.0001*m.x23*m.x90 + 0.0001*m.x23*m.x91 + 0.0001*
m.x23*m.x92 + 0.0001*m.x23*m.x93 + 0.0001*m.x23*m.x94 + 0.0001*m.x23*m.x95 + 0.0001*m.x23*m.x96
+ 0.0001*m.x23*m.x97 + 0.0001*m.x23*m.x98 + 0.0001*m.x23*m.x99 + 0.0001*m.x23*m.x100 + 0.0001*
m.x23*m.x101 + 0.0001*m.x23*m.x102 + 0.0001*m.x23*m.x103 + 0.0001*m.x23*m.x104 + 0.0001*m.x23*
m.x105 + 0.0001*m.x23*m.x106 + 0.0001*m.x23*m.x107 + 0.0001*m.x23*m.x108 + 0.0001*m.x23*m.x109 +
0.0001*m.x23*m.x110 + 0.0001*m.x23*m.x111 + 0.0001*m.x23*m.x112 + 0.0001*m.x23*m.x113 + 0.0001*
m.x23*m.x114 + 0.0001*m.x23*m.x115 + 0.0001*m.x23*m.x116 + 0.0001*m.x23*m.x117 + 0.0001*m.x23*
m.x118 + 0.0001*m.x23*m.x119 + 0.0001*m.x23*m.x120 + 0.0001*m.x23*m.x121 + 0.0001*m.x23*m.x122 +
0.0001*m.x23*m.x123 + 0.0001*m.x23*m.x124 + 0.0001*m.x23*m.x125 + 0.0001*m.x23*m.x126 + 0.0001*
m.x23*m.x127 + 0.0001*m.x23*m.x128 + 0.0001*m.x23*m.x129 + 0.0001*m.x23*m.x130 + 0.0001*m.x23*
m.x131 + 0.0001*m.x23*m.x132 + 0.0001*m.x23*m.x133 + 0.0001*m.x23*m.x134 + 0.0001*m.x23*m.x135 +
0.0001*m.x23*m.x136 + 0.0001*m.x23*m.x137 + 0.0001*m.x23*m.x138 + 0.0001*m.x23*m.x139 +
3.22970873986782*m.x23*m.x140 + 0.0001*m.x23*m.x141 + 0.0001*m.x23*m.x142 + 0.0001*m.x23*m.x143
+ 0.0001*m.x23*m.x144 + 0.0001*m.x23*m.x145 + 0.0001*m.x23*m.x146 + 0.0001*m.x23*m.x147 + 0.0001
*m.x23*m.x148 + 0.0001*m.x23*m.x149 + 0.0001*m.x23*m.x150 + 0.0001*m.x23*m.x151 + 0.0001*m.x23*
m.x152 + 0.0001*m.x23*m.x153 + 0.0001*m.x23*m.x154 + 0.0001*m.x23*m.x155 + 0.0001*m.x23*m.x156 +
0.0001*m.x23*m.x157 + 0.0001*m.x23*m.x158 + 0.0001*m.x23*m.x159 + 0.0001*m.x23*m.x160 + 0.0001*
m.x23*m.x161 + 0.0001*m.x23*m.x162 + 0.0001*m.x23*m.x163 + 0.0001*m.x23*m.x164 + 0.0001*m.x23*
m.x165 + 0.0001*m.x23*m.x166 + 0.0001*m.x23*m.x167 + 0.0001*m.x23*m.x168 + 0.0001*m.x23*m.x169 +
0.0001*m.x23*m.x170 + 0.0001*m.x23*m.x171 + 0.0001*m.x23*m.x172 + 0.0001*m.x23*m.x173 + 0.0001*
m.x23*m.x174 + 0.0001*m.x23*m.x175 + 0.0001*m.x23*m.x176 + 0.0001*m.x23*m.x177 + 0.0001*m.x23*
m.x178 + 0.0001*m.x23*m.x179 + 0.0001*m.x23*m.x180 + 0.0001*m.x23*m.x181 + 0.0001*m.x23*m.x182 +
0.0001*m.x23*m.x183 + 0.0001*m.x23*m.x184 + 0.0001*m.x23*m.x185 + 0.0001*m.x24*m.x1 + 0.0001*
m.x24*m.x2 + 0.0001*m.x24*m.x3 + 0.0001*m.x24*m.x4 + 0.0001*m.x24*m.x5 + 0.0001*m.x24*m.x6 +
0.0001*m.x24*m.x7 + 0.0001*m.x24*m.x8 + 0.0001*m.x24*m.x9 + 0.0001*m.x24*m.x10 + 0.0001*m.x24*
m.x11 + 6.75846262215549*m.x24*m.x12 + 0.0001*m.x24*m.x13 + 0.0001*m.x24*m.x14 + 0.0001*m.x24*
m.x15 + 0.0001*m.x24*m.x16 + 0.0001*m.x24*m.x17 + 0.0001*m.x24*m.x18 + 0.0001*m.x24*m.x19 +
0.0001*m.x24*m.x20 + 0.0001*m.x24*m.x21 + 0.0001*m.x24*m.x22 + 0.0001*m.x24*m.x23 +
5.45208366917577*m.x24**2 + 0.0001*m.x24*m.x25 + 0.0001*m.x24*m.x26 + 0.0001*m.x24*m.x27 + 0.0001
*m.x24*m.x28 + 0.0001*m.x24*m.x29 + 0.0001*m.x24*m.x30 + 0.0001*m.x24*m.x31 + 0.0001*m.x24*m.x32
+ 0.0001*m.x24*m.x33 + 0.0001*m.x24*m.x34 + 1.49556027977136*m.x24*m.x35 + 0.0001*m.x24*m.x36 +
0.0001*m.x24*m.x37 + 0.0001*m.x24*m.x38 + 0.0001*m.x24*m.x39 + 0.0001*m.x24*m.x40 + 0.0001*m.x24*
m.x41 + 0.0001*m.x24*m.x42 + 0.0001*m.x24*m.x43 + 0.0001*m.x24*m.x44 + 0.0001*m.x24*m.x45 +
0.0001*m.x24*m.x46 + 5.80112739765899*m.x24*m.x47 + 0.0001*m.x24*m.x48 + 0.0001*m.x24*m.x49 +
0.0001*m.x24*m.x50 + 0.0001*m.x24*m.x51 + 0.0001*m.x24*m.x52 + 0.0001*m.x24*m.x53 + 0.0001*m.x24*
m.x54 + 0.0001*m.x24*m.x55 + 0.0001*m.x24*m.x56 + 0.0001*m.x24*m.x57 + 0.0001*m.x24*m.x58 +
0.0001*m.x24*m.x59 + 0.0001*m.x24*m.x60 + 0.0001*m.x24*m.x61 + 0.0001*m.x24*m.x62 + 0.0001*m.x24*
m.x63 + 0.0001*m.x24*m.x64 + 0.0001*m.x24*m.x65 + 0.0001*m.x24*m.x66 + 0.0001*m.x24*m.x67 +
0.0001*m.x24*m.x68 + 0.0001*m.x24*m.x69 + 0.0001*m.x24*m.x70 + 0.0001*m.x24*m.x71 + 0.0001*m.x24*
m.x72 + 0.0001*m.x24*m.x73 + 0.0001*m.x24*m.x74 + 0.0001*m.x24*m.x75 + 0.0001*m.x24*m.x76 +
0.0001*m.x24*m.x77 + 0.0001*m.x24*m.x78 + 0.0001*m.x24*m.x79 + 0.0001*m.x24*m.x80 + 0.0001*m.x24*
m.x81 + 0.0001*m.x24*m.x82 + 0.0001*m.x24*m.x83 + 0.0001*m.x24*m.x84 + 0.0001*m.x24*m.x85 +
0.0001*m.x24*m.x86 + 0.0001*m.x24*m.x87 + 0.0001*m.x24*m.x88 + 0.0001*m.x24*m.x89 + 0.0001*m.x24*
m.x90 + 0.0001*m.x24*m.x91 + 0.0001*m.x24*m.x92 + 0.0001*m.x24*m.x93 + 0.0001*m.x24*m.x94 +
0.0001*m.x24*m.x95 + 0.0001*m.x24*m.x96 + 0.0001*m.x24*m.x97 + 0.0001*m.x24*m.x98 + 0.0001*m.x24*
m.x99 + 0.0001*m.x24*m.x100 + 0.0001*m.x24*m.x101 + 0.0001*m.x24*m.x102 + 0.0001*m.x24*m.x103 +
0.0001*m.x24*m.x104 + 0.0001*m.x24*m.x105 + 0.0001*m.x24*m.x106 + 0.0001*m.x24*m.x107 + 0.0001*
m.x24*m.x108 + 0.0001*m.x24*m.x109 + 0.0001*m.x24*m.x110 + 0.0001*m.x24*m.x111 + 0.0001*m.x24*
m.x112 + 0.0001*m.x24*m.x113 + 0.0001*m.x24*m.x114 + 0.0001*m.x24*m.x115 + 0.0001*m.x24*m.x116 +
0.0001*m.x24*m.x117 + 0.0001*m.x24*m.x118 + 0.0001*m.x24*m.x119 + 0.0001*m.x24*m.x120 + 0.0001*
m.x24*m.x121 + 0.0001*m.x24*m.x122 + 0.0001*m.x24*m.x123 + 0.0001*m.x24*m.x124 + 0.0001*m.x24*
m.x125 + 0.0001*m.x24*m.x126 + 0.0001*m.x24*m.x127 + 0.0001*m.x24*m.x128 + 0.0001*m.x24*m.x129 +
0.0001*m.x24*m.x130 + 0.0001*m.x24*m.x131 + 0.0001*m.x24*m.x132 + 0.0001*m.x24*m.x133 + 0.0001*
m.x24*m.x134 + 0.0001*m.x24*m.x135 + 0.0001*m.x24*m.x136 + 0.0001*m.x24*m.x137 + 0.0001*m.x24*
m.x138 + 0.0001*m.x24*m.x139 + 0.0001*m.x24*m.x140 + 3.2206943783493*m.x24*m.x141 + 0.0001*m.x24*
m.x142 + 0.0001*m.x24*m.x143 + 0.0001*m.x24*m.x144 + 0.0001*m.x24*m.x145 + 0.0001*m.x24*m.x146 +
0.0001*m.x24*m.x147 + 0.0001*m.x24*m.x148 + 0.0001*m.x24*m.x149 + 0.0001*m.x24*m.x150 + 0.0001*
m.x24*m.x151 + 0.0001*m.x24*m.x152 + 0.0001*m.x24*m.x153 + 0.0001*m.x24*m.x154 + 0.0001*m.x24*
m.x155 + 0.0001*m.x24*m.x156 + 0.0001*m.x24*m.x157 + 0.0001*m.x24*m.x158 + 0.0001*m.x24*m.x159 +
0.0001*m.x24*m.x160 + 0.0001*m.x24*m.x161 + 0.0001*m.x24*m.x162 + 0.0001*m.x24*m.x163 + 0.0001*
m.x24*m.x164 + 0.0001*m.x24*m.x165 + 0.0001*m.x24*m.x166 + 0.0001*m.x24*m.x167 + 0.0001*m.x24*
m.x168 + 0.0001*m.x24*m.x169 + 0.0001*m.x24*m.x170 + 0.0001*m.x24*m.x171 + 0.0001*m.x24*m.x172 +
0.0001*m.x24*m.x173 + 0.0001*m.x24*m.x174 + 0.0001*m.x24*m.x175 + 0.0001*m.x24*m.x176 + 0.0001*
m.x24*m.x177 + 0.0001*m.x24*m.x178 + 0.0001*m.x24*m.x179 + 0.0001*m.x24*m.x180 + 0.0001*m.x24*
m.x181 + 0.0001*m.x24*m.x182 + 0.0001*m.x24*m.x183 + 0.0001*m.x24*m.x184 + 0.0001*m.x24*m.x185 +
0.0001*m.x25*m.x1 + 1.78057905770917*m.x25*m.x2 + 0.0001*m.x25*m.x3 + 0.0001*m.x25*m.x4 + 0.0001*
m.x25*m.x5 + 0.0001*m.x25*m.x6 + 0.0001*m.x25*m.x7 + 0.0001*m.x25*m.x8 + 0.0001*m.x25*m.x9 +
0.0001*m.x25*m.x10 + 0.0001*m.x25*m.x11 + 0.0001*m.x25*m.x12 + 0.0001*m.x25*m.x13 +
1.46344441732589*m.x25*m.x14 + 0.0001*m.x25*m.x15 + 0.0001*m.x25*m.x16 + 0.0001*m.x25*m.x17 +
0.0001*m.x25*m.x18 + 0.0001*m.x25*m.x19 + 0.0001*m.x25*m.x20 + 0.0001*m.x25*m.x21 + 0.0001*m.x25*
m.x22 + 0.0001*m.x25*m.x23 + 0.0001*m.x25*m.x24 + 3.14902576703231*m.x25**2 + 0.0001*m.x25*m.x26
+ 0.0001*m.x25*m.x27 + 0.0001*m.x25*m.x28 + 0.0001*m.x25*m.x29 + 0.0001*m.x25*m.x30 + 0.0001*
m.x25*m.x31 + 0.0001*m.x25*m.x32 + 0.0001*m.x25*m.x33 + 0.0001*m.x25*m.x34 + 0.338264012825278*
m.x25*m.x35 + 0.0001*m.x25*m.x36 + 1.38335533133029*m.x25*m.x37 + 0.0001*m.x25*m.x38 + 0.0001*
m.x25*m.x39 + 0.0001*m.x25*m.x40 + 0.0001*m.x25*m.x41 + 0.0001*m.x25*m.x42 + 0.0001*m.x25*m.x43
+ 0.0001*m.x25*m.x44 + 0.0001*m.x25*m.x45 + 0.0001*m.x25*m.x46 + 0.0001*m.x25*m.x47 +
1.56311713881613*m.x25*m.x48 + 0.0001*m.x25*m.x49 + 0.0001*m.x25*m.x50 + 0.0001*m.x25*m.x51 +
0.0001*m.x25*m.x52 + 0.0001*m.x25*m.x53 + 0.0001*m.x25*m.x54 + 0.0001*m.x25*m.x55 + 0.0001*m.x25*
m.x56 + 0.211484509361612*m.x25*m.x57 + 0.0001*m.x25*m.x58 + 0.0001*m.x25*m.x59 + 0.0001*m.x25*
m.x60 + 0.0001*m.x25*m.x61 + 0.0001*m.x25*m.x62 + 0.0001*m.x25*m.x63 + 0.0001*m.x25*m.x64 +
0.0001*m.x25*m.x65 + 0.0001*m.x25*m.x66 + 0.0001*m.x25*m.x67 + 0.0001*m.x25*m.x68 + 0.0001*m.x25*
m.x69 + 0.0001*m.x25*m.x70 + 0.0001*m.x25*m.x71 + 0.0001*m.x25*m.x72 + 0.0001*m.x25*m.x73 +
0.0001*m.x25*m.x74 + 0.0001*m.x25*m.x75 + 0.0001*m.x25*m.x76 + 0.0001*m.x25*m.x77 + 0.0001*m.x25*
m.x78 + 0.0001*m.x25*m.x79 + 0.0001*m.x25*m.x80 + 0.0001*m.x25*m.x81 + 0.0001*m.x25*m.x82 +
0.0001*m.x25*m.x83 + 5.01518901008505*m.x25*m.x84 + 0.0001*m.x25*m.x85 + 0.0001*m.x25*m.x86 +
0.0001*m.x25*m.x87 + 0.0001*m.x25*m.x88 + 0.0001*m.x25*m.x89 + 0.0001*m.x25*m.x90 + 0.0001*m.x25*
m.x91 + 0.0001*m.x25*m.x92 + 0.0001*m.x25*m.x93 + 0.638156568960432*m.x25*m.x94 + 0.0001*m.x25*
m.x95 + 0.0001*m.x25*m.x96 + 0.0001*m.x25*m.x97 + 0.0001*m.x25*m.x98 + 0.0001*m.x25*m.x99 +
0.0001*m.x25*m.x100 + 0.0001*m.x25*m.x101 + 0.0001*m.x25*m.x102 + 0.0001*m.x25*m.x103 + 0.0001*
m.x25*m.x104 + 0.0001*m.x25*m.x105 + 0.0001*m.x25*m.x106 + 0.0001*m.x25*m.x107 + 0.0001*m.x25*
m.x108 + 0.0001*m.x25*m.x109 + 0.0001*m.x25*m.x110 + 0.0001*m.x25*m.x111 + 0.0001*m.x25*m.x112 +
0.0001*m.x25*m.x113 + 0.0001*m.x25*m.x114 + 0.0001*m.x25*m.x115 + 0.0001*m.x25*m.x116 + 0.0001*
m.x25*m.x117 + 0.0001*m.x25*m.x118 + 0.0001*m.x25*m.x119 + 0.0001*m.x25*m.x120 + 0.0001*m.x25*
m.x121 + 0.0001*m.x25*m.x122 + 0.0001*m.x25*m.x123 + 0.0001*m.x25*m.x124 + 0.0001*m.x25*m.x125 +
0.0001*m.x25*m.x126 + 0.0001*m.x25*m.x127 + 0.0001*m.x25*m.x128 + 0.0001*m.x25*m.x129 + 0.0001*
m.x25*m.x130 + 0.846153145046179*m.x25*m.x131 + 0.0001*m.x25*m.x132 + 0.0001*m.x25*m.x133 +
0.0001*m.x25*m.x134 + 0.0001*m.x25*m.x135 + 0.0001*m.x25*m.x136 + 0.0001*m.x25*m.x137 + 0.0001*
m.x25*m.x138 + 0.0001*m.x25*m.x139 + 0.0001*m.x25*m.x140 + 0.0001*m.x25*m.x141 + 0.0001*m.x25*
m.x142 + 0.0001*m.x25*m.x143 + 0.0001*m.x25*m.x144 + 0.0001*m.x25*m.x145 + 0.0001*m.x25*m.x146 +
0.0001*m.x25*m.x147 + 0.0001*m.x25*m.x148 + 0.0001*m.x25*m.x149 + 0.0001*m.x25*m.x150 + 0.0001*
m.x25*m.x151 + 0.0001*m.x25*m.x152 + 0.0001*m.x25*m.x153 + 0.0001*m.x25*m.x154 + 0.0001*m.x25*
m.x155 + 0.0001*m.x25*m.x156 + 0.0001*m.x25*m.x157 + 0.0001*m.x25*m.x158 + 0.0001*m.x25*m.x159 +
0.0001*m.x25*m.x160 + 0.0001*m.x25*m.x161 + 0.0001*m.x25*m.x162 + 0.0001*m.x25*m.x163 + 0.0001*
m.x25*m.x164 + 0.0001*m.x25*m.x165 + 0.0001*m.x25*m.x166 + 0.0001*m.x25*m.x167 + 0.0001*m.x25*
m.x168 + 0.0001*m.x25*m.x169 + 0.0001*m.x25*m.x170 + 0.0001*m.x25*m.x171 + 0.0001*m.x25*m.x172 +
0.0001*m.x25*m.x173 + 0.0001*m.x25*m.x174 + 0.0001*m.x25*m.x175 + 0.0001*m.x25*m.x176 + 0.0001*
m.x25*m.x177 + 0.0001*m.x25*m.x178 + 0.0001*m.x25*m.x179 + 0.0001*m.x25*m.x180 + 0.0001*m.x25*
m.x181 + 0.0001*m.x25*m.x182 + 0.0001*m.x25*m.x183 + 0.0001*m.x25*m.x184 + 0.0001*m.x25*m.x185 +
0.0001*m.x26*m.x1 + 0.0001*m.x26*m.x2 + 1.75275431443054*m.x26*m.x3 + 0.0001*m.x26*m.x4 + 0.0001*
m.x26*m.x5 + 0.0001*m.x26*m.x6 + 0.0001*m.x26*m.x7 + 0.0001*m.x26*m.x8 + 0.0001*m.x26*m.x9 +
0.0001*m.x26*m.x10 + 0.0001*m.x26*m.x11 + 0.0001*m.x26*m.x12 + 0.0001*m.x26*m.x13 + 0.0001*m.x26*
m.x14 + 1.44057575028709*m.x26*m.x15 + 0.0001*m.x26*m.x16 + 0.0001*m.x26*m.x17 + 0.0001*m.x26*
m.x18 + 0.0001*m.x26*m.x19 + 0.0001*m.x26*m.x20 + 0.0001*m.x26*m.x21 + 0.0001*m.x26*m.x22 +
0.0001*m.x26*m.x23 + 0.0001*m.x26*m.x24 + 0.0001*m.x26*m.x25 + 3.06770027127532*m.x26**2 + 0.0001
*m.x26*m.x27 + 0.0001*m.x26*m.x28 + 0.0001*m.x26*m.x29 + 0.0001*m.x26*m.x30 + 0.0001*m.x26*m.x31
+ 0.0001*m.x26*m.x32 + 0.0001*m.x26*m.x33 + 0.0001*m.x26*m.x34 + 0.0001*m.x26*m.x35 + 0.0001*
m.x26*m.x36 + 0.0001*m.x26*m.x37 + 1.36173827028348*m.x26*m.x38 + 0.0001*m.x26*m.x39 + 0.0001*
m.x26*m.x40 + 0.0001*m.x26*m.x41 + 0.0001*m.x26*m.x42 + 0.0001*m.x26*m.x43 + 0.0001*m.x26*m.x44
+ 0.0001*m.x26*m.x45 + 0.0001*m.x26*m.x46 + 0.0001*m.x26*m.x47 + 0.0001*m.x26*m.x48 +
1.79090332870939*m.x26*m.x49 + 0.0001*m.x26*m.x50 + 0.0001*m.x26*m.x51 + 0.0001*m.x26*m.x52 +
0.0001*m.x26*m.x53 + 0.0001*m.x26*m.x54 + 0.0001*m.x26*m.x55 + 0.0001*m.x26*m.x56 + 0.0001*m.x26*
m.x57 + 0.221547820101383*m.x26*m.x58 + 0.0001*m.x26*m.x59 + 0.0001*m.x26*m.x60 + 0.0001*m.x26*
m.x61 + 0.0001*m.x26*m.x62 + 0.0001*m.x26*m.x63 + 0.0001*m.x26*m.x64 + 0.0001*m.x26*m.x65 +
0.0001*m.x26*m.x66 + 0.0001*m.x26*m.x67 + 0.0001*m.x26*m.x68 + 0.0001*m.x26*m.x69 + 0.0001*m.x26*
m.x70 + 0.0001*m.x26*m.x71 + 0.0001*m.x26*m.x72 + 0.0001*m.x26*m.x73 + 0.0001*m.x26*m.x74 +
0.0001*m.x26*m.x75 + 0.0001*m.x26*m.x76 + 0.0001*m.x26*m.x77 + 0.0001*m.x26*m.x78 + 0.0001*m.x26*
m.x79 + 0.0001*m.x26*m.x80 + 0.0001*m.x26*m.x81 + 0.0001*m.x26*m.x82 + 0.0001*m.x26*m.x83 +
0.0001*m.x26*m.x84 + 4.94950665205728*m.x26*m.x85 + 0.0001*m.x26*m.x86 + 0.0001*m.x26*m.x87 +
0.0001*m.x26*m.x88 + 0.0001*m.x26*m.x89 + 0.0001*m.x26*m.x90 + 0.0001*m.x26*m.x91 + 0.0001*m.x26*
m.x92 + 0.0001*m.x26*m.x93 + 0.0001*m.x26*m.x94 + 0.620513780689159*m.x26*m.x95 + 0.0001*m.x26*
m.x96 + 0.0001*m.x26*m.x97 + 0.0001*m.x26*m.x98 + 0.0001*m.x26*m.x99 + 0.0001*m.x26*m.x100 +
0.0001*m.x26*m.x101 + 0.0001*m.x26*m.x102 + 0.0001*m.x26*m.x103 + 0.0001*m.x26*m.x104 + 0.0001*
m.x26*m.x105 + 0.0001*m.x26*m.x106 + 0.0001*m.x26*m.x107 + 0.0001*m.x26*m.x108 + 0.0001*m.x26*
m.x109 + 0.0001*m.x26*m.x110 + 0.0001*m.x26*m.x111 + 0.0001*m.x26*m.x112 + 0.0001*m.x26*m.x113 +
0.0001*m.x26*m.x114 + 0.0001*m.x26*m.x115 + 0.0001*m.x26*m.x116 + 0.0001*m.x26*m.x117 + 0.0001*
m.x26*m.x118 + 0.0001*m.x26*m.x119 + 0.0001*m.x26*m.x120 + 0.0001*m.x26*m.x121 + 0.0001*m.x26*
m.x122 + 0.0001*m.x26*m.x123 + 0.0001*m.x26*m.x124 + 0.0001*m.x26*m.x125 + 0.0001*m.x26*m.x126 +
0.0001*m.x26*m.x127 + 0.0001*m.x26*m.x128 + 0.0001*m.x26*m.x129 + 0.0001*m.x26*m.x130 + 0.0001*
m.x26*m.x131 + 0.83639696474523*m.x26*m.x132 + 0.0001*m.x26*m.x133 + 0.0001*m.x26*m.x134 + 0.0001
*m.x26*m.x135 + 0.0001*m.x26*m.x136 + 0.0001*m.x26*m.x137 + 0.0001*m.x26*m.x138 + 0.0001*m.x26*
m.x139 + 0.0001*m.x26*m.x140 + 0.0001*m.x26*m.x141 + 0.0001*m.x26*m.x142 + 0.0001*m.x26*m.x143 +
0.0001*m.x26*m.x144 + 0.0001*m.x26*m.x145 + 0.0001*m.x26*m.x146 + 0.0001*m.x26*m.x147 + 0.0001*
m.x26*m.x148 + 0.0001*m.x26*m.x149 + 0.0001*m.x26*m.x150 + 0.0001*m.x26*m.x151 + 0.0001*m.x26*
m.x152 + 0.0001*m.x26*m.x153 + 0.0001*m.x26*m.x154 + 0.0001*m.x26*m.x155 + 0.0001*m.x26*m.x156 +
0.0001*m.x26*m.x157 + 0.0001*m.x26*m.x158 + 0.0001*m.x26*m.x159 + 0.0001*m.x26*m.x160 + 0.0001*
m.x26*m.x161 + 0.0001*m.x26*m.x162 + 0.0001*m.x26*m.x163 + 0.0001*m.x26*m.x164 + 0.0001*m.x26*
m.x165 + 0.0001*m.x26*m.x166 + 0.0001*m.x26*m.x167 + 0.0001*m.x26*m.x168 + 0.0001*m.x26*m.x169 +
0.0001*m.x26*m.x170 + 0.0001*m.x26*m.x171 + 0.0001*m.x26*m.x172 + 0.0001*m.x26*m.x173 + 0.0001*
m.x26*m.x174 + 0.0001*m.x26*m.x175 + 0.0001*m.x26*m.x176 + 0.0001*m.x26*m.x177 + 0.0001*m.x26*
m.x178 + 0.0001*m.x26*m.x179 + 0.0001*m.x26*m.x180 + 0.0001*m.x26*m.x181 + 0.0001*m.x26*m.x182 +
0.0001*m.x26*m.x183 + 0.0001*m.x26*m.x184 + 0.0001*m.x26*m.x185 + 0.0001*m.x27*m.x1 + 0.0001*
m.x27*m.x2 + 0.0001*m.x27*m.x3 + 1.75563715981236*m.x27*m.x4 + 0.0001*m.x27*m.x5 + 0.0001*m.x27*
m.x6 + 0.0001*m.x27*m.x7 + 0.0001*m.x27*m.x8 + 0.0001*m.x27*m.x9 + 0.0001*m.x27*m.x10 + 0.0001*
m.x27*m.x11 + 0.0001*m.x27*m.x12 + 0.0001*m.x27*m.x13 + 0.0001*m.x27*m.x14 + 0.0001*m.x27*m.x15
+ 1.43443424552376*m.x27*m.x16 + 0.0001*m.x27*m.x17 + 0.0001*m.x27*m.x18 + 0.0001*m.x27*m.x19 +
0.0001*m.x27*m.x20 + 0.0001*m.x27*m.x21 + 0.0001*m.x27*m.x22 + 0.0001*m.x27*m.x23 + 0.0001*m.x27*
m.x24 + 0.0001*m.x27*m.x25 + 0.0001*m.x27*m.x26 + 2.97984850007621*m.x27**2 + 0.0001*m.x27*m.x28
+ 0.0001*m.x27*m.x29 + 0.0001*m.x27*m.x30 + 0.0001*m.x27*m.x31 + 0.0001*m.x27*m.x32 + 0.0001*
m.x27*m.x33 + 0.0001*m.x27*m.x34 + 0.0001*m.x27*m.x35 + 0.0001*m.x27*m.x36 + 0.0001*m.x27*m.x37
+ 0.0001*m.x27*m.x38 + 1.41707980140673*m.x27*m.x39 + 0.0001*m.x27*m.x40 + 0.0001*m.x27*m.x41 +
0.0001*m.x27*m.x42 + 0.0001*m.x27*m.x43 + 0.0001*m.x27*m.x44 + 0.0001*m.x27*m.x45 + 0.0001*m.x27*
m.x46 + 0.0001*m.x27*m.x47 + 0.0001*m.x27*m.x48 + 0.0001*m.x27*m.x49 + 1.76587825146747*m.x27*
m.x50 + 0.0001*m.x27*m.x51 + 0.0001*m.x27*m.x52 + 0.0001*m.x27*m.x53 + 0.0001*m.x27*m.x54 +
0.0001*m.x27*m.x55 + 0.0001*m.x27*m.x56 + 0.0001*m.x27*m.x57 + 0.0001*m.x27*m.x58 + 0.0001*m.x27*
m.x59 + 0.0001*m.x27*m.x60 + 0.0001*m.x27*m.x61 + 0.0001*m.x27*m.x62 + 0.0001*m.x27*m.x63 +
0.0001*m.x27*m.x64 + 0.0001*m.x27*m.x65 + 0.0001*m.x27*m.x66 + 0.0001*m.x27*m.x67 + 0.0001*m.x27*
m.x68 + 0.0001*m.x27*m.x69 + 0.0001*m.x27*m.x70 + 0.0001*m.x27*m.x71 + 0.0001*m.x27*m.x72 +
0.0001*m.x27*m.x73 + 0.0001*m.x27*m.x74 + 0.0001*m.x27*m.x75 + 0.0001*m.x27*m.x76 + 0.0001*m.x27*
m.x77 + 0.0001*m.x27*m.x78 + 0.0001*m.x27*m.x79 + 0.0001*m.x27*m.x80 + 0.0001*m.x27*m.x81 +
0.0001*m.x27*m.x82 + 0.0001*m.x27*m.x83 + 0.0001*m.x27*m.x84 + 0.0001*m.x27*m.x85 +
4.9283503175782*m.x27*m.x86 + 0.0001*m.x27*m.x87 + 0.0001*m.x27*m.x88 + 0.0001*m.x27*m.x89 +
0.0001*m.x27*m.x90 + 0.0001*m.x27*m.x91 + 0.0001*m.x27*m.x92 + 0.0001*m.x27*m.x93 + 0.0001*m.x27*
m.x94 + 0.0001*m.x27*m.x95 + 0.624057893929279*m.x27*m.x96 + 0.0001*m.x27*m.x97 + 0.0001*m.x27*
m.x98 + 0.0001*m.x27*m.x99 + 0.0001*m.x27*m.x100 + 0.0001*m.x27*m.x101 + 0.0001*m.x27*m.x102 +
0.0001*m.x27*m.x103 + 0.0001*m.x27*m.x104 + 0.0001*m.x27*m.x105 + 0.0001*m.x27*m.x106 + 0.0001*
m.x27*m.x107 + 0.0001*m.x27*m.x108 + 0.0001*m.x27*m.x109 + 0.0001*m.x27*m.x110 + 0.0001*m.x27*
m.x111 + 0.0001*m.x27*m.x112 + 0.0001*m.x27*m.x113 + 0.0001*m.x27*m.x114 + 0.0001*m.x27*m.x115 +
0.0001*m.x27*m.x116 + 0.0001*m.x27*m.x117 + 0.0001*m.x27*m.x118 + 0.0001*m.x27*m.x119 + 0.0001*
m.x27*m.x120 + 0.0001*m.x27*m.x121 + 0.0001*m.x27*m.x122 + 0.0001*m.x27*m.x123 + 0.0001*m.x27*
m.x124 + 0.0001*m.x27*m.x125 + 0.0001*m.x27*m.x126 + 0.0001*m.x27*m.x127 + 0.0001*m.x27*m.x128 +
0.0001*m.x27*m.x129 + 0.0001*m.x27*m.x130 + 0.0001*m.x27*m.x131 + 0.0001*m.x27*m.x132 +
0.830775905057381*m.x27*m.x133 + 0.0001*m.x27*m.x134 + 0.0001*m.x27*m.x135 + 0.0001*m.x27*m.x136
+ 0.0001*m.x27*m.x137 + 0.0001*m.x27*m.x138 + 0.0001*m.x27*m.x139 + 0.0001*m.x27*m.x140 + 0.0001
*m.x27*m.x141 + 0.0001*m.x27*m.x142 + 0.0001*m.x27*m.x143 + 0.0001*m.x27*m.x144 + 0.0001*m.x27*
m.x145 + 0.0001*m.x27*m.x146 + 0.0001*m.x27*m.x147 + 0.0001*m.x27*m.x148 + 0.0001*m.x27*m.x149 +
0.0001*m.x27*m.x150 + 0.0001*m.x27*m.x151 + 0.0001*m.x27*m.x152 + 0.0001*m.x27*m.x153 + 0.0001*
m.x27*m.x154 + 0.0001*m.x27*m.x155 + 0.0001*m.x27*m.x156 + 0.0001*m.x27*m.x157 + 0.0001*m.x27*
m.x158 + 0.0001*m.x27*m.x159 + 0.0001*m.x27*m.x160 + 0.0001*m.x27*m.x161 + 0.0001*m.x27*m.x162 +
0.0001*m.x27*m.x163 + 0.0001*m.x27*m.x164 + 0.0001*m.x27*m.x165 + 0.0001*m.x27*m.x166 + 0.0001*
m.x27*m.x167 + 0.0001*m.x27*m.x168 + 0.0001*m.x27*m.x169 + 0.0001*m.x27*m.x170 + 0.0001*m.x27*
m.x171 + 0.0001*m.x27*m.x172 + 0.0001*m.x27*m.x173 + 0.0001*m.x27*m.x174 + 0.0001*m.x27*m.x175 +
0.0001*m.x27*m.x176 + 0.0001*m.x27*m.x177 + 0.0001*m.x27*m.x178 + 0.0001*m.x27*m.x179 + 0.0001*
m.x27*m.x180 + 0.0001*m.x27*m.x181 + 0.0001*m.x27*m.x182 + 0.0001*m.x27*m.x183 + 0.0001*m.x27*
m.x184 + 0.0001*m.x27*m.x185 + 0.0001*m.x28*m.x1 + 0.0001*m.x28*m.x2 + 0.0001*m.x28*m.x3 + 0.0001
*m.x28*m.x4 + 1.76040038778825*m.x28*m.x5 + 0.0001*m.x28*m.x6 + 0.0001*m.x28*m.x7 + 0.0001*m.x28*
m.x8 + 0.0001*m.x28*m.x9 + 0.0001*m.x28*m.x10 + 0.0001*m.x28*m.x11 + 0.0001*m.x28*m.x12 + 0.0001*
m.x28*m.x13 + 0.0001*m.x28*m.x14 + 0.0001*m.x28*m.x15 + 0.0001*m.x28*m.x16 + 1.40499695900221*
m.x28*m.x17 + 0.0001*m.x28*m.x18 + 0.0001*m.x28*m.x19 + 0.0001*m.x28*m.x20 + 0.0001*m.x28*m.x21
+ 0.0001*m.x28*m.x22 + 0.0001*m.x28*m.x23 + 0.0001*m.x28*m.x24 + 0.0001*m.x28*m.x25 + 0.0001*
m.x28*m.x26 + 0.0001*m.x28*m.x27 + 2.97332023171659*m.x28**2 + 0.0001*m.x28*m.x29 + 0.0001*m.x28*
m.x30 + 0.0001*m.x28*m.x31 + 0.0001*m.x28*m.x32 + 0.0001*m.x28*m.x33 + 0.0001*m.x28*m.x34 +
0.0001*m.x28*m.x35 + 0.0001*m.x28*m.x36 + 0.0001*m.x28*m.x37 + 0.0001*m.x28*m.x38 + 0.0001*m.x28*
m.x39 + 1.3877827117399*m.x28*m.x40 + 0.0001*m.x28*m.x41 + 0.0001*m.x28*m.x42 + 0.0001*m.x28*
m.x43 + 0.0001*m.x28*m.x44 + 0.0001*m.x28*m.x45 + 0.0001*m.x28*m.x46 + 0.0001*m.x28*m.x47 +
0.0001*m.x28*m.x48 + 0.0001*m.x28*m.x49 + 0.0001*m.x28*m.x50 + 1.76608379317448*m.x28*m.x51 +
0.0001*m.x28*m.x52 + 0.0001*m.x28*m.x53 + 0.0001*m.x28*m.x54 + 0.0001*m.x28*m.x55 + 0.0001*m.x28*
m.x56 + 0.0001*m.x28*m.x57 + 0.0001*m.x28*m.x58 + 0.0001*m.x28*m.x59 + 0.0001*m.x28*m.x60 +
0.0001*m.x28*m.x61 + 0.0001*m.x28*m.x62 + 0.0001*m.x28*m.x63 + 0.0001*m.x28*m.x64 + 0.0001*m.x28*
m.x65 + 0.0001*m.x28*m.x66 + 0.0001*m.x28*m.x67 + 0.0001*m.x28*m.x68 + 0.0001*m.x28*m.x69 +
0.0001*m.x28*m.x70 + 0.0001*m.x28*m.x71 + 0.0001*m.x28*m.x72 + 0.0001*m.x28*m.x73 + 0.0001*m.x28*
m.x74 + 0.0001*m.x28*m.x75 + 0.0001*m.x28*m.x76 + 0.0001*m.x28*m.x77 + 0.0001*m.x28*m.x78 +
0.0001*m.x28*m.x79 + 0.0001*m.x28*m.x80 + 0.0001*m.x28*m.x81 + 0.0001*m.x28*m.x82 + 0.0001*m.x28*
m.x83 + 0.0001*m.x28*m.x84 + 0.0001*m.x28*m.x85 + 0.0001*m.x28*m.x86 + 4.92892398020092*m.x28*
m.x87 + 0.0001*m.x28*m.x88 + 0.0001*m.x28*m.x89 + 0.0001*m.x28*m.x90 + 0.0001*m.x28*m.x91 +
0.0001*m.x28*m.x92 + 0.0001*m.x28*m.x93 + 0.0001*m.x28*m.x94 + 0.0001*m.x28*m.x95 + 0.0001*m.x28*
m.x96 + 0.624183321392942*m.x28*m.x97 + 0.0001*m.x28*m.x98 + 0.0001*m.x28*m.x99 + 0.0001*m.x28*
m.x100 + 0.0001*m.x28*m.x101 + 0.0001*m.x28*m.x102 + 0.0001*m.x28*m.x103 + 0.0001*m.x28*m.x104 +
0.0001*m.x28*m.x105 + 0.0001*m.x28*m.x106 + 0.0001*m.x28*m.x107 + 0.0001*m.x28*m.x108 + 0.0001*
m.x28*m.x109 + 0.0001*m.x28*m.x110 + 0.0001*m.x28*m.x111 + 0.0001*m.x28*m.x112 + 0.0001*m.x28*
m.x113 + 0.0001*m.x28*m.x114 + 0.0001*m.x28*m.x115 + 0.0001*m.x28*m.x116 + 0.0001*m.x28*m.x117 +
0.0001*m.x28*m.x118 + 0.0001*m.x28*m.x119 + 0.0001*m.x28*m.x120 + 0.0001*m.x28*m.x121 + 0.0001*
m.x28*m.x122 + 0.0001*m.x28*m.x123 + 0.0001*m.x28*m.x124 + 0.0001*m.x28*m.x125 + 0.0001*m.x28*
m.x126 + 0.0001*m.x28*m.x127 + 0.0001*m.x28*m.x128 + 0.0001*m.x28*m.x129 + 0.0001*m.x28*m.x130 +
0.0001*m.x28*m.x131 + 0.0001*m.x28*m.x132 + 0.0001*m.x28*m.x133 + 0.815539264390752*m.x28*m.x134
+ 0.0001*m.x28*m.x135 + 0.0001*m.x28*m.x136 + 0.0001*m.x28*m.x137 + 0.0001*m.x28*m.x138 + 0.0001
*m.x28*m.x139 + 0.0001*m.x28*m.x140 + 0.0001*m.x28*m.x141 + 0.0001*m.x28*m.x142 + 0.0001*m.x28*
m.x143 + 0.0001*m.x28*m.x144 + 0.0001*m.x28*m.x145 + 0.0001*m.x28*m.x146 + 0.0001*m.x28*m.x147 +
0.0001*m.x28*m.x148 + 0.0001*m.x28*m.x149 + 0.0001*m.x28*m.x150 + 0.0001*m.x28*m.x151 + 0.0001*
m.x28*m.x152 + 0.0001*m.x28*m.x153 + 0.0001*m.x28*m.x154 + 0.0001*m.x28*m.x155 + 0.0001*m.x28*
m.x156 + 0.0001*m.x28*m.x157 + 0.0001*m.x28*m.x158 + 0.0001*m.x28*m.x159 + 0.0001*m.x28*m.x160 +
0.0001*m.x28*m.x161 + 0.0001*m.x28*m.x162 + 0.0001*m.x28*m.x163 + 0.0001*m.x28*m.x164 + 0.0001*
m.x28*m.x165 + 0.0001*m.x28*m.x166 + 0.0001*m.x28*m.x167 + 0.0001*m.x28*m.x168 + 0.0001*m.x28*
m.x169 + 0.0001*m.x28*m.x170 + 0.0001*m.x28*m.x171 + 0.0001*m.x28*m.x172 + 0.0001*m.x28*m.x173 +
0.0001*m.x28*m.x174 + 0.0001*m.x28*m.x175 + 0.0001*m.x28*m.x176 + 0.0001*m.x28*m.x177 + 0.0001*
m.x28*m.x178 + 0.0001*m.x28*m.x179 + 0.0001*m.x28*m.x180 + 0.0001*m.x28*m.x181 + 0.0001*m.x28*
m.x182 + 0.0001*m.x28*m.x183 + 0.0001*m.x28*m.x184 + 0.0001*m.x28*m.x185 + 0.0001*m.x29*m.x1 +
0.0001*m.x29*m.x2 + 0.0001*m.x29*m.x3 + 0.0001*m.x29*m.x4 + 0.0001*m.x29*m.x5 + 1.76849613599461*
m.x29*m.x6 + 0.0001*m.x29*m.x7 + 0.0001*m.x29*m.x8 + 0.0001*m.x29*m.x9 + 0.0001*m.x29*m.x10 +
0.0001*m.x29*m.x11 + 0.0001*m.x29*m.x12 + 0.0001*m.x29*m.x13 + 0.0001*m.x29*m.x14 + 0.0001*m.x29*
m.x15 + 0.0001*m.x29*m.x16 + 0.0001*m.x29*m.x17 + 1.41126335218548*m.x29*m.x18 + 0.0001*m.x29*
m.x19 + 0.0001*m.x29*m.x20 + 0.0001*m.x29*m.x21 + 0.0001*m.x29*m.x22 + 0.0001*m.x29*m.x23 +
0.0001*m.x29*m.x24 + 0.0001*m.x29*m.x25 + 0.0001*m.x29*m.x26 + 0.0001*m.x29*m.x27 + 0.0001*m.x29*
m.x28 + 2.92132115274106*m.x29**2 + 0.0001*m.x29*m.x30 + 0.0001*m.x29*m.x31 + 0.0001*m.x29*m.x32
+ 0.0001*m.x29*m.x33 + 0.0001*m.x29*m.x34 + 0.0001*m.x29*m.x35 + 0.0001*m.x29*m.x36 + 0.0001*
m.x29*m.x37 + 0.0001*m.x29*m.x38 + 0.0001*m.x29*m.x39 + 0.0001*m.x29*m.x40 + 1.39418925971928*
m.x29*m.x41 + 0.0001*m.x29*m.x42 + 0.0001*m.x29*m.x43 + 0.0001*m.x29*m.x44 + 0.0001*m.x29*m.x45
+ 0.0001*m.x29*m.x46 + 0.0001*m.x29*m.x47 + 0.0001*m.x29*m.x48 + 0.0001*m.x29*m.x49 + 0.0001*
m.x29*m.x50 + 0.0001*m.x29*m.x51 + 1.69967084265552*m.x29*m.x52 + 0.0001*m.x29*m.x53 + 0.0001*
m.x29*m.x54 + 0.0001*m.x29*m.x55 + 0.0001*m.x29*m.x56 + 0.0001*m.x29*m.x57 + 0.0001*m.x29*m.x58
+ 0.0001*m.x29*m.x59 + 0.0001*m.x29*m.x60 + 0.0001*m.x29*m.x61 + 0.0001*m.x29*m.x62 + 0.0001*
m.x29*m.x63 + 0.0001*m.x29*m.x64 + 0.0001*m.x29*m.x65 + 0.0001*m.x29*m.x66 + 0.0001*m.x29*m.x67
+ 0.0001*m.x29*m.x68 + 0.0001*m.x29*m.x69 + 0.0001*m.x29*m.x70 + 0.0001*m.x29*m.x71 + 0.0001*
m.x29*m.x72 + 0.0001*m.x29*m.x73 + 0.0001*m.x29*m.x74 + 0.0001*m.x29*m.x75 + 0.0001*m.x29*m.x76
+ 0.0001*m.x29*m.x77 + 0.0001*m.x29*m.x78 + 0.0001*m.x29*m.x79 + 0.0001*m.x29*m.x80 + 0.0001*
m.x29*m.x81 + 0.0001*m.x29*m.x82 + 0.0001*m.x29*m.x83 + 0.0001*m.x29*m.x84 + 0.0001*m.x29*m.x85
+ 0.0001*m.x29*m.x86 + 0.0001*m.x29*m.x87 + 4.87034828234694*m.x29*m.x88 + 0.0001*m.x29*m.x89 +
0.0001*m.x29*m.x90 + 0.0001*m.x29*m.x91 + 0.0001*m.x29*m.x92 + 0.0001*m.x29*m.x93 + 0.0001*m.x29*
m.x94 + 0.0001*m.x29*m.x95 + 0.0001*m.x29*m.x96 + 0.0001*m.x29*m.x97 + 0.666827196622213*m.x29*
m.x98 + 0.0001*m.x29*m.x99 + 0.0001*m.x29*m.x100 + 0.0001*m.x29*m.x101 + 0.0001*m.x29*m.x102 +
0.0001*m.x29*m.x103 + 0.0001*m.x29*m.x104 + 0.0001*m.x29*m.x105 + 0.0001*m.x29*m.x106 + 0.0001*
m.x29*m.x107 + 0.0001*m.x29*m.x108 + 0.0001*m.x29*m.x109 + 0.0001*m.x29*m.x110 + 0.0001*m.x29*
m.x111 + 0.0001*m.x29*m.x112 + 0.0001*m.x29*m.x113 + 0.0001*m.x29*m.x114 + 0.0001*m.x29*m.x115 +
0.0001*m.x29*m.x116 + 0.0001*m.x29*m.x117 + 0.0001*m.x29*m.x118 + 0.0001*m.x29*m.x119 + 0.0001*
m.x29*m.x120 + 0.0001*m.x29*m.x121 + 0.0001*m.x29*m.x122 + 0.0001*m.x29*m.x123 + 0.0001*m.x29*
m.x124 + 0.0001*m.x29*m.x125 + 0.0001*m.x29*m.x126 + 0.0001*m.x29*m.x127 + 0.0001*m.x29*m.x128 +
0.0001*m.x29*m.x129 + 0.0001*m.x29*m.x130 + 0.0001*m.x29*m.x131 + 0.0001*m.x29*m.x132 + 0.0001*
m.x29*m.x133 + 0.0001*m.x29*m.x134 + 0.84527694313714*m.x29*m.x135 + 0.0001*m.x29*m.x136 + 0.0001
*m.x29*m.x137 + 0.0001*m.x29*m.x138 + 0.0001*m.x29*m.x139 + 0.0001*m.x29*m.x140 + 0.0001*m.x29*
m.x141 + 0.0001*m.x29*m.x142 + 0.0001*m.x29*m.x143 + 0.0001*m.x29*m.x144 + 0.0001*m.x29*m.x145 +
0.0001*m.x29*m.x146 + 0.0001*m.x29*m.x147 + 0.0001*m.x29*m.x148 + 0.0001*m.x29*m.x149 + 0.0001*
m.x29*m.x150 + 0.0001*m.x29*m.x151 + 0.0001*m.x29*m.x152 + 0.0001*m.x29*m.x153 + 0.0001*m.x29*
m.x154 + 0.0001*m.x29*m.x155 + 0.0001*m.x29*m.x156 + 0.0001*m.x29*m.x157 + 0.0001*m.x29*m.x158 +
0.0001*m.x29*m.x159 + 0.0001*m.x29*m.x160 + 0.0001*m.x29*m.x161 + 0.0001*m.x29*m.x162 + 0.0001*
m.x29*m.x163 + 0.0001*m.x29*m.x164 + 0.0001*m.x29*m.x165 + 0.0001*m.x29*m.x166 + 0.0001*m.x29*
m.x167 + 0.0001*m.x29*m.x168 + 0.0001*m.x29*m.x169 + 0.0001*m.x29*m.x170 + 0.0001*m.x29*m.x171 +
0.0001*m.x29*m.x172 + 0.0001*m.x29*m.x173 + 0.0001*m.x29*m.x174 + 0.0001*m.x29*m.x175 + 0.0001*
m.x29*m.x176 + 0.0001*m.x29*m.x177 + 0.0001*m.x29*m.x178 + 0.0001*m.x29*m.x179 + 0.0001*m.x29*
m.x180 + 0.0001*m.x29*m.x181 + 0.0001*m.x29*m.x182 + 0.0001*m.x29*m.x183 + 0.0001*m.x29*m.x184 +
0.0001*m.x29*m.x185 + 0.0001*m.x30*m.x1 + 0.0001*m.x30*m.x2 + 0.0001*m.x30*m.x3 + 0.0001*m.x30*
m.x4 + 0.0001*m.x30*m.x5 + 0.0001*m.x30*m.x6 + 1.72684751084366*m.x30*m.x7 + 0.0001*m.x30*m.x8 +
0.0001*m.x30*m.x9 + 0.0001*m.x30*m.x10 + 0.0001*m.x30*m.x11 + 0.0001*m.x30*m.x12 + 0.0001*m.x30*
m.x13 + 0.0001*m.x30*m.x14 + 0.0001*m.x30*m.x15 + 0.0001*m.x30*m.x16 + 0.0001*m.x30*m.x17 +
0.0001*m.x30*m.x18 + 1.40606311251092*m.x30*m.x19 + 0.0001*m.x30*m.x20 + 0.0001*m.x30*m.x21 +
0.0001*m.x30*m.x22 + 0.0001*m.x30*m.x23 + 0.0001*m.x30*m.x24 + 0.0001*m.x30*m.x25 + 0.0001*m.x30*
m.x26 + 0.0001*m.x30*m.x27 + 0.0001*m.x30*m.x28 + 0.0001*m.x30*m.x29 + 2.80279299900867*m.x30**2
+ 0.0001*m.x30*m.x31 + 0.0001*m.x30*m.x32 + 0.0001*m.x30*m.x33 + 0.0001*m.x30*m.x34 + 0.0001*
m.x30*m.x35 + 0.0001*m.x30*m.x36 + 0.0001*m.x30*m.x37 + 0.0001*m.x30*m.x38 + 0.0001*m.x30*m.x39
+ 0.0001*m.x30*m.x40 + 0.0001*m.x30*m.x41 + 1.35554864831098*m.x30*m.x42 + 0.0001*m.x30*m.x43 +
0.0001*m.x30*m.x44 + 0.0001*m.x30*m.x45 + 0.0001*m.x30*m.x46 + 0.0001*m.x30*m.x47 + 0.0001*m.x30*
m.x48 + 0.0001*m.x30*m.x49 + 0.0001*m.x30*m.x50 + 0.0001*m.x30*m.x51 + 0.0001*m.x30*m.x52 +
1.7183567177394*m.x30*m.x53 + 0.0001*m.x30*m.x54 + 0.0001*m.x30*m.x55 + 0.0001*m.x30*m.x56 +
0.0001*m.x30*m.x57 + 0.0001*m.x30*m.x58 + 0.0001*m.x30*m.x59 + 0.0001*m.x30*m.x60 + 0.0001*m.x30*
m.x61 + 0.0001*m.x30*m.x62 + 0.0001*m.x30*m.x63 + 0.0001*m.x30*m.x64 + 0.0001*m.x30*m.x65 +
0.0001*m.x30*m.x66 + 0.0001*m.x30*m.x67 + 0.0001*m.x30*m.x68 + 0.0001*m.x30*m.x69 + 0.0001*m.x30*
m.x70 + 0.0001*m.x30*m.x71 + 0.0001*m.x30*m.x72 + 0.0001*m.x30*m.x73 + 0.0001*m.x30*m.x74 +
0.0001*m.x30*m.x75 + 0.0001*m.x30*m.x76 + 0.0001*m.x30*m.x77 + 0.0001*m.x30*m.x78 + 0.0001*m.x30*
m.x79 + 0.0001*m.x30*m.x80 + 0.0001*m.x30*m.x81 + 0.0001*m.x30*m.x82 + 0.0001*m.x30*m.x83 +
0.0001*m.x30*m.x84 + 0.0001*m.x30*m.x85 + 0.0001*m.x30*m.x86 + 0.0001*m.x30*m.x87 + 0.0001*m.x30*
m.x88 + 4.83667608906549*m.x30*m.x89 + 0.0001*m.x30*m.x90 + 0.0001*m.x30*m.x91 + 0.0001*m.x30*
m.x92 + 0.0001*m.x30*m.x93 + 0.0001*m.x30*m.x94 + 0.0001*m.x30*m.x95 + 0.0001*m.x30*m.x96 +
0.0001*m.x30*m.x97 + 0.0001*m.x30*m.x98 + 0.0001*m.x30*m.x99 + 0.0001*m.x30*m.x100 + 0.0001*m.x30
*m.x101 + 0.0001*m.x30*m.x102 + 0.0001*m.x30*m.x103 + 0.0001*m.x30*m.x104 + 0.0001*m.x30*m.x105
+ 0.0001*m.x30*m.x106 + 0.0001*m.x30*m.x107 + 0.0001*m.x30*m.x108 + 0.0001*m.x30*m.x109 + 0.0001
*m.x30*m.x110 + 0.0001*m.x30*m.x111 + 0.0001*m.x30*m.x112 + 0.0001*m.x30*m.x113 + 0.0001*m.x30*
m.x114 + 0.0001*m.x30*m.x115 + 0.0001*m.x30*m.x116 + 0.0001*m.x30*m.x117 + 0.0001*m.x30*m.x118 +
0.0001*m.x30*m.x119 + 0.0001*m.x30*m.x120 + 0.0001*m.x30*m.x121 + 0.0001*m.x30*m.x122 + 0.0001*
m.x30*m.x123 + 0.0001*m.x30*m.x124 + 0.0001*m.x30*m.x125 + 0.0001*m.x30*m.x126 + 0.0001*m.x30*
m.x127 + 0.0001*m.x30*m.x128 + 0.0001*m.x30*m.x129 + 0.0001*m.x30*m.x130 + 0.0001*m.x30*m.x131 +
0.0001*m.x30*m.x132 + 0.0001*m.x30*m.x133 + 0.0001*m.x30*m.x134 + 0.0001*m.x30*m.x135 +
0.735363248013873*m.x30*m.x136 + 0.0001*m.x30*m.x137 + 0.0001*m.x30*m.x138 + 0.0001*m.x30*m.x139
+ 0.0001*m.x30*m.x140 + 0.0001*m.x30*m.x141 + 0.0001*m.x30*m.x142 + 0.0001*m.x30*m.x143 + 0.0001
*m.x30*m.x144 + 0.0001*m.x30*m.x145 + 0.0001*m.x30*m.x146 + 0.0001*m.x30*m.x147 + 0.0001*m.x30*
m.x148 + 0.0001*m.x30*m.x149 + 0.0001*m.x30*m.x150 + 0.0001*m.x30*m.x151 + 0.0001*m.x30*m.x152 +
0.0001*m.x30*m.x153 + 0.0001*m.x30*m.x154 + 0.0001*m.x30*m.x155 + 0.0001*m.x30*m.x156 + 0.0001*
m.x30*m.x157 + 0.0001*m.x30*m.x158 + 0.0001*m.x30*m.x159 + 0.0001*m.x30*m.x160 + 0.0001*m.x30*
m.x161 + 0.0001*m.x30*m.x162 + 0.0001*m.x30*m.x163 + 0.0001*m.x30*m.x164 + 0.0001*m.x30*m.x165 +
0.0001*m.x30*m.x166 + 0.0001*m.x30*m.x167 + 0.0001*m.x30*m.x168 + 0.0001*m.x30*m.x169 + 0.0001*
m.x30*m.x170 + 0.0001*m.x30*m.x171 + 0.0001*m.x30*m.x172 + 0.0001*m.x30*m.x173 + 0.0001*m.x30*
m.x174 + 0.0001*m.x30*m.x175 + 0.0001*m.x30*m.x176 + 0.0001*m.x30*m.x177 + 0.0001*m.x30*m.x178 +
0.0001*m.x30*m.x179 + 0.0001*m.x30*m.x180 + 0.0001*m.x30*m.x181 + 0.0001*m.x30*m.x182 + 0.0001*
m.x30*m.x183 + 0.0001*m.x30*m.x184 + 0.0001*m.x30*m.x185 + 0.0001*m.x31*m.x1 + 0.0001*m.x31*m.x2
+ 0.0001*m.x31*m.x3 + 0.0001*m.x31*m.x4 + 0.0001*m.x31*m.x5 + 0.0001*m.x31*m.x6 + 0.0001*m.x31*
m.x7 + 1.73585651671266*m.x31*m.x8 + 0.0001*m.x31*m.x9 + 0.0001*m.x31*m.x10 + 0.0001*m.x31*m.x11
+ 0.0001*m.x31*m.x12 + 0.0001*m.x31*m.x13 + 0.0001*m.x31*m.x14 + 0.0001*m.x31*m.x15 + 0.0001*
m.x31*m.x16 + 0.0001*m.x31*m.x17 + 0.0001*m.x31*m.x18 + 0.0001*m.x31*m.x19 + 1.56105826810654*
m.x31*m.x20 + 0.0001*m.x31*m.x21 + 0.0001*m.x31*m.x22 + 0.0001*m.x31*m.x23 + 0.0001*m.x31*m.x24
+ 0.0001*m.x31*m.x25 + 0.0001*m.x31*m.x26 + 0.0001*m.x31*m.x27 + 0.0001*m.x31*m.x28 + 0.0001*
m.x31*m.x29 + 0.0001*m.x31*m.x30 + 2.8864715069607*m.x31**2 + 0.0001*m.x31*m.x32 + 0.0001*m.x31*
m.x33 + 0.0001*m.x31*m.x34 + 0.0001*m.x31*m.x35 + 0.0001*m.x31*m.x36 + 0.0001*m.x31*m.x37 +
0.0001*m.x31*m.x38 + 0.0001*m.x31*m.x39 + 0.0001*m.x31*m.x40 + 0.0001*m.x31*m.x41 + 0.0001*m.x31*
m.x42 + 1.50497502534561*m.x31*m.x43 + 0.0001*m.x31*m.x44 + 0.0001*m.x31*m.x45 + 0.0001*m.x31*
m.x46 + 0.0001*m.x31*m.x47 + 0.0001*m.x31*m.x48 + 0.0001*m.x31*m.x49 + 0.0001*m.x31*m.x50 +
0.0001*m.x31*m.x51 + 0.0001*m.x31*m.x52 + 0.0001*m.x31*m.x53 + 1.71052437050334*m.x31*m.x54 +
0.0001*m.x31*m.x55 + 0.0001*m.x31*m.x56 + 0.0001*m.x31*m.x57 + 0.0001*m.x31*m.x58 + 0.0001*m.x31*
m.x59 + 0.0001*m.x31*m.x60 + 0.0001*m.x31*m.x61 + 0.0001*m.x31*m.x62 + 0.0001*m.x31*m.x63 +
0.0001*m.x31*m.x64 + 0.0001*m.x31*m.x65 + 0.0001*m.x31*m.x66 + 0.0001*m.x31*m.x67 + 0.0001*m.x31*
m.x68 + 0.0001*m.x31*m.x69 + 0.0001*m.x31*m.x70 + 0.0001*m.x31*m.x71 + 0.0001*m.x31*m.x72 +
0.0001*m.x31*m.x73 + 0.0001*m.x31*m.x74 + 0.0001*m.x31*m.x75 + 0.0001*m.x31*m.x76 + 0.0001*m.x31*
m.x77 + 0.0001*m.x31*m.x78 + 0.0001*m.x31*m.x79 + 0.0001*m.x31*m.x80 + 0.0001*m.x31*m.x81 +
0.0001*m.x31*m.x82 + 0.0001*m.x31*m.x83 + 0.0001*m.x31*m.x84 + 0.0001*m.x31*m.x85 + 0.0001*m.x31*
m.x86 + 0.0001*m.x31*m.x87 + 0.0001*m.x31*m.x88 + 0.0001*m.x31*m.x89 + 4.83667608906549*m.x31*
m.x90 + 0.0001*m.x31*m.x91 + 0.0001*m.x31*m.x92 + 0.0001*m.x31*m.x93 + 0.0001*m.x31*m.x94 +
0.0001*m.x31*m.x95 + 0.0001*m.x31*m.x96 + 0.0001*m.x31*m.x97 + 0.0001*m.x31*m.x98 +
0.65193781790818*m.x31*m.x99 + 0.0001*m.x31*m.x100 + 0.0001*m.x31*m.x101 + 0.0001*m.x31*m.x102 +
0.0001*m.x31*m.x103 + 0.0001*m.x31*m.x104 + 0.0001*m.x31*m.x105 + 0.0001*m.x31*m.x106 + 0.0001*
m.x31*m.x107 + 0.0001*m.x31*m.x108 + 0.0001*m.x31*m.x109 + 0.0001*m.x31*m.x110 + 0.0001*m.x31*
m.x111 + 0.0001*m.x31*m.x112 + 0.0001*m.x31*m.x113 + 0.0001*m.x31*m.x114 + 0.0001*m.x31*m.x115 +
0.0001*m.x31*m.x116 + 0.0001*m.x31*m.x117 + 0.0001*m.x31*m.x118 + 0.0001*m.x31*m.x119 + 0.0001*
m.x31*m.x120 + 0.0001*m.x31*m.x121 + 0.0001*m.x31*m.x122 + 0.0001*m.x31*m.x123 + 0.0001*m.x31*
m.x124 + 0.0001*m.x31*m.x125 + 0.0001*m.x31*m.x126 + 0.0001*m.x31*m.x127 + 0.0001*m.x31*m.x128 +
0.0001*m.x31*m.x129 + 0.0001*m.x31*m.x130 + 0.0001*m.x31*m.x131 + 0.0001*m.x31*m.x132 + 0.0001*
m.x31*m.x133 + 0.0001*m.x31*m.x134 + 0.0001*m.x31*m.x135 + 0.0001*m.x31*m.x136 +
0.923236326862633*m.x31*m.x137 + 0.0001*m.x31*m.x138 + 0.0001*m.x31*m.x139 + 0.0001*m.x31*m.x140
+ 0.0001*m.x31*m.x141 + 0.0001*m.x31*m.x142 + 0.0001*m.x31*m.x143 + 0.0001*m.x31*m.x144 + 0.0001
*m.x31*m.x145 + 0.0001*m.x31*m.x146 + 0.0001*m.x31*m.x147 + 0.0001*m.x31*m.x148 + 0.0001*m.x31*
m.x149 + 0.0001*m.x31*m.x150 + 0.0001*m.x31*m.x151 + 0.0001*m.x31*m.x152 + 0.0001*m.x31*m.x153 +
0.0001*m.x31*m.x154 + 0.0001*m.x31*m.x155 + 0.0001*m.x31*m.x156 + 0.0001*m.x31*m.x157 + 0.0001*
m.x31*m.x158 + 0.0001*m.x31*m.x159 + 0.0001*m.x31*m.x160 + 0.0001*m.x31*m.x161 + 0.0001*m.x31*
m.x162 + 0.0001*m.x31*m.x163 + 0.0001*m.x31*m.x164 + 0.0001*m.x31*m.x165 + 0.0001*m.x31*m.x166 +
0.0001*m.x31*m.x167 + 0.0001*m.x31*m.x168 + 0.0001*m.x31*m.x169 + 0.0001*m.x31*m.x170 + 0.0001*
m.x31*m.x171 + 0.0001*m.x31*m.x172 + 0.0001*m.x31*m.x173 + 0.0001*m.x31*m.x174 + 0.0001*m.x31*
m.x175 + 0.0001*m.x31*m.x176 + 0.0001*m.x31*m.x177 + 0.0001*m.x31*m.x178 + 0.0001*m.x31*m.x179 +
0.0001*m.x31*m.x180 + 0.0001*m.x31*m.x181 + 0.0001*m.x31*m.x182 + 0.0001*m.x31*m.x183 + 0.0001*
m.x31*m.x184 + 0.0001*m.x31*m.x185 + 0.0001*m.x32*m.x1 + 0.0001*m.x32*m.x2 + 0.0001*m.x32*m.x3 +
0.0001*m.x32*m.x4 + 0.0001*m.x32*m.x5 + 0.0001*m.x32*m.x6 + 0.0001*m.x32*m.x7 + 0.0001*m.x32*m.x8
+ 1.81124027188761*m.x32*m.x9 + 0.0001*m.x32*m.x10 + 0.0001*m.x32*m.x11 + 0.0001*m.x32*m.x12 +
0.0001*m.x32*m.x13 + 0.0001*m.x32*m.x14 + 0.0001*m.x32*m.x15 + 0.0001*m.x32*m.x16 + 0.0001*m.x32*
m.x17 + 0.0001*m.x32*m.x18 + 0.0001*m.x32*m.x19 + 0.0001*m.x32*m.x20 + 1.62885055048501*m.x32*
m.x21 + 0.0001*m.x32*m.x22 + 0.0001*m.x32*m.x23 + 0.0001*m.x32*m.x24 + 0.0001*m.x32*m.x25 +
0.0001*m.x32*m.x26 + 0.0001*m.x32*m.x27 + 0.0001*m.x32*m.x28 + 0.0001*m.x32*m.x29 + 0.0001*m.x32*
m.x30 + 0.0001*m.x32*m.x31 + 3.10873128400148*m.x32**2 + 0.0001*m.x32*m.x33 + 0.0001*m.x32*m.x34
+ 0.0001*m.x32*m.x35 + 0.0001*m.x32*m.x36 + 0.0001*m.x32*m.x37 + 0.0001*m.x32*m.x38 + 0.0001*
m.x32*m.x39 + 0.0001*m.x32*m.x40 + 0.0001*m.x32*m.x41 + 0.0001*m.x32*m.x42 + 0.0001*m.x32*m.x43
+ 1.57033161734872*m.x32*m.x44 + 0.0001*m.x32*m.x45 + 0.0001*m.x32*m.x46 + 0.0001*m.x32*m.x47 +
0.0001*m.x32*m.x48 + 0.0001*m.x32*m.x49 + 0.0001*m.x32*m.x50 + 0.0001*m.x32*m.x51 + 0.0001*m.x32*
m.x52 + 0.0001*m.x32*m.x53 + 0.0001*m.x32*m.x54 + 1.7735490726527*m.x32*m.x55 + 0.0001*m.x32*
m.x56 + 0.0001*m.x32*m.x57 + 0.0001*m.x32*m.x58 + 0.0001*m.x32*m.x59 + 0.0001*m.x32*m.x60 +
0.0001*m.x32*m.x61 + 0.0001*m.x32*m.x62 + 0.0001*m.x32*m.x63 + 0.0001*m.x32*m.x64 + 0.0001*m.x32*
m.x65 + 0.0001*m.x32*m.x66 + 0.0001*m.x32*m.x67 + 0.0001*m.x32*m.x68 + 0.0001*m.x32*m.x69 +
0.0001*m.x32*m.x70 + 0.0001*m.x32*m.x71 + 0.0001*m.x32*m.x72 + 0.0001*m.x32*m.x73 + 0.0001*m.x32*
m.x74 + 0.0001*m.x32*m.x75 + 0.0001*m.x32*m.x76 + 0.0001*m.x32*m.x77 + 0.0001*m.x32*m.x78 +
0.0001*m.x32*m.x79 + 0.0001*m.x32*m.x80 + 0.0001*m.x32*m.x81 + 0.0001*m.x32*m.x82 + 0.0001*m.x32*
m.x83 + 0.0001*m.x32*m.x84 + 0.0001*m.x32*m.x85 + 0.0001*m.x32*m.x86 + 0.0001*m.x32*m.x87 +
0.0001*m.x32*m.x88 + 0.0001*m.x32*m.x89 + 0.0001*m.x32*m.x90 + 5.0148913745191*m.x32*m.x91 +
0.0001*m.x32*m.x92 + 0.0001*m.x32*m.x93 + 0.0001*m.x32*m.x94 + 0.0001*m.x32*m.x95 + 0.0001*m.x32*
m.x96 + 0.0001*m.x32*m.x97 + 0.0001*m.x32*m.x98 + 0.0001*m.x32*m.x99 + 0.680247077879747*m.x32*
m.x100 + 0.0001*m.x32*m.x101 + 0.0001*m.x32*m.x102 + 0.0001*m.x32*m.x103 + 0.0001*m.x32*m.x104 +
0.0001*m.x32*m.x105 + 0.0001*m.x32*m.x106 + 0.0001*m.x32*m.x107 + 0.0001*m.x32*m.x108 + 0.0001*
m.x32*m.x109 + 0.0001*m.x32*m.x110 + 0.0001*m.x32*m.x111 + 0.0001*m.x32*m.x112 + 0.0001*m.x32*
m.x113 + 0.0001*m.x32*m.x114 + 0.0001*m.x32*m.x115 + 0.0001*m.x32*m.x116 + 0.0001*m.x32*m.x117 +
0.0001*m.x32*m.x118 + 0.0001*m.x32*m.x119 + 0.0001*m.x32*m.x120 + 0.0001*m.x32*m.x121 + 0.0001*
m.x32*m.x122 + 0.0001*m.x32*m.x123 + 0.0001*m.x32*m.x124 + 0.0001*m.x32*m.x125 + 0.0001*m.x32*
m.x126 + 0.0001*m.x32*m.x127 + 0.0001*m.x32*m.x128 + 0.0001*m.x32*m.x129 + 0.0001*m.x32*m.x130 +
0.0001*m.x32*m.x131 + 0.0001*m.x32*m.x132 + 0.0001*m.x32*m.x133 + 0.0001*m.x32*m.x134 + 0.0001*
m.x32*m.x135 + 0.0001*m.x32*m.x136 + 0.0001*m.x32*m.x137 + 0.969443186220753*m.x32*m.x138 +
0.0001*m.x32*m.x139 + 0.0001*m.x32*m.x140 + 0.0001*m.x32*m.x141 + 0.0001*m.x32*m.x142 + 0.0001*
m.x32*m.x143 + 0.0001*m.x32*m.x144 + 0.0001*m.x32*m.x145 + 0.0001*m.x32*m.x146 + 0.0001*m.x32*
m.x147 + 0.0001*m.x32*m.x148 + 0.0001*m.x32*m.x149 + 0.0001*m.x32*m.x150 + 0.0001*m.x32*m.x151 +
0.0001*m.x32*m.x152 + 0.0001*m.x32*m.x153 + 0.0001*m.x32*m.x154 + 0.0001*m.x32*m.x155 + 0.0001*
m.x32*m.x156 + 0.0001*m.x32*m.x157 + 0.0001*m.x32*m.x158 + 0.0001*m.x32*m.x159 + 0.0001*m.x32*
m.x160 + 0.0001*m.x32*m.x161 + 0.0001*m.x32*m.x162 + 0.0001*m.x32*m.x163 + 0.0001*m.x32*m.x164 +
0.0001*m.x32*m.x165 + 0.0001*m.x32*m.x166 + 0.0001*m.x32*m.x167 + 0.0001*m.x32*m.x168 + 0.0001*
m.x32*m.x169 + 0.0001*m.x32*m.x170 + 0.0001*m.x32*m.x171 + 0.0001*m.x32*m.x172 + 0.0001*m.x32*
m.x173 + 0.0001*m.x32*m.x174 + 0.0001*m.x32*m.x175 + 0.0001*m.x32*m.x176 + 0.0001*m.x32*m.x177 +
0.0001*m.x32*m.x178 + 0.0001*m.x32*m.x179 + 0.0001*m.x32*m.x180 + 0.0001*m.x32*m.x181 + 0.0001*
m.x32*m.x182 + 0.0001*m.x32*m.x183 + 0.0001*m.x32*m.x184 + 0.0001*m.x32*m.x185 + 0.0001*m.x33*
m.x1 + 0.0001*m.x33*m.x2 + 0.0001*m.x33*m.x3 + 0.0001*m.x33*m.x4 + 0.0001*m.x33*m.x5 + 0.0001*
m.x33*m.x6 + 0.0001*m.x33*m.x7 + 0.0001*m.x33*m.x8 + 0.0001*m.x33*m.x9 + 1.86248826671711*m.x33*
m.x10 + 0.0001*m.x33*m.x11 + 0.0001*m.x33*m.x12 + 0.0001*m.x33*m.x13 + 0.0001*m.x33*m.x14 +
0.0001*m.x33*m.x15 + 0.0001*m.x33*m.x16 + 0.0001*m.x33*m.x17 + 0.0001*m.x33*m.x18 + 0.0001*m.x33*
m.x19 + 0.0001*m.x33*m.x20 + 0.0001*m.x33*m.x21 + 1.53606919766544*m.x33*m.x22 + 0.0001*m.x33*
m.x23 + 0.0001*m.x33*m.x24 + 0.0001*m.x33*m.x25 + 0.0001*m.x33*m.x26 + 0.0001*m.x33*m.x27 +
0.0001*m.x33*m.x28 + 0.0001*m.x33*m.x29 + 0.0001*m.x33*m.x30 + 0.0001*m.x33*m.x31 + 0.0001*m.x33*
m.x32 + 3.14539967370305*m.x33**2 + 0.0001*m.x33*m.x34 + 0.0001*m.x33*m.x35 + 0.0001*m.x33*m.x36
+ 0.0001*m.x33*m.x37 + 0.0001*m.x33*m.x38 + 0.0001*m.x33*m.x39 + 0.0001*m.x33*m.x40 + 0.0001*
m.x33*m.x41 + 0.0001*m.x33*m.x42 + 0.0001*m.x33*m.x43 + 0.0001*m.x33*m.x44 + 1.63440412456913*
m.x33*m.x45 + 0.0001*m.x33*m.x46 + 0.0001*m.x33*m.x47 + 0.0001*m.x33*m.x48 + 0.0001*m.x33*m.x49
+ 0.0001*m.x33*m.x50 + 0.0001*m.x33*m.x51 + 0.0001*m.x33*m.x52 + 0.0001*m.x33*m.x53 + 0.0001*
m.x33*m.x54 + 1.65089229431681*m.x33*m.x55 + 0.0001*m.x33*m.x56 + 0.0001*m.x33*m.x57 + 0.0001*
m.x33*m.x58 + 0.254202322766495*m.x33*m.x59 + 0.0001*m.x33*m.x60 + 0.0001*m.x33*m.x61 + 0.0001*
m.x33*m.x62 + 0.0001*m.x33*m.x63 + 0.0001*m.x33*m.x64 + 0.0001*m.x33*m.x65 + 0.0001*m.x33*m.x66
+ 0.0001*m.x33*m.x67 + 0.0001*m.x33*m.x68 + 0.0001*m.x33*m.x69 + 0.0001*m.x33*m.x70 + 0.0001*
m.x33*m.x71 + 0.0001*m.x33*m.x72 + 0.0001*m.x33*m.x73 + 0.0001*m.x33*m.x74 + 0.0001*m.x33*m.x75
+ 0.0001*m.x33*m.x76 + 0.0001*m.x33*m.x77 + 0.0001*m.x33*m.x78 + 0.0001*m.x33*m.x79 + 0.0001*
m.x33*m.x80 + 0.0001*m.x33*m.x81 + 0.0001*m.x33*m.x82 + 0.0001*m.x33*m.x83 + 0.0001*m.x33*m.x84
+ 0.0001*m.x33*m.x85 + 0.0001*m.x33*m.x86 + 0.0001*m.x33*m.x87 + 0.0001*m.x33*m.x88 + 0.0001*
m.x33*m.x89 + 0.0001*m.x33*m.x90 + 0.0001*m.x33*m.x91 + 5.09913394219933*m.x33*m.x92 + 0.0001*
m.x33*m.x93 + 0.0001*m.x33*m.x94 + 0.0001*m.x33*m.x95 + 0.0001*m.x33*m.x96 + 0.0001*m.x33*m.x97
+ 0.0001*m.x33*m.x98 + 0.0001*m.x33*m.x99 + 0.0001*m.x33*m.x100 + 0.646678640160985*m.x33*m.x101
+ 0.0001*m.x33*m.x102 + 0.0001*m.x33*m.x103 + 0.0001*m.x33*m.x104 + 0.0001*m.x33*m.x105 + 0.0001
*m.x33*m.x106 + 0.0001*m.x33*m.x107 + 0.0001*m.x33*m.x108 + 0.0001*m.x33*m.x109 + 0.0001*m.x33*
m.x110 + 0.0001*m.x33*m.x111 + 0.0001*m.x33*m.x112 + 0.0001*m.x33*m.x113 + 0.0001*m.x33*m.x114 +
0.0001*m.x33*m.x115 + 0.0001*m.x33*m.x116 + 0.0001*m.x33*m.x117 + 0.0001*m.x33*m.x118 + 0.0001*
m.x33*m.x119 + 0.0001*m.x33*m.x120 + 0.0001*m.x33*m.x121 + 0.0001*m.x33*m.x122 + 0.0001*m.x33*
m.x123 + 0.0001*m.x33*m.x124 + 0.0001*m.x33*m.x125 + 0.0001*m.x33*m.x126 + 0.0001*m.x33*m.x127 +
0.0001*m.x33*m.x128 + 0.0001*m.x33*m.x129 + 0.0001*m.x33*m.x130 + 0.0001*m.x33*m.x131 + 0.0001*
m.x33*m.x132 + 0.0001*m.x33*m.x133 + 0.0001*m.x33*m.x134 + 0.0001*m.x33*m.x135 + 0.0001*m.x33*
m.x136 + 0.0001*m.x33*m.x137 + 0.0001*m.x33*m.x138 + 1.01807942895716*m.x33*m.x139 + 0.0001*m.x33
*m.x140 + 0.0001*m.x33*m.x141 + 0.0001*m.x33*m.x142 + 0.0001*m.x33*m.x143 + 0.0001*m.x33*m.x144
+ 0.0001*m.x33*m.x145 + 0.0001*m.x33*m.x146 + 0.0001*m.x33*m.x147 + 0.0001*m.x33*m.x148 + 0.0001
*m.x33*m.x149 + 0.0001*m.x33*m.x150 + 0.0001*m.x33*m.x151 + 0.0001*m.x33*m.x152 + 0.0001*m.x33*
m.x153 + 0.0001*m.x33*m.x154 + 0.0001*m.x33*m.x155 + 0.0001*m.x33*m.x156 + 0.0001*m.x33*m.x157 +
0.0001*m.x33*m.x158 + 0.0001*m.x33*m.x159 + 0.0001*m.x33*m.x160 + 0.0001*m.x33*m.x161 + 0.0001*
m.x33*m.x162 + 0.0001*m.x33*m.x163 + 0.0001*m.x33*m.x164 + 0.0001*m.x33*m.x165 + 0.0001*m.x33*
m.x166 + 0.0001*m.x33*m.x167 + 0.0001*m.x33*m.x168 + 0.0001*m.x33*m.x169 + 0.0001*m.x33*m.x170 +
0.0001*m.x33*m.x171 + 0.0001*m.x33*m.x172 + 0.0001*m.x33*m.x173 + 0.0001*m.x33*m.x174 + 0.0001*
m.x33*m.x175 + 0.0001*m.x33*m.x176 + 0.0001*m.x33*m.x177 + 0.0001*m.x33*m.x178 + 0.0001*m.x33*
m.x179 + 0.0001*m.x33*m.x180 + 0.0001*m.x33*m.x181 + 0.0001*m.x33*m.x182 + 0.0001*m.x33*m.x183 +
0.0001*m.x33*m.x184 + 0.0001*m.x33*m.x185 + 0.0001*m.x34*m.x1 + 0.0001*m.x34*m.x2 + 0.0001*m.x34*
m.x3 + 0.0001*m.x34*m.x4 + 0.0001*m.x34*m.x5 + 0.0001*m.x34*m.x6 + 0.0001*m.x34*m.x7 + 0.0001*
m.x34*m.x8 + 0.0001*m.x34*m.x9 + 0.0001*m.x34*m.x10 + 1.84161801636613*m.x34*m.x11 + 0.0001*m.x34
*m.x12 + 0.0001*m.x34*m.x13 + 0.0001*m.x34*m.x14 + 0.0001*m.x34*m.x15 + 0.0001*m.x34*m.x16 +
0.0001*m.x34*m.x17 + 0.0001*m.x34*m.x18 + 0.0001*m.x34*m.x19 + 0.0001*m.x34*m.x20 + 0.0001*m.x34*
m.x21 + 0.0001*m.x34*m.x22 + 1.48565600121365*m.x34*m.x23 + 0.0001*m.x34*m.x24 + 0.0001*m.x34*
m.x25 + 0.0001*m.x34*m.x26 + 0.0001*m.x34*m.x27 + 0.0001*m.x34*m.x28 + 0.0001*m.x34*m.x29 +
0.0001*m.x34*m.x30 + 0.0001*m.x34*m.x31 + 0.0001*m.x34*m.x32 + 0.0001*m.x34*m.x33 +
3.13159696035837*m.x34**2 + 0.0001*m.x34*m.x35 + 0.0001*m.x34*m.x36 + 0.0001*m.x34*m.x37 + 0.0001
*m.x34*m.x38 + 0.0001*m.x34*m.x39 + 0.0001*m.x34*m.x40 + 0.0001*m.x34*m.x41 + 0.0001*m.x34*m.x42
+ 0.0001*m.x34*m.x43 + 0.0001*m.x34*m.x44 + 0.0001*m.x34*m.x45 + 1.5807634037662*m.x34*m.x46 +
0.0001*m.x34*m.x47 + 0.0001*m.x34*m.x48 + 0.0001*m.x34*m.x49 + 0.0001*m.x34*m.x50 + 0.0001*m.x34*
m.x51 + 0.0001*m.x34*m.x52 + 0.0001*m.x34*m.x53 + 0.0001*m.x34*m.x54 + 0.0001*m.x34*m.x55 +
1.65089229431681*m.x34*m.x56 + 0.0001*m.x34*m.x57 + 0.0001*m.x34*m.x58 + 0.0001*m.x34*m.x59 +
0.0001*m.x34*m.x60 + 0.0001*m.x34*m.x61 + 0.0001*m.x34*m.x62 + 0.0001*m.x34*m.x63 + 0.0001*m.x34*
m.x64 + 0.0001*m.x34*m.x65 + 0.0001*m.x34*m.x66 + 0.0001*m.x34*m.x67 + 0.0001*m.x34*m.x68 +
0.0001*m.x34*m.x69 + 0.0001*m.x34*m.x70 + 0.0001*m.x34*m.x71 + 0.0001*m.x34*m.x72 + 0.0001*m.x34*
m.x73 + 0.0001*m.x34*m.x74 + 0.0001*m.x34*m.x75 + 0.0001*m.x34*m.x76 + 0.0001*m.x34*m.x77 +
0.0001*m.x34*m.x78 + 0.0001*m.x34*m.x79 + 0.0001*m.x34*m.x80 + 0.0001*m.x34*m.x81 + 0.0001*m.x34*
m.x82 + 0.0001*m.x34*m.x83 + 0.0001*m.x34*m.x84 + 0.0001*m.x34*m.x85 + 0.0001*m.x34*m.x86 +
0.0001*m.x34*m.x87 + 0.0001*m.x34*m.x88 + 0.0001*m.x34*m.x89 + 0.0001*m.x34*m.x90 + 0.0001*m.x34*
m.x91 + 0.0001*m.x34*m.x92 + 5.09913394219933*m.x34*m.x93 + 0.0001*m.x34*m.x94 + 0.0001*m.x34*
m.x95 + 0.0001*m.x34*m.x96 + 0.0001*m.x34*m.x97 + 0.0001*m.x34*m.x98 + 0.0001*m.x34*m.x99 +
0.0001*m.x34*m.x100 + 0.0001*m.x34*m.x101 + 0.646596082213053*m.x34*m.x102 + 0.0001*m.x34*m.x103
+ 0.0001*m.x34*m.x104 + 0.0001*m.x34*m.x105 + 0.0001*m.x34*m.x106 + 0.0001*m.x34*m.x107 + 0.0001
*m.x34*m.x108 + 0.0001*m.x34*m.x109 + 0.0001*m.x34*m.x110 + 0.0001*m.x34*m.x111 + 0.0001*m.x34*
m.x112 + 0.0001*m.x34*m.x113 + 0.0001*m.x34*m.x114 + 0.0001*m.x34*m.x115 + 0.0001*m.x34*m.x116 +
0.0001*m.x34*m.x117 + 0.0001*m.x34*m.x118 + 0.0001*m.x34*m.x119 + 0.0001*m.x34*m.x120 + 0.0001*
m.x34*m.x121 + 0.0001*m.x34*m.x122 + 0.0001*m.x34*m.x123 + 0.0001*m.x34*m.x124 + 0.0001*m.x34*
m.x125 + 0.0001*m.x34*m.x126 + 0.0001*m.x34*m.x127 + 0.0001*m.x34*m.x128 + 0.0001*m.x34*m.x129 +
0.709807760487836*m.x34*m.x130 + 0.0001*m.x34*m.x131 + 0.0001*m.x34*m.x132 + 0.0001*m.x34*m.x133
+ 0.0001*m.x34*m.x134 + 0.0001*m.x34*m.x135 + 0.0001*m.x34*m.x136 + 0.0001*m.x34*m.x137 + 0.0001
*m.x34*m.x138 + 0.0001*m.x34*m.x139 + 0.988072237295943*m.x34*m.x140 + 0.0001*m.x34*m.x141 +
0.0001*m.x34*m.x142 + 0.0001*m.x34*m.x143 + 0.0001*m.x34*m.x144 + 0.0001*m.x34*m.x145 + 0.0001*
m.x34*m.x146 + 0.0001*m.x34*m.x147 + 0.0001*m.x34*m.x148 + 0.0001*m.x34*m.x149 + 0.0001*m.x34*
m.x150 + 0.0001*m.x34*m.x151 + 0.0001*m.x34*m.x152 + 0.0001*m.x34*m.x153 + 0.0001*m.x34*m.x154 +
0.0001*m.x34*m.x155 + 0.0001*m.x34*m.x156 + 0.0001*m.x34*m.x157 + 0.0001*m.x34*m.x158 + 0.0001*
m.x34*m.x159 + 0.0001*m.x34*m.x160 + 0.0001*m.x34*m.x161 + 0.0001*m.x34*m.x162 + 0.0001*m.x34*
m.x163 + 0.0001*m.x34*m.x164 + 0.0001*m.x34*m.x165 + 0.0001*m.x34*m.x166 + 0.0001*m.x34*m.x167 +
0.0001*m.x34*m.x168 + 0.0001*m.x34*m.x169 + 0.0001*m.x34*m.x170 + 0.0001*m.x34*m.x171 + 0.0001*
m.x34*m.x172 + 0.0001*m.x34*m.x173 + 0.0001*m.x34*m.x174 + 0.0001*m.x34*m.x175 + 0.0001*m.x34*
m.x176 + 0.0001*m.x34*m.x177 + 0.0001*m.x34*m.x178 + 0.0001*m.x34*m.x179 + 0.0001*m.x34*m.x180 +
0.0001*m.x34*m.x181 + 0.0001*m.x34*m.x182 + 0.0001*m.x34*m.x183 + 0.0001*m.x34*m.x184 + 0.0001*
m.x34*m.x185 + 0.0001*m.x35*m.x1 + 0.0001*m.x35*m.x2 + 0.0001*m.x35*m.x3 + 0.0001*m.x35*m.x4 +
0.0001*m.x35*m.x5 + 0.0001*m.x35*m.x6 + 0.0001*m.x35*m.x7 + 0.0001*m.x35*m.x8 + 0.0001*m.x35*m.x9
+ 0.0001*m.x35*m.x10 + 0.0001*m.x35*m.x11 + 1.85389551205678*m.x35*m.x12 + 0.0001*m.x35*m.x13 +
0.0001*m.x35*m.x14 + 0.0001*m.x35*m.x15 + 0.0001*m.x35*m.x16 + 0.0001*m.x35*m.x17 + 0.0001*m.x35*
m.x18 + 0.0001*m.x35*m.x19 + 0.0001*m.x35*m.x20 + 0.0001*m.x35*m.x21 + 0.0001*m.x35*m.x22 +
0.0001*m.x35*m.x23 + 1.49556027977136*m.x35*m.x24 + 0.338264012825278*m.x35*m.x25 + 0.0001*m.x35*
m.x26 + 0.0001*m.x35*m.x27 + 0.0001*m.x35*m.x28 + 0.0001*m.x35*m.x29 + 0.0001*m.x35*m.x30 +
0.0001*m.x35*m.x31 + 0.0001*m.x35*m.x32 + 0.0001*m.x35*m.x33 + 0.0001*m.x35*m.x34 +
3.18869958747691*m.x35**2 + 0.0001*m.x35*m.x36 + 0.0001*m.x35*m.x37 + 0.0001*m.x35*m.x38 + 0.0001
*m.x35*m.x39 + 0.0001*m.x35*m.x40 + 0.0001*m.x35*m.x41 + 0.0001*m.x35*m.x42 + 0.0001*m.x35*m.x43
+ 0.0001*m.x35*m.x44 + 0.0001*m.x35*m.x45 + 0.0001*m.x35*m.x46 + 1.59130176828702*m.x35*m.x47 +
0.0001*m.x35*m.x48 + 0.0001*m.x35*m.x49 + 0.0001*m.x35*m.x50 + 0.0001*m.x35*m.x51 + 0.0001*m.x35*
m.x52 + 0.0001*m.x35*m.x53 + 0.0001*m.x35*m.x54 + 0.0001*m.x35*m.x55 + 0.0001*m.x35*m.x56 +
1.70540322124996*m.x35*m.x57 + 0.0001*m.x35*m.x58 + 0.0001*m.x35*m.x59 + 0.0001*m.x35*m.x60 +
0.0001*m.x35*m.x61 + 0.0001*m.x35*m.x62 + 0.0001*m.x35*m.x63 + 0.0001*m.x35*m.x64 + 0.0001*m.x35*
m.x65 + 0.0001*m.x35*m.x66 + 0.0001*m.x35*m.x67 + 0.0001*m.x35*m.x68 + 0.0001*m.x35*m.x69 +
0.0001*m.x35*m.x70 + 0.0001*m.x35*m.x71 + 0.0001*m.x35*m.x72 + 0.0001*m.x35*m.x73 + 0.0001*m.x35*
m.x74 + 0.0001*m.x35*m.x75 + 0.0001*m.x35*m.x76 + 0.0001*m.x35*m.x77 + 0.0001*m.x35*m.x78 +
0.0001*m.x35*m.x79 + 0.0001*m.x35*m.x80 + 0.0001*m.x35*m.x81 + 0.0001*m.x35*m.x82 + 0.0001*m.x35*
m.x83 + 0.0001*m.x35*m.x84 + 0.0001*m.x35*m.x85 + 0.0001*m.x35*m.x86 + 0.0001*m.x35*m.x87 +
0.0001*m.x35*m.x88 + 0.0001*m.x35*m.x89 + 0.0001*m.x35*m.x90 + 0.0001*m.x35*m.x91 + 0.0001*m.x35*
m.x92 + 0.0001*m.x35*m.x93 + 5.14749668329507*m.x35*m.x94 + 0.0001*m.x35*m.x95 + 0.0001*m.x35*
m.x96 + 0.0001*m.x35*m.x97 + 0.0001*m.x35*m.x98 + 0.0001*m.x35*m.x99 + 0.0001*m.x35*m.x100 +
0.0001*m.x35*m.x101 + 0.0001*m.x35*m.x102 + 0.650906304971047*m.x35*m.x103 + 0.0001*m.x35*m.x104
+ 0.0001*m.x35*m.x105 + 0.0001*m.x35*m.x106 + 0.0001*m.x35*m.x107 + 0.0001*m.x35*m.x108 + 0.0001
*m.x35*m.x109 + 0.0001*m.x35*m.x110 + 0.0001*m.x35*m.x111 + 0.0001*m.x35*m.x112 + 0.0001*m.x35*
m.x113 + 0.0001*m.x35*m.x114 + 0.0001*m.x35*m.x115 + 0.0001*m.x35*m.x116 + 0.0001*m.x35*m.x117 +
0.0001*m.x35*m.x118 + 0.0001*m.x35*m.x119 + 0.0001*m.x35*m.x120 + 0.0001*m.x35*m.x121 + 0.0001*
m.x35*m.x122 + 0.0001*m.x35*m.x123 + 0.0001*m.x35*m.x124 + 0.0001*m.x35*m.x125 + 0.0001*m.x35*
m.x126 + 0.0001*m.x35*m.x127 + 0.0001*m.x35*m.x128 + 0.0001*m.x35*m.x129 + 0.0001*m.x35*m.x130 +
0.716539116478635*m.x35*m.x131 + 0.0001*m.x35*m.x132 + 0.0001*m.x35*m.x133 + 0.0001*m.x35*m.x134
+ 0.0001*m.x35*m.x135 + 0.0001*m.x35*m.x136 + 0.0001*m.x35*m.x137 + 0.0001*m.x35*m.x138 + 0.0001
*m.x35*m.x139 + 0.0001*m.x35*m.x140 + 0.991883123544148*m.x35*m.x141 + 0.0001*m.x35*m.x142 +
0.0001*m.x35*m.x143 + 0.0001*m.x35*m.x144 + 0.0001*m.x35*m.x145 + 0.0001*m.x35*m.x146 + 0.0001*
m.x35*m.x147 + 0.0001*m.x35*m.x148 + 0.0001*m.x35*m.x149 + 0.0001*m.x35*m.x150 + 0.0001*m.x35*
m.x151 + 0.0001*m.x35*m.x152 + 0.0001*m.x35*m.x153 + 0.0001*m.x35*m.x154 + 0.0001*m.x35*m.x155 +
0.0001*m.x35*m.x156 + 0.0001*m.x35*m.x157 + 0.0001*m.x35*m.x158 + 0.0001*m.x35*m.x159 + 0.0001*
m.x35*m.x160 + 0.0001*m.x35*m.x161 + 0.0001*m.x35*m.x162 + 0.0001*m.x35*m.x163 + 0.0001*m.x35*
m.x164 + 0.0001*m.x35*m.x165 + 0.0001*m.x35*m.x166 + 0.0001*m.x35*m.x167 + 0.0001*m.x35*m.x168 +
0.0001*m.x35*m.x169 + 0.0001*m.x35*m.x170 + 0.0001*m.x35*m.x171 + 0.0001*m.x35*m.x172 + 0.0001*
m.x35*m.x173 + 0.0001*m.x35*m.x174 + 0.0001*m.x35*m.x175 + 0.0001*m.x35*m.x176 + 0.0001*m.x35*
m.x177 + 0.0001*m.x35*m.x178 + 0.0001*m.x35*m.x179 + 0.0001*m.x35*m.x180 + 0.0001*m.x35*m.x181 +
0.0001*m.x35*m.x182 + 0.0001*m.x35*m.x183 + 0.0001*m.x35*m.x184 + 0.0001*m.x35*m.x185 +
6.87832202410539*m.x36*m.x1 + 0.0001*m.x36*m.x2 + 0.0001*m.x36*m.x3 + 0.0001*m.x36*m.x4 + 0.0001*
m.x36*m.x5 + 0.0001*m.x36*m.x6 + 0.0001*m.x36*m.x7 + 0.0001*m.x36*m.x8 + 0.0001*m.x36*m.x9 +
0.0001*m.x36*m.x10 + 0.0001*m.x36*m.x11 + 0.0001*m.x36*m.x12 + 5.57675338980047*m.x36*m.x13 +
0.0001*m.x36*m.x14 + 0.0001*m.x36*m.x15 + 0.0001*m.x36*m.x16 + 0.0001*m.x36*m.x17 + 0.0001*m.x36*
m.x18 + 0.0001*m.x36*m.x19 + 0.0001*m.x36*m.x20 + 0.0001*m.x36*m.x21 + 0.0001*m.x36*m.x22 +
0.0001*m.x36*m.x23 + 0.0001*m.x36*m.x24 + 0.0001*m.x36*m.x25 + 0.0001*m.x36*m.x26 + 0.0001*m.x36*
m.x27 + 0.0001*m.x36*m.x28 + 0.0001*m.x36*m.x29 + 0.0001*m.x36*m.x30 + 0.0001*m.x36*m.x31 +
0.0001*m.x36*m.x32 + 0.0001*m.x36*m.x33 + 0.0001*m.x36*m.x34 + 0.0001*m.x36*m.x35 +
5.27154221216153*m.x36**2 + 0.0001*m.x36*m.x37 + 0.0001*m.x36*m.x38 + 0.0001*m.x36*m.x39 + 0.0001
*m.x36*m.x40 + 0.0001*m.x36*m.x41 + 0.0001*m.x36*m.x42 + 0.0001*m.x36*m.x43 + 0.0001*m.x36*m.x44
+ 0.0001*m.x36*m.x45 + 0.0001*m.x36*m.x46 + 0.0001*m.x36*m.x47 + 0.0001*m.x36*m.x48 + 0.0001*
m.x36*m.x49 + 0.0001*m.x36*m.x50 + 0.0001*m.x36*m.x51 + 0.0001*m.x36*m.x52 + 0.0001*m.x36*m.x53
+ 0.0001*m.x36*m.x54 + 0.0001*m.x36*m.x55 + 0.0001*m.x36*m.x56 + 0.0001*m.x36*m.x57 + 0.0001*
m.x36*m.x58 + 0.0001*m.x36*m.x59 + 0.0001*m.x36*m.x60 + 0.0001*m.x36*m.x61 + 0.0001*m.x36*m.x62
+ 0.0001*m.x36*m.x63 + 0.0001*m.x36*m.x64 + 0.0001*m.x36*m.x65 + 0.0001*m.x36*m.x66 + 0.0001*
m.x36*m.x67 + 0.0001*m.x36*m.x68 + 0.0001*m.x36*m.x69 + 0.0001*m.x36*m.x70 + 0.0001*m.x36*m.x71
+ 0.0001*m.x36*m.x72 + 0.0001*m.x36*m.x73 + 0.0001*m.x36*m.x74 + 0.0001*m.x36*m.x75 + 0.0001*
m.x36*m.x76 + 0.0001*m.x36*m.x77 + 0.0001*m.x36*m.x78 + 0.0001*m.x36*m.x79 + 0.0001*m.x36*m.x80
+ 0.0001*m.x36*m.x81 + 0.0001*m.x36*m.x82 + 0.0001*m.x36*m.x83 + 0.0001*m.x36*m.x84 + 0.0001*
m.x36*m.x85 + 0.0001*m.x36*m.x86 + 0.0001*m.x36*m.x87 + 0.0001*m.x36*m.x88 + 0.0001*m.x36*m.x89
+ 0.0001*m.x36*m.x90 + 0.0001*m.x36*m.x91 + 0.0001*m.x36*m.x92 + 0.0001*m.x36*m.x93 + 0.0001*
m.x36*m.x94 + 0.0001*m.x36*m.x95 + 0.0001*m.x36*m.x96 + 0.0001*m.x36*m.x97 + 0.0001*m.x36*m.x98
+ 0.0001*m.x36*m.x99 + 0.0001*m.x36*m.x100 + 0.0001*m.x36*m.x101 + 0.0001*m.x36*m.x102 + 0.0001*
m.x36*m.x103 + 0.0001*m.x36*m.x104 + 0.0001*m.x36*m.x105 + 0.0001*m.x36*m.x106 + 0.0001*m.x36*
m.x107 + 0.0001*m.x36*m.x108 + 0.0001*m.x36*m.x109 + 0.0001*m.x36*m.x110 + 0.0001*m.x36*m.x111 +
0.0001*m.x36*m.x112 + 0.0001*m.x36*m.x113 + 0.0001*m.x36*m.x114 + 0.0001*m.x36*m.x115 + 0.0001*
m.x36*m.x116 + 0.0001*m.x36*m.x117 + 0.0001*m.x36*m.x118 + 0.0001*m.x36*m.x119 + 0.0001*m.x36*
m.x120 + 0.0001*m.x36*m.x121 + 0.0001*m.x36*m.x122 + 0.0001*m.x36*m.x123 + 0.0001*m.x36*m.x124 +
0.0001*m.x36*m.x125 + 0.0001*m.x36*m.x126 + 0.0001*m.x36*m.x127 + 0.0001*m.x36*m.x128 + 0.0001*
m.x36*m.x129 + 2.88588347328381*m.x36*m.x130 + 0.0001*m.x36*m.x131 + 0.0001*m.x36*m.x132 + 0.0001
*m.x36*m.x133 + 0.0001*m.x36*m.x134 + 0.0001*m.x36*m.x135 + 0.0001*m.x36*m.x136 + 0.0001*m.x36*
m.x137 + 0.0001*m.x36*m.x138 + 0.0001*m.x36*m.x139 + 0.0001*m.x36*m.x140 + 0.0001*m.x36*m.x141 +
0.0001*m.x36*m.x142 + 0.0001*m.x36*m.x143 + 0.0001*m.x36*m.x144 + 0.0001*m.x36*m.x145 + 0.0001*
m.x36*m.x146 + 0.0001*m.x36*m.x147 + 0.0001*m.x36*m.x148 + 0.0001*m.x36*m.x149 + 0.0001*m.x36*
m.x150 + 0.0001*m.x36*m.x151 + 0.0001*m.x36*m.x152 + 0.0001*m.x36*m.x153 + 0.0001*m.x36*m.x154 +
0.0001*m.x36*m.x155 + 0.0001*m.x36*m.x156 + 0.0001*m.x36*m.x157 + 0.0001*m.x36*m.x158 + 0.0001*
m.x36*m.x159 + 0.0001*m.x36*m.x160 + 0.0001*m.x36*m.x161 + 0.0001*m.x36*m.x162 + 0.0001*m.x36*
m.x163 + 0.0001*m.x36*m.x164 + 0.0001*m.x36*m.x165 + 0.0001*m.x36*m.x166 + 0.0001*m.x36*m.x167 +
0.0001*m.x36*m.x168 + 0.0001*m.x36*m.x169 + 0.0001*m.x36*m.x170 + 0.0001*m.x36*m.x171 + 0.0001*
m.x36*m.x172 + 0.0001*m.x36*m.x173 + 0.0001*m.x36*m.x174 + 0.0001*m.x36*m.x175 + 0.0001*m.x36*
m.x176 + 0.0001*m.x36*m.x177 + 0.0001*m.x36*m.x178 + 0.0001*m.x36*m.x179 + 0.0001*m.x36*m.x180 +
0.0001*m.x36*m.x181 + 0.0001*m.x36*m.x182 + 0.0001*m.x36*m.x183 + 0.0001*m.x36*m.x184 + 0.0001*
m.x36*m.x185 + 0.0001*m.x37*m.x1 + 6.89065937102382*m.x37*m.x2 + 0.0001*m.x37*m.x3 + 0.0001*m.x37
*m.x4 + 0.0001*m.x37*m.x5 + 0.0001*m.x37*m.x6 + 0.0001*m.x37*m.x7 + 0.0001*m.x37*m.x8 + 0.0001*
m.x37*m.x9 + 0.0001*m.x37*m.x10 + 0.0001*m.x37*m.x11 + 0.0001*m.x37*m.x12 + 0.0001*m.x37*m.x13 +
5.66332953599568*m.x37*m.x14 + 0.0001*m.x37*m.x15 + 0.0001*m.x37*m.x16 + 0.0001*m.x37*m.x17 +
0.0001*m.x37*m.x18 + 0.0001*m.x37*m.x19 + 0.0001*m.x37*m.x20 + 0.0001*m.x37*m.x21 + 0.0001*m.x37*
m.x22 + 0.0001*m.x37*m.x23 + 0.0001*m.x37*m.x24 + 1.38335533133029*m.x37*m.x25 + 0.0001*m.x37*
m.x26 + 0.0001*m.x37*m.x27 + 0.0001*m.x37*m.x28 + 0.0001*m.x37*m.x29 + 0.0001*m.x37*m.x30 +
0.0001*m.x37*m.x31 + 0.0001*m.x37*m.x32 + 0.0001*m.x37*m.x33 + 0.0001*m.x37*m.x34 + 0.0001*m.x37*
m.x35 + 0.0001*m.x37*m.x36 + 5.35338003131922*m.x37**2 + 0.0001*m.x37*m.x38 + 0.0001*m.x37*m.x39
+ 0.0001*m.x37*m.x40 + 0.0001*m.x37*m.x41 + 0.0001*m.x37*m.x42 + 0.0001*m.x37*m.x43 + 0.0001*
m.x37*m.x44 + 0.0001*m.x37*m.x45 + 0.0001*m.x37*m.x46 + 0.0001*m.x37*m.x47 + 0.0001*m.x37*m.x48
+ 0.0001*m.x37*m.x49 + 0.0001*m.x37*m.x50 + 0.0001*m.x37*m.x51 + 0.0001*m.x37*m.x52 + 0.0001*
m.x37*m.x53 + 0.0001*m.x37*m.x54 + 0.0001*m.x37*m.x55 + 0.0001*m.x37*m.x56 + 0.0001*m.x37*m.x57
+ 0.0001*m.x37*m.x58 + 0.0001*m.x37*m.x59 + 0.0001*m.x37*m.x60 + 0.0001*m.x37*m.x61 + 0.0001*
m.x37*m.x62 + 0.0001*m.x37*m.x63 + 0.0001*m.x37*m.x64 + 0.0001*m.x37*m.x65 + 0.0001*m.x37*m.x66
+ 0.0001*m.x37*m.x67 + 0.0001*m.x37*m.x68 + 0.0001*m.x37*m.x69 + 0.0001*m.x37*m.x70 + 0.0001*
m.x37*m.x71 + 0.0001*m.x37*m.x72 + 0.0001*m.x37*m.x73 + 0.0001*m.x37*m.x74 + 0.0001*m.x37*m.x75
+ 0.0001*m.x37*m.x76 + 0.0001*m.x37*m.x77 + 0.0001*m.x37*m.x78 + 0.0001*m.x37*m.x79 + 0.0001*
m.x37*m.x80 + 0.0001*m.x37*m.x81 + 0.0001*m.x37*m.x82 + 0.0001*m.x37*m.x83 + 0.0001*m.x37*m.x84
+ 0.0001*m.x37*m.x85 + 0.0001*m.x37*m.x86 + 0.0001*m.x37*m.x87 + 0.0001*m.x37*m.x88 + 0.0001*
m.x37*m.x89 + 0.0001*m.x37*m.x90 + 0.0001*m.x37*m.x91 + 0.0001*m.x37*m.x92 + 0.0001*m.x37*m.x93
+ 0.0001*m.x37*m.x94 + 0.0001*m.x37*m.x95 + 0.0001*m.x37*m.x96 + 0.0001*m.x37*m.x97 + 0.0001*
m.x37*m.x98 + 0.0001*m.x37*m.x99 + 0.0001*m.x37*m.x100 + 0.0001*m.x37*m.x101 + 0.0001*m.x37*
m.x102 + 0.0001*m.x37*m.x103 + 0.0001*m.x37*m.x104 + 0.0001*m.x37*m.x105 + 0.0001*m.x37*m.x106 +
0.0001*m.x37*m.x107 + 0.0001*m.x37*m.x108 + 0.0001*m.x37*m.x109 + 0.0001*m.x37*m.x110 + 0.0001*
m.x37*m.x111 + 0.0001*m.x37*m.x112 + 0.0001*m.x37*m.x113 + 0.0001*m.x37*m.x114 + 0.0001*m.x37*
m.x115 + 0.0001*m.x37*m.x116 + 0.0001*m.x37*m.x117 + 0.0001*m.x37*m.x118 + 0.0001*m.x37*m.x119 +
0.0001*m.x37*m.x120 + 0.0001*m.x37*m.x121 + 0.0001*m.x37*m.x122 + 0.0001*m.x37*m.x123 + 0.0001*
m.x37*m.x124 + 0.0001*m.x37*m.x125 + 0.0001*m.x37*m.x126 + 0.0001*m.x37*m.x127 + 0.0001*m.x37*
m.x128 + 0.0001*m.x37*m.x129 + 0.0001*m.x37*m.x130 + 2.93068453844014*m.x37*m.x131 + 0.0001*m.x37
*m.x132 + 0.0001*m.x37*m.x133 + 0.0001*m.x37*m.x134 + 0.0001*m.x37*m.x135 + 0.0001*m.x37*m.x136
+ 0.0001*m.x37*m.x137 + 0.0001*m.x37*m.x138 + 0.0001*m.x37*m.x139 + 0.0001*m.x37*m.x140 + 0.0001
*m.x37*m.x141 + 0.0001*m.x37*m.x142 + 0.0001*m.x37*m.x143 + 0.0001*m.x37*m.x144 + 0.0001*m.x37*
m.x145 + 0.0001*m.x37*m.x146 + 0.0001*m.x37*m.x147 + 0.0001*m.x37*m.x148 + 0.0001*m.x37*m.x149 +
0.0001*m.x37*m.x150 + 0.0001*m.x37*m.x151 + 0.0001*m.x37*m.x152 + 0.0001*m.x37*m.x153 + 0.0001*
m.x37*m.x154 + 0.0001*m.x37*m.x155 + 0.0001*m.x37*m.x156 + 0.0001*m.x37*m.x157 + 0.0001*m.x37*
m.x158 + 0.0001*m.x37*m.x159 + 0.0001*m.x37*m.x160 + 0.0001*m.x37*m.x161 + 0.0001*m.x37*m.x162 +
0.0001*m.x37*m.x163 + 0.0001*m.x37*m.x164 + 0.0001*m.x37*m.x165 + 0.0001*m.x37*m.x166 + 0.0001*
m.x37*m.x167 + 0.0001*m.x37*m.x168 + 0.0001*m.x37*m.x169 + 0.0001*m.x37*m.x170 + 0.0001*m.x37*
m.x171 + 0.0001*m.x37*m.x172 + 0.0001*m.x37*m.x173 + 0.0001*m.x37*m.x174 + 0.0001*m.x37*m.x175 +
0.0001*m.x37*m.x176 + 0.0001*m.x37*m.x177 + 0.0001*m.x37*m.x178 + 0.0001*m.x37*m.x179 + 0.0001*
m.x37*m.x180 + 0.0001*m.x37*m.x181 + 0.0001*m.x37*m.x182 + 0.0001*m.x37*m.x183 + 0.0001*m.x37*
m.x184 + 0.0001*m.x37*m.x185 + 0.0001*m.x38*m.x1 + 0.0001*m.x38*m.x2 + 6.89065937102382*m.x38*
m.x3 + 0.0001*m.x38*m.x4 + 0.0001*m.x38*m.x5 + 0.0001*m.x38*m.x6 + 0.0001*m.x38*m.x7 + 0.0001*
m.x38*m.x8 + 0.0001*m.x38*m.x9 + 0.0001*m.x38*m.x10 + 0.0001*m.x38*m.x11 + 0.0001*m.x38*m.x12 +
0.0001*m.x38*m.x13 + 0.0001*m.x38*m.x14 + 5.66332953599568*m.x38*m.x15 + 0.0001*m.x38*m.x16 +
0.0001*m.x38*m.x17 + 0.0001*m.x38*m.x18 + 0.0001*m.x38*m.x19 + 0.0001*m.x38*m.x20 + 0.0001*m.x38*
m.x21 + 0.0001*m.x38*m.x22 + 0.0001*m.x38*m.x23 + 0.0001*m.x38*m.x24 + 0.0001*m.x38*m.x25 +
1.36173827028348*m.x38*m.x26 + 0.0001*m.x38*m.x27 + 0.0001*m.x38*m.x28 + 0.0001*m.x38*m.x29 +
0.0001*m.x38*m.x30 + 0.0001*m.x38*m.x31 + 0.0001*m.x38*m.x32 + 0.0001*m.x38*m.x33 + 0.0001*m.x38*
m.x34 + 0.0001*m.x38*m.x35 + 0.0001*m.x38*m.x36 + 0.0001*m.x38*m.x37 + 5.35338003131922*m.x38**2
+ 0.0001*m.x38*m.x39 + 0.0001*m.x38*m.x40 + 0.0001*m.x38*m.x41 + 0.0001*m.x38*m.x42 + 0.0001*
m.x38*m.x43 + 0.0001*m.x38*m.x44 + 0.0001*m.x38*m.x45 + 0.0001*m.x38*m.x46 + 0.0001*m.x38*m.x47
+ 0.0001*m.x38*m.x48 + 0.0001*m.x38*m.x49 + 0.0001*m.x38*m.x50 + 0.0001*m.x38*m.x51 + 0.0001*
m.x38*m.x52 + 0.0001*m.x38*m.x53 + 0.0001*m.x38*m.x54 + 0.0001*m.x38*m.x55 + 0.0001*m.x38*m.x56
+ 0.0001*m.x38*m.x57 + 0.0001*m.x38*m.x58 + 0.0001*m.x38*m.x59 + 0.0001*m.x38*m.x60 + 0.0001*
m.x38*m.x61 + 0.0001*m.x38*m.x62 + 0.0001*m.x38*m.x63 + 0.0001*m.x38*m.x64 + 0.0001*m.x38*m.x65
+ 0.0001*m.x38*m.x66 + 0.0001*m.x38*m.x67 + 0.0001*m.x38*m.x68 + 0.0001*m.x38*m.x69 + 0.0001*
m.x38*m.x70 + 0.0001*m.x38*m.x71 + 0.0001*m.x38*m.x72 + 0.0001*m.x38*m.x73 + 0.0001*m.x38*m.x74
+ 0.0001*m.x38*m.x75 + 0.0001*m.x38*m.x76 + 0.0001*m.x38*m.x77 + 0.0001*m.x38*m.x78 + 0.0001*
m.x38*m.x79 + 0.0001*m.x38*m.x80 + 0.0001*m.x38*m.x81 + 0.0001*m.x38*m.x82 + 0.0001*m.x38*m.x83
+ 0.0001*m.x38*m.x84 + 0.0001*m.x38*m.x85 + 0.0001*m.x38*m.x86 + 0.0001*m.x38*m.x87 + 0.0001*
m.x38*m.x88 + 0.0001*m.x38*m.x89 + 0.0001*m.x38*m.x90 + 0.0001*m.x38*m.x91 + 0.0001*m.x38*m.x92
+ 0.0001*m.x38*m.x93 + 0.0001*m.x38*m.x94 + 0.0001*m.x38*m.x95 + 0.0001*m.x38*m.x96 + 0.0001*
m.x38*m.x97 + 0.0001*m.x38*m.x98 + 0.0001*m.x38*m.x99 + 0.0001*m.x38*m.x100 + 0.0001*m.x38*m.x101
+ 0.0001*m.x38*m.x102 + 0.0001*m.x38*m.x103 + 0.0001*m.x38*m.x104 + 0.0001*m.x38*m.x105 + 0.0001
*m.x38*m.x106 + 0.0001*m.x38*m.x107 + 0.0001*m.x38*m.x108 + 0.0001*m.x38*m.x109 + 0.0001*m.x38*
m.x110 + 0.0001*m.x38*m.x111 + 0.0001*m.x38*m.x112 + 0.0001*m.x38*m.x113 + 0.0001*m.x38*m.x114 +
0.0001*m.x38*m.x115 + 0.0001*m.x38*m.x116 + 0.0001*m.x38*m.x117 + 0.0001*m.x38*m.x118 + 0.0001*
m.x38*m.x119 + 0.0001*m.x38*m.x120 + 0.0001*m.x38*m.x121 + 0.0001*m.x38*m.x122 + 0.0001*m.x38*
m.x123 + 0.0001*m.x38*m.x124 + 0.0001*m.x38*m.x125 + 0.0001*m.x38*m.x126 + 0.0001*m.x38*m.x127 +
0.0001*m.x38*m.x128 + 0.0001*m.x38*m.x129 + 0.0001*m.x38*m.x130 + 0.0001*m.x38*m.x131 +
2.92316961316618*m.x38*m.x132 + 0.0001*m.x38*m.x133 + 0.0001*m.x38*m.x134 + 0.0001*m.x38*m.x135
+ 0.0001*m.x38*m.x136 + 0.0001*m.x38*m.x137 + 0.0001*m.x38*m.x138 + 0.0001*m.x38*m.x139 + 0.0001
*m.x38*m.x140 + 0.0001*m.x38*m.x141 + 0.0001*m.x38*m.x142 + 0.0001*m.x38*m.x143 + 0.0001*m.x38*
m.x144 + 0.0001*m.x38*m.x145 + 0.0001*m.x38*m.x146 + 0.0001*m.x38*m.x147 + 0.0001*m.x38*m.x148 +
0.0001*m.x38*m.x149 + 0.0001*m.x38*m.x150 + 0.0001*m.x38*m.x151 + 0.0001*m.x38*m.x152 + 0.0001*
m.x38*m.x153 + 0.0001*m.x38*m.x154 + 0.0001*m.x38*m.x155 + 0.0001*m.x38*m.x156 + 0.0001*m.x38*
m.x157 + 0.0001*m.x38*m.x158 + 0.0001*m.x38*m.x159 + 0.0001*m.x38*m.x160 + 0.0001*m.x38*m.x161 +
0.0001*m.x38*m.x162 + 0.0001*m.x38*m.x163 + 0.0001*m.x38*m.x164 + 0.0001*m.x38*m.x165 + 0.0001*
m.x38*m.x166 + 0.0001*m.x38*m.x167 + 0.0001*m.x38*m.x168 + 0.0001*m.x38*m.x169 + 0.0001*m.x38*
m.x170 + 0.0001*m.x38*m.x171 + 0.0001*m.x38*m.x172 + 0.0001*m.x38*m.x173 + 0.0001*m.x38*m.x174 +
0.0001*m.x38*m.x175 + 0.0001*m.x38*m.x176 + 0.0001*m.x38*m.x177 + 0.0001*m.x38*m.x178 + 0.0001*
m.x38*m.x179 + 0.0001*m.x38*m.x180 + 0.0001*m.x38*m.x181 + 0.0001*m.x38*m.x182 + 0.0001*m.x38*
m.x183 + 0.0001*m.x38*m.x184 + 0.0001*m.x38*m.x185 + 0.0001*m.x39*m.x1 + 0.0001*m.x39*m.x2 +
0.0001*m.x39*m.x3 + 7.15893955401573*m.x39*m.x4 + 0.0001*m.x39*m.x5 + 0.0001*m.x39*m.x6 + 0.0001*
m.x39*m.x7 + 0.0001*m.x39*m.x8 + 0.0001*m.x39*m.x9 + 0.0001*m.x39*m.x10 + 0.0001*m.x39*m.x11 +
0.0001*m.x39*m.x12 + 0.0001*m.x39*m.x13 + 0.0001*m.x39*m.x14 + 0.0001*m.x39*m.x15 +
5.84911816127454*m.x39*m.x16 + 0.0001*m.x39*m.x17 + 0.0001*m.x39*m.x18 + 0.0001*m.x39*m.x19 +
0.0001*m.x39*m.x20 + 0.0001*m.x39*m.x21 + 0.0001*m.x39*m.x22 + 0.0001*m.x39*m.x23 + 0.0001*m.x39*
m.x24 + 0.0001*m.x39*m.x25 + 0.0001*m.x39*m.x26 + 1.41707980140673*m.x39*m.x27 + 0.0001*m.x39*
m.x28 + 0.0001*m.x39*m.x29 + 0.0001*m.x39*m.x30 + 0.0001*m.x39*m.x31 + 0.0001*m.x39*m.x32 +
0.0001*m.x39*m.x33 + 0.0001*m.x39*m.x34 + 0.0001*m.x39*m.x35 + 0.0001*m.x39*m.x36 + 0.0001*m.x39*
m.x37 + 0.0001*m.x39*m.x38 + 5.77834912042082*m.x39**2 + 0.0001*m.x39*m.x40 + 0.0001*m.x39*m.x41
+ 0.0001*m.x39*m.x42 + 0.0001*m.x39*m.x43 + 0.0001*m.x39*m.x44 + 0.0001*m.x39*m.x45 + 0.0001*
m.x39*m.x46 + 0.0001*m.x39*m.x47 + 0.0001*m.x39*m.x48 + 0.0001*m.x39*m.x49 + 0.0001*m.x39*m.x50
+ 0.0001*m.x39*m.x51 + 0.0001*m.x39*m.x52 + 0.0001*m.x39*m.x53 + 0.0001*m.x39*m.x54 + 0.0001*
m.x39*m.x55 + 0.0001*m.x39*m.x56 + 0.0001*m.x39*m.x57 + 0.0001*m.x39*m.x58 + 0.0001*m.x39*m.x59
+ 0.0001*m.x39*m.x60 + 0.0001*m.x39*m.x61 + 0.0001*m.x39*m.x62 + 0.0001*m.x39*m.x63 + 0.0001*
m.x39*m.x64 + 0.0001*m.x39*m.x65 + 0.0001*m.x39*m.x66 + 0.0001*m.x39*m.x67 + 0.0001*m.x39*m.x68
+ 0.0001*m.x39*m.x69 + 0.0001*m.x39*m.x70 + 0.0001*m.x39*m.x71 + 0.0001*m.x39*m.x72 + 0.0001*
m.x39*m.x73 + 0.0001*m.x39*m.x74 + 0.0001*m.x39*m.x75 + 0.0001*m.x39*m.x76 + 0.0001*m.x39*m.x77
+ 0.0001*m.x39*m.x78 + 0.0001*m.x39*m.x79 + 0.0001*m.x39*m.x80 + 0.0001*m.x39*m.x81 + 0.0001*
m.x39*m.x82 + 0.0001*m.x39*m.x83 + 0.0001*m.x39*m.x84 + 0.0001*m.x39*m.x85 + 0.0001*m.x39*m.x86
+ 0.0001*m.x39*m.x87 + 0.0001*m.x39*m.x88 + 0.0001*m.x39*m.x89 + 0.0001*m.x39*m.x90 + 0.0001*
m.x39*m.x91 + 0.0001*m.x39*m.x92 + 0.0001*m.x39*m.x93 + 0.0001*m.x39*m.x94 + 0.0001*m.x39*m.x95
+ 0.0001*m.x39*m.x96 + 0.0001*m.x39*m.x97 + 0.0001*m.x39*m.x98 + 0.0001*m.x39*m.x99 + 0.0001*
m.x39*m.x100 + 0.0001*m.x39*m.x101 + 0.0001*m.x39*m.x102 + 0.0001*m.x39*m.x103 + 0.0001*m.x39*
m.x104 + 0.0001*m.x39*m.x105 + 0.0001*m.x39*m.x106 + 0.0001*m.x39*m.x107 + 0.0001*m.x39*m.x108 +
0.0001*m.x39*m.x109 + 0.0001*m.x39*m.x110 + 0.0001*m.x39*m.x111 + 0.0001*m.x39*m.x112 + 0.0001*
m.x39*m.x113 + 0.0001*m.x39*m.x114 + 0.0001*m.x39*m.x115 + 0.0001*m.x39*m.x116 + 0.0001*m.x39*
m.x117 + 0.0001*m.x39*m.x118 + 0.0001*m.x39*m.x119 + 0.0001*m.x39*m.x120 + 0.0001*m.x39*m.x121 +
0.0001*m.x39*m.x122 + 0.0001*m.x39*m.x123 + 0.0001*m.x39*m.x124 + 0.0001*m.x39*m.x125 + 0.0001*
m.x39*m.x126 + 0.0001*m.x39*m.x127 + 0.0001*m.x39*m.x128 + 0.0001*m.x39*m.x129 + 0.0001*m.x39*
m.x130 + 0.0001*m.x39*m.x131 + 0.0001*m.x39*m.x132 + 3.00889518410223*m.x39*m.x133 + 0.0001*m.x39
*m.x134 + 0.0001*m.x39*m.x135 + 0.0001*m.x39*m.x136 + 0.0001*m.x39*m.x137 + 0.0001*m.x39*m.x138
+ 0.0001*m.x39*m.x139 + 0.0001*m.x39*m.x140 + 0.0001*m.x39*m.x141 + 0.0001*m.x39*m.x142 + 0.0001
*m.x39*m.x143 + 0.0001*m.x39*m.x144 + 0.0001*m.x39*m.x145 + 0.0001*m.x39*m.x146 + 0.0001*m.x39*
m.x147 + 0.0001*m.x39*m.x148 + 0.0001*m.x39*m.x149 + 0.0001*m.x39*m.x150 + 0.0001*m.x39*m.x151 +
0.0001*m.x39*m.x152 + 0.0001*m.x39*m.x153 + 0.0001*m.x39*m.x154 + 0.0001*m.x39*m.x155 + 0.0001*
m.x39*m.x156 + 0.0001*m.x39*m.x157 + 0.0001*m.x39*m.x158 + 0.0001*m.x39*m.x159 + 0.0001*m.x39*
m.x160 + 0.0001*m.x39*m.x161 + 0.0001*m.x39*m.x162 + 0.0001*m.x39*m.x163 + 0.0001*m.x39*m.x164 +
0.0001*m.x39*m.x165 + 0.0001*m.x39*m.x166 + 0.0001*m.x39*m.x167 + 0.0001*m.x39*m.x168 + 0.0001*
m.x39*m.x169 + 0.0001*m.x39*m.x170 + 0.0001*m.x39*m.x171 + 0.0001*m.x39*m.x172 + 0.0001*m.x39*
m.x173 + 0.0001*m.x39*m.x174 + 0.0001*m.x39*m.x175 + 0.0001*m.x39*m.x176 + 0.0001*m.x39*m.x177 +
0.0001*m.x39*m.x178 + 0.0001*m.x39*m.x179 + 0.0001*m.x39*m.x180 + 0.0001*m.x39*m.x181 + 0.0001*
m.x39*m.x182 + 0.0001*m.x39*m.x183 + 0.0001*m.x39*m.x184 + 0.0001*m.x39*m.x185 + 0.0001*m.x40*
m.x1 + 0.0001*m.x40*m.x2 + 0.0001*m.x40*m.x3 + 0.0001*m.x40*m.x4 + 7.17752787044043*m.x40*m.x5 +
0.0001*m.x40*m.x6 + 0.0001*m.x40*m.x7 + 0.0001*m.x40*m.x8 + 0.0001*m.x40*m.x9 + 0.0001*m.x40*
m.x10 + 0.0001*m.x40*m.x11 + 0.0001*m.x40*m.x12 + 0.0001*m.x40*m.x13 + 0.0001*m.x40*m.x14 +
0.0001*m.x40*m.x15 + 0.0001*m.x40*m.x16 + 5.72841015580757*m.x40*m.x17 + 0.0001*m.x40*m.x18 +
0.0001*m.x40*m.x19 + 0.0001*m.x40*m.x20 + 0.0001*m.x40*m.x21 + 0.0001*m.x40*m.x22 + 0.0001*m.x40*
m.x23 + 0.0001*m.x40*m.x24 + 0.0001*m.x40*m.x25 + 0.0001*m.x40*m.x26 + 0.0001*m.x40*m.x27 +
1.3877827117399*m.x40*m.x28 + 0.0001*m.x40*m.x29 + 0.0001*m.x40*m.x30 + 0.0001*m.x40*m.x31 +
0.0001*m.x40*m.x32 + 0.0001*m.x40*m.x33 + 0.0001*m.x40*m.x34 + 0.0001*m.x40*m.x35 + 0.0001*m.x40*
m.x36 + 0.0001*m.x40*m.x37 + 0.0001*m.x40*m.x38 + 0.0001*m.x40*m.x39 + 5.65822098870502*m.x40**2
+ 0.0001*m.x40*m.x41 + 0.0001*m.x40*m.x42 + 0.0001*m.x40*m.x43 + 0.0001*m.x40*m.x44 + 0.0001*
m.x40*m.x45 + 0.0001*m.x40*m.x46 + 0.0001*m.x40*m.x47 + 0.0001*m.x40*m.x48 + 0.0001*m.x40*m.x49
+ 0.0001*m.x40*m.x50 + 0.0001*m.x40*m.x51 + 0.0001*m.x40*m.x52 + 0.0001*m.x40*m.x53 + 0.0001*
m.x40*m.x54 + 0.0001*m.x40*m.x55 + 0.0001*m.x40*m.x56 + 0.0001*m.x40*m.x57 + 0.0001*m.x40*m.x58
+ 0.0001*m.x40*m.x59 + 0.0001*m.x40*m.x60 + 0.0001*m.x40*m.x61 + 0.0001*m.x40*m.x62 + 0.0001*
m.x40*m.x63 + 0.0001*m.x40*m.x64 + 0.0001*m.x40*m.x65 + 0.0001*m.x40*m.x66 + 0.0001*m.x40*m.x67
+ 0.0001*m.x40*m.x68 + 0.0001*m.x40*m.x69 + 0.0001*m.x40*m.x70 + 0.0001*m.x40*m.x71 + 0.0001*
m.x40*m.x72 + 0.0001*m.x40*m.x73 + 0.0001*m.x40*m.x74 + 0.0001*m.x40*m.x75 + 0.0001*m.x40*m.x76
+ 0.0001*m.x40*m.x77 + 0.0001*m.x40*m.x78 + 0.0001*m.x40*m.x79 + 0.0001*m.x40*m.x80 + 0.0001*
m.x40*m.x81 + 0.0001*m.x40*m.x82 + 0.0001*m.x40*m.x83 + 0.0001*m.x40*m.x84 + 0.0001*m.x40*m.x85
+ 0.0001*m.x40*m.x86 + 0.0001*m.x40*m.x87 + 0.0001*m.x40*m.x88 + 0.0001*m.x40*m.x89 + 0.0001*
m.x40*m.x90 + 0.0001*m.x40*m.x91 + 0.0001*m.x40*m.x92 + 0.0001*m.x40*m.x93 + 0.0001*m.x40*m.x94
+ 0.0001*m.x40*m.x95 + 0.0001*m.x40*m.x96 + 0.0001*m.x40*m.x97 + 0.0001*m.x40*m.x98 + 0.0001*
m.x40*m.x99 + 0.0001*m.x40*m.x100 + 0.0001*m.x40*m.x101 + 0.0001*m.x40*m.x102 + 0.0001*m.x40*
m.x103 + 0.0001*m.x40*m.x104 + 0.0001*m.x40*m.x105 + 0.0001*m.x40*m.x106 + 0.0001*m.x40*m.x107 +
0.0001*m.x40*m.x108 + 0.0001*m.x40*m.x109 + 0.0001*m.x40*m.x110 + 0.0001*m.x40*m.x111 + 0.0001*
m.x40*m.x112 + 0.0001*m.x40*m.x113 + 0.0001*m.x40*m.x114 + 0.0001*m.x40*m.x115 + 0.0001*m.x40*
m.x116 + 0.0001*m.x40*m.x117 + 0.0001*m.x40*m.x118 + 0.0001*m.x40*m.x119 + 0.0001*m.x40*m.x120 +
0.0001*m.x40*m.x121 + 0.0001*m.x40*m.x122 + 0.0001*m.x40*m.x123 + 0.0001*m.x40*m.x124 + 0.0001*
m.x40*m.x125 + 0.0001*m.x40*m.x126 + 0.0001*m.x40*m.x127 + 0.0001*m.x40*m.x128 + 0.0001*m.x40*
m.x129 + 0.0001*m.x40*m.x130 + 0.0001*m.x40*m.x131 + 0.0001*m.x40*m.x132 + 0.0001*m.x40*m.x133 +
2.94634320050838*m.x40*m.x134 + 0.0001*m.x40*m.x135 + 0.0001*m.x40*m.x136 + 0.0001*m.x40*m.x137
+ 0.0001*m.x40*m.x138 + 0.0001*m.x40*m.x139 + 0.0001*m.x40*m.x140 + 0.0001*m.x40*m.x141 + 0.0001
*m.x40*m.x142 + 0.0001*m.x40*m.x143 + 0.0001*m.x40*m.x144 + 0.0001*m.x40*m.x145 + 0.0001*m.x40*
m.x146 + 0.0001*m.x40*m.x147 + 0.0001*m.x40*m.x148 + 0.0001*m.x40*m.x149 + 0.0001*m.x40*m.x150 +
0.0001*m.x40*m.x151 + 0.0001*m.x40*m.x152 + 0.0001*m.x40*m.x153 + 0.0001*m.x40*m.x154 + 0.0001*
m.x40*m.x155 + 0.0001*m.x40*m.x156 + 0.0001*m.x40*m.x157 + 0.0001*m.x40*m.x158 + 0.0001*m.x40*
m.x159 + 0.0001*m.x40*m.x160 + 0.0001*m.x40*m.x161 + 0.0001*m.x40*m.x162 + 0.0001*m.x40*m.x163 +
0.0001*m.x40*m.x164 + 0.0001*m.x40*m.x165 + 0.0001*m.x40*m.x166 + 0.0001*m.x40*m.x167 + 0.0001*
m.x40*m.x168 + 0.0001*m.x40*m.x169 + 0.0001*m.x40*m.x170 + 0.0001*m.x40*m.x171 + 0.0001*m.x40*
m.x172 + 0.0001*m.x40*m.x173 + 0.0001*m.x40*m.x174 + 0.0001*m.x40*m.x175 + 0.0001*m.x40*m.x176 +
0.0001*m.x40*m.x177 + 0.0001*m.x40*m.x178 + 0.0001*m.x40*m.x179 + 0.0001*m.x40*m.x180 + 0.0001*
m.x40*m.x181 + 0.0001*m.x40*m.x182 + 0.0001*m.x40*m.x183 + 0.0001*m.x40*m.x184 + 0.0001*m.x40*
m.x185 + 0.0001*m.x41*m.x1 + 0.0001*m.x41*m.x2 + 0.0001*m.x41*m.x3 + 0.0001*m.x41*m.x4 + 0.0001*
m.x41*m.x5 + 7.17765398594047*m.x41*m.x6 + 0.0001*m.x41*m.x7 + 0.0001*m.x41*m.x8 + 0.0001*m.x41*
m.x9 + 0.0001*m.x41*m.x10 + 0.0001*m.x41*m.x11 + 0.0001*m.x41*m.x12 + 0.0001*m.x41*m.x13 + 0.0001
*m.x41*m.x14 + 0.0001*m.x41*m.x15 + 0.0001*m.x41*m.x16 + 0.0001*m.x41*m.x17 + 5.72772003780067*
m.x41*m.x18 + 0.0001*m.x41*m.x19 + 0.0001*m.x41*m.x20 + 0.0001*m.x41*m.x21 + 0.0001*m.x41*m.x22
+ 0.0001*m.x41*m.x23 + 0.0001*m.x41*m.x24 + 0.0001*m.x41*m.x25 + 0.0001*m.x41*m.x26 + 0.0001*
m.x41*m.x27 + 0.0001*m.x41*m.x28 + 1.39418925971928*m.x41*m.x29 + 0.0001*m.x41*m.x30 + 0.0001*
m.x41*m.x31 + 0.0001*m.x41*m.x32 + 0.0001*m.x41*m.x33 + 0.0001*m.x41*m.x34 + 0.0001*m.x41*m.x35
+ 0.0001*m.x41*m.x36 + 0.0001*m.x41*m.x37 + 0.0001*m.x41*m.x38 + 0.0001*m.x41*m.x39 + 0.0001*
m.x41*m.x40 + 5.65841982958224*m.x41**2 + 0.0001*m.x41*m.x42 + 0.0001*m.x41*m.x43 + 0.0001*m.x41*
m.x44 + 0.0001*m.x41*m.x45 + 0.0001*m.x41*m.x46 + 0.0001*m.x41*m.x47 + 0.0001*m.x41*m.x48 +
0.0001*m.x41*m.x49 + 0.0001*m.x41*m.x50 + 0.0001*m.x41*m.x51 + 0.0001*m.x41*m.x52 + 0.0001*m.x41*
m.x53 + 0.0001*m.x41*m.x54 + 0.0001*m.x41*m.x55 + 0.0001*m.x41*m.x56 + 0.0001*m.x41*m.x57 +
0.0001*m.x41*m.x58 + 0.0001*m.x41*m.x59 + 0.0001*m.x41*m.x60 + 0.0001*m.x41*m.x61 + 0.0001*m.x41*
m.x62 + 0.0001*m.x41*m.x63 + 0.0001*m.x41*m.x64 + 0.0001*m.x41*m.x65 + 0.0001*m.x41*m.x66 +
0.0001*m.x41*m.x67 + 0.0001*m.x41*m.x68 + 0.0001*m.x41*m.x69 + 0.0001*m.x41*m.x70 + 0.0001*m.x41*
m.x71 + 0.0001*m.x41*m.x72 + 0.0001*m.x41*m.x73 + 0.0001*m.x41*m.x74 + 0.0001*m.x41*m.x75 +
0.0001*m.x41*m.x76 + 0.0001*m.x41*m.x77 + 0.0001*m.x41*m.x78 + 0.0001*m.x41*m.x79 + 0.0001*m.x41*
m.x80 + 0.0001*m.x41*m.x81 + 0.0001*m.x41*m.x82 + 0.0001*m.x41*m.x83 + 0.0001*m.x41*m.x84 +
0.0001*m.x41*m.x85 + 0.0001*m.x41*m.x86 + 0.0001*m.x41*m.x87 + 0.0001*m.x41*m.x88 + 0.0001*m.x41*
m.x89 + 0.0001*m.x41*m.x90 + 0.0001*m.x41*m.x91 + 0.0001*m.x41*m.x92 + 0.0001*m.x41*m.x93 +
0.0001*m.x41*m.x94 + 0.0001*m.x41*m.x95 + 0.0001*m.x41*m.x96 + 0.0001*m.x41*m.x97 + 0.0001*m.x41*
m.x98 + 0.0001*m.x41*m.x99 + 0.0001*m.x41*m.x100 + 0.0001*m.x41*m.x101 + 0.0001*m.x41*m.x102 +
0.0001*m.x41*m.x103 + 0.0001*m.x41*m.x104 + 0.0001*m.x41*m.x105 + 0.0001*m.x41*m.x106 + 0.0001*
m.x41*m.x107 + 0.0001*m.x41*m.x108 + 0.0001*m.x41*m.x109 + 0.0001*m.x41*m.x110 + 0.0001*m.x41*
m.x111 + 0.0001*m.x41*m.x112 + 0.0001*m.x41*m.x113 + 0.0001*m.x41*m.x114 + 0.0001*m.x41*m.x115 +
0.0001*m.x41*m.x116 + 0.0001*m.x41*m.x117 + 0.0001*m.x41*m.x118 + 0.0001*m.x41*m.x119 + 0.0001*
m.x41*m.x120 + 0.0001*m.x41*m.x121 + 0.0001*m.x41*m.x122 + 0.0001*m.x41*m.x123 + 0.0001*m.x41*
m.x124 + 0.0001*m.x41*m.x125 + 0.0001*m.x41*m.x126 + 0.0001*m.x41*m.x127 + 0.0001*m.x41*m.x128 +
0.0001*m.x41*m.x129 + 0.0001*m.x41*m.x130 + 0.0001*m.x41*m.x131 + 0.0001*m.x41*m.x132 + 0.0001*
m.x41*m.x133 + 0.0001*m.x41*m.x134 + 2.99630448617448*m.x41*m.x135 + 0.0001*m.x41*m.x136 + 0.0001
*m.x41*m.x137 + 0.0001*m.x41*m.x138 + 0.0001*m.x41*m.x139 + 0.0001*m.x41*m.x140 + 0.0001*m.x41*
m.x141 + 0.0001*m.x41*m.x142 + 0.0001*m.x41*m.x143 + 0.0001*m.x41*m.x144 + 0.0001*m.x41*m.x145 +
0.0001*m.x41*m.x146 + 0.0001*m.x41*m.x147 + 0.0001*m.x41*m.x148 + 0.0001*m.x41*m.x149 + 0.0001*
m.x41*m.x150 + 0.0001*m.x41*m.x151 + 0.0001*m.x41*m.x152 + 0.0001*m.x41*m.x153 + 0.0001*m.x41*
m.x154 + 0.0001*m.x41*m.x155 + 0.0001*m.x41*m.x156 + 0.0001*m.x41*m.x157 + 0.0001*m.x41*m.x158 +
0.0001*m.x41*m.x159 + 0.0001*m.x41*m.x160 + 0.0001*m.x41*m.x161 + 0.0001*m.x41*m.x162 + 0.0001*
m.x41*m.x163 + 0.0001*m.x41*m.x164 + 0.0001*m.x41*m.x165 + 0.0001*m.x41*m.x166 + 0.0001*m.x41*
m.x167 + 0.0001*m.x41*m.x168 + 0.0001*m.x41*m.x169 + 0.0001*m.x41*m.x170 + 0.0001*m.x41*m.x171 +
0.0001*m.x41*m.x172 + 0.0001*m.x41*m.x173 + 0.0001*m.x41*m.x174 + 0.0001*m.x41*m.x175 + 0.0001*
m.x41*m.x176 + 0.0001*m.x41*m.x177 + 0.0001*m.x41*m.x178 + 0.0001*m.x41*m.x179 + 0.0001*m.x41*
m.x180 + 0.0001*m.x41*m.x181 + 0.0001*m.x41*m.x182 + 0.0001*m.x41*m.x183 + 0.0001*m.x41*m.x184 +
0.0001*m.x41*m.x185 + 0.0001*m.x42*m.x1 + 0.0001*m.x42*m.x2 + 0.0001*m.x42*m.x3 + 0.0001*m.x42*
m.x4 + 0.0001*m.x42*m.x5 + 0.0001*m.x42*m.x6 + 7.14703239270426*m.x42*m.x7 + 0.0001*m.x42*m.x8 +
0.0001*m.x42*m.x9 + 0.0001*m.x42*m.x10 + 0.0001*m.x42*m.x11 + 0.0001*m.x42*m.x12 + 0.0001*m.x42*
m.x13 + 0.0001*m.x42*m.x14 + 0.0001*m.x42*m.x15 + 0.0001*m.x42*m.x16 + 0.0001*m.x42*m.x17 +
0.0001*m.x42*m.x18 + 5.81931980408252*m.x42*m.x19 + 0.0001*m.x42*m.x20 + 0.0001*m.x42*m.x21 +
0.0001*m.x42*m.x22 + 0.0001*m.x42*m.x23 + 0.0001*m.x42*m.x24 + 0.0001*m.x42*m.x25 + 0.0001*m.x42*
m.x26 + 0.0001*m.x42*m.x27 + 0.0001*m.x42*m.x28 + 0.0001*m.x42*m.x29 + 1.35554864831098*m.x42*
m.x30 + 0.0001*m.x42*m.x31 + 0.0001*m.x42*m.x32 + 0.0001*m.x42*m.x33 + 0.0001*m.x42*m.x34 +
0.0001*m.x42*m.x35 + 0.0001*m.x42*m.x36 + 0.0001*m.x42*m.x37 + 0.0001*m.x42*m.x38 + 0.0001*m.x42*
m.x39 + 0.0001*m.x42*m.x40 + 0.0001*m.x42*m.x41 + 5.61024264704393*m.x42**2 + 0.0001*m.x42*m.x43
+ 0.0001*m.x42*m.x44 + 0.0001*m.x42*m.x45 + 0.0001*m.x42*m.x46 + 0.0001*m.x42*m.x47 + 0.0001*
m.x42*m.x48 + 0.0001*m.x42*m.x49 + 0.0001*m.x42*m.x50 + 0.0001*m.x42*m.x51 + 0.0001*m.x42*m.x52
+ 0.0001*m.x42*m.x53 + 0.0001*m.x42*m.x54 + 0.0001*m.x42*m.x55 + 0.0001*m.x42*m.x56 + 0.0001*
m.x42*m.x57 + 0.0001*m.x42*m.x58 + 0.0001*m.x42*m.x59 + 0.0001*m.x42*m.x60 + 0.0001*m.x42*m.x61
+ 0.0001*m.x42*m.x62 + 0.0001*m.x42*m.x63 + 0.0001*m.x42*m.x64 + 0.0001*m.x42*m.x65 + 0.0001*
m.x42*m.x66 + 0.0001*m.x42*m.x67 + 0.0001*m.x42*m.x68 + 0.0001*m.x42*m.x69 + 0.0001*m.x42*m.x70
+ 0.0001*m.x42*m.x71 + 0.0001*m.x42*m.x72 + 0.0001*m.x42*m.x73 + 0.0001*m.x42*m.x74 + 0.0001*
m.x42*m.x75 + 0.0001*m.x42*m.x76 + 0.0001*m.x42*m.x77 + 0.0001*m.x42*m.x78 + 0.0001*m.x42*m.x79
+ 0.0001*m.x42*m.x80 + 0.0001*m.x42*m.x81 + 0.0001*m.x42*m.x82 + 0.0001*m.x42*m.x83 + 0.0001*
m.x42*m.x84 + 0.0001*m.x42*m.x85 + 0.0001*m.x42*m.x86 + 0.0001*m.x42*m.x87 + 0.0001*m.x42*m.x88
+ 0.0001*m.x42*m.x89 + 0.0001*m.x42*m.x90 + 0.0001*m.x42*m.x91 + 0.0001*m.x42*m.x92 + 0.0001*
m.x42*m.x93 + 0.0001*m.x42*m.x94 + 0.0001*m.x42*m.x95 + 0.0001*m.x42*m.x96 + 0.0001*m.x42*m.x97
+ 0.0001*m.x42*m.x98 + 0.0001*m.x42*m.x99 + 0.0001*m.x42*m.x100 + 0.0001*m.x42*m.x101 + 0.0001*
m.x42*m.x102 + 0.0001*m.x42*m.x103 + 0.0001*m.x42*m.x104 + 0.0001*m.x42*m.x105 + 0.0001*m.x42*
m.x106 + 0.0001*m.x42*m.x107 + 0.0001*m.x42*m.x108 + 0.0001*m.x42*m.x109 + 0.0001*m.x42*m.x110 +
0.0001*m.x42*m.x111 + 0.0001*m.x42*m.x112 + 0.0001*m.x42*m.x113 + 0.0001*m.x42*m.x114 + 0.0001*
m.x42*m.x115 + 0.0001*m.x42*m.x116 + 0.0001*m.x42*m.x117 + 0.0001*m.x42*m.x118 + 0.0001*m.x42*
m.x119 + 0.0001*m.x42*m.x120 + 0.0001*m.x42*m.x121 + 0.0001*m.x42*m.x122 + 0.0001*m.x42*m.x123 +
0.0001*m.x42*m.x124 + 0.0001*m.x42*m.x125 + 0.0001*m.x42*m.x126 + 0.0001*m.x42*m.x127 + 0.0001*
m.x42*m.x128 + 0.0001*m.x42*m.x129 + 0.0001*m.x42*m.x130 + 0.0001*m.x42*m.x131 + 0.0001*m.x42*
m.x132 + 0.0001*m.x42*m.x133 + 0.0001*m.x42*m.x134 + 0.0001*m.x42*m.x135 + 3.0433224117282*m.x42*
m.x136 + 0.0001*m.x42*m.x137 + 0.0001*m.x42*m.x138 + 0.0001*m.x42*m.x139 + 0.0001*m.x42*m.x140 +
0.0001*m.x42*m.x141 + 0.0001*m.x42*m.x142 + 0.0001*m.x42*m.x143 + 0.0001*m.x42*m.x144 + 0.0001*
m.x42*m.x145 + 0.0001*m.x42*m.x146 + 0.0001*m.x42*m.x147 + 0.0001*m.x42*m.x148 + 0.0001*m.x42*
m.x149 + 0.0001*m.x42*m.x150 + 0.0001*m.x42*m.x151 + 0.0001*m.x42*m.x152 + 0.0001*m.x42*m.x153 +
0.0001*m.x42*m.x154 + 0.0001*m.x42*m.x155 + 0.0001*m.x42*m.x156 + 0.0001*m.x42*m.x157 + 0.0001*
m.x42*m.x158 + 0.0001*m.x42*m.x159 + 0.0001*m.x42*m.x160 + 0.0001*m.x42*m.x161 + 0.0001*m.x42*
m.x162 + 0.0001*m.x42*m.x163 + 0.0001*m.x42*m.x164 + 0.0001*m.x42*m.x165 + 0.0001*m.x42*m.x166 +
0.0001*m.x42*m.x167 + 0.0001*m.x42*m.x168 + 0.0001*m.x42*m.x169 + 0.0001*m.x42*m.x170 + 0.0001*
m.x42*m.x171 + 0.0001*m.x42*m.x172 + 0.0001*m.x42*m.x173 + 0.0001*m.x42*m.x174 + 0.0001*m.x42*
m.x175 + 0.0001*m.x42*m.x176 + 0.0001*m.x42*m.x177 + 0.0001*m.x42*m.x178 + 0.0001*m.x42*m.x179 +
0.0001*m.x42*m.x180 + 0.0001*m.x42*m.x181 + 0.0001*m.x42*m.x182 + 0.0001*m.x42*m.x183 + 0.0001*
m.x42*m.x184 + 0.0001*m.x42*m.x185 + 0.0001*m.x43*m.x1 + 0.0001*m.x43*m.x2 + 0.0001*m.x43*m.x3 +
0.0001*m.x43*m.x4 + 0.0001*m.x43*m.x5 + 0.0001*m.x43*m.x6 + 0.0001*m.x43*m.x7 + 7.18432027380264*
m.x43*m.x8 + 0.0001*m.x43*m.x9 + 0.0001*m.x43*m.x10 + 0.0001*m.x43*m.x11 + 0.0001*m.x43*m.x12 +
0.0001*m.x43*m.x13 + 0.0001*m.x43*m.x14 + 0.0001*m.x43*m.x15 + 0.0001*m.x43*m.x16 + 0.0001*m.x43*
m.x17 + 0.0001*m.x43*m.x18 + 0.0001*m.x43*m.x19 + 6.46083797120433*m.x43*m.x20 + 0.0001*m.x43*
m.x21 + 0.0001*m.x43*m.x22 + 0.0001*m.x43*m.x23 + 0.0001*m.x43*m.x24 + 0.0001*m.x43*m.x25 +
0.0001*m.x43*m.x26 + 0.0001*m.x43*m.x27 + 0.0001*m.x43*m.x28 + 0.0001*m.x43*m.x29 + 0.0001*m.x43*
m.x30 + 1.50497502534561*m.x43*m.x31 + 0.0001*m.x43*m.x32 + 0.0001*m.x43*m.x33 + 0.0001*m.x43*
m.x34 + 0.0001*m.x43*m.x35 + 0.0001*m.x43*m.x36 + 0.0001*m.x43*m.x37 + 0.0001*m.x43*m.x38 +
0.0001*m.x43*m.x39 + 0.0001*m.x43*m.x40 + 0.0001*m.x43*m.x41 + 0.0001*m.x43*m.x42 +
6.2287118833664*m.x43**2 + 0.0001*m.x43*m.x44 + 0.0001*m.x43*m.x45 + 0.0001*m.x43*m.x46 + 0.0001*
m.x43*m.x47 + 0.0001*m.x43*m.x48 + 0.0001*m.x43*m.x49 + 0.0001*m.x43*m.x50 + 0.0001*m.x43*m.x51
+ 0.0001*m.x43*m.x52 + 0.0001*m.x43*m.x53 + 0.0001*m.x43*m.x54 + 0.0001*m.x43*m.x55 + 0.0001*
m.x43*m.x56 + 0.0001*m.x43*m.x57 + 0.0001*m.x43*m.x58 + 0.0001*m.x43*m.x59 + 0.0001*m.x43*m.x60
+ 0.0001*m.x43*m.x61 + 0.0001*m.x43*m.x62 + 0.0001*m.x43*m.x63 + 0.0001*m.x43*m.x64 + 0.0001*
m.x43*m.x65 + 0.0001*m.x43*m.x66 + 0.0001*m.x43*m.x67 + 0.0001*m.x43*m.x68 + 0.0001*m.x43*m.x69
+ 0.0001*m.x43*m.x70 + 0.0001*m.x43*m.x71 + 0.0001*m.x43*m.x72 + 0.0001*m.x43*m.x73 + 0.0001*
m.x43*m.x74 + 0.0001*m.x43*m.x75 + 0.0001*m.x43*m.x76 + 0.0001*m.x43*m.x77 + 0.0001*m.x43*m.x78
+ 0.0001*m.x43*m.x79 + 0.0001*m.x43*m.x80 + 0.0001*m.x43*m.x81 + 0.0001*m.x43*m.x82 + 0.0001*
m.x43*m.x83 + 0.0001*m.x43*m.x84 + 0.0001*m.x43*m.x85 + 0.0001*m.x43*m.x86 + 0.0001*m.x43*m.x87
+ 0.0001*m.x43*m.x88 + 0.0001*m.x43*m.x89 + 0.0001*m.x43*m.x90 + 0.0001*m.x43*m.x91 + 0.0001*
m.x43*m.x92 + 0.0001*m.x43*m.x93 + 0.0001*m.x43*m.x94 + 0.0001*m.x43*m.x95 + 0.0001*m.x43*m.x96
+ 0.0001*m.x43*m.x97 + 0.0001*m.x43*m.x98 + 0.0001*m.x43*m.x99 + 0.0001*m.x43*m.x100 + 0.0001*
m.x43*m.x101 + 0.0001*m.x43*m.x102 + 0.0001*m.x43*m.x103 + 0.0001*m.x43*m.x104 + 0.0001*m.x43*
m.x105 + 0.0001*m.x43*m.x106 + 0.0001*m.x43*m.x107 + 0.0001*m.x43*m.x108 + 0.0001*m.x43*m.x109 +
0.0001*m.x43*m.x110 + 0.0001*m.x43*m.x111 + 0.0001*m.x43*m.x112 + 0.0001*m.x43*m.x113 + 0.0001*
m.x43*m.x114 + 0.0001*m.x43*m.x115 + 0.0001*m.x43*m.x116 + 0.0001*m.x43*m.x117 + 0.0001*m.x43*
m.x118 + 0.0001*m.x43*m.x119 + 0.0001*m.x43*m.x120 + 0.0001*m.x43*m.x121 + 0.0001*m.x43*m.x122 +
0.0001*m.x43*m.x123 + 0.0001*m.x43*m.x124 + 0.0001*m.x43*m.x125 + 0.0001*m.x43*m.x126 + 0.0001*
m.x43*m.x127 + 0.0001*m.x43*m.x128 + 0.0001*m.x43*m.x129 + 0.0001*m.x43*m.x130 + 0.0001*m.x43*
m.x131 + 0.0001*m.x43*m.x132 + 0.0001*m.x43*m.x133 + 0.0001*m.x43*m.x134 + 0.0001*m.x43*m.x135 +
0.0001*m.x43*m.x136 + 3.3788111077122*m.x43*m.x137 + 0.0001*m.x43*m.x138 + 0.0001*m.x43*m.x139 +
0.0001*m.x43*m.x140 + 0.0001*m.x43*m.x141 + 0.0001*m.x43*m.x142 + 0.0001*m.x43*m.x143 + 0.0001*
m.x43*m.x144 + 0.0001*m.x43*m.x145 + 0.0001*m.x43*m.x146 + 0.0001*m.x43*m.x147 + 0.0001*m.x43*
m.x148 + 0.0001*m.x43*m.x149 + 0.0001*m.x43*m.x150 + 0.0001*m.x43*m.x151 + 0.0001*m.x43*m.x152 +
0.0001*m.x43*m.x153 + 0.0001*m.x43*m.x154 + 0.0001*m.x43*m.x155 + 0.0001*m.x43*m.x156 + 0.0001*
m.x43*m.x157 + 0.0001*m.x43*m.x158 + 0.0001*m.x43*m.x159 + 0.0001*m.x43*m.x160 + 0.0001*m.x43*
m.x161 + 0.0001*m.x43*m.x162 + 0.0001*m.x43*m.x163 + 0.0001*m.x43*m.x164 + 0.0001*m.x43*m.x165 +
0.0001*m.x43*m.x166 + 0.0001*m.x43*m.x167 + 0.0001*m.x43*m.x168 + 0.0001*m.x43*m.x169 + 0.0001*
m.x43*m.x170 + 0.0001*m.x43*m.x171 + 0.0001*m.x43*m.x172 + 0.0001*m.x43*m.x173 + 0.0001*m.x43*
m.x174 + 0.0001*m.x43*m.x175 + 0.0001*m.x43*m.x176 + 0.0001*m.x43*m.x177 + 0.0001*m.x43*m.x178 +
0.0001*m.x43*m.x179 + 0.0001*m.x43*m.x180 + 0.0001*m.x43*m.x181 + 0.0001*m.x43*m.x182 + 0.0001*
m.x43*m.x183 + 0.0001*m.x43*m.x184 + 0.0001*m.x43*m.x185 + 0.0001*m.x44*m.x1 + 0.0001*m.x44*m.x2
+ 0.0001*m.x44*m.x3 + 0.0001*m.x44*m.x4 + 0.0001*m.x44*m.x5 + 0.0001*m.x44*m.x6 + 0.0001*m.x44*
m.x7 + 0.0001*m.x44*m.x8 + 7.18432027380264*m.x44*m.x9 + 0.0001*m.x44*m.x10 + 0.0001*m.x44*m.x11
+ 0.0001*m.x44*m.x12 + 0.0001*m.x44*m.x13 + 0.0001*m.x44*m.x14 + 0.0001*m.x44*m.x15 + 0.0001*
m.x44*m.x16 + 0.0001*m.x44*m.x17 + 0.0001*m.x44*m.x18 + 0.0001*m.x44*m.x19 + 0.0001*m.x44*m.x20
+ 6.46083797120433*m.x44*m.x21 + 0.0001*m.x44*m.x22 + 0.0001*m.x44*m.x23 + 0.0001*m.x44*m.x24 +
0.0001*m.x44*m.x25 + 0.0001*m.x44*m.x26 + 0.0001*m.x44*m.x27 + 0.0001*m.x44*m.x28 + 0.0001*m.x44*
m.x29 + 0.0001*m.x44*m.x30 + 0.0001*m.x44*m.x31 + 1.57033161734872*m.x44*m.x32 + 0.0001*m.x44*
m.x33 + 0.0001*m.x44*m.x34 + 0.0001*m.x44*m.x35 + 0.0001*m.x44*m.x36 + 0.0001*m.x44*m.x37 +
0.0001*m.x44*m.x38 + 0.0001*m.x44*m.x39 + 0.0001*m.x44*m.x40 + 0.0001*m.x44*m.x41 + 0.0001*m.x44*
m.x42 + 0.0001*m.x44*m.x43 + 6.2287118833664*m.x44**2 + 0.0001*m.x44*m.x45 + 0.0001*m.x44*m.x46
+ 0.0001*m.x44*m.x47 + 0.0001*m.x44*m.x48 + 0.0001*m.x44*m.x49 + 0.0001*m.x44*m.x50 + 0.0001*
m.x44*m.x51 + 0.0001*m.x44*m.x52 + 0.0001*m.x44*m.x53 + 0.0001*m.x44*m.x54 + 0.0001*m.x44*m.x55
+ 0.0001*m.x44*m.x56 + 0.0001*m.x44*m.x57 + 0.0001*m.x44*m.x58 + 0.0001*m.x44*m.x59 + 0.0001*
m.x44*m.x60 + 0.0001*m.x44*m.x61 + 0.0001*m.x44*m.x62 + 0.0001*m.x44*m.x63 + 0.0001*m.x44*m.x64
+ 0.0001*m.x44*m.x65 + 0.0001*m.x44*m.x66 + 0.0001*m.x44*m.x67 + 0.0001*m.x44*m.x68 + 0.0001*
m.x44*m.x69 + 0.0001*m.x44*m.x70 + 0.0001*m.x44*m.x71 + 0.0001*m.x44*m.x72 + 0.0001*m.x44*m.x73
+ 0.0001*m.x44*m.x74 + 0.0001*m.x44*m.x75 + 0.0001*m.x44*m.x76 + 0.0001*m.x44*m.x77 + 0.0001*
m.x44*m.x78 + 0.0001*m.x44*m.x79 + 0.0001*m.x44*m.x80 + 0.0001*m.x44*m.x81 + 0.0001*m.x44*m.x82
+ 0.0001*m.x44*m.x83 + 0.0001*m.x44*m.x84 + 0.0001*m.x44*m.x85 + 0.0001*m.x44*m.x86 + 0.0001*
m.x44*m.x87 + 0.0001*m.x44*m.x88 + 0.0001*m.x44*m.x89 + 0.0001*m.x44*m.x90 + 0.0001*m.x44*m.x91
+ 0.0001*m.x44*m.x92 + 0.0001*m.x44*m.x93 + 0.0001*m.x44*m.x94 + 0.0001*m.x44*m.x95 + 0.0001*
m.x44*m.x96 + 0.0001*m.x44*m.x97 + 0.0001*m.x44*m.x98 + 0.0001*m.x44*m.x99 + 0.0001*m.x44*m.x100
+ 0.0001*m.x44*m.x101 + 0.0001*m.x44*m.x102 + 0.0001*m.x44*m.x103 + 0.0001*m.x44*m.x104 + 0.0001
*m.x44*m.x105 + 0.0001*m.x44*m.x106 + 0.0001*m.x44*m.x107 + 0.0001*m.x44*m.x108 + 0.0001*m.x44*
m.x109 + 0.0001*m.x44*m.x110 + 0.0001*m.x44*m.x111 + 0.0001*m.x44*m.x112 + 0.0001*m.x44*m.x113 +
0.0001*m.x44*m.x114 + 0.0001*m.x44*m.x115 + 0.0001*m.x44*m.x116 + 0.0001*m.x44*m.x117 + 0.0001*
m.x44*m.x118 + 0.0001*m.x44*m.x119 + 0.0001*m.x44*m.x120 + 0.0001*m.x44*m.x121 + 0.0001*m.x44*
m.x122 + 0.0001*m.x44*m.x123 + 0.0001*m.x44*m.x124 + 0.0001*m.x44*m.x125 + 0.0001*m.x44*m.x126 +
0.0001*m.x44*m.x127 + 0.0001*m.x44*m.x128 + 0.0001*m.x44*m.x129 + 0.0001*m.x44*m.x130 + 0.0001*
m.x44*m.x131 + 0.0001*m.x44*m.x132 + 0.0001*m.x44*m.x133 + 0.0001*m.x44*m.x134 + 0.0001*m.x44*
m.x135 + 0.0001*m.x44*m.x136 + 0.0001*m.x44*m.x137 + 3.40026111937272*m.x44*m.x138 + 0.0001*m.x44
*m.x139 + 0.0001*m.x44*m.x140 + 0.0001*m.x44*m.x141 + 0.0001*m.x44*m.x142 + 0.0001*m.x44*m.x143
+ 0.0001*m.x44*m.x144 + 0.0001*m.x44*m.x145 + 0.0001*m.x44*m.x146 + 0.0001*m.x44*m.x147 + 0.0001
*m.x44*m.x148 + 0.0001*m.x44*m.x149 + 0.0001*m.x44*m.x150 + 0.0001*m.x44*m.x151 + 0.0001*m.x44*
m.x152 + 0.0001*m.x44*m.x153 + 0.0001*m.x44*m.x154 + 0.0001*m.x44*m.x155 + 0.0001*m.x44*m.x156 +
0.0001*m.x44*m.x157 + 0.0001*m.x44*m.x158 + 0.0001*m.x44*m.x159 + 0.0001*m.x44*m.x160 + 0.0001*
m.x44*m.x161 + 0.0001*m.x44*m.x162 + 0.0001*m.x44*m.x163 + 0.0001*m.x44*m.x164 + 0.0001*m.x44*
m.x165 + 0.0001*m.x44*m.x166 + 0.0001*m.x44*m.x167 + 0.0001*m.x44*m.x168 + 0.0001*m.x44*m.x169 +
0.0001*m.x44*m.x170 + 0.0001*m.x44*m.x171 + 0.0001*m.x44*m.x172 + 0.0001*m.x44*m.x173 + 0.0001*
m.x44*m.x174 + 0.0001*m.x44*m.x175 + 0.0001*m.x44*m.x176 + 0.0001*m.x44*m.x177 + 0.0001*m.x44*
m.x178 + 0.0001*m.x44*m.x179 + 0.0001*m.x44*m.x180 + 0.0001*m.x44*m.x181 + 0.0001*m.x44*m.x182 +
0.0001*m.x44*m.x183 + 0.0001*m.x44*m.x184 + 0.0001*m.x44*m.x185 + 0.0001*m.x45*m.x1 + 0.0001*
m.x45*m.x2 + 0.0001*m.x45*m.x3 + 0.0001*m.x45*m.x4 + 0.0001*m.x45*m.x5 + 0.0001*m.x45*m.x6 +
0.0001*m.x45*m.x7 + 0.0001*m.x45*m.x8 + 0.0001*m.x45*m.x9 + 7.27171135638595*m.x45*m.x10 + 0.0001
*m.x45*m.x11 + 0.0001*m.x45*m.x12 + 0.0001*m.x45*m.x13 + 0.0001*m.x45*m.x14 + 0.0001*m.x45*m.x15
+ 0.0001*m.x45*m.x16 + 0.0001*m.x45*m.x17 + 0.0001*m.x45*m.x18 + 0.0001*m.x45*m.x19 + 0.0001*
m.x45*m.x20 + 0.0001*m.x45*m.x21 + 5.99722275920364*m.x45*m.x22 + 0.0001*m.x45*m.x23 + 0.0001*
m.x45*m.x24 + 0.0001*m.x45*m.x25 + 0.0001*m.x45*m.x26 + 0.0001*m.x45*m.x27 + 0.0001*m.x45*m.x28
+ 0.0001*m.x45*m.x29 + 0.0001*m.x45*m.x30 + 0.0001*m.x45*m.x31 + 0.0001*m.x45*m.x32 +
1.63440412456913*m.x45*m.x33 + 0.0001*m.x45*m.x34 + 0.0001*m.x45*m.x35 + 0.0001*m.x45*m.x36 +
0.0001*m.x45*m.x37 + 0.0001*m.x45*m.x38 + 0.0001*m.x45*m.x39 + 0.0001*m.x45*m.x40 + 0.0001*m.x45*
m.x41 + 0.0001*m.x45*m.x42 + 0.0001*m.x45*m.x43 + 0.0001*m.x45*m.x44 + 6.38116706554462*m.x45**2
+ 0.0001*m.x45*m.x46 + 0.0001*m.x45*m.x47 + 0.0001*m.x45*m.x48 + 0.0001*m.x45*m.x49 + 0.0001*
m.x45*m.x50 + 0.0001*m.x45*m.x51 + 0.0001*m.x45*m.x52 + 0.0001*m.x45*m.x53 + 0.0001*m.x45*m.x54
+ 0.0001*m.x45*m.x55 + 0.0001*m.x45*m.x56 + 0.0001*m.x45*m.x57 + 0.0001*m.x45*m.x58 + 0.0001*
m.x45*m.x59 + 0.0001*m.x45*m.x60 + 0.0001*m.x45*m.x61 + 0.0001*m.x45*m.x62 + 0.0001*m.x45*m.x63
+ 0.0001*m.x45*m.x64 + 0.0001*m.x45*m.x65 + 0.0001*m.x45*m.x66 + 0.0001*m.x45*m.x67 + 0.0001*
m.x45*m.x68 + 0.0001*m.x45*m.x69 + 0.0001*m.x45*m.x70 + 0.0001*m.x45*m.x71 + 0.0001*m.x45*m.x72
+ 0.0001*m.x45*m.x73 + 0.0001*m.x45*m.x74 + 0.0001*m.x45*m.x75 + 0.0001*m.x45*m.x76 + 0.0001*
m.x45*m.x77 + 0.0001*m.x45*m.x78 + 0.0001*m.x45*m.x79 + 0.0001*m.x45*m.x80 + 0.0001*m.x45*m.x81
+ 0.0001*m.x45*m.x82 + 0.0001*m.x45*m.x83 + 0.0001*m.x45*m.x84 + 0.0001*m.x45*m.x85 + 0.0001*
m.x45*m.x86 + 0.0001*m.x45*m.x87 + 0.0001*m.x45*m.x88 + 0.0001*m.x45*m.x89 + 0.0001*m.x45*m.x90
+ 0.0001*m.x45*m.x91 + 0.0001*m.x45*m.x92 + 0.0001*m.x45*m.x93 + 0.0001*m.x45*m.x94 + 0.0001*
m.x45*m.x95 + 0.0001*m.x45*m.x96 + 0.0001*m.x45*m.x97 + 0.0001*m.x45*m.x98 + 0.0001*m.x45*m.x99
+ 0.0001*m.x45*m.x100 + 0.0001*m.x45*m.x101 + 0.0001*m.x45*m.x102 + 0.0001*m.x45*m.x103 + 0.0001
*m.x45*m.x104 + 0.0001*m.x45*m.x105 + 0.0001*m.x45*m.x106 + 0.0001*m.x45*m.x107 + 0.0001*m.x45*
m.x108 + 0.0001*m.x45*m.x109 + 0.0001*m.x45*m.x110 + 0.0001*m.x45*m.x111 + 0.0001*m.x45*m.x112 +
0.0001*m.x45*m.x113 + 0.0001*m.x45*m.x114 + 0.0001*m.x45*m.x115 + 0.0001*m.x45*m.x116 + 0.0001*
m.x45*m.x117 + 0.0001*m.x45*m.x118 + 0.0001*m.x45*m.x119 + 0.0001*m.x45*m.x120 + 0.0001*m.x45*
m.x121 + 0.0001*m.x45*m.x122 + 0.0001*m.x45*m.x123 + 0.0001*m.x45*m.x124 + 0.0001*m.x45*m.x125 +
0.0001*m.x45*m.x126 + 0.0001*m.x45*m.x127 + 0.0001*m.x45*m.x128 + 0.0001*m.x45*m.x129 + 0.0001*
m.x45*m.x130 + 0.0001*m.x45*m.x131 + 0.0001*m.x45*m.x132 + 0.0001*m.x45*m.x133 + 0.0001*m.x45*
m.x134 + 0.0001*m.x45*m.x135 + 0.0001*m.x45*m.x136 + 0.0001*m.x45*m.x137 + 0.0001*m.x45*m.x138 +
3.55308816066067*m.x45*m.x139 + 0.0001*m.x45*m.x140 + 0.0001*m.x45*m.x141 + 0.0001*m.x45*m.x142
+ 0.0001*m.x45*m.x143 + 0.0001*m.x45*m.x144 + 0.0001*m.x45*m.x145 + 0.0001*m.x45*m.x146 + 0.0001
*m.x45*m.x147 + 0.0001*m.x45*m.x148 + 0.0001*m.x45*m.x149 + 0.0001*m.x45*m.x150 + 0.0001*m.x45*
m.x151 + 0.0001*m.x45*m.x152 + 0.0001*m.x45*m.x153 + 0.0001*m.x45*m.x154 + 0.0001*m.x45*m.x155 +
0.0001*m.x45*m.x156 + 0.0001*m.x45*m.x157 + 0.0001*m.x45*m.x158 + 0.0001*m.x45*m.x159 + 0.0001*
m.x45*m.x160 + 0.0001*m.x45*m.x161 + 0.0001*m.x45*m.x162 + 0.0001*m.x45*m.x163 + 0.0001*m.x45*
m.x164 + 0.0001*m.x45*m.x165 + 0.0001*m.x45*m.x166 + 0.0001*m.x45*m.x167 + 0.0001*m.x45*m.x168 +
0.0001*m.x45*m.x169 + 0.0001*m.x45*m.x170 + 0.0001*m.x45*m.x171 + 0.0001*m.x45*m.x172 + 0.0001*
m.x45*m.x173 + 0.0001*m.x45*m.x174 + 0.0001*m.x45*m.x175 + 0.0001*m.x45*m.x176 + 0.0001*m.x45*
m.x177 + 0.0001*m.x45*m.x178 + 0.0001*m.x45*m.x179 + 0.0001*m.x45*m.x180 + 0.0001*m.x45*m.x181 +
0.0001*m.x45*m.x182 + 0.0001*m.x45*m.x183 + 0.0001*m.x45*m.x184 + 0.0001*m.x45*m.x185 + 0.0001*
m.x46*m.x1 + 0.0001*m.x46*m.x2 + 0.0001*m.x46*m.x3 + 0.0001*m.x46*m.x4 + 0.0001*m.x46*m.x5 +
0.0001*m.x46*m.x6 + 0.0001*m.x46*m.x7 + 0.0001*m.x46*m.x8 + 0.0001*m.x46*m.x9 + 0.0001*m.x46*
m.x10 + 7.19114258438939*m.x46*m.x11 + 0.0001*m.x46*m.x12 + 0.0001*m.x46*m.x13 + 0.0001*m.x46*
m.x14 + 0.0001*m.x46*m.x15 + 0.0001*m.x46*m.x16 + 0.0001*m.x46*m.x17 + 0.0001*m.x46*m.x18 +
0.0001*m.x46*m.x19 + 0.0001*m.x46*m.x20 + 0.0001*m.x46*m.x21 + 0.0001*m.x46*m.x22 +
5.80112739765899*m.x46*m.x23 + 0.0001*m.x46*m.x24 + 0.0001*m.x46*m.x25 + 0.0001*m.x46*m.x26 +
0.0001*m.x46*m.x27 + 0.0001*m.x46*m.x28 + 0.0001*m.x46*m.x29 + 0.0001*m.x46*m.x30 + 0.0001*m.x46*
m.x31 + 0.0001*m.x46*m.x32 + 0.0001*m.x46*m.x33 + 1.5807634037662*m.x46*m.x34 + 0.0001*m.x46*
m.x35 + 0.0001*m.x46*m.x36 + 0.0001*m.x46*m.x37 + 0.0001*m.x46*m.x38 + 0.0001*m.x46*m.x39 +
0.0001*m.x46*m.x40 + 0.0001*m.x46*m.x41 + 0.0001*m.x46*m.x42 + 0.0001*m.x46*m.x43 + 0.0001*m.x46*
m.x44 + 0.0001*m.x46*m.x45 + 6.17251740078025*m.x46**2 + 0.0001*m.x46*m.x47 + 0.0001*m.x46*m.x48
+ 0.0001*m.x46*m.x49 + 0.0001*m.x46*m.x50 + 0.0001*m.x46*m.x51 + 0.0001*m.x46*m.x52 + 0.0001*
m.x46*m.x53 + 0.0001*m.x46*m.x54 + 0.0001*m.x46*m.x55 + 0.0001*m.x46*m.x56 + 0.0001*m.x46*m.x57
+ 0.0001*m.x46*m.x58 + 0.0001*m.x46*m.x59 + 0.0001*m.x46*m.x60 + 0.0001*m.x46*m.x61 + 0.0001*
m.x46*m.x62 + 0.0001*m.x46*m.x63 + 0.0001*m.x46*m.x64 + 0.0001*m.x46*m.x65 + 0.0001*m.x46*m.x66
+ 0.0001*m.x46*m.x67 + 0.0001*m.x46*m.x68 + 0.0001*m.x46*m.x69 + 0.0001*m.x46*m.x70 + 0.0001*
m.x46*m.x71 + 0.0001*m.x46*m.x72 + 0.0001*m.x46*m.x73 + 0.0001*m.x46*m.x74 + 0.0001*m.x46*m.x75
+ 0.0001*m.x46*m.x76 + 0.0001*m.x46*m.x77 + 0.0001*m.x46*m.x78 + 0.0001*m.x46*m.x79 + 0.0001*
m.x46*m.x80 + 0.0001*m.x46*m.x81 + 0.0001*m.x46*m.x82 + 0.0001*m.x46*m.x83 + 0.0001*m.x46*m.x84
+ 0.0001*m.x46*m.x85 + 0.0001*m.x46*m.x86 + 0.0001*m.x46*m.x87 + 0.0001*m.x46*m.x88 + 0.0001*
m.x46*m.x89 + 0.0001*m.x46*m.x90 + 0.0001*m.x46*m.x91 + 0.0001*m.x46*m.x92 + 0.0001*m.x46*m.x93
+ 0.0001*m.x46*m.x94 + 0.0001*m.x46*m.x95 + 0.0001*m.x46*m.x96 + 0.0001*m.x46*m.x97 + 0.0001*
m.x46*m.x98 + 0.0001*m.x46*m.x99 + 0.0001*m.x46*m.x100 + 0.0001*m.x46*m.x101 + 0.0001*m.x46*
m.x102 + 0.0001*m.x46*m.x103 + 0.0001*m.x46*m.x104 + 0.0001*m.x46*m.x105 + 0.0001*m.x46*m.x106 +
0.0001*m.x46*m.x107 + 0.0001*m.x46*m.x108 + 0.0001*m.x46*m.x109 + 0.0001*m.x46*m.x110 + 0.0001*
m.x46*m.x111 + 0.0001*m.x46*m.x112 + 0.0001*m.x46*m.x113 + 0.0001*m.x46*m.x114 + 0.0001*m.x46*
m.x115 + 0.0001*m.x46*m.x116 + 0.0001*m.x46*m.x117 + 0.0001*m.x46*m.x118 + 0.0001*m.x46*m.x119 +
0.0001*m.x46*m.x120 + 0.0001*m.x46*m.x121 + 0.0001*m.x46*m.x122 + 0.0001*m.x46*m.x123 + 0.0001*
m.x46*m.x124 + 0.0001*m.x46*m.x125 + 0.0001*m.x46*m.x126 + 0.0001*m.x46*m.x127 + 0.0001*m.x46*
m.x128 + 0.0001*m.x46*m.x129 + 0.0001*m.x46*m.x130 + 0.0001*m.x46*m.x131 + 0.0001*m.x46*m.x132 +
0.0001*m.x46*m.x133 + 0.0001*m.x46*m.x134 + 0.0001*m.x46*m.x135 + 0.0001*m.x46*m.x136 + 0.0001*
m.x46*m.x137 + 0.0001*m.x46*m.x138 + 0.0001*m.x46*m.x139 + 3.43647287279779*m.x46*m.x140 + 0.0001
*m.x46*m.x141 + 0.0001*m.x46*m.x142 + 0.0001*m.x46*m.x143 + 0.0001*m.x46*m.x144 + 0.0001*m.x46*
m.x145 + 0.0001*m.x46*m.x146 + 0.0001*m.x46*m.x147 + 0.0001*m.x46*m.x148 + 0.0001*m.x46*m.x149 +
0.0001*m.x46*m.x150 + 0.0001*m.x46*m.x151 + 0.0001*m.x46*m.x152 + 0.0001*m.x46*m.x153 + 0.0001*
m.x46*m.x154 + 0.0001*m.x46*m.x155 + 0.0001*m.x46*m.x156 + 0.0001*m.x46*m.x157 + 0.0001*m.x46*
m.x158 + 0.0001*m.x46*m.x159 + 0.0001*m.x46*m.x160 + 0.0001*m.x46*m.x161 + 0.0001*m.x46*m.x162 +
0.0001*m.x46*m.x163 + 0.0001*m.x46*m.x164 + 0.0001*m.x46*m.x165 + 0.0001*m.x46*m.x166 + 0.0001*
m.x46*m.x167 + 0.0001*m.x46*m.x168 + 0.0001*m.x46*m.x169 + 0.0001*m.x46*m.x170 + 0.0001*m.x46*
m.x171 + 0.0001*m.x46*m.x172 + 0.0001*m.x46*m.x173 + 0.0001*m.x46*m.x174 + 0.0001*m.x46*m.x175 +
0.0001*m.x46*m.x176 + 0.0001*m.x46*m.x177 + 0.0001*m.x46*m.x178 + 0.0001*m.x46*m.x179 + 0.0001*
m.x46*m.x180 + 0.0001*m.x46*m.x181 + 0.0001*m.x46*m.x182 + 0.0001*m.x46*m.x183 + 0.0001*m.x46*
m.x184 + 0.0001*m.x46*m.x185 + 0.0001*m.x47*m.x1 + 0.0001*m.x47*m.x2 + 0.0001*m.x47*m.x3 + 0.0001
*m.x47*m.x4 + 0.0001*m.x47*m.x5 + 0.0001*m.x47*m.x6 + 0.0001*m.x47*m.x7 + 0.0001*m.x47*m.x8 +
0.0001*m.x47*m.x9 + 0.0001*m.x47*m.x10 + 0.0001*m.x47*m.x11 + 7.19114258438938*m.x47*m.x12 +
0.0001*m.x47*m.x13 + 0.0001*m.x47*m.x14 + 0.0001*m.x47*m.x15 + 0.0001*m.x47*m.x16 + 0.0001*m.x47*
m.x17 + 0.0001*m.x47*m.x18 + 0.0001*m.x47*m.x19 + 0.0001*m.x47*m.x20 + 0.0001*m.x47*m.x21 +
0.0001*m.x47*m.x22 + 0.0001*m.x47*m.x23 + 5.80112739765899*m.x47*m.x24 + 0.0001*m.x47*m.x25 +
0.0001*m.x47*m.x26 + 0.0001*m.x47*m.x27 + 0.0001*m.x47*m.x28 + 0.0001*m.x47*m.x29 + 0.0001*m.x47*
m.x30 + 0.0001*m.x47*m.x31 + 0.0001*m.x47*m.x32 + 0.0001*m.x47*m.x33 + 0.0001*m.x47*m.x34 +
1.59130176828702*m.x47*m.x35 + 0.0001*m.x47*m.x36 + 0.0001*m.x47*m.x37 + 0.0001*m.x47*m.x38 +
0.0001*m.x47*m.x39 + 0.0001*m.x47*m.x40 + 0.0001*m.x47*m.x41 + 0.0001*m.x47*m.x42 + 0.0001*m.x47*
m.x43 + 0.0001*m.x47*m.x44 + 0.0001*m.x47*m.x45 + 0.0001*m.x47*m.x46 + 6.17251740078025*m.x47**2
+ 0.0001*m.x47*m.x48 + 0.0001*m.x47*m.x49 + 0.0001*m.x47*m.x50 + 0.0001*m.x47*m.x51 + 0.0001*
m.x47*m.x52 + 0.0001*m.x47*m.x53 + 0.0001*m.x47*m.x54 + 0.0001*m.x47*m.x55 + 0.0001*m.x47*m.x56
+ 0.0001*m.x47*m.x57 + 0.0001*m.x47*m.x58 + 0.0001*m.x47*m.x59 + 0.0001*m.x47*m.x60 + 0.0001*
m.x47*m.x61 + 0.0001*m.x47*m.x62 + 0.0001*m.x47*m.x63 + 0.0001*m.x47*m.x64 + 0.0001*m.x47*m.x65
+ 0.0001*m.x47*m.x66 + 0.0001*m.x47*m.x67 + 0.0001*m.x47*m.x68 + 0.0001*m.x47*m.x69 + 0.0001*
m.x47*m.x70 + 0.0001*m.x47*m.x71 + 0.0001*m.x47*m.x72 + 0.0001*m.x47*m.x73 + 0.0001*m.x47*m.x74
+ 0.0001*m.x47*m.x75 + 0.0001*m.x47*m.x76 + 0.0001*m.x47*m.x77 + 0.0001*m.x47*m.x78 + 0.0001*
m.x47*m.x79 + 0.0001*m.x47*m.x80 + 0.0001*m.x47*m.x81 + 0.0001*m.x47*m.x82 + 0.0001*m.x47*m.x83
+ 0.0001*m.x47*m.x84 + 0.0001*m.x47*m.x85 + 0.0001*m.x47*m.x86 + 0.0001*m.x47*m.x87 + 0.0001*
m.x47*m.x88 + 0.0001*m.x47*m.x89 + 0.0001*m.x47*m.x90 + 0.0001*m.x47*m.x91 + 0.0001*m.x47*m.x92
+ 0.0001*m.x47*m.x93 + 0.0001*m.x47*m.x94 + 0.0001*m.x47*m.x95 + 0.0001*m.x47*m.x96 + 0.0001*
m.x47*m.x97 + 0.0001*m.x47*m.x98 + 0.0001*m.x47*m.x99 + 0.0001*m.x47*m.x100 + 0.0001*m.x47*m.x101
+ 0.0001*m.x47*m.x102 + 0.0001*m.x47*m.x103 + 0.0001*m.x47*m.x104 + 0.0001*m.x47*m.x105 + 0.0001
*m.x47*m.x106 + 0.0001*m.x47*m.x107 + 0.0001*m.x47*m.x108 + 0.0001*m.x47*m.x109 + 0.0001*m.x47*
m.x110 + 0.0001*m.x47*m.x111 + 0.0001*m.x47*m.x112 + 0.0001*m.x47*m.x113 + 0.0001*m.x47*m.x114 +
0.0001*m.x47*m.x115 + 0.0001*m.x47*m.x116 + 0.0001*m.x47*m.x117 + 0.0001*m.x47*m.x118 + 0.0001*
m.x47*m.x119 + 0.0001*m.x47*m.x120 + 0.0001*m.x47*m.x121 + 0.0001*m.x47*m.x122 + 0.0001*m.x47*
m.x123 + 0.0001*m.x47*m.x124 + 0.0001*m.x47*m.x125 + 0.0001*m.x47*m.x126 + 0.0001*m.x47*m.x127 +
0.0001*m.x47*m.x128 + 0.0001*m.x47*m.x129 + 0.0001*m.x47*m.x130 + 0.0001*m.x47*m.x131 + 0.0001*
m.x47*m.x132 + 0.0001*m.x47*m.x133 + 0.0001*m.x47*m.x134 + 0.0001*m.x47*m.x135 + 0.0001*m.x47*
m.x136 + 0.0001*m.x47*m.x137 + 0.0001*m.x47*m.x138 + 0.0001*m.x47*m.x139 + 0.0001*m.x47*m.x140 +
3.42688139906742*m.x47*m.x141 + 0.0001*m.x47*m.x142 + 0.0001*m.x47*m.x143 + 0.0001*m.x47*m.x144
+ 0.0001*m.x47*m.x145 + 0.0001*m.x47*m.x146 + 0.0001*m.x47*m.x147 + 0.0001*m.x47*m.x148 + 0.0001
*m.x47*m.x149 + 0.0001*m.x47*m.x150 + 0.0001*m.x47*m.x151 + 0.0001*m.x47*m.x152 + 0.0001*m.x47*
m.x153 + 0.0001*m.x47*m.x154 + 0.0001*m.x47*m.x155 + 0.0001*m.x47*m.x156 + 0.0001*m.x47*m.x157 +
0.0001*m.x47*m.x158 + 0.0001*m.x47*m.x159 + 0.0001*m.x47*m.x160 + 0.0001*m.x47*m.x161 + 0.0001*
m.x47*m.x162 + 0.0001*m.x47*m.x163 + 0.0001*m.x47*m.x164 + 0.0001*m.x47*m.x165 + 0.0001*m.x47*
m.x166 + 0.0001*m.x47*m.x167 + 0.0001*m.x47*m.x168 + 0.0001*m.x47*m.x169 + 0.0001*m.x47*m.x170 +
0.0001*m.x47*m.x171 + 0.0001*m.x47*m.x172 + 0.0001*m.x47*m.x173 + 0.0001*m.x47*m.x174 + 0.0001*
m.x47*m.x175 + 0.0001*m.x47*m.x176 + 0.0001*m.x47*m.x177 + 0.0001*m.x47*m.x178 + 0.0001*m.x47*
m.x179 + 0.0001*m.x47*m.x180 + 0.0001*m.x47*m.x181 + 0.0001*m.x47*m.x182 + 0.0001*m.x47*m.x183 +
0.0001*m.x47*m.x184 + 0.0001*m.x47*m.x185 + 0.0001*m.x48*m.x1 + 0.0001*m.x48*m.x2 + 0.0001*m.x48*
m.x3 + 0.0001*m.x48*m.x4 + 0.0001*m.x48*m.x5 + 0.0001*m.x48*m.x6 + 0.0001*m.x48*m.x7 + 0.0001*
m.x48*m.x8 + 0.0001*m.x48*m.x9 + 0.0001*m.x48*m.x10 + 0.0001*m.x48*m.x11 + 0.0001*m.x48*m.x12 +
0.0001*m.x48*m.x13 + 0.0001*m.x48*m.x14 + 0.0001*m.x48*m.x15 + 0.0001*m.x48*m.x16 + 0.0001*m.x48*
m.x17 + 0.0001*m.x48*m.x18 + 0.0001*m.x48*m.x19 + 0.0001*m.x48*m.x20 + 0.0001*m.x48*m.x21 +
0.0001*m.x48*m.x22 + 0.0001*m.x48*m.x23 + 0.0001*m.x48*m.x24 + 1.56311713881613*m.x48*m.x25 +
0.0001*m.x48*m.x26 + 0.0001*m.x48*m.x27 + 0.0001*m.x48*m.x28 + 0.0001*m.x48*m.x29 + 0.0001*m.x48*
m.x30 + 0.0001*m.x48*m.x31 + 0.0001*m.x48*m.x32 + 0.0001*m.x48*m.x33 + 0.0001*m.x48*m.x34 +
0.0001*m.x48*m.x35 + 0.0001*m.x48*m.x36 + 0.0001*m.x48*m.x37 + 0.0001*m.x48*m.x38 + 0.0001*m.x48*
m.x39 + 0.0001*m.x48*m.x40 + 0.0001*m.x48*m.x41 + 0.0001*m.x48*m.x42 + 0.0001*m.x48*m.x43 +
0.0001*m.x48*m.x44 + 0.0001*m.x48*m.x45 + 0.0001*m.x48*m.x46 + 0.0001*m.x48*m.x47 +
0.888606552087827*m.x48**2 + 0.0001*m.x48*m.x49 + 0.0001*m.x48*m.x50 + 0.0001*m.x48*m.x51 +
0.0001*m.x48*m.x52 + 0.0001*m.x48*m.x53 + 0.0001*m.x48*m.x54 + 0.0001*m.x48*m.x55 + 0.0001*m.x48*
m.x56 + 0.0001*m.x48*m.x57 + 0.0001*m.x48*m.x58 + 0.0001*m.x48*m.x59 + 0.0001*m.x48*m.x60 +
0.0001*m.x48*m.x61 + 0.0001*m.x48*m.x62 + 0.0001*m.x48*m.x63 + 0.0001*m.x48*m.x64 + 0.0001*m.x48*
m.x65 + 0.0001*m.x48*m.x66 + 0.0001*m.x48*m.x67 + 0.0001*m.x48*m.x68 + 0.0001*m.x48*m.x69 +
0.0001*m.x48*m.x70 + 0.0001*m.x48*m.x71 + 0.0001*m.x48*m.x72 + 0.0001*m.x48*m.x73 + 0.0001*m.x48*
m.x74 + 0.0001*m.x48*m.x75 + 0.0001*m.x48*m.x76 + 0.0001*m.x48*m.x77 + 0.0001*m.x48*m.x78 +
0.0001*m.x48*m.x79 + 0.0001*m.x48*m.x80 + 0.0001*m.x48*m.x81 + 0.0001*m.x48*m.x82 + 0.0001*m.x48*
m.x83 + 2.85095769957664*m.x48*m.x84 + 0.0001*m.x48*m.x85 + 0.0001*m.x48*m.x86 + 0.0001*m.x48*
m.x87 + 0.0001*m.x48*m.x88 + 0.0001*m.x48*m.x89 + 0.0001*m.x48*m.x90 + 0.0001*m.x48*m.x91 +
0.0001*m.x48*m.x92 + 0.0001*m.x48*m.x93 + 0.0001*m.x48*m.x94 + 0.0001*m.x48*m.x95 + 0.0001*m.x48*
m.x96 + 0.0001*m.x48*m.x97 + 0.0001*m.x48*m.x98 + 0.0001*m.x48*m.x99 + 0.0001*m.x48*m.x100 +
0.0001*m.x48*m.x101 + 0.0001*m.x48*m.x102 + 0.0001*m.x48*m.x103 + 0.0001*m.x48*m.x104 + 0.0001*
m.x48*m.x105 + 0.0001*m.x48*m.x106 + 0.0001*m.x48*m.x107 + 0.0001*m.x48*m.x108 + 0.0001*m.x48*
m.x109 + 0.0001*m.x48*m.x110 + 0.0001*m.x48*m.x111 + 0.0001*m.x48*m.x112 + 0.0001*m.x48*m.x113 +
0.0001*m.x48*m.x114 + 0.0001*m.x48*m.x115 + 0.0001*m.x48*m.x116 + 0.0001*m.x48*m.x117 + 0.0001*
m.x48*m.x118 + 0.0001*m.x48*m.x119 + 0.0001*m.x48*m.x120 + 0.0001*m.x48*m.x121 + 0.0001*m.x48*
m.x122 + 0.0001*m.x48*m.x123 + 0.0001*m.x48*m.x124 + 0.0001*m.x48*m.x125 + 0.0001*m.x48*m.x126 +
0.0001*m.x48*m.x127 + 0.0001*m.x48*m.x128 + 0.0001*m.x48*m.x129 + 0.0001*m.x48*m.x130 + 0.0001*
m.x48*m.x131 + 0.0001*m.x48*m.x132 + 0.0001*m.x48*m.x133 + 0.0001*m.x48*m.x134 + 0.0001*m.x48*
m.x135 + 0.0001*m.x48*m.x136 + 0.0001*m.x48*m.x137 + 0.0001*m.x48*m.x138 + 0.0001*m.x48*m.x139 +
0.0001*m.x48*m.x140 + 0.0001*m.x48*m.x141 + 0.0001*m.x48*m.x142 + 0.0001*m.x48*m.x143 + 0.0001*
m.x48*m.x144 + 0.0001*m.x48*m.x145 + 0.0001*m.x48*m.x146 + 0.0001*m.x48*m.x147 + 0.0001*m.x48*
m.x148 + 0.0001*m.x48*m.x149 + 0.0001*m.x48*m.x150 + 0.0001*m.x48*m.x151 + 0.0001*m.x48*m.x152 +
0.0001*m.x48*m.x153 + 0.0001*m.x48*m.x154 + 0.0001*m.x48*m.x155 + 0.0001*m.x48*m.x156 + 0.0001*
m.x48*m.x157 + 0.0001*m.x48*m.x158 + 0.0001*m.x48*m.x159 + 0.0001*m.x48*m.x160 + 0.0001*m.x48*
m.x161 + 0.0001*m.x48*m.x162 + 0.0001*m.x48*m.x163 + 0.0001*m.x48*m.x164 + 0.0001*m.x48*m.x165 +
0.0001*m.x48*m.x166 + 0.0001*m.x48*m.x167 + 0.0001*m.x48*m.x168 + 0.0001*m.x48*m.x169 + 0.0001*
m.x48*m.x170 + 0.0001*m.x48*m.x171 + 0.0001*m.x48*m.x172 + 0.0001*m.x48*m.x173 + 0.0001*m.x48*
m.x174 + 0.0001*m.x48*m.x175 + 0.0001*m.x48*m.x176 + 0.0001*m.x48*m.x177 + 0.0001*m.x48*m.x178 +
0.0001*m.x48*m.x179 + 0.0001*m.x48*m.x180 + 0.0001*m.x48*m.x181 + 0.0001*m.x48*m.x182 + 0.0001*
m.x48*m.x183 + 0.0001*m.x48*m.x184 + 0.0001*m.x48*m.x185 + 0.0001*m.x49*m.x1 + 0.0001*m.x49*m.x2
+ 0.0001*m.x49*m.x3 + 0.0001*m.x49*m.x4 + 0.0001*m.x49*m.x5 + 0.0001*m.x49*m.x6 + 0.0001*m.x49*
m.x7 + 0.0001*m.x49*m.x8 + 0.0001*m.x49*m.x9 + 0.0001*m.x49*m.x10 + 0.0001*m.x49*m.x11 + 0.0001*
m.x49*m.x12 + 0.0001*m.x49*m.x13 + 0.0001*m.x49*m.x14 + 0.0001*m.x49*m.x15 + 0.0001*m.x49*m.x16
+ 0.0001*m.x49*m.x17 + 0.0001*m.x49*m.x18 + 0.0001*m.x49*m.x19 + 0.0001*m.x49*m.x20 + 0.0001*
m.x49*m.x21 + 0.0001*m.x49*m.x22 + 0.0001*m.x49*m.x23 + 0.0001*m.x49*m.x24 + 0.0001*m.x49*m.x25
+ 1.79090332870939*m.x49*m.x26 + 0.0001*m.x49*m.x27 + 0.0001*m.x49*m.x28 + 0.0001*m.x49*m.x29 +
0.0001*m.x49*m.x30 + 0.0001*m.x49*m.x31 + 0.0001*m.x49*m.x32 + 0.0001*m.x49*m.x33 + 0.0001*m.x49*
m.x34 + 0.0001*m.x49*m.x35 + 0.0001*m.x49*m.x36 + 0.0001*m.x49*m.x37 + 0.0001*m.x49*m.x38 +
0.0001*m.x49*m.x39 + 0.0001*m.x49*m.x40 + 0.0001*m.x49*m.x41 + 0.0001*m.x49*m.x42 + 0.0001*m.x49*
m.x43 + 0.0001*m.x49*m.x44 + 0.0001*m.x49*m.x45 + 0.0001*m.x49*m.x46 + 0.0001*m.x49*m.x47 +
0.0001*m.x49*m.x48 + 1.19761222572318*m.x49**2 + 0.0001*m.x49*m.x50 + 0.0001*m.x49*m.x51 + 0.0001
*m.x49*m.x52 + 0.0001*m.x49*m.x53 + 0.0001*m.x49*m.x54 + 0.0001*m.x49*m.x55 + 0.0001*m.x49*m.x56
+ 0.0001*m.x49*m.x57 + 0.0001*m.x49*m.x58 + 0.0001*m.x49*m.x59 + 0.0001*m.x49*m.x60 + 0.0001*
m.x49*m.x61 + 0.0001*m.x49*m.x62 + 0.0001*m.x49*m.x63 + 0.0001*m.x49*m.x64 + 0.0001*m.x49*m.x65
+ 0.0001*m.x49*m.x66 + 0.0001*m.x49*m.x67 + 0.0001*m.x49*m.x68 + 0.0001*m.x49*m.x69 + 0.0001*
m.x49*m.x70 + 0.0001*m.x49*m.x71 + 0.0001*m.x49*m.x72 + 0.0001*m.x49*m.x73 + 0.0001*m.x49*m.x74
+ 0.0001*m.x49*m.x75 + 0.0001*m.x49*m.x76 + 0.0001*m.x49*m.x77 + 0.0001*m.x49*m.x78 + 0.0001*
m.x49*m.x79 + 0.0001*m.x49*m.x80 + 0.0001*m.x49*m.x81 + 0.0001*m.x49*m.x82 + 0.0001*m.x49*m.x83
+ 0.0001*m.x49*m.x84 + 3.30977386585424*m.x49*m.x85 + 0.0001*m.x49*m.x86 + 0.0001*m.x49*m.x87 +
0.0001*m.x49*m.x88 + 0.0001*m.x49*m.x89 + 0.0001*m.x49*m.x90 + 0.0001*m.x49*m.x91 + 0.0001*m.x49*
m.x92 + 0.0001*m.x49*m.x93 + 0.0001*m.x49*m.x94 + 0.0001*m.x49*m.x95 + 0.0001*m.x49*m.x96 +
0.0001*m.x49*m.x97 + 0.0001*m.x49*m.x98 + 0.0001*m.x49*m.x99 + 0.0001*m.x49*m.x100 + 0.0001*m.x49
*m.x101 + 0.0001*m.x49*m.x102 + 0.0001*m.x49*m.x103 + 0.0001*m.x49*m.x104 + 0.0001*m.x49*m.x105
+ 0.0001*m.x49*m.x106 + 0.0001*m.x49*m.x107 + 0.0001*m.x49*m.x108 + 0.0001*m.x49*m.x109 + 0.0001
*m.x49*m.x110 + 0.0001*m.x49*m.x111 + 0.0001*m.x49*m.x112 + 0.0001*m.x49*m.x113 + 0.0001*m.x49*
m.x114 + 0.0001*m.x49*m.x115 + 0.0001*m.x49*m.x116 + 0.0001*m.x49*m.x117 + 0.0001*m.x49*m.x118 +
0.0001*m.x49*m.x119 + 0.0001*m.x49*m.x120 + 0.0001*m.x49*m.x121 + 0.0001*m.x49*m.x122 + 0.0001*
m.x49*m.x123 + 0.0001*m.x49*m.x124 + 0.0001*m.x49*m.x125 + 0.0001*m.x49*m.x126 + 0.0001*m.x49*
m.x127 + 0.0001*m.x49*m.x128 + 0.0001*m.x49*m.x129 + 0.0001*m.x49*m.x130 + 0.0001*m.x49*m.x131 +
0.0001*m.x49*m.x132 + 0.0001*m.x49*m.x133 + 0.0001*m.x49*m.x134 + 0.0001*m.x49*m.x135 + 0.0001*
m.x49*m.x136 + 0.0001*m.x49*m.x137 + 0.0001*m.x49*m.x138 + 0.0001*m.x49*m.x139 + 0.0001*m.x49*
m.x140 + 0.0001*m.x49*m.x141 + 0.0001*m.x49*m.x142 + 0.0001*m.x49*m.x143 + 0.0001*m.x49*m.x144 +
0.0001*m.x49*m.x145 + 0.0001*m.x49*m.x146 + 0.0001*m.x49*m.x147 + 0.0001*m.x49*m.x148 + 0.0001*
m.x49*m.x149 + 0.0001*m.x49*m.x150 + 0.0001*m.x49*m.x151 + 0.0001*m.x49*m.x152 + 0.0001*m.x49*
m.x153 + 0.0001*m.x49*m.x154 + 0.0001*m.x49*m.x155 + 0.0001*m.x49*m.x156 + 0.0001*m.x49*m.x157 +
0.0001*m.x49*m.x158 + 0.0001*m.x49*m.x159 + 0.0001*m.x49*m.x160 + 0.0001*m.x49*m.x161 + 0.0001*
m.x49*m.x162 + 0.0001*m.x49*m.x163 + 0.0001*m.x49*m.x164 + 0.0001*m.x49*m.x165 + 0.0001*m.x49*
m.x166 + 0.0001*m.x49*m.x167 + 0.0001*m.x49*m.x168 + 0.0001*m.x49*m.x169 + 0.0001*m.x49*m.x170 +
0.0001*m.x49*m.x171 + 0.0001*m.x49*m.x172 + 0.0001*m.x49*m.x173 + 0.0001*m.x49*m.x174 + 0.0001*
m.x49*m.x175 + 0.0001*m.x49*m.x176 + 0.0001*m.x49*m.x177 + 0.0001*m.x49*m.x178 + 0.0001*m.x49*
m.x179 + 0.0001*m.x49*m.x180 + 0.0001*m.x49*m.x181 + 0.0001*m.x49*m.x182 + 0.0001*m.x49*m.x183 +
0.0001*m.x49*m.x184 + 0.0001*m.x49*m.x185 + 0.0001*m.x50*m.x1 + 0.0001*m.x50*m.x2 + 0.0001*m.x50*
m.x3 + 0.0001*m.x50*m.x4 + 0.0001*m.x50*m.x5 + 0.0001*m.x50*m.x6 + 0.0001*m.x50*m.x7 + 0.0001*
m.x50*m.x8 + 0.0001*m.x50*m.x9 + 0.0001*m.x50*m.x10 + 0.0001*m.x50*m.x11 + 0.0001*m.x50*m.x12 +
0.0001*m.x50*m.x13 + 0.0001*m.x50*m.x14 + 0.0001*m.x50*m.x15 + 0.0001*m.x50*m.x16 + 0.0001*m.x50*
m.x17 + 0.0001*m.x50*m.x18 + 0.0001*m.x50*m.x19 + 0.0001*m.x50*m.x20 + 0.0001*m.x50*m.x21 +
0.0001*m.x50*m.x22 + 0.0001*m.x50*m.x23 + 0.0001*m.x50*m.x24 + 0.0001*m.x50*m.x25 + 0.0001*m.x50*
m.x26 + 1.76587825146747*m.x50*m.x27 + 0.0001*m.x50*m.x28 + 0.0001*m.x50*m.x29 + 0.0001*m.x50*
m.x30 + 0.0001*m.x50*m.x31 + 0.0001*m.x50*m.x32 + 0.0001*m.x50*m.x33 + 0.0001*m.x50*m.x34 +
0.0001*m.x50*m.x35 + 0.0001*m.x50*m.x36 + 0.0001*m.x50*m.x37 + 0.0001*m.x50*m.x38 + 0.0001*m.x50*
m.x39 + 0.0001*m.x50*m.x40 + 0.0001*m.x50*m.x41 + 0.0001*m.x50*m.x42 + 0.0001*m.x50*m.x43 +
0.0001*m.x50*m.x44 + 0.0001*m.x50*m.x45 + 0.0001*m.x50*m.x46 + 0.0001*m.x50*m.x47 + 0.0001*m.x50*
m.x48 + 0.0001*m.x50*m.x49 + 1.20462715408013*m.x50**2 + 0.0001*m.x50*m.x51 + 0.0001*m.x50*m.x52
+ 0.0001*m.x50*m.x53 + 0.0001*m.x50*m.x54 + 0.0001*m.x50*m.x55 + 0.0001*m.x50*m.x56 + 0.0001*
m.x50*m.x57 + 0.0001*m.x50*m.x58 + 0.0001*m.x50*m.x59 + 0.0001*m.x50*m.x60 + 0.0001*m.x50*m.x61
+ 0.0001*m.x50*m.x62 + 0.0001*m.x50*m.x63 + 0.0001*m.x50*m.x64 + 0.0001*m.x50*m.x65 + 0.0001*
m.x50*m.x66 + 0.0001*m.x50*m.x67 + 0.0001*m.x50*m.x68 + 0.0001*m.x50*m.x69 + 0.0001*m.x50*m.x70
+ 0.0001*m.x50*m.x71 + 0.0001*m.x50*m.x72 + 0.0001*m.x50*m.x73 + 0.0001*m.x50*m.x74 + 0.0001*
m.x50*m.x75 + 0.0001*m.x50*m.x76 + 0.0001*m.x50*m.x77 + 0.0001*m.x50*m.x78 + 0.0001*m.x50*m.x79
+ 0.0001*m.x50*m.x80 + 0.0001*m.x50*m.x81 + 0.0001*m.x50*m.x82 + 0.0001*m.x50*m.x83 + 0.0001*
m.x50*m.x84 + 0.0001*m.x50*m.x85 + 3.36191019598222*m.x50*m.x86 + 0.0001*m.x50*m.x87 + 0.0001*
m.x50*m.x88 + 0.0001*m.x50*m.x89 + 0.0001*m.x50*m.x90 + 0.0001*m.x50*m.x91 + 0.0001*m.x50*m.x92
+ 0.0001*m.x50*m.x93 + 0.0001*m.x50*m.x94 + 0.0001*m.x50*m.x95 + 0.0001*m.x50*m.x96 + 0.0001*
m.x50*m.x97 + 0.0001*m.x50*m.x98 + 0.0001*m.x50*m.x99 + 0.0001*m.x50*m.x100 + 0.0001*m.x50*m.x101
+ 0.0001*m.x50*m.x102 + 0.0001*m.x50*m.x103 + 0.0001*m.x50*m.x104 + 0.0001*m.x50*m.x105 + 0.0001
*m.x50*m.x106 + 0.0001*m.x50*m.x107 + 0.0001*m.x50*m.x108 + 0.0001*m.x50*m.x109 + 0.0001*m.x50*
m.x110 + 0.0001*m.x50*m.x111 + 0.0001*m.x50*m.x112 + 0.0001*m.x50*m.x113 + 0.0001*m.x50*m.x114 +
0.0001*m.x50*m.x115 + 0.0001*m.x50*m.x116 + 0.0001*m.x50*m.x117 + 0.0001*m.x50*m.x118 + 0.0001*
m.x50*m.x119 + 0.0001*m.x50*m.x120 + 0.0001*m.x50*m.x121 + 0.0001*m.x50*m.x122 + 0.0001*m.x50*
m.x123 + 0.0001*m.x50*m.x124 + 0.0001*m.x50*m.x125 + 0.0001*m.x50*m.x126 + 0.0001*m.x50*m.x127 +
0.0001*m.x50*m.x128 + 0.0001*m.x50*m.x129 + 0.0001*m.x50*m.x130 + 0.0001*m.x50*m.x131 + 0.0001*
m.x50*m.x132 + 0.0001*m.x50*m.x133 + 0.0001*m.x50*m.x134 + 0.0001*m.x50*m.x135 + 0.0001*m.x50*
m.x136 + 0.0001*m.x50*m.x137 + 0.0001*m.x50*m.x138 + 0.0001*m.x50*m.x139 + 0.0001*m.x50*m.x140 +
0.0001*m.x50*m.x141 + 0.0001*m.x50*m.x142 + 0.0001*m.x50*m.x143 + 0.0001*m.x50*m.x144 + 0.0001*
m.x50*m.x145 + 0.0001*m.x50*m.x146 + 0.0001*m.x50*m.x147 + 0.0001*m.x50*m.x148 + 0.0001*m.x50*
m.x149 + 0.0001*m.x50*m.x150 + 0.0001*m.x50*m.x151 + 0.0001*m.x50*m.x152 + 0.0001*m.x50*m.x153 +
0.0001*m.x50*m.x154 + 0.0001*m.x50*m.x155 + 0.0001*m.x50*m.x156 + 0.0001*m.x50*m.x157 + 0.0001*
m.x50*m.x158 + 0.0001*m.x50*m.x159 + 0.0001*m.x50*m.x160 + 0.0001*m.x50*m.x161 + 0.0001*m.x50*
m.x162 + 0.0001*m.x50*m.x163 + 0.0001*m.x50*m.x164 + 0.0001*m.x50*m.x165 + 0.0001*m.x50*m.x166 +
0.0001*m.x50*m.x167 + 0.0001*m.x50*m.x168 + 0.0001*m.x50*m.x169 + 0.0001*m.x50*m.x170 + 0.0001*
m.x50*m.x171 + 0.0001*m.x50*m.x172 + 0.0001*m.x50*m.x173 + 0.0001*m.x50*m.x174 + 0.0001*m.x50*
m.x175 + 0.0001*m.x50*m.x176 + 0.0001*m.x50*m.x177 + 0.0001*m.x50*m.x178 + 0.0001*m.x50*m.x179 +
0.0001*m.x50*m.x180 + 0.0001*m.x50*m.x181 + 0.0001*m.x50*m.x182 + 0.0001*m.x50*m.x183 + 0.0001*
m.x50*m.x184 + 0.0001*m.x50*m.x185 + 0.0001*m.x51*m.x1 + 0.0001*m.x51*m.x2 + 0.0001*m.x51*m.x3 +
0.0001*m.x51*m.x4 + 0.0001*m.x51*m.x5 + 0.0001*m.x51*m.x6 + 0.0001*m.x51*m.x7 + 0.0001*m.x51*m.x8
+ 0.0001*m.x51*m.x9 + 0.0001*m.x51*m.x10 + 0.0001*m.x51*m.x11 + 0.0001*m.x51*m.x12 + 0.0001*
m.x51*m.x13 + 0.0001*m.x51*m.x14 + 0.0001*m.x51*m.x15 + 0.0001*m.x51*m.x16 + 0.0001*m.x51*m.x17
+ 0.0001*m.x51*m.x18 + 0.0001*m.x51*m.x19 + 0.0001*m.x51*m.x20 + 0.0001*m.x51*m.x21 + 0.0001*
m.x51*m.x22 + 0.0001*m.x51*m.x23 + 0.0001*m.x51*m.x24 + 0.0001*m.x51*m.x25 + 0.0001*m.x51*m.x26
+ 0.0001*m.x51*m.x27 + 1.76608379317448*m.x51*m.x28 + 0.0001*m.x51*m.x29 + 0.0001*m.x51*m.x30 +
0.0001*m.x51*m.x31 + 0.0001*m.x51*m.x32 + 0.0001*m.x51*m.x33 + 0.0001*m.x51*m.x34 + 0.0001*m.x51*
m.x35 + 0.0001*m.x51*m.x36 + 0.0001*m.x51*m.x37 + 0.0001*m.x51*m.x38 + 0.0001*m.x51*m.x39 +
0.0001*m.x51*m.x40 + 0.0001*m.x51*m.x41 + 0.0001*m.x51*m.x42 + 0.0001*m.x51*m.x43 + 0.0001*m.x51*
m.x44 + 0.0001*m.x51*m.x45 + 0.0001*m.x51*m.x46 + 0.0001*m.x51*m.x47 + 0.0001*m.x51*m.x48 +
0.0001*m.x51*m.x49 + 0.0001*m.x51*m.x50 + 1.20462715408013*m.x51**2 + 0.0001*m.x51*m.x52 + 0.0001
*m.x51*m.x53 + 0.0001*m.x51*m.x54 + 0.0001*m.x51*m.x55 + 0.0001*m.x51*m.x56 + 0.0001*m.x51*m.x57
+ 0.0001*m.x51*m.x58 + 0.0001*m.x51*m.x59 + 0.0001*m.x51*m.x60 + 0.0001*m.x51*m.x61 + 0.0001*
m.x51*m.x62 + 0.0001*m.x51*m.x63 + 0.0001*m.x51*m.x64 + 0.0001*m.x51*m.x65 + 0.0001*m.x51*m.x66
+ 0.0001*m.x51*m.x67 + 0.0001*m.x51*m.x68 + 0.0001*m.x51*m.x69 + 0.0001*m.x51*m.x70 + 0.0001*
m.x51*m.x71 + 0.0001*m.x51*m.x72 + 0.0001*m.x51*m.x73 + 0.0001*m.x51*m.x74 + 0.0001*m.x51*m.x75
+ 0.0001*m.x51*m.x76 + 0.0001*m.x51*m.x77 + 0.0001*m.x51*m.x78 + 0.0001*m.x51*m.x79 + 0.0001*
m.x51*m.x80 + 0.0001*m.x51*m.x81 + 0.0001*m.x51*m.x82 + 0.0001*m.x51*m.x83 + 0.0001*m.x51*m.x84
+ 0.0001*m.x51*m.x85 + 0.0001*m.x51*m.x86 + 3.36191019598222*m.x51*m.x87 + 0.0001*m.x51*m.x88 +
0.0001*m.x51*m.x89 + 0.0001*m.x51*m.x90 + 0.0001*m.x51*m.x91 + 0.0001*m.x51*m.x92 + 0.0001*m.x51*
m.x93 + 0.0001*m.x51*m.x94 + 0.0001*m.x51*m.x95 + 0.0001*m.x51*m.x96 + 0.0001*m.x51*m.x97 +
0.0001*m.x51*m.x98 + 0.0001*m.x51*m.x99 + 0.0001*m.x51*m.x100 + 0.0001*m.x51*m.x101 + 0.0001*
m.x51*m.x102 + 0.0001*m.x51*m.x103 + 0.0001*m.x51*m.x104 + 0.0001*m.x51*m.x105 + 0.0001*m.x51*
m.x106 + 0.0001*m.x51*m.x107 + 0.0001*m.x51*m.x108 + 0.0001*m.x51*m.x109 + 0.0001*m.x51*m.x110 +
0.0001*m.x51*m.x111 + 0.0001*m.x51*m.x112 + 0.0001*m.x51*m.x113 + 0.0001*m.x51*m.x114 + 0.0001*
m.x51*m.x115 + 0.0001*m.x51*m.x116 + 0.0001*m.x51*m.x117 + 0.0001*m.x51*m.x118 + 0.0001*m.x51*
m.x119 + 0.0001*m.x51*m.x120 + 0.0001*m.x51*m.x121 + 0.0001*m.x51*m.x122 + 0.0001*m.x51*m.x123 +
0.0001*m.x51*m.x124 + 0.0001*m.x51*m.x125 + 0.0001*m.x51*m.x126 + 0.0001*m.x51*m.x127 + 0.0001*
m.x51*m.x128 + 0.0001*m.x51*m.x129 + 0.0001*m.x51*m.x130 + 0.0001*m.x51*m.x131 + 0.0001*m.x51*
m.x132 + 0.0001*m.x51*m.x133 + 0.0001*m.x51*m.x134 + 0.0001*m.x51*m.x135 + 0.0001*m.x51*m.x136 +
0.0001*m.x51*m.x137 + 0.0001*m.x51*m.x138 + 0.0001*m.x51*m.x139 + 0.0001*m.x51*m.x140 + 0.0001*
m.x51*m.x141 + 0.0001*m.x51*m.x142 + 0.0001*m.x51*m.x143 + 0.0001*m.x51*m.x144 + 0.0001*m.x51*
m.x145 + 0.0001*m.x51*m.x146 + 0.0001*m.x51*m.x147 + 0.0001*m.x51*m.x148 + 0.0001*m.x51*m.x149 +
0.0001*m.x51*m.x150 + 0.0001*m.x51*m.x151 + 0.0001*m.x51*m.x152 + 0.0001*m.x51*m.x153 + 0.0001*
m.x51*m.x154 + 0.0001*m.x51*m.x155 + 0.0001*m.x51*m.x156 + 0.0001*m.x51*m.x157 + 0.0001*m.x51*
m.x158 + 0.0001*m.x51*m.x159 + 0.0001*m.x51*m.x160 + 0.0001*m.x51*m.x161 + 0.0001*m.x51*m.x162 +
0.0001*m.x51*m.x163 + 0.0001*m.x51*m.x164 + 0.0001*m.x51*m.x165 + 0.0001*m.x51*m.x166 + 0.0001*
m.x51*m.x167 + 0.0001*m.x51*m.x168 + 0.0001*m.x51*m.x169 + 0.0001*m.x51*m.x170 + 0.0001*m.x51*
m.x171 + 0.0001*m.x51*m.x172 + 0.0001*m.x51*m.x173 + 0.0001*m.x51*m.x174 + 0.0001*m.x51*m.x175 +
0.0001*m.x51*m.x176 + 0.0001*m.x51*m.x177 + 0.0001*m.x51*m.x178 + 0.0001*m.x51*m.x179 + 0.0001*
m.x51*m.x180 + 0.0001*m.x51*m.x181 + 0.0001*m.x51*m.x182 + 0.0001*m.x51*m.x183 + 0.0001*m.x51*
m.x184 + 0.0001*m.x51*m.x185 + 0.0001*m.x52*m.x1 + 0.0001*m.x52*m.x2 + 0.0001*m.x52*m.x3 + 0.0001
*m.x52*m.x4 + 0.0001*m.x52*m.x5 + 0.0001*m.x52*m.x6 + 0.0001*m.x52*m.x7 + 0.0001*m.x52*m.x8 +
0.0001*m.x52*m.x9 + 0.0001*m.x52*m.x10 + 0.0001*m.x52*m.x11 + 0.0001*m.x52*m.x12 + 0.0001*m.x52*
m.x13 + 0.0001*m.x52*m.x14 + 0.0001*m.x52*m.x15 + 0.0001*m.x52*m.x16 + 0.0001*m.x52*m.x17 +
0.0001*m.x52*m.x18 + 0.0001*m.x52*m.x19 + 0.0001*m.x52*m.x20 + 0.0001*m.x52*m.x21 + 0.0001*m.x52*
m.x22 + 0.0001*m.x52*m.x23 + 0.0001*m.x52*m.x24 + 0.0001*m.x52*m.x25 + 0.0001*m.x52*m.x26 +
0.0001*m.x52*m.x27 + 0.0001*m.x52*m.x28 + 1.69967084265552*m.x52*m.x29 + 0.0001*m.x52*m.x30 +
0.0001*m.x52*m.x31 + 0.0001*m.x52*m.x32 + 0.0001*m.x52*m.x33 + 0.0001*m.x52*m.x34 + 0.0001*m.x52*
m.x35 + 0.0001*m.x52*m.x36 + 0.0001*m.x52*m.x37 + 0.0001*m.x52*m.x38 + 0.0001*m.x52*m.x39 +
0.0001*m.x52*m.x40 + 0.0001*m.x52*m.x41 + 0.0001*m.x52*m.x42 + 0.0001*m.x52*m.x43 + 0.0001*m.x52*
m.x44 + 0.0001*m.x52*m.x45 + 0.0001*m.x52*m.x46 + 0.0001*m.x52*m.x47 + 0.0001*m.x52*m.x48 +
0.0001*m.x52*m.x49 + 0.0001*m.x52*m.x50 + 0.0001*m.x52*m.x51 + 1.14273132277872*m.x52**2 + 0.0001
*m.x52*m.x53 + 0.0001*m.x52*m.x54 + 0.0001*m.x52*m.x55 + 0.0001*m.x52*m.x56 + 0.0001*m.x52*m.x57
+ 0.0001*m.x52*m.x58 + 0.0001*m.x52*m.x59 + 0.0001*m.x52*m.x60 + 0.0001*m.x52*m.x61 + 0.0001*
m.x52*m.x62 + 0.0001*m.x52*m.x63 + 0.0001*m.x52*m.x64 + 0.0001*m.x52*m.x65 + 0.0001*m.x52*m.x66
+ 0.0001*m.x52*m.x67 + 0.0001*m.x52*m.x68 + 0.0001*m.x52*m.x69 + 0.0001*m.x52*m.x70 + 0.0001*
m.x52*m.x71 + 0.0001*m.x52*m.x72 + 0.0001*m.x52*m.x73 + 0.0001*m.x52*m.x74 + 0.0001*m.x52*m.x75
+ 0.0001*m.x52*m.x76 + 0.0001*m.x52*m.x77 + 0.0001*m.x52*m.x78 + 0.0001*m.x52*m.x79 + 0.0001*
m.x52*m.x80 + 0.0001*m.x52*m.x81 + 0.0001*m.x52*m.x82 + 0.0001*m.x52*m.x83 + 0.0001*m.x52*m.x84
+ 0.0001*m.x52*m.x85 + 0.0001*m.x52*m.x86 + 0.0001*m.x52*m.x87 + 3.27439613256008*m.x52*m.x88 +
0.0001*m.x52*m.x89 + 0.0001*m.x52*m.x90 + 0.0001*m.x52*m.x91 + 0.0001*m.x52*m.x92 + 0.0001*m.x52*
m.x93 + 0.0001*m.x52*m.x94 + 0.0001*m.x52*m.x95 + 0.0001*m.x52*m.x96 + 0.0001*m.x52*m.x97 +
0.0001*m.x52*m.x98 + 0.0001*m.x52*m.x99 + 0.0001*m.x52*m.x100 + 0.0001*m.x52*m.x101 + 0.0001*
m.x52*m.x102 + 0.0001*m.x52*m.x103 + 0.0001*m.x52*m.x104 + 0.0001*m.x52*m.x105 + 0.0001*m.x52*
m.x106 + 0.0001*m.x52*m.x107 + 0.0001*m.x52*m.x108 + 0.0001*m.x52*m.x109 + 0.0001*m.x52*m.x110 +
0.0001*m.x52*m.x111 + 0.0001*m.x52*m.x112 + 0.0001*m.x52*m.x113 + 0.0001*m.x52*m.x114 + 0.0001*
m.x52*m.x115 + 0.0001*m.x52*m.x116 + 0.0001*m.x52*m.x117 + 0.0001*m.x52*m.x118 + 0.0001*m.x52*
m.x119 + 0.0001*m.x52*m.x120 + 0.0001*m.x52*m.x121 + 0.0001*m.x52*m.x122 + 0.0001*m.x52*m.x123 +
0.0001*m.x52*m.x124 + 0.0001*m.x52*m.x125 + 0.0001*m.x52*m.x126 + 0.0001*m.x52*m.x127 + 0.0001*
m.x52*m.x128 + 0.0001*m.x52*m.x129 + 0.0001*m.x52*m.x130 + 0.0001*m.x52*m.x131 + 0.0001*m.x52*
m.x132 + 0.0001*m.x52*m.x133 + 0.0001*m.x52*m.x134 + 0.0001*m.x52*m.x135 + 0.0001*m.x52*m.x136 +
0.0001*m.x52*m.x137 + 0.0001*m.x52*m.x138 + 0.0001*m.x52*m.x139 + 0.0001*m.x52*m.x140 + 0.0001*
m.x52*m.x141 + 0.0001*m.x52*m.x142 + 0.0001*m.x52*m.x143 + 0.0001*m.x52*m.x144 + 0.0001*m.x52*
m.x145 + 0.0001*m.x52*m.x146 + 0.0001*m.x52*m.x147 + 0.0001*m.x52*m.x148 + 0.0001*m.x52*m.x149 +
0.0001*m.x52*m.x150 + 0.0001*m.x52*m.x151 + 0.0001*m.x52*m.x152 + 0.0001*m.x52*m.x153 + 0.0001*
m.x52*m.x154 + 0.0001*m.x52*m.x155 + 0.0001*m.x52*m.x156 + 0.0001*m.x52*m.x157 + 0.0001*m.x52*
m.x158 + 0.0001*m.x52*m.x159 + 0.0001*m.x52*m.x160 + 0.0001*m.x52*m.x161 + 0.0001*m.x52*m.x162 +
0.0001*m.x52*m.x163 + 0.0001*m.x52*m.x164 + 0.0001*m.x52*m.x165 + 0.0001*m.x52*m.x166 + 0.0001*
m.x52*m.x167 + 0.0001*m.x52*m.x168 + 0.0001*m.x52*m.x169 + 0.0001*m.x52*m.x170 + 0.0001*m.x52*
m.x171 + 0.0001*m.x52*m.x172 + 0.0001*m.x52*m.x173 + 0.0001*m.x52*m.x174 + 0.0001*m.x52*m.x175 +
0.0001*m.x52*m.x176 + 0.0001*m.x52*m.x177 + 0.0001*m.x52*m.x178 + 0.0001*m.x52*m.x179 + 0.0001*
m.x52*m.x180 + 0.0001*m.x52*m.x181 + 0.0001*m.x52*m.x182 + 0.0001*m.x52*m.x183 + 0.0001*m.x52*
m.x184 + 0.0001*m.x52*m.x185 + 0.0001*m.x53*m.x1 + 0.0001*m.x53*m.x2 + 0.0001*m.x53*m.x3 + 0.0001
*m.x53*m.x4 + 0.0001*m.x53*m.x5 + 0.0001*m.x53*m.x6 + 0.0001*m.x53*m.x7 + 0.0001*m.x53*m.x8 +
0.0001*m.x53*m.x9 + 0.0001*m.x53*m.x10 + 0.0001*m.x53*m.x11 + 0.0001*m.x53*m.x12 + 0.0001*m.x53*
m.x13 + 0.0001*m.x53*m.x14 + 0.0001*m.x53*m.x15 + 0.0001*m.x53*m.x16 + 0.0001*m.x53*m.x17 +
0.0001*m.x53*m.x18 + 0.0001*m.x53*m.x19 + 0.0001*m.x53*m.x20 + 0.0001*m.x53*m.x21 + 0.0001*m.x53*
m.x22 + 0.0001*m.x53*m.x23 + 0.0001*m.x53*m.x24 + 0.0001*m.x53*m.x25 + 0.0001*m.x53*m.x26 +
0.0001*m.x53*m.x27 + 0.0001*m.x53*m.x28 + 0.0001*m.x53*m.x29 + 1.7183567177394*m.x53*m.x30 +
0.0001*m.x53*m.x31 + 0.0001*m.x53*m.x32 + 0.0001*m.x53*m.x33 + 0.0001*m.x53*m.x34 + 0.0001*m.x53*
m.x35 + 0.0001*m.x53*m.x36 + 0.0001*m.x53*m.x37 + 0.0001*m.x53*m.x38 + 0.0001*m.x53*m.x39 +
0.0001*m.x53*m.x40 + 0.0001*m.x53*m.x41 + 0.0001*m.x53*m.x42 + 0.0001*m.x53*m.x43 + 0.0001*m.x53*
m.x44 + 0.0001*m.x53*m.x45 + 0.0001*m.x53*m.x46 + 0.0001*m.x53*m.x47 + 0.0001*m.x53*m.x48 +
0.0001*m.x53*m.x49 + 0.0001*m.x53*m.x50 + 0.0001*m.x53*m.x51 + 0.0001*m.x53*m.x52 +
1.19289142914011*m.x53**2 + 0.0001*m.x53*m.x54 + 0.0001*m.x53*m.x55 + 0.0001*m.x53*m.x56 + 0.0001
*m.x53*m.x57 + 0.0001*m.x53*m.x58 + 0.0001*m.x53*m.x59 + 0.0001*m.x53*m.x60 + 0.0001*m.x53*m.x61
+ 0.0001*m.x53*m.x62 + 0.0001*m.x53*m.x63 + 0.0001*m.x53*m.x64 + 0.0001*m.x53*m.x65 + 0.0001*
m.x53*m.x66 + 0.0001*m.x53*m.x67 + 0.0001*m.x53*m.x68 + 0.0001*m.x53*m.x69 + 0.0001*m.x53*m.x70
+ 0.0001*m.x53*m.x71 + 0.0001*m.x53*m.x72 + 0.0001*m.x53*m.x73 + 0.0001*m.x53*m.x74 + 0.0001*
m.x53*m.x75 + 0.0001*m.x53*m.x76 + 0.0001*m.x53*m.x77 + 0.0001*m.x53*m.x78 + 0.0001*m.x53*m.x79
+ 0.0001*m.x53*m.x80 + 0.0001*m.x53*m.x81 + 0.0001*m.x53*m.x82 + 0.0001*m.x53*m.x83 + 0.0001*
m.x53*m.x84 + 0.0001*m.x53*m.x85 + 0.0001*m.x53*m.x86 + 0.0001*m.x53*m.x87 + 0.0001*m.x53*m.x88
+ 3.35758811330781*m.x53*m.x89 + 0.0001*m.x53*m.x90 + 0.0001*m.x53*m.x91 + 0.0001*m.x53*m.x92 +
0.0001*m.x53*m.x93 + 0.0001*m.x53*m.x94 + 0.0001*m.x53*m.x95 + 0.0001*m.x53*m.x96 + 0.0001*m.x53*
m.x97 + 0.0001*m.x53*m.x98 + 0.0001*m.x53*m.x99 + 0.0001*m.x53*m.x100 + 0.0001*m.x53*m.x101 +
0.0001*m.x53*m.x102 + 0.0001*m.x53*m.x103 + 0.0001*m.x53*m.x104 + 0.0001*m.x53*m.x105 + 0.0001*
m.x53*m.x106 + 0.0001*m.x53*m.x107 + 0.0001*m.x53*m.x108 + 0.0001*m.x53*m.x109 + 0.0001*m.x53*
m.x110 + 0.0001*m.x53*m.x111 + 0.0001*m.x53*m.x112 + 0.0001*m.x53*m.x113 + 0.0001*m.x53*m.x114 +
0.0001*m.x53*m.x115 + 0.0001*m.x53*m.x116 + 0.0001*m.x53*m.x117 + 0.0001*m.x53*m.x118 + 0.0001*
m.x53*m.x119 + 0.0001*m.x53*m.x120 + 0.0001*m.x53*m.x121 + 0.0001*m.x53*m.x122 + 0.0001*m.x53*
m.x123 + 0.0001*m.x53*m.x124 + 0.0001*m.x53*m.x125 + 0.0001*m.x53*m.x126 + 0.0001*m.x53*m.x127 +
0.0001*m.x53*m.x128 + 0.0001*m.x53*m.x129 + 0.0001*m.x53*m.x130 + 0.0001*m.x53*m.x131 + 0.0001*
m.x53*m.x132 + 0.0001*m.x53*m.x133 + 0.0001*m.x53*m.x134 + 0.0001*m.x53*m.x135 + 0.0001*m.x53*
m.x136 + 0.0001*m.x53*m.x137 + 0.0001*m.x53*m.x138 + 0.0001*m.x53*m.x139 + 0.0001*m.x53*m.x140 +
0.0001*m.x53*m.x141 + 0.0001*m.x53*m.x142 + 0.0001*m.x53*m.x143 + 0.0001*m.x53*m.x144 + 0.0001*
m.x53*m.x145 + 0.0001*m.x53*m.x146 + 0.0001*m.x53*m.x147 + 0.0001*m.x53*m.x148 + 0.0001*m.x53*
m.x149 + 0.0001*m.x53*m.x150 + 0.0001*m.x53*m.x151 + 0.0001*m.x53*m.x152 + 0.0001*m.x53*m.x153 +
0.0001*m.x53*m.x154 + 0.0001*m.x53*m.x155 + 0.0001*m.x53*m.x156 + 0.0001*m.x53*m.x157 + 0.0001*
m.x53*m.x158 + 0.0001*m.x53*m.x159 + 0.0001*m.x53*m.x160 + 0.0001*m.x53*m.x161 + 0.0001*m.x53*
m.x162 + 0.0001*m.x53*m.x163 + 0.0001*m.x53*m.x164 + 0.0001*m.x53*m.x165 + 0.0001*m.x53*m.x166 +
0.0001*m.x53*m.x167 + 0.0001*m.x53*m.x168 + 0.0001*m.x53*m.x169 + 0.0001*m.x53*m.x170 + 0.0001*
m.x53*m.x171 + 0.0001*m.x53*m.x172 + 0.0001*m.x53*m.x173 + 0.0001*m.x53*m.x174 + 0.0001*m.x53*
m.x175 + 0.0001*m.x53*m.x176 + 0.0001*m.x53*m.x177 + 0.0001*m.x53*m.x178 + 0.0001*m.x53*m.x179 +
0.0001*m.x53*m.x180 + 0.0001*m.x53*m.x181 + 0.0001*m.x53*m.x182 + 0.0001*m.x53*m.x183 + 0.0001*
m.x53*m.x184 + 0.0001*m.x53*m.x185 + 0.0001*m.x54*m.x1 + 0.0001*m.x54*m.x2 + 0.0001*m.x54*m.x3 +
0.0001*m.x54*m.x4 + 0.0001*m.x54*m.x5 + 0.0001*m.x54*m.x6 + 0.0001*m.x54*m.x7 + 0.0001*m.x54*m.x8
+ 0.0001*m.x54*m.x9 + 0.0001*m.x54*m.x10 + 0.0001*m.x54*m.x11 + 0.0001*m.x54*m.x12 + 0.0001*
m.x54*m.x13 + 0.0001*m.x54*m.x14 + 0.0001*m.x54*m.x15 + 0.0001*m.x54*m.x16 + 0.0001*m.x54*m.x17
+ 0.0001*m.x54*m.x18 + 0.0001*m.x54*m.x19 + 0.0001*m.x54*m.x20 + 0.0001*m.x54*m.x21 + 0.0001*
m.x54*m.x22 + 0.0001*m.x54*m.x23 + 0.0001*m.x54*m.x24 + 0.0001*m.x54*m.x25 + 0.0001*m.x54*m.x26
+ 0.0001*m.x54*m.x27 + 0.0001*m.x54*m.x28 + 0.0001*m.x54*m.x29 + 0.0001*m.x54*m.x30 +
1.71052437050334*m.x54*m.x31 + 0.0001*m.x54*m.x32 + 0.0001*m.x54*m.x33 + 0.0001*m.x54*m.x34 +
0.0001*m.x54*m.x35 + 0.0001*m.x54*m.x36 + 0.0001*m.x54*m.x37 + 0.0001*m.x54*m.x38 + 0.0001*m.x54*
m.x39 + 0.0001*m.x54*m.x40 + 0.0001*m.x54*m.x41 + 0.0001*m.x54*m.x42 + 0.0001*m.x54*m.x43 +
0.0001*m.x54*m.x44 + 0.0001*m.x54*m.x45 + 0.0001*m.x54*m.x46 + 0.0001*m.x54*m.x47 + 0.0001*m.x54*
m.x48 + 0.0001*m.x54*m.x49 + 0.0001*m.x54*m.x50 + 0.0001*m.x54*m.x51 + 0.0001*m.x54*m.x52 +
0.0001*m.x54*m.x53 + 1.18204198635678*m.x54**2 + 0.0001*m.x54*m.x55 + 0.0001*m.x54*m.x56 + 0.0001
*m.x54*m.x57 + 0.0001*m.x54*m.x58 + 0.0001*m.x54*m.x59 + 0.0001*m.x54*m.x60 + 0.0001*m.x54*m.x61
+ 0.0001*m.x54*m.x62 + 0.0001*m.x54*m.x63 + 0.0001*m.x54*m.x64 + 0.0001*m.x54*m.x65 + 0.0001*
m.x54*m.x66 + 0.0001*m.x54*m.x67 + 0.0001*m.x54*m.x68 + 0.0001*m.x54*m.x69 + 0.0001*m.x54*m.x70
+ 0.0001*m.x54*m.x71 + 0.0001*m.x54*m.x72 + 0.0001*m.x54*m.x73 + 0.0001*m.x54*m.x74 + 0.0001*
m.x54*m.x75 + 0.0001*m.x54*m.x76 + 0.0001*m.x54*m.x77 + 0.0001*m.x54*m.x78 + 0.0001*m.x54*m.x79
+ 0.0001*m.x54*m.x80 + 0.0001*m.x54*m.x81 + 0.0001*m.x54*m.x82 + 0.0001*m.x54*m.x83 + 0.0001*
m.x54*m.x84 + 0.0001*m.x54*m.x85 + 0.0001*m.x54*m.x86 + 0.0001*m.x54*m.x87 + 0.0001*m.x54*m.x88
+ 0.0001*m.x54*m.x89 + 3.34228364077303*m.x54*m.x90 + 0.0001*m.x54*m.x91 + 0.0001*m.x54*m.x92 +
0.0001*m.x54*m.x93 + 0.0001*m.x54*m.x94 + 0.0001*m.x54*m.x95 + 0.0001*m.x54*m.x96 + 0.0001*m.x54*
m.x97 + 0.0001*m.x54*m.x98 + 0.0001*m.x54*m.x99 + 0.0001*m.x54*m.x100 + 0.0001*m.x54*m.x101 +
0.0001*m.x54*m.x102 + 0.0001*m.x54*m.x103 + 0.0001*m.x54*m.x104 + 0.0001*m.x54*m.x105 + 0.0001*
m.x54*m.x106 + 0.0001*m.x54*m.x107 + 0.0001*m.x54*m.x108 + 0.0001*m.x54*m.x109 + 0.0001*m.x54*
m.x110 + 0.0001*m.x54*m.x111 + 0.0001*m.x54*m.x112 + 0.0001*m.x54*m.x113 + 0.0001*m.x54*m.x114 +
0.0001*m.x54*m.x115 + 0.0001*m.x54*m.x116 + 0.0001*m.x54*m.x117 + 0.0001*m.x54*m.x118 + 0.0001*
m.x54*m.x119 + 0.0001*m.x54*m.x120 + 0.0001*m.x54*m.x121 + 0.0001*m.x54*m.x122 + 0.0001*m.x54*
m.x123 + 0.0001*m.x54*m.x124 + 0.0001*m.x54*m.x125 + 0.0001*m.x54*m.x126 + 0.0001*m.x54*m.x127 +
0.0001*m.x54*m.x128 + 0.0001*m.x54*m.x129 + 0.0001*m.x54*m.x130 + 0.0001*m.x54*m.x131 + 0.0001*
m.x54*m.x132 + 0.0001*m.x54*m.x133 + 0.0001*m.x54*m.x134 + 0.0001*m.x54*m.x135 + 0.0001*m.x54*
m.x136 + 0.0001*m.x54*m.x137 + 0.0001*m.x54*m.x138 + 0.0001*m.x54*m.x139 + 0.0001*m.x54*m.x140 +
0.0001*m.x54*m.x141 + 0.0001*m.x54*m.x142 + 0.0001*m.x54*m.x143 + 0.0001*m.x54*m.x144 + 0.0001*
m.x54*m.x145 + 0.0001*m.x54*m.x146 + 0.0001*m.x54*m.x147 + 0.0001*m.x54*m.x148 + 0.0001*m.x54*
m.x149 + 0.0001*m.x54*m.x150 + 0.0001*m.x54*m.x151 + 0.0001*m.x54*m.x152 + 0.0001*m.x54*m.x153 +
0.0001*m.x54*m.x154 + 0.0001*m.x54*m.x155 + 0.0001*m.x54*m.x156 + 0.0001*m.x54*m.x157 + 0.0001*
m.x54*m.x158 + 0.0001*m.x54*m.x159 + 0.0001*m.x54*m.x160 + 0.0001*m.x54*m.x161 + 0.0001*m.x54*
m.x162 + 0.0001*m.x54*m.x163 + 0.0001*m.x54*m.x164 + 0.0001*m.x54*m.x165 + 0.0001*m.x54*m.x166 +
0.0001*m.x54*m.x167 + 0.0001*m.x54*m.x168 + 0.0001*m.x54*m.x169 + 0.0001*m.x54*m.x170 + 0.0001*
m.x54*m.x171 + 0.0001*m.x54*m.x172 + 0.0001*m.x54*m.x173 + 0.0001*m.x54*m.x174 + 0.0001*m.x54*
m.x175 + 0.0001*m.x54*m.x176 + 0.0001*m.x54*m.x177 + 0.0001*m.x54*m.x178 + 0.0001*m.x54*m.x179 +
0.0001*m.x54*m.x180 + 0.0001*m.x54*m.x181 + 0.0001*m.x54*m.x182 + 0.0001*m.x54*m.x183 + 0.0001*
m.x54*m.x184 + 0.0001*m.x54*m.x185 + 0.0001*m.x55*m.x1 + 0.0001*m.x55*m.x2 + 0.0001*m.x55*m.x3 +
0.0001*m.x55*m.x4 + 0.0001*m.x55*m.x5 + 0.0001*m.x55*m.x6 + 0.0001*m.x55*m.x7 + 0.0001*m.x55*m.x8
+ 0.0001*m.x55*m.x9 + 0.0001*m.x55*m.x10 + 0.0001*m.x55*m.x11 + 0.0001*m.x55*m.x12 + 0.0001*
m.x55*m.x13 + 0.0001*m.x55*m.x14 + 0.0001*m.x55*m.x15 + 0.0001*m.x55*m.x16 + 0.0001*m.x55*m.x17
+ 0.0001*m.x55*m.x18 + 0.0001*m.x55*m.x19 + 0.0001*m.x55*m.x20 + 0.0001*m.x55*m.x21 + 0.0001*
m.x55*m.x22 + 0.0001*m.x55*m.x23 + 0.0001*m.x55*m.x24 + 0.0001*m.x55*m.x25 + 0.0001*m.x55*m.x26
+ 0.0001*m.x55*m.x27 + 0.0001*m.x55*m.x28 + 0.0001*m.x55*m.x29 + 0.0001*m.x55*m.x30 + 0.0001*
m.x55*m.x31 + 1.7735490726527*m.x55*m.x32 + 1.65089229431681*m.x55*m.x33 + 0.0001*m.x55*m.x34 +
0.0001*m.x55*m.x35 + 0.0001*m.x55*m.x36 + 0.0001*m.x55*m.x37 + 0.0001*m.x55*m.x38 + 0.0001*m.x55*
m.x39 + 0.0001*m.x55*m.x40 + 0.0001*m.x55*m.x41 + 0.0001*m.x55*m.x42 + 0.0001*m.x55*m.x43 +
0.0001*m.x55*m.x44 + 0.0001*m.x55*m.x45 + 0.0001*m.x55*m.x46 + 0.0001*m.x55*m.x47 + 0.0001*m.x55*
m.x48 + 0.0001*m.x55*m.x49 + 0.0001*m.x55*m.x50 + 0.0001*m.x55*m.x51 + 0.0001*m.x55*m.x52 +
0.0001*m.x55*m.x53 + 0.0001*m.x55*m.x54 + 2.19999678582768*m.x55**2 + 0.0001*m.x55*m.x56 + 0.0001
*m.x55*m.x57 + 0.0001*m.x55*m.x58 + 0.0001*m.x55*m.x59 + 0.0001*m.x55*m.x60 + 0.0001*m.x55*m.x61
+ 0.0001*m.x55*m.x62 + 0.0001*m.x55*m.x63 + 0.0001*m.x55*m.x64 + 0.0001*m.x55*m.x65 + 0.0001*
m.x55*m.x66 + 0.0001*m.x55*m.x67 + 0.0001*m.x55*m.x68 + 0.0001*m.x55*m.x69 + 0.0001*m.x55*m.x70
+ 0.0001*m.x55*m.x71 + 0.0001*m.x55*m.x72 + 0.0001*m.x55*m.x73 + 0.0001*m.x55*m.x74 + 0.0001*
m.x55*m.x75 + 0.0001*m.x55*m.x76 + 0.0001*m.x55*m.x77 + 0.0001*m.x55*m.x78 + 0.0001*m.x55*m.x79
+ 0.0001*m.x55*m.x80 + 0.0001*m.x55*m.x81 + 0.0001*m.x55*m.x82 + 0.0001*m.x55*m.x83 + 0.0001*
m.x55*m.x84 + 0.0001*m.x55*m.x85 + 0.0001*m.x55*m.x86 + 0.0001*m.x55*m.x87 + 0.0001*m.x55*m.x88
+ 0.0001*m.x55*m.x89 + 0.0001*m.x55*m.x90 + 3.34228364077303*m.x55*m.x91 + 3.14439991707406*
m.x55*m.x92 + 0.0001*m.x55*m.x93 + 0.0001*m.x55*m.x94 + 0.0001*m.x55*m.x95 + 0.0001*m.x55*m.x96
+ 0.0001*m.x55*m.x97 + 0.0001*m.x55*m.x98 + 0.0001*m.x55*m.x99 + 0.0001*m.x55*m.x100 + 0.0001*
m.x55*m.x101 + 0.0001*m.x55*m.x102 + 0.0001*m.x55*m.x103 + 0.0001*m.x55*m.x104 + 0.0001*m.x55*
m.x105 + 0.0001*m.x55*m.x106 + 0.0001*m.x55*m.x107 + 0.0001*m.x55*m.x108 + 0.0001*m.x55*m.x109 +
0.0001*m.x55*m.x110 + 0.0001*m.x55*m.x111 + 0.0001*m.x55*m.x112 + 0.0001*m.x55*m.x113 + 0.0001*
m.x55*m.x114 + 0.0001*m.x55*m.x115 + 0.0001*m.x55*m.x116 + 0.0001*m.x55*m.x117 + 0.0001*m.x55*
m.x118 + 0.0001*m.x55*m.x119 + 0.0001*m.x55*m.x120 + 0.0001*m.x55*m.x121 + 0.0001*m.x55*m.x122 +
0.0001*m.x55*m.x123 + 0.0001*m.x55*m.x124 + 0.0001*m.x55*m.x125 + 0.0001*m.x55*m.x126 + 0.0001*
m.x55*m.x127 + 0.0001*m.x55*m.x128 + 0.0001*m.x55*m.x129 + 0.0001*m.x55*m.x130 + 0.0001*m.x55*
m.x131 + 0.0001*m.x55*m.x132 + 0.0001*m.x55*m.x133 + 0.0001*m.x55*m.x134 + 0.0001*m.x55*m.x135 +
0.0001*m.x55*m.x136 + 0.0001*m.x55*m.x137 + 0.0001*m.x55*m.x138 + 0.0001*m.x55*m.x139 + 0.0001*
m.x55*m.x140 + 0.0001*m.x55*m.x141 + 0.0001*m.x55*m.x142 + 0.0001*m.x55*m.x143 + 0.0001*m.x55*
m.x144 + 0.0001*m.x55*m.x145 + 0.0001*m.x55*m.x146 + 0.0001*m.x55*m.x147 + 0.0001*m.x55*m.x148 +
0.0001*m.x55*m.x149 + 0.0001*m.x55*m.x150 + 0.0001*m.x55*m.x151 + 0.0001*m.x55*m.x152 + 0.0001*
m.x55*m.x153 + 0.0001*m.x55*m.x154 + 0.0001*m.x55*m.x155 + 0.0001*m.x55*m.x156 + 0.0001*m.x55*
m.x157 + 0.0001*m.x55*m.x158 + 0.0001*m.x55*m.x159 + 0.0001*m.x55*m.x160 + 0.0001*m.x55*m.x161 +
0.0001*m.x55*m.x162 + 0.0001*m.x55*m.x163 + 0.0001*m.x55*m.x164 + 0.0001*m.x55*m.x165 + 0.0001*
m.x55*m.x166 + 0.0001*m.x55*m.x167 + 0.0001*m.x55*m.x168 + 0.0001*m.x55*m.x169 + 0.0001*m.x55*
m.x170 + 0.0001*m.x55*m.x171 + 0.0001*m.x55*m.x172 + 0.0001*m.x55*m.x173 + 0.0001*m.x55*m.x174 +
0.0001*m.x55*m.x175 + 0.0001*m.x55*m.x176 + 0.0001*m.x55*m.x177 + 0.0001*m.x55*m.x178 + 0.0001*
m.x55*m.x179 + 0.0001*m.x55*m.x180 + 0.0001*m.x55*m.x181 + 0.0001*m.x55*m.x182 + 0.0001*m.x55*
m.x183 + 0.0001*m.x55*m.x184 + 0.0001*m.x55*m.x185 + 0.0001*m.x56*m.x1 + 0.0001*m.x56*m.x2 +
0.0001*m.x56*m.x3 + 0.0001*m.x56*m.x4 + 0.0001*m.x56*m.x5 + 0.0001*m.x56*m.x6 + 0.0001*m.x56*m.x7
+ 0.0001*m.x56*m.x8 + 0.0001*m.x56*m.x9 + 0.0001*m.x56*m.x10 + 0.0001*m.x56*m.x11 + 0.0001*m.x56
*m.x12 + 0.0001*m.x56*m.x13 + 0.0001*m.x56*m.x14 + 0.0001*m.x56*m.x15 + 0.0001*m.x56*m.x16 +
0.0001*m.x56*m.x17 + 0.0001*m.x56*m.x18 + 0.0001*m.x56*m.x19 + 0.0001*m.x56*m.x20 + 0.0001*m.x56*
m.x21 + 0.0001*m.x56*m.x22 + 0.0001*m.x56*m.x23 + 0.0001*m.x56*m.x24 + 0.0001*m.x56*m.x25 +
0.0001*m.x56*m.x26 + 0.0001*m.x56*m.x27 + 0.0001*m.x56*m.x28 + 0.0001*m.x56*m.x29 + 0.0001*m.x56*
m.x30 + 0.0001*m.x56*m.x31 + 0.0001*m.x56*m.x32 + 0.0001*m.x56*m.x33 + 1.65089229431681*m.x56*
m.x34 + 0.0001*m.x56*m.x35 + 0.0001*m.x56*m.x36 + 0.0001*m.x56*m.x37 + 0.0001*m.x56*m.x38 +
0.0001*m.x56*m.x39 + 0.0001*m.x56*m.x40 + 0.0001*m.x56*m.x41 + 0.0001*m.x56*m.x42 + 0.0001*m.x56*
m.x43 + 0.0001*m.x56*m.x44 + 0.0001*m.x56*m.x45 + 0.0001*m.x56*m.x46 + 0.0001*m.x56*m.x47 +
0.0001*m.x56*m.x48 + 0.0001*m.x56*m.x49 + 0.0001*m.x56*m.x50 + 0.0001*m.x56*m.x51 + 0.0001*m.x56*
m.x52 + 0.0001*m.x56*m.x53 + 0.0001*m.x56*m.x54 + 0.0001*m.x56*m.x55 + 1.0180547994709*m.x56**2
+ 0.0001*m.x56*m.x57 + 0.0001*m.x56*m.x58 + 0.0001*m.x56*m.x59 + 0.0001*m.x56*m.x60 + 0.0001*
m.x56*m.x61 + 0.0001*m.x56*m.x62 + 0.0001*m.x56*m.x63 + 0.0001*m.x56*m.x64 + 0.0001*m.x56*m.x65
+ 0.0001*m.x56*m.x66 + 0.0001*m.x56*m.x67 + 0.0001*m.x56*m.x68 + 0.0001*m.x56*m.x69 + 0.0001*
m.x56*m.x70 + 0.0001*m.x56*m.x71 + 0.0001*m.x56*m.x72 + 0.0001*m.x56*m.x73 + 0.0001*m.x56*m.x74
+ 0.0001*m.x56*m.x75 + 0.0001*m.x56*m.x76 + 0.0001*m.x56*m.x77 + 0.0001*m.x56*m.x78 + 0.0001*
m.x56*m.x79 + 0.0001*m.x56*m.x80 + 0.0001*m.x56*m.x81 + 0.0001*m.x56*m.x82 + 0.0001*m.x56*m.x83
+ 0.0001*m.x56*m.x84 + 0.0001*m.x56*m.x85 + 0.0001*m.x56*m.x86 + 0.0001*m.x56*m.x87 + 0.0001*
m.x56*m.x88 + 0.0001*m.x56*m.x89 + 0.0001*m.x56*m.x90 + 0.0001*m.x56*m.x91 + 0.0001*m.x56*m.x92
+ 3.14439991707406*m.x56*m.x93 + 0.0001*m.x56*m.x94 + 0.0001*m.x56*m.x95 + 0.0001*m.x56*m.x96 +
0.0001*m.x56*m.x97 + 0.0001*m.x56*m.x98 + 0.0001*m.x56*m.x99 + 0.0001*m.x56*m.x100 + 0.0001*m.x56
*m.x101 + 0.0001*m.x56*m.x102 + 0.0001*m.x56*m.x103 + 0.0001*m.x56*m.x104 + 0.0001*m.x56*m.x105
+ 0.0001*m.x56*m.x106 + 0.0001*m.x56*m.x107 + 0.0001*m.x56*m.x108 + 0.0001*m.x56*m.x109 + 0.0001
*m.x56*m.x110 + 0.0001*m.x56*m.x111 + 0.0001*m.x56*m.x112 + 0.0001*m.x56*m.x113 + 0.0001*m.x56*
m.x114 + 0.0001*m.x56*m.x115 + 0.0001*m.x56*m.x116 + 0.0001*m.x56*m.x117 + 0.0001*m.x56*m.x118 +
0.0001*m.x56*m.x119 + 0.0001*m.x56*m.x120 + 0.0001*m.x56*m.x121 + 0.0001*m.x56*m.x122 + 0.0001*
m.x56*m.x123 + 0.0001*m.x56*m.x124 + 0.0001*m.x56*m.x125 + 0.0001*m.x56*m.x126 + 0.0001*m.x56*
m.x127 + 0.0001*m.x56*m.x128 + 0.0001*m.x56*m.x129 + 0.437738595417195*m.x56*m.x130 + 0.0001*
m.x56*m.x131 + 0.0001*m.x56*m.x132 + 0.0001*m.x56*m.x133 + 0.0001*m.x56*m.x134 + 0.0001*m.x56*
m.x135 + 0.0001*m.x56*m.x136 + 0.0001*m.x56*m.x137 + 0.0001*m.x56*m.x138 + 0.0001*m.x56*m.x139 +
0.0001*m.x56*m.x140 + 0.0001*m.x56*m.x141 + 0.0001*m.x56*m.x142 + 0.0001*m.x56*m.x143 + 0.0001*
m.x56*m.x144 + 0.0001*m.x56*m.x145 + 0.0001*m.x56*m.x146 + 0.0001*m.x56*m.x147 + 0.0001*m.x56*
m.x148 + 0.0001*m.x56*m.x149 + 0.0001*m.x56*m.x150 + 0.0001*m.x56*m.x151 + 0.0001*m.x56*m.x152 +
0.0001*m.x56*m.x153 + 0.0001*m.x56*m.x154 + 0.0001*m.x56*m.x155 + 0.0001*m.x56*m.x156 + 0.0001*
m.x56*m.x157 + 0.0001*m.x56*m.x158 + 0.0001*m.x56*m.x159 + 0.0001*m.x56*m.x160 + 0.0001*m.x56*
m.x161 + 0.0001*m.x56*m.x162 + 0.0001*m.x56*m.x163 + 0.0001*m.x56*m.x164 + 0.0001*m.x56*m.x165 +
0.0001*m.x56*m.x166 + 0.0001*m.x56*m.x167 + 0.0001*m.x56*m.x168 + 0.0001*m.x56*m.x169 + 0.0001*
m.x56*m.x170 + 0.0001*m.x56*m.x171 + 0.0001*m.x56*m.x172 + 0.0001*m.x56*m.x173 + 0.0001*m.x56*
m.x174 + 0.0001*m.x56*m.x175 + 0.0001*m.x56*m.x176 + 0.0001*m.x56*m.x177 + 0.0001*m.x56*m.x178 +
0.0001*m.x56*m.x179 + 0.0001*m.x56*m.x180 + 0.0001*m.x56*m.x181 + 0.0001*m.x56*m.x182 + 0.0001*
m.x56*m.x183 + 0.0001*m.x56*m.x184 + 0.0001*m.x56*m.x185 + 0.0001*m.x57*m.x1 + 0.0001*m.x57*m.x2
+ 0.0001*m.x57*m.x3 + 0.0001*m.x57*m.x4 + 0.0001*m.x57*m.x5 + 0.0001*m.x57*m.x6 + 0.0001*m.x57*
m.x7 + 0.0001*m.x57*m.x8 + 0.0001*m.x57*m.x9 + 0.0001*m.x57*m.x10 + 0.0001*m.x57*m.x11 + 0.0001*
m.x57*m.x12 + 0.0001*m.x57*m.x13 + 0.0001*m.x57*m.x14 + 0.0001*m.x57*m.x15 + 0.0001*m.x57*m.x16
+ 0.0001*m.x57*m.x17 + 0.0001*m.x57*m.x18 + 0.0001*m.x57*m.x19 + 0.0001*m.x57*m.x20 + 0.0001*
m.x57*m.x21 + 0.0001*m.x57*m.x22 + 0.0001*m.x57*m.x23 + 0.0001*m.x57*m.x24 + 0.211484509361612*
m.x57*m.x25 + 0.0001*m.x57*m.x26 + 0.0001*m.x57*m.x27 + 0.0001*m.x57*m.x28 + 0.0001*m.x57*m.x29
+ 0.0001*m.x57*m.x30 + 0.0001*m.x57*m.x31 + 0.0001*m.x57*m.x32 + 0.0001*m.x57*m.x33 + 0.0001*
m.x57*m.x34 + 1.70540322124996*m.x57*m.x35 + 0.0001*m.x57*m.x36 + 0.0001*m.x57*m.x37 + 0.0001*
m.x57*m.x38 + 0.0001*m.x57*m.x39 + 0.0001*m.x57*m.x40 + 0.0001*m.x57*m.x41 + 0.0001*m.x57*m.x42
+ 0.0001*m.x57*m.x43 + 0.0001*m.x57*m.x44 + 0.0001*m.x57*m.x45 + 0.0001*m.x57*m.x46 + 0.0001*
m.x57*m.x47 + 0.0001*m.x57*m.x48 + 0.0001*m.x57*m.x49 + 0.0001*m.x57*m.x50 + 0.0001*m.x57*m.x51
+ 0.0001*m.x57*m.x52 + 0.0001*m.x57*m.x53 + 0.0001*m.x57*m.x54 + 0.0001*m.x57*m.x55 + 0.0001*
m.x57*m.x56 + 1.06607589058937*m.x57**2 + 0.0001*m.x57*m.x58 + 0.0001*m.x57*m.x59 + 0.0001*m.x57*
m.x60 + 0.0001*m.x57*m.x61 + 0.0001*m.x57*m.x62 + 0.0001*m.x57*m.x63 + 0.0001*m.x57*m.x64 +
0.0001*m.x57*m.x65 + 0.0001*m.x57*m.x66 + 0.0001*m.x57*m.x67 + 0.0001*m.x57*m.x68 + 0.0001*m.x57*
m.x69 + 0.0001*m.x57*m.x70 + 0.0001*m.x57*m.x71 + 0.0001*m.x57*m.x72 + 0.0001*m.x57*m.x73 +
0.0001*m.x57*m.x74 + 0.0001*m.x57*m.x75 + 0.0001*m.x57*m.x76 + 0.0001*m.x57*m.x77 + 0.0001*m.x57*
m.x78 + 0.0001*m.x57*m.x79 + 0.0001*m.x57*m.x80 + 0.0001*m.x57*m.x81 + 0.0001*m.x57*m.x82 +
0.0001*m.x57*m.x83 + 0.0001*m.x57*m.x84 + 0.0001*m.x57*m.x85 + 0.0001*m.x57*m.x86 + 0.0001*m.x57*
m.x87 + 0.0001*m.x57*m.x88 + 0.0001*m.x57*m.x89 + 0.0001*m.x57*m.x90 + 0.0001*m.x57*m.x91 +
0.0001*m.x57*m.x92 + 0.0001*m.x57*m.x93 + 3.21771003868294*m.x57*m.x94 + 0.0001*m.x57*m.x95 +
0.0001*m.x57*m.x96 + 0.0001*m.x57*m.x97 + 0.0001*m.x57*m.x98 + 0.0001*m.x57*m.x99 + 0.0001*m.x57*
m.x100 + 0.0001*m.x57*m.x101 + 0.0001*m.x57*m.x102 + 0.0001*m.x57*m.x103 + 0.0001*m.x57*m.x104 +
0.0001*m.x57*m.x105 + 0.0001*m.x57*m.x106 + 0.0001*m.x57*m.x107 + 0.0001*m.x57*m.x108 + 0.0001*
m.x57*m.x109 + 0.0001*m.x57*m.x110 + 0.0001*m.x57*m.x111 + 0.0001*m.x57*m.x112 + 0.0001*m.x57*
m.x113 + 0.0001*m.x57*m.x114 + 0.0001*m.x57*m.x115 + 0.0001*m.x57*m.x116 + 0.0001*m.x57*m.x117 +
0.0001*m.x57*m.x118 + 0.0001*m.x57*m.x119 + 0.0001*m.x57*m.x120 + 0.0001*m.x57*m.x121 + 0.0001*
m.x57*m.x122 + 0.0001*m.x57*m.x123 + 0.0001*m.x57*m.x124 + 0.0001*m.x57*m.x125 + 0.0001*m.x57*
m.x126 + 0.0001*m.x57*m.x127 + 0.0001*m.x57*m.x128 + 0.0001*m.x57*m.x129 + 0.0001*m.x57*m.x130 +
0.447942246308306*m.x57*m.x131 + 0.0001*m.x57*m.x132 + 0.0001*m.x57*m.x133 + 0.0001*m.x57*m.x134
+ 0.0001*m.x57*m.x135 + 0.0001*m.x57*m.x136 + 0.0001*m.x57*m.x137 + 0.0001*m.x57*m.x138 + 0.0001
*m.x57*m.x139 + 0.0001*m.x57*m.x140 + 0.0001*m.x57*m.x141 + 0.0001*m.x57*m.x142 + 0.0001*m.x57*
m.x143 + 0.0001*m.x57*m.x144 + 0.0001*m.x57*m.x145 + 0.0001*m.x57*m.x146 + 0.0001*m.x57*m.x147 +
0.0001*m.x57*m.x148 + 0.0001*m.x57*m.x149 + 0.0001*m.x57*m.x150 + 0.0001*m.x57*m.x151 + 0.0001*
m.x57*m.x152 + 0.0001*m.x57*m.x153 + 0.0001*m.x57*m.x154 + 0.0001*m.x57*m.x155 + 0.0001*m.x57*
m.x156 + 0.0001*m.x57*m.x157 + 0.0001*m.x57*m.x158 + 0.0001*m.x57*m.x159 + 0.0001*m.x57*m.x160 +
0.0001*m.x57*m.x161 + 0.0001*m.x57*m.x162 + 0.0001*m.x57*m.x163 + 0.0001*m.x57*m.x164 + 0.0001*
m.x57*m.x165 + 0.0001*m.x57*m.x166 + 0.0001*m.x57*m.x167 + 0.0001*m.x57*m.x168 + 0.0001*m.x57*
m.x169 + 0.0001*m.x57*m.x170 + 0.0001*m.x57*m.x171 + 0.0001*m.x57*m.x172 + 0.0001*m.x57*m.x173 +
0.0001*m.x57*m.x174 + 0.0001*m.x57*m.x175 + 0.0001*m.x57*m.x176 + 0.0001*m.x57*m.x177 + 0.0001*
m.x57*m.x178 + 0.0001*m.x57*m.x179 + 0.0001*m.x57*m.x180 + 0.0001*m.x57*m.x181 + 0.0001*m.x57*
m.x182 + 0.0001*m.x57*m.x183 + 0.0001*m.x57*m.x184 + 0.0001*m.x57*m.x185 + 0.0001*m.x58*m.x1 +
0.0001*m.x58*m.x2 + 0.0001*m.x58*m.x3 + 0.0001*m.x58*m.x4 + 0.0001*m.x58*m.x5 + 0.0001*m.x58*m.x6
+ 0.0001*m.x58*m.x7 + 0.0001*m.x58*m.x8 + 0.0001*m.x58*m.x9 + 0.0001*m.x58*m.x10 + 0.0001*m.x58*
m.x11 + 0.0001*m.x58*m.x12 + 0.0001*m.x58*m.x13 + 0.0001*m.x58*m.x14 + 0.0001*m.x58*m.x15 +
0.0001*m.x58*m.x16 + 0.0001*m.x58*m.x17 + 0.0001*m.x58*m.x18 + 0.0001*m.x58*m.x19 + 0.0001*m.x58*
m.x20 + 0.0001*m.x58*m.x21 + 0.0001*m.x58*m.x22 + 0.0001*m.x58*m.x23 + 0.0001*m.x58*m.x24 +
0.0001*m.x58*m.x25 + 0.221547820101383*m.x58*m.x26 + 0.0001*m.x58*m.x27 + 0.0001*m.x58*m.x28 +
0.0001*m.x58*m.x29 + 0.0001*m.x58*m.x30 + 0.0001*m.x58*m.x31 + 0.0001*m.x58*m.x32 + 0.0001*m.x58*
m.x33 + 0.0001*m.x58*m.x34 + 0.0001*m.x58*m.x35 + 0.0001*m.x58*m.x36 + 0.0001*m.x58*m.x37 +
0.0001*m.x58*m.x38 + 0.0001*m.x58*m.x39 + 0.0001*m.x58*m.x40 + 0.0001*m.x58*m.x41 + 0.0001*m.x58*
m.x42 + 0.0001*m.x58*m.x43 + 0.0001*m.x58*m.x44 + 0.0001*m.x58*m.x45 + 0.0001*m.x58*m.x46 +
0.0001*m.x58*m.x47 + 0.0001*m.x58*m.x48 + 0.0001*m.x58*m.x49 + 0.0001*m.x58*m.x50 + 0.0001*m.x58*
m.x51 + 0.0001*m.x58*m.x52 + 0.0001*m.x58*m.x53 + 0.0001*m.x58*m.x54 + 0.0001*m.x58*m.x55 +
0.0001*m.x58*m.x56 + 0.0001*m.x58*m.x57 + 1.13455229244314*m.x58**2 + 0.0001*m.x58*m.x59 + 0.0001
*m.x58*m.x60 + 0.0001*m.x58*m.x61 + 0.0001*m.x58*m.x62 + 0.0001*m.x58*m.x63 + 0.0001*m.x58*m.x64
+ 0.0001*m.x58*m.x65 + 0.0001*m.x58*m.x66 + 0.0001*m.x58*m.x67 + 0.0001*m.x58*m.x68 + 0.0001*
m.x58*m.x69 + 0.0001*m.x58*m.x70 + 0.0001*m.x58*m.x71 + 0.0001*m.x58*m.x72 + 0.0001*m.x58*m.x73
+ 0.0001*m.x58*m.x74 + 0.0001*m.x58*m.x75 + 0.0001*m.x58*m.x76 + 0.0001*m.x58*m.x77 + 0.0001*
m.x58*m.x78 + 0.0001*m.x58*m.x79 + 0.0001*m.x58*m.x80 + 0.0001*m.x58*m.x81 + 0.0001*m.x58*m.x82
+ 0.0001*m.x58*m.x83 + 0.0001*m.x58*m.x84 + 0.0001*m.x58*m.x85 + 0.0001*m.x58*m.x86 + 0.0001*
m.x58*m.x87 + 0.0001*m.x58*m.x88 + 0.0001*m.x58*m.x89 + 0.0001*m.x58*m.x90 + 0.0001*m.x58*m.x91
+ 0.0001*m.x58*m.x92 + 0.0001*m.x58*m.x93 + 0.0001*m.x58*m.x94 + 3.17841006619937*m.x58*m.x95 +
0.0001*m.x58*m.x96 + 0.0001*m.x58*m.x97 + 0.0001*m.x58*m.x98 + 0.0001*m.x58*m.x99 + 0.0001*m.x58*
m.x100 + 0.0001*m.x58*m.x101 + 0.0001*m.x58*m.x102 + 0.0001*m.x58*m.x103 + 0.0001*m.x58*m.x104 +
0.0001*m.x58*m.x105 + 0.0001*m.x58*m.x106 + 0.0001*m.x58*m.x107 + 0.0001*m.x58*m.x108 + 0.0001*
m.x58*m.x109 + 0.0001*m.x58*m.x110 + 0.0001*m.x58*m.x111 + 0.0001*m.x58*m.x112 + 0.0001*m.x58*
m.x113 + 0.0001*m.x58*m.x114 + 0.0001*m.x58*m.x115 + 0.0001*m.x58*m.x116 + 0.0001*m.x58*m.x117 +
0.0001*m.x58*m.x118 + 0.0001*m.x58*m.x119 + 0.0001*m.x58*m.x120 + 0.0001*m.x58*m.x121 + 0.0001*
m.x58*m.x122 + 0.0001*m.x58*m.x123 + 0.0001*m.x58*m.x124 + 0.0001*m.x58*m.x125 + 0.0001*m.x58*
m.x126 + 0.0001*m.x58*m.x127 + 0.0001*m.x58*m.x128 + 0.0001*m.x58*m.x129 + 0.0001*m.x58*m.x130 +
0.0001*m.x58*m.x131 + 0.475488660826549*m.x58*m.x132 + 0.0001*m.x58*m.x133 + 0.0001*m.x58*m.x134
+ 0.0001*m.x58*m.x135 + 0.0001*m.x58*m.x136 + 0.0001*m.x58*m.x137 + 0.0001*m.x58*m.x138 + 0.0001
*m.x58*m.x139 + 0.0001*m.x58*m.x140 + 0.0001*m.x58*m.x141 + 0.0001*m.x58*m.x142 + 0.0001*m.x58*
m.x143 + 0.0001*m.x58*m.x144 + 0.0001*m.x58*m.x145 + 0.0001*m.x58*m.x146 + 0.0001*m.x58*m.x147 +
0.0001*m.x58*m.x148 + 0.0001*m.x58*m.x149 + 0.0001*m.x58*m.x150 + 0.0001*m.x58*m.x151 + 0.0001*
m.x58*m.x152 + 0.0001*m.x58*m.x153 + 0.0001*m.x58*m.x154 + 0.0001*m.x58*m.x155 + 0.0001*m.x58*
m.x156 + 0.0001*m.x58*m.x157 + 0.0001*m.x58*m.x158 + 0.0001*m.x58*m.x159 + 0.0001*m.x58*m.x160 +
0.0001*m.x58*m.x161 + 0.0001*m.x58*m.x162 + 0.0001*m.x58*m.x163 + 0.0001*m.x58*m.x164 + 0.0001*
m.x58*m.x165 + 0.0001*m.x58*m.x166 + 0.0001*m.x58*m.x167 + 0.0001*m.x58*m.x168 + 0.0001*m.x58*
m.x169 + 0.0001*m.x58*m.x170 + 0.0001*m.x58*m.x171 + 0.0001*m.x58*m.x172 + 0.0001*m.x58*m.x173 +
0.0001*m.x58*m.x174 + 0.0001*m.x58*m.x175 + 0.0001*m.x58*m.x176 + 0.0001*m.x58*m.x177 + 0.0001*
m.x58*m.x178 + 0.0001*m.x58*m.x179 + 0.0001*m.x58*m.x180 + 0.0001*m.x58*m.x181 + 0.0001*m.x58*
m.x182 + 0.0001*m.x58*m.x183 + 0.0001*m.x58*m.x184 + 0.0001*m.x58*m.x185 + 0.0001*m.x59*m.x1 +
0.0001*m.x59*m.x2 + 0.0001*m.x59*m.x3 + 0.0001*m.x59*m.x4 + 0.0001*m.x59*m.x5 + 0.0001*m.x59*m.x6
+ 0.0001*m.x59*m.x7 + 0.0001*m.x59*m.x8 + 0.0001*m.x59*m.x9 + 0.0001*m.x59*m.x10 + 0.0001*m.x59*
m.x11 + 0.0001*m.x59*m.x12 + 0.0001*m.x59*m.x13 + 0.0001*m.x59*m.x14 + 0.0001*m.x59*m.x15 +
0.0001*m.x59*m.x16 + 0.0001*m.x59*m.x17 + 0.0001*m.x59*m.x18 + 0.0001*m.x59*m.x19 + 0.0001*m.x59*
m.x20 + 0.0001*m.x59*m.x21 + 0.0001*m.x59*m.x22 + 0.0001*m.x59*m.x23 + 0.0001*m.x59*m.x24 +
0.0001*m.x59*m.x25 + 0.0001*m.x59*m.x26 + 0.0001*m.x59*m.x27 + 0.0001*m.x59*m.x28 + 0.0001*m.x59*
m.x29 + 0.0001*m.x59*m.x30 + 0.0001*m.x59*m.x31 + 0.0001*m.x59*m.x32 + 0.254202322766495*m.x59*
m.x33 + 0.0001*m.x59*m.x34 + 0.0001*m.x59*m.x35 + 0.0001*m.x59*m.x36 + 0.0001*m.x59*m.x37 +
0.0001*m.x59*m.x38 + 0.0001*m.x59*m.x39 + 0.0001*m.x59*m.x40 + 0.0001*m.x59*m.x41 + 0.0001*m.x59*
m.x42 + 0.0001*m.x59*m.x43 + 0.0001*m.x59*m.x44 + 0.0001*m.x59*m.x45 + 0.0001*m.x59*m.x46 +
0.0001*m.x59*m.x47 + 0.0001*m.x59*m.x48 + 0.0001*m.x59*m.x49 + 0.0001*m.x59*m.x50 + 0.0001*m.x59*
m.x51 + 0.0001*m.x59*m.x52 + 0.0001*m.x59*m.x53 + 0.0001*m.x59*m.x54 + 0.0001*m.x59*m.x55 +
0.0001*m.x59*m.x56 + 0.0001*m.x59*m.x57 + 0.0001*m.x59*m.x58 + 1.29987796601994*m.x59**2 + 0.0001
*m.x59*m.x60 + 0.0001*m.x59*m.x61 + 0.0001*m.x59*m.x62 + 0.0001*m.x59*m.x63 + 0.0001*m.x59*m.x64
+ 0.0001*m.x59*m.x65 + 0.0001*m.x59*m.x66 + 0.0001*m.x59*m.x67 + 0.0001*m.x59*m.x68 + 0.0001*
m.x59*m.x69 + 0.0001*m.x59*m.x70 + 0.0001*m.x59*m.x71 + 0.0001*m.x59*m.x72 + 0.0001*m.x59*m.x73
+ 0.0001*m.x59*m.x74 + 0.0001*m.x59*m.x75 + 0.0001*m.x59*m.x76 + 0.0001*m.x59*m.x77 + 0.0001*
m.x59*m.x78 + 0.0001*m.x59*m.x79 + 0.0001*m.x59*m.x80 + 0.0001*m.x59*m.x81 + 0.0001*m.x59*m.x82
+ 0.0001*m.x59*m.x83 + 0.0001*m.x59*m.x84 + 0.0001*m.x59*m.x85 + 0.0001*m.x59*m.x86 + 0.0001*
m.x59*m.x87 + 0.0001*m.x59*m.x88 + 0.0001*m.x59*m.x89 + 0.0001*m.x59*m.x90 + 0.0001*m.x59*m.x91
+ 0.0001*m.x59*m.x92 + 0.0001*m.x59*m.x93 + 0.0001*m.x59*m.x94 + 0.0001*m.x59*m.x95 + 0.0001*
m.x59*m.x96 + 0.0001*m.x59*m.x97 + 0.0001*m.x59*m.x98 + 0.0001*m.x59*m.x99 + 0.0001*m.x59*m.x100
+ 3.30746319381333*m.x59*m.x101 + 0.0001*m.x59*m.x102 + 0.0001*m.x59*m.x103 + 0.0001*m.x59*
m.x104 + 0.0001*m.x59*m.x105 + 0.0001*m.x59*m.x106 + 0.0001*m.x59*m.x107 + 0.0001*m.x59*m.x108 +
0.0001*m.x59*m.x109 + 0.0001*m.x59*m.x110 + 0.0001*m.x59*m.x111 + 0.0001*m.x59*m.x112 + 0.0001*
m.x59*m.x113 + 0.0001*m.x59*m.x114 + 0.0001*m.x59*m.x115 + 0.0001*m.x59*m.x116 + 0.0001*m.x59*
m.x117 + 0.0001*m.x59*m.x118 + 0.0001*m.x59*m.x119 + 0.0001*m.x59*m.x120 + 0.0001*m.x59*m.x121 +
0.0001*m.x59*m.x122 + 0.0001*m.x59*m.x123 + 0.0001*m.x59*m.x124 + 0.0001*m.x59*m.x125 + 0.0001*
m.x59*m.x126 + 0.0001*m.x59*m.x127 + 0.0001*m.x59*m.x128 + 0.0001*m.x59*m.x129 + 0.0001*m.x59*
m.x130 + 0.0001*m.x59*m.x131 + 0.0001*m.x59*m.x132 + 0.0001*m.x59*m.x133 + 0.0001*m.x59*m.x134 +
0.0001*m.x59*m.x135 + 0.0001*m.x59*m.x136 + 0.0001*m.x59*m.x137 + 0.0001*m.x59*m.x138 +
0.552520159022577*m.x59*m.x139 + 0.0001*m.x59*m.x140 + 0.0001*m.x59*m.x141 + 0.0001*m.x59*m.x142
+ 0.0001*m.x59*m.x143 + 0.0001*m.x59*m.x144 + 0.0001*m.x59*m.x145 + 0.0001*m.x59*m.x146 + 0.0001
*m.x59*m.x147 + 0.0001*m.x59*m.x148 + 0.0001*m.x59*m.x149 + 0.0001*m.x59*m.x150 + 0.0001*m.x59*
m.x151 + 0.0001*m.x59*m.x152 + 0.0001*m.x59*m.x153 + 0.0001*m.x59*m.x154 + 0.0001*m.x59*m.x155 +
0.0001*m.x59*m.x156 + 0.0001*m.x59*m.x157 + 0.0001*m.x59*m.x158 + 0.0001*m.x59*m.x159 + 0.0001*
m.x59*m.x160 + 0.0001*m.x59*m.x161 + 0.0001*m.x59*m.x162 + 0.0001*m.x59*m.x163 + 0.0001*m.x59*
m.x164 + 0.0001*m.x59*m.x165 + 0.0001*m.x59*m.x166 + 0.0001*m.x59*m.x167 + 0.0001*m.x59*m.x168 +
0.0001*m.x59*m.x169 + 0.0001*m.x59*m.x170 + 0.0001*m.x59*m.x171 + 0.0001*m.x59*m.x172 + 0.0001*
m.x59*m.x173 + 0.0001*m.x59*m.x174 + 0.0001*m.x59*m.x175 + 0.0001*m.x59*m.x176 + 0.0001*m.x59*
m.x177 + 0.0001*m.x59*m.x178 + 0.0001*m.x59*m.x179 + 0.0001*m.x59*m.x180 + 0.0001*m.x59*m.x181 +
0.0001*m.x59*m.x182 + 0.0001*m.x59*m.x183 + 0.0001*m.x59*m.x184 + 0.0001*m.x59*m.x185 + 0.0001*
m.x60*m.x1 + 0.0001*m.x60*m.x2 + 0.0001*m.x60*m.x3 + 0.0001*m.x60*m.x4 + 0.0001*m.x60*m.x5 +
0.0001*m.x60*m.x6 + 0.0001*m.x60*m.x7 + 0.0001*m.x60*m.x8 + 0.0001*m.x60*m.x9 + 0.0001*m.x60*
m.x10 + 0.0001*m.x60*m.x11 + 0.0001*m.x60*m.x12 + 0.0001*m.x60*m.x13 + 0.0001*m.x60*m.x14 +
0.0001*m.x60*m.x15 + 0.0001*m.x60*m.x16 + 0.0001*m.x60*m.x17 + 0.0001*m.x60*m.x18 + 0.0001*m.x60*
m.x19 + 0.0001*m.x60*m.x20 + 0.0001*m.x60*m.x21 + 0.0001*m.x60*m.x22 + 0.0001*m.x60*m.x23 +
0.0001*m.x60*m.x24 + 0.0001*m.x60*m.x25 + 0.0001*m.x60*m.x26 + 0.0001*m.x60*m.x27 + 0.0001*m.x60*
m.x28 + 0.0001*m.x60*m.x29 + 0.0001*m.x60*m.x30 + 0.0001*m.x60*m.x31 + 0.0001*m.x60*m.x32 +
0.0001*m.x60*m.x33 + 0.0001*m.x60*m.x34 + 0.0001*m.x60*m.x35 + 0.0001*m.x60*m.x36 + 0.0001*m.x60*
m.x37 + 0.0001*m.x60*m.x38 + 0.0001*m.x60*m.x39 + 0.0001*m.x60*m.x40 + 0.0001*m.x60*m.x41 +
0.0001*m.x60*m.x42 + 0.0001*m.x60*m.x43 + 0.0001*m.x60*m.x44 + 0.0001*m.x60*m.x45 + 0.0001*m.x60*
m.x46 + 0.0001*m.x60*m.x47 + 0.0001*m.x60*m.x48 + 0.0001*m.x60*m.x49 + 0.0001*m.x60*m.x50 +
0.0001*m.x60*m.x51 + 0.0001*m.x60*m.x52 + 0.0001*m.x60*m.x53 + 0.0001*m.x60*m.x54 + 0.0001*m.x60*
m.x55 + 0.0001*m.x60*m.x56 + 0.0001*m.x60*m.x57 + 0.0001*m.x60*m.x58 + 0.0001*m.x60*m.x59 +
12.0224048103097*m.x60**2 + 0.0001*m.x60*m.x61 + 0.0001*m.x60*m.x62 + 0.0001*m.x60*m.x63 + 0.0001
*m.x60*m.x64 + 0.0001*m.x60*m.x65 + 0.0001*m.x60*m.x66 + 0.0001*m.x60*m.x67 + 0.0001*m.x60*m.x68
+ 0.0001*m.x60*m.x69 + 0.0001*m.x60*m.x70 + 0.0001*m.x60*m.x71 + 5.09752086313842*m.x60*m.x72 +
0.0001*m.x60*m.x73 + 0.0001*m.x60*m.x74 + 0.0001*m.x60*m.x75 + 0.0001*m.x60*m.x76 + 0.0001*m.x60*
m.x77 + 0.0001*m.x60*m.x78 + 0.0001*m.x60*m.x79 + 0.0001*m.x60*m.x80 + 0.0001*m.x60*m.x81 +
0.0001*m.x60*m.x82 + 0.0001*m.x60*m.x83 + 0.0001*m.x60*m.x84 + 0.0001*m.x60*m.x85 + 0.0001*m.x60*
m.x86 + 0.0001*m.x60*m.x87 + 0.0001*m.x60*m.x88 + 0.0001*m.x60*m.x89 + 0.0001*m.x60*m.x90 +
0.0001*m.x60*m.x91 + 0.0001*m.x60*m.x92 + 0.0001*m.x60*m.x93 + 0.0001*m.x60*m.x94 + 0.0001*m.x60*
m.x95 + 0.0001*m.x60*m.x96 + 0.0001*m.x60*m.x97 + 0.0001*m.x60*m.x98 + 0.0001*m.x60*m.x99 +
0.0001*m.x60*m.x100 + 0.0001*m.x60*m.x101 + 0.0001*m.x60*m.x102 + 0.0001*m.x60*m.x103 + 0.0001*
m.x60*m.x104 + 0.0001*m.x60*m.x105 + 0.0001*m.x60*m.x106 + 0.0001*m.x60*m.x107 + 0.0001*m.x60*
m.x108 + 0.0001*m.x60*m.x109 + 0.0001*m.x60*m.x110 + 0.0001*m.x60*m.x111 + 0.0001*m.x60*m.x112 +
0.0001*m.x60*m.x113 + 0.0001*m.x60*m.x114 + 0.0001*m.x60*m.x115 + 0.0001*m.x60*m.x116 +
0.510414133291693*m.x60*m.x117 + 0.0001*m.x60*m.x118 + 0.0001*m.x60*m.x119 + 0.0001*m.x60*m.x120
+ 0.0001*m.x60*m.x121 + 0.0001*m.x60*m.x122 + 0.0001*m.x60*m.x123 + 0.0001*m.x60*m.x124 + 0.0001
*m.x60*m.x125 + 0.0001*m.x60*m.x126 + 0.0001*m.x60*m.x127 + 0.0001*m.x60*m.x128 + 0.0001*m.x60*
m.x129 + 0.0001*m.x60*m.x130 + 0.0001*m.x60*m.x131 + 0.0001*m.x60*m.x132 + 0.0001*m.x60*m.x133 +
0.0001*m.x60*m.x134 + 0.0001*m.x60*m.x135 + 0.0001*m.x60*m.x136 + 0.0001*m.x60*m.x137 + 0.0001*
m.x60*m.x138 + 0.0001*m.x60*m.x139 + 0.0001*m.x60*m.x140 + 0.0001*m.x60*m.x141 + 0.0001*m.x60*
m.x142 + 0.709657765000672*m.x60*m.x143 + 0.0001*m.x60*m.x144 + 0.0001*m.x60*m.x145 + 0.0001*
m.x60*m.x146 + 0.0001*m.x60*m.x147 + 0.0001*m.x60*m.x148 + 0.0001*m.x60*m.x149 + 0.0001*m.x60*
m.x150 + 0.0001*m.x60*m.x151 + 0.0001*m.x60*m.x152 + 0.0001*m.x60*m.x153 + 0.0001*m.x60*m.x154 +
0.0001*m.x60*m.x155 + 0.0001*m.x60*m.x156 + 0.0001*m.x60*m.x157 + 0.496930732887788*m.x60*m.x158
+ 0.0001*m.x60*m.x159 + 0.0001*m.x60*m.x160 + 0.0001*m.x60*m.x161 + 0.0001*m.x60*m.x162 + 0.0001
*m.x60*m.x163 + 0.0001*m.x60*m.x164 + 0.0001*m.x60*m.x165 + 0.0001*m.x60*m.x166 + 0.0001*m.x60*
m.x167 + 0.0001*m.x60*m.x168 + 0.0001*m.x60*m.x169 + 0.0001*m.x60*m.x170 + 0.0001*m.x60*m.x171 +
0.0001*m.x60*m.x172 + 0.0001*m.x60*m.x173 + 0.0001*m.x60*m.x174 + 0.0001*m.x60*m.x175 + 0.0001*
m.x60*m.x176 + 0.0001*m.x60*m.x177 + 0.0001*m.x60*m.x178 + 0.0001*m.x60*m.x179 + 0.0001*m.x60*
m.x180 + 0.0001*m.x60*m.x181 + 0.0001*m.x60*m.x182 + 0.0001*m.x60*m.x183 + 0.0001*m.x60*m.x184 +
0.0001*m.x60*m.x185 + 0.0001*m.x61*m.x1 + 0.0001*m.x61*m.x2 + 0.0001*m.x61*m.x3 + 0.0001*m.x61*
m.x4 + 0.0001*m.x61*m.x5 + 0.0001*m.x61*m.x6 + 0.0001*m.x61*m.x7 + 0.0001*m.x61*m.x8 + 0.0001*
m.x61*m.x9 + 0.0001*m.x61*m.x10 + 0.0001*m.x61*m.x11 + 0.0001*m.x61*m.x12 + 0.0001*m.x61*m.x13 +
0.0001*m.x61*m.x14 + 0.0001*m.x61*m.x15 + 0.0001*m.x61*m.x16 + 0.0001*m.x61*m.x17 + 0.0001*m.x61*
m.x18 + 0.0001*m.x61*m.x19 + 0.0001*m.x61*m.x20 + 0.0001*m.x61*m.x21 + 0.0001*m.x61*m.x22 +
0.0001*m.x61*m.x23 + 0.0001*m.x61*m.x24 + 0.0001*m.x61*m.x25 + 0.0001*m.x61*m.x26 + 0.0001*m.x61*
m.x27 + 0.0001*m.x61*m.x28 + 0.0001*m.x61*m.x29 + 0.0001*m.x61*m.x30 + 0.0001*m.x61*m.x31 +
0.0001*m.x61*m.x32 + 0.0001*m.x61*m.x33 + 0.0001*m.x61*m.x34 + 0.0001*m.x61*m.x35 + 0.0001*m.x61*
m.x36 + 0.0001*m.x61*m.x37 + 0.0001*m.x61*m.x38 + 0.0001*m.x61*m.x39 + 0.0001*m.x61*m.x40 +
0.0001*m.x61*m.x41 + 0.0001*m.x61*m.x42 + 0.0001*m.x61*m.x43 + 0.0001*m.x61*m.x44 + 0.0001*m.x61*
m.x45 + 0.0001*m.x61*m.x46 + 0.0001*m.x61*m.x47 + 0.0001*m.x61*m.x48 + 0.0001*m.x61*m.x49 +
0.0001*m.x61*m.x50 + 0.0001*m.x61*m.x51 + 0.0001*m.x61*m.x52 + 0.0001*m.x61*m.x53 + 0.0001*m.x61*
m.x54 + 0.0001*m.x61*m.x55 + 0.0001*m.x61*m.x56 + 0.0001*m.x61*m.x57 + 0.0001*m.x61*m.x58 +
0.0001*m.x61*m.x59 + 0.0001*m.x61*m.x60 + 10.4544359319946*m.x61**2 + 0.0001*m.x61*m.x62 + 0.0001
*m.x61*m.x63 + 0.0001*m.x61*m.x64 + 0.0001*m.x61*m.x65 + 0.0001*m.x61*m.x66 + 0.0001*m.x61*m.x67
+ 0.0001*m.x61*m.x68 + 0.0001*m.x61*m.x69 + 0.0001*m.x61*m.x70 + 0.0001*m.x61*m.x71 + 0.0001*
m.x61*m.x72 + 4.68006349519818*m.x61*m.x73 + 0.0001*m.x61*m.x74 + 0.0001*m.x61*m.x75 + 0.0001*
m.x61*m.x76 + 0.0001*m.x61*m.x77 + 0.0001*m.x61*m.x78 + 0.0001*m.x61*m.x79 + 0.0001*m.x61*m.x80
+ 0.0001*m.x61*m.x81 + 0.0001*m.x61*m.x82 + 0.0001*m.x61*m.x83 + 0.0001*m.x61*m.x84 + 0.0001*
m.x61*m.x85 + 0.0001*m.x61*m.x86 + 0.0001*m.x61*m.x87 + 0.0001*m.x61*m.x88 + 0.0001*m.x61*m.x89
+ 0.0001*m.x61*m.x90 + 0.0001*m.x61*m.x91 + 0.0001*m.x61*m.x92 + 0.0001*m.x61*m.x93 + 0.0001*
m.x61*m.x94 + 0.0001*m.x61*m.x95 + 0.0001*m.x61*m.x96 + 0.0001*m.x61*m.x97 + 0.0001*m.x61*m.x98
+ 0.0001*m.x61*m.x99 + 0.0001*m.x61*m.x100 + 0.0001*m.x61*m.x101 + 0.0001*m.x61*m.x102 + 0.0001*
m.x61*m.x103 + 0.0001*m.x61*m.x104 + 0.0001*m.x61*m.x105 + 0.0001*m.x61*m.x106 + 0.0001*m.x61*
m.x107 + 0.0001*m.x61*m.x108 + 0.0001*m.x61*m.x109 + 0.0001*m.x61*m.x110 + 0.0001*m.x61*m.x111 +
0.0001*m.x61*m.x112 + 0.0001*m.x61*m.x113 + 0.0001*m.x61*m.x114 + 0.0001*m.x61*m.x115 + 0.0001*
m.x61*m.x116 + 0.0001*m.x61*m.x117 + 0.0001*m.x61*m.x118 + 0.0001*m.x61*m.x119 + 0.0001*m.x61*
m.x120 + 0.0001*m.x61*m.x121 + 0.0001*m.x61*m.x122 + 0.0001*m.x61*m.x123 + 0.0001*m.x61*m.x124 +
0.0001*m.x61*m.x125 + 0.0001*m.x61*m.x126 + 0.0001*m.x61*m.x127 + 0.0001*m.x61*m.x128 + 0.0001*
m.x61*m.x129 + 0.0001*m.x61*m.x130 + 0.0001*m.x61*m.x131 + 0.0001*m.x61*m.x132 + 0.0001*m.x61*
m.x133 + 0.0001*m.x61*m.x134 + 0.0001*m.x61*m.x135 + 0.0001*m.x61*m.x136 + 0.0001*m.x61*m.x137 +
0.0001*m.x61*m.x138 + 0.0001*m.x61*m.x139 + 0.0001*m.x61*m.x140 + 0.0001*m.x61*m.x141 + 0.0001*
m.x61*m.x142 + 0.0001*m.x61*m.x143 + 0.0001*m.x61*m.x144 + 0.0001*m.x61*m.x145 + 0.0001*m.x61*
m.x146 + 0.0001*m.x61*m.x147 + 0.0001*m.x61*m.x148 + 0.0001*m.x61*m.x149 + 0.0001*m.x61*m.x150 +
0.0001*m.x61*m.x151 + 0.0001*m.x61*m.x152 + 0.0001*m.x61*m.x153 + 0.0001*m.x61*m.x154 + 0.0001*
m.x61*m.x155 + 0.0001*m.x61*m.x156 + 0.0001*m.x61*m.x157 + 0.0001*m.x61*m.x158 + 0.0001*m.x61*
m.x159 + 0.0001*m.x61*m.x160 + 0.0001*m.x61*m.x161 + 0.0001*m.x61*m.x162 + 0.0001*m.x61*m.x163 +
0.0001*m.x61*m.x164 + 0.0001*m.x61*m.x165 + 0.0001*m.x61*m.x166 + 0.0001*m.x61*m.x167 + 0.0001*
m.x61*m.x168 + 0.0001*m.x61*m.x169 + 0.0001*m.x61*m.x170 + 0.0001*m.x61*m.x171 + 0.0001*m.x61*
m.x172 + 0.0001*m.x61*m.x173 + 0.0001*m.x61*m.x174 + 0.0001*m.x61*m.x175 + 0.0001*m.x61*m.x176 +
0.0001*m.x61*m.x177 + 0.0001*m.x61*m.x178 + 0.0001*m.x61*m.x179 + 0.0001*m.x61*m.x180 + 0.0001*
m.x61*m.x181 + 0.0001*m.x61*m.x182 + 0.0001*m.x61*m.x183 + 0.0001*m.x61*m.x184 + 0.0001*m.x61*
m.x185 + 0.0001*m.x62*m.x1 + 0.0001*m.x62*m.x2 + 0.0001*m.x62*m.x3 + 0.0001*m.x62*m.x4 + 0.0001*
m.x62*m.x5 + 0.0001*m.x62*m.x6 + 0.0001*m.x62*m.x7 + 0.0001*m.x62*m.x8 + 0.0001*m.x62*m.x9 +
0.0001*m.x62*m.x10 + 0.0001*m.x62*m.x11 + 0.0001*m.x62*m.x12 + 0.0001*m.x62*m.x13 + 0.0001*m.x62*
m.x14 + 0.0001*m.x62*m.x15 + 0.0001*m.x62*m.x16 + 0.0001*m.x62*m.x17 + 0.0001*m.x62*m.x18 +
0.0001*m.x62*m.x19 + 0.0001*m.x62*m.x20 + 0.0001*m.x62*m.x21 + 0.0001*m.x62*m.x22 + 0.0001*m.x62*
m.x23 + 0.0001*m.x62*m.x24 + 0.0001*m.x62*m.x25 + 0.0001*m.x62*m.x26 + 0.0001*m.x62*m.x27 +
0.0001*m.x62*m.x28 + 0.0001*m.x62*m.x29 + 0.0001*m.x62*m.x30 + 0.0001*m.x62*m.x31 + 0.0001*m.x62*
m.x32 + 0.0001*m.x62*m.x33 + 0.0001*m.x62*m.x34 + 0.0001*m.x62*m.x35 + 0.0001*m.x62*m.x36 +
0.0001*m.x62*m.x37 + 0.0001*m.x62*m.x38 + 0.0001*m.x62*m.x39 + 0.0001*m.x62*m.x40 + 0.0001*m.x62*
m.x41 + 0.0001*m.x62*m.x42 + 0.0001*m.x62*m.x43 + 0.0001*m.x62*m.x44 + 0.0001*m.x62*m.x45 +
0.0001*m.x62*m.x46 + 0.0001*m.x62*m.x47 + 0.0001*m.x62*m.x48 + 0.0001*m.x62*m.x49 + 0.0001*m.x62*
m.x50 + 0.0001*m.x62*m.x51 + 0.0001*m.x62*m.x52 + 0.0001*m.x62*m.x53 + 0.0001*m.x62*m.x54 +
0.0001*m.x62*m.x55 + 0.0001*m.x62*m.x56 + 0.0001*m.x62*m.x57 + 0.0001*m.x62*m.x58 + 0.0001*m.x62*
m.x59 + 0.0001*m.x62*m.x60 + 0.0001*m.x62*m.x61 + 12.8230624031191*m.x62**2 + 0.0001*m.x62*m.x63
+ 0.0001*m.x62*m.x64 + 0.0001*m.x62*m.x65 + 0.0001*m.x62*m.x66 + 0.0001*m.x62*m.x67 + 0.0001*
m.x62*m.x68 + 0.0001*m.x62*m.x69 + 0.0001*m.x62*m.x70 + 0.0001*m.x62*m.x71 + 0.0001*m.x62*m.x72
+ 0.0001*m.x62*m.x73 + 5.74039726395508*m.x62*m.x74 + 0.0001*m.x62*m.x75 + 0.0001*m.x62*m.x76 +
0.0001*m.x62*m.x77 + 0.0001*m.x62*m.x78 + 0.0001*m.x62*m.x79 + 0.0001*m.x62*m.x80 + 0.0001*m.x62*
m.x81 + 0.0001*m.x62*m.x82 + 0.0001*m.x62*m.x83 + 0.0001*m.x62*m.x84 + 0.0001*m.x62*m.x85 +
0.0001*m.x62*m.x86 + 0.0001*m.x62*m.x87 + 0.0001*m.x62*m.x88 + 0.0001*m.x62*m.x89 + 0.0001*m.x62*
m.x90 + 0.0001*m.x62*m.x91 + 0.0001*m.x62*m.x92 + 0.0001*m.x62*m.x93 + 0.0001*m.x62*m.x94 +
0.0001*m.x62*m.x95 + 0.0001*m.x62*m.x96 + 0.0001*m.x62*m.x97 + 0.0001*m.x62*m.x98 + 0.0001*m.x62*
m.x99 + 0.0001*m.x62*m.x100 + 0.0001*m.x62*m.x101 + 0.0001*m.x62*m.x102 + 0.0001*m.x62*m.x103 +
0.0001*m.x62*m.x104 + 0.0001*m.x62*m.x105 + 0.0001*m.x62*m.x106 + 0.0001*m.x62*m.x107 + 0.0001*
m.x62*m.x108 + 0.0001*m.x62*m.x109 + 0.0001*m.x62*m.x110 + 0.0001*m.x62*m.x111 + 0.0001*m.x62*
m.x112 + 0.0001*m.x62*m.x113 + 0.0001*m.x62*m.x114 + 0.0001*m.x62*m.x115 + 0.0001*m.x62*m.x116 +
0.0001*m.x62*m.x117 + 0.0001*m.x62*m.x118 + 0.0001*m.x62*m.x119 + 0.0001*m.x62*m.x120 + 0.0001*
m.x62*m.x121 + 0.0001*m.x62*m.x122 + 0.0001*m.x62*m.x123 + 0.0001*m.x62*m.x124 + 0.0001*m.x62*
m.x125 + 0.0001*m.x62*m.x126 + 0.0001*m.x62*m.x127 + 0.0001*m.x62*m.x128 + 0.0001*m.x62*m.x129 +
0.0001*m.x62*m.x130 + 0.0001*m.x62*m.x131 + 0.0001*m.x62*m.x132 + 0.0001*m.x62*m.x133 + 0.0001*
m.x62*m.x134 + 0.0001*m.x62*m.x135 + 0.0001*m.x62*m.x136 + 0.0001*m.x62*m.x137 + 0.0001*m.x62*
m.x138 + 0.0001*m.x62*m.x139 + 0.0001*m.x62*m.x140 + 0.0001*m.x62*m.x141 + 0.0001*m.x62*m.x142 +
0.0001*m.x62*m.x143 + 0.0001*m.x62*m.x144 + 0.0001*m.x62*m.x145 + 0.0001*m.x62*m.x146 + 0.0001*
m.x62*m.x147 + 0.0001*m.x62*m.x148 + 0.0001*m.x62*m.x149 + 0.0001*m.x62*m.x150 + 0.0001*m.x62*
m.x151 + 0.0001*m.x62*m.x152 + 0.0001*m.x62*m.x153 + 0.0001*m.x62*m.x154 + 0.0001*m.x62*m.x155 +
0.0001*m.x62*m.x156 + 0.0001*m.x62*m.x157 + 0.0001*m.x62*m.x158 + 0.0001*m.x62*m.x159 + 0.0001*
m.x62*m.x160 + 0.0001*m.x62*m.x161 + 0.0001*m.x62*m.x162 + 0.0001*m.x62*m.x163 + 0.0001*m.x62*
m.x164 + 0.0001*m.x62*m.x165 + 0.0001*m.x62*m.x166 + 0.0001*m.x62*m.x167 + 0.0001*m.x62*m.x168 +
0.0001*m.x62*m.x169 + 0.0001*m.x62*m.x170 + 0.0001*m.x62*m.x171 + 0.0001*m.x62*m.x172 + 0.0001*
m.x62*m.x173 + 0.0001*m.x62*m.x174 + 0.0001*m.x62*m.x175 + 0.0001*m.x62*m.x176 + 0.0001*m.x62*
m.x177 + 0.0001*m.x62*m.x178 + 0.0001*m.x62*m.x179 + 0.0001*m.x62*m.x180 + 0.0001*m.x62*m.x181 +
0.0001*m.x62*m.x182 + 0.0001*m.x62*m.x183 + 0.0001*m.x62*m.x184 + 0.0001*m.x62*m.x185 + 0.0001*
m.x63*m.x1 + 0.0001*m.x63*m.x2 + 0.0001*m.x63*m.x3 + 0.0001*m.x63*m.x4 + 0.0001*m.x63*m.x5 +
0.0001*m.x63*m.x6 + 0.0001*m.x63*m.x7 + 0.0001*m.x63*m.x8 + 0.0001*m.x63*m.x9 + 0.0001*m.x63*
m.x10 + 0.0001*m.x63*m.x11 + 0.0001*m.x63*m.x12 + 0.0001*m.x63*m.x13 + 0.0001*m.x63*m.x14 +
0.0001*m.x63*m.x15 + 0.0001*m.x63*m.x16 + 0.0001*m.x63*m.x17 + 0.0001*m.x63*m.x18 + 0.0001*m.x63*
m.x19 + 0.0001*m.x63*m.x20 + 0.0001*m.x63*m.x21 + 0.0001*m.x63*m.x22 + 0.0001*m.x63*m.x23 +
0.0001*m.x63*m.x24 + 0.0001*m.x63*m.x25 + 0.0001*m.x63*m.x26 + 0.0001*m.x63*m.x27 + 0.0001*m.x63*
m.x28 + 0.0001*m.x63*m.x29 + 0.0001*m.x63*m.x30 + 0.0001*m.x63*m.x31 + 0.0001*m.x63*m.x32 +
0.0001*m.x63*m.x33 + 0.0001*m.x63*m.x34 + 0.0001*m.x63*m.x35 + 0.0001*m.x63*m.x36 + 0.0001*m.x63*
m.x37 + 0.0001*m.x63*m.x38 + 0.0001*m.x63*m.x39 + 0.0001*m.x63*m.x40 + 0.0001*m.x63*m.x41 +
0.0001*m.x63*m.x42 + 0.0001*m.x63*m.x43 + 0.0001*m.x63*m.x44 + 0.0001*m.x63*m.x45 + 0.0001*m.x63*
m.x46 + 0.0001*m.x63*m.x47 + 0.0001*m.x63*m.x48 + 0.0001*m.x63*m.x49 + 0.0001*m.x63*m.x50 +
0.0001*m.x63*m.x51 + 0.0001*m.x63*m.x52 + 0.0001*m.x63*m.x53 + 0.0001*m.x63*m.x54 + 0.0001*m.x63*
m.x55 + 0.0001*m.x63*m.x56 + 0.0001*m.x63*m.x57 + 0.0001*m.x63*m.x58 + 0.0001*m.x63*m.x59 +
0.0001*m.x63*m.x60 + 0.0001*m.x63*m.x61 + 0.0001*m.x63*m.x62 + 10.1586608916756*m.x63**2 + 0.0001
*m.x63*m.x64 + 0.0001*m.x63*m.x65 + 0.0001*m.x63*m.x66 + 0.0001*m.x63*m.x67 + 0.0001*m.x63*m.x68
+ 0.0001*m.x63*m.x69 + 0.0001*m.x63*m.x70 + 0.0001*m.x63*m.x71 + 0.0001*m.x63*m.x72 + 0.0001*
m.x63*m.x73 + 0.0001*m.x63*m.x74 + 5.05835068785423*m.x63*m.x75 + 0.0001*m.x63*m.x76 + 0.0001*
m.x63*m.x77 + 0.0001*m.x63*m.x78 + 0.0001*m.x63*m.x79 + 0.0001*m.x63*m.x80 + 0.0001*m.x63*m.x81
+ 0.0001*m.x63*m.x82 + 0.0001*m.x63*m.x83 + 0.0001*m.x63*m.x84 + 0.0001*m.x63*m.x85 + 0.0001*
m.x63*m.x86 + 0.0001*m.x63*m.x87 + 0.0001*m.x63*m.x88 + 0.0001*m.x63*m.x89 + 0.0001*m.x63*m.x90
+ 0.0001*m.x63*m.x91 + 0.0001*m.x63*m.x92 + 0.0001*m.x63*m.x93 + 0.0001*m.x63*m.x94 + 0.0001*
m.x63*m.x95 + 0.0001*m.x63*m.x96 + 0.0001*m.x63*m.x97 + 0.0001*m.x63*m.x98 + 0.0001*m.x63*m.x99
+ 0.0001*m.x63*m.x100 + 0.0001*m.x63*m.x101 + 0.0001*m.x63*m.x102 + 0.0001*m.x63*m.x103 + 0.0001
*m.x63*m.x104 + 0.0001*m.x63*m.x105 + 0.0001*m.x63*m.x106 + 0.0001*m.x63*m.x107 + 0.0001*m.x63*
m.x108 + 0.0001*m.x63*m.x109 + 0.0001*m.x63*m.x110 + 0.0001*m.x63*m.x111 + 0.0001*m.x63*m.x112 +
0.0001*m.x63*m.x113 + 0.0001*m.x63*m.x114 + 0.0001*m.x63*m.x115 + 0.0001*m.x63*m.x116 + 0.0001*
m.x63*m.x117 + 0.0001*m.x63*m.x118 + 0.0001*m.x63*m.x119 + 0.0001*m.x63*m.x120 + 0.0001*m.x63*
m.x121 + 0.0001*m.x63*m.x122 + 0.0001*m.x63*m.x123 + 0.0001*m.x63*m.x124 + 0.0001*m.x63*m.x125 +
0.0001*m.x63*m.x126 + 0.0001*m.x63*m.x127 + 0.0001*m.x63*m.x128 + 0.0001*m.x63*m.x129 + 0.0001*
m.x63*m.x130 + 0.0001*m.x63*m.x131 + 0.0001*m.x63*m.x132 + 0.0001*m.x63*m.x133 + 0.0001*m.x63*
m.x134 + 0.0001*m.x63*m.x135 + 0.0001*m.x63*m.x136 + 0.0001*m.x63*m.x137 + 0.0001*m.x63*m.x138 +
0.0001*m.x63*m.x139 + 0.0001*m.x63*m.x140 + 0.0001*m.x63*m.x141 + 0.0001*m.x63*m.x142 + 0.0001*
m.x63*m.x143 + 0.0001*m.x63*m.x144 + 0.0001*m.x63*m.x145 + 0.0001*m.x63*m.x146 + 0.0001*m.x63*
m.x147 + 0.0001*m.x63*m.x148 + 0.0001*m.x63*m.x149 + 0.0001*m.x63*m.x150 + 0.0001*m.x63*m.x151 +
0.0001*m.x63*m.x152 + 0.0001*m.x63*m.x153 + 0.0001*m.x63*m.x154 + 0.0001*m.x63*m.x155 + 0.0001*
m.x63*m.x156 + 0.0001*m.x63*m.x157 + 0.0001*m.x63*m.x158 + 0.0001*m.x63*m.x159 + 0.0001*m.x63*
m.x160 + 0.0001*m.x63*m.x161 + 0.0001*m.x63*m.x162 + 0.0001*m.x63*m.x163 + 0.0001*m.x63*m.x164 +
0.0001*m.x63*m.x165 + 0.0001*m.x63*m.x166 + 0.0001*m.x63*m.x167 + 0.0001*m.x63*m.x168 + 0.0001*
m.x63*m.x169 + 0.0001*m.x63*m.x170 + 0.0001*m.x63*m.x171 + 0.0001*m.x63*m.x172 + 0.0001*m.x63*
m.x173 + 0.0001*m.x63*m.x174 + 0.0001*m.x63*m.x175 + 0.0001*m.x63*m.x176 + 0.0001*m.x63*m.x177 +
0.0001*m.x63*m.x178 + 0.0001*m.x63*m.x179 + 0.0001*m.x63*m.x180 + 0.0001*m.x63*m.x181 + 0.0001*
m.x63*m.x182 + 0.0001*m.x63*m.x183 + 0.0001*m.x63*m.x184 + 0.0001*m.x63*m.x185 + 0.0001*m.x64*
m.x1 + 0.0001*m.x64*m.x2 + 0.0001*m.x64*m.x3 + 0.0001*m.x64*m.x4 + 0.0001*m.x64*m.x5 + 0.0001*
m.x64*m.x6 + 0.0001*m.x64*m.x7 + 0.0001*m.x64*m.x8 + 0.0001*m.x64*m.x9 + 0.0001*m.x64*m.x10 +
0.0001*m.x64*m.x11 + 0.0001*m.x64*m.x12 + 0.0001*m.x64*m.x13 + 0.0001*m.x64*m.x14 + 0.0001*m.x64*
m.x15 + 0.0001*m.x64*m.x16 + 0.0001*m.x64*m.x17 + 0.0001*m.x64*m.x18 + 0.0001*m.x64*m.x19 +
0.0001*m.x64*m.x20 + 0.0001*m.x64*m.x21 + 0.0001*m.x64*m.x22 + 0.0001*m.x64*m.x23 + 0.0001*m.x64*
m.x24 + 0.0001*m.x64*m.x25 + 0.0001*m.x64*m.x26 + 0.0001*m.x64*m.x27 + 0.0001*m.x64*m.x28 +
0.0001*m.x64*m.x29 + 0.0001*m.x64*m.x30 + 0.0001*m.x64*m.x31 + 0.0001*m.x64*m.x32 + 0.0001*m.x64*
m.x33 + 0.0001*m.x64*m.x34 + 0.0001*m.x64*m.x35 + 0.0001*m.x64*m.x36 + 0.0001*m.x64*m.x37 +
0.0001*m.x64*m.x38 + 0.0001*m.x64*m.x39 + 0.0001*m.x64*m.x40 + 0.0001*m.x64*m.x41 + 0.0001*m.x64*
m.x42 + 0.0001*m.x64*m.x43 + 0.0001*m.x64*m.x44 + 0.0001*m.x64*m.x45 + 0.0001*m.x64*m.x46 +
0.0001*m.x64*m.x47 + 0.0001*m.x64*m.x48 + 0.0001*m.x64*m.x49 + 0.0001*m.x64*m.x50 + 0.0001*m.x64*
m.x51 + 0.0001*m.x64*m.x52 + 0.0001*m.x64*m.x53 + 0.0001*m.x64*m.x54 + 0.0001*m.x64*m.x55 +
0.0001*m.x64*m.x56 + 0.0001*m.x64*m.x57 + 0.0001*m.x64*m.x58 + 0.0001*m.x64*m.x59 + 0.0001*m.x64*
m.x60 + 0.0001*m.x64*m.x61 + 0.0001*m.x64*m.x62 + 0.0001*m.x64*m.x63 + 14.2940849690075*m.x64**2
+ 0.0001*m.x64*m.x65 + 0.0001*m.x64*m.x66 + 0.0001*m.x64*m.x67 + 0.0001*m.x64*m.x68 + 0.0001*
m.x64*m.x69 + 0.0001*m.x64*m.x70 + 0.0001*m.x64*m.x71 + 0.0001*m.x64*m.x72 + 0.0001*m.x64*m.x73
+ 0.0001*m.x64*m.x74 + 0.0001*m.x64*m.x75 + 6.70192609906756*m.x64*m.x76 + 0.0001*m.x64*m.x77 +
0.0001*m.x64*m.x78 + 0.0001*m.x64*m.x79 + 0.0001*m.x64*m.x80 + 0.0001*m.x64*m.x81 + 0.0001*m.x64*
m.x82 + 0.0001*m.x64*m.x83 + 0.0001*m.x64*m.x84 + 0.0001*m.x64*m.x85 + 0.0001*m.x64*m.x86 +
0.0001*m.x64*m.x87 + 0.0001*m.x64*m.x88 + 0.0001*m.x64*m.x89 + 0.0001*m.x64*m.x90 + 0.0001*m.x64*
m.x91 + 0.0001*m.x64*m.x92 + 0.0001*m.x64*m.x93 + 0.0001*m.x64*m.x94 + 0.0001*m.x64*m.x95 +
0.0001*m.x64*m.x96 + 0.0001*m.x64*m.x97 + 0.0001*m.x64*m.x98 + 0.0001*m.x64*m.x99 + 0.0001*m.x64*
m.x100 + 0.0001*m.x64*m.x101 + 0.0001*m.x64*m.x102 + 0.0001*m.x64*m.x103 + 0.0001*m.x64*m.x104 +
0.0001*m.x64*m.x105 + 0.0001*m.x64*m.x106 + 0.0001*m.x64*m.x107 + 0.0001*m.x64*m.x108 + 0.0001*
m.x64*m.x109 + 0.0001*m.x64*m.x110 + 0.0001*m.x64*m.x111 + 0.0001*m.x64*m.x112 + 0.0001*m.x64*
m.x113 + 0.0001*m.x64*m.x114 + 0.0001*m.x64*m.x115 + 0.0001*m.x64*m.x116 + 0.0001*m.x64*m.x117 +
0.0001*m.x64*m.x118 + 0.0001*m.x64*m.x119 + 0.0001*m.x64*m.x120 + 0.0001*m.x64*m.x121 + 0.0001*
m.x64*m.x122 + 0.0001*m.x64*m.x123 + 0.0001*m.x64*m.x124 + 0.0001*m.x64*m.x125 + 0.0001*m.x64*
m.x126 + 0.0001*m.x64*m.x127 + 0.0001*m.x64*m.x128 + 0.0001*m.x64*m.x129 + 0.0001*m.x64*m.x130 +
0.0001*m.x64*m.x131 + 0.0001*m.x64*m.x132 + 0.0001*m.x64*m.x133 + 0.0001*m.x64*m.x134 + 0.0001*
m.x64*m.x135 + 0.0001*m.x64*m.x136 + 0.0001*m.x64*m.x137 + 0.0001*m.x64*m.x138 + 0.0001*m.x64*
m.x139 + 0.0001*m.x64*m.x140 + 0.0001*m.x64*m.x141 + 0.0001*m.x64*m.x142 + 0.0001*m.x64*m.x143 +
0.0001*m.x64*m.x144 + 0.0001*m.x64*m.x145 + 0.0001*m.x64*m.x146 + 0.0001*m.x64*m.x147 + 0.0001*
m.x64*m.x148 + 0.0001*m.x64*m.x149 + 0.0001*m.x64*m.x150 + 0.0001*m.x64*m.x151 + 0.0001*m.x64*
m.x152 + 0.0001*m.x64*m.x153 + 0.0001*m.x64*m.x154 + 0.0001*m.x64*m.x155 + 0.0001*m.x64*m.x156 +
0.0001*m.x64*m.x157 + 0.0001*m.x64*m.x158 + 0.0001*m.x64*m.x159 + 0.0001*m.x64*m.x160 + 0.0001*
m.x64*m.x161 + 0.0001*m.x64*m.x162 + 0.0001*m.x64*m.x163 + 0.0001*m.x64*m.x164 + 0.0001*m.x64*
m.x165 + 0.0001*m.x64*m.x166 + 0.0001*m.x64*m.x167 + 0.0001*m.x64*m.x168 + 0.0001*m.x64*m.x169 +
0.0001*m.x64*m.x170 + 0.0001*m.x64*m.x171 + 0.0001*m.x64*m.x172 + 0.0001*m.x64*m.x173 + 0.0001*
m.x64*m.x174 + 0.0001*m.x64*m.x175 + 0.0001*m.x64*m.x176 + 0.0001*m.x64*m.x177 + 0.0001*m.x64*
m.x178 + 0.0001*m.x64*m.x179 + 0.0001*m.x64*m.x180 + 0.0001*m.x64*m.x181 + 0.0001*m.x64*m.x182 +
0.0001*m.x64*m.x183 + 0.0001*m.x64*m.x184 + 0.0001*m.x64*m.x185 + 0.0001*m.x65*m.x1 + 0.0001*
m.x65*m.x2 + 0.0001*m.x65*m.x3 + 0.0001*m.x65*m.x4 + 0.0001*m.x65*m.x5 + 0.0001*m.x65*m.x6 +
0.0001*m.x65*m.x7 + 0.0001*m.x65*m.x8 + 0.0001*m.x65*m.x9 + 0.0001*m.x65*m.x10 + 0.0001*m.x65*
m.x11 + 0.0001*m.x65*m.x12 + 0.0001*m.x65*m.x13 + 0.0001*m.x65*m.x14 + 0.0001*m.x65*m.x15 +
0.0001*m.x65*m.x16 + 0.0001*m.x65*m.x17 + 0.0001*m.x65*m.x18 + 0.0001*m.x65*m.x19 + 0.0001*m.x65*
m.x20 + 0.0001*m.x65*m.x21 + 0.0001*m.x65*m.x22 + 0.0001*m.x65*m.x23 + 0.0001*m.x65*m.x24 +
0.0001*m.x65*m.x25 + 0.0001*m.x65*m.x26 + 0.0001*m.x65*m.x27 + 0.0001*m.x65*m.x28 + 0.0001*m.x65*
m.x29 + 0.0001*m.x65*m.x30 + 0.0001*m.x65*m.x31 + 0.0001*m.x65*m.x32 + 0.0001*m.x65*m.x33 +
0.0001*m.x65*m.x34 + 0.0001*m.x65*m.x35 + 0.0001*m.x65*m.x36 + 0.0001*m.x65*m.x37 + 0.0001*m.x65*
m.x38 + 0.0001*m.x65*m.x39 + 0.0001*m.x65*m.x40 + 0.0001*m.x65*m.x41 + 0.0001*m.x65*m.x42 +
0.0001*m.x65*m.x43 + 0.0001*m.x65*m.x44 + 0.0001*m.x65*m.x45 + 0.0001*m.x65*m.x46 + 0.0001*m.x65*
m.x47 + 0.0001*m.x65*m.x48 + 0.0001*m.x65*m.x49 + 0.0001*m.x65*m.x50 + 0.0001*m.x65*m.x51 +
0.0001*m.x65*m.x52 + 0.0001*m.x65*m.x53 + 0.0001*m.x65*m.x54 + 0.0001*m.x65*m.x55 + 0.0001*m.x65*
m.x56 + 0.0001*m.x65*m.x57 + 0.0001*m.x65*m.x58 + 0.0001*m.x65*m.x59 + 0.0001*m.x65*m.x60 +
0.0001*m.x65*m.x61 + 0.0001*m.x65*m.x62 + 0.0001*m.x65*m.x63 + 0.0001*m.x65*m.x64 +
11.4651813416584*m.x65**2 + 0.0001*m.x65*m.x66 + 0.0001*m.x65*m.x67 + 0.0001*m.x65*m.x68 + 0.0001
*m.x65*m.x69 + 0.0001*m.x65*m.x70 + 0.0001*m.x65*m.x71 + 0.0001*m.x65*m.x72 + 0.0001*m.x65*m.x73
+ 0.0001*m.x65*m.x74 + 0.0001*m.x65*m.x75 + 0.0001*m.x65*m.x76 + 5.37557657494101*m.x65*m.x77 +
0.0001*m.x65*m.x78 + 0.0001*m.x65*m.x79 + 0.0001*m.x65*m.x80 + 0.0001*m.x65*m.x81 + 0.0001*m.x65*
m.x82 + 0.0001*m.x65*m.x83 + 0.0001*m.x65*m.x84 + 0.0001*m.x65*m.x85 + 0.0001*m.x65*m.x86 +
0.0001*m.x65*m.x87 + 0.0001*m.x65*m.x88 + 0.0001*m.x65*m.x89 + 0.0001*m.x65*m.x90 + 0.0001*m.x65*
m.x91 + 0.0001*m.x65*m.x92 + 0.0001*m.x65*m.x93 + 0.0001*m.x65*m.x94 + 0.0001*m.x65*m.x95 +
0.0001*m.x65*m.x96 + 0.0001*m.x65*m.x97 + 0.0001*m.x65*m.x98 + 0.0001*m.x65*m.x99 + 0.0001*m.x65*
m.x100 + 0.0001*m.x65*m.x101 + 0.0001*m.x65*m.x102 + 0.0001*m.x65*m.x103 + 0.0001*m.x65*m.x104 +
0.0001*m.x65*m.x105 + 0.0001*m.x65*m.x106 + 0.0001*m.x65*m.x107 + 0.0001*m.x65*m.x108 + 0.0001*
m.x65*m.x109 + 0.0001*m.x65*m.x110 + 0.0001*m.x65*m.x111 + 0.0001*m.x65*m.x112 + 0.0001*m.x65*
m.x113 + 0.0001*m.x65*m.x114 + 0.0001*m.x65*m.x115 + 0.0001*m.x65*m.x116 + 0.0001*m.x65*m.x117 +
0.0001*m.x65*m.x118 + 0.0001*m.x65*m.x119 + 0.0001*m.x65*m.x120 + 0.0001*m.x65*m.x121 + 0.0001*
m.x65*m.x122 + 0.0001*m.x65*m.x123 + 0.0001*m.x65*m.x124 + 0.0001*m.x65*m.x125 + 0.0001*m.x65*
m.x126 + 0.0001*m.x65*m.x127 + 0.0001*m.x65*m.x128 + 0.0001*m.x65*m.x129 + 0.0001*m.x65*m.x130 +
0.0001*m.x65*m.x131 + 0.0001*m.x65*m.x132 + 0.0001*m.x65*m.x133 + 0.0001*m.x65*m.x134 + 0.0001*
m.x65*m.x135 + 0.0001*m.x65*m.x136 + 0.0001*m.x65*m.x137 + 0.0001*m.x65*m.x138 + 0.0001*m.x65*
m.x139 + 0.0001*m.x65*m.x140 + 0.0001*m.x65*m.x141 + 0.0001*m.x65*m.x142 + 0.0001*m.x65*m.x143 +
0.0001*m.x65*m.x144 + 0.0001*m.x65*m.x145 + 0.0001*m.x65*m.x146 + 0.0001*m.x65*m.x147 + 0.0001*
m.x65*m.x148 + 0.0001*m.x65*m.x149 + 0.0001*m.x65*m.x150 + 0.0001*m.x65*m.x151 + 0.0001*m.x65*
m.x152 + 0.0001*m.x65*m.x153 + 0.0001*m.x65*m.x154 + 0.0001*m.x65*m.x155 + 0.0001*m.x65*m.x156 +
0.0001*m.x65*m.x157 + 0.0001*m.x65*m.x158 + 0.0001*m.x65*m.x159 + 0.0001*m.x65*m.x160 + 0.0001*
m.x65*m.x161 + 0.0001*m.x65*m.x162 + 0.0001*m.x65*m.x163 + 0.0001*m.x65*m.x164 + 0.0001*m.x65*
m.x165 + 0.0001*m.x65*m.x166 + 0.0001*m.x65*m.x167 + 0.0001*m.x65*m.x168 + 0.0001*m.x65*m.x169 +
0.0001*m.x65*m.x170 + 0.0001*m.x65*m.x171 + 0.0001*m.x65*m.x172 + 0.0001*m.x65*m.x173 + 0.0001*
m.x65*m.x174 + 0.0001*m.x65*m.x175 + 0.0001*m.x65*m.x176 + 0.0001*m.x65*m.x177 + 0.0001*m.x65*
m.x178 + 0.0001*m.x65*m.x179 + 0.0001*m.x65*m.x180 + 0.0001*m.x65*m.x181 + 0.0001*m.x65*m.x182 +
0.0001*m.x65*m.x183 + 0.0001*m.x65*m.x184 + 0.0001*m.x65*m.x185 + 0.0001*m.x66*m.x1 + 0.0001*
m.x66*m.x2 + 0.0001*m.x66*m.x3 + 0.0001*m.x66*m.x4 + 0.0001*m.x66*m.x5 + 0.0001*m.x66*m.x6 +
0.0001*m.x66*m.x7 + 0.0001*m.x66*m.x8 + 0.0001*m.x66*m.x9 + 0.0001*m.x66*m.x10 + 0.0001*m.x66*
m.x11 + 0.0001*m.x66*m.x12 + 0.0001*m.x66*m.x13 + 0.0001*m.x66*m.x14 + 0.0001*m.x66*m.x15 +
0.0001*m.x66*m.x16 + 0.0001*m.x66*m.x17 + 0.0001*m.x66*m.x18 + 0.0001*m.x66*m.x19 + 0.0001*m.x66*
m.x20 + 0.0001*m.x66*m.x21 + 0.0001*m.x66*m.x22 + 0.0001*m.x66*m.x23 + 0.0001*m.x66*m.x24 +
0.0001*m.x66*m.x25 + 0.0001*m.x66*m.x26 + 0.0001*m.x66*m.x27 + 0.0001*m.x66*m.x28 + 0.0001*m.x66*
m.x29 + 0.0001*m.x66*m.x30 + 0.0001*m.x66*m.x31 + 0.0001*m.x66*m.x32 + 0.0001*m.x66*m.x33 +
0.0001*m.x66*m.x34 + 0.0001*m.x66*m.x35 + 0.0001*m.x66*m.x36 + 0.0001*m.x66*m.x37 + 0.0001*m.x66*
m.x38 + 0.0001*m.x66*m.x39 + 0.0001*m.x66*m.x40 + 0.0001*m.x66*m.x41 + 0.0001*m.x66*m.x42 +
0.0001*m.x66*m.x43 + 0.0001*m.x66*m.x44 + 0.0001*m.x66*m.x45 + 0.0001*m.x66*m.x46 + 0.0001*m.x66*
m.x47 + 0.0001*m.x66*m.x48 + 0.0001*m.x66*m.x49 + 0.0001*m.x66*m.x50 + 0.0001*m.x66*m.x51 +
0.0001*m.x66*m.x52 + 0.0001*m.x66*m.x53 + 0.0001*m.x66*m.x54 + 0.0001*m.x66*m.x55 + 0.0001*m.x66*
m.x56 + 0.0001*m.x66*m.x57 + 0.0001*m.x66*m.x58 + 0.0001*m.x66*m.x59 + 0.0001*m.x66*m.x60 +
0.0001*m.x66*m.x61 + 0.0001*m.x66*m.x62 + 0.0001*m.x66*m.x63 + 0.0001*m.x66*m.x64 + 0.0001*m.x66*
m.x65 + 11.7623122809216*m.x66**2 + 0.0001*m.x66*m.x67 + 0.0001*m.x66*m.x68 + 0.0001*m.x66*m.x69
+ 0.0001*m.x66*m.x70 + 0.0001*m.x66*m.x71 + 0.0001*m.x66*m.x72 + 0.0001*m.x66*m.x73 + 0.0001*
m.x66*m.x74 + 0.0001*m.x66*m.x75 + 0.0001*m.x66*m.x76 + 0.0001*m.x66*m.x77 + 5.14013600399385*
m.x66*m.x78 + 0.0001*m.x66*m.x79 + 0.0001*m.x66*m.x80 + 0.0001*m.x66*m.x81 + 0.0001*m.x66*m.x82
+ 0.0001*m.x66*m.x83 + 0.0001*m.x66*m.x84 + 0.0001*m.x66*m.x85 + 0.0001*m.x66*m.x86 + 0.0001*
m.x66*m.x87 + 0.0001*m.x66*m.x88 + 0.0001*m.x66*m.x89 + 0.0001*m.x66*m.x90 + 0.0001*m.x66*m.x91
+ 0.0001*m.x66*m.x92 + 0.0001*m.x66*m.x93 + 0.0001*m.x66*m.x94 + 0.0001*m.x66*m.x95 + 0.0001*
m.x66*m.x96 + 0.0001*m.x66*m.x97 + 0.0001*m.x66*m.x98 + 0.0001*m.x66*m.x99 + 0.0001*m.x66*m.x100
+ 0.0001*m.x66*m.x101 + 0.0001*m.x66*m.x102 + 0.0001*m.x66*m.x103 + 0.0001*m.x66*m.x104 + 0.0001
*m.x66*m.x105 + 0.0001*m.x66*m.x106 + 0.0001*m.x66*m.x107 + 0.0001*m.x66*m.x108 + 0.0001*m.x66*
m.x109 + 0.0001*m.x66*m.x110 + 0.0001*m.x66*m.x111 + 0.0001*m.x66*m.x112 + 0.0001*m.x66*m.x113 +
0.0001*m.x66*m.x114 + 0.0001*m.x66*m.x115 + 0.0001*m.x66*m.x116 + 0.0001*m.x66*m.x117 + 0.0001*
m.x66*m.x118 + 0.0001*m.x66*m.x119 + 0.0001*m.x66*m.x120 + 0.0001*m.x66*m.x121 + 0.0001*m.x66*
m.x122 + 0.0001*m.x66*m.x123 + 0.0001*m.x66*m.x124 + 0.0001*m.x66*m.x125 + 0.0001*m.x66*m.x126 +
0.0001*m.x66*m.x127 + 0.0001*m.x66*m.x128 + 0.0001*m.x66*m.x129 + 0.0001*m.x66*m.x130 + 0.0001*
m.x66*m.x131 + 0.0001*m.x66*m.x132 + 0.0001*m.x66*m.x133 + 0.0001*m.x66*m.x134 + 0.0001*m.x66*
m.x135 + 0.0001*m.x66*m.x136 + 0.0001*m.x66*m.x137 + 0.0001*m.x66*m.x138 + 0.0001*m.x66*m.x139 +
0.0001*m.x66*m.x140 + 0.0001*m.x66*m.x141 + 0.0001*m.x66*m.x142 + 0.0001*m.x66*m.x143 + 0.0001*
m.x66*m.x144 + 0.0001*m.x66*m.x145 + 0.0001*m.x66*m.x146 + 0.0001*m.x66*m.x147 + 0.0001*m.x66*
m.x148 + 0.0001*m.x66*m.x149 + 0.0001*m.x66*m.x150 + 0.0001*m.x66*m.x151 + 0.0001*m.x66*m.x152 +
0.0001*m.x66*m.x153 + 0.0001*m.x66*m.x154 + 0.0001*m.x66*m.x155 + 0.0001*m.x66*m.x156 + 0.0001*
m.x66*m.x157 + 0.0001*m.x66*m.x158 + 0.0001*m.x66*m.x159 + 0.0001*m.x66*m.x160 + 0.0001*m.x66*
m.x161 + 0.0001*m.x66*m.x162 + 0.0001*m.x66*m.x163 + 0.0001*m.x66*m.x164 + 0.0001*m.x66*m.x165 +
0.0001*m.x66*m.x166 + 0.0001*m.x66*m.x167 + 0.0001*m.x66*m.x168 + 0.0001*m.x66*m.x169 + 0.0001*
m.x66*m.x170 + 0.0001*m.x66*m.x171 + 0.0001*m.x66*m.x172 + 0.0001*m.x66*m.x173 + 0.0001*m.x66*
m.x174 + 0.0001*m.x66*m.x175 + 0.0001*m.x66*m.x176 + 0.0001*m.x66*m.x177 + 0.0001*m.x66*m.x178 +
0.0001*m.x66*m.x179 + 0.0001*m.x66*m.x180 + 0.0001*m.x66*m.x181 + 0.0001*m.x66*m.x182 + 0.0001*
m.x66*m.x183 + 0.0001*m.x66*m.x184 + 0.0001*m.x66*m.x185 + 0.0001*m.x67*m.x1 + 0.0001*m.x67*m.x2
+ 0.0001*m.x67*m.x3 + 0.0001*m.x67*m.x4 + 0.0001*m.x67*m.x5 + 0.0001*m.x67*m.x6 + 0.0001*m.x67*
m.x7 + 0.0001*m.x67*m.x8 + 0.0001*m.x67*m.x9 + 0.0001*m.x67*m.x10 + 0.0001*m.x67*m.x11 + 0.0001*
m.x67*m.x12 + 0.0001*m.x67*m.x13 + 0.0001*m.x67*m.x14 + 0.0001*m.x67*m.x15 + 0.0001*m.x67*m.x16
+ 0.0001*m.x67*m.x17 + 0.0001*m.x67*m.x18 + 0.0001*m.x67*m.x19 + 0.0001*m.x67*m.x20 + 0.0001*
m.x67*m.x21 + 0.0001*m.x67*m.x22 + 0.0001*m.x67*m.x23 + 0.0001*m.x67*m.x24 + 0.0001*m.x67*m.x25
+ 0.0001*m.x67*m.x26 + 0.0001*m.x67*m.x27 + 0.0001*m.x67*m.x28 + 0.0001*m.x67*m.x29 + 0.0001*
m.x67*m.x30 + 0.0001*m.x67*m.x31 + 0.0001*m.x67*m.x32 + 0.0001*m.x67*m.x33 + 0.0001*m.x67*m.x34
+ 0.0001*m.x67*m.x35 + 0.0001*m.x67*m.x36 + 0.0001*m.x67*m.x37 + 0.0001*m.x67*m.x38 + 0.0001*
m.x67*m.x39 + 0.0001*m.x67*m.x40 + 0.0001*m.x67*m.x41 + 0.0001*m.x67*m.x42 + 0.0001*m.x67*m.x43
+ 0.0001*m.x67*m.x44 + 0.0001*m.x67*m.x45 + 0.0001*m.x67*m.x46 + 0.0001*m.x67*m.x47 + 0.0001*
m.x67*m.x48 + 0.0001*m.x67*m.x49 + 0.0001*m.x67*m.x50 + 0.0001*m.x67*m.x51 + 0.0001*m.x67*m.x52
+ 0.0001*m.x67*m.x53 + 0.0001*m.x67*m.x54 + 0.0001*m.x67*m.x55 + 0.0001*m.x67*m.x56 + 0.0001*
m.x67*m.x57 + 0.0001*m.x67*m.x58 + 0.0001*m.x67*m.x59 + 0.0001*m.x67*m.x60 + 0.0001*m.x67*m.x61
+ 0.0001*m.x67*m.x62 + 0.0001*m.x67*m.x63 + 0.0001*m.x67*m.x64 + 0.0001*m.x67*m.x65 + 0.0001*
m.x67*m.x66 + 10.0417056403084*m.x67**2 + 0.0001*m.x67*m.x68 + 0.0001*m.x67*m.x69 + 0.0001*m.x67*
m.x70 + 0.0001*m.x67*m.x71 + 0.0001*m.x67*m.x72 + 0.0001*m.x67*m.x73 + 0.0001*m.x67*m.x74 +
0.0001*m.x67*m.x75 + 0.0001*m.x67*m.x76 + 0.0001*m.x67*m.x77 + 0.0001*m.x67*m.x78 +
4.81894784211333*m.x67*m.x79 + 0.0001*m.x67*m.x80 + 0.0001*m.x67*m.x81 + 0.0001*m.x67*m.x82 +
0.0001*m.x67*m.x83 + 0.0001*m.x67*m.x84 + 0.0001*m.x67*m.x85 + 0.0001*m.x67*m.x86 + 0.0001*m.x67*
m.x87 + 0.0001*m.x67*m.x88 + 0.0001*m.x67*m.x89 + 0.0001*m.x67*m.x90 + 0.0001*m.x67*m.x91 +
0.0001*m.x67*m.x92 + 0.0001*m.x67*m.x93 + 0.0001*m.x67*m.x94 + 0.0001*m.x67*m.x95 + 0.0001*m.x67*
m.x96 + 0.0001*m.x67*m.x97 + 0.0001*m.x67*m.x98 + 0.0001*m.x67*m.x99 + 0.0001*m.x67*m.x100 +
0.0001*m.x67*m.x101 + 0.0001*m.x67*m.x102 + 0.0001*m.x67*m.x103 + 0.0001*m.x67*m.x104 + 0.0001*
m.x67*m.x105 + 0.0001*m.x67*m.x106 + 0.0001*m.x67*m.x107 + 0.0001*m.x67*m.x108 + 0.0001*m.x67*
m.x109 + 0.0001*m.x67*m.x110 + 0.0001*m.x67*m.x111 + 0.0001*m.x67*m.x112 + 0.0001*m.x67*m.x113 +
0.0001*m.x67*m.x114 + 0.0001*m.x67*m.x115 + 0.0001*m.x67*m.x116 + 0.0001*m.x67*m.x117 + 0.0001*
m.x67*m.x118 + 0.0001*m.x67*m.x119 + 0.0001*m.x67*m.x120 + 0.0001*m.x67*m.x121 + 0.0001*m.x67*
m.x122 + 0.0001*m.x67*m.x123 + 0.0001*m.x67*m.x124 + 0.0001*m.x67*m.x125 + 0.0001*m.x67*m.x126 +
0.0001*m.x67*m.x127 + 0.0001*m.x67*m.x128 + 0.0001*m.x67*m.x129 + 0.0001*m.x67*m.x130 + 0.0001*
m.x67*m.x131 + 0.0001*m.x67*m.x132 + 0.0001*m.x67*m.x133 + 0.0001*m.x67*m.x134 + 0.0001*m.x67*
m.x135 + 0.0001*m.x67*m.x136 + 0.0001*m.x67*m.x137 + 0.0001*m.x67*m.x138 + 0.0001*m.x67*m.x139 +
0.0001*m.x67*m.x140 + 0.0001*m.x67*m.x141 + 0.0001*m.x67*m.x142 + 0.0001*m.x67*m.x143 + 0.0001*
m.x67*m.x144 + 0.0001*m.x67*m.x145 + 0.0001*m.x67*m.x146 + 0.0001*m.x67*m.x147 + 0.0001*m.x67*
m.x148 + 0.0001*m.x67*m.x149 + 0.0001*m.x67*m.x150 + 0.0001*m.x67*m.x151 + 0.0001*m.x67*m.x152 +
0.0001*m.x67*m.x153 + 0.0001*m.x67*m.x154 + 0.0001*m.x67*m.x155 + 0.0001*m.x67*m.x156 + 0.0001*
m.x67*m.x157 + 0.0001*m.x67*m.x158 + 0.0001*m.x67*m.x159 + 0.0001*m.x67*m.x160 + 0.0001*m.x67*
m.x161 + 0.0001*m.x67*m.x162 + 0.0001*m.x67*m.x163 + 0.0001*m.x67*m.x164 + 0.0001*m.x67*m.x165 +
0.0001*m.x67*m.x166 + 0.0001*m.x67*m.x167 + 0.0001*m.x67*m.x168 + 0.0001*m.x67*m.x169 + 0.0001*
m.x67*m.x170 + 0.0001*m.x67*m.x171 + 0.0001*m.x67*m.x172 + 0.0001*m.x67*m.x173 + 0.0001*m.x67*
m.x174 + 0.0001*m.x67*m.x175 + 0.0001*m.x67*m.x176 + 0.0001*m.x67*m.x177 + 0.0001*m.x67*m.x178 +
0.0001*m.x67*m.x179 + 0.0001*m.x67*m.x180 + 0.0001*m.x67*m.x181 + 0.0001*m.x67*m.x182 + 0.0001*
m.x67*m.x183 + 0.0001*m.x67*m.x184 + 0.0001*m.x67*m.x185 + 0.0001*m.x68*m.x1 + 0.0001*m.x68*m.x2
+ 0.0001*m.x68*m.x3 + 0.0001*m.x68*m.x4 + 0.0001*m.x68*m.x5 + 0.0001*m.x68*m.x6 + 0.0001*m.x68*
m.x7 + 0.0001*m.x68*m.x8 + 0.0001*m.x68*m.x9 + 0.0001*m.x68*m.x10 + 0.0001*m.x68*m.x11 + 0.0001*
m.x68*m.x12 + 0.0001*m.x68*m.x13 + 0.0001*m.x68*m.x14 + 0.0001*m.x68*m.x15 + 0.0001*m.x68*m.x16
+ 0.0001*m.x68*m.x17 + 0.0001*m.x68*m.x18 + 0.0001*m.x68*m.x19 + 0.0001*m.x68*m.x20 + 0.0001*
m.x68*m.x21 + 0.0001*m.x68*m.x22 + 0.0001*m.x68*m.x23 + 0.0001*m.x68*m.x24 + 0.0001*m.x68*m.x25
+ 0.0001*m.x68*m.x26 + 0.0001*m.x68*m.x27 + 0.0001*m.x68*m.x28 + 0.0001*m.x68*m.x29 + 0.0001*
m.x68*m.x30 + 0.0001*m.x68*m.x31 + 0.0001*m.x68*m.x32 + 0.0001*m.x68*m.x33 + 0.0001*m.x68*m.x34
+ 0.0001*m.x68*m.x35 + 0.0001*m.x68*m.x36 + 0.0001*m.x68*m.x37 + 0.0001*m.x68*m.x38 + 0.0001*
m.x68*m.x39 + 0.0001*m.x68*m.x40 + 0.0001*m.x68*m.x41 + 0.0001*m.x68*m.x42 + 0.0001*m.x68*m.x43
+ 0.0001*m.x68*m.x44 + 0.0001*m.x68*m.x45 + 0.0001*m.x68*m.x46 + 0.0001*m.x68*m.x47 + 0.0001*
m.x68*m.x48 + 0.0001*m.x68*m.x49 + 0.0001*m.x68*m.x50 + 0.0001*m.x68*m.x51 + 0.0001*m.x68*m.x52
+ 0.0001*m.x68*m.x53 + 0.0001*m.x68*m.x54 + 0.0001*m.x68*m.x55 + 0.0001*m.x68*m.x56 + 0.0001*
m.x68*m.x57 + 0.0001*m.x68*m.x58 + 0.0001*m.x68*m.x59 + 0.0001*m.x68*m.x60 + 0.0001*m.x68*m.x61
+ 0.0001*m.x68*m.x62 + 0.0001*m.x68*m.x63 + 0.0001*m.x68*m.x64 + 0.0001*m.x68*m.x65 + 0.0001*
m.x68*m.x66 + 0.0001*m.x68*m.x67 + 10.0417056403084*m.x68**2 + 0.0001*m.x68*m.x69 + 0.0001*m.x68*
m.x70 + 0.0001*m.x68*m.x71 + 0.0001*m.x68*m.x72 + 0.0001*m.x68*m.x73 + 0.0001*m.x68*m.x74 +
0.0001*m.x68*m.x75 + 0.0001*m.x68*m.x76 + 0.0001*m.x68*m.x77 + 0.0001*m.x68*m.x78 + 0.0001*m.x68*
m.x79 + 4.81894784211333*m.x68*m.x80 + 0.0001*m.x68*m.x81 + 0.0001*m.x68*m.x82 + 0.0001*m.x68*
m.x83 + 0.0001*m.x68*m.x84 + 0.0001*m.x68*m.x85 + 0.0001*m.x68*m.x86 + 0.0001*m.x68*m.x87 +
0.0001*m.x68*m.x88 + 0.0001*m.x68*m.x89 + 0.0001*m.x68*m.x90 + 0.0001*m.x68*m.x91 + 0.0001*m.x68*
m.x92 + 0.0001*m.x68*m.x93 + 0.0001*m.x68*m.x94 + 0.0001*m.x68*m.x95 + 0.0001*m.x68*m.x96 +
0.0001*m.x68*m.x97 + 0.0001*m.x68*m.x98 + 0.0001*m.x68*m.x99 + 0.0001*m.x68*m.x100 + 0.0001*m.x68
*m.x101 + 0.0001*m.x68*m.x102 + 0.0001*m.x68*m.x103 + 0.0001*m.x68*m.x104 + 0.0001*m.x68*m.x105
+ 0.0001*m.x68*m.x106 + 0.0001*m.x68*m.x107 + 0.0001*m.x68*m.x108 + 0.0001*m.x68*m.x109 + 0.0001
*m.x68*m.x110 + 0.0001*m.x68*m.x111 + 0.0001*m.x68*m.x112 + 0.0001*m.x68*m.x113 + 0.0001*m.x68*
m.x114 + 0.0001*m.x68*m.x115 + 0.0001*m.x68*m.x116 + 0.0001*m.x68*m.x117 + 0.0001*m.x68*m.x118 +
0.0001*m.x68*m.x119 + 0.0001*m.x68*m.x120 + 0.0001*m.x68*m.x121 + 0.0001*m.x68*m.x122 + 0.0001*
m.x68*m.x123 + 0.0001*m.x68*m.x124 + 0.0001*m.x68*m.x125 + 0.0001*m.x68*m.x126 + 0.0001*m.x68*
m.x127 + 0.0001*m.x68*m.x128 + 0.0001*m.x68*m.x129 + 0.0001*m.x68*m.x130 + 0.0001*m.x68*m.x131 +
0.0001*m.x68*m.x132 + 0.0001*m.x68*m.x133 + 0.0001*m.x68*m.x134 + 0.0001*m.x68*m.x135 + 0.0001*
m.x68*m.x136 + 0.0001*m.x68*m.x137 + 0.0001*m.x68*m.x138 + 0.0001*m.x68*m.x139 + 0.0001*m.x68*
m.x140 + 0.0001*m.x68*m.x141 + 0.0001*m.x68*m.x142 + 0.0001*m.x68*m.x143 + 0.0001*m.x68*m.x144 +
0.0001*m.x68*m.x145 + 0.0001*m.x68*m.x146 + 0.0001*m.x68*m.x147 + 0.0001*m.x68*m.x148 + 0.0001*
m.x68*m.x149 + 0.0001*m.x68*m.x150 + 0.0001*m.x68*m.x151 + 0.0001*m.x68*m.x152 + 0.0001*m.x68*
m.x153 + 0.0001*m.x68*m.x154 + 0.0001*m.x68*m.x155 + 0.0001*m.x68*m.x156 + 0.0001*m.x68*m.x157 +
0.0001*m.x68*m.x158 + 0.0001*m.x68*m.x159 + 0.0001*m.x68*m.x160 + 0.0001*m.x68*m.x161 + 0.0001*
m.x68*m.x162 + 0.0001*m.x68*m.x163 + 0.0001*m.x68*m.x164 + 0.0001*m.x68*m.x165 + 0.0001*m.x68*
m.x166 + 0.0001*m.x68*m.x167 + 0.0001*m.x68*m.x168 + 0.0001*m.x68*m.x169 + 0.0001*m.x68*m.x170 +
0.0001*m.x68*m.x171 + 0.0001*m.x68*m.x172 + 0.0001*m.x68*m.x173 + 0.0001*m.x68*m.x174 + 0.0001*
m.x68*m.x175 + 0.0001*m.x68*m.x176 + 0.0001*m.x68*m.x177 + 0.0001*m.x68*m.x178 + 0.0001*m.x68*
m.x179 + 0.0001*m.x68*m.x180 + 0.0001*m.x68*m.x181 + 0.0001*m.x68*m.x182 + 0.0001*m.x68*m.x183 +
0.0001*m.x68*m.x184 + 0.0001*m.x68*m.x185 + 0.0001*m.x69*m.x1 + 0.0001*m.x69*m.x2 + 0.0001*m.x69*
m.x3 + 0.0001*m.x69*m.x4 + 0.0001*m.x69*m.x5 + 0.0001*m.x69*m.x6 + 0.0001*m.x69*m.x7 + 0.0001*
m.x69*m.x8 + 0.0001*m.x69*m.x9 + 0.0001*m.x69*m.x10 + 0.0001*m.x69*m.x11 + 0.0001*m.x69*m.x12 +
0.0001*m.x69*m.x13 + 0.0001*m.x69*m.x14 + 0.0001*m.x69*m.x15 + 0.0001*m.x69*m.x16 + 0.0001*m.x69*
m.x17 + 0.0001*m.x69*m.x18 + 0.0001*m.x69*m.x19 + 0.0001*m.x69*m.x20 + 0.0001*m.x69*m.x21 +
0.0001*m.x69*m.x22 + 0.0001*m.x69*m.x23 + 0.0001*m.x69*m.x24 + 0.0001*m.x69*m.x25 + 0.0001*m.x69*
m.x26 + 0.0001*m.x69*m.x27 + 0.0001*m.x69*m.x28 + 0.0001*m.x69*m.x29 + 0.0001*m.x69*m.x30 +
0.0001*m.x69*m.x31 + 0.0001*m.x69*m.x32 + 0.0001*m.x69*m.x33 + 0.0001*m.x69*m.x34 + 0.0001*m.x69*
m.x35 + 0.0001*m.x69*m.x36 + 0.0001*m.x69*m.x37 + 0.0001*m.x69*m.x38 + 0.0001*m.x69*m.x39 +
0.0001*m.x69*m.x40 + 0.0001*m.x69*m.x41 + 0.0001*m.x69*m.x42 + 0.0001*m.x69*m.x43 + 0.0001*m.x69*
m.x44 + 0.0001*m.x69*m.x45 + 0.0001*m.x69*m.x46 + 0.0001*m.x69*m.x47 + 0.0001*m.x69*m.x48 +
0.0001*m.x69*m.x49 + 0.0001*m.x69*m.x50 + 0.0001*m.x69*m.x51 + 0.0001*m.x69*m.x52 + 0.0001*m.x69*
m.x53 + 0.0001*m.x69*m.x54 + 0.0001*m.x69*m.x55 + 0.0001*m.x69*m.x56 + 0.0001*m.x69*m.x57 +
0.0001*m.x69*m.x58 + 0.0001*m.x69*m.x59 + 0.0001*m.x69*m.x60 + 0.0001*m.x69*m.x61 + 0.0001*m.x69*
m.x62 + 0.0001*m.x69*m.x63 + 0.0001*m.x69*m.x64 + 0.0001*m.x69*m.x65 + 0.0001*m.x69*m.x66 +
0.0001*m.x69*m.x67 + 0.0001*m.x69*m.x68 + 7.42140918377966*m.x69**2 + 0.0001*m.x69*m.x70 + 0.0001
*m.x69*m.x71 + 0.0001*m.x69*m.x72 + 0.0001*m.x69*m.x73 + 0.0001*m.x69*m.x74 + 0.0001*m.x69*m.x75
+ 0.0001*m.x69*m.x76 + 0.0001*m.x69*m.x77 + 0.0001*m.x69*m.x78 + 0.0001*m.x69*m.x79 + 0.0001*
m.x69*m.x80 + 3.68435207385428*m.x69*m.x81 + 0.0001*m.x69*m.x82 + 0.0001*m.x69*m.x83 + 0.0001*
m.x69*m.x84 + 0.0001*m.x69*m.x85 + 0.0001*m.x69*m.x86 + 0.0001*m.x69*m.x87 + 0.0001*m.x69*m.x88
+ 0.0001*m.x69*m.x89 + 0.0001*m.x69*m.x90 + 0.0001*m.x69*m.x91 + 0.0001*m.x69*m.x92 + 0.0001*
m.x69*m.x93 + 0.0001*m.x69*m.x94 + 0.0001*m.x69*m.x95 + 0.0001*m.x69*m.x96 + 0.0001*m.x69*m.x97
+ 0.0001*m.x69*m.x98 + 0.0001*m.x69*m.x99 + 0.0001*m.x69*m.x100 + 0.0001*m.x69*m.x101 + 0.0001*
m.x69*m.x102 + 0.0001*m.x69*m.x103 + 0.0001*m.x69*m.x104 + 0.0001*m.x69*m.x105 + 0.0001*m.x69*
m.x106 + 0.0001*m.x69*m.x107 + 0.0001*m.x69*m.x108 + 0.0001*m.x69*m.x109 + 0.0001*m.x69*m.x110 +
0.0001*m.x69*m.x111 + 0.0001*m.x69*m.x112 + 0.0001*m.x69*m.x113 + 0.0001*m.x69*m.x114 + 0.0001*
m.x69*m.x115 + 0.0001*m.x69*m.x116 + 0.0001*m.x69*m.x117 + 0.0001*m.x69*m.x118 + 0.0001*m.x69*
m.x119 + 0.0001*m.x69*m.x120 + 0.0001*m.x69*m.x121 + 0.0001*m.x69*m.x122 + 0.0001*m.x69*m.x123 +
0.0001*m.x69*m.x124 + 0.0001*m.x69*m.x125 + 0.0001*m.x69*m.x126 + 0.0001*m.x69*m.x127 + 0.0001*
m.x69*m.x128 + 0.0001*m.x69*m.x129 + 0.0001*m.x69*m.x130 + 0.0001*m.x69*m.x131 + 0.0001*m.x69*
m.x132 + 0.0001*m.x69*m.x133 + 0.0001*m.x69*m.x134 + 0.0001*m.x69*m.x135 + 0.0001*m.x69*m.x136 +
0.0001*m.x69*m.x137 + 0.0001*m.x69*m.x138 + 0.0001*m.x69*m.x139 + 0.0001*m.x69*m.x140 + 0.0001*
m.x69*m.x141 + 0.0001*m.x69*m.x142 + 0.0001*m.x69*m.x143 + 0.0001*m.x69*m.x144 + 0.0001*m.x69*
m.x145 + 0.0001*m.x69*m.x146 + 0.0001*m.x69*m.x147 + 0.0001*m.x69*m.x148 + 0.0001*m.x69*m.x149 +
0.0001*m.x69*m.x150 + 0.0001*m.x69*m.x151 + 0.0001*m.x69*m.x152 + 0.0001*m.x69*m.x153 + 0.0001*
m.x69*m.x154 + 0.0001*m.x69*m.x155 + 0.0001*m.x69*m.x156 + 0.0001*m.x69*m.x157 + 0.0001*m.x69*
m.x158 + 0.0001*m.x69*m.x159 + 0.0001*m.x69*m.x160 + 0.0001*m.x69*m.x161 + 0.0001*m.x69*m.x162 +
0.0001*m.x69*m.x163 + 0.0001*m.x69*m.x164 + 0.0001*m.x69*m.x165 + 0.0001*m.x69*m.x166 + 0.0001*
m.x69*m.x167 + 0.0001*m.x69*m.x168 + 0.0001*m.x69*m.x169 + 0.0001*m.x69*m.x170 + 0.0001*m.x69*
m.x171 + 0.0001*m.x69*m.x172 + 0.0001*m.x69*m.x173 + 0.0001*m.x69*m.x174 + 0.0001*m.x69*m.x175 +
0.0001*m.x69*m.x176 + 0.0001*m.x69*m.x177 + 0.0001*m.x69*m.x178 + 0.0001*m.x69*m.x179 + 0.0001*
m.x69*m.x180 + 0.0001*m.x69*m.x181 + 0.0001*m.x69*m.x182 + 0.0001*m.x69*m.x183 + 0.0001*m.x69*
m.x184 + 0.0001*m.x69*m.x185 + 0.0001*m.x70*m.x1 + 0.0001*m.x70*m.x2 + 0.0001*m.x70*m.x3 + 0.0001
*m.x70*m.x4 + 0.0001*m.x70*m.x5 + 0.0001*m.x70*m.x6 + 0.0001*m.x70*m.x7 + 0.0001*m.x70*m.x8 +
0.0001*m.x70*m.x9 + 0.0001*m.x70*m.x10 + 0.0001*m.x70*m.x11 + 0.0001*m.x70*m.x12 + 0.0001*m.x70*
m.x13 + 0.0001*m.x70*m.x14 + 0.0001*m.x70*m.x15 + 0.0001*m.x70*m.x16 + 0.0001*m.x70*m.x17 +
0.0001*m.x70*m.x18 + 0.0001*m.x70*m.x19 + 0.0001*m.x70*m.x20 + 0.0001*m.x70*m.x21 + 0.0001*m.x70*
m.x22 + 0.0001*m.x70*m.x23 + 0.0001*m.x70*m.x24 + 0.0001*m.x70*m.x25 + 0.0001*m.x70*m.x26 +
0.0001*m.x70*m.x27 + 0.0001*m.x70*m.x28 + 0.0001*m.x70*m.x29 + 0.0001*m.x70*m.x30 + 0.0001*m.x70*
m.x31 + 0.0001*m.x70*m.x32 + 0.0001*m.x70*m.x33 + 0.0001*m.x70*m.x34 + 0.0001*m.x70*m.x35 +
0.0001*m.x70*m.x36 + 0.0001*m.x70*m.x37 + 0.0001*m.x70*m.x38 + 0.0001*m.x70*m.x39 + 0.0001*m.x70*
m.x40 + 0.0001*m.x70*m.x41 + 0.0001*m.x70*m.x42 + 0.0001*m.x70*m.x43 + 0.0001*m.x70*m.x44 +
0.0001*m.x70*m.x45 + 0.0001*m.x70*m.x46 + 0.0001*m.x70*m.x47 + 0.0001*m.x70*m.x48 + 0.0001*m.x70*
m.x49 + 0.0001*m.x70*m.x50 + 0.0001*m.x70*m.x51 + 0.0001*m.x70*m.x52 + 0.0001*m.x70*m.x53 +
0.0001*m.x70*m.x54 + 0.0001*m.x70*m.x55 + 0.0001*m.x70*m.x56 + 0.0001*m.x70*m.x57 + 0.0001*m.x70*
m.x58 + 0.0001*m.x70*m.x59 + 0.0001*m.x70*m.x60 + 0.0001*m.x70*m.x61 + 0.0001*m.x70*m.x62 +
0.0001*m.x70*m.x63 + 0.0001*m.x70*m.x64 + 0.0001*m.x70*m.x65 + 0.0001*m.x70*m.x66 + 0.0001*m.x70*
m.x67 + 0.0001*m.x70*m.x68 + 0.0001*m.x70*m.x69 + 8.39717941180941*m.x70**2 + 0.0001*m.x70*m.x71
+ 0.0001*m.x70*m.x72 + 0.0001*m.x70*m.x73 + 0.0001*m.x70*m.x74 + 0.0001*m.x70*m.x75 + 0.0001*
m.x70*m.x76 + 0.0001*m.x70*m.x77 + 0.0001*m.x70*m.x78 + 0.0001*m.x70*m.x79 + 0.0001*m.x70*m.x80
+ 0.0001*m.x70*m.x81 + 3.83702324608675*m.x70*m.x82 + 0.0001*m.x70*m.x83 + 0.0001*m.x70*m.x84 +
0.0001*m.x70*m.x85 + 0.0001*m.x70*m.x86 + 0.0001*m.x70*m.x87 + 0.0001*m.x70*m.x88 + 0.0001*m.x70*
m.x89 + 0.0001*m.x70*m.x90 + 0.0001*m.x70*m.x91 + 0.0001*m.x70*m.x92 + 0.0001*m.x70*m.x93 +
0.0001*m.x70*m.x94 + 0.0001*m.x70*m.x95 + 0.0001*m.x70*m.x96 + 0.0001*m.x70*m.x97 + 0.0001*m.x70*
m.x98 + 0.0001*m.x70*m.x99 + 0.0001*m.x70*m.x100 + 0.0001*m.x70*m.x101 + 0.0001*m.x70*m.x102 +
0.0001*m.x70*m.x103 + 0.0001*m.x70*m.x104 + 0.0001*m.x70*m.x105 + 0.0001*m.x70*m.x106 + 0.0001*
m.x70*m.x107 + 0.0001*m.x70*m.x108 + 0.0001*m.x70*m.x109 + 0.0001*m.x70*m.x110 + 0.0001*m.x70*
m.x111 + 0.0001*m.x70*m.x112 + 0.0001*m.x70*m.x113 + 0.0001*m.x70*m.x114 + 0.0001*m.x70*m.x115 +
0.0001*m.x70*m.x116 + 0.0001*m.x70*m.x117 + 0.0001*m.x70*m.x118 + 0.0001*m.x70*m.x119 + 0.0001*
m.x70*m.x120 + 0.0001*m.x70*m.x121 + 0.0001*m.x70*m.x122 + 0.0001*m.x70*m.x123 + 0.0001*m.x70*
m.x124 + 0.0001*m.x70*m.x125 + 0.0001*m.x70*m.x126 + 0.0001*m.x70*m.x127 + 0.0001*m.x70*m.x128 +
0.0001*m.x70*m.x129 + 0.0001*m.x70*m.x130 + 0.0001*m.x70*m.x131 + 0.0001*m.x70*m.x132 + 0.0001*
m.x70*m.x133 + 0.0001*m.x70*m.x134 + 0.0001*m.x70*m.x135 + 0.0001*m.x70*m.x136 + 0.0001*m.x70*
m.x137 + 0.0001*m.x70*m.x138 + 0.0001*m.x70*m.x139 + 0.0001*m.x70*m.x140 + 0.0001*m.x70*m.x141 +
0.0001*m.x70*m.x142 + 0.0001*m.x70*m.x143 + 0.0001*m.x70*m.x144 + 0.0001*m.x70*m.x145 + 0.0001*
m.x70*m.x146 + 0.0001*m.x70*m.x147 + 0.0001*m.x70*m.x148 + 0.0001*m.x70*m.x149 + 0.0001*m.x70*
m.x150 + 0.0001*m.x70*m.x151 + 0.0001*m.x70*m.x152 + 0.0001*m.x70*m.x153 + 0.0001*m.x70*m.x154 +
0.0001*m.x70*m.x155 + 0.0001*m.x70*m.x156 + 0.0001*m.x70*m.x157 + 0.0001*m.x70*m.x158 + 0.0001*
m.x70*m.x159 + 0.0001*m.x70*m.x160 + 0.0001*m.x70*m.x161 + 0.0001*m.x70*m.x162 + 0.0001*m.x70*
m.x163 + 0.0001*m.x70*m.x164 + 0.0001*m.x70*m.x165 + 0.0001*m.x70*m.x166 + 0.0001*m.x70*m.x167 +
0.0001*m.x70*m.x168 + 0.0001*m.x70*m.x169 + 0.0001*m.x70*m.x170 + 0.0001*m.x70*m.x171 + 0.0001*
m.x70*m.x172 + 0.0001*m.x70*m.x173 + 0.0001*m.x70*m.x174 + 0.0001*m.x70*m.x175 + 0.0001*m.x70*
m.x176 + 0.0001*m.x70*m.x177 + 0.0001*m.x70*m.x178 + 0.0001*m.x70*m.x179 + 0.0001*m.x70*m.x180 +
0.0001*m.x70*m.x181 + 0.0001*m.x70*m.x182 + 0.0001*m.x70*m.x183 + 0.0001*m.x70*m.x184 + 0.0001*
m.x70*m.x185 + 0.0001*m.x71*m.x1 + 0.0001*m.x71*m.x2 + 0.0001*m.x71*m.x3 + 0.0001*m.x71*m.x4 +
0.0001*m.x71*m.x5 + 0.0001*m.x71*m.x6 + 0.0001*m.x71*m.x7 + 0.0001*m.x71*m.x8 + 0.0001*m.x71*m.x9
+ 0.0001*m.x71*m.x10 + 0.0001*m.x71*m.x11 + 0.0001*m.x71*m.x12 + 0.0001*m.x71*m.x13 + 0.0001*
m.x71*m.x14 + 0.0001*m.x71*m.x15 + 0.0001*m.x71*m.x16 + 0.0001*m.x71*m.x17 + 0.0001*m.x71*m.x18
+ 0.0001*m.x71*m.x19 + 0.0001*m.x71*m.x20 + 0.0001*m.x71*m.x21 + 0.0001*m.x71*m.x22 + 0.0001*
m.x71*m.x23 + 0.0001*m.x71*m.x24 + 0.0001*m.x71*m.x25 + 0.0001*m.x71*m.x26 + 0.0001*m.x71*m.x27
+ 0.0001*m.x71*m.x28 + 0.0001*m.x71*m.x29 + 0.0001*m.x71*m.x30 + 0.0001*m.x71*m.x31 + 0.0001*
m.x71*m.x32 + 0.0001*m.x71*m.x33 + 0.0001*m.x71*m.x34 + 0.0001*m.x71*m.x35 + 0.0001*m.x71*m.x36
+ 0.0001*m.x71*m.x37 + 0.0001*m.x71*m.x38 + 0.0001*m.x71*m.x39 + 0.0001*m.x71*m.x40 + 0.0001*
m.x71*m.x41 + 0.0001*m.x71*m.x42 + 0.0001*m.x71*m.x43 + 0.0001*m.x71*m.x44 + 0.0001*m.x71*m.x45
+ 0.0001*m.x71*m.x46 + 0.0001*m.x71*m.x47 + 0.0001*m.x71*m.x48 + 0.0001*m.x71*m.x49 + 0.0001*
m.x71*m.x50 + 0.0001*m.x71*m.x51 + 0.0001*m.x71*m.x52 + 0.0001*m.x71*m.x53 + 0.0001*m.x71*m.x54
+ 0.0001*m.x71*m.x55 + 0.0001*m.x71*m.x56 + 0.0001*m.x71*m.x57 + 0.0001*m.x71*m.x58 + 0.0001*
m.x71*m.x59 + 0.0001*m.x71*m.x60 + 0.0001*m.x71*m.x61 + 0.0001*m.x71*m.x62 + 0.0001*m.x71*m.x63
+ 0.0001*m.x71*m.x64 + 0.0001*m.x71*m.x65 + 0.0001*m.x71*m.x66 + 0.0001*m.x71*m.x67 + 0.0001*
m.x71*m.x68 + 0.0001*m.x71*m.x69 + 0.0001*m.x71*m.x70 + 8.39717941180941*m.x71**2 + 0.0001*m.x71*
m.x72 + 0.0001*m.x71*m.x73 + 0.0001*m.x71*m.x74 + 0.0001*m.x71*m.x75 + 0.0001*m.x71*m.x76 +
0.0001*m.x71*m.x77 + 0.0001*m.x71*m.x78 + 0.0001*m.x71*m.x79 + 0.0001*m.x71*m.x80 + 0.0001*m.x71*
m.x81 + 0.0001*m.x71*m.x82 + 3.83702324608675*m.x71*m.x83 + 0.0001*m.x71*m.x84 + 0.0001*m.x71*
m.x85 + 0.0001*m.x71*m.x86 + 0.0001*m.x71*m.x87 + 0.0001*m.x71*m.x88 + 0.0001*m.x71*m.x89 +
0.0001*m.x71*m.x90 + 0.0001*m.x71*m.x91 + 0.0001*m.x71*m.x92 + 0.0001*m.x71*m.x93 + 0.0001*m.x71*
m.x94 + 0.0001*m.x71*m.x95 + 0.0001*m.x71*m.x96 + 0.0001*m.x71*m.x97 + 0.0001*m.x71*m.x98 +
0.0001*m.x71*m.x99 + 0.0001*m.x71*m.x100 + 0.0001*m.x71*m.x101 + 0.0001*m.x71*m.x102 + 0.0001*
m.x71*m.x103 + 0.0001*m.x71*m.x104 + 0.0001*m.x71*m.x105 + 0.0001*m.x71*m.x106 + 0.0001*m.x71*
m.x107 + 0.0001*m.x71*m.x108 + 0.0001*m.x71*m.x109 + 0.0001*m.x71*m.x110 + 0.0001*m.x71*m.x111 +
0.0001*m.x71*m.x112 + 0.0001*m.x71*m.x113 + 0.0001*m.x71*m.x114 + 0.0001*m.x71*m.x115 + 0.0001*
m.x71*m.x116 + 0.0001*m.x71*m.x117 + 0.0001*m.x71*m.x118 + 0.0001*m.x71*m.x119 + 0.0001*m.x71*
m.x120 + 0.0001*m.x71*m.x121 + 0.0001*m.x71*m.x122 + 0.0001*m.x71*m.x123 + 0.0001*m.x71*m.x124 +
0.0001*m.x71*m.x125 + 0.0001*m.x71*m.x126 + 0.0001*m.x71*m.x127 + 0.0001*m.x71*m.x128 + 0.0001*
m.x71*m.x129 + 0.0001*m.x71*m.x130 + 0.0001*m.x71*m.x131 + 0.0001*m.x71*m.x132 + 0.0001*m.x71*
m.x133 + 0.0001*m.x71*m.x134 + 0.0001*m.x71*m.x135 + 0.0001*m.x71*m.x136 + 0.0001*m.x71*m.x137 +
0.0001*m.x71*m.x138 + 0.0001*m.x71*m.x139 + 0.0001*m.x71*m.x140 + 0.0001*m.x71*m.x141 + 0.0001*
m.x71*m.x142 + 0.0001*m.x71*m.x143 + 0.0001*m.x71*m.x144 + 0.0001*m.x71*m.x145 + 0.0001*m.x71*
m.x146 + 0.0001*m.x71*m.x147 + 0.0001*m.x71*m.x148 + 0.0001*m.x71*m.x149 + 0.0001*m.x71*m.x150 +
0.0001*m.x71*m.x151 + 0.0001*m.x71*m.x152 + 0.0001*m.x71*m.x153 + 0.0001*m.x71*m.x154 + 0.0001*
m.x71*m.x155 + 0.0001*m.x71*m.x156 + 0.0001*m.x71*m.x157 + 0.0001*m.x71*m.x158 + 0.0001*m.x71*
m.x159 + 0.0001*m.x71*m.x160 + 0.0001*m.x71*m.x161 + 0.0001*m.x71*m.x162 + 0.0001*m.x71*m.x163 +
0.0001*m.x71*m.x164 + 0.0001*m.x71*m.x165 + 0.0001*m.x71*m.x166 + 0.0001*m.x71*m.x167 + 0.0001*
m.x71*m.x168 + 0.0001*m.x71*m.x169 + 0.0001*m.x71*m.x170 + 0.0001*m.x71*m.x171 + 0.0001*m.x71*
m.x172 + 0.0001*m.x71*m.x173 + 0.0001*m.x71*m.x174 + 0.0001*m.x71*m.x175 + 0.0001*m.x71*m.x176 +
0.0001*m.x71*m.x177 + 0.0001*m.x71*m.x178 + 0.0001*m.x71*m.x179 + 0.0001*m.x71*m.x180 + 0.0001*
m.x71*m.x181 + 0.0001*m.x71*m.x182 + 0.0001*m.x71*m.x183 + 0.0001*m.x71*m.x184 + 0.0001*m.x71*
m.x185 + 0.0001*m.x72*m.x1 + 0.0001*m.x72*m.x2 + 0.0001*m.x72*m.x3 + 0.0001*m.x72*m.x4 + 0.0001*
m.x72*m.x5 + 0.0001*m.x72*m.x6 + 0.0001*m.x72*m.x7 + 0.0001*m.x72*m.x8 + 0.0001*m.x72*m.x9 +
0.0001*m.x72*m.x10 + 0.0001*m.x72*m.x11 + 0.0001*m.x72*m.x12 + 0.0001*m.x72*m.x13 + 0.0001*m.x72*
m.x14 + 0.0001*m.x72*m.x15 + 0.0001*m.x72*m.x16 + 0.0001*m.x72*m.x17 + 0.0001*m.x72*m.x18 +
0.0001*m.x72*m.x19 + 0.0001*m.x72*m.x20 + 0.0001*m.x72*m.x21 + 0.0001*m.x72*m.x22 + 0.0001*m.x72*
m.x23 + 0.0001*m.x72*m.x24 + 0.0001*m.x72*m.x25 + 0.0001*m.x72*m.x26 + 0.0001*m.x72*m.x27 +
0.0001*m.x72*m.x28 + 0.0001*m.x72*m.x29 + 0.0001*m.x72*m.x30 + 0.0001*m.x72*m.x31 + 0.0001*m.x72*
m.x32 + 0.0001*m.x72*m.x33 + 0.0001*m.x72*m.x34 + 0.0001*m.x72*m.x35 + 0.0001*m.x72*m.x36 +
0.0001*m.x72*m.x37 + 0.0001*m.x72*m.x38 + 0.0001*m.x72*m.x39 + 0.0001*m.x72*m.x40 + 0.0001*m.x72*
m.x41 + 0.0001*m.x72*m.x42 + 0.0001*m.x72*m.x43 + 0.0001*m.x72*m.x44 + 0.0001*m.x72*m.x45 +
0.0001*m.x72*m.x46 + 0.0001*m.x72*m.x47 + 0.0001*m.x72*m.x48 + 0.0001*m.x72*m.x49 + 0.0001*m.x72*
m.x50 + 0.0001*m.x72*m.x51 + 0.0001*m.x72*m.x52 + 0.0001*m.x72*m.x53 + 0.0001*m.x72*m.x54 +
0.0001*m.x72*m.x55 + 0.0001*m.x72*m.x56 + 0.0001*m.x72*m.x57 + 0.0001*m.x72*m.x58 + 0.0001*m.x72*
m.x59 + 5.09752086313842*m.x72*m.x60 + 0.0001*m.x72*m.x61 + 0.0001*m.x72*m.x62 + 0.0001*m.x72*
m.x63 + 0.0001*m.x72*m.x64 + 0.0001*m.x72*m.x65 + 0.0001*m.x72*m.x66 + 0.0001*m.x72*m.x67 +
0.0001*m.x72*m.x68 + 0.0001*m.x72*m.x69 + 0.0001*m.x72*m.x70 + 0.0001*m.x72*m.x71 +
2.3986155657935*m.x72**2 + 0.0001*m.x72*m.x73 + 0.0001*m.x72*m.x74 + 0.0001*m.x72*m.x75 + 0.0001*
m.x72*m.x76 + 0.0001*m.x72*m.x77 + 0.0001*m.x72*m.x78 + 0.0001*m.x72*m.x79 + 0.0001*m.x72*m.x80
+ 0.0001*m.x72*m.x81 + 0.0001*m.x72*m.x82 + 0.0001*m.x72*m.x83 + 0.0001*m.x72*m.x84 + 0.0001*
m.x72*m.x85 + 0.0001*m.x72*m.x86 + 0.0001*m.x72*m.x87 + 0.0001*m.x72*m.x88 + 0.0001*m.x72*m.x89
+ 0.0001*m.x72*m.x90 + 0.0001*m.x72*m.x91 + 0.0001*m.x72*m.x92 + 0.0001*m.x72*m.x93 + 0.0001*
m.x72*m.x94 + 0.0001*m.x72*m.x95 + 0.0001*m.x72*m.x96 + 0.0001*m.x72*m.x97 + 0.0001*m.x72*m.x98
+ 0.0001*m.x72*m.x99 + 0.0001*m.x72*m.x100 + 0.0001*m.x72*m.x101 + 0.0001*m.x72*m.x102 + 0.0001*
m.x72*m.x103 + 0.0001*m.x72*m.x104 + 0.0001*m.x72*m.x105 + 0.0001*m.x72*m.x106 + 0.0001*m.x72*
m.x107 + 0.0001*m.x72*m.x108 + 0.0001*m.x72*m.x109 + 0.0001*m.x72*m.x110 + 0.0001*m.x72*m.x111 +
0.0001*m.x72*m.x112 + 0.0001*m.x72*m.x113 + 0.0001*m.x72*m.x114 + 0.0001*m.x72*m.x115 + 0.0001*
m.x72*m.x116 + 1.48587678002252*m.x72*m.x117 + 0.0001*m.x72*m.x118 + 0.0001*m.x72*m.x119 + 0.0001
*m.x72*m.x120 + 0.0001*m.x72*m.x121 + 0.0001*m.x72*m.x122 + 0.0001*m.x72*m.x123 + 0.0001*m.x72*
m.x124 + 0.0001*m.x72*m.x125 + 0.0001*m.x72*m.x126 + 0.0001*m.x72*m.x127 + 0.0001*m.x72*m.x128 +
0.0001*m.x72*m.x129 + 0.0001*m.x72*m.x130 + 0.0001*m.x72*m.x131 + 0.0001*m.x72*m.x132 + 0.0001*
m.x72*m.x133 + 0.0001*m.x72*m.x134 + 0.0001*m.x72*m.x135 + 0.0001*m.x72*m.x136 + 0.0001*m.x72*
m.x137 + 0.0001*m.x72*m.x138 + 0.0001*m.x72*m.x139 + 0.0001*m.x72*m.x140 + 0.0001*m.x72*m.x141 +
0.0001*m.x72*m.x142 + 2.02594580793731*m.x72*m.x143 + 0.0001*m.x72*m.x144 + 0.0001*m.x72*m.x145
+ 0.0001*m.x72*m.x146 + 0.0001*m.x72*m.x147 + 0.0001*m.x72*m.x148 + 0.0001*m.x72*m.x149 + 0.0001
*m.x72*m.x150 + 0.0001*m.x72*m.x151 + 0.0001*m.x72*m.x152 + 0.0001*m.x72*m.x153 + 0.0001*m.x72*
m.x154 + 0.0001*m.x72*m.x155 + 0.0001*m.x72*m.x156 + 0.0001*m.x72*m.x157 + 1.44661993423099*m.x72
*m.x158 + 0.0001*m.x72*m.x159 + 0.0001*m.x72*m.x160 + 0.0001*m.x72*m.x161 + 0.0001*m.x72*m.x162
+ 0.0001*m.x72*m.x163 + 0.0001*m.x72*m.x164 + 0.0001*m.x72*m.x165 + 0.0001*m.x72*m.x166 + 0.0001
*m.x72*m.x167 + 0.0001*m.x72*m.x168 + 0.0001*m.x72*m.x169 + 0.0001*m.x72*m.x170 + 0.0001*m.x72*
m.x171 + 0.0001*m.x72*m.x172 + 0.0001*m.x72*m.x173 + 0.0001*m.x72*m.x174 + 0.0001*m.x72*m.x175 +
0.0001*m.x72*m.x176 + 0.0001*m.x72*m.x177 + 0.0001*m.x72*m.x178 + 0.0001*m.x72*m.x179 + 0.0001*
m.x72*m.x180 + 0.0001*m.x72*m.x181 + 0.0001*m.x72*m.x182 + 0.0001*m.x72*m.x183 + 0.0001*m.x72*
m.x184 + 0.0001*m.x72*m.x185 + 0.0001*m.x73*m.x1 + 0.0001*m.x73*m.x2 + 0.0001*m.x73*m.x3 + 0.0001
*m.x73*m.x4 + 0.0001*m.x73*m.x5 + 0.0001*m.x73*m.x6 + 0.0001*m.x73*m.x7 + 0.0001*m.x73*m.x8 +
0.0001*m.x73*m.x9 + 0.0001*m.x73*m.x10 + 0.0001*m.x73*m.x11 + 0.0001*m.x73*m.x12 + 0.0001*m.x73*
m.x13 + 0.0001*m.x73*m.x14 + 0.0001*m.x73*m.x15 + 0.0001*m.x73*m.x16 + 0.0001*m.x73*m.x17 +
0.0001*m.x73*m.x18 + 0.0001*m.x73*m.x19 + 0.0001*m.x73*m.x20 + 0.0001*m.x73*m.x21 + 0.0001*m.x73*
m.x22 + 0.0001*m.x73*m.x23 + 0.0001*m.x73*m.x24 + 0.0001*m.x73*m.x25 + 0.0001*m.x73*m.x26 +
0.0001*m.x73*m.x27 + 0.0001*m.x73*m.x28 + 0.0001*m.x73*m.x29 + 0.0001*m.x73*m.x30 + 0.0001*m.x73*
m.x31 + 0.0001*m.x73*m.x32 + 0.0001*m.x73*m.x33 + 0.0001*m.x73*m.x34 + 0.0001*m.x73*m.x35 +
0.0001*m.x73*m.x36 + 0.0001*m.x73*m.x37 + 0.0001*m.x73*m.x38 + 0.0001*m.x73*m.x39 + 0.0001*m.x73*
m.x40 + 0.0001*m.x73*m.x41 + 0.0001*m.x73*m.x42 + 0.0001*m.x73*m.x43 + 0.0001*m.x73*m.x44 +
0.0001*m.x73*m.x45 + 0.0001*m.x73*m.x46 + 0.0001*m.x73*m.x47 + 0.0001*m.x73*m.x48 + 0.0001*m.x73*
m.x49 + 0.0001*m.x73*m.x50 + 0.0001*m.x73*m.x51 + 0.0001*m.x73*m.x52 + 0.0001*m.x73*m.x53 +
0.0001*m.x73*m.x54 + 0.0001*m.x73*m.x55 + 0.0001*m.x73*m.x56 + 0.0001*m.x73*m.x57 + 0.0001*m.x73*
m.x58 + 0.0001*m.x73*m.x59 + 0.0001*m.x73*m.x60 + 4.68006349519818*m.x73*m.x61 + 0.0001*m.x73*
m.x62 + 0.0001*m.x73*m.x63 + 0.0001*m.x73*m.x64 + 0.0001*m.x73*m.x65 + 0.0001*m.x73*m.x66 +
0.0001*m.x73*m.x67 + 0.0001*m.x73*m.x68 + 0.0001*m.x73*m.x69 + 0.0001*m.x73*m.x70 + 0.0001*m.x73*
m.x71 + 0.0001*m.x73*m.x72 + 2.24846366498918*m.x73**2 + 0.0001*m.x73*m.x74 + 0.0001*m.x73*m.x75
+ 0.0001*m.x73*m.x76 + 0.0001*m.x73*m.x77 + 0.0001*m.x73*m.x78 + 0.0001*m.x73*m.x79 + 0.0001*
m.x73*m.x80 + 0.0001*m.x73*m.x81 + 0.0001*m.x73*m.x82 + 0.0001*m.x73*m.x83 + 0.0001*m.x73*m.x84
+ 0.0001*m.x73*m.x85 + 0.0001*m.x73*m.x86 + 0.0001*m.x73*m.x87 + 0.0001*m.x73*m.x88 + 0.0001*
m.x73*m.x89 + 0.0001*m.x73*m.x90 + 0.0001*m.x73*m.x91 + 0.0001*m.x73*m.x92 + 0.0001*m.x73*m.x93
+ 0.0001*m.x73*m.x94 + 0.0001*m.x73*m.x95 + 0.0001*m.x73*m.x96 + 0.0001*m.x73*m.x97 + 0.0001*
m.x73*m.x98 + 0.0001*m.x73*m.x99 + 0.0001*m.x73*m.x100 + 0.0001*m.x73*m.x101 + 0.0001*m.x73*
m.x102 + 0.0001*m.x73*m.x103 + 0.0001*m.x73*m.x104 + 0.0001*m.x73*m.x105 + 0.0001*m.x73*m.x106 +
0.0001*m.x73*m.x107 + 0.0001*m.x73*m.x108 + 0.0001*m.x73*m.x109 + 0.0001*m.x73*m.x110 + 0.0001*
m.x73*m.x111 + 0.0001*m.x73*m.x112 + 0.0001*m.x73*m.x113 + 0.0001*m.x73*m.x114 + 0.0001*m.x73*
m.x115 + 0.0001*m.x73*m.x116 + 0.0001*m.x73*m.x117 + 0.825676042763423*m.x73*m.x118 + 0.0001*
m.x73*m.x119 + 0.0001*m.x73*m.x120 + 0.0001*m.x73*m.x121 + 0.0001*m.x73*m.x122 + 0.0001*m.x73*
m.x123 + 0.0001*m.x73*m.x124 + 0.0001*m.x73*m.x125 + 0.0001*m.x73*m.x126 + 0.0001*m.x73*m.x127 +
0.0001*m.x73*m.x128 + 0.0001*m.x73*m.x129 + 0.0001*m.x73*m.x130 + 0.0001*m.x73*m.x131 + 0.0001*
m.x73*m.x132 + 0.0001*m.x73*m.x133 + 0.0001*m.x73*m.x134 + 0.0001*m.x73*m.x135 + 0.0001*m.x73*
m.x136 + 0.0001*m.x73*m.x137 + 0.0001*m.x73*m.x138 + 0.0001*m.x73*m.x139 + 0.0001*m.x73*m.x140 +
0.0001*m.x73*m.x141 + 0.0001*m.x73*m.x142 + 0.0001*m.x73*m.x143 + 1.07615655996441*m.x73*m.x144
+ 0.0001*m.x73*m.x145 + 0.0001*m.x73*m.x146 + 0.0001*m.x73*m.x147 + 0.0001*m.x73*m.x148 + 0.0001
*m.x73*m.x149 + 0.0001*m.x73*m.x150 + 0.0001*m.x73*m.x151 + 0.0001*m.x73*m.x152 + 0.0001*m.x73*
m.x153 + 0.0001*m.x73*m.x154 + 0.0001*m.x73*m.x155 + 0.0001*m.x73*m.x156 + 0.0001*m.x73*m.x157 +
0.0001*m.x73*m.x158 + 0.803862866089973*m.x73*m.x159 + 0.0001*m.x73*m.x160 + 0.0001*m.x73*m.x161
+ 0.0001*m.x73*m.x162 + 0.0001*m.x73*m.x163 + 0.0001*m.x73*m.x164 + 0.0001*m.x73*m.x165 + 0.0001
*m.x73*m.x166 + 0.0001*m.x73*m.x167 + 0.0001*m.x73*m.x168 + 0.0001*m.x73*m.x169 + 0.0001*m.x73*
m.x170 + 0.0001*m.x73*m.x171 + 0.0001*m.x73*m.x172 + 0.0001*m.x73*m.x173 + 0.0001*m.x73*m.x174 +
0.0001*m.x73*m.x175 + 0.0001*m.x73*m.x176 + 0.0001*m.x73*m.x177 + 0.0001*m.x73*m.x178 + 0.0001*
m.x73*m.x179 + 0.0001*m.x73*m.x180 + 0.0001*m.x73*m.x181 + 0.0001*m.x73*m.x182 + 0.0001*m.x73*
m.x183 + 0.0001*m.x73*m.x184 + 0.0001*m.x73*m.x185 + 0.0001*m.x74*m.x1 + 0.0001*m.x74*m.x2 +
0.0001*m.x74*m.x3 + 0.0001*m.x74*m.x4 + 0.0001*m.x74*m.x5 + 0.0001*m.x74*m.x6 + 0.0001*m.x74*m.x7
+ 0.0001*m.x74*m.x8 + 0.0001*m.x74*m.x9 + 0.0001*m.x74*m.x10 + 0.0001*m.x74*m.x11 + 0.0001*m.x74
*m.x12 + 0.0001*m.x74*m.x13 + 0.0001*m.x74*m.x14 + 0.0001*m.x74*m.x15 + 0.0001*m.x74*m.x16 +
0.0001*m.x74*m.x17 + 0.0001*m.x74*m.x18 + 0.0001*m.x74*m.x19 + 0.0001*m.x74*m.x20 + 0.0001*m.x74*
m.x21 + 0.0001*m.x74*m.x22 + 0.0001*m.x74*m.x23 + 0.0001*m.x74*m.x24 + 0.0001*m.x74*m.x25 +
0.0001*m.x74*m.x26 + 0.0001*m.x74*m.x27 + 0.0001*m.x74*m.x28 + 0.0001*m.x74*m.x29 + 0.0001*m.x74*
m.x30 + 0.0001*m.x74*m.x31 + 0.0001*m.x74*m.x32 + 0.0001*m.x74*m.x33 + 0.0001*m.x74*m.x34 +
0.0001*m.x74*m.x35 + 0.0001*m.x74*m.x36 + 0.0001*m.x74*m.x37 + 0.0001*m.x74*m.x38 + 0.0001*m.x74*
m.x39 + 0.0001*m.x74*m.x40 + 0.0001*m.x74*m.x41 + 0.0001*m.x74*m.x42 + 0.0001*m.x74*m.x43 +
0.0001*m.x74*m.x44 + 0.0001*m.x74*m.x45 + 0.0001*m.x74*m.x46 + 0.0001*m.x74*m.x47 + 0.0001*m.x74*
m.x48 + 0.0001*m.x74*m.x49 + 0.0001*m.x74*m.x50 + 0.0001*m.x74*m.x51 + 0.0001*m.x74*m.x52 +
0.0001*m.x74*m.x53 + 0.0001*m.x74*m.x54 + 0.0001*m.x74*m.x55 + 0.0001*m.x74*m.x56 + 0.0001*m.x74*
m.x57 + 0.0001*m.x74*m.x58 + 0.0001*m.x74*m.x59 + 0.0001*m.x74*m.x60 + 0.0001*m.x74*m.x61 +
5.74039726395508*m.x74*m.x62 + 0.0001*m.x74*m.x63 + 0.0001*m.x74*m.x64 + 0.0001*m.x74*m.x65 +
0.0001*m.x74*m.x66 + 0.0001*m.x74*m.x67 + 0.0001*m.x74*m.x68 + 0.0001*m.x74*m.x69 + 0.0001*m.x74*
m.x70 + 0.0001*m.x74*m.x71 + 0.0001*m.x74*m.x72 + 0.0001*m.x74*m.x73 + 2.70468892583163*m.x74**2
+ 0.0001*m.x74*m.x75 + 0.0001*m.x74*m.x76 + 0.0001*m.x74*m.x77 + 0.0001*m.x74*m.x78 + 0.0001*
m.x74*m.x79 + 0.0001*m.x74*m.x80 + 0.0001*m.x74*m.x81 + 0.0001*m.x74*m.x82 + 0.0001*m.x74*m.x83
+ 0.0001*m.x74*m.x84 + 0.0001*m.x74*m.x85 + 0.0001*m.x74*m.x86 + 0.0001*m.x74*m.x87 + 0.0001*
m.x74*m.x88 + 0.0001*m.x74*m.x89 + 0.0001*m.x74*m.x90 + 0.0001*m.x74*m.x91 + 0.0001*m.x74*m.x92
+ 0.0001*m.x74*m.x93 + 0.0001*m.x74*m.x94 + 0.0001*m.x74*m.x95 + 0.0001*m.x74*m.x96 + 0.0001*
m.x74*m.x97 + 0.0001*m.x74*m.x98 + 0.0001*m.x74*m.x99 + 0.0001*m.x74*m.x100 + 0.0001*m.x74*m.x101
+ 0.0001*m.x74*m.x102 + 0.0001*m.x74*m.x103 + 0.0001*m.x74*m.x104 + 0.0001*m.x74*m.x105 + 0.0001
*m.x74*m.x106 + 0.0001*m.x74*m.x107 + 0.0001*m.x74*m.x108 + 0.0001*m.x74*m.x109 + 0.0001*m.x74*
m.x110 + 0.0001*m.x74*m.x111 + 0.0001*m.x74*m.x112 + 0.0001*m.x74*m.x113 + 0.0001*m.x74*m.x114 +
0.0001*m.x74*m.x115 + 0.0001*m.x74*m.x116 + 0.0001*m.x74*m.x117 + 0.0001*m.x74*m.x118 +
0.726124762373682*m.x74*m.x119 + 0.0001*m.x74*m.x120 + 0.0001*m.x74*m.x121 + 0.0001*m.x74*m.x122
+ 0.0001*m.x74*m.x123 + 0.0001*m.x74*m.x124 + 0.0001*m.x74*m.x125 + 0.0001*m.x74*m.x126 + 0.0001
*m.x74*m.x127 + 0.0001*m.x74*m.x128 + 0.0001*m.x74*m.x129 + 0.0001*m.x74*m.x130 + 0.0001*m.x74*
m.x131 + 0.0001*m.x74*m.x132 + 0.0001*m.x74*m.x133 + 0.0001*m.x74*m.x134 + 0.0001*m.x74*m.x135 +
0.0001*m.x74*m.x136 + 0.0001*m.x74*m.x137 + 0.0001*m.x74*m.x138 + 0.0001*m.x74*m.x139 + 0.0001*
m.x74*m.x140 + 0.0001*m.x74*m.x141 + 0.0001*m.x74*m.x142 + 0.0001*m.x74*m.x143 + 0.0001*m.x74*
m.x144 + 1.17562792915444*m.x74*m.x145 + 0.0001*m.x74*m.x146 + 0.0001*m.x74*m.x147 + 0.0001*m.x74
*m.x148 + 0.0001*m.x74*m.x149 + 0.0001*m.x74*m.x150 + 0.0001*m.x74*m.x151 + 0.0001*m.x74*m.x152
+ 0.0001*m.x74*m.x153 + 0.0001*m.x74*m.x154 + 0.0001*m.x74*m.x155 + 0.0001*m.x74*m.x156 + 0.0001
*m.x74*m.x157 + 0.0001*m.x74*m.x158 + 0.0001*m.x74*m.x159 + 0.707825371164089*m.x74*m.x160 +
0.0001*m.x74*m.x161 + 0.0001*m.x74*m.x162 + 0.0001*m.x74*m.x163 + 0.0001*m.x74*m.x164 + 0.0001*
m.x74*m.x165 + 0.0001*m.x74*m.x166 + 0.0001*m.x74*m.x167 + 0.0001*m.x74*m.x168 + 0.0001*m.x74*
m.x169 + 0.0001*m.x74*m.x170 + 0.0001*m.x74*m.x171 + 0.0001*m.x74*m.x172 + 0.0001*m.x74*m.x173 +
0.0001*m.x74*m.x174 + 0.0001*m.x74*m.x175 + 0.0001*m.x74*m.x176 + 0.0001*m.x74*m.x177 + 0.0001*
m.x74*m.x178 + 0.0001*m.x74*m.x179 + 0.0001*m.x74*m.x180 + 0.0001*m.x74*m.x181 + 0.0001*m.x74*
m.x182 + 0.0001*m.x74*m.x183 + 0.0001*m.x74*m.x184 + 0.0001*m.x74*m.x185 + 0.0001*m.x75*m.x1 +
0.0001*m.x75*m.x2 + 0.0001*m.x75*m.x3 + 0.0001*m.x75*m.x4 + 0.0001*m.x75*m.x5 + 0.0001*m.x75*m.x6
+ 0.0001*m.x75*m.x7 + 0.0001*m.x75*m.x8 + 0.0001*m.x75*m.x9 + 0.0001*m.x75*m.x10 + 0.0001*m.x75*
m.x11 + 0.0001*m.x75*m.x12 + 0.0001*m.x75*m.x13 + 0.0001*m.x75*m.x14 + 0.0001*m.x75*m.x15 +
0.0001*m.x75*m.x16 + 0.0001*m.x75*m.x17 + 0.0001*m.x75*m.x18 + 0.0001*m.x75*m.x19 + 0.0001*m.x75*
m.x20 + 0.0001*m.x75*m.x21 + 0.0001*m.x75*m.x22 + 0.0001*m.x75*m.x23 + 0.0001*m.x75*m.x24 +
0.0001*m.x75*m.x25 + 0.0001*m.x75*m.x26 + 0.0001*m.x75*m.x27 + 0.0001*m.x75*m.x28 + 0.0001*m.x75*
m.x29 + 0.0001*m.x75*m.x30 + 0.0001*m.x75*m.x31 + 0.0001*m.x75*m.x32 + 0.0001*m.x75*m.x33 +
0.0001*m.x75*m.x34 + 0.0001*m.x75*m.x35 + 0.0001*m.x75*m.x36 + 0.0001*m.x75*m.x37 + 0.0001*m.x75*
m.x38 + 0.0001*m.x75*m.x39 + 0.0001*m.x75*m.x40 + 0.0001*m.x75*m.x41 + 0.0001*m.x75*m.x42 +
0.0001*m.x75*m.x43 + 0.0001*m.x75*m.x44 + 0.0001*m.x75*m.x45 + 0.0001*m.x75*m.x46 + 0.0001*m.x75*
m.x47 + 0.0001*m.x75*m.x48 + 0.0001*m.x75*m.x49 + 0.0001*m.x75*m.x50 + 0.0001*m.x75*m.x51 +
0.0001*m.x75*m.x52 + 0.0001*m.x75*m.x53 + 0.0001*m.x75*m.x54 + 0.0001*m.x75*m.x55 + 0.0001*m.x75*
m.x56 + 0.0001*m.x75*m.x57 + 0.0001*m.x75*m.x58 + 0.0001*m.x75*m.x59 + 0.0001*m.x75*m.x60 +
0.0001*m.x75*m.x61 + 0.0001*m.x75*m.x62 + 5.05835068785423*m.x75*m.x63 + 0.0001*m.x75*m.x64 +
0.0001*m.x75*m.x65 + 0.0001*m.x75*m.x66 + 0.0001*m.x75*m.x67 + 0.0001*m.x75*m.x68 + 0.0001*m.x75*
m.x69 + 0.0001*m.x75*m.x70 + 0.0001*m.x75*m.x71 + 0.0001*m.x75*m.x72 + 0.0001*m.x75*m.x73 +
0.0001*m.x75*m.x74 + 2.68565510289825*m.x75**2 + 0.0001*m.x75*m.x76 + 0.0001*m.x75*m.x77 + 0.0001
*m.x75*m.x78 + 0.0001*m.x75*m.x79 + 0.0001*m.x75*m.x80 + 0.0001*m.x75*m.x81 + 0.0001*m.x75*m.x82
+ 0.0001*m.x75*m.x83 + 0.0001*m.x75*m.x84 + 0.0001*m.x75*m.x85 + 0.0001*m.x75*m.x86 + 0.0001*
m.x75*m.x87 + 0.0001*m.x75*m.x88 + 0.0001*m.x75*m.x89 + 0.0001*m.x75*m.x90 + 0.0001*m.x75*m.x91
+ 0.0001*m.x75*m.x92 + 0.0001*m.x75*m.x93 + 0.0001*m.x75*m.x94 + 0.0001*m.x75*m.x95 + 0.0001*
m.x75*m.x96 + 0.0001*m.x75*m.x97 + 0.0001*m.x75*m.x98 + 0.0001*m.x75*m.x99 + 0.0001*m.x75*m.x100
+ 0.0001*m.x75*m.x101 + 0.0001*m.x75*m.x102 + 0.0001*m.x75*m.x103 + 0.0001*m.x75*m.x104 + 0.0001
*m.x75*m.x105 + 0.0001*m.x75*m.x106 + 0.0001*m.x75*m.x107 + 0.0001*m.x75*m.x108 + 0.0001*m.x75*
m.x109 + 0.0001*m.x75*m.x110 + 0.0001*m.x75*m.x111 + 0.0001*m.x75*m.x112 + 0.0001*m.x75*m.x113 +
0.0001*m.x75*m.x114 + 0.0001*m.x75*m.x115 + 0.0001*m.x75*m.x116 + 0.0001*m.x75*m.x117 + 0.0001*
m.x75*m.x118 + 0.0001*m.x75*m.x119 + 0.807657733076222*m.x75*m.x120 + 0.0001*m.x75*m.x121 +
0.0001*m.x75*m.x122 + 0.0001*m.x75*m.x123 + 0.0001*m.x75*m.x124 + 0.0001*m.x75*m.x125 + 0.0001*
m.x75*m.x126 + 0.0001*m.x75*m.x127 + 0.0001*m.x75*m.x128 + 0.0001*m.x75*m.x129 + 0.0001*m.x75*
m.x130 + 0.0001*m.x75*m.x131 + 0.0001*m.x75*m.x132 + 0.0001*m.x75*m.x133 + 0.0001*m.x75*m.x134 +
0.0001*m.x75*m.x135 + 0.0001*m.x75*m.x136 + 0.0001*m.x75*m.x137 + 0.0001*m.x75*m.x138 + 0.0001*
m.x75*m.x139 + 0.0001*m.x75*m.x140 + 0.0001*m.x75*m.x141 + 0.0001*m.x75*m.x142 + 0.0001*m.x75*
m.x143 + 0.0001*m.x75*m.x144 + 0.0001*m.x75*m.x145 + 1.30764034687751*m.x75*m.x146 + 0.0001*m.x75
*m.x147 + 0.0001*m.x75*m.x148 + 0.0001*m.x75*m.x149 + 0.0001*m.x75*m.x150 + 0.0001*m.x75*m.x151
+ 0.0001*m.x75*m.x152 + 0.0001*m.x75*m.x153 + 0.0001*m.x75*m.x154 + 0.0001*m.x75*m.x155 + 0.0001
*m.x75*m.x156 + 0.0001*m.x75*m.x157 + 0.0001*m.x75*m.x158 + 0.0001*m.x75*m.x159 + 0.0001*m.x75*
m.x160 + 0.70518890429601*m.x75*m.x161 + 0.0001*m.x75*m.x162 + 0.0001*m.x75*m.x163 + 0.0001*m.x75
*m.x164 + 0.0001*m.x75*m.x165 + 0.0001*m.x75*m.x166 + 0.0001*m.x75*m.x167 + 0.0001*m.x75*m.x168
+ 0.0001*m.x75*m.x169 + 0.0001*m.x75*m.x170 + 0.0001*m.x75*m.x171 + 0.0001*m.x75*m.x172 + 0.0001
*m.x75*m.x173 + 0.0001*m.x75*m.x174 + 0.0001*m.x75*m.x175 + 0.0001*m.x75*m.x176 + 0.0001*m.x75*
m.x177 + 0.0001*m.x75*m.x178 + 0.0001*m.x75*m.x179 + 0.0001*m.x75*m.x180 + 0.0001*m.x75*m.x181 +
0.0001*m.x75*m.x182 + 0.0001*m.x75*m.x183 + 0.0001*m.x75*m.x184 + 0.0001*m.x75*m.x185 + 0.0001*
m.x76*m.x1 + 0.0001*m.x76*m.x2 + 0.0001*m.x76*m.x3 + 0.0001*m.x76*m.x4 + 0.0001*m.x76*m.x5 +
0.0001*m.x76*m.x6 + 0.0001*m.x76*m.x7 + 0.0001*m.x76*m.x8 + 0.0001*m.x76*m.x9 + 0.0001*m.x76*
m.x10 + 0.0001*m.x76*m.x11 + 0.0001*m.x76*m.x12 + 0.0001*m.x76*m.x13 + 0.0001*m.x76*m.x14 +
0.0001*m.x76*m.x15 + 0.0001*m.x76*m.x16 + 0.0001*m.x76*m.x17 + 0.0001*m.x76*m.x18 + 0.0001*m.x76*
m.x19 + 0.0001*m.x76*m.x20 + 0.0001*m.x76*m.x21 + 0.0001*m.x76*m.x22 + 0.0001*m.x76*m.x23 +
0.0001*m.x76*m.x24 + 0.0001*m.x76*m.x25 + 0.0001*m.x76*m.x26 + 0.0001*m.x76*m.x27 + 0.0001*m.x76*
m.x28 + 0.0001*m.x76*m.x29 + 0.0001*m.x76*m.x30 + 0.0001*m.x76*m.x31 + 0.0001*m.x76*m.x32 +
0.0001*m.x76*m.x33 + 0.0001*m.x76*m.x34 + 0.0001*m.x76*m.x35 + 0.0001*m.x76*m.x36 + 0.0001*m.x76*
m.x37 + 0.0001*m.x76*m.x38 + 0.0001*m.x76*m.x39 + 0.0001*m.x76*m.x40 + 0.0001*m.x76*m.x41 +
0.0001*m.x76*m.x42 + 0.0001*m.x76*m.x43 + 0.0001*m.x76*m.x44 + 0.0001*m.x76*m.x45 + 0.0001*m.x76*
m.x46 + 0.0001*m.x76*m.x47 + 0.0001*m.x76*m.x48 + 0.0001*m.x76*m.x49 + 0.0001*m.x76*m.x50 +
0.0001*m.x76*m.x51 + 0.0001*m.x76*m.x52 + 0.0001*m.x76*m.x53 + 0.0001*m.x76*m.x54 + 0.0001*m.x76*
m.x55 + 0.0001*m.x76*m.x56 + 0.0001*m.x76*m.x57 + 0.0001*m.x76*m.x58 + 0.0001*m.x76*m.x59 +
0.0001*m.x76*m.x60 + 0.0001*m.x76*m.x61 + 0.0001*m.x76*m.x62 + 0.0001*m.x76*m.x63 +
6.70192609906756*m.x76*m.x64 + 0.0001*m.x76*m.x65 + 0.0001*m.x76*m.x66 + 0.0001*m.x76*m.x67 +
0.0001*m.x76*m.x68 + 0.0001*m.x76*m.x69 + 0.0001*m.x76*m.x70 + 0.0001*m.x76*m.x71 + 0.0001*m.x76*
m.x72 + 0.0001*m.x76*m.x73 + 0.0001*m.x76*m.x74 + 0.0001*m.x76*m.x75 + 3.32310800192592*m.x76**2
+ 0.0001*m.x76*m.x77 + 0.0001*m.x76*m.x78 + 0.0001*m.x76*m.x79 + 0.0001*m.x76*m.x80 + 0.0001*
m.x76*m.x81 + 0.0001*m.x76*m.x82 + 0.0001*m.x76*m.x83 + 0.0001*m.x76*m.x84 + 0.0001*m.x76*m.x85
+ 0.0001*m.x76*m.x86 + 0.0001*m.x76*m.x87 + 0.0001*m.x76*m.x88 + 0.0001*m.x76*m.x89 + 0.0001*
m.x76*m.x90 + 0.0001*m.x76*m.x91 + 0.0001*m.x76*m.x92 + 0.0001*m.x76*m.x93 + 0.0001*m.x76*m.x94
+ 0.0001*m.x76*m.x95 + 0.0001*m.x76*m.x96 + 0.0001*m.x76*m.x97 + 0.0001*m.x76*m.x98 + 0.0001*
m.x76*m.x99 + 0.0001*m.x76*m.x100 + 0.0001*m.x76*m.x101 + 0.0001*m.x76*m.x102 + 0.0001*m.x76*
m.x103 + 0.0001*m.x76*m.x104 + 0.0001*m.x76*m.x105 + 0.0001*m.x76*m.x106 + 0.0001*m.x76*m.x107 +
0.0001*m.x76*m.x108 + 0.0001*m.x76*m.x109 + 0.0001*m.x76*m.x110 + 0.0001*m.x76*m.x111 + 0.0001*
m.x76*m.x112 + 0.0001*m.x76*m.x113 + 0.0001*m.x76*m.x114 + 0.0001*m.x76*m.x115 + 0.0001*m.x76*
m.x116 + 0.0001*m.x76*m.x117 + 0.0001*m.x76*m.x118 + 0.0001*m.x76*m.x119 + 0.0001*m.x76*m.x120 +
0.87497610763658*m.x76*m.x121 + 0.0001*m.x76*m.x122 + 0.0001*m.x76*m.x123 + 0.0001*m.x76*m.x124
+ 0.0001*m.x76*m.x125 + 0.0001*m.x76*m.x126 + 0.0001*m.x76*m.x127 + 0.0001*m.x76*m.x128 + 0.0001
*m.x76*m.x129 + 0.0001*m.x76*m.x130 + 0.0001*m.x76*m.x131 + 0.0001*m.x76*m.x132 + 0.0001*m.x76*
m.x133 + 0.0001*m.x76*m.x134 + 0.0001*m.x76*m.x135 + 0.0001*m.x76*m.x136 + 0.0001*m.x76*m.x137 +
0.0001*m.x76*m.x138 + 0.0001*m.x76*m.x139 + 0.0001*m.x76*m.x140 + 0.0001*m.x76*m.x141 + 0.0001*
m.x76*m.x142 + 0.0001*m.x76*m.x143 + 0.0001*m.x76*m.x144 + 0.0001*m.x76*m.x145 + 0.0001*m.x76*
m.x146 + 1.42317774497402*m.x76*m.x147 + 0.0001*m.x76*m.x148 + 0.0001*m.x76*m.x149 + 0.0001*m.x76
*m.x150 + 0.0001*m.x76*m.x151 + 0.0001*m.x76*m.x152 + 0.0001*m.x76*m.x153 + 0.0001*m.x76*m.x154
+ 0.0001*m.x76*m.x155 + 0.0001*m.x76*m.x156 + 0.0001*m.x76*m.x157 + 0.0001*m.x76*m.x158 + 0.0001
*m.x76*m.x159 + 0.0001*m.x76*m.x160 + 0.0001*m.x76*m.x161 + 0.763965431364781*m.x76*m.x162 +
0.0001*m.x76*m.x163 + 0.0001*m.x76*m.x164 + 0.0001*m.x76*m.x165 + 0.0001*m.x76*m.x166 + 0.0001*
m.x76*m.x167 + 0.0001*m.x76*m.x168 + 0.0001*m.x76*m.x169 + 0.0001*m.x76*m.x170 + 0.0001*m.x76*
m.x171 + 0.0001*m.x76*m.x172 + 0.0001*m.x76*m.x173 + 0.0001*m.x76*m.x174 + 0.0001*m.x76*m.x175 +
0.0001*m.x76*m.x176 + 0.0001*m.x76*m.x177 + 0.0001*m.x76*m.x178 + 0.0001*m.x76*m.x179 + 0.0001*
m.x76*m.x180 + 0.0001*m.x76*m.x181 + 0.0001*m.x76*m.x182 + 0.0001*m.x76*m.x183 + 0.0001*m.x76*
m.x184 + 0.0001*m.x76*m.x185 + 0.0001*m.x77*m.x1 + 0.0001*m.x77*m.x2 + 0.0001*m.x77*m.x3 + 0.0001
*m.x77*m.x4 + 0.0001*m.x77*m.x5 + 0.0001*m.x77*m.x6 + 0.0001*m.x77*m.x7 + 0.0001*m.x77*m.x8 +
0.0001*m.x77*m.x9 + 0.0001*m.x77*m.x10 + 0.0001*m.x77*m.x11 + 0.0001*m.x77*m.x12 + 0.0001*m.x77*
m.x13 + 0.0001*m.x77*m.x14 + 0.0001*m.x77*m.x15 + 0.0001*m.x77*m.x16 + 0.0001*m.x77*m.x17 +
0.0001*m.x77*m.x18 + 0.0001*m.x77*m.x19 + 0.0001*m.x77*m.x20 + 0.0001*m.x77*m.x21 + 0.0001*m.x77*
m.x22 + 0.0001*m.x77*m.x23 + 0.0001*m.x77*m.x24 + 0.0001*m.x77*m.x25 + 0.0001*m.x77*m.x26 +
0.0001*m.x77*m.x27 + 0.0001*m.x77*m.x28 + 0.0001*m.x77*m.x29 + 0.0001*m.x77*m.x30 + 0.0001*m.x77*
m.x31 + 0.0001*m.x77*m.x32 + 0.0001*m.x77*m.x33 + 0.0001*m.x77*m.x34 + 0.0001*m.x77*m.x35 +
0.0001*m.x77*m.x36 + 0.0001*m.x77*m.x37 + 0.0001*m.x77*m.x38 + 0.0001*m.x77*m.x39 + 0.0001*m.x77*
m.x40 + 0.0001*m.x77*m.x41 + 0.0001*m.x77*m.x42 + 0.0001*m.x77*m.x43 + 0.0001*m.x77*m.x44 +
0.0001*m.x77*m.x45 + 0.0001*m.x77*m.x46 + 0.0001*m.x77*m.x47 + 0.0001*m.x77*m.x48 + 0.0001*m.x77*
m.x49 + 0.0001*m.x77*m.x50 + 0.0001*m.x77*m.x51 + 0.0001*m.x77*m.x52 + 0.0001*m.x77*m.x53 +
0.0001*m.x77*m.x54 + 0.0001*m.x77*m.x55 + 0.0001*m.x77*m.x56 + 0.0001*m.x77*m.x57 + 0.0001*m.x77*
m.x58 + 0.0001*m.x77*m.x59 + 0.0001*m.x77*m.x60 + 0.0001*m.x77*m.x61 + 0.0001*m.x77*m.x62 +
0.0001*m.x77*m.x63 + 0.0001*m.x77*m.x64 + 5.37557657494101*m.x77*m.x65 + 0.0001*m.x77*m.x66 +
0.0001*m.x77*m.x67 + 0.0001*m.x77*m.x68 + 0.0001*m.x77*m.x69 + 0.0001*m.x77*m.x70 + 0.0001*m.x77*
m.x71 + 0.0001*m.x77*m.x72 + 0.0001*m.x77*m.x73 + 0.0001*m.x77*m.x74 + 0.0001*m.x77*m.x75 +
0.0001*m.x77*m.x76 + 2.71915619805893*m.x77**2 + 0.0001*m.x77*m.x78 + 0.0001*m.x77*m.x79 + 0.0001
*m.x77*m.x80 + 0.0001*m.x77*m.x81 + 0.0001*m.x77*m.x82 + 0.0001*m.x77*m.x83 + 0.0001*m.x77*m.x84
+ 0.0001*m.x77*m.x85 + 0.0001*m.x77*m.x86 + 0.0001*m.x77*m.x87 + 0.0001*m.x77*m.x88 + 0.0001*
m.x77*m.x89 + 0.0001*m.x77*m.x90 + 0.0001*m.x77*m.x91 + 0.0001*m.x77*m.x92 + 0.0001*m.x77*m.x93
+ 0.0001*m.x77*m.x94 + 0.0001*m.x77*m.x95 + 0.0001*m.x77*m.x96 + 0.0001*m.x77*m.x97 + 0.0001*
m.x77*m.x98 + 0.0001*m.x77*m.x99 + 0.0001*m.x77*m.x100 + 0.0001*m.x77*m.x101 + 0.0001*m.x77*
m.x102 + 0.0001*m.x77*m.x103 + 0.0001*m.x77*m.x104 + 0.0001*m.x77*m.x105 + 0.0001*m.x77*m.x106 +
0.0001*m.x77*m.x107 + 0.0001*m.x77*m.x108 + 0.0001*m.x77*m.x109 + 0.0001*m.x77*m.x110 + 0.0001*
m.x77*m.x111 + 0.0001*m.x77*m.x112 + 0.0001*m.x77*m.x113 + 0.0001*m.x77*m.x114 + 0.0001*m.x77*
m.x115 + 0.0001*m.x77*m.x116 + 0.0001*m.x77*m.x117 + 0.0001*m.x77*m.x118 + 0.0001*m.x77*m.x119 +
0.0001*m.x77*m.x120 + 0.0001*m.x77*m.x121 + 0.914670511374364*m.x77*m.x122 + 0.0001*m.x77*m.x123
+ 0.0001*m.x77*m.x124 + 0.0001*m.x77*m.x125 + 0.0001*m.x77*m.x126 + 0.0001*m.x77*m.x127 + 0.0001
*m.x77*m.x128 + 0.0001*m.x77*m.x129 + 0.0001*m.x77*m.x130 + 0.0001*m.x77*m.x131 + 0.0001*m.x77*
m.x132 + 0.0001*m.x77*m.x133 + 0.0001*m.x77*m.x134 + 0.0001*m.x77*m.x135 + 0.0001*m.x77*m.x136 +
0.0001*m.x77*m.x137 + 0.0001*m.x77*m.x138 + 0.0001*m.x77*m.x139 + 0.0001*m.x77*m.x140 + 0.0001*
m.x77*m.x141 + 0.0001*m.x77*m.x142 + 0.0001*m.x77*m.x143 + 0.0001*m.x77*m.x144 + 0.0001*m.x77*
m.x145 + 0.0001*m.x77*m.x146 + 0.0001*m.x77*m.x147 + 1.29968892387316*m.x77*m.x148 + 0.0001*m.x77
*m.x149 + 0.0001*m.x77*m.x150 + 0.0001*m.x77*m.x151 + 0.0001*m.x77*m.x152 + 0.0001*m.x77*m.x153
+ 0.0001*m.x77*m.x154 + 0.0001*m.x77*m.x155 + 0.0001*m.x77*m.x156 + 0.0001*m.x77*m.x157 + 0.0001
*m.x77*m.x158 + 0.0001*m.x77*m.x159 + 0.0001*m.x77*m.x160 + 0.0001*m.x77*m.x161 + 0.0001*m.x77*
m.x162 + 0.847177128279277*m.x77*m.x163 + 0.0001*m.x77*m.x164 + 0.0001*m.x77*m.x165 + 0.0001*
m.x77*m.x166 + 0.0001*m.x77*m.x167 + 0.0001*m.x77*m.x168 + 0.0001*m.x77*m.x169 + 0.0001*m.x77*
m.x170 + 0.0001*m.x77*m.x171 + 0.0001*m.x77*m.x172 + 0.0001*m.x77*m.x173 + 0.0001*m.x77*m.x174 +
0.0001*m.x77*m.x175 + 0.0001*m.x77*m.x176 + 0.0001*m.x77*m.x177 + 0.0001*m.x77*m.x178 + 0.0001*
m.x77*m.x179 + 0.0001*m.x77*m.x180 + 0.0001*m.x77*m.x181 + 0.0001*m.x77*m.x182 + 0.0001*m.x77*
m.x183 + 0.0001*m.x77*m.x184 + 0.0001*m.x77*m.x185 + 0.0001*m.x78*m.x1 + 0.0001*m.x78*m.x2 +
0.0001*m.x78*m.x3 + 0.0001*m.x78*m.x4 + 0.0001*m.x78*m.x5 + 0.0001*m.x78*m.x6 + 0.0001*m.x78*m.x7
+ 0.0001*m.x78*m.x8 + 0.0001*m.x78*m.x9 + 0.0001*m.x78*m.x10 + 0.0001*m.x78*m.x11 + 0.0001*m.x78
*m.x12 + 0.0001*m.x78*m.x13 + 0.0001*m.x78*m.x14 + 0.0001*m.x78*m.x15 + 0.0001*m.x78*m.x16 +
0.0001*m.x78*m.x17 + 0.0001*m.x78*m.x18 + 0.0001*m.x78*m.x19 + 0.0001*m.x78*m.x20 + 0.0001*m.x78*
m.x21 + 0.0001*m.x78*m.x22 + 0.0001*m.x78*m.x23 + 0.0001*m.x78*m.x24 + 0.0001*m.x78*m.x25 +
0.0001*m.x78*m.x26 + 0.0001*m.x78*m.x27 + 0.0001*m.x78*m.x28 + 0.0001*m.x78*m.x29 + 0.0001*m.x78*
m.x30 + 0.0001*m.x78*m.x31 + 0.0001*m.x78*m.x32 + 0.0001*m.x78*m.x33 + 0.0001*m.x78*m.x34 +
0.0001*m.x78*m.x35 + 0.0001*m.x78*m.x36 + 0.0001*m.x78*m.x37 + 0.0001*m.x78*m.x38 + 0.0001*m.x78*
m.x39 + 0.0001*m.x78*m.x40 + 0.0001*m.x78*m.x41 + 0.0001*m.x78*m.x42 + 0.0001*m.x78*m.x43 +
0.0001*m.x78*m.x44 + 0.0001*m.x78*m.x45 + 0.0001*m.x78*m.x46 + 0.0001*m.x78*m.x47 + 0.0001*m.x78*
m.x48 + 0.0001*m.x78*m.x49 + 0.0001*m.x78*m.x50 + 0.0001*m.x78*m.x51 + 0.0001*m.x78*m.x52 +
0.0001*m.x78*m.x53 + 0.0001*m.x78*m.x54 + 0.0001*m.x78*m.x55 + 0.0001*m.x78*m.x56 + 0.0001*m.x78*
m.x57 + 0.0001*m.x78*m.x58 + 0.0001*m.x78*m.x59 + 0.0001*m.x78*m.x60 + 0.0001*m.x78*m.x61 +
0.0001*m.x78*m.x62 + 0.0001*m.x78*m.x63 + 0.0001*m.x78*m.x64 + 0.0001*m.x78*m.x65 +
5.14013600399385*m.x78*m.x66 + 0.0001*m.x78*m.x67 + 0.0001*m.x78*m.x68 + 0.0001*m.x78*m.x69 +
0.0001*m.x78*m.x70 + 0.0001*m.x78*m.x71 + 0.0001*m.x78*m.x72 + 0.0001*m.x78*m.x73 + 0.0001*m.x78*
m.x74 + 0.0001*m.x78*m.x75 + 0.0001*m.x78*m.x76 + 0.0001*m.x78*m.x77 + 2.4135706094532*m.x78**2
+ 0.0001*m.x78*m.x79 + 0.0001*m.x78*m.x80 + 0.0001*m.x78*m.x81 + 0.0001*m.x78*m.x82 + 0.0001*
m.x78*m.x83 + 0.0001*m.x78*m.x84 + 0.0001*m.x78*m.x85 + 0.0001*m.x78*m.x86 + 0.0001*m.x78*m.x87
+ 0.0001*m.x78*m.x88 + 0.0001*m.x78*m.x89 + 0.0001*m.x78*m.x90 + 0.0001*m.x78*m.x91 + 0.0001*
m.x78*m.x92 + 0.0001*m.x78*m.x93 + 0.0001*m.x78*m.x94 + 0.0001*m.x78*m.x95 + 0.0001*m.x78*m.x96
+ 0.0001*m.x78*m.x97 + 0.0001*m.x78*m.x98 + 0.0001*m.x78*m.x99 + 0.0001*m.x78*m.x100 + 0.0001*
m.x78*m.x101 + 0.0001*m.x78*m.x102 + 0.0001*m.x78*m.x103 + 0.0001*m.x78*m.x104 + 0.0001*m.x78*
m.x105 + 0.0001*m.x78*m.x106 + 0.0001*m.x78*m.x107 + 0.0001*m.x78*m.x108 + 0.0001*m.x78*m.x109 +
0.0001*m.x78*m.x110 + 0.0001*m.x78*m.x111 + 0.0001*m.x78*m.x112 + 0.0001*m.x78*m.x113 + 0.0001*
m.x78*m.x114 + 0.0001*m.x78*m.x115 + 0.0001*m.x78*m.x116 + 0.0001*m.x78*m.x117 + 0.0001*m.x78*
m.x118 + 0.0001*m.x78*m.x119 + 0.0001*m.x78*m.x120 + 0.0001*m.x78*m.x121 + 0.0001*m.x78*m.x122 +
0.826148273240953*m.x78*m.x123 + 0.0001*m.x78*m.x124 + 0.0001*m.x78*m.x125 + 0.0001*m.x78*m.x126
+ 0.0001*m.x78*m.x127 + 0.0001*m.x78*m.x128 + 0.0001*m.x78*m.x129 + 0.0001*m.x78*m.x130 + 0.0001
*m.x78*m.x131 + 0.0001*m.x78*m.x132 + 0.0001*m.x78*m.x133 + 0.0001*m.x78*m.x134 + 0.0001*m.x78*
m.x135 + 0.0001*m.x78*m.x136 + 0.0001*m.x78*m.x137 + 0.0001*m.x78*m.x138 + 0.0001*m.x78*m.x139 +
0.0001*m.x78*m.x140 + 0.0001*m.x78*m.x141 + 0.0001*m.x78*m.x142 + 0.0001*m.x78*m.x143 + 0.0001*
m.x78*m.x144 + 0.0001*m.x78*m.x145 + 0.0001*m.x78*m.x146 + 0.0001*m.x78*m.x147 + 0.0001*m.x78*
m.x148 + 1.21137656774799*m.x78*m.x149 + 0.0001*m.x78*m.x150 + 0.0001*m.x78*m.x151 + 0.0001*m.x78
*m.x152 + 0.0001*m.x78*m.x153 + 0.0001*m.x78*m.x154 + 0.0001*m.x78*m.x155 + 0.0001*m.x78*m.x156
+ 0.0001*m.x78*m.x157 + 0.0001*m.x78*m.x158 + 0.0001*m.x78*m.x159 + 0.0001*m.x78*m.x160 + 0.0001
*m.x78*m.x161 + 0.0001*m.x78*m.x162 + 0.0001*m.x78*m.x163 + 0.823380777001311*m.x78*m.x164 +
0.0001*m.x78*m.x165 + 0.0001*m.x78*m.x166 + 0.0001*m.x78*m.x167 + 0.0001*m.x78*m.x168 + 0.0001*
m.x78*m.x169 + 0.0001*m.x78*m.x170 + 0.0001*m.x78*m.x171 + 0.0001*m.x78*m.x172 + 0.0001*m.x78*
m.x173 + 0.0001*m.x78*m.x174 + 0.0001*m.x78*m.x175 + 0.0001*m.x78*m.x176 + 0.0001*m.x78*m.x177 +
0.0001*m.x78*m.x178 + 0.0001*m.x78*m.x179 + 0.0001*m.x78*m.x180 + 0.0001*m.x78*m.x181 + 0.0001*
m.x78*m.x182 + 0.0001*m.x78*m.x183 + 0.0001*m.x78*m.x184 + 0.0001*m.x78*m.x185 + 0.0001*m.x79*
m.x1 + 0.0001*m.x79*m.x2 + 0.0001*m.x79*m.x3 + 0.0001*m.x79*m.x4 + 0.0001*m.x79*m.x5 + 0.0001*
m.x79*m.x6 + 0.0001*m.x79*m.x7 + 0.0001*m.x79*m.x8 + 0.0001*m.x79*m.x9 + 0.0001*m.x79*m.x10 +
0.0001*m.x79*m.x11 + 0.0001*m.x79*m.x12 + 0.0001*m.x79*m.x13 + 0.0001*m.x79*m.x14 + 0.0001*m.x79*
m.x15 + 0.0001*m.x79*m.x16 + 0.0001*m.x79*m.x17 + 0.0001*m.x79*m.x18 + 0.0001*m.x79*m.x19 +
0.0001*m.x79*m.x20 + 0.0001*m.x79*m.x21 + 0.0001*m.x79*m.x22 + 0.0001*m.x79*m.x23 + 0.0001*m.x79*
m.x24 + 0.0001*m.x79*m.x25 + 0.0001*m.x79*m.x26 + 0.0001*m.x79*m.x27 + 0.0001*m.x79*m.x28 +
0.0001*m.x79*m.x29 + 0.0001*m.x79*m.x30 + 0.0001*m.x79*m.x31 + 0.0001*m.x79*m.x32 + 0.0001*m.x79*
m.x33 + 0.0001*m.x79*m.x34 + 0.0001*m.x79*m.x35 + 0.0001*m.x79*m.x36 + 0.0001*m.x79*m.x37 +
0.0001*m.x79*m.x38 + 0.0001*m.x79*m.x39 + 0.0001*m.x79*m.x40 + 0.0001*m.x79*m.x41 + 0.0001*m.x79*
m.x42 + 0.0001*m.x79*m.x43 + 0.0001*m.x79*m.x44 + 0.0001*m.x79*m.x45 + 0.0001*m.x79*m.x46 +
0.0001*m.x79*m.x47 + 0.0001*m.x79*m.x48 + 0.0001*m.x79*m.x49 + 0.0001*m.x79*m.x50 + 0.0001*m.x79*
m.x51 + 0.0001*m.x79*m.x52 + 0.0001*m.x79*m.x53 + 0.0001*m.x79*m.x54 + 0.0001*m.x79*m.x55 +
0.0001*m.x79*m.x56 + 0.0001*m.x79*m.x57 + 0.0001*m.x79*m.x58 + 0.0001*m.x79*m.x59 + 0.0001*m.x79*
m.x60 + 0.0001*m.x79*m.x61 + 0.0001*m.x79*m.x62 + 0.0001*m.x79*m.x63 + 0.0001*m.x79*m.x64 +
0.0001*m.x79*m.x65 + 0.0001*m.x79*m.x66 + 4.81894784211333*m.x79*m.x67 + 0.0001*m.x79*m.x68 +
0.0001*m.x79*m.x69 + 0.0001*m.x79*m.x70 + 0.0001*m.x79*m.x71 + 0.0001*m.x79*m.x72 + 0.0001*m.x79*
m.x73 + 0.0001*m.x79*m.x74 + 0.0001*m.x79*m.x75 + 0.0001*m.x79*m.x76 + 0.0001*m.x79*m.x77 +
0.0001*m.x79*m.x78 + 2.47242472493921*m.x79**2 + 0.0001*m.x79*m.x80 + 0.0001*m.x79*m.x81 + 0.0001
*m.x79*m.x82 + 0.0001*m.x79*m.x83 + 0.0001*m.x79*m.x84 + 0.0001*m.x79*m.x85 + 0.0001*m.x79*m.x86
+ 0.0001*m.x79*m.x87 + 0.0001*m.x79*m.x88 + 0.0001*m.x79*m.x89 + 0.0001*m.x79*m.x90 + 0.0001*
m.x79*m.x91 + 0.0001*m.x79*m.x92 + 0.0001*m.x79*m.x93 + 0.0001*m.x79*m.x94 + 0.0001*m.x79*m.x95
+ 0.0001*m.x79*m.x96 + 0.0001*m.x79*m.x97 + 0.0001*m.x79*m.x98 + 0.0001*m.x79*m.x99 + 0.0001*
m.x79*m.x100 + 0.0001*m.x79*m.x101 + 0.0001*m.x79*m.x102 + 0.0001*m.x79*m.x103 + 0.0001*m.x79*
m.x104 + 0.0001*m.x79*m.x105 + 0.0001*m.x79*m.x106 + 0.0001*m.x79*m.x107 + 0.0001*m.x79*m.x108 +
0.0001*m.x79*m.x109 + 0.0001*m.x79*m.x110 + 0.0001*m.x79*m.x111 + 0.0001*m.x79*m.x112 + 0.0001*
m.x79*m.x113 + 0.0001*m.x79*m.x114 + 0.0001*m.x79*m.x115 + 0.0001*m.x79*m.x116 + 0.0001*m.x79*
m.x117 + 0.0001*m.x79*m.x118 + 0.0001*m.x79*m.x119 + 0.0001*m.x79*m.x120 + 0.0001*m.x79*m.x121 +
0.0001*m.x79*m.x122 + 0.0001*m.x79*m.x123 + 0.789212707970006*m.x79*m.x124 + 0.0001*m.x79*m.x125
+ 0.0001*m.x79*m.x126 + 0.0001*m.x79*m.x127 + 0.0001*m.x79*m.x128 + 0.0001*m.x79*m.x129 + 0.0001
*m.x79*m.x130 + 0.0001*m.x79*m.x131 + 0.0001*m.x79*m.x132 + 0.0001*m.x79*m.x133 + 0.0001*m.x79*
m.x134 + 0.0001*m.x79*m.x135 + 0.0001*m.x79*m.x136 + 0.0001*m.x79*m.x137 + 0.0001*m.x79*m.x138 +
0.0001*m.x79*m.x139 + 0.0001*m.x79*m.x140 + 0.0001*m.x79*m.x141 + 0.0001*m.x79*m.x142 + 0.0001*
m.x79*m.x143 + 0.0001*m.x79*m.x144 + 0.0001*m.x79*m.x145 + 0.0001*m.x79*m.x146 + 0.0001*m.x79*
m.x147 + 0.0001*m.x79*m.x148 + 0.0001*m.x79*m.x149 + 1.15256777331454*m.x79*m.x150 + 0.0001*m.x79
*m.x151 + 0.0001*m.x79*m.x152 + 0.0001*m.x79*m.x153 + 0.0001*m.x79*m.x154 + 0.0001*m.x79*m.x155
+ 0.0001*m.x79*m.x156 + 0.0001*m.x79*m.x157 + 0.0001*m.x79*m.x158 + 0.0001*m.x79*m.x159 + 0.0001
*m.x79*m.x160 + 0.0001*m.x79*m.x161 + 0.0001*m.x79*m.x162 + 0.0001*m.x79*m.x163 + 0.0001*m.x79*
m.x164 + 0.786568956360439*m.x79*m.x165 + 0.0001*m.x79*m.x166 + 0.0001*m.x79*m.x167 + 0.0001*
m.x79*m.x168 + 0.0001*m.x79*m.x169 + 0.0001*m.x79*m.x170 + 0.0001*m.x79*m.x171 + 0.0001*m.x79*
m.x172 + 0.0001*m.x79*m.x173 + 0.0001*m.x79*m.x174 + 0.0001*m.x79*m.x175 + 0.0001*m.x79*m.x176 +
0.0001*m.x79*m.x177 + 0.0001*m.x79*m.x178 + 0.0001*m.x79*m.x179 + 0.0001*m.x79*m.x180 + 0.0001*
m.x79*m.x181 + 0.0001*m.x79*m.x182 + 0.0001*m.x79*m.x183 + 0.0001*m.x79*m.x184 + 0.0001*m.x79*
m.x185 + 0.0001*m.x80*m.x1 + 0.0001*m.x80*m.x2 + 0.0001*m.x80*m.x3 + 0.0001*m.x80*m.x4 + 0.0001*
m.x80*m.x5 + 0.0001*m.x80*m.x6 + 0.0001*m.x80*m.x7 + 0.0001*m.x80*m.x8 + 0.0001*m.x80*m.x9 +
0.0001*m.x80*m.x10 + 0.0001*m.x80*m.x11 + 0.0001*m.x80*m.x12 + 0.0001*m.x80*m.x13 + 0.0001*m.x80*
m.x14 + 0.0001*m.x80*m.x15 + 0.0001*m.x80*m.x16 + 0.0001*m.x80*m.x17 + 0.0001*m.x80*m.x18 +
0.0001*m.x80*m.x19 + 0.0001*m.x80*m.x20 + 0.0001*m.x80*m.x21 + 0.0001*m.x80*m.x22 + 0.0001*m.x80*
m.x23 + 0.0001*m.x80*m.x24 + 0.0001*m.x80*m.x25 + 0.0001*m.x80*m.x26 + 0.0001*m.x80*m.x27 +
0.0001*m.x80*m.x28 + 0.0001*m.x80*m.x29 + 0.0001*m.x80*m.x30 + 0.0001*m.x80*m.x31 + 0.0001*m.x80*
m.x32 + 0.0001*m.x80*m.x33 + 0.0001*m.x80*m.x34 + 0.0001*m.x80*m.x35 + 0.0001*m.x80*m.x36 +
0.0001*m.x80*m.x37 + 0.0001*m.x80*m.x38 + 0.0001*m.x80*m.x39 + 0.0001*m.x80*m.x40 + 0.0001*m.x80*
m.x41 + 0.0001*m.x80*m.x42 + 0.0001*m.x80*m.x43 + 0.0001*m.x80*m.x44 + 0.0001*m.x80*m.x45 +
0.0001*m.x80*m.x46 + 0.0001*m.x80*m.x47 + 0.0001*m.x80*m.x48 + 0.0001*m.x80*m.x49 + 0.0001*m.x80*
m.x50 + 0.0001*m.x80*m.x51 + 0.0001*m.x80*m.x52 + 0.0001*m.x80*m.x53 + 0.0001*m.x80*m.x54 +
0.0001*m.x80*m.x55 + 0.0001*m.x80*m.x56 + 0.0001*m.x80*m.x57 + 0.0001*m.x80*m.x58 + 0.0001*m.x80*
m.x59 + 0.0001*m.x80*m.x60 + 0.0001*m.x80*m.x61 + 0.0001*m.x80*m.x62 + 0.0001*m.x80*m.x63 +
0.0001*m.x80*m.x64 + 0.0001*m.x80*m.x65 + 0.0001*m.x80*m.x66 + 0.0001*m.x80*m.x67 +
4.81894784211333*m.x80*m.x68 + 0.0001*m.x80*m.x69 + 0.0001*m.x80*m.x70 + 0.0001*m.x80*m.x71 +
0.0001*m.x80*m.x72 + 0.0001*m.x80*m.x73 + 0.0001*m.x80*m.x74 + 0.0001*m.x80*m.x75 + 0.0001*m.x80*
m.x76 + 0.0001*m.x80*m.x77 + 0.0001*m.x80*m.x78 + 0.0001*m.x80*m.x79 + 2.46392042492506*m.x80**2
+ 0.0001*m.x80*m.x81 + 0.0001*m.x80*m.x82 + 0.0001*m.x80*m.x83 + 0.0001*m.x80*m.x84 + 0.0001*
m.x80*m.x85 + 0.0001*m.x80*m.x86 + 0.0001*m.x80*m.x87 + 0.0001*m.x80*m.x88 + 0.0001*m.x80*m.x89
+ 0.0001*m.x80*m.x90 + 0.0001*m.x80*m.x91 + 0.0001*m.x80*m.x92 + 0.0001*m.x80*m.x93 + 0.0001*
m.x80*m.x94 + 0.0001*m.x80*m.x95 + 0.0001*m.x80*m.x96 + 0.0001*m.x80*m.x97 + 0.0001*m.x80*m.x98
+ 0.0001*m.x80*m.x99 + 0.0001*m.x80*m.x100 + 0.0001*m.x80*m.x101 + 0.0001*m.x80*m.x102 + 0.0001*
m.x80*m.x103 + 0.0001*m.x80*m.x104 + 0.0001*m.x80*m.x105 + 0.0001*m.x80*m.x106 + 0.0001*m.x80*
m.x107 + 0.0001*m.x80*m.x108 + 0.0001*m.x80*m.x109 + 0.0001*m.x80*m.x110 + 0.0001*m.x80*m.x111 +
0.0001*m.x80*m.x112 + 0.0001*m.x80*m.x113 + 0.0001*m.x80*m.x114 + 0.0001*m.x80*m.x115 + 0.0001*
m.x80*m.x116 + 0.0001*m.x80*m.x117 + 0.0001*m.x80*m.x118 + 0.0001*m.x80*m.x119 + 0.0001*m.x80*
m.x120 + 0.0001*m.x80*m.x121 + 0.0001*m.x80*m.x122 + 0.0001*m.x80*m.x123 + 0.0001*m.x80*m.x124 +
0.883116692568304*m.x80*m.x125 + 0.0001*m.x80*m.x126 + 0.0001*m.x80*m.x127 + 0.0001*m.x80*m.x128
+ 0.0001*m.x80*m.x129 + 0.0001*m.x80*m.x130 + 0.0001*m.x80*m.x131 + 0.0001*m.x80*m.x132 + 0.0001
*m.x80*m.x133 + 0.0001*m.x80*m.x134 + 0.0001*m.x80*m.x135 + 0.0001*m.x80*m.x136 + 0.0001*m.x80*
m.x137 + 0.0001*m.x80*m.x138 + 0.0001*m.x80*m.x139 + 0.0001*m.x80*m.x140 + 0.0001*m.x80*m.x141 +
0.0001*m.x80*m.x142 + 0.0001*m.x80*m.x143 + 0.0001*m.x80*m.x144 + 0.0001*m.x80*m.x145 + 0.0001*
m.x80*m.x146 + 0.0001*m.x80*m.x147 + 0.0001*m.x80*m.x148 + 0.0001*m.x80*m.x149 + 0.0001*m.x80*
m.x150 + 1.20913493689189*m.x80*m.x151 + 0.0001*m.x80*m.x152 + 0.0001*m.x80*m.x153 + 0.0001*m.x80
*m.x154 + 0.0001*m.x80*m.x155 + 0.0001*m.x80*m.x156 + 0.0001*m.x80*m.x157 + 0.0001*m.x80*m.x158
+ 0.0001*m.x80*m.x159 + 0.0001*m.x80*m.x160 + 0.0001*m.x80*m.x161 + 0.0001*m.x80*m.x162 + 0.0001
*m.x80*m.x163 + 0.0001*m.x80*m.x164 + 0.0001*m.x80*m.x165 + 0.746872060090427*m.x80*m.x166 +
0.0001*m.x80*m.x167 + 0.0001*m.x80*m.x168 + 0.0001*m.x80*m.x169 + 0.0001*m.x80*m.x170 + 0.0001*
m.x80*m.x171 + 0.0001*m.x80*m.x172 + 0.0001*m.x80*m.x173 + 0.0001*m.x80*m.x174 + 0.0001*m.x80*
m.x175 + 0.0001*m.x80*m.x176 + 0.0001*m.x80*m.x177 + 0.0001*m.x80*m.x178 + 0.0001*m.x80*m.x179 +
0.0001*m.x80*m.x180 + 0.0001*m.x80*m.x181 + 0.0001*m.x80*m.x182 + 0.0001*m.x80*m.x183 + 0.0001*
m.x80*m.x184 + 0.0001*m.x80*m.x185 + 0.0001*m.x81*m.x1 + 0.0001*m.x81*m.x2 + 0.0001*m.x81*m.x3 +
0.0001*m.x81*m.x4 + 0.0001*m.x81*m.x5 + 0.0001*m.x81*m.x6 + 0.0001*m.x81*m.x7 + 0.0001*m.x81*m.x8
+ 0.0001*m.x81*m.x9 + 0.0001*m.x81*m.x10 + 0.0001*m.x81*m.x11 + 0.0001*m.x81*m.x12 + 0.0001*
m.x81*m.x13 + 0.0001*m.x81*m.x14 + 0.0001*m.x81*m.x15 + 0.0001*m.x81*m.x16 + 0.0001*m.x81*m.x17
+ 0.0001*m.x81*m.x18 + 0.0001*m.x81*m.x19 + 0.0001*m.x81*m.x20 + 0.0001*m.x81*m.x21 + 0.0001*
m.x81*m.x22 + 0.0001*m.x81*m.x23 + 0.0001*m.x81*m.x24 + 0.0001*m.x81*m.x25 + 0.0001*m.x81*m.x26
+ 0.0001*m.x81*m.x27 + 0.0001*m.x81*m.x28 + 0.0001*m.x81*m.x29 + 0.0001*m.x81*m.x30 + 0.0001*
m.x81*m.x31 + 0.0001*m.x81*m.x32 + 0.0001*m.x81*m.x33 + 0.0001*m.x81*m.x34 + 0.0001*m.x81*m.x35
+ 0.0001*m.x81*m.x36 + 0.0001*m.x81*m.x37 + 0.0001*m.x81*m.x38 + 0.0001*m.x81*m.x39 + 0.0001*
m.x81*m.x40 + 0.0001*m.x81*m.x41 + 0.0001*m.x81*m.x42 + 0.0001*m.x81*m.x43 + 0.0001*m.x81*m.x44
+ 0.0001*m.x81*m.x45 + 0.0001*m.x81*m.x46 + 0.0001*m.x81*m.x47 + 0.0001*m.x81*m.x48 + 0.0001*
m.x81*m.x49 + 0.0001*m.x81*m.x50 + 0.0001*m.x81*m.x51 + 0.0001*m.x81*m.x52 + 0.0001*m.x81*m.x53
+ 0.0001*m.x81*m.x54 + 0.0001*m.x81*m.x55 + 0.0001*m.x81*m.x56 + 0.0001*m.x81*m.x57 + 0.0001*
m.x81*m.x58 + 0.0001*m.x81*m.x59 + 0.0001*m.x81*m.x60 + 0.0001*m.x81*m.x61 + 0.0001*m.x81*m.x62
+ 0.0001*m.x81*m.x63 + 0.0001*m.x81*m.x64 + 0.0001*m.x81*m.x65 + 0.0001*m.x81*m.x66 + 0.0001*
m.x81*m.x67 + 0.0001*m.x81*m.x68 + 3.68435207385428*m.x81*m.x69 + 0.0001*m.x81*m.x70 + 0.0001*
m.x81*m.x71 + 0.0001*m.x81*m.x72 + 0.0001*m.x81*m.x73 + 0.0001*m.x81*m.x74 + 0.0001*m.x81*m.x75
+ 0.0001*m.x81*m.x76 + 0.0001*m.x81*m.x77 + 0.0001*m.x81*m.x78 + 0.0001*m.x81*m.x79 + 0.0001*
m.x81*m.x80 + 1.99231148700583*m.x81**2 + 0.0001*m.x81*m.x82 + 0.0001*m.x81*m.x83 + 0.0001*m.x81*
m.x84 + 0.0001*m.x81*m.x85 + 0.0001*m.x81*m.x86 + 0.0001*m.x81*m.x87 + 0.0001*m.x81*m.x88 +
0.0001*m.x81*m.x89 + 0.0001*m.x81*m.x90 + 0.0001*m.x81*m.x91 + 0.0001*m.x81*m.x92 + 0.0001*m.x81*
m.x93 + 0.0001*m.x81*m.x94 + 0.0001*m.x81*m.x95 + 0.0001*m.x81*m.x96 + 0.0001*m.x81*m.x97 +
0.0001*m.x81*m.x98 + 0.0001*m.x81*m.x99 + 0.0001*m.x81*m.x100 + 0.0001*m.x81*m.x101 + 0.0001*
m.x81*m.x102 + 0.0001*m.x81*m.x103 + 0.0001*m.x81*m.x104 + 0.0001*m.x81*m.x105 + 0.0001*m.x81*
m.x106 + 0.0001*m.x81*m.x107 + 0.0001*m.x81*m.x108 + 0.0001*m.x81*m.x109 + 0.0001*m.x81*m.x110 +
0.0001*m.x81*m.x111 + 0.0001*m.x81*m.x112 + 0.0001*m.x81*m.x113 + 0.0001*m.x81*m.x114 + 0.0001*
m.x81*m.x115 + 0.0001*m.x81*m.x116 + 0.0001*m.x81*m.x117 + 0.0001*m.x81*m.x118 + 0.0001*m.x81*
m.x119 + 0.0001*m.x81*m.x120 + 0.0001*m.x81*m.x121 + 0.0001*m.x81*m.x122 + 0.0001*m.x81*m.x123 +
0.0001*m.x81*m.x124 + 0.0001*m.x81*m.x125 + 0.920691215358521*m.x81*m.x126 + 0.0001*m.x81*m.x127
+ 0.0001*m.x81*m.x128 + 0.0001*m.x81*m.x129 + 0.0001*m.x81*m.x130 + 0.0001*m.x81*m.x131 + 0.0001
*m.x81*m.x132 + 0.0001*m.x81*m.x133 + 0.0001*m.x81*m.x134 + 0.0001*m.x81*m.x135 + 0.0001*m.x81*
m.x136 + 0.0001*m.x81*m.x137 + 0.0001*m.x81*m.x138 + 0.0001*m.x81*m.x139 + 0.0001*m.x81*m.x140 +
0.0001*m.x81*m.x141 + 0.0001*m.x81*m.x142 + 0.0001*m.x81*m.x143 + 0.0001*m.x81*m.x144 + 0.0001*
m.x81*m.x145 + 0.0001*m.x81*m.x146 + 0.0001*m.x81*m.x147 + 0.0001*m.x81*m.x148 + 0.0001*m.x81*
m.x149 + 0.0001*m.x81*m.x150 + 0.0001*m.x81*m.x151 + 1.25084164368406*m.x81*m.x152 + 0.0001*m.x81
*m.x153 + 0.0001*m.x81*m.x154 + 0.0001*m.x81*m.x155 + 0.0001*m.x81*m.x156 + 0.0001*m.x81*m.x157
+ 0.0001*m.x81*m.x158 + 0.0001*m.x81*m.x159 + 0.0001*m.x81*m.x160 + 0.0001*m.x81*m.x161 + 0.0001
*m.x81*m.x162 + 0.0001*m.x81*m.x163 + 0.0001*m.x81*m.x164 + 0.0001*m.x81*m.x165 + 0.0001*m.x81*
m.x166 + 0.790163389415287*m.x81*m.x167 + 0.0001*m.x81*m.x168 + 0.0001*m.x81*m.x169 + 0.0001*
m.x81*m.x170 + 0.0001*m.x81*m.x171 + 0.0001*m.x81*m.x172 + 0.0001*m.x81*m.x173 + 0.0001*m.x81*
m.x174 + 0.0001*m.x81*m.x175 + 0.0001*m.x81*m.x176 + 0.0001*m.x81*m.x177 + 0.0001*m.x81*m.x178 +
0.0001*m.x81*m.x179 + 0.0001*m.x81*m.x180 + 0.0001*m.x81*m.x181 + 0.0001*m.x81*m.x182 + 0.0001*
m.x81*m.x183 + 0.0001*m.x81*m.x184 + 0.0001*m.x81*m.x185 + 0.0001*m.x82*m.x1 + 0.0001*m.x82*m.x2
+ 0.0001*m.x82*m.x3 + 0.0001*m.x82*m.x4 + 0.0001*m.x82*m.x5 + 0.0001*m.x82*m.x6 + 0.0001*m.x82*
m.x7 + 0.0001*m.x82*m.x8 + 0.0001*m.x82*m.x9 + 0.0001*m.x82*m.x10 + 0.0001*m.x82*m.x11 + 0.0001*
m.x82*m.x12 + 0.0001*m.x82*m.x13 + 0.0001*m.x82*m.x14 + 0.0001*m.x82*m.x15 + 0.0001*m.x82*m.x16
+ 0.0001*m.x82*m.x17 + 0.0001*m.x82*m.x18 + 0.0001*m.x82*m.x19 + 0.0001*m.x82*m.x20 + 0.0001*
m.x82*m.x21 + 0.0001*m.x82*m.x22 + 0.0001*m.x82*m.x23 + 0.0001*m.x82*m.x24 + 0.0001*m.x82*m.x25
+ 0.0001*m.x82*m.x26 + 0.0001*m.x82*m.x27 + 0.0001*m.x82*m.x28 + 0.0001*m.x82*m.x29 + 0.0001*
m.x82*m.x30 + 0.0001*m.x82*m.x31 + 0.0001*m.x82*m.x32 + 0.0001*m.x82*m.x33 + 0.0001*m.x82*m.x34
+ 0.0001*m.x82*m.x35 + 0.0001*m.x82*m.x36 + 0.0001*m.x82*m.x37 + 0.0001*m.x82*m.x38 + 0.0001*
m.x82*m.x39 + 0.0001*m.x82*m.x40 + 0.0001*m.x82*m.x41 + 0.0001*m.x82*m.x42 + 0.0001*m.x82*m.x43
+ 0.0001*m.x82*m.x44 + 0.0001*m.x82*m.x45 + 0.0001*m.x82*m.x46 + 0.0001*m.x82*m.x47 + 0.0001*
m.x82*m.x48 + 0.0001*m.x82*m.x49 + 0.0001*m.x82*m.x50 + 0.0001*m.x82*m.x51 + 0.0001*m.x82*m.x52
+ 0.0001*m.x82*m.x53 + 0.0001*m.x82*m.x54 + 0.0001*m.x82*m.x55 + 0.0001*m.x82*m.x56 + 0.0001*
m.x82*m.x57 + 0.0001*m.x82*m.x58 + 0.0001*m.x82*m.x59 + 0.0001*m.x82*m.x60 + 0.0001*m.x82*m.x61
+ 0.0001*m.x82*m.x62 + 0.0001*m.x82*m.x63 + 0.0001*m.x82*m.x64 + 0.0001*m.x82*m.x65 + 0.0001*
m.x82*m.x66 + 0.0001*m.x82*m.x67 + 0.0001*m.x82*m.x68 + 0.0001*m.x82*m.x69 + 3.83702324608675*
m.x82*m.x70 + 0.0001*m.x82*m.x71 + 0.0001*m.x82*m.x72 + 0.0001*m.x82*m.x73 + 0.0001*m.x82*m.x74
+ 0.0001*m.x82*m.x75 + 0.0001*m.x82*m.x76 + 0.0001*m.x82*m.x77 + 0.0001*m.x82*m.x78 + 0.0001*
m.x82*m.x79 + 0.0001*m.x82*m.x80 + 0.0001*m.x82*m.x81 + 1.90495941554065*m.x82**2 + 0.0001*m.x82*
m.x83 + 0.0001*m.x82*m.x84 + 0.0001*m.x82*m.x85 + 0.0001*m.x82*m.x86 + 0.0001*m.x82*m.x87 +
0.0001*m.x82*m.x88 + 0.0001*m.x82*m.x89 + 0.0001*m.x82*m.x90 + 0.0001*m.x82*m.x91 + 0.0001*m.x82*
m.x92 + 0.0001*m.x82*m.x93 + 0.0001*m.x82*m.x94 + 0.0001*m.x82*m.x95 + 0.0001*m.x82*m.x96 +
0.0001*m.x82*m.x97 + 0.0001*m.x82*m.x98 + 0.0001*m.x82*m.x99 + 0.0001*m.x82*m.x100 + 0.0001*m.x82
*m.x101 + 0.0001*m.x82*m.x102 + 0.0001*m.x82*m.x103 + 0.0001*m.x82*m.x104 + 0.0001*m.x82*m.x105
+ 0.0001*m.x82*m.x106 + 0.0001*m.x82*m.x107 + 0.0001*m.x82*m.x108 + 0.0001*m.x82*m.x109 + 0.0001
*m.x82*m.x110 + 0.0001*m.x82*m.x111 + 0.0001*m.x82*m.x112 + 0.0001*m.x82*m.x113 + 0.0001*m.x82*
m.x114 + 0.0001*m.x82*m.x115 + 0.0001*m.x82*m.x116 + 0.0001*m.x82*m.x117 + 0.0001*m.x82*m.x118 +
0.0001*m.x82*m.x119 + 0.0001*m.x82*m.x120 + 0.0001*m.x82*m.x121 + 0.0001*m.x82*m.x122 + 0.0001*
m.x82*m.x123 + 0.0001*m.x82*m.x124 + 0.0001*m.x82*m.x125 + 0.0001*m.x82*m.x126 +
0.855482006991271*m.x82*m.x127 + 0.0001*m.x82*m.x128 + 0.0001*m.x82*m.x129 + 0.0001*m.x82*m.x130
+ 0.0001*m.x82*m.x131 + 0.0001*m.x82*m.x132 + 0.0001*m.x82*m.x133 + 0.0001*m.x82*m.x134 + 0.0001
*m.x82*m.x135 + 0.0001*m.x82*m.x136 + 0.0001*m.x82*m.x137 + 0.0001*m.x82*m.x138 + 0.0001*m.x82*
m.x139 + 0.0001*m.x82*m.x140 + 0.0001*m.x82*m.x141 + 0.0001*m.x82*m.x142 + 0.0001*m.x82*m.x143 +
0.0001*m.x82*m.x144 + 0.0001*m.x82*m.x145 + 0.0001*m.x82*m.x146 + 0.0001*m.x82*m.x147 + 0.0001*
m.x82*m.x148 + 0.0001*m.x82*m.x149 + 0.0001*m.x82*m.x150 + 0.0001*m.x82*m.x151 + 0.0001*m.x82*
m.x152 + 1.16455074109673*m.x82*m.x153 + 0.0001*m.x82*m.x154 + 0.0001*m.x82*m.x155 + 0.0001*m.x82
*m.x156 + 0.0001*m.x82*m.x157 + 0.0001*m.x82*m.x158 + 0.0001*m.x82*m.x159 + 0.0001*m.x82*m.x160
+ 0.0001*m.x82*m.x161 + 0.0001*m.x82*m.x162 + 0.0001*m.x82*m.x163 + 0.0001*m.x82*m.x164 + 0.0001
*m.x82*m.x165 + 0.0001*m.x82*m.x166 + 0.0001*m.x82*m.x167 + 0.734199996191235*m.x82*m.x168 +
0.0001*m.x82*m.x169 + 0.0001*m.x82*m.x170 + 0.0001*m.x82*m.x171 + 0.0001*m.x82*m.x172 + 0.0001*
m.x82*m.x173 + 0.0001*m.x82*m.x174 + 0.0001*m.x82*m.x175 + 0.0001*m.x82*m.x176 + 0.0001*m.x82*
m.x177 + 0.0001*m.x82*m.x178 + 0.0001*m.x82*m.x179 + 0.0001*m.x82*m.x180 + 0.0001*m.x82*m.x181 +
0.0001*m.x82*m.x182 + 0.0001*m.x82*m.x183 + 0.0001*m.x82*m.x184 + 0.0001*m.x82*m.x185 + 0.0001*
m.x83*m.x1 + 0.0001*m.x83*m.x2 + 0.0001*m.x83*m.x3 + 0.0001*m.x83*m.x4 + 0.0001*m.x83*m.x5 +
0.0001*m.x83*m.x6 + 0.0001*m.x83*m.x7 + 0.0001*m.x83*m.x8 + 0.0001*m.x83*m.x9 + 0.0001*m.x83*
m.x10 + 0.0001*m.x83*m.x11 + 0.0001*m.x83*m.x12 + 0.0001*m.x83*m.x13 + 0.0001*m.x83*m.x14 +
0.0001*m.x83*m.x15 + 0.0001*m.x83*m.x16 + 0.0001*m.x83*m.x17 + 0.0001*m.x83*m.x18 + 0.0001*m.x83*
m.x19 + 0.0001*m.x83*m.x20 + 0.0001*m.x83*m.x21 + 0.0001*m.x83*m.x22 + 0.0001*m.x83*m.x23 +
0.0001*m.x83*m.x24 + 0.0001*m.x83*m.x25 + 0.0001*m.x83*m.x26 + 0.0001*m.x83*m.x27 + 0.0001*m.x83*
m.x28 + 0.0001*m.x83*m.x29 + 0.0001*m.x83*m.x30 + 0.0001*m.x83*m.x31 + 0.0001*m.x83*m.x32 +
0.0001*m.x83*m.x33 + 0.0001*m.x83*m.x34 + 0.0001*m.x83*m.x35 + 0.0001*m.x83*m.x36 + 0.0001*m.x83*
m.x37 + 0.0001*m.x83*m.x38 + 0.0001*m.x83*m.x39 + 0.0001*m.x83*m.x40 + 0.0001*m.x83*m.x41 +
0.0001*m.x83*m.x42 + 0.0001*m.x83*m.x43 + 0.0001*m.x83*m.x44 + 0.0001*m.x83*m.x45 + 0.0001*m.x83*
m.x46 + 0.0001*m.x83*m.x47 + 0.0001*m.x83*m.x48 + 0.0001*m.x83*m.x49 + 0.0001*m.x83*m.x50 +
0.0001*m.x83*m.x51 + 0.0001*m.x83*m.x52 + 0.0001*m.x83*m.x53 + 0.0001*m.x83*m.x54 + 0.0001*m.x83*
m.x55 + 0.0001*m.x83*m.x56 + 0.0001*m.x83*m.x57 + 0.0001*m.x83*m.x58 + 0.0001*m.x83*m.x59 +
0.0001*m.x83*m.x60 + 0.0001*m.x83*m.x61 + 0.0001*m.x83*m.x62 + 0.0001*m.x83*m.x63 + 0.0001*m.x83*
m.x64 + 0.0001*m.x83*m.x65 + 0.0001*m.x83*m.x66 + 0.0001*m.x83*m.x67 + 0.0001*m.x83*m.x68 +
0.0001*m.x83*m.x69 + 0.0001*m.x83*m.x70 + 3.83702324608675*m.x83*m.x71 + 0.0001*m.x83*m.x72 +
0.0001*m.x83*m.x73 + 0.0001*m.x83*m.x74 + 0.0001*m.x83*m.x75 + 0.0001*m.x83*m.x76 + 0.0001*m.x83*
m.x77 + 0.0001*m.x83*m.x78 + 0.0001*m.x83*m.x79 + 0.0001*m.x83*m.x80 + 0.0001*m.x83*m.x81 +
0.0001*m.x83*m.x82 + 2.03184573609709*m.x83**2 + 0.0001*m.x83*m.x84 + 0.0001*m.x83*m.x85 + 0.0001
*m.x83*m.x86 + 0.0001*m.x83*m.x87 + 0.0001*m.x83*m.x88 + 0.0001*m.x83*m.x89 + 0.0001*m.x83*m.x90
+ 0.0001*m.x83*m.x91 + 0.0001*m.x83*m.x92 + 0.0001*m.x83*m.x93 + 0.0001*m.x83*m.x94 + 0.0001*
m.x83*m.x95 + 0.0001*m.x83*m.x96 + 0.0001*m.x83*m.x97 + 0.0001*m.x83*m.x98 + 0.0001*m.x83*m.x99
+ 0.0001*m.x83*m.x100 + 0.0001*m.x83*m.x101 + 0.0001*m.x83*m.x102 + 0.0001*m.x83*m.x103 + 0.0001
*m.x83*m.x104 + 0.0001*m.x83*m.x105 + 0.0001*m.x83*m.x106 + 0.0001*m.x83*m.x107 + 0.0001*m.x83*
m.x108 + 0.0001*m.x83*m.x109 + 0.0001*m.x83*m.x110 + 0.0001*m.x83*m.x111 + 0.0001*m.x83*m.x112 +
0.0001*m.x83*m.x113 + 0.0001*m.x83*m.x114 + 0.0001*m.x83*m.x115 + 0.0001*m.x83*m.x116 + 0.0001*
m.x83*m.x117 + 0.0001*m.x83*m.x118 + 0.0001*m.x83*m.x119 + 0.0001*m.x83*m.x120 + 0.0001*m.x83*
m.x121 + 0.0001*m.x83*m.x122 + 0.0001*m.x83*m.x123 + 0.0001*m.x83*m.x124 + 0.0001*m.x83*m.x125 +
0.0001*m.x83*m.x126 + 0.0001*m.x83*m.x127 + 1.35721306884672*m.x83*m.x128 + 0.0001*m.x83*m.x129
+ 0.0001*m.x83*m.x130 + 0.0001*m.x83*m.x131 + 0.0001*m.x83*m.x132 + 0.0001*m.x83*m.x133 + 0.0001
*m.x83*m.x134 + 0.0001*m.x83*m.x135 + 0.0001*m.x83*m.x136 + 0.0001*m.x83*m.x137 + 0.0001*m.x83*
m.x138 + 0.0001*m.x83*m.x139 + 0.0001*m.x83*m.x140 + 0.0001*m.x83*m.x141 + 0.0001*m.x83*m.x142 +
0.0001*m.x83*m.x143 + 0.0001*m.x83*m.x144 + 0.0001*m.x83*m.x145 + 0.0001*m.x83*m.x146 + 0.0001*
m.x83*m.x147 + 0.0001*m.x83*m.x148 + 0.0001*m.x83*m.x149 + 0.0001*m.x83*m.x150 + 0.0001*m.x83*
m.x151 + 0.0001*m.x83*m.x152 + 0.0001*m.x83*m.x153 + 1.24614469444164*m.x83*m.x154 +
1.24614469444164*m.x83*m.x155 + 0.0001*m.x83*m.x156 + 0.0001*m.x83*m.x157 + 0.0001*m.x83*m.x158
+ 0.0001*m.x83*m.x159 + 0.0001*m.x83*m.x160 + 0.0001*m.x83*m.x161 + 0.0001*m.x83*m.x162 + 0.0001
*m.x83*m.x163 + 0.0001*m.x83*m.x164 + 0.0001*m.x83*m.x165 + 0.0001*m.x83*m.x166 + 0.0001*m.x83*
m.x167 + 0.0001*m.x83*m.x168 + 1.35606110318633*m.x83*m.x169 + 0.0001*m.x83*m.x170 + 0.0001*m.x83
*m.x171 + 0.0001*m.x83*m.x172 + 0.0001*m.x83*m.x173 + 0.0001*m.x83*m.x174 + 0.0001*m.x83*m.x175
+ 0.0001*m.x83*m.x176 + 0.0001*m.x83*m.x177 + 0.0001*m.x83*m.x178 + 0.0001*m.x83*m.x179 + 0.0001
*m.x83*m.x180 + 0.0001*m.x83*m.x181 + 0.0001*m.x83*m.x182 + 0.0001*m.x83*m.x183 + 0.0001*m.x83*
m.x184 + 0.0001*m.x83*m.x185 + 0.0001*m.x84*m.x1 + 0.0001*m.x84*m.x2 + 0.0001*m.x84*m.x3 + 0.0001
*m.x84*m.x4 + 0.0001*m.x84*m.x5 + 0.0001*m.x84*m.x6 + 0.0001*m.x84*m.x7 + 0.0001*m.x84*m.x8 +
0.0001*m.x84*m.x9 + 0.0001*m.x84*m.x10 + 0.0001*m.x84*m.x11 + 0.0001*m.x84*m.x12 + 0.0001*m.x84*
m.x13 + 0.0001*m.x84*m.x14 + 0.0001*m.x84*m.x15 + 0.0001*m.x84*m.x16 + 0.0001*m.x84*m.x17 +
0.0001*m.x84*m.x18 + 0.0001*m.x84*m.x19 + 0.0001*m.x84*m.x20 + 0.0001*m.x84*m.x21 + 0.0001*m.x84*
m.x22 + 0.0001*m.x84*m.x23 + 0.0001*m.x84*m.x24 + 5.01518901008505*m.x84*m.x25 + 0.0001*m.x84*
m.x26 + 0.0001*m.x84*m.x27 + 0.0001*m.x84*m.x28 + 0.0001*m.x84*m.x29 + 0.0001*m.x84*m.x30 +
0.0001*m.x84*m.x31 + 0.0001*m.x84*m.x32 + 0.0001*m.x84*m.x33 + 0.0001*m.x84*m.x34 + 0.0001*m.x84*
m.x35 + 0.0001*m.x84*m.x36 + 0.0001*m.x84*m.x37 + 0.0001*m.x84*m.x38 + 0.0001*m.x84*m.x39 +
0.0001*m.x84*m.x40 + 0.0001*m.x84*m.x41 + 0.0001*m.x84*m.x42 + 0.0001*m.x84*m.x43 + 0.0001*m.x84*
m.x44 + 0.0001*m.x84*m.x45 + 0.0001*m.x84*m.x46 + 0.0001*m.x84*m.x47 + 2.85095769957664*m.x84*
m.x48 + 0.0001*m.x84*m.x49 + 0.0001*m.x84*m.x50 + 0.0001*m.x84*m.x51 + 0.0001*m.x84*m.x52 +
0.0001*m.x84*m.x53 + 0.0001*m.x84*m.x54 + 0.0001*m.x84*m.x55 + 0.0001*m.x84*m.x56 + 0.0001*m.x84*
m.x57 + 0.0001*m.x84*m.x58 + 0.0001*m.x84*m.x59 + 0.0001*m.x84*m.x60 + 0.0001*m.x84*m.x61 +
0.0001*m.x84*m.x62 + 0.0001*m.x84*m.x63 + 0.0001*m.x84*m.x64 + 0.0001*m.x84*m.x65 + 0.0001*m.x84*
m.x66 + 0.0001*m.x84*m.x67 + 0.0001*m.x84*m.x68 + 0.0001*m.x84*m.x69 + 0.0001*m.x84*m.x70 +
0.0001*m.x84*m.x71 + 0.0001*m.x84*m.x72 + 0.0001*m.x84*m.x73 + 0.0001*m.x84*m.x74 + 0.0001*m.x84*
m.x75 + 0.0001*m.x84*m.x76 + 0.0001*m.x84*m.x77 + 0.0001*m.x84*m.x78 + 0.0001*m.x84*m.x79 +
0.0001*m.x84*m.x80 + 0.0001*m.x84*m.x81 + 0.0001*m.x84*m.x82 + 0.0001*m.x84*m.x83 +
9.14734782179439*m.x84**2 + 0.0001*m.x84*m.x85 + 0.0001*m.x84*m.x86 + 0.0001*m.x84*m.x87 + 0.0001
*m.x84*m.x88 + 0.0001*m.x84*m.x89 + 0.0001*m.x84*m.x90 + 0.0001*m.x84*m.x91 + 0.0001*m.x84*m.x92
+ 0.0001*m.x84*m.x93 + 0.0001*m.x84*m.x94 + 0.0001*m.x84*m.x95 + 0.0001*m.x84*m.x96 + 0.0001*
m.x84*m.x97 + 0.0001*m.x84*m.x98 + 0.0001*m.x84*m.x99 + 0.0001*m.x84*m.x100 + 0.0001*m.x84*m.x101
+ 0.0001*m.x84*m.x102 + 0.0001*m.x84*m.x103 + 0.0001*m.x84*m.x104 + 0.0001*m.x84*m.x105 + 0.0001
*m.x84*m.x106 + 0.0001*m.x84*m.x107 + 0.0001*m.x84*m.x108 + 0.0001*m.x84*m.x109 + 0.0001*m.x84*
m.x110 + 0.0001*m.x84*m.x111 + 0.0001*m.x84*m.x112 + 0.0001*m.x84*m.x113 + 0.0001*m.x84*m.x114 +
0.0001*m.x84*m.x115 + 0.0001*m.x84*m.x116 + 0.0001*m.x84*m.x117 + 0.0001*m.x84*m.x118 + 0.0001*
m.x84*m.x119 + 0.0001*m.x84*m.x120 + 0.0001*m.x84*m.x121 + 0.0001*m.x84*m.x122 + 0.0001*m.x84*
m.x123 + 0.0001*m.x84*m.x124 + 0.0001*m.x84*m.x125 + 0.0001*m.x84*m.x126 + 0.0001*m.x84*m.x127 +
0.0001*m.x84*m.x128 + 0.0001*m.x84*m.x129 + 0.0001*m.x84*m.x130 + 0.0001*m.x84*m.x131 + 0.0001*
m.x84*m.x132 + 0.0001*m.x84*m.x133 + 0.0001*m.x84*m.x134 + 0.0001*m.x84*m.x135 + 0.0001*m.x84*
m.x136 + 0.0001*m.x84*m.x137 + 0.0001*m.x84*m.x138 + 0.0001*m.x84*m.x139 + 0.0001*m.x84*m.x140 +
0.0001*m.x84*m.x141 + 0.0001*m.x84*m.x142 + 0.0001*m.x84*m.x143 + 0.0001*m.x84*m.x144 + 0.0001*
m.x84*m.x145 + 0.0001*m.x84*m.x146 + 0.0001*m.x84*m.x147 + 0.0001*m.x84*m.x148 + 0.0001*m.x84*
m.x149 + 0.0001*m.x84*m.x150 + 0.0001*m.x84*m.x151 + 0.0001*m.x84*m.x152 + 0.0001*m.x84*m.x153 +
0.0001*m.x84*m.x154 + 0.0001*m.x84*m.x155 + 0.0001*m.x84*m.x156 + 0.0001*m.x84*m.x157 + 0.0001*
m.x84*m.x158 + 0.0001*m.x84*m.x159 + 0.0001*m.x84*m.x160 + 0.0001*m.x84*m.x161 + 0.0001*m.x84*
m.x162 + 0.0001*m.x84*m.x163 + 0.0001*m.x84*m.x164 + 0.0001*m.x84*m.x165 + 0.0001*m.x84*m.x166 +
0.0001*m.x84*m.x167 + 0.0001*m.x84*m.x168 + 0.0001*m.x84*m.x169 + 0.0001*m.x84*m.x170 + 0.0001*
m.x84*m.x171 + 0.0001*m.x84*m.x172 + 0.0001*m.x84*m.x173 + 0.0001*m.x84*m.x174 + 0.0001*m.x84*
m.x175 + 0.0001*m.x84*m.x176 + 0.0001*m.x84*m.x177 + 0.0001*m.x84*m.x178 + 0.0001*m.x84*m.x179 +
0.0001*m.x84*m.x180 + 0.0001*m.x84*m.x181 + 0.0001*m.x84*m.x182 + 0.0001*m.x84*m.x183 + 0.0001*
m.x84*m.x184 + 0.0001*m.x84*m.x185 + 0.0001*m.x85*m.x1 + 0.0001*m.x85*m.x2 + 0.0001*m.x85*m.x3 +
0.0001*m.x85*m.x4 + 0.0001*m.x85*m.x5 + 0.0001*m.x85*m.x6 + 0.0001*m.x85*m.x7 + 0.0001*m.x85*m.x8
+ 0.0001*m.x85*m.x9 + 0.0001*m.x85*m.x10 + 0.0001*m.x85*m.x11 + 0.0001*m.x85*m.x12 + 0.0001*
m.x85*m.x13 + 0.0001*m.x85*m.x14 + 0.0001*m.x85*m.x15 + 0.0001*m.x85*m.x16 + 0.0001*m.x85*m.x17
+ 0.0001*m.x85*m.x18 + 0.0001*m.x85*m.x19 + 0.0001*m.x85*m.x20 + 0.0001*m.x85*m.x21 + 0.0001*
m.x85*m.x22 + 0.0001*m.x85*m.x23 + 0.0001*m.x85*m.x24 + 0.0001*m.x85*m.x25 + 4.94950665205728*
m.x85*m.x26 + 0.0001*m.x85*m.x27 + 0.0001*m.x85*m.x28 + 0.0001*m.x85*m.x29 + 0.0001*m.x85*m.x30
+ 0.0001*m.x85*m.x31 + 0.0001*m.x85*m.x32 + 0.0001*m.x85*m.x33 + 0.0001*m.x85*m.x34 + 0.0001*
m.x85*m.x35 + 0.0001*m.x85*m.x36 + 0.0001*m.x85*m.x37 + 0.0001*m.x85*m.x38 + 0.0001*m.x85*m.x39
+ 0.0001*m.x85*m.x40 + 0.0001*m.x85*m.x41 + 0.0001*m.x85*m.x42 + 0.0001*m.x85*m.x43 + 0.0001*
m.x85*m.x44 + 0.0001*m.x85*m.x45 + 0.0001*m.x85*m.x46 + 0.0001*m.x85*m.x47 + 0.0001*m.x85*m.x48
+ 3.30977386585424*m.x85*m.x49 + 0.0001*m.x85*m.x50 + 0.0001*m.x85*m.x51 + 0.0001*m.x85*m.x52 +
0.0001*m.x85*m.x53 + 0.0001*m.x85*m.x54 + 0.0001*m.x85*m.x55 + 0.0001*m.x85*m.x56 + 0.0001*m.x85*
m.x57 + 0.0001*m.x85*m.x58 + 0.0001*m.x85*m.x59 + 0.0001*m.x85*m.x60 + 0.0001*m.x85*m.x61 +
0.0001*m.x85*m.x62 + 0.0001*m.x85*m.x63 + 0.0001*m.x85*m.x64 + 0.0001*m.x85*m.x65 + 0.0001*m.x85*
m.x66 + 0.0001*m.x85*m.x67 + 0.0001*m.x85*m.x68 + 0.0001*m.x85*m.x69 + 0.0001*m.x85*m.x70 +
0.0001*m.x85*m.x71 + 0.0001*m.x85*m.x72 + 0.0001*m.x85*m.x73 + 0.0001*m.x85*m.x74 + 0.0001*m.x85*
m.x75 + 0.0001*m.x85*m.x76 + 0.0001*m.x85*m.x77 + 0.0001*m.x85*m.x78 + 0.0001*m.x85*m.x79 +
0.0001*m.x85*m.x80 + 0.0001*m.x85*m.x81 + 0.0001*m.x85*m.x82 + 0.0001*m.x85*m.x83 + 0.0001*m.x85*
m.x84 + 9.14734782179439*m.x85**2 + 0.0001*m.x85*m.x86 + 0.0001*m.x85*m.x87 + 0.0001*m.x85*m.x88
+ 0.0001*m.x85*m.x89 + 0.0001*m.x85*m.x90 + 0.0001*m.x85*m.x91 + 0.0001*m.x85*m.x92 + 0.0001*
m.x85*m.x93 + 0.0001*m.x85*m.x94 + 0.0001*m.x85*m.x95 + 0.0001*m.x85*m.x96 + 0.0001*m.x85*m.x97
+ 0.0001*m.x85*m.x98 + 0.0001*m.x85*m.x99 + 0.0001*m.x85*m.x100 + 0.0001*m.x85*m.x101 + 0.0001*
m.x85*m.x102 + 0.0001*m.x85*m.x103 + 0.0001*m.x85*m.x104 + 0.0001*m.x85*m.x105 + 0.0001*m.x85*
m.x106 + 0.0001*m.x85*m.x107 + 0.0001*m.x85*m.x108 + 0.0001*m.x85*m.x109 + 0.0001*m.x85*m.x110 +
0.0001*m.x85*m.x111 + 0.0001*m.x85*m.x112 + 0.0001*m.x85*m.x113 + 0.0001*m.x85*m.x114 + 0.0001*
m.x85*m.x115 + 0.0001*m.x85*m.x116 + 0.0001*m.x85*m.x117 + 0.0001*m.x85*m.x118 + 0.0001*m.x85*
m.x119 + 0.0001*m.x85*m.x120 + 0.0001*m.x85*m.x121 + 0.0001*m.x85*m.x122 + 0.0001*m.x85*m.x123 +
0.0001*m.x85*m.x124 + 0.0001*m.x85*m.x125 + 0.0001*m.x85*m.x126 + 0.0001*m.x85*m.x127 + 0.0001*
m.x85*m.x128 + 0.0001*m.x85*m.x129 + 0.0001*m.x85*m.x130 + 0.0001*m.x85*m.x131 + 0.0001*m.x85*
m.x132 + 0.0001*m.x85*m.x133 + 0.0001*m.x85*m.x134 + 0.0001*m.x85*m.x135 + 0.0001*m.x85*m.x136 +
0.0001*m.x85*m.x137 + 0.0001*m.x85*m.x138 + 0.0001*m.x85*m.x139 + 0.0001*m.x85*m.x140 + 0.0001*
m.x85*m.x141 + 0.0001*m.x85*m.x142 + 0.0001*m.x85*m.x143 + 0.0001*m.x85*m.x144 + 0.0001*m.x85*
m.x145 + 0.0001*m.x85*m.x146 + 0.0001*m.x85*m.x147 + 0.0001*m.x85*m.x148 + 0.0001*m.x85*m.x149 +
0.0001*m.x85*m.x150 + 0.0001*m.x85*m.x151 + 0.0001*m.x85*m.x152 + 0.0001*m.x85*m.x153 + 0.0001*
m.x85*m.x154 + 0.0001*m.x85*m.x155 + 0.0001*m.x85*m.x156 + 0.0001*m.x85*m.x157 + 0.0001*m.x85*
m.x158 + 0.0001*m.x85*m.x159 + 0.0001*m.x85*m.x160 + 0.0001*m.x85*m.x161 + 0.0001*m.x85*m.x162 +
0.0001*m.x85*m.x163 + 0.0001*m.x85*m.x164 + 0.0001*m.x85*m.x165 + 0.0001*m.x85*m.x166 + 0.0001*
m.x85*m.x167 + 0.0001*m.x85*m.x168 + 0.0001*m.x85*m.x169 + 0.0001*m.x85*m.x170 + 0.0001*m.x85*
m.x171 + 0.0001*m.x85*m.x172 + 0.0001*m.x85*m.x173 + 0.0001*m.x85*m.x174 + 0.0001*m.x85*m.x175 +
0.0001*m.x85*m.x176 + 0.0001*m.x85*m.x177 + 0.0001*m.x85*m.x178 + 0.0001*m.x85*m.x179 + 0.0001*
m.x85*m.x180 + 0.0001*m.x85*m.x181 + 0.0001*m.x85*m.x182 + 0.0001*m.x85*m.x183 + 0.0001*m.x85*
m.x184 + 0.0001*m.x85*m.x185 + 0.0001*m.x86*m.x1 + 0.0001*m.x86*m.x2 + 0.0001*m.x86*m.x3 + 0.0001
*m.x86*m.x4 + 0.0001*m.x86*m.x5 + 0.0001*m.x86*m.x6 + 0.0001*m.x86*m.x7 + 0.0001*m.x86*m.x8 +
0.0001*m.x86*m.x9 + 0.0001*m.x86*m.x10 + 0.0001*m.x86*m.x11 + 0.0001*m.x86*m.x12 + 0.0001*m.x86*
m.x13 + 0.0001*m.x86*m.x14 + 0.0001*m.x86*m.x15 + 0.0001*m.x86*m.x16 + 0.0001*m.x86*m.x17 +
0.0001*m.x86*m.x18 + 0.0001*m.x86*m.x19 + 0.0001*m.x86*m.x20 + 0.0001*m.x86*m.x21 + 0.0001*m.x86*
m.x22 + 0.0001*m.x86*m.x23 + 0.0001*m.x86*m.x24 + 0.0001*m.x86*m.x25 + 0.0001*m.x86*m.x26 +
4.9283503175782*m.x86*m.x27 + 0.0001*m.x86*m.x28 + 0.0001*m.x86*m.x29 + 0.0001*m.x86*m.x30 +
0.0001*m.x86*m.x31 + 0.0001*m.x86*m.x32 + 0.0001*m.x86*m.x33 + 0.0001*m.x86*m.x34 + 0.0001*m.x86*
m.x35 + 0.0001*m.x86*m.x36 + 0.0001*m.x86*m.x37 + 0.0001*m.x86*m.x38 + 0.0001*m.x86*m.x39 +
0.0001*m.x86*m.x40 + 0.0001*m.x86*m.x41 + 0.0001*m.x86*m.x42 + 0.0001*m.x86*m.x43 + 0.0001*m.x86*
m.x44 + 0.0001*m.x86*m.x45 + 0.0001*m.x86*m.x46 + 0.0001*m.x86*m.x47 + 0.0001*m.x86*m.x48 +
0.0001*m.x86*m.x49 + 3.36191019598222*m.x86*m.x50 + 0.0001*m.x86*m.x51 + 0.0001*m.x86*m.x52 +
0.0001*m.x86*m.x53 + 0.0001*m.x86*m.x54 + 0.0001*m.x86*m.x55 + 0.0001*m.x86*m.x56 + 0.0001*m.x86*
m.x57 + 0.0001*m.x86*m.x58 + 0.0001*m.x86*m.x59 + 0.0001*m.x86*m.x60 + 0.0001*m.x86*m.x61 +
0.0001*m.x86*m.x62 + 0.0001*m.x86*m.x63 + 0.0001*m.x86*m.x64 + 0.0001*m.x86*m.x65 + 0.0001*m.x86*
m.x66 + 0.0001*m.x86*m.x67 + 0.0001*m.x86*m.x68 + 0.0001*m.x86*m.x69 + 0.0001*m.x86*m.x70 +
0.0001*m.x86*m.x71 + 0.0001*m.x86*m.x72 + 0.0001*m.x86*m.x73 + 0.0001*m.x86*m.x74 + 0.0001*m.x86*
m.x75 + 0.0001*m.x86*m.x76 + 0.0001*m.x86*m.x77 + 0.0001*m.x86*m.x78 + 0.0001*m.x86*m.x79 +
0.0001*m.x86*m.x80 + 0.0001*m.x86*m.x81 + 0.0001*m.x86*m.x82 + 0.0001*m.x86*m.x83 + 0.0001*m.x86*
m.x84 + 0.0001*m.x86*m.x85 + 9.38284222837331*m.x86**2 + 0.0001*m.x86*m.x87 + 0.0001*m.x86*m.x88
+ 0.0001*m.x86*m.x89 + 0.0001*m.x86*m.x90 + 0.0001*m.x86*m.x91 + 0.0001*m.x86*m.x92 + 0.0001*
m.x86*m.x93 + 0.0001*m.x86*m.x94 + 0.0001*m.x86*m.x95 + 0.0001*m.x86*m.x96 + 0.0001*m.x86*m.x97
+ 0.0001*m.x86*m.x98 + 0.0001*m.x86*m.x99 + 0.0001*m.x86*m.x100 + 0.0001*m.x86*m.x101 + 0.0001*
m.x86*m.x102 + 0.0001*m.x86*m.x103 + 0.0001*m.x86*m.x104 + 0.0001*m.x86*m.x105 + 0.0001*m.x86*
m.x106 + 0.0001*m.x86*m.x107 + 0.0001*m.x86*m.x108 + 0.0001*m.x86*m.x109 + 0.0001*m.x86*m.x110 +
0.0001*m.x86*m.x111 + 0.0001*m.x86*m.x112 + 0.0001*m.x86*m.x113 + 0.0001*m.x86*m.x114 + 0.0001*
m.x86*m.x115 + 0.0001*m.x86*m.x116 + 0.0001*m.x86*m.x117 + 0.0001*m.x86*m.x118 + 0.0001*m.x86*
m.x119 + 0.0001*m.x86*m.x120 + 0.0001*m.x86*m.x121 + 0.0001*m.x86*m.x122 + 0.0001*m.x86*m.x123 +
0.0001*m.x86*m.x124 + 0.0001*m.x86*m.x125 + 0.0001*m.x86*m.x126 + 0.0001*m.x86*m.x127 + 0.0001*
m.x86*m.x128 + 0.0001*m.x86*m.x129 + 0.0001*m.x86*m.x130 + 0.0001*m.x86*m.x131 + 0.0001*m.x86*
m.x132 + 0.0001*m.x86*m.x133 + 0.0001*m.x86*m.x134 + 0.0001*m.x86*m.x135 + 0.0001*m.x86*m.x136 +
0.0001*m.x86*m.x137 + 0.0001*m.x86*m.x138 + 0.0001*m.x86*m.x139 + 0.0001*m.x86*m.x140 + 0.0001*
m.x86*m.x141 + 0.0001*m.x86*m.x142 + 0.0001*m.x86*m.x143 + 0.0001*m.x86*m.x144 + 0.0001*m.x86*
m.x145 + 0.0001*m.x86*m.x146 + 0.0001*m.x86*m.x147 + 0.0001*m.x86*m.x148 + 0.0001*m.x86*m.x149 +
0.0001*m.x86*m.x150 + 0.0001*m.x86*m.x151 + 0.0001*m.x86*m.x152 + 0.0001*m.x86*m.x153 + 0.0001*
m.x86*m.x154 + 0.0001*m.x86*m.x155 + 0.0001*m.x86*m.x156 + 0.0001*m.x86*m.x157 + 0.0001*m.x86*
m.x158 + 0.0001*m.x86*m.x159 + 0.0001*m.x86*m.x160 + 0.0001*m.x86*m.x161 + 0.0001*m.x86*m.x162 +
0.0001*m.x86*m.x163 + 0.0001*m.x86*m.x164 + 0.0001*m.x86*m.x165 + 0.0001*m.x86*m.x166 + 0.0001*
m.x86*m.x167 + 0.0001*m.x86*m.x168 + 0.0001*m.x86*m.x169 + 0.0001*m.x86*m.x170 + 0.0001*m.x86*
m.x171 + 0.0001*m.x86*m.x172 + 0.0001*m.x86*m.x173 + 0.0001*m.x86*m.x174 + 0.0001*m.x86*m.x175 +
0.0001*m.x86*m.x176 + 0.0001*m.x86*m.x177 + 0.0001*m.x86*m.x178 + 0.0001*m.x86*m.x179 + 0.0001*
m.x86*m.x180 + 0.0001*m.x86*m.x181 + 0.0001*m.x86*m.x182 + 0.0001*m.x86*m.x183 + 0.0001*m.x86*
m.x184 + 0.0001*m.x86*m.x185 + 0.0001*m.x87*m.x1 + 0.0001*m.x87*m.x2 + 0.0001*m.x87*m.x3 + 0.0001
*m.x87*m.x4 + 0.0001*m.x87*m.x5 + 0.0001*m.x87*m.x6 + 0.0001*m.x87*m.x7 + 0.0001*m.x87*m.x8 +
0.0001*m.x87*m.x9 + 0.0001*m.x87*m.x10 + 0.0001*m.x87*m.x11 + 0.0001*m.x87*m.x12 + 0.0001*m.x87*
m.x13 + 0.0001*m.x87*m.x14 + 0.0001*m.x87*m.x15 + 0.0001*m.x87*m.x16 + 0.0001*m.x87*m.x17 +
0.0001*m.x87*m.x18 + 0.0001*m.x87*m.x19 + 0.0001*m.x87*m.x20 + 0.0001*m.x87*m.x21 + 0.0001*m.x87*
m.x22 + 0.0001*m.x87*m.x23 + 0.0001*m.x87*m.x24 + 0.0001*m.x87*m.x25 + 0.0001*m.x87*m.x26 +
0.0001*m.x87*m.x27 + 4.92892398020092*m.x87*m.x28 + 0.0001*m.x87*m.x29 + 0.0001*m.x87*m.x30 +
0.0001*m.x87*m.x31 + 0.0001*m.x87*m.x32 + 0.0001*m.x87*m.x33 + 0.0001*m.x87*m.x34 + 0.0001*m.x87*
m.x35 + 0.0001*m.x87*m.x36 + 0.0001*m.x87*m.x37 + 0.0001*m.x87*m.x38 + 0.0001*m.x87*m.x39 +
0.0001*m.x87*m.x40 + 0.0001*m.x87*m.x41 + 0.0001*m.x87*m.x42 + 0.0001*m.x87*m.x43 + 0.0001*m.x87*
m.x44 + 0.0001*m.x87*m.x45 + 0.0001*m.x87*m.x46 + 0.0001*m.x87*m.x47 + 0.0001*m.x87*m.x48 +
0.0001*m.x87*m.x49 + 0.0001*m.x87*m.x50 + 3.36191019598222*m.x87*m.x51 + 0.0001*m.x87*m.x52 +
0.0001*m.x87*m.x53 + 0.0001*m.x87*m.x54 + 0.0001*m.x87*m.x55 + 0.0001*m.x87*m.x56 + 0.0001*m.x87*
m.x57 + 0.0001*m.x87*m.x58 + 0.0001*m.x87*m.x59 + 0.0001*m.x87*m.x60 + 0.0001*m.x87*m.x61 +
0.0001*m.x87*m.x62 + 0.0001*m.x87*m.x63 + 0.0001*m.x87*m.x64 + 0.0001*m.x87*m.x65 + 0.0001*m.x87*
m.x66 + 0.0001*m.x87*m.x67 + 0.0001*m.x87*m.x68 + 0.0001*m.x87*m.x69 + 0.0001*m.x87*m.x70 +
0.0001*m.x87*m.x71 + 0.0001*m.x87*m.x72 + 0.0001*m.x87*m.x73 + 0.0001*m.x87*m.x74 + 0.0001*m.x87*
m.x75 + 0.0001*m.x87*m.x76 + 0.0001*m.x87*m.x77 + 0.0001*m.x87*m.x78 + 0.0001*m.x87*m.x79 +
0.0001*m.x87*m.x80 + 0.0001*m.x87*m.x81 + 0.0001*m.x87*m.x82 + 0.0001*m.x87*m.x83 + 0.0001*m.x87*
m.x84 + 0.0001*m.x87*m.x85 + 0.0001*m.x87*m.x86 + 9.38284222837331*m.x87**2 + 0.0001*m.x87*m.x88
+ 0.0001*m.x87*m.x89 + 0.0001*m.x87*m.x90 + 0.0001*m.x87*m.x91 + 0.0001*m.x87*m.x92 + 0.0001*
m.x87*m.x93 + 0.0001*m.x87*m.x94 + 0.0001*m.x87*m.x95 + 0.0001*m.x87*m.x96 + 0.0001*m.x87*m.x97
+ 0.0001*m.x87*m.x98 + 0.0001*m.x87*m.x99 + 0.0001*m.x87*m.x100 + 0.0001*m.x87*m.x101 + 0.0001*
m.x87*m.x102 + 0.0001*m.x87*m.x103 + 0.0001*m.x87*m.x104 + 0.0001*m.x87*m.x105 + 0.0001*m.x87*
m.x106 + 0.0001*m.x87*m.x107 + 0.0001*m.x87*m.x108 + 0.0001*m.x87*m.x109 + 0.0001*m.x87*m.x110 +
0.0001*m.x87*m.x111 + 0.0001*m.x87*m.x112 + 0.0001*m.x87*m.x113 + 0.0001*m.x87*m.x114 + 0.0001*
m.x87*m.x115 + 0.0001*m.x87*m.x116 + 0.0001*m.x87*m.x117 + 0.0001*m.x87*m.x118 + 0.0001*m.x87*
m.x119 + 0.0001*m.x87*m.x120 + 0.0001*m.x87*m.x121 + 0.0001*m.x87*m.x122 + 0.0001*m.x87*m.x123 +
0.0001*m.x87*m.x124 + 0.0001*m.x87*m.x125 + 0.0001*m.x87*m.x126 + 0.0001*m.x87*m.x127 + 0.0001*
m.x87*m.x128 + 0.0001*m.x87*m.x129 + 0.0001*m.x87*m.x130 + 0.0001*m.x87*m.x131 + 0.0001*m.x87*
m.x132 + 0.0001*m.x87*m.x133 + 0.0001*m.x87*m.x134 + 0.0001*m.x87*m.x135 + 0.0001*m.x87*m.x136 +
0.0001*m.x87*m.x137 + 0.0001*m.x87*m.x138 + 0.0001*m.x87*m.x139 + 0.0001*m.x87*m.x140 + 0.0001*
m.x87*m.x141 + 0.0001*m.x87*m.x142 + 0.0001*m.x87*m.x143 + 0.0001*m.x87*m.x144 + 0.0001*m.x87*
m.x145 + 0.0001*m.x87*m.x146 + 0.0001*m.x87*m.x147 + 0.0001*m.x87*m.x148 + 0.0001*m.x87*m.x149 +
0.0001*m.x87*m.x150 + 0.0001*m.x87*m.x151 + 0.0001*m.x87*m.x152 + 0.0001*m.x87*m.x153 + 0.0001*
m.x87*m.x154 + 0.0001*m.x87*m.x155 + 0.0001*m.x87*m.x156 + 0.0001*m.x87*m.x157 + 0.0001*m.x87*
m.x158 + 0.0001*m.x87*m.x159 + 0.0001*m.x87*m.x160 + 0.0001*m.x87*m.x161 + 0.0001*m.x87*m.x162 +
0.0001*m.x87*m.x163 + 0.0001*m.x87*m.x164 + 0.0001*m.x87*m.x165 + 0.0001*m.x87*m.x166 + 0.0001*
m.x87*m.x167 + 0.0001*m.x87*m.x168 + 0.0001*m.x87*m.x169 + 0.0001*m.x87*m.x170 + 0.0001*m.x87*
m.x171 + 0.0001*m.x87*m.x172 + 0.0001*m.x87*m.x173 + 0.0001*m.x87*m.x174 + 0.0001*m.x87*m.x175 +
0.0001*m.x87*m.x176 + 0.0001*m.x87*m.x177 + 0.0001*m.x87*m.x178 + 0.0001*m.x87*m.x179 + 0.0001*
m.x87*m.x180 + 0.0001*m.x87*m.x181 + 0.0001*m.x87*m.x182 + 0.0001*m.x87*m.x183 + 0.0001*m.x87*
m.x184 + 0.0001*m.x87*m.x185 + 0.0001*m.x88*m.x1 + 0.0001*m.x88*m.x2 + 0.0001*m.x88*m.x3 + 0.0001
*m.x88*m.x4 + 0.0001*m.x88*m.x5 + 0.0001*m.x88*m.x6 + 0.0001*m.x88*m.x7 + 0.0001*m.x88*m.x8 +
0.0001*m.x88*m.x9 + 0.0001*m.x88*m.x10 + 0.0001*m.x88*m.x11 + 0.0001*m.x88*m.x12 + 0.0001*m.x88*
m.x13 + 0.0001*m.x88*m.x14 + 0.0001*m.x88*m.x15 + 0.0001*m.x88*m.x16 + 0.0001*m.x88*m.x17 +
0.0001*m.x88*m.x18 + 0.0001*m.x88*m.x19 + 0.0001*m.x88*m.x20 + 0.0001*m.x88*m.x21 + 0.0001*m.x88*
m.x22 + 0.0001*m.x88*m.x23 + 0.0001*m.x88*m.x24 + 0.0001*m.x88*m.x25 + 0.0001*m.x88*m.x26 +
0.0001*m.x88*m.x27 + 0.0001*m.x88*m.x28 + 4.87034828234694*m.x88*m.x29 + 0.0001*m.x88*m.x30 +
0.0001*m.x88*m.x31 + 0.0001*m.x88*m.x32 + 0.0001*m.x88*m.x33 + 0.0001*m.x88*m.x34 + 0.0001*m.x88*
m.x35 + 0.0001*m.x88*m.x36 + 0.0001*m.x88*m.x37 + 0.0001*m.x88*m.x38 + 0.0001*m.x88*m.x39 +
0.0001*m.x88*m.x40 + 0.0001*m.x88*m.x41 + 0.0001*m.x88*m.x42 + 0.0001*m.x88*m.x43 + 0.0001*m.x88*
m.x44 + 0.0001*m.x88*m.x45 + 0.0001*m.x88*m.x46 + 0.0001*m.x88*m.x47 + 0.0001*m.x88*m.x48 +
0.0001*m.x88*m.x49 + 0.0001*m.x88*m.x50 + 0.0001*m.x88*m.x51 + 3.27439613256008*m.x88*m.x52 +
0.0001*m.x88*m.x53 + 0.0001*m.x88*m.x54 + 0.0001*m.x88*m.x55 + 0.0001*m.x88*m.x56 + 0.0001*m.x88*
m.x57 + 0.0001*m.x88*m.x58 + 0.0001*m.x88*m.x59 + 0.0001*m.x88*m.x60 + 0.0001*m.x88*m.x61 +
0.0001*m.x88*m.x62 + 0.0001*m.x88*m.x63 + 0.0001*m.x88*m.x64 + 0.0001*m.x88*m.x65 + 0.0001*m.x88*
m.x66 + 0.0001*m.x88*m.x67 + 0.0001*m.x88*m.x68 + 0.0001*m.x88*m.x69 + 0.0001*m.x88*m.x70 +
0.0001*m.x88*m.x71 + 0.0001*m.x88*m.x72 + 0.0001*m.x88*m.x73 + 0.0001*m.x88*m.x74 + 0.0001*m.x88*
m.x75 + 0.0001*m.x88*m.x76 + 0.0001*m.x88*m.x77 + 0.0001*m.x88*m.x78 + 0.0001*m.x88*m.x79 +
0.0001*m.x88*m.x80 + 0.0001*m.x88*m.x81 + 0.0001*m.x88*m.x82 + 0.0001*m.x88*m.x83 + 0.0001*m.x88*
m.x84 + 0.0001*m.x88*m.x85 + 0.0001*m.x88*m.x86 + 0.0001*m.x88*m.x87 + 9.38284222837331*m.x88**2
+ 0.0001*m.x88*m.x89 + 0.0001*m.x88*m.x90 + 0.0001*m.x88*m.x91 + 0.0001*m.x88*m.x92 + 0.0001*
m.x88*m.x93 + 0.0001*m.x88*m.x94 + 0.0001*m.x88*m.x95 + 0.0001*m.x88*m.x96 + 0.0001*m.x88*m.x97
+ 0.0001*m.x88*m.x98 + 0.0001*m.x88*m.x99 + 0.0001*m.x88*m.x100 + 0.0001*m.x88*m.x101 + 0.0001*
m.x88*m.x102 + 0.0001*m.x88*m.x103 + 0.0001*m.x88*m.x104 + 0.0001*m.x88*m.x105 + 0.0001*m.x88*
m.x106 + 0.0001*m.x88*m.x107 + 0.0001*m.x88*m.x108 + 0.0001*m.x88*m.x109 + 0.0001*m.x88*m.x110 +
0.0001*m.x88*m.x111 + 0.0001*m.x88*m.x112 + 0.0001*m.x88*m.x113 + 0.0001*m.x88*m.x114 + 0.0001*
m.x88*m.x115 + 0.0001*m.x88*m.x116 + 0.0001*m.x88*m.x117 + 0.0001*m.x88*m.x118 + 0.0001*m.x88*
m.x119 + 0.0001*m.x88*m.x120 + 0.0001*m.x88*m.x121 + 0.0001*m.x88*m.x122 + 0.0001*m.x88*m.x123 +
0.0001*m.x88*m.x124 + 0.0001*m.x88*m.x125 + 0.0001*m.x88*m.x126 + 0.0001*m.x88*m.x127 + 0.0001*
m.x88*m.x128 + 0.0001*m.x88*m.x129 + 0.0001*m.x88*m.x130 + 0.0001*m.x88*m.x131 + 0.0001*m.x88*
m.x132 + 0.0001*m.x88*m.x133 + 0.0001*m.x88*m.x134 + 0.0001*m.x88*m.x135 + 0.0001*m.x88*m.x136 +
0.0001*m.x88*m.x137 + 0.0001*m.x88*m.x138 + 0.0001*m.x88*m.x139 + 0.0001*m.x88*m.x140 + 0.0001*
m.x88*m.x141 + 0.0001*m.x88*m.x142 + 0.0001*m.x88*m.x143 + 0.0001*m.x88*m.x144 + 0.0001*m.x88*
m.x145 + 0.0001*m.x88*m.x146 + 0.0001*m.x88*m.x147 + 0.0001*m.x88*m.x148 + 0.0001*m.x88*m.x149 +
0.0001*m.x88*m.x150 + 0.0001*m.x88*m.x151 + 0.0001*m.x88*m.x152 + 0.0001*m.x88*m.x153 + 0.0001*
m.x88*m.x154 + 0.0001*m.x88*m.x155 + 0.0001*m.x88*m.x156 + 0.0001*m.x88*m.x157 + 0.0001*m.x88*
m.x158 + 0.0001*m.x88*m.x159 + 0.0001*m.x88*m.x160 + 0.0001*m.x88*m.x161 + 0.0001*m.x88*m.x162 +
0.0001*m.x88*m.x163 + 0.0001*m.x88*m.x164 + 0.0001*m.x88*m.x165 + 0.0001*m.x88*m.x166 + 0.0001*
m.x88*m.x167 + 0.0001*m.x88*m.x168 + 0.0001*m.x88*m.x169 + 0.0001*m.x88*m.x170 + 0.0001*m.x88*
m.x171 + 0.0001*m.x88*m.x172 + 0.0001*m.x88*m.x173 + 0.0001*m.x88*m.x174 + 0.0001*m.x88*m.x175 +
0.0001*m.x88*m.x176 + 0.0001*m.x88*m.x177 + 0.0001*m.x88*m.x178 + 0.0001*m.x88*m.x179 + 0.0001*
m.x88*m.x180 + 0.0001*m.x88*m.x181 + 0.0001*m.x88*m.x182 + 0.0001*m.x88*m.x183 + 0.0001*m.x88*
m.x184 + 0.0001*m.x88*m.x185 + 0.0001*m.x89*m.x1 + 0.0001*m.x89*m.x2 + 0.0001*m.x89*m.x3 + 0.0001
*m.x89*m.x4 + 0.0001*m.x89*m.x5 + 0.0001*m.x89*m.x6 + 0.0001*m.x89*m.x7 + 0.0001*m.x89*m.x8 +
0.0001*m.x89*m.x9 + 0.0001*m.x89*m.x10 + 0.0001*m.x89*m.x11 + 0.0001*m.x89*m.x12 + 0.0001*m.x89*
m.x13 + 0.0001*m.x89*m.x14 + 0.0001*m.x89*m.x15 + 0.0001*m.x89*m.x16 + 0.0001*m.x89*m.x17 +
0.0001*m.x89*m.x18 + 0.0001*m.x89*m.x19 + 0.0001*m.x89*m.x20 + 0.0001*m.x89*m.x21 + 0.0001*m.x89*
m.x22 + 0.0001*m.x89*m.x23 + 0.0001*m.x89*m.x24 + 0.0001*m.x89*m.x25 + 0.0001*m.x89*m.x26 +
0.0001*m.x89*m.x27 + 0.0001*m.x89*m.x28 + 0.0001*m.x89*m.x29 + 4.83667608906549*m.x89*m.x30 +
0.0001*m.x89*m.x31 + 0.0001*m.x89*m.x32 + 0.0001*m.x89*m.x33 + 0.0001*m.x89*m.x34 + 0.0001*m.x89*
m.x35 + 0.0001*m.x89*m.x36 + 0.0001*m.x89*m.x37 + 0.0001*m.x89*m.x38 + 0.0001*m.x89*m.x39 +
0.0001*m.x89*m.x40 + 0.0001*m.x89*m.x41 + 0.0001*m.x89*m.x42 + 0.0001*m.x89*m.x43 + 0.0001*m.x89*
m.x44 + 0.0001*m.x89*m.x45 + 0.0001*m.x89*m.x46 + 0.0001*m.x89*m.x47 + 0.0001*m.x89*m.x48 +
0.0001*m.x89*m.x49 + 0.0001*m.x89*m.x50 + 0.0001*m.x89*m.x51 + 0.0001*m.x89*m.x52 +
3.35758811330781*m.x89*m.x53 + 0.0001*m.x89*m.x54 + 0.0001*m.x89*m.x55 + 0.0001*m.x89*m.x56 +
0.0001*m.x89*m.x57 + 0.0001*m.x89*m.x58 + 0.0001*m.x89*m.x59 + 0.0001*m.x89*m.x60 + 0.0001*m.x89*
m.x61 + 0.0001*m.x89*m.x62 + 0.0001*m.x89*m.x63 + 0.0001*m.x89*m.x64 + 0.0001*m.x89*m.x65 +
0.0001*m.x89*m.x66 + 0.0001*m.x89*m.x67 + 0.0001*m.x89*m.x68 + 0.0001*m.x89*m.x69 + 0.0001*m.x89*
m.x70 + 0.0001*m.x89*m.x71 + 0.0001*m.x89*m.x72 + 0.0001*m.x89*m.x73 + 0.0001*m.x89*m.x74 +
0.0001*m.x89*m.x75 + 0.0001*m.x89*m.x76 + 0.0001*m.x89*m.x77 + 0.0001*m.x89*m.x78 + 0.0001*m.x89*
m.x79 + 0.0001*m.x89*m.x80 + 0.0001*m.x89*m.x81 + 0.0001*m.x89*m.x82 + 0.0001*m.x89*m.x83 +
0.0001*m.x89*m.x84 + 0.0001*m.x89*m.x85 + 0.0001*m.x89*m.x86 + 0.0001*m.x89*m.x87 + 0.0001*m.x89*
m.x88 + 9.45081045583368*m.x89**2 + 0.0001*m.x89*m.x90 + 0.0001*m.x89*m.x91 + 0.0001*m.x89*m.x92
+ 0.0001*m.x89*m.x93 + 0.0001*m.x89*m.x94 + 0.0001*m.x89*m.x95 + 0.0001*m.x89*m.x96 + 0.0001*
m.x89*m.x97 + 0.0001*m.x89*m.x98 + 0.0001*m.x89*m.x99 + 0.0001*m.x89*m.x100 + 0.0001*m.x89*m.x101
+ 0.0001*m.x89*m.x102 + 0.0001*m.x89*m.x103 + 0.0001*m.x89*m.x104 + 0.0001*m.x89*m.x105 + 0.0001
*m.x89*m.x106 + 0.0001*m.x89*m.x107 + 0.0001*m.x89*m.x108 + 0.0001*m.x89*m.x109 + 0.0001*m.x89*
m.x110 + 0.0001*m.x89*m.x111 + 0.0001*m.x89*m.x112 + 0.0001*m.x89*m.x113 + 0.0001*m.x89*m.x114 +
0.0001*m.x89*m.x115 + 0.0001*m.x89*m.x116 + 0.0001*m.x89*m.x117 + 0.0001*m.x89*m.x118 + 0.0001*
m.x89*m.x119 + 0.0001*m.x89*m.x120 + 0.0001*m.x89*m.x121 + 0.0001*m.x89*m.x122 + 0.0001*m.x89*
m.x123 + 0.0001*m.x89*m.x124 + 0.0001*m.x89*m.x125 + 0.0001*m.x89*m.x126 + 0.0001*m.x89*m.x127 +
0.0001*m.x89*m.x128 + 0.0001*m.x89*m.x129 + 0.0001*m.x89*m.x130 + 0.0001*m.x89*m.x131 + 0.0001*
m.x89*m.x132 + 0.0001*m.x89*m.x133 + 0.0001*m.x89*m.x134 + 0.0001*m.x89*m.x135 + 0.0001*m.x89*
m.x136 + 0.0001*m.x89*m.x137 + 0.0001*m.x89*m.x138 + 0.0001*m.x89*m.x139 + 0.0001*m.x89*m.x140 +
0.0001*m.x89*m.x141 + 0.0001*m.x89*m.x142 + 0.0001*m.x89*m.x143 + 0.0001*m.x89*m.x144 + 0.0001*
m.x89*m.x145 + 0.0001*m.x89*m.x146 + 0.0001*m.x89*m.x147 + 0.0001*m.x89*m.x148 + 0.0001*m.x89*
m.x149 + 0.0001*m.x89*m.x150 + 0.0001*m.x89*m.x151 + 0.0001*m.x89*m.x152 + 0.0001*m.x89*m.x153 +
0.0001*m.x89*m.x154 + 0.0001*m.x89*m.x155 + 0.0001*m.x89*m.x156 + 0.0001*m.x89*m.x157 + 0.0001*
m.x89*m.x158 + 0.0001*m.x89*m.x159 + 0.0001*m.x89*m.x160 + 0.0001*m.x89*m.x161 + 0.0001*m.x89*
m.x162 + 0.0001*m.x89*m.x163 + 0.0001*m.x89*m.x164 + 0.0001*m.x89*m.x165 + 0.0001*m.x89*m.x166 +
0.0001*m.x89*m.x167 + 0.0001*m.x89*m.x168 + 0.0001*m.x89*m.x169 + 0.0001*m.x89*m.x170 + 0.0001*
m.x89*m.x171 + 0.0001*m.x89*m.x172 + 0.0001*m.x89*m.x173 + 0.0001*m.x89*m.x174 + 0.0001*m.x89*
m.x175 + 0.0001*m.x89*m.x176 + 0.0001*m.x89*m.x177 + 0.0001*m.x89*m.x178 + 0.0001*m.x89*m.x179 +
0.0001*m.x89*m.x180 + 0.0001*m.x89*m.x181 + 0.0001*m.x89*m.x182 + 0.0001*m.x89*m.x183 + 0.0001*
m.x89*m.x184 + 0.0001*m.x89*m.x185 + 0.0001*m.x90*m.x1 + 0.0001*m.x90*m.x2 + 0.0001*m.x90*m.x3 +
0.0001*m.x90*m.x4 + 0.0001*m.x90*m.x5 + 0.0001*m.x90*m.x6 + 0.0001*m.x90*m.x7 + 0.0001*m.x90*m.x8
+ 0.0001*m.x90*m.x9 + 0.0001*m.x90*m.x10 + 0.0001*m.x90*m.x11 + 0.0001*m.x90*m.x12 + 0.0001*
m.x90*m.x13 + 0.0001*m.x90*m.x14 + 0.0001*m.x90*m.x15 + 0.0001*m.x90*m.x16 + 0.0001*m.x90*m.x17
+ 0.0001*m.x90*m.x18 + 0.0001*m.x90*m.x19 + 0.0001*m.x90*m.x20 + 0.0001*m.x90*m.x21 + 0.0001*
m.x90*m.x22 + 0.0001*m.x90*m.x23 + 0.0001*m.x90*m.x24 + 0.0001*m.x90*m.x25 + 0.0001*m.x90*m.x26
+ 0.0001*m.x90*m.x27 + 0.0001*m.x90*m.x28 + 0.0001*m.x90*m.x29 + 0.0001*m.x90*m.x30 +
4.83667608906549*m.x90*m.x31 + 0.0001*m.x90*m.x32 + 0.0001*m.x90*m.x33 + 0.0001*m.x90*m.x34 +
0.0001*m.x90*m.x35 + 0.0001*m.x90*m.x36 + 0.0001*m.x90*m.x37 + 0.0001*m.x90*m.x38 + 0.0001*m.x90*
m.x39 + 0.0001*m.x90*m.x40 + 0.0001*m.x90*m.x41 + 0.0001*m.x90*m.x42 + 0.0001*m.x90*m.x43 +
0.0001*m.x90*m.x44 + 0.0001*m.x90*m.x45 + 0.0001*m.x90*m.x46 + 0.0001*m.x90*m.x47 + 0.0001*m.x90*
m.x48 + 0.0001*m.x90*m.x49 + 0.0001*m.x90*m.x50 + 0.0001*m.x90*m.x51 + 0.0001*m.x90*m.x52 +
0.0001*m.x90*m.x53 + 3.34228364077303*m.x90*m.x54 + 0.0001*m.x90*m.x55 + 0.0001*m.x90*m.x56 +
0.0001*m.x90*m.x57 + 0.0001*m.x90*m.x58 + 0.0001*m.x90*m.x59 + 0.0001*m.x90*m.x60 + 0.0001*m.x90*
m.x61 + 0.0001*m.x90*m.x62 + 0.0001*m.x90*m.x63 + 0.0001*m.x90*m.x64 + 0.0001*m.x90*m.x65 +
0.0001*m.x90*m.x66 + 0.0001*m.x90*m.x67 + 0.0001*m.x90*m.x68 + 0.0001*m.x90*m.x69 + 0.0001*m.x90*
m.x70 + 0.0001*m.x90*m.x71 + 0.0001*m.x90*m.x72 + 0.0001*m.x90*m.x73 + 0.0001*m.x90*m.x74 +
0.0001*m.x90*m.x75 + 0.0001*m.x90*m.x76 + 0.0001*m.x90*m.x77 + 0.0001*m.x90*m.x78 + 0.0001*m.x90*
m.x79 + 0.0001*m.x90*m.x80 + 0.0001*m.x90*m.x81 + 0.0001*m.x90*m.x82 + 0.0001*m.x90*m.x83 +
0.0001*m.x90*m.x84 + 0.0001*m.x90*m.x85 + 0.0001*m.x90*m.x86 + 0.0001*m.x90*m.x87 + 0.0001*m.x90*
m.x88 + 0.0001*m.x90*m.x89 + 9.45081045583368*m.x90**2 + 0.0001*m.x90*m.x91 + 0.0001*m.x90*m.x92
+ 0.0001*m.x90*m.x93 + 0.0001*m.x90*m.x94 + 0.0001*m.x90*m.x95 + 0.0001*m.x90*m.x96 + 0.0001*
m.x90*m.x97 + 0.0001*m.x90*m.x98 + 0.0001*m.x90*m.x99 + 0.0001*m.x90*m.x100 + 0.0001*m.x90*m.x101
+ 0.0001*m.x90*m.x102 + 0.0001*m.x90*m.x103 + 0.0001*m.x90*m.x104 + 0.0001*m.x90*m.x105 + 0.0001
*m.x90*m.x106 + 0.0001*m.x90*m.x107 + 0.0001*m.x90*m.x108 + 0.0001*m.x90*m.x109 + 0.0001*m.x90*
m.x110 + 0.0001*m.x90*m.x111 + 0.0001*m.x90*m.x112 + 0.0001*m.x90*m.x113 + 0.0001*m.x90*m.x114 +
0.0001*m.x90*m.x115 + 0.0001*m.x90*m.x116 + 0.0001*m.x90*m.x117 + 0.0001*m.x90*m.x118 + 0.0001*
m.x90*m.x119 + 0.0001*m.x90*m.x120 + 0.0001*m.x90*m.x121 + 0.0001*m.x90*m.x122 + 0.0001*m.x90*
m.x123 + 0.0001*m.x90*m.x124 + 0.0001*m.x90*m.x125 + 0.0001*m.x90*m.x126 + 0.0001*m.x90*m.x127 +
0.0001*m.x90*m.x128 + 0.0001*m.x90*m.x129 + 0.0001*m.x90*m.x130 + 0.0001*m.x90*m.x131 + 0.0001*
m.x90*m.x132 + 0.0001*m.x90*m.x133 + 0.0001*m.x90*m.x134 + 0.0001*m.x90*m.x135 + 0.0001*m.x90*
m.x136 + 0.0001*m.x90*m.x137 + 0.0001*m.x90*m.x138 + 0.0001*m.x90*m.x139 + 0.0001*m.x90*m.x140 +
0.0001*m.x90*m.x141 + 0.0001*m.x90*m.x142 + 0.0001*m.x90*m.x143 + 0.0001*m.x90*m.x144 + 0.0001*
m.x90*m.x145 + 0.0001*m.x90*m.x146 + 0.0001*m.x90*m.x147 + 0.0001*m.x90*m.x148 + 0.0001*m.x90*
m.x149 + 0.0001*m.x90*m.x150 + 0.0001*m.x90*m.x151 + 0.0001*m.x90*m.x152 + 0.0001*m.x90*m.x153 +
0.0001*m.x90*m.x154 + 0.0001*m.x90*m.x155 + 0.0001*m.x90*m.x156 + 0.0001*m.x90*m.x157 + 0.0001*
m.x90*m.x158 + 0.0001*m.x90*m.x159 + 0.0001*m.x90*m.x160 + 0.0001*m.x90*m.x161 + 0.0001*m.x90*
m.x162 + 0.0001*m.x90*m.x163 + 0.0001*m.x90*m.x164 + 0.0001*m.x90*m.x165 + 0.0001*m.x90*m.x166 +
0.0001*m.x90*m.x167 + 0.0001*m.x90*m.x168 + 0.0001*m.x90*m.x169 + 0.0001*m.x90*m.x170 + 0.0001*
m.x90*m.x171 + 0.0001*m.x90*m.x172 + 0.0001*m.x90*m.x173 + 0.0001*m.x90*m.x174 + 0.0001*m.x90*
m.x175 + 0.0001*m.x90*m.x176 + 0.0001*m.x90*m.x177 + 0.0001*m.x90*m.x178 + 0.0001*m.x90*m.x179 +
0.0001*m.x90*m.x180 + 0.0001*m.x90*m.x181 + 0.0001*m.x90*m.x182 + 0.0001*m.x90*m.x183 + 0.0001*
m.x90*m.x184 + 0.0001*m.x90*m.x185 + 0.0001*m.x91*m.x1 + 0.0001*m.x91*m.x2 + 0.0001*m.x91*m.x3 +
0.0001*m.x91*m.x4 + 0.0001*m.x91*m.x5 + 0.0001*m.x91*m.x6 + 0.0001*m.x91*m.x7 + 0.0001*m.x91*m.x8
+ 0.0001*m.x91*m.x9 + 0.0001*m.x91*m.x10 + 0.0001*m.x91*m.x11 + 0.0001*m.x91*m.x12 + 0.0001*
m.x91*m.x13 + 0.0001*m.x91*m.x14 + 0.0001*m.x91*m.x15 + 0.0001*m.x91*m.x16 + 0.0001*m.x91*m.x17
+ 0.0001*m.x91*m.x18 + 0.0001*m.x91*m.x19 + 0.0001*m.x91*m.x20 + 0.0001*m.x91*m.x21 + 0.0001*
m.x91*m.x22 + 0.0001*m.x91*m.x23 + 0.0001*m.x91*m.x24 + 0.0001*m.x91*m.x25 + 0.0001*m.x91*m.x26
+ 0.0001*m.x91*m.x27 + 0.0001*m.x91*m.x28 + 0.0001*m.x91*m.x29 + 0.0001*m.x91*m.x30 + 0.0001*
m.x91*m.x31 + 5.0148913745191*m.x91*m.x32 + 0.0001*m.x91*m.x33 + 0.0001*m.x91*m.x34 + 0.0001*
m.x91*m.x35 + 0.0001*m.x91*m.x36 + 0.0001*m.x91*m.x37 + 0.0001*m.x91*m.x38 + 0.0001*m.x91*m.x39
+ 0.0001*m.x91*m.x40 + 0.0001*m.x91*m.x41 + 0.0001*m.x91*m.x42 + 0.0001*m.x91*m.x43 + 0.0001*
m.x91*m.x44 + 0.0001*m.x91*m.x45 + 0.0001*m.x91*m.x46 + 0.0001*m.x91*m.x47 + 0.0001*m.x91*m.x48
+ 0.0001*m.x91*m.x49 + 0.0001*m.x91*m.x50 + 0.0001*m.x91*m.x51 + 0.0001*m.x91*m.x52 + 0.0001*
m.x91*m.x53 + 0.0001*m.x91*m.x54 + 3.34228364077303*m.x91*m.x55 + 0.0001*m.x91*m.x56 + 0.0001*
m.x91*m.x57 + 0.0001*m.x91*m.x58 + 0.0001*m.x91*m.x59 + 0.0001*m.x91*m.x60 + 0.0001*m.x91*m.x61
+ 0.0001*m.x91*m.x62 + 0.0001*m.x91*m.x63 + 0.0001*m.x91*m.x64 + 0.0001*m.x91*m.x65 + 0.0001*
m.x91*m.x66 + 0.0001*m.x91*m.x67 + 0.0001*m.x91*m.x68 + 0.0001*m.x91*m.x69 + 0.0001*m.x91*m.x70
+ 0.0001*m.x91*m.x71 + 0.0001*m.x91*m.x72 + 0.0001*m.x91*m.x73 + 0.0001*m.x91*m.x74 + 0.0001*
m.x91*m.x75 + 0.0001*m.x91*m.x76 + 0.0001*m.x91*m.x77 + 0.0001*m.x91*m.x78 + 0.0001*m.x91*m.x79
+ 0.0001*m.x91*m.x80 + 0.0001*m.x91*m.x81 + 0.0001*m.x91*m.x82 + 0.0001*m.x91*m.x83 + 0.0001*
m.x91*m.x84 + 0.0001*m.x91*m.x85 + 0.0001*m.x91*m.x86 + 0.0001*m.x91*m.x87 + 0.0001*m.x91*m.x88
+ 0.0001*m.x91*m.x89 + 0.0001*m.x91*m.x90 + 9.45081045583368*m.x91**2 + 0.0001*m.x91*m.x92 +
0.0001*m.x91*m.x93 + 0.0001*m.x91*m.x94 + 0.0001*m.x91*m.x95 + 0.0001*m.x91*m.x96 + 0.0001*m.x91*
m.x97 + 0.0001*m.x91*m.x98 + 0.0001*m.x91*m.x99 + 0.0001*m.x91*m.x100 + 0.0001*m.x91*m.x101 +
0.0001*m.x91*m.x102 + 0.0001*m.x91*m.x103 + 0.0001*m.x91*m.x104 + 0.0001*m.x91*m.x105 + 0.0001*
m.x91*m.x106 + 0.0001*m.x91*m.x107 + 0.0001*m.x91*m.x108 + 0.0001*m.x91*m.x109 + 0.0001*m.x91*
m.x110 + 0.0001*m.x91*m.x111 + 0.0001*m.x91*m.x112 + 0.0001*m.x91*m.x113 + 0.0001*m.x91*m.x114 +
0.0001*m.x91*m.x115 + 0.0001*m.x91*m.x116 + 0.0001*m.x91*m.x117 + 0.0001*m.x91*m.x118 + 0.0001*
m.x91*m.x119 + 0.0001*m.x91*m.x120 + 0.0001*m.x91*m.x121 + 0.0001*m.x91*m.x122 + 0.0001*m.x91*
m.x123 + 0.0001*m.x91*m.x124 + 0.0001*m.x91*m.x125 + 0.0001*m.x91*m.x126 + 0.0001*m.x91*m.x127 +
0.0001*m.x91*m.x128 + 0.0001*m.x91*m.x129 + 0.0001*m.x91*m.x130 + 0.0001*m.x91*m.x131 + 0.0001*
m.x91*m.x132 + 0.0001*m.x91*m.x133 + 0.0001*m.x91*m.x134 + 0.0001*m.x91*m.x135 + 0.0001*m.x91*
m.x136 + 0.0001*m.x91*m.x137 + 0.0001*m.x91*m.x138 + 0.0001*m.x91*m.x139 + 0.0001*m.x91*m.x140 +
0.0001*m.x91*m.x141 + 0.0001*m.x91*m.x142 + 0.0001*m.x91*m.x143 + 0.0001*m.x91*m.x144 + 0.0001*
m.x91*m.x145 + 0.0001*m.x91*m.x146 + 0.0001*m.x91*m.x147 + 0.0001*m.x91*m.x148 + 0.0001*m.x91*
m.x149 + 0.0001*m.x91*m.x150 + 0.0001*m.x91*m.x151 + 0.0001*m.x91*m.x152 + 0.0001*m.x91*m.x153 +
0.0001*m.x91*m.x154 + 0.0001*m.x91*m.x155 + 0.0001*m.x91*m.x156 + 0.0001*m.x91*m.x157 + 0.0001*
m.x91*m.x158 + 0.0001*m.x91*m.x159 + 0.0001*m.x91*m.x160 + 0.0001*m.x91*m.x161 + 0.0001*m.x91*
m.x162 + 0.0001*m.x91*m.x163 + 0.0001*m.x91*m.x164 + 0.0001*m.x91*m.x165 + 0.0001*m.x91*m.x166 +
0.0001*m.x91*m.x167 + 0.0001*m.x91*m.x168 + 0.0001*m.x91*m.x169 + 0.0001*m.x91*m.x170 + 0.0001*
m.x91*m.x171 + 0.0001*m.x91*m.x172 + 0.0001*m.x91*m.x173 + 0.0001*m.x91*m.x174 + 0.0001*m.x91*
m.x175 + 0.0001*m.x91*m.x176 + 0.0001*m.x91*m.x177 + 0.0001*m.x91*m.x178 + 0.0001*m.x91*m.x179 +
0.0001*m.x91*m.x180 + 0.0001*m.x91*m.x181 + 0.0001*m.x91*m.x182 + 0.0001*m.x91*m.x183 + 0.0001*
m.x91*m.x184 + 0.0001*m.x91*m.x185 + 0.0001*m.x92*m.x1 + 0.0001*m.x92*m.x2 + 0.0001*m.x92*m.x3 +
0.0001*m.x92*m.x4 + 0.0001*m.x92*m.x5 + 0.0001*m.x92*m.x6 + 0.0001*m.x92*m.x7 + 0.0001*m.x92*m.x8
+ 0.0001*m.x92*m.x9 + 0.0001*m.x92*m.x10 + 0.0001*m.x92*m.x11 + 0.0001*m.x92*m.x12 + 0.0001*
m.x92*m.x13 + 0.0001*m.x92*m.x14 + 0.0001*m.x92*m.x15 + 0.0001*m.x92*m.x16 + 0.0001*m.x92*m.x17
+ 0.0001*m.x92*m.x18 + 0.0001*m.x92*m.x19 + 0.0001*m.x92*m.x20 + 0.0001*m.x92*m.x21 + 0.0001*
m.x92*m.x22 + 0.0001*m.x92*m.x23 + 0.0001*m.x92*m.x24 + 0.0001*m.x92*m.x25 + 0.0001*m.x92*m.x26
+ 0.0001*m.x92*m.x27 + 0.0001*m.x92*m.x28 + 0.0001*m.x92*m.x29 + 0.0001*m.x92*m.x30 + 0.0001*
m.x92*m.x31 + 0.0001*m.x92*m.x32 + 5.09913394219933*m.x92*m.x33 + 0.0001*m.x92*m.x34 + 0.0001*
m.x92*m.x35 + 0.0001*m.x92*m.x36 + 0.0001*m.x92*m.x37 + 0.0001*m.x92*m.x38 + 0.0001*m.x92*m.x39
+ 0.0001*m.x92*m.x40 + 0.0001*m.x92*m.x41 + 0.0001*m.x92*m.x42 + 0.0001*m.x92*m.x43 + 0.0001*
m.x92*m.x44 + 0.0001*m.x92*m.x45 + 0.0001*m.x92*m.x46 + 0.0001*m.x92*m.x47 + 0.0001*m.x92*m.x48
+ 0.0001*m.x92*m.x49 + 0.0001*m.x92*m.x50 + 0.0001*m.x92*m.x51 + 0.0001*m.x92*m.x52 + 0.0001*
m.x92*m.x53 + 0.0001*m.x92*m.x54 + 3.14439991707406*m.x92*m.x55 + 0.0001*m.x92*m.x56 + 0.0001*
m.x92*m.x57 + 0.0001*m.x92*m.x58 + 0.0001*m.x92*m.x59 + 0.0001*m.x92*m.x60 + 0.0001*m.x92*m.x61
+ 0.0001*m.x92*m.x62 + 0.0001*m.x92*m.x63 + 0.0001*m.x92*m.x64 + 0.0001*m.x92*m.x65 + 0.0001*
m.x92*m.x66 + 0.0001*m.x92*m.x67 + 0.0001*m.x92*m.x68 + 0.0001*m.x92*m.x69 + 0.0001*m.x92*m.x70
+ 0.0001*m.x92*m.x71 + 0.0001*m.x92*m.x72 + 0.0001*m.x92*m.x73 + 0.0001*m.x92*m.x74 + 0.0001*
m.x92*m.x75 + 0.0001*m.x92*m.x76 + 0.0001*m.x92*m.x77 + 0.0001*m.x92*m.x78 + 0.0001*m.x92*m.x79
+ 0.0001*m.x92*m.x80 + 0.0001*m.x92*m.x81 + 0.0001*m.x92*m.x82 + 0.0001*m.x92*m.x83 + 0.0001*
m.x92*m.x84 + 0.0001*m.x92*m.x85 + 0.0001*m.x92*m.x86 + 0.0001*m.x92*m.x87 + 0.0001*m.x92*m.x88
+ 0.0001*m.x92*m.x89 + 0.0001*m.x92*m.x90 + 0.0001*m.x92*m.x91 + 9.71234063548862*m.x92**2 +
0.0001*m.x92*m.x93 + 0.0001*m.x92*m.x94 + 0.0001*m.x92*m.x95 + 0.0001*m.x92*m.x96 + 0.0001*m.x92*
m.x97 + 0.0001*m.x92*m.x98 + 0.0001*m.x92*m.x99 + 0.0001*m.x92*m.x100 + 0.0001*m.x92*m.x101 +
0.0001*m.x92*m.x102 + 0.0001*m.x92*m.x103 + 0.0001*m.x92*m.x104 + 0.0001*m.x92*m.x105 + 0.0001*
m.x92*m.x106 + 0.0001*m.x92*m.x107 + 0.0001*m.x92*m.x108 + 0.0001*m.x92*m.x109 + 0.0001*m.x92*
m.x110 + 0.0001*m.x92*m.x111 + 0.0001*m.x92*m.x112 + 0.0001*m.x92*m.x113 + 0.0001*m.x92*m.x114 +
0.0001*m.x92*m.x115 + 0.0001*m.x92*m.x116 + 0.0001*m.x92*m.x117 + 0.0001*m.x92*m.x118 + 0.0001*
m.x92*m.x119 + 0.0001*m.x92*m.x120 + 0.0001*m.x92*m.x121 + 0.0001*m.x92*m.x122 + 0.0001*m.x92*
m.x123 + 0.0001*m.x92*m.x124 + 0.0001*m.x92*m.x125 + 0.0001*m.x92*m.x126 + 0.0001*m.x92*m.x127 +
0.0001*m.x92*m.x128 + 0.0001*m.x92*m.x129 + 0.0001*m.x92*m.x130 + 0.0001*m.x92*m.x131 + 0.0001*
m.x92*m.x132 + 0.0001*m.x92*m.x133 + 0.0001*m.x92*m.x134 + 0.0001*m.x92*m.x135 + 0.0001*m.x92*
m.x136 + 0.0001*m.x92*m.x137 + 0.0001*m.x92*m.x138 + 0.0001*m.x92*m.x139 + 0.0001*m.x92*m.x140 +
0.0001*m.x92*m.x141 + 0.0001*m.x92*m.x142 + 0.0001*m.x92*m.x143 + 0.0001*m.x92*m.x144 + 0.0001*
m.x92*m.x145 + 0.0001*m.x92*m.x146 + 0.0001*m.x92*m.x147 + 0.0001*m.x92*m.x148 + 0.0001*m.x92*
m.x149 + 0.0001*m.x92*m.x150 + 0.0001*m.x92*m.x151 + 0.0001*m.x92*m.x152 + 0.0001*m.x92*m.x153 +
0.0001*m.x92*m.x154 + 0.0001*m.x92*m.x155 + 0.0001*m.x92*m.x156 + 0.0001*m.x92*m.x157 + 0.0001*
m.x92*m.x158 + 0.0001*m.x92*m.x159 + 0.0001*m.x92*m.x160 + 0.0001*m.x92*m.x161 + 0.0001*m.x92*
m.x162 + 0.0001*m.x92*m.x163 + 0.0001*m.x92*m.x164 + 0.0001*m.x92*m.x165 + 0.0001*m.x92*m.x166 +
0.0001*m.x92*m.x167 + 0.0001*m.x92*m.x168 + 0.0001*m.x92*m.x169 + 0.0001*m.x92*m.x170 + 0.0001*
m.x92*m.x171 + 0.0001*m.x92*m.x172 + 0.0001*m.x92*m.x173 + 0.0001*m.x92*m.x174 + 0.0001*m.x92*
m.x175 + 0.0001*m.x92*m.x176 + 0.0001*m.x92*m.x177 + 0.0001*m.x92*m.x178 + 0.0001*m.x92*m.x179 +
0.0001*m.x92*m.x180 + 0.0001*m.x92*m.x181 + 0.0001*m.x92*m.x182 + 0.0001*m.x92*m.x183 + 0.0001*
m.x92*m.x184 + 0.0001*m.x92*m.x185 + 0.0001*m.x93*m.x1 + 0.0001*m.x93*m.x2 + 0.0001*m.x93*m.x3 +
0.0001*m.x93*m.x4 + 0.0001*m.x93*m.x5 + 0.0001*m.x93*m.x6 + 0.0001*m.x93*m.x7 + 0.0001*m.x93*m.x8
+ 0.0001*m.x93*m.x9 + 0.0001*m.x93*m.x10 + 0.0001*m.x93*m.x11 + 0.0001*m.x93*m.x12 + 0.0001*
m.x93*m.x13 + 0.0001*m.x93*m.x14 + 0.0001*m.x93*m.x15 + 0.0001*m.x93*m.x16 + 0.0001*m.x93*m.x17
+ 0.0001*m.x93*m.x18 + 0.0001*m.x93*m.x19 + 0.0001*m.x93*m.x20 + 0.0001*m.x93*m.x21 + 0.0001*
m.x93*m.x22 + 0.0001*m.x93*m.x23 + 0.0001*m.x93*m.x24 + 0.0001*m.x93*m.x25 + 0.0001*m.x93*m.x26
+ 0.0001*m.x93*m.x27 + 0.0001*m.x93*m.x28 + 0.0001*m.x93*m.x29 + 0.0001*m.x93*m.x30 + 0.0001*
m.x93*m.x31 + 0.0001*m.x93*m.x32 + 0.0001*m.x93*m.x33 + 5.09913394219933*m.x93*m.x34 + 0.0001*
m.x93*m.x35 + 0.0001*m.x93*m.x36 + 0.0001*m.x93*m.x37 + 0.0001*m.x93*m.x38 + 0.0001*m.x93*m.x39
+ 0.0001*m.x93*m.x40 + 0.0001*m.x93*m.x41 + 0.0001*m.x93*m.x42 + 0.0001*m.x93*m.x43 + 0.0001*
m.x93*m.x44 + 0.0001*m.x93*m.x45 + 0.0001*m.x93*m.x46 + 0.0001*m.x93*m.x47 + 0.0001*m.x93*m.x48
+ 0.0001*m.x93*m.x49 + 0.0001*m.x93*m.x50 + 0.0001*m.x93*m.x51 + 0.0001*m.x93*m.x52 + 0.0001*
m.x93*m.x53 + 0.0001*m.x93*m.x54 + 0.0001*m.x93*m.x55 + 3.14439991707406*m.x93*m.x56 + 0.0001*
m.x93*m.x57 + 0.0001*m.x93*m.x58 + 0.0001*m.x93*m.x59 + 0.0001*m.x93*m.x60 + 0.0001*m.x93*m.x61
+ 0.0001*m.x93*m.x62 + 0.0001*m.x93*m.x63 + 0.0001*m.x93*m.x64 + 0.0001*m.x93*m.x65 + 0.0001*
m.x93*m.x66 + 0.0001*m.x93*m.x67 + 0.0001*m.x93*m.x68 + 0.0001*m.x93*m.x69 + 0.0001*m.x93*m.x70
+ 0.0001*m.x93*m.x71 + 0.0001*m.x93*m.x72 + 0.0001*m.x93*m.x73 + 0.0001*m.x93*m.x74 + 0.0001*
m.x93*m.x75 + 0.0001*m.x93*m.x76 + 0.0001*m.x93*m.x77 + 0.0001*m.x93*m.x78 + 0.0001*m.x93*m.x79
+ 0.0001*m.x93*m.x80 + 0.0001*m.x93*m.x81 + 0.0001*m.x93*m.x82 + 0.0001*m.x93*m.x83 + 0.0001*
m.x93*m.x84 + 0.0001*m.x93*m.x85 + 0.0001*m.x93*m.x86 + 0.0001*m.x93*m.x87 + 0.0001*m.x93*m.x88
+ 0.0001*m.x93*m.x89 + 0.0001*m.x93*m.x90 + 0.0001*m.x93*m.x91 + 0.0001*m.x93*m.x92 +
9.71234063548862*m.x93**2 + 0.0001*m.x93*m.x94 + 0.0001*m.x93*m.x95 + 0.0001*m.x93*m.x96 + 0.0001
*m.x93*m.x97 + 0.0001*m.x93*m.x98 + 0.0001*m.x93*m.x99 + 0.0001*m.x93*m.x100 + 0.0001*m.x93*
m.x101 + 0.0001*m.x93*m.x102 + 0.0001*m.x93*m.x103 + 0.0001*m.x93*m.x104 + 0.0001*m.x93*m.x105 +
0.0001*m.x93*m.x106 + 0.0001*m.x93*m.x107 + 0.0001*m.x93*m.x108 + 0.0001*m.x93*m.x109 + 0.0001*
m.x93*m.x110 + 0.0001*m.x93*m.x111 + 0.0001*m.x93*m.x112 + 0.0001*m.x93*m.x113 + 0.0001*m.x93*
m.x114 + 0.0001*m.x93*m.x115 + 0.0001*m.x93*m.x116 + 0.0001*m.x93*m.x117 + 0.0001*m.x93*m.x118 +
0.0001*m.x93*m.x119 + 0.0001*m.x93*m.x120 + 0.0001*m.x93*m.x121 + 0.0001*m.x93*m.x122 + 0.0001*
m.x93*m.x123 + 0.0001*m.x93*m.x124 + 0.0001*m.x93*m.x125 + 0.0001*m.x93*m.x126 + 0.0001*m.x93*
m.x127 + 0.0001*m.x93*m.x128 + 0.0001*m.x93*m.x129 + 1.35189577717393*m.x93*m.x130 + 0.0001*m.x93
*m.x131 + 0.0001*m.x93*m.x132 + 0.0001*m.x93*m.x133 + 0.0001*m.x93*m.x134 + 0.0001*m.x93*m.x135
+ 0.0001*m.x93*m.x136 + 0.0001*m.x93*m.x137 + 0.0001*m.x93*m.x138 + 0.0001*m.x93*m.x139 + 0.0001
*m.x93*m.x140 + 0.0001*m.x93*m.x141 + 0.0001*m.x93*m.x142 + 0.0001*m.x93*m.x143 + 0.0001*m.x93*
m.x144 + 0.0001*m.x93*m.x145 + 0.0001*m.x93*m.x146 + 0.0001*m.x93*m.x147 + 0.0001*m.x93*m.x148 +
0.0001*m.x93*m.x149 + 0.0001*m.x93*m.x150 + 0.0001*m.x93*m.x151 + 0.0001*m.x93*m.x152 + 0.0001*
m.x93*m.x153 + 0.0001*m.x93*m.x154 + 0.0001*m.x93*m.x155 + 0.0001*m.x93*m.x156 + 0.0001*m.x93*
m.x157 + 0.0001*m.x93*m.x158 + 0.0001*m.x93*m.x159 + 0.0001*m.x93*m.x160 + 0.0001*m.x93*m.x161 +
0.0001*m.x93*m.x162 + 0.0001*m.x93*m.x163 + 0.0001*m.x93*m.x164 + 0.0001*m.x93*m.x165 + 0.0001*
m.x93*m.x166 + 0.0001*m.x93*m.x167 + 0.0001*m.x93*m.x168 + 0.0001*m.x93*m.x169 + 0.0001*m.x93*
m.x170 + 0.0001*m.x93*m.x171 + 0.0001*m.x93*m.x172 + 0.0001*m.x93*m.x173 + 0.0001*m.x93*m.x174 +
0.0001*m.x93*m.x175 + 0.0001*m.x93*m.x176 + 0.0001*m.x93*m.x177 + 0.0001*m.x93*m.x178 + 0.0001*
m.x93*m.x179 + 0.0001*m.x93*m.x180 + 0.0001*m.x93*m.x181 + 0.0001*m.x93*m.x182 + 0.0001*m.x93*
m.x183 + 0.0001*m.x93*m.x184 + 0.0001*m.x93*m.x185 + 0.0001*m.x94*m.x1 + 0.0001*m.x94*m.x2 +
0.0001*m.x94*m.x3 + 0.0001*m.x94*m.x4 + 0.0001*m.x94*m.x5 + 0.0001*m.x94*m.x6 + 0.0001*m.x94*m.x7
+ 0.0001*m.x94*m.x8 + 0.0001*m.x94*m.x9 + 0.0001*m.x94*m.x10 + 0.0001*m.x94*m.x11 + 0.0001*m.x94
*m.x12 + 0.0001*m.x94*m.x13 + 0.0001*m.x94*m.x14 + 0.0001*m.x94*m.x15 + 0.0001*m.x94*m.x16 +
0.0001*m.x94*m.x17 + 0.0001*m.x94*m.x18 + 0.0001*m.x94*m.x19 + 0.0001*m.x94*m.x20 + 0.0001*m.x94*
m.x21 + 0.0001*m.x94*m.x22 + 0.0001*m.x94*m.x23 + 0.0001*m.x94*m.x24 + 0.638156568960432*m.x94*
m.x25 + 0.0001*m.x94*m.x26 + 0.0001*m.x94*m.x27 + 0.0001*m.x94*m.x28 + 0.0001*m.x94*m.x29 +
0.0001*m.x94*m.x30 + 0.0001*m.x94*m.x31 + 0.0001*m.x94*m.x32 + 0.0001*m.x94*m.x33 + 0.0001*m.x94*
m.x34 + 5.14749668329507*m.x94*m.x35 + 0.0001*m.x94*m.x36 + 0.0001*m.x94*m.x37 + 0.0001*m.x94*
m.x38 + 0.0001*m.x94*m.x39 + 0.0001*m.x94*m.x40 + 0.0001*m.x94*m.x41 + 0.0001*m.x94*m.x42 +
0.0001*m.x94*m.x43 + 0.0001*m.x94*m.x44 + 0.0001*m.x94*m.x45 + 0.0001*m.x94*m.x46 + 0.0001*m.x94*
m.x47 + 0.0001*m.x94*m.x48 + 0.0001*m.x94*m.x49 + 0.0001*m.x94*m.x50 + 0.0001*m.x94*m.x51 +
0.0001*m.x94*m.x52 + 0.0001*m.x94*m.x53 + 0.0001*m.x94*m.x54 + 0.0001*m.x94*m.x55 + 0.0001*m.x94*
m.x56 + 3.21771003868294*m.x94*m.x57 + 0.0001*m.x94*m.x58 + 0.0001*m.x94*m.x59 + 0.0001*m.x94*
m.x60 + 0.0001*m.x94*m.x61 + 0.0001*m.x94*m.x62 + 0.0001*m.x94*m.x63 + 0.0001*m.x94*m.x64 +
0.0001*m.x94*m.x65 + 0.0001*m.x94*m.x66 + 0.0001*m.x94*m.x67 + 0.0001*m.x94*m.x68 + 0.0001*m.x94*
m.x69 + 0.0001*m.x94*m.x70 + 0.0001*m.x94*m.x71 + 0.0001*m.x94*m.x72 + 0.0001*m.x94*m.x73 +
0.0001*m.x94*m.x74 + 0.0001*m.x94*m.x75 + 0.0001*m.x94*m.x76 + 0.0001*m.x94*m.x77 + 0.0001*m.x94*
m.x78 + 0.0001*m.x94*m.x79 + 0.0001*m.x94*m.x80 + 0.0001*m.x94*m.x81 + 0.0001*m.x94*m.x82 +
0.0001*m.x94*m.x83 + 0.0001*m.x94*m.x84 + 0.0001*m.x94*m.x85 + 0.0001*m.x94*m.x86 + 0.0001*m.x94*
m.x87 + 0.0001*m.x94*m.x88 + 0.0001*m.x94*m.x89 + 0.0001*m.x94*m.x90 + 0.0001*m.x94*m.x91 +
0.0001*m.x94*m.x92 + 0.0001*m.x94*m.x93 + 9.71234063548862*m.x94**2 + 0.0001*m.x94*m.x95 + 0.0001
*m.x94*m.x96 + 0.0001*m.x94*m.x97 + 0.0001*m.x94*m.x98 + 0.0001*m.x94*m.x99 + 0.0001*m.x94*m.x100
+ 0.0001*m.x94*m.x101 + 0.0001*m.x94*m.x102 + 0.0001*m.x94*m.x103 + 0.0001*m.x94*m.x104 + 0.0001
*m.x94*m.x105 + 0.0001*m.x94*m.x106 + 0.0001*m.x94*m.x107 + 0.0001*m.x94*m.x108 + 0.0001*m.x94*
m.x109 + 0.0001*m.x94*m.x110 + 0.0001*m.x94*m.x111 + 0.0001*m.x94*m.x112 + 0.0001*m.x94*m.x113 +
0.0001*m.x94*m.x114 + 0.0001*m.x94*m.x115 + 0.0001*m.x94*m.x116 + 0.0001*m.x94*m.x117 + 0.0001*
m.x94*m.x118 + 0.0001*m.x94*m.x119 + 0.0001*m.x94*m.x120 + 0.0001*m.x94*m.x121 + 0.0001*m.x94*
m.x122 + 0.0001*m.x94*m.x123 + 0.0001*m.x94*m.x124 + 0.0001*m.x94*m.x125 + 0.0001*m.x94*m.x126 +
0.0001*m.x94*m.x127 + 0.0001*m.x94*m.x128 + 0.0001*m.x94*m.x129 + 0.0001*m.x94*m.x130 +
1.35189577717393*m.x94*m.x131 + 0.0001*m.x94*m.x132 + 0.0001*m.x94*m.x133 + 0.0001*m.x94*m.x134
+ 0.0001*m.x94*m.x135 + 0.0001*m.x94*m.x136 + 0.0001*m.x94*m.x137 + 0.0001*m.x94*m.x138 + 0.0001
*m.x94*m.x139 + 0.0001*m.x94*m.x140 + 0.0001*m.x94*m.x141 + 0.0001*m.x94*m.x142 + 0.0001*m.x94*
m.x143 + 0.0001*m.x94*m.x144 + 0.0001*m.x94*m.x145 + 0.0001*m.x94*m.x146 + 0.0001*m.x94*m.x147 +
0.0001*m.x94*m.x148 + 0.0001*m.x94*m.x149 + 0.0001*m.x94*m.x150 + 0.0001*m.x94*m.x151 + 0.0001*
m.x94*m.x152 + 0.0001*m.x94*m.x153 + 0.0001*m.x94*m.x154 + 0.0001*m.x94*m.x155 + 0.0001*m.x94*
m.x156 + 0.0001*m.x94*m.x157 + 0.0001*m.x94*m.x158 + 0.0001*m.x94*m.x159 + 0.0001*m.x94*m.x160 +
0.0001*m.x94*m.x161 + 0.0001*m.x94*m.x162 + 0.0001*m.x94*m.x163 + 0.0001*m.x94*m.x164 + 0.0001*
m.x94*m.x165 + 0.0001*m.x94*m.x166 + 0.0001*m.x94*m.x167 + 0.0001*m.x94*m.x168 + 0.0001*m.x94*
m.x169 + 0.0001*m.x94*m.x170 + 0.0001*m.x94*m.x171 + 0.0001*m.x94*m.x172 + 0.0001*m.x94*m.x173 +
0.0001*m.x94*m.x174 + 0.0001*m.x94*m.x175 + 0.0001*m.x94*m.x176 + 0.0001*m.x94*m.x177 + 0.0001*
m.x94*m.x178 + 0.0001*m.x94*m.x179 + 0.0001*m.x94*m.x180 + 0.0001*m.x94*m.x181 + 0.0001*m.x94*
m.x182 + 0.0001*m.x94*m.x183 + 0.0001*m.x94*m.x184 + 0.0001*m.x94*m.x185 + 0.0001*m.x95*m.x1 +
0.0001*m.x95*m.x2 + 0.0001*m.x95*m.x3 + 0.0001*m.x95*m.x4 + 0.0001*m.x95*m.x5 + 0.0001*m.x95*m.x6
+ 0.0001*m.x95*m.x7 + 0.0001*m.x95*m.x8 + 0.0001*m.x95*m.x9 + 0.0001*m.x95*m.x10 + 0.0001*m.x95*
m.x11 + 0.0001*m.x95*m.x12 + 0.0001*m.x95*m.x13 + 0.0001*m.x95*m.x14 + 0.0001*m.x95*m.x15 +
0.0001*m.x95*m.x16 + 0.0001*m.x95*m.x17 + 0.0001*m.x95*m.x18 + 0.0001*m.x95*m.x19 + 0.0001*m.x95*
m.x20 + 0.0001*m.x95*m.x21 + 0.0001*m.x95*m.x22 + 0.0001*m.x95*m.x23 + 0.0001*m.x95*m.x24 +
0.0001*m.x95*m.x25 + 0.620513780689159*m.x95*m.x26 + 0.0001*m.x95*m.x27 + 0.0001*m.x95*m.x28 +
0.0001*m.x95*m.x29 + 0.0001*m.x95*m.x30 + 0.0001*m.x95*m.x31 + 0.0001*m.x95*m.x32 + 0.0001*m.x95*
m.x33 + 0.0001*m.x95*m.x34 + 0.0001*m.x95*m.x35 + 0.0001*m.x95*m.x36 + 0.0001*m.x95*m.x37 +
0.0001*m.x95*m.x38 + 0.0001*m.x95*m.x39 + 0.0001*m.x95*m.x40 + 0.0001*m.x95*m.x41 + 0.0001*m.x95*
m.x42 + 0.0001*m.x95*m.x43 + 0.0001*m.x95*m.x44 + 0.0001*m.x95*m.x45 + 0.0001*m.x95*m.x46 +
0.0001*m.x95*m.x47 + 0.0001*m.x95*m.x48 + 0.0001*m.x95*m.x49 + 0.0001*m.x95*m.x50 + 0.0001*m.x95*
m.x51 + 0.0001*m.x95*m.x52 + 0.0001*m.x95*m.x53 + 0.0001*m.x95*m.x54 + 0.0001*m.x95*m.x55 +
0.0001*m.x95*m.x56 + 0.0001*m.x95*m.x57 + 3.17841006619937*m.x95*m.x58 + 0.0001*m.x95*m.x59 +
0.0001*m.x95*m.x60 + 0.0001*m.x95*m.x61 + 0.0001*m.x95*m.x62 + 0.0001*m.x95*m.x63 + 0.0001*m.x95*
m.x64 + 0.0001*m.x95*m.x65 + 0.0001*m.x95*m.x66 + 0.0001*m.x95*m.x67 + 0.0001*m.x95*m.x68 +
0.0001*m.x95*m.x69 + 0.0001*m.x95*m.x70 + 0.0001*m.x95*m.x71 + 0.0001*m.x95*m.x72 + 0.0001*m.x95*
m.x73 + 0.0001*m.x95*m.x74 + 0.0001*m.x95*m.x75 + 0.0001*m.x95*m.x76 + 0.0001*m.x95*m.x77 +
0.0001*m.x95*m.x78 + 0.0001*m.x95*m.x79 + 0.0001*m.x95*m.x80 + 0.0001*m.x95*m.x81 + 0.0001*m.x95*
m.x82 + 0.0001*m.x95*m.x83 + 0.0001*m.x95*m.x84 + 0.0001*m.x95*m.x85 + 0.0001*m.x95*m.x86 +
0.0001*m.x95*m.x87 + 0.0001*m.x95*m.x88 + 0.0001*m.x95*m.x89 + 0.0001*m.x95*m.x90 + 0.0001*m.x95*
m.x91 + 0.0001*m.x95*m.x92 + 0.0001*m.x95*m.x93 + 0.0001*m.x95*m.x94 + 8.90453339415309*m.x95**2
+ 0.0001*m.x95*m.x96 + 0.0001*m.x95*m.x97 + 0.0001*m.x95*m.x98 + 0.0001*m.x95*m.x99 + 0.0001*
m.x95*m.x100 + 0.0001*m.x95*m.x101 + 0.0001*m.x95*m.x102 + 0.0001*m.x95*m.x103 + 0.0001*m.x95*
m.x104 + 0.0001*m.x95*m.x105 + 0.0001*m.x95*m.x106 + 0.0001*m.x95*m.x107 + 0.0001*m.x95*m.x108 +
0.0001*m.x95*m.x109 + 0.0001*m.x95*m.x110 + 0.0001*m.x95*m.x111 + 0.0001*m.x95*m.x112 + 0.0001*
m.x95*m.x113 + 0.0001*m.x95*m.x114 + 0.0001*m.x95*m.x115 + 0.0001*m.x95*m.x116 + 0.0001*m.x95*
m.x117 + 0.0001*m.x95*m.x118 + 0.0001*m.x95*m.x119 + 0.0001*m.x95*m.x120 + 0.0001*m.x95*m.x121 +
0.0001*m.x95*m.x122 + 0.0001*m.x95*m.x123 + 0.0001*m.x95*m.x124 + 0.0001*m.x95*m.x125 + 0.0001*
m.x95*m.x126 + 0.0001*m.x95*m.x127 + 0.0001*m.x95*m.x128 + 0.0001*m.x95*m.x129 + 0.0001*m.x95*
m.x130 + 0.0001*m.x95*m.x131 + 1.33196082493441*m.x95*m.x132 + 0.0001*m.x95*m.x133 + 0.0001*m.x95
*m.x134 + 0.0001*m.x95*m.x135 + 0.0001*m.x95*m.x136 + 0.0001*m.x95*m.x137 + 0.0001*m.x95*m.x138
+ 0.0001*m.x95*m.x139 + 0.0001*m.x95*m.x140 + 0.0001*m.x95*m.x141 + 0.0001*m.x95*m.x142 + 0.0001
*m.x95*m.x143 + 0.0001*m.x95*m.x144 + 0.0001*m.x95*m.x145 + 0.0001*m.x95*m.x146 + 0.0001*m.x95*
m.x147 + 0.0001*m.x95*m.x148 + 0.0001*m.x95*m.x149 + 0.0001*m.x95*m.x150 + 0.0001*m.x95*m.x151 +
0.0001*m.x95*m.x152 + 0.0001*m.x95*m.x153 + 0.0001*m.x95*m.x154 + 0.0001*m.x95*m.x155 + 0.0001*
m.x95*m.x156 + 0.0001*m.x95*m.x157 + 0.0001*m.x95*m.x158 + 0.0001*m.x95*m.x159 + 0.0001*m.x95*
m.x160 + 0.0001*m.x95*m.x161 + 0.0001*m.x95*m.x162 + 0.0001*m.x95*m.x163 + 0.0001*m.x95*m.x164 +
0.0001*m.x95*m.x165 + 0.0001*m.x95*m.x166 + 0.0001*m.x95*m.x167 + 0.0001*m.x95*m.x168 + 0.0001*
m.x95*m.x169 + 0.0001*m.x95*m.x170 + 0.0001*m.x95*m.x171 + 0.0001*m.x95*m.x172 + 0.0001*m.x95*
m.x173 + 0.0001*m.x95*m.x174 + 0.0001*m.x95*m.x175 + 0.0001*m.x95*m.x176 + 0.0001*m.x95*m.x177 +
0.0001*m.x95*m.x178 + 0.0001*m.x95*m.x179 + 0.0001*m.x95*m.x180 + 0.0001*m.x95*m.x181 + 0.0001*
m.x95*m.x182 + 0.0001*m.x95*m.x183 + 0.0001*m.x95*m.x184 + 0.0001*m.x95*m.x185 + 0.0001*m.x96*
m.x1 + 0.0001*m.x96*m.x2 + 0.0001*m.x96*m.x3 + 0.0001*m.x96*m.x4 + 0.0001*m.x96*m.x5 + 0.0001*
m.x96*m.x6 + 0.0001*m.x96*m.x7 + 0.0001*m.x96*m.x8 + 0.0001*m.x96*m.x9 + 0.0001*m.x96*m.x10 +
0.0001*m.x96*m.x11 + 0.0001*m.x96*m.x12 + 0.0001*m.x96*m.x13 + 0.0001*m.x96*m.x14 + 0.0001*m.x96*
m.x15 + 0.0001*m.x96*m.x16 + 0.0001*m.x96*m.x17 + 0.0001*m.x96*m.x18 + 0.0001*m.x96*m.x19 +
0.0001*m.x96*m.x20 + 0.0001*m.x96*m.x21 + 0.0001*m.x96*m.x22 + 0.0001*m.x96*m.x23 + 0.0001*m.x96*
m.x24 + 0.0001*m.x96*m.x25 + 0.0001*m.x96*m.x26 + 0.624057893929279*m.x96*m.x27 + 0.0001*m.x96*
m.x28 + 0.0001*m.x96*m.x29 + 0.0001*m.x96*m.x30 + 0.0001*m.x96*m.x31 + 0.0001*m.x96*m.x32 +
0.0001*m.x96*m.x33 + 0.0001*m.x96*m.x34 + 0.0001*m.x96*m.x35 + 0.0001*m.x96*m.x36 + 0.0001*m.x96*
m.x37 + 0.0001*m.x96*m.x38 + 0.0001*m.x96*m.x39 + 0.0001*m.x96*m.x40 + 0.0001*m.x96*m.x41 +
0.0001*m.x96*m.x42 + 0.0001*m.x96*m.x43 + 0.0001*m.x96*m.x44 + 0.0001*m.x96*m.x45 + 0.0001*m.x96*
m.x46 + 0.0001*m.x96*m.x47 + 0.0001*m.x96*m.x48 + 0.0001*m.x96*m.x49 + 0.0001*m.x96*m.x50 +
0.0001*m.x96*m.x51 + 0.0001*m.x96*m.x52 + 0.0001*m.x96*m.x53 + 0.0001*m.x96*m.x54 + 0.0001*m.x96*
m.x55 + 0.0001*m.x96*m.x56 + 0.0001*m.x96*m.x57 + 0.0001*m.x96*m.x58 + 0.0001*m.x96*m.x59 +
0.0001*m.x96*m.x60 + 0.0001*m.x96*m.x61 + 0.0001*m.x96*m.x62 + 0.0001*m.x96*m.x63 + 0.0001*m.x96*
m.x64 + 0.0001*m.x96*m.x65 + 0.0001*m.x96*m.x66 + 0.0001*m.x96*m.x67 + 0.0001*m.x96*m.x68 +
0.0001*m.x96*m.x69 + 0.0001*m.x96*m.x70 + 0.0001*m.x96*m.x71 + 0.0001*m.x96*m.x72 + 0.0001*m.x96*
m.x73 + 0.0001*m.x96*m.x74 + 0.0001*m.x96*m.x75 + 0.0001*m.x96*m.x76 + 0.0001*m.x96*m.x77 +
0.0001*m.x96*m.x78 + 0.0001*m.x96*m.x79 + 0.0001*m.x96*m.x80 + 0.0001*m.x96*m.x81 + 0.0001*m.x96*
m.x82 + 0.0001*m.x96*m.x83 + 0.0001*m.x96*m.x84 + 0.0001*m.x96*m.x85 + 0.0001*m.x96*m.x86 +
0.0001*m.x96*m.x87 + 0.0001*m.x96*m.x88 + 0.0001*m.x96*m.x89 + 0.0001*m.x96*m.x90 + 0.0001*m.x96*
m.x91 + 0.0001*m.x96*m.x92 + 0.0001*m.x96*m.x93 + 0.0001*m.x96*m.x94 + 0.0001*m.x96*m.x95 +
8.90453339415309*m.x96**2 + 0.0001*m.x96*m.x97 + 0.0001*m.x96*m.x98 + 0.0001*m.x96*m.x99 + 0.0001
*m.x96*m.x100 + 0.0001*m.x96*m.x101 + 0.0001*m.x96*m.x102 + 0.0001*m.x96*m.x103 + 0.0001*m.x96*
m.x104 + 0.0001*m.x96*m.x105 + 0.0001*m.x96*m.x106 + 0.0001*m.x96*m.x107 + 0.0001*m.x96*m.x108 +
0.0001*m.x96*m.x109 + 0.0001*m.x96*m.x110 + 0.0001*m.x96*m.x111 + 0.0001*m.x96*m.x112 + 0.0001*
m.x96*m.x113 + 0.0001*m.x96*m.x114 + 0.0001*m.x96*m.x115 + 0.0001*m.x96*m.x116 + 0.0001*m.x96*
m.x117 + 0.0001*m.x96*m.x118 + 0.0001*m.x96*m.x119 + 0.0001*m.x96*m.x120 + 0.0001*m.x96*m.x121 +
0.0001*m.x96*m.x122 + 0.0001*m.x96*m.x123 + 0.0001*m.x96*m.x124 + 0.0001*m.x96*m.x125 + 0.0001*
m.x96*m.x126 + 0.0001*m.x96*m.x127 + 0.0001*m.x96*m.x128 + 0.0001*m.x96*m.x129 + 0.0001*m.x96*
m.x130 + 0.0001*m.x96*m.x131 + 0.0001*m.x96*m.x132 + 1.32500350566268*m.x96*m.x133 + 0.0001*m.x96
*m.x134 + 0.0001*m.x96*m.x135 + 0.0001*m.x96*m.x136 + 0.0001*m.x96*m.x137 + 0.0001*m.x96*m.x138
+ 0.0001*m.x96*m.x139 + 0.0001*m.x96*m.x140 + 0.0001*m.x96*m.x141 + 0.0001*m.x96*m.x142 + 0.0001
*m.x96*m.x143 + 0.0001*m.x96*m.x144 + 0.0001*m.x96*m.x145 + 0.0001*m.x96*m.x146 + 0.0001*m.x96*
m.x147 + 0.0001*m.x96*m.x148 + 0.0001*m.x96*m.x149 + 0.0001*m.x96*m.x150 + 0.0001*m.x96*m.x151 +
0.0001*m.x96*m.x152 + 0.0001*m.x96*m.x153 + 0.0001*m.x96*m.x154 + 0.0001*m.x96*m.x155 + 0.0001*
m.x96*m.x156 + 0.0001*m.x96*m.x157 + 0.0001*m.x96*m.x158 + 0.0001*m.x96*m.x159 + 0.0001*m.x96*
m.x160 + 0.0001*m.x96*m.x161 + 0.0001*m.x96*m.x162 + 0.0001*m.x96*m.x163 + 0.0001*m.x96*m.x164 +
0.0001*m.x96*m.x165 + 0.0001*m.x96*m.x166 + 0.0001*m.x96*m.x167 + 0.0001*m.x96*m.x168 + 0.0001*
m.x96*m.x169 + 0.0001*m.x96*m.x170 + 0.0001*m.x96*m.x171 + 0.0001*m.x96*m.x172 + 0.0001*m.x96*
m.x173 + 0.0001*m.x96*m.x174 + 0.0001*m.x96*m.x175 + 0.0001*m.x96*m.x176 + 0.0001*m.x96*m.x177 +
0.0001*m.x96*m.x178 + 0.0001*m.x96*m.x179 + 0.0001*m.x96*m.x180 + 0.0001*m.x96*m.x181 + 0.0001*
m.x96*m.x182 + 0.0001*m.x96*m.x183 + 0.0001*m.x96*m.x184 + 0.0001*m.x96*m.x185 + 0.0001*m.x97*
m.x1 + 0.0001*m.x97*m.x2 + 0.0001*m.x97*m.x3 + 0.0001*m.x97*m.x4 + 0.0001*m.x97*m.x5 + 0.0001*
m.x97*m.x6 + 0.0001*m.x97*m.x7 + 0.0001*m.x97*m.x8 + 0.0001*m.x97*m.x9 + 0.0001*m.x97*m.x10 +
0.0001*m.x97*m.x11 + 0.0001*m.x97*m.x12 + 0.0001*m.x97*m.x13 + 0.0001*m.x97*m.x14 + 0.0001*m.x97*
m.x15 + 0.0001*m.x97*m.x16 + 0.0001*m.x97*m.x17 + 0.0001*m.x97*m.x18 + 0.0001*m.x97*m.x19 +
0.0001*m.x97*m.x20 + 0.0001*m.x97*m.x21 + 0.0001*m.x97*m.x22 + 0.0001*m.x97*m.x23 + 0.0001*m.x97*
m.x24 + 0.0001*m.x97*m.x25 + 0.0001*m.x97*m.x26 + 0.0001*m.x97*m.x27 + 0.624183321392942*m.x97*
m.x28 + 0.0001*m.x97*m.x29 + 0.0001*m.x97*m.x30 + 0.0001*m.x97*m.x31 + 0.0001*m.x97*m.x32 +
0.0001*m.x97*m.x33 + 0.0001*m.x97*m.x34 + 0.0001*m.x97*m.x35 + 0.0001*m.x97*m.x36 + 0.0001*m.x97*
m.x37 + 0.0001*m.x97*m.x38 + 0.0001*m.x97*m.x39 + 0.0001*m.x97*m.x40 + 0.0001*m.x97*m.x41 +
0.0001*m.x97*m.x42 + 0.0001*m.x97*m.x43 + 0.0001*m.x97*m.x44 + 0.0001*m.x97*m.x45 + 0.0001*m.x97*
m.x46 + 0.0001*m.x97*m.x47 + 0.0001*m.x97*m.x48 + 0.0001*m.x97*m.x49 + 0.0001*m.x97*m.x50 +
0.0001*m.x97*m.x51 + 0.0001*m.x97*m.x52 + 0.0001*m.x97*m.x53 + 0.0001*m.x97*m.x54 + 0.0001*m.x97*
m.x55 + 0.0001*m.x97*m.x56 + 0.0001*m.x97*m.x57 + 0.0001*m.x97*m.x58 + 0.0001*m.x97*m.x59 +
0.0001*m.x97*m.x60 + 0.0001*m.x97*m.x61 + 0.0001*m.x97*m.x62 + 0.0001*m.x97*m.x63 + 0.0001*m.x97*
m.x64 + 0.0001*m.x97*m.x65 + 0.0001*m.x97*m.x66 + 0.0001*m.x97*m.x67 + 0.0001*m.x97*m.x68 +
0.0001*m.x97*m.x69 + 0.0001*m.x97*m.x70 + 0.0001*m.x97*m.x71 + 0.0001*m.x97*m.x72 + 0.0001*m.x97*
m.x73 + 0.0001*m.x97*m.x74 + 0.0001*m.x97*m.x75 + 0.0001*m.x97*m.x76 + 0.0001*m.x97*m.x77 +
0.0001*m.x97*m.x78 + 0.0001*m.x97*m.x79 + 0.0001*m.x97*m.x80 + 0.0001*m.x97*m.x81 + 0.0001*m.x97*
m.x82 + 0.0001*m.x97*m.x83 + 0.0001*m.x97*m.x84 + 0.0001*m.x97*m.x85 + 0.0001*m.x97*m.x86 +
0.0001*m.x97*m.x87 + 0.0001*m.x97*m.x88 + 0.0001*m.x97*m.x89 + 0.0001*m.x97*m.x90 + 0.0001*m.x97*
m.x91 + 0.0001*m.x97*m.x92 + 0.0001*m.x97*m.x93 + 0.0001*m.x97*m.x94 + 0.0001*m.x97*m.x95 +
0.0001*m.x97*m.x96 + 8.90528676592052*m.x97**2 + 0.0001*m.x97*m.x98 + 0.0001*m.x97*m.x99 + 0.0001
*m.x97*m.x100 + 0.0001*m.x97*m.x101 + 0.0001*m.x97*m.x102 + 0.0001*m.x97*m.x103 + 0.0001*m.x97*
m.x104 + 0.0001*m.x97*m.x105 + 0.0001*m.x97*m.x106 + 0.0001*m.x97*m.x107 + 0.0001*m.x97*m.x108 +
0.0001*m.x97*m.x109 + 0.0001*m.x97*m.x110 + 0.0001*m.x97*m.x111 + 0.0001*m.x97*m.x112 + 0.0001*
m.x97*m.x113 + 0.0001*m.x97*m.x114 + 0.0001*m.x97*m.x115 + 0.0001*m.x97*m.x116 + 0.0001*m.x97*
m.x117 + 0.0001*m.x97*m.x118 + 0.0001*m.x97*m.x119 + 0.0001*m.x97*m.x120 + 0.0001*m.x97*m.x121 +
0.0001*m.x97*m.x122 + 0.0001*m.x97*m.x123 + 0.0001*m.x97*m.x124 + 0.0001*m.x97*m.x125 + 0.0001*
m.x97*m.x126 + 0.0001*m.x97*m.x127 + 0.0001*m.x97*m.x128 + 0.0001*m.x97*m.x129 + 0.0001*m.x97*
m.x130 + 0.0001*m.x97*m.x131 + 0.0001*m.x97*m.x132 + 0.0001*m.x97*m.x133 + 1.32511560093607*m.x97
*m.x134 + 0.0001*m.x97*m.x135 + 0.0001*m.x97*m.x136 + 0.0001*m.x97*m.x137 + 0.0001*m.x97*m.x138
+ 0.0001*m.x97*m.x139 + 0.0001*m.x97*m.x140 + 0.0001*m.x97*m.x141 + 0.0001*m.x97*m.x142 + 0.0001
*m.x97*m.x143 + 0.0001*m.x97*m.x144 + 0.0001*m.x97*m.x145 + 0.0001*m.x97*m.x146 + 0.0001*m.x97*
m.x147 + 0.0001*m.x97*m.x148 + 0.0001*m.x97*m.x149 + 0.0001*m.x97*m.x150 + 0.0001*m.x97*m.x151 +
0.0001*m.x97*m.x152 + 0.0001*m.x97*m.x153 + 0.0001*m.x97*m.x154 + 0.0001*m.x97*m.x155 + 0.0001*
m.x97*m.x156 + 0.0001*m.x97*m.x157 + 0.0001*m.x97*m.x158 + 0.0001*m.x97*m.x159 + 0.0001*m.x97*
m.x160 + 0.0001*m.x97*m.x161 + 0.0001*m.x97*m.x162 + 0.0001*m.x97*m.x163 + 0.0001*m.x97*m.x164 +
0.0001*m.x97*m.x165 + 0.0001*m.x97*m.x166 + 0.0001*m.x97*m.x167 + 0.0001*m.x97*m.x168 + 0.0001*
m.x97*m.x169 + 0.0001*m.x97*m.x170 + 0.0001*m.x97*m.x171 + 0.0001*m.x97*m.x172 + 0.0001*m.x97*
m.x173 + 0.0001*m.x97*m.x174 + 0.0001*m.x97*m.x175 + 0.0001*m.x97*m.x176 + 0.0001*m.x97*m.x177 +
0.0001*m.x97*m.x178 + 0.0001*m.x97*m.x179 + 0.0001*m.x97*m.x180 + 0.0001*m.x97*m.x181 + 0.0001*
m.x97*m.x182 + 0.0001*m.x97*m.x183 + 0.0001*m.x97*m.x184 + 0.0001*m.x97*m.x185 + 0.0001*m.x98*
m.x1 + 0.0001*m.x98*m.x2 + 0.0001*m.x98*m.x3 + 0.0001*m.x98*m.x4 + 0.0001*m.x98*m.x5 + 0.0001*
m.x98*m.x6 + 0.0001*m.x98*m.x7 + 0.0001*m.x98*m.x8 + 0.0001*m.x98*m.x9 + 0.0001*m.x98*m.x10 +
0.0001*m.x98*m.x11 + 0.0001*m.x98*m.x12 + 0.0001*m.x98*m.x13 + 0.0001*m.x98*m.x14 + 0.0001*m.x98*
m.x15 + 0.0001*m.x98*m.x16 + 0.0001*m.x98*m.x17 + 0.0001*m.x98*m.x18 + 0.0001*m.x98*m.x19 +
0.0001*m.x98*m.x20 + 0.0001*m.x98*m.x21 + 0.0001*m.x98*m.x22 + 0.0001*m.x98*m.x23 + 0.0001*m.x98*
m.x24 + 0.0001*m.x98*m.x25 + 0.0001*m.x98*m.x26 + 0.0001*m.x98*m.x27 + 0.0001*m.x98*m.x28 +
0.666827196622213*m.x98*m.x29 + 0.0001*m.x98*m.x30 + 0.0001*m.x98*m.x31 + 0.0001*m.x98*m.x32 +
0.0001*m.x98*m.x33 + 0.0001*m.x98*m.x34 + 0.0001*m.x98*m.x35 + 0.0001*m.x98*m.x36 + 0.0001*m.x98*
m.x37 + 0.0001*m.x98*m.x38 + 0.0001*m.x98*m.x39 + 0.0001*m.x98*m.x40 + 0.0001*m.x98*m.x41 +
0.0001*m.x98*m.x42 + 0.0001*m.x98*m.x43 + 0.0001*m.x98*m.x44 + 0.0001*m.x98*m.x45 + 0.0001*m.x98*
m.x46 + 0.0001*m.x98*m.x47 + 0.0001*m.x98*m.x48 + 0.0001*m.x98*m.x49 + 0.0001*m.x98*m.x50 +
0.0001*m.x98*m.x51 + 0.0001*m.x98*m.x52 + 0.0001*m.x98*m.x53 + 0.0001*m.x98*m.x54 + 0.0001*m.x98*
m.x55 + 0.0001*m.x98*m.x56 + 0.0001*m.x98*m.x57 + 0.0001*m.x98*m.x58 + 0.0001*m.x98*m.x59 +
0.0001*m.x98*m.x60 + 0.0001*m.x98*m.x61 + 0.0001*m.x98*m.x62 + 0.0001*m.x98*m.x63 + 0.0001*m.x98*
m.x64 + 0.0001*m.x98*m.x65 + 0.0001*m.x98*m.x66 + 0.0001*m.x98*m.x67 + 0.0001*m.x98*m.x68 +
0.0001*m.x98*m.x69 + 0.0001*m.x98*m.x70 + 0.0001*m.x98*m.x71 + 0.0001*m.x98*m.x72 + 0.0001*m.x98*
m.x73 + 0.0001*m.x98*m.x74 + 0.0001*m.x98*m.x75 + 0.0001*m.x98*m.x76 + 0.0001*m.x98*m.x77 +
0.0001*m.x98*m.x78 + 0.0001*m.x98*m.x79 + 0.0001*m.x98*m.x80 + 0.0001*m.x98*m.x81 + 0.0001*m.x98*
m.x82 + 0.0001*m.x98*m.x83 + 0.0001*m.x98*m.x84 + 0.0001*m.x98*m.x85 + 0.0001*m.x98*m.x86 +
0.0001*m.x98*m.x87 + 0.0001*m.x98*m.x88 + 0.0001*m.x98*m.x89 + 0.0001*m.x98*m.x90 + 0.0001*m.x98*
m.x91 + 0.0001*m.x98*m.x92 + 0.0001*m.x98*m.x93 + 0.0001*m.x98*m.x94 + 0.0001*m.x98*m.x95 +
0.0001*m.x98*m.x96 + 0.0001*m.x98*m.x97 + 8.93090213558665*m.x98**2 + 0.0001*m.x98*m.x99 + 0.0001
*m.x98*m.x100 + 0.0001*m.x98*m.x101 + 0.0001*m.x98*m.x102 + 0.0001*m.x98*m.x103 + 0.0001*m.x98*
m.x104 + 0.0001*m.x98*m.x105 + 0.0001*m.x98*m.x106 + 0.0001*m.x98*m.x107 + 0.0001*m.x98*m.x108 +
0.0001*m.x98*m.x109 + 0.0001*m.x98*m.x110 + 0.0001*m.x98*m.x111 + 0.0001*m.x98*m.x112 + 0.0001*
m.x98*m.x113 + 0.0001*m.x98*m.x114 + 0.0001*m.x98*m.x115 + 0.0001*m.x98*m.x116 + 0.0001*m.x98*
m.x117 + 0.0001*m.x98*m.x118 + 0.0001*m.x98*m.x119 + 0.0001*m.x98*m.x120 + 0.0001*m.x98*m.x121 +
0.0001*m.x98*m.x122 + 0.0001*m.x98*m.x123 + 0.0001*m.x98*m.x124 + 0.0001*m.x98*m.x125 + 0.0001*
m.x98*m.x126 + 0.0001*m.x98*m.x127 + 0.0001*m.x98*m.x128 + 0.0001*m.x98*m.x129 + 0.0001*m.x98*
m.x130 + 0.0001*m.x98*m.x131 + 0.0001*m.x98*m.x132 + 0.0001*m.x98*m.x133 + 0.0001*m.x98*m.x134 +
1.43304340993365*m.x98*m.x135 + 0.0001*m.x98*m.x136 + 0.0001*m.x98*m.x137 + 0.0001*m.x98*m.x138
+ 0.0001*m.x98*m.x139 + 0.0001*m.x98*m.x140 + 0.0001*m.x98*m.x141 + 0.0001*m.x98*m.x142 + 0.0001
*m.x98*m.x143 + 0.0001*m.x98*m.x144 + 0.0001*m.x98*m.x145 + 0.0001*m.x98*m.x146 + 0.0001*m.x98*
m.x147 + 0.0001*m.x98*m.x148 + 0.0001*m.x98*m.x149 + 0.0001*m.x98*m.x150 + 0.0001*m.x98*m.x151 +
0.0001*m.x98*m.x152 + 0.0001*m.x98*m.x153 + 0.0001*m.x98*m.x154 + 0.0001*m.x98*m.x155 + 0.0001*
m.x98*m.x156 + 0.0001*m.x98*m.x157 + 0.0001*m.x98*m.x158 + 0.0001*m.x98*m.x159 + 0.0001*m.x98*
m.x160 + 0.0001*m.x98*m.x161 + 0.0001*m.x98*m.x162 + 0.0001*m.x98*m.x163 + 0.0001*m.x98*m.x164 +
0.0001*m.x98*m.x165 + 0.0001*m.x98*m.x166 + 0.0001*m.x98*m.x167 + 0.0001*m.x98*m.x168 + 0.0001*
m.x98*m.x169 + 0.0001*m.x98*m.x170 + 0.0001*m.x98*m.x171 + 0.0001*m.x98*m.x172 + 0.0001*m.x98*
m.x173 + 0.0001*m.x98*m.x174 + 0.0001*m.x98*m.x175 + 0.0001*m.x98*m.x176 + 0.0001*m.x98*m.x177 +
0.0001*m.x98*m.x178 + 0.0001*m.x98*m.x179 + 0.0001*m.x98*m.x180 + 0.0001*m.x98*m.x181 + 0.0001*
m.x98*m.x182 + 0.0001*m.x98*m.x183 + 0.0001*m.x98*m.x184 + 0.0001*m.x98*m.x185 + 0.0001*m.x99*
m.x1 + 0.0001*m.x99*m.x2 + 0.0001*m.x99*m.x3 + 0.0001*m.x99*m.x4 + 0.0001*m.x99*m.x5 + 0.0001*
m.x99*m.x6 + 0.0001*m.x99*m.x7 + 0.0001*m.x99*m.x8 + 0.0001*m.x99*m.x9 + 0.0001*m.x99*m.x10 +
0.0001*m.x99*m.x11 + 0.0001*m.x99*m.x12 + 0.0001*m.x99*m.x13 + 0.0001*m.x99*m.x14 + 0.0001*m.x99*
m.x15 + 0.0001*m.x99*m.x16 + 0.0001*m.x99*m.x17 + 0.0001*m.x99*m.x18 + 0.0001*m.x99*m.x19 +
0.0001*m.x99*m.x20 + 0.0001*m.x99*m.x21 + 0.0001*m.x99*m.x22 + 0.0001*m.x99*m.x23 + 0.0001*m.x99*
m.x24 + 0.0001*m.x99*m.x25 + 0.0001*m.x99*m.x26 + 0.0001*m.x99*m.x27 + 0.0001*m.x99*m.x28 +
0.0001*m.x99*m.x29 + 0.0001*m.x99*m.x30 + 0.65193781790818*m.x99*m.x31 + 0.0001*m.x99*m.x32 +
0.0001*m.x99*m.x33 + 0.0001*m.x99*m.x34 + 0.0001*m.x99*m.x35 + 0.0001*m.x99*m.x36 + 0.0001*m.x99*
m.x37 + 0.0001*m.x99*m.x38 + 0.0001*m.x99*m.x39 + 0.0001*m.x99*m.x40 + 0.0001*m.x99*m.x41 +
0.0001*m.x99*m.x42 + 0.0001*m.x99*m.x43 + 0.0001*m.x99*m.x44 + 0.0001*m.x99*m.x45 + 0.0001*m.x99*
m.x46 + 0.0001*m.x99*m.x47 + 0.0001*m.x99*m.x48 + 0.0001*m.x99*m.x49 + 0.0001*m.x99*m.x50 +
0.0001*m.x99*m.x51 + 0.0001*m.x99*m.x52 + 0.0001*m.x99*m.x53 + 0.0001*m.x99*m.x54 + 0.0001*m.x99*
m.x55 + 0.0001*m.x99*m.x56 + 0.0001*m.x99*m.x57 + 0.0001*m.x99*m.x58 + 0.0001*m.x99*m.x59 +
0.0001*m.x99*m.x60 + 0.0001*m.x99*m.x61 + 0.0001*m.x99*m.x62 + 0.0001*m.x99*m.x63 + 0.0001*m.x99*
m.x64 + 0.0001*m.x99*m.x65 + 0.0001*m.x99*m.x66 + 0.0001*m.x99*m.x67 + 0.0001*m.x99*m.x68 +
0.0001*m.x99*m.x69 + 0.0001*m.x99*m.x70 + 0.0001*m.x99*m.x71 + 0.0001*m.x99*m.x72 + 0.0001*m.x99*
m.x73 + 0.0001*m.x99*m.x74 + 0.0001*m.x99*m.x75 + 0.0001*m.x99*m.x76 + 0.0001*m.x99*m.x77 +
0.0001*m.x99*m.x78 + 0.0001*m.x99*m.x79 + 0.0001*m.x99*m.x80 + 0.0001*m.x99*m.x81 + 0.0001*m.x99*
m.x82 + 0.0001*m.x99*m.x83 + 0.0001*m.x99*m.x84 + 0.0001*m.x99*m.x85 + 0.0001*m.x99*m.x86 +
0.0001*m.x99*m.x87 + 0.0001*m.x99*m.x88 + 0.0001*m.x99*m.x89 + 0.0001*m.x99*m.x90 + 0.0001*m.x99*
m.x91 + 0.0001*m.x99*m.x92 + 0.0001*m.x99*m.x93 + 0.0001*m.x99*m.x94 + 0.0001*m.x99*m.x95 +
0.0001*m.x99*m.x96 + 0.0001*m.x99*m.x97 + 0.0001*m.x99*m.x98 + 8.93090213558665*m.x99**2 + 0.0001
*m.x99*m.x100 + 0.0001*m.x99*m.x101 + 0.0001*m.x99*m.x102 + 0.0001*m.x99*m.x103 + 0.0001*m.x99*
m.x104 + 0.0001*m.x99*m.x105 + 0.0001*m.x99*m.x106 + 0.0001*m.x99*m.x107 + 0.0001*m.x99*m.x108 +
0.0001*m.x99*m.x109 + 0.0001*m.x99*m.x110 + 0.0001*m.x99*m.x111 + 0.0001*m.x99*m.x112 + 0.0001*
m.x99*m.x113 + 0.0001*m.x99*m.x114 + 0.0001*m.x99*m.x115 + 0.0001*m.x99*m.x116 + 0.0001*m.x99*
m.x117 + 0.0001*m.x99*m.x118 + 0.0001*m.x99*m.x119 + 0.0001*m.x99*m.x120 + 0.0001*m.x99*m.x121 +
0.0001*m.x99*m.x122 + 0.0001*m.x99*m.x123 + 0.0001*m.x99*m.x124 + 0.0001*m.x99*m.x125 + 0.0001*
m.x99*m.x126 + 0.0001*m.x99*m.x127 + 0.0001*m.x99*m.x128 + 0.0001*m.x99*m.x129 + 0.0001*m.x99*
m.x130 + 0.0001*m.x99*m.x131 + 0.0001*m.x99*m.x132 + 0.0001*m.x99*m.x133 + 0.0001*m.x99*m.x134 +
0.0001*m.x99*m.x135 + 0.0001*m.x99*m.x136 + 1.4635914120443*m.x99*m.x137 + 0.0001*m.x99*m.x138 +
0.0001*m.x99*m.x139 + 0.0001*m.x99*m.x140 + 0.0001*m.x99*m.x141 + 0.0001*m.x99*m.x142 + 0.0001*
m.x99*m.x143 + 0.0001*m.x99*m.x144 + 0.0001*m.x99*m.x145 + 0.0001*m.x99*m.x146 + 0.0001*m.x99*
m.x147 + 0.0001*m.x99*m.x148 + 0.0001*m.x99*m.x149 + 0.0001*m.x99*m.x150 + 0.0001*m.x99*m.x151 +
0.0001*m.x99*m.x152 + 0.0001*m.x99*m.x153 + 0.0001*m.x99*m.x154 + 0.0001*m.x99*m.x155 + 0.0001*
m.x99*m.x156 + 0.0001*m.x99*m.x157 + 0.0001*m.x99*m.x158 + 0.0001*m.x99*m.x159 + 0.0001*m.x99*
m.x160 + 0.0001*m.x99*m.x161 + 0.0001*m.x99*m.x162 + 0.0001*m.x99*m.x163 + 0.0001*m.x99*m.x164 +
0.0001*m.x99*m.x165 + 0.0001*m.x99*m.x166 + 0.0001*m.x99*m.x167 + 0.0001*m.x99*m.x168 + 0.0001*
m.x99*m.x169 + 0.0001*m.x99*m.x170 + 0.0001*m.x99*m.x171 + 0.0001*m.x99*m.x172 + 0.0001*m.x99*
m.x173 + 0.0001*m.x99*m.x174 + 0.0001*m.x99*m.x175 + 0.0001*m.x99*m.x176 + 0.0001*m.x99*m.x177 +
0.0001*m.x99*m.x178 + 0.0001*m.x99*m.x179 + 0.0001*m.x99*m.x180 + 0.0001*m.x99*m.x181 + 0.0001*
m.x99*m.x182 + 0.0001*m.x99*m.x183 + 0.0001*m.x99*m.x184 + 0.0001*m.x99*m.x185 + 0.0001*m.x100*
m.x1 + 0.0001*m.x100*m.x2 + 0.0001*m.x100*m.x3 + 0.0001*m.x100*m.x4 + 0.0001*m.x100*m.x5 + 0.0001
*m.x100*m.x6 + 0.0001*m.x100*m.x7 + 0.0001*m.x100*m.x8 + 0.0001*m.x100*m.x9 + 0.0001*m.x100*m.x10
+ 0.0001*m.x100*m.x11 + 0.0001*m.x100*m.x12 + 0.0001*m.x100*m.x13 + 0.0001*m.x100*m.x14 + 0.0001
*m.x100*m.x15 + 0.0001*m.x100*m.x16 + 0.0001*m.x100*m.x17 + 0.0001*m.x100*m.x18 + 0.0001*m.x100*
m.x19 + 0.0001*m.x100*m.x20 + 0.0001*m.x100*m.x21 + 0.0001*m.x100*m.x22 + 0.0001*m.x100*m.x23 +
0.0001*m.x100*m.x24 + 0.0001*m.x100*m.x25 + 0.0001*m.x100*m.x26 + 0.0001*m.x100*m.x27 + 0.0001*
m.x100*m.x28 + 0.0001*m.x100*m.x29 + 0.0001*m.x100*m.x30 + 0.0001*m.x100*m.x31 +
0.680247077879747*m.x100*m.x32 + 0.0001*m.x100*m.x33 + 0.0001*m.x100*m.x34 + 0.0001*m.x100*m.x35
+ 0.0001*m.x100*m.x36 + 0.0001*m.x100*m.x37 + 0.0001*m.x100*m.x38 + 0.0001*m.x100*m.x39 + 0.0001
*m.x100*m.x40 + 0.0001*m.x100*m.x41 + 0.0001*m.x100*m.x42 + 0.0001*m.x100*m.x43 + 0.0001*m.x100*
m.x44 + 0.0001*m.x100*m.x45 + 0.0001*m.x100*m.x46 + 0.0001*m.x100*m.x47 + 0.0001*m.x100*m.x48 +
0.0001*m.x100*m.x49 + 0.0001*m.x100*m.x50 + 0.0001*m.x100*m.x51 + 0.0001*m.x100*m.x52 + 0.0001*
m.x100*m.x53 + 0.0001*m.x100*m.x54 + 0.0001*m.x100*m.x55 + 0.0001*m.x100*m.x56 + 0.0001*m.x100*
m.x57 + 0.0001*m.x100*m.x58 + 0.0001*m.x100*m.x59 + 0.0001*m.x100*m.x60 + 0.0001*m.x100*m.x61 +
0.0001*m.x100*m.x62 + 0.0001*m.x100*m.x63 + 0.0001*m.x100*m.x64 + 0.0001*m.x100*m.x65 + 0.0001*
m.x100*m.x66 + 0.0001*m.x100*m.x67 + 0.0001*m.x100*m.x68 + 0.0001*m.x100*m.x69 + 0.0001*m.x100*
m.x70 + 0.0001*m.x100*m.x71 + 0.0001*m.x100*m.x72 + 0.0001*m.x100*m.x73 + 0.0001*m.x100*m.x74 +
0.0001*m.x100*m.x75 + 0.0001*m.x100*m.x76 + 0.0001*m.x100*m.x77 + 0.0001*m.x100*m.x78 + 0.0001*
m.x100*m.x79 + 0.0001*m.x100*m.x80 + 0.0001*m.x100*m.x81 + 0.0001*m.x100*m.x82 + 0.0001*m.x100*
m.x83 + 0.0001*m.x100*m.x84 + 0.0001*m.x100*m.x85 + 0.0001*m.x100*m.x86 + 0.0001*m.x100*m.x87 +
0.0001*m.x100*m.x88 + 0.0001*m.x100*m.x89 + 0.0001*m.x100*m.x90 + 0.0001*m.x100*m.x91 + 0.0001*
m.x100*m.x92 + 0.0001*m.x100*m.x93 + 0.0001*m.x100*m.x94 + 0.0001*m.x100*m.x95 + 0.0001*m.x100*
m.x96 + 0.0001*m.x100*m.x97 + 0.0001*m.x100*m.x98 + 0.0001*m.x100*m.x99 + 8.93090213558665*m.x100
**2 + 0.0001*m.x100*m.x101 + 0.0001*m.x100*m.x102 + 0.0001*m.x100*m.x103 + 0.0001*m.x100*m.x104
+ 0.0001*m.x100*m.x105 + 0.0001*m.x100*m.x106 + 0.0001*m.x100*m.x107 + 0.0001*m.x100*m.x108 +
0.0001*m.x100*m.x109 + 0.0001*m.x100*m.x110 + 0.0001*m.x100*m.x111 + 0.0001*m.x100*m.x112 +
0.0001*m.x100*m.x113 + 0.0001*m.x100*m.x114 + 0.0001*m.x100*m.x115 + 0.0001*m.x100*m.x116 +
0.0001*m.x100*m.x117 + 0.0001*m.x100*m.x118 + 0.0001*m.x100*m.x119 + 0.0001*m.x100*m.x120 +
0.0001*m.x100*m.x121 + 0.0001*m.x100*m.x122 + 0.0001*m.x100*m.x123 + 0.0001*m.x100*m.x124 +
0.0001*m.x100*m.x125 + 0.0001*m.x100*m.x126 + 0.0001*m.x100*m.x127 + 0.0001*m.x100*m.x128 +
0.0001*m.x100*m.x129 + 0.0001*m.x100*m.x130 + 0.0001*m.x100*m.x131 + 0.0001*m.x100*m.x132 +
0.0001*m.x100*m.x133 + 0.0001*m.x100*m.x134 + 0.0001*m.x100*m.x135 + 0.0001*m.x100*m.x136 +
0.0001*m.x100*m.x137 + 1.47288250170917*m.x100*m.x138 + 0.0001*m.x100*m.x139 + 0.0001*m.x100*
m.x140 + 0.0001*m.x100*m.x141 + 0.0001*m.x100*m.x142 + 0.0001*m.x100*m.x143 + 0.0001*m.x100*
m.x144 + 0.0001*m.x100*m.x145 + 0.0001*m.x100*m.x146 + 0.0001*m.x100*m.x147 + 0.0001*m.x100*
m.x148 + 0.0001*m.x100*m.x149 + 0.0001*m.x100*m.x150 + 0.0001*m.x100*m.x151 + 0.0001*m.x100*
m.x152 + 0.0001*m.x100*m.x153 + 0.0001*m.x100*m.x154 + 0.0001*m.x100*m.x155 + 0.0001*m.x100*
m.x156 + 0.0001*m.x100*m.x157 + 0.0001*m.x100*m.x158 + 0.0001*m.x100*m.x159 + 0.0001*m.x100*
m.x160 + 0.0001*m.x100*m.x161 + 0.0001*m.x100*m.x162 + 0.0001*m.x100*m.x163 + 0.0001*m.x100*
m.x164 + 0.0001*m.x100*m.x165 + 0.0001*m.x100*m.x166 + 0.0001*m.x100*m.x167 + 0.0001*m.x100*
m.x168 + 0.0001*m.x100*m.x169 + 0.0001*m.x100*m.x170 + 0.0001*m.x100*m.x171 + 0.0001*m.x100*
m.x172 + 0.0001*m.x100*m.x173 + 0.0001*m.x100*m.x174 + 0.0001*m.x100*m.x175 + 0.0001*m.x100*
m.x176 + 0.0001*m.x100*m.x177 + 0.0001*m.x100*m.x178 + 0.0001*m.x100*m.x179 + 0.0001*m.x100*
m.x180 + 0.0001*m.x100*m.x181 + 0.0001*m.x100*m.x182 + 0.0001*m.x100*m.x183 + 0.0001*m.x100*
m.x184 + 0.0001*m.x100*m.x185 + 0.0001*m.x101*m.x1 + 0.0001*m.x101*m.x2 + 0.0001*m.x101*m.x3 +
0.0001*m.x101*m.x4 + 0.0001*m.x101*m.x5 + 0.0001*m.x101*m.x6 + 0.0001*m.x101*m.x7 + 0.0001*m.x101
*m.x8 + 0.0001*m.x101*m.x9 + 0.0001*m.x101*m.x10 + 0.0001*m.x101*m.x11 + 0.0001*m.x101*m.x12 +
0.0001*m.x101*m.x13 + 0.0001*m.x101*m.x14 + 0.0001*m.x101*m.x15 + 0.0001*m.x101*m.x16 + 0.0001*
m.x101*m.x17 + 0.0001*m.x101*m.x18 + 0.0001*m.x101*m.x19 + 0.0001*m.x101*m.x20 + 0.0001*m.x101*
m.x21 + 0.0001*m.x101*m.x22 + 0.0001*m.x101*m.x23 + 0.0001*m.x101*m.x24 + 0.0001*m.x101*m.x25 +
0.0001*m.x101*m.x26 + 0.0001*m.x101*m.x27 + 0.0001*m.x101*m.x28 + 0.0001*m.x101*m.x29 + 0.0001*
m.x101*m.x30 + 0.0001*m.x101*m.x31 + 0.0001*m.x101*m.x32 + 0.646678640160985*m.x101*m.x33 +
0.0001*m.x101*m.x34 + 0.0001*m.x101*m.x35 + 0.0001*m.x101*m.x36 + 0.0001*m.x101*m.x37 + 0.0001*
m.x101*m.x38 + 0.0001*m.x101*m.x39 + 0.0001*m.x101*m.x40 + 0.0001*m.x101*m.x41 + 0.0001*m.x101*
m.x42 + 0.0001*m.x101*m.x43 + 0.0001*m.x101*m.x44 + 0.0001*m.x101*m.x45 + 0.0001*m.x101*m.x46 +
0.0001*m.x101*m.x47 + 0.0001*m.x101*m.x48 + 0.0001*m.x101*m.x49 + 0.0001*m.x101*m.x50 + 0.0001*
m.x101*m.x51 + 0.0001*m.x101*m.x52 + 0.0001*m.x101*m.x53 + 0.0001*m.x101*m.x54 + 0.0001*m.x101*
m.x55 + 0.0001*m.x101*m.x56 + 0.0001*m.x101*m.x57 + 0.0001*m.x101*m.x58 + 3.30746319381333*m.x101
*m.x59 + 0.0001*m.x101*m.x60 + 0.0001*m.x101*m.x61 + 0.0001*m.x101*m.x62 + 0.0001*m.x101*m.x63 +
0.0001*m.x101*m.x64 + 0.0001*m.x101*m.x65 + 0.0001*m.x101*m.x66 + 0.0001*m.x101*m.x67 + 0.0001*
m.x101*m.x68 + 0.0001*m.x101*m.x69 + 0.0001*m.x101*m.x70 + 0.0001*m.x101*m.x71 + 0.0001*m.x101*
m.x72 + 0.0001*m.x101*m.x73 + 0.0001*m.x101*m.x74 + 0.0001*m.x101*m.x75 + 0.0001*m.x101*m.x76 +
0.0001*m.x101*m.x77 + 0.0001*m.x101*m.x78 + 0.0001*m.x101*m.x79 + 0.0001*m.x101*m.x80 + 0.0001*
m.x101*m.x81 + 0.0001*m.x101*m.x82 + 0.0001*m.x101*m.x83 + 0.0001*m.x101*m.x84 + 0.0001*m.x101*
m.x85 + 0.0001*m.x101*m.x86 + 0.0001*m.x101*m.x87 + 0.0001*m.x101*m.x88 + 0.0001*m.x101*m.x89 +
0.0001*m.x101*m.x90 + 0.0001*m.x101*m.x91 + 0.0001*m.x101*m.x92 + 0.0001*m.x101*m.x93 + 0.0001*
m.x101*m.x94 + 0.0001*m.x101*m.x95 + 0.0001*m.x101*m.x96 + 0.0001*m.x101*m.x97 + 0.0001*m.x101*
m.x98 + 0.0001*m.x101*m.x99 + 0.0001*m.x101*m.x100 + 8.41588452763475*m.x101**2 + 0.0001*m.x101*
m.x102 + 0.0001*m.x101*m.x103 + 0.0001*m.x101*m.x104 + 0.0001*m.x101*m.x105 + 0.0001*m.x101*
m.x106 + 0.0001*m.x101*m.x107 + 0.0001*m.x101*m.x108 + 0.0001*m.x101*m.x109 + 0.0001*m.x101*
m.x110 + 0.0001*m.x101*m.x111 + 0.0001*m.x101*m.x112 + 0.0001*m.x101*m.x113 + 0.0001*m.x101*
m.x114 + 0.0001*m.x101*m.x115 + 0.0001*m.x101*m.x116 + 0.0001*m.x101*m.x117 + 0.0001*m.x101*
m.x118 + 0.0001*m.x101*m.x119 + 0.0001*m.x101*m.x120 + 0.0001*m.x101*m.x121 + 0.0001*m.x101*
m.x122 + 0.0001*m.x101*m.x123 + 0.0001*m.x101*m.x124 + 0.0001*m.x101*m.x125 + 0.0001*m.x101*
m.x126 + 0.0001*m.x101*m.x127 + 0.0001*m.x101*m.x128 + 0.0001*m.x101*m.x129 + 0.0001*m.x101*
m.x130 + 0.0001*m.x101*m.x131 + 0.0001*m.x101*m.x132 + 0.0001*m.x101*m.x133 + 0.0001*m.x101*
m.x134 + 0.0001*m.x101*m.x135 + 0.0001*m.x101*m.x136 + 0.0001*m.x101*m.x137 + 0.0001*m.x101*
m.x138 + 1.40576631319842*m.x101*m.x139 + 0.0001*m.x101*m.x140 + 0.0001*m.x101*m.x141 + 0.0001*
m.x101*m.x142 + 0.0001*m.x101*m.x143 + 0.0001*m.x101*m.x144 + 0.0001*m.x101*m.x145 + 0.0001*
m.x101*m.x146 + 0.0001*m.x101*m.x147 + 0.0001*m.x101*m.x148 + 0.0001*m.x101*m.x149 + 0.0001*
m.x101*m.x150 + 0.0001*m.x101*m.x151 + 0.0001*m.x101*m.x152 + 0.0001*m.x101*m.x153 + 0.0001*
m.x101*m.x154 + 0.0001*m.x101*m.x155 + 0.0001*m.x101*m.x156 + 0.0001*m.x101*m.x157 + 0.0001*
m.x101*m.x158 + 0.0001*m.x101*m.x159 + 0.0001*m.x101*m.x160 + 0.0001*m.x101*m.x161 + 0.0001*
m.x101*m.x162 + 0.0001*m.x101*m.x163 + 0.0001*m.x101*m.x164 + 0.0001*m.x101*m.x165 + 0.0001*
m.x101*m.x166 + 0.0001*m.x101*m.x167 + 0.0001*m.x101*m.x168 + 0.0001*m.x101*m.x169 + 0.0001*
m.x101*m.x170 + 0.0001*m.x101*m.x171 + 0.0001*m.x101*m.x172 + 0.0001*m.x101*m.x173 + 0.0001*
m.x101*m.x174 + 0.0001*m.x101*m.x175 + 0.0001*m.x101*m.x176 + 0.0001*m.x101*m.x177 + 0.0001*
m.x101*m.x178 + 0.0001*m.x101*m.x179 + 0.0001*m.x101*m.x180 + 0.0001*m.x101*m.x181 + 0.0001*
m.x101*m.x182 + 0.0001*m.x101*m.x183 + 0.0001*m.x101*m.x184 + 0.0001*m.x101*m.x185 + 0.0001*
m.x102*m.x1 + 0.0001*m.x102*m.x2 + 0.0001*m.x102*m.x3 + 0.0001*m.x102*m.x4 + 0.0001*m.x102*m.x5
+ 0.0001*m.x102*m.x6 + 0.0001*m.x102*m.x7 + 0.0001*m.x102*m.x8 + 0.0001*m.x102*m.x9 + 0.0001*
m.x102*m.x10 + 0.0001*m.x102*m.x11 + 0.0001*m.x102*m.x12 + 0.0001*m.x102*m.x13 + 0.0001*m.x102*
m.x14 + 0.0001*m.x102*m.x15 + 0.0001*m.x102*m.x16 + 0.0001*m.x102*m.x17 + 0.0001*m.x102*m.x18 +
0.0001*m.x102*m.x19 + 0.0001*m.x102*m.x20 + 0.0001*m.x102*m.x21 + 0.0001*m.x102*m.x22 + 0.0001*
m.x102*m.x23 + 0.0001*m.x102*m.x24 + 0.0001*m.x102*m.x25 + 0.0001*m.x102*m.x26 + 0.0001*m.x102*
m.x27 + 0.0001*m.x102*m.x28 + 0.0001*m.x102*m.x29 + 0.0001*m.x102*m.x30 + 0.0001*m.x102*m.x31 +
0.0001*m.x102*m.x32 + 0.0001*m.x102*m.x33 + 0.646596082213053*m.x102*m.x34 + 0.0001*m.x102*m.x35
+ 0.0001*m.x102*m.x36 + 0.0001*m.x102*m.x37 + 0.0001*m.x102*m.x38 + 0.0001*m.x102*m.x39 + 0.0001
*m.x102*m.x40 + 0.0001*m.x102*m.x41 + 0.0001*m.x102*m.x42 + 0.0001*m.x102*m.x43 + 0.0001*m.x102*
m.x44 + 0.0001*m.x102*m.x45 + 0.0001*m.x102*m.x46 + 0.0001*m.x102*m.x47 + 0.0001*m.x102*m.x48 +
0.0001*m.x102*m.x49 + 0.0001*m.x102*m.x50 + 0.0001*m.x102*m.x51 + 0.0001*m.x102*m.x52 + 0.0001*
m.x102*m.x53 + 0.0001*m.x102*m.x54 + 0.0001*m.x102*m.x55 + 0.0001*m.x102*m.x56 + 0.0001*m.x102*
m.x57 + 0.0001*m.x102*m.x58 + 0.0001*m.x102*m.x59 + 0.0001*m.x102*m.x60 + 0.0001*m.x102*m.x61 +
0.0001*m.x102*m.x62 + 0.0001*m.x102*m.x63 + 0.0001*m.x102*m.x64 + 0.0001*m.x102*m.x65 + 0.0001*
m.x102*m.x66 + 0.0001*m.x102*m.x67 + 0.0001*m.x102*m.x68 + 0.0001*m.x102*m.x69 + 0.0001*m.x102*
m.x70 + 0.0001*m.x102*m.x71 + 0.0001*m.x102*m.x72 + 0.0001*m.x102*m.x73 + 0.0001*m.x102*m.x74 +
0.0001*m.x102*m.x75 + 0.0001*m.x102*m.x76 + 0.0001*m.x102*m.x77 + 0.0001*m.x102*m.x78 + 0.0001*
m.x102*m.x79 + 0.0001*m.x102*m.x80 + 0.0001*m.x102*m.x81 + 0.0001*m.x102*m.x82 + 0.0001*m.x102*
m.x83 + 0.0001*m.x102*m.x84 + 0.0001*m.x102*m.x85 + 0.0001*m.x102*m.x86 + 0.0001*m.x102*m.x87 +
0.0001*m.x102*m.x88 + 0.0001*m.x102*m.x89 + 0.0001*m.x102*m.x90 + 0.0001*m.x102*m.x91 + 0.0001*
m.x102*m.x92 + 0.0001*m.x102*m.x93 + 0.0001*m.x102*m.x94 + 0.0001*m.x102*m.x95 + 0.0001*m.x102*
m.x96 + 0.0001*m.x102*m.x97 + 0.0001*m.x102*m.x98 + 0.0001*m.x102*m.x99 + 0.0001*m.x102*m.x100 +
0.0001*m.x102*m.x101 + 8.41588452763475*m.x102**2 + 0.0001*m.x102*m.x103 + 0.0001*m.x102*m.x104
+ 0.0001*m.x102*m.x105 + 0.0001*m.x102*m.x106 + 0.0001*m.x102*m.x107 + 0.0001*m.x102*m.x108 +
0.0001*m.x102*m.x109 + 0.0001*m.x102*m.x110 + 0.0001*m.x102*m.x111 + 0.0001*m.x102*m.x112 +
0.0001*m.x102*m.x113 + 0.0001*m.x102*m.x114 + 0.0001*m.x102*m.x115 + 0.0001*m.x102*m.x116 +
0.0001*m.x102*m.x117 + 0.0001*m.x102*m.x118 + 0.0001*m.x102*m.x119 + 0.0001*m.x102*m.x120 +
0.0001*m.x102*m.x121 + 0.0001*m.x102*m.x122 + 0.0001*m.x102*m.x123 + 0.0001*m.x102*m.x124 +
0.0001*m.x102*m.x125 + 0.0001*m.x102*m.x126 + 0.0001*m.x102*m.x127 + 0.0001*m.x102*m.x128 +
0.0001*m.x102*m.x129 + 0.0001*m.x102*m.x130 + 0.0001*m.x102*m.x131 + 0.0001*m.x102*m.x132 +
0.0001*m.x102*m.x133 + 0.0001*m.x102*m.x134 + 0.0001*m.x102*m.x135 + 0.0001*m.x102*m.x136 +
0.0001*m.x102*m.x137 + 0.0001*m.x102*m.x138 + 0.0001*m.x102*m.x139 + 1.40558683166425*m.x102*
m.x140 + 0.0001*m.x102*m.x141 + 0.0001*m.x102*m.x142 + 0.0001*m.x102*m.x143 + 0.0001*m.x102*
m.x144 + 0.0001*m.x102*m.x145 + 0.0001*m.x102*m.x146 + 0.0001*m.x102*m.x147 + 0.0001*m.x102*
m.x148 + 0.0001*m.x102*m.x149 + 0.0001*m.x102*m.x150 + 0.0001*m.x102*m.x151 + 0.0001*m.x102*
m.x152 + 0.0001*m.x102*m.x153 + 0.0001*m.x102*m.x154 + 0.0001*m.x102*m.x155 + 0.0001*m.x102*
m.x156 + 0.0001*m.x102*m.x157 + 0.0001*m.x102*m.x158 + 0.0001*m.x102*m.x159 + 0.0001*m.x102*
m.x160 + 0.0001*m.x102*m.x161 + 0.0001*m.x102*m.x162 + 0.0001*m.x102*m.x163 + 0.0001*m.x102*
m.x164 + 0.0001*m.x102*m.x165 + 0.0001*m.x102*m.x166 + 0.0001*m.x102*m.x167 + 0.0001*m.x102*
m.x168 + 0.0001*m.x102*m.x169 + 0.0001*m.x102*m.x170 + 0.0001*m.x102*m.x171 + 0.0001*m.x102*
m.x172 + 0.0001*m.x102*m.x173 + 0.0001*m.x102*m.x174 + 0.0001*m.x102*m.x175 + 0.0001*m.x102*
m.x176 + 0.0001*m.x102*m.x177 + 0.0001*m.x102*m.x178 + 0.0001*m.x102*m.x179 + 0.0001*m.x102*
m.x180 + 0.0001*m.x102*m.x181 + 0.0001*m.x102*m.x182 + 0.0001*m.x102*m.x183 + 0.0001*m.x102*
m.x184 + 0.0001*m.x102*m.x185 + 0.0001*m.x103*m.x1 + 0.0001*m.x103*m.x2 + 0.0001*m.x103*m.x3 +
0.0001*m.x103*m.x4 + 0.0001*m.x103*m.x5 + 0.0001*m.x103*m.x6 + 0.0001*m.x103*m.x7 + 0.0001*m.x103
*m.x8 + 0.0001*m.x103*m.x9 + 0.0001*m.x103*m.x10 + 0.0001*m.x103*m.x11 + 0.0001*m.x103*m.x12 +
0.0001*m.x103*m.x13 + 0.0001*m.x103*m.x14 + 0.0001*m.x103*m.x15 + 0.0001*m.x103*m.x16 + 0.0001*
m.x103*m.x17 + 0.0001*m.x103*m.x18 + 0.0001*m.x103*m.x19 + 0.0001*m.x103*m.x20 + 0.0001*m.x103*
m.x21 + 0.0001*m.x103*m.x22 + 0.0001*m.x103*m.x23 + 0.0001*m.x103*m.x24 + 0.0001*m.x103*m.x25 +
0.0001*m.x103*m.x26 + 0.0001*m.x103*m.x27 + 0.0001*m.x103*m.x28 + 0.0001*m.x103*m.x29 + 0.0001*
m.x103*m.x30 + 0.0001*m.x103*m.x31 + 0.0001*m.x103*m.x32 + 0.0001*m.x103*m.x33 + 0.0001*m.x103*
m.x34 + 0.650906304971047*m.x103*m.x35 + 0.0001*m.x103*m.x36 + 0.0001*m.x103*m.x37 + 0.0001*
m.x103*m.x38 + 0.0001*m.x103*m.x39 + 0.0001*m.x103*m.x40 + 0.0001*m.x103*m.x41 + 0.0001*m.x103*
m.x42 + 0.0001*m.x103*m.x43 + 0.0001*m.x103*m.x44 + 0.0001*m.x103*m.x45 + 0.0001*m.x103*m.x46 +
0.0001*m.x103*m.x47 + 0.0001*m.x103*m.x48 + 0.0001*m.x103*m.x49 + 0.0001*m.x103*m.x50 + 0.0001*
m.x103*m.x51 + 0.0001*m.x103*m.x52 + 0.0001*m.x103*m.x53 + 0.0001*m.x103*m.x54 + 0.0001*m.x103*
m.x55 + 0.0001*m.x103*m.x56 + 0.0001*m.x103*m.x57 + 0.0001*m.x103*m.x58 + 0.0001*m.x103*m.x59 +
0.0001*m.x103*m.x60 + 0.0001*m.x103*m.x61 + 0.0001*m.x103*m.x62 + 0.0001*m.x103*m.x63 + 0.0001*
m.x103*m.x64 + 0.0001*m.x103*m.x65 + 0.0001*m.x103*m.x66 + 0.0001*m.x103*m.x67 + 0.0001*m.x103*
m.x68 + 0.0001*m.x103*m.x69 + 0.0001*m.x103*m.x70 + 0.0001*m.x103*m.x71 + 0.0001*m.x103*m.x72 +
0.0001*m.x103*m.x73 + 0.0001*m.x103*m.x74 + 0.0001*m.x103*m.x75 + 0.0001*m.x103*m.x76 + 0.0001*
m.x103*m.x77 + 0.0001*m.x103*m.x78 + 0.0001*m.x103*m.x79 + 0.0001*m.x103*m.x80 + 0.0001*m.x103*
m.x81 + 0.0001*m.x103*m.x82 + 0.0001*m.x103*m.x83 + 0.0001*m.x103*m.x84 + 0.0001*m.x103*m.x85 +
0.0001*m.x103*m.x86 + 0.0001*m.x103*m.x87 + 0.0001*m.x103*m.x88 + 0.0001*m.x103*m.x89 + 0.0001*
m.x103*m.x90 + 0.0001*m.x103*m.x91 + 0.0001*m.x103*m.x92 + 0.0001*m.x103*m.x93 + 0.0001*m.x103*
m.x94 + 0.0001*m.x103*m.x95 + 0.0001*m.x103*m.x96 + 0.0001*m.x103*m.x97 + 0.0001*m.x103*m.x98 +
0.0001*m.x103*m.x99 + 0.0001*m.x103*m.x100 + 0.0001*m.x103*m.x101 + 0.0001*m.x103*m.x102 +
8.41588452763475*m.x103**2 + 0.0001*m.x103*m.x104 + 0.0001*m.x103*m.x105 + 0.0001*m.x103*m.x106
+ 0.0001*m.x103*m.x107 + 0.0001*m.x103*m.x108 + 0.0001*m.x103*m.x109 + 0.0001*m.x103*m.x110 +
0.0001*m.x103*m.x111 + 0.0001*m.x103*m.x112 + 0.0001*m.x103*m.x113 + 0.0001*m.x103*m.x114 +
0.0001*m.x103*m.x115 + 0.0001*m.x103*m.x116 + 0.0001*m.x103*m.x117 + 0.0001*m.x103*m.x118 +
0.0001*m.x103*m.x119 + 0.0001*m.x103*m.x120 + 0.0001*m.x103*m.x121 + 0.0001*m.x103*m.x122 +
0.0001*m.x103*m.x123 + 0.0001*m.x103*m.x124 + 0.0001*m.x103*m.x125 + 0.0001*m.x103*m.x126 +
0.0001*m.x103*m.x127 + 0.0001*m.x103*m.x128 + 0.0001*m.x103*m.x129 + 0.0001*m.x103*m.x130 +
0.0001*m.x103*m.x131 + 0.0001*m.x103*m.x132 + 0.0001*m.x103*m.x133 + 0.0001*m.x103*m.x134 +
0.0001*m.x103*m.x135 + 0.0001*m.x103*m.x136 + 0.0001*m.x103*m.x137 + 0.0001*m.x103*m.x138 +
0.0001*m.x103*m.x139 + 0.0001*m.x103*m.x140 + 1.40166389008506*m.x103*m.x141 + 0.0001*m.x103*
m.x142 + 0.0001*m.x103*m.x143 + 0.0001*m.x103*m.x144 + 0.0001*m.x103*m.x145 + 0.0001*m.x103*
m.x146 + 0.0001*m.x103*m.x147 + 0.0001*m.x103*m.x148 + 0.0001*m.x103*m.x149 + 0.0001*m.x103*
m.x150 + 0.0001*m.x103*m.x151 + 0.0001*m.x103*m.x152 + 0.0001*m.x103*m.x153 + 0.0001*m.x103*
m.x154 + 0.0001*m.x103*m.x155 + 0.0001*m.x103*m.x156 + 0.0001*m.x103*m.x157 + 0.0001*m.x103*
m.x158 + 0.0001*m.x103*m.x159 + 0.0001*m.x103*m.x160 + 0.0001*m.x103*m.x161 + 0.0001*m.x103*
m.x162 + 0.0001*m.x103*m.x163 + 0.0001*m.x103*m.x164 + 0.0001*m.x103*m.x165 + 0.0001*m.x103*
m.x166 + 0.0001*m.x103*m.x167 + 0.0001*m.x103*m.x168 + 0.0001*m.x103*m.x169 + 0.0001*m.x103*
m.x170 + 0.0001*m.x103*m.x171 + 0.0001*m.x103*m.x172 + 0.0001*m.x103*m.x173 + 0.0001*m.x103*
m.x174 + 0.0001*m.x103*m.x175 + 0.0001*m.x103*m.x176 + 0.0001*m.x103*m.x177 + 0.0001*m.x103*
m.x178 + 0.0001*m.x103*m.x179 + 0.0001*m.x103*m.x180 + 0.0001*m.x103*m.x181 + 0.0001*m.x103*
m.x182 + 0.0001*m.x103*m.x183 + 0.0001*m.x103*m.x184 + 0.0001*m.x103*m.x185 + 0.0001*m.x104*m.x1
+ 0.0001*m.x104*m.x2 + 0.0001*m.x104*m.x3 + 0.0001*m.x104*m.x4 + 0.0001*m.x104*m.x5 + 0.0001*
m.x104*m.x6 + 0.0001*m.x104*m.x7 + 0.0001*m.x104*m.x8 + 0.0001*m.x104*m.x9 + 0.0001*m.x104*m.x10
+ 0.0001*m.x104*m.x11 + 0.0001*m.x104*m.x12 + 0.0001*m.x104*m.x13 + 0.0001*m.x104*m.x14 + 0.0001
*m.x104*m.x15 + 0.0001*m.x104*m.x16 + 0.0001*m.x104*m.x17 + 0.0001*m.x104*m.x18 + 0.0001*m.x104*
m.x19 + 0.0001*m.x104*m.x20 + 0.0001*m.x104*m.x21 + 0.0001*m.x104*m.x22 + 0.0001*m.x104*m.x23 +
0.0001*m.x104*m.x24 + 0.0001*m.x104*m.x25 + 0.0001*m.x104*m.x26 + 0.0001*m.x104*m.x27 + 0.0001*
m.x104*m.x28 + 0.0001*m.x104*m.x29 + 0.0001*m.x104*m.x30 + 0.0001*m.x104*m.x31 + 0.0001*m.x104*
m.x32 + 0.0001*m.x104*m.x33 + 0.0001*m.x104*m.x34 + 0.0001*m.x104*m.x35 + 0.0001*m.x104*m.x36 +
0.0001*m.x104*m.x37 + 0.0001*m.x104*m.x38 + 0.0001*m.x104*m.x39 + 0.0001*m.x104*m.x40 + 0.0001*
m.x104*m.x41 + 0.0001*m.x104*m.x42 + 0.0001*m.x104*m.x43 + 0.0001*m.x104*m.x44 + 0.0001*m.x104*
m.x45 + 0.0001*m.x104*m.x46 + 0.0001*m.x104*m.x47 + 0.0001*m.x104*m.x48 + 0.0001*m.x104*m.x49 +
0.0001*m.x104*m.x50 + 0.0001*m.x104*m.x51 + 0.0001*m.x104*m.x52 + 0.0001*m.x104*m.x53 + 0.0001*
m.x104*m.x54 + 0.0001*m.x104*m.x55 + 0.0001*m.x104*m.x56 + 0.0001*m.x104*m.x57 + 0.0001*m.x104*
m.x58 + 0.0001*m.x104*m.x59 + 0.0001*m.x104*m.x60 + 0.0001*m.x104*m.x61 + 0.0001*m.x104*m.x62 +
0.0001*m.x104*m.x63 + 0.0001*m.x104*m.x64 + 0.0001*m.x104*m.x65 + 0.0001*m.x104*m.x66 + 0.0001*
m.x104*m.x67 + 0.0001*m.x104*m.x68 + 0.0001*m.x104*m.x69 + 0.0001*m.x104*m.x70 + 0.0001*m.x104*
m.x71 + 0.0001*m.x104*m.x72 + 0.0001*m.x104*m.x73 + 0.0001*m.x104*m.x74 + 0.0001*m.x104*m.x75 +
0.0001*m.x104*m.x76 + 0.0001*m.x104*m.x77 + 0.0001*m.x104*m.x78 + 0.0001*m.x104*m.x79 + 0.0001*
m.x104*m.x80 + 0.0001*m.x104*m.x81 + 0.0001*m.x104*m.x82 + 0.0001*m.x104*m.x83 + 0.0001*m.x104*
m.x84 + 0.0001*m.x104*m.x85 + 0.0001*m.x104*m.x86 + 0.0001*m.x104*m.x87 + 0.0001*m.x104*m.x88 +
0.0001*m.x104*m.x89 + 0.0001*m.x104*m.x90 + 0.0001*m.x104*m.x91 + 0.0001*m.x104*m.x92 + 0.0001*
m.x104*m.x93 + 0.0001*m.x104*m.x94 + 0.0001*m.x104*m.x95 + 0.0001*m.x104*m.x96 + 0.0001*m.x104*
m.x97 + 0.0001*m.x104*m.x98 + 0.0001*m.x104*m.x99 + 0.0001*m.x104*m.x100 + 0.0001*m.x104*m.x101
+ 0.0001*m.x104*m.x102 + 0.0001*m.x104*m.x103 + 1.84239151247655*m.x104**2 + 0.0001*m.x104*
m.x105 + 0.0001*m.x104*m.x106 + 0.0001*m.x104*m.x107 + 0.0001*m.x104*m.x108 + 0.0001*m.x104*
m.x109 + 0.0001*m.x104*m.x110 + 0.0001*m.x104*m.x111 + 0.0001*m.x104*m.x112 + 0.0001*m.x104*
m.x113 + 0.0001*m.x104*m.x114 + 0.0001*m.x104*m.x115 + 0.0001*m.x104*m.x116 + 0.0001*m.x104*
m.x117 + 0.0001*m.x104*m.x118 + 0.0001*m.x104*m.x119 + 0.0001*m.x104*m.x120 + 0.0001*m.x104*
m.x121 + 0.0001*m.x104*m.x122 + 0.0001*m.x104*m.x123 + 0.0001*m.x104*m.x124 + 0.0001*m.x104*
m.x125 + 0.0001*m.x104*m.x126 + 0.0001*m.x104*m.x127 + 0.0001*m.x104*m.x128 + 0.0001*m.x104*
m.x129 + 0.0001*m.x104*m.x130 + 0.0001*m.x104*m.x131 + 0.0001*m.x104*m.x132 + 0.0001*m.x104*
m.x133 + 0.0001*m.x104*m.x134 + 0.0001*m.x104*m.x135 + 0.0001*m.x104*m.x136 + 0.0001*m.x104*
m.x137 + 0.0001*m.x104*m.x138 + 0.0001*m.x104*m.x139 + 0.0001*m.x104*m.x140 + 0.0001*m.x104*
m.x141 + 0.0001*m.x104*m.x142 + 0.0001*m.x104*m.x143 + 0.0001*m.x104*m.x144 + 0.0001*m.x104*
m.x145 + 0.0001*m.x104*m.x146 + 0.0001*m.x104*m.x147 + 0.0001*m.x104*m.x148 + 0.0001*m.x104*
m.x149 + 0.0001*m.x104*m.x150 + 0.0001*m.x104*m.x151 + 0.0001*m.x104*m.x152 + 0.0001*m.x104*
m.x153 + 0.0001*m.x104*m.x154 + 0.0001*m.x104*m.x155 + 0.0001*m.x104*m.x156 + 0.0001*m.x104*
m.x157 + 0.0001*m.x104*m.x158 + 0.0001*m.x104*m.x159 + 0.0001*m.x104*m.x160 + 0.0001*m.x104*
m.x161 + 0.0001*m.x104*m.x162 + 0.0001*m.x104*m.x163 + 0.0001*m.x104*m.x164 + 0.0001*m.x104*
m.x165 + 0.0001*m.x104*m.x166 + 0.0001*m.x104*m.x167 + 0.0001*m.x104*m.x168 + 0.0001*m.x104*
m.x169 + 0.0001*m.x104*m.x170 + 2.06289850672701*m.x104*m.x171 + 0.0001*m.x104*m.x172 + 0.0001*
m.x104*m.x173 + 0.0001*m.x104*m.x174 + 0.0001*m.x104*m.x175 + 0.0001*m.x104*m.x176 + 0.0001*
m.x104*m.x177 + 0.0001*m.x104*m.x178 + 0.0001*m.x104*m.x179 + 0.0001*m.x104*m.x180 + 0.0001*
m.x104*m.x181 + 0.0001*m.x104*m.x182 + 0.0001*m.x104*m.x183 + 0.0001*m.x104*m.x184 + 0.0001*
m.x104*m.x185 + 0.0001*m.x105*m.x1 + 0.0001*m.x105*m.x2 + 0.0001*m.x105*m.x3 + 0.0001*m.x105*m.x4
+ 0.0001*m.x105*m.x5 + 0.0001*m.x105*m.x6 + 0.0001*m.x105*m.x7 + 0.0001*m.x105*m.x8 + 0.0001*
m.x105*m.x9 + 0.0001*m.x105*m.x10 + 0.0001*m.x105*m.x11 + 0.0001*m.x105*m.x12 + 0.0001*m.x105*
m.x13 + 0.0001*m.x105*m.x14 + 0.0001*m.x105*m.x15 + 0.0001*m.x105*m.x16 + 0.0001*m.x105*m.x17 +
0.0001*m.x105*m.x18 + 0.0001*m.x105*m.x19 + 0.0001*m.x105*m.x20 + 0.0001*m.x105*m.x21 + 0.0001*
m.x105*m.x22 + 0.0001*m.x105*m.x23 + 0.0001*m.x105*m.x24 + 0.0001*m.x105*m.x25 + 0.0001*m.x105*
m.x26 + 0.0001*m.x105*m.x27 + 0.0001*m.x105*m.x28 + 0.0001*m.x105*m.x29 + 0.0001*m.x105*m.x30 +
0.0001*m.x105*m.x31 + 0.0001*m.x105*m.x32 + 0.0001*m.x105*m.x33 + 0.0001*m.x105*m.x34 + 0.0001*
m.x105*m.x35 + 0.0001*m.x105*m.x36 + 0.0001*m.x105*m.x37 + 0.0001*m.x105*m.x38 + 0.0001*m.x105*
m.x39 + 0.0001*m.x105*m.x40 + 0.0001*m.x105*m.x41 + 0.0001*m.x105*m.x42 + 0.0001*m.x105*m.x43 +
0.0001*m.x105*m.x44 + 0.0001*m.x105*m.x45 + 0.0001*m.x105*m.x46 + 0.0001*m.x105*m.x47 + 0.0001*
m.x105*m.x48 + 0.0001*m.x105*m.x49 + 0.0001*m.x105*m.x50 + 0.0001*m.x105*m.x51 + 0.0001*m.x105*
m.x52 + 0.0001*m.x105*m.x53 + 0.0001*m.x105*m.x54 + 0.0001*m.x105*m.x55 + 0.0001*m.x105*m.x56 +
0.0001*m.x105*m.x57 + 0.0001*m.x105*m.x58 + 0.0001*m.x105*m.x59 + 0.0001*m.x105*m.x60 + 0.0001*
m.x105*m.x61 + 0.0001*m.x105*m.x62 + 0.0001*m.x105*m.x63 + 0.0001*m.x105*m.x64 + 0.0001*m.x105*
m.x65 + 0.0001*m.x105*m.x66 + 0.0001*m.x105*m.x67 + 0.0001*m.x105*m.x68 + 0.0001*m.x105*m.x69 +
0.0001*m.x105*m.x70 + 0.0001*m.x105*m.x71 + 0.0001*m.x105*m.x72 + 0.0001*m.x105*m.x73 + 0.0001*
m.x105*m.x74 + 0.0001*m.x105*m.x75 + 0.0001*m.x105*m.x76 + 0.0001*m.x105*m.x77 + 0.0001*m.x105*
m.x78 + 0.0001*m.x105*m.x79 + 0.0001*m.x105*m.x80 + 0.0001*m.x105*m.x81 + 0.0001*m.x105*m.x82 +
0.0001*m.x105*m.x83 + 0.0001*m.x105*m.x84 + 0.0001*m.x105*m.x85 + 0.0001*m.x105*m.x86 + 0.0001*
m.x105*m.x87 + 0.0001*m.x105*m.x88 + 0.0001*m.x105*m.x89 + 0.0001*m.x105*m.x90 + 0.0001*m.x105*
m.x91 + 0.0001*m.x105*m.x92 + 0.0001*m.x105*m.x93 + 0.0001*m.x105*m.x94 + 0.0001*m.x105*m.x95 +
0.0001*m.x105*m.x96 + 0.0001*m.x105*m.x97 + 0.0001*m.x105*m.x98 + 0.0001*m.x105*m.x99 + 0.0001*
m.x105*m.x100 + 0.0001*m.x105*m.x101 + 0.0001*m.x105*m.x102 + 0.0001*m.x105*m.x103 + 0.0001*
m.x105*m.x104 + 3.42393103897823*m.x105**2 + 0.0001*m.x105*m.x106 + 0.0001*m.x105*m.x107 + 0.0001
*m.x105*m.x108 + 0.0001*m.x105*m.x109 + 0.0001*m.x105*m.x110 + 0.0001*m.x105*m.x111 + 0.0001*
m.x105*m.x112 + 0.0001*m.x105*m.x113 + 0.0001*m.x105*m.x114 + 0.0001*m.x105*m.x115 + 0.0001*
m.x105*m.x116 + 0.0001*m.x105*m.x117 + 0.0001*m.x105*m.x118 + 0.0001*m.x105*m.x119 + 0.0001*
m.x105*m.x120 + 0.0001*m.x105*m.x121 + 0.0001*m.x105*m.x122 + 0.0001*m.x105*m.x123 + 0.0001*
m.x105*m.x124 + 0.0001*m.x105*m.x125 + 0.0001*m.x105*m.x126 + 0.0001*m.x105*m.x127 + 0.0001*
m.x105*m.x128 + 0.0001*m.x105*m.x129 + 0.0001*m.x105*m.x130 + 0.0001*m.x105*m.x131 + 0.0001*
m.x105*m.x132 + 0.0001*m.x105*m.x133 + 0.0001*m.x105*m.x134 + 0.0001*m.x105*m.x135 + 0.0001*
m.x105*m.x136 + 0.0001*m.x105*m.x137 + 0.0001*m.x105*m.x138 + 0.0001*m.x105*m.x139 + 0.0001*
m.x105*m.x140 + 0.0001*m.x105*m.x141 + 0.0001*m.x105*m.x142 + 0.0001*m.x105*m.x143 + 0.0001*
m.x105*m.x144 + 0.0001*m.x105*m.x145 + 0.0001*m.x105*m.x146 + 0.0001*m.x105*m.x147 + 0.0001*
m.x105*m.x148 + 0.0001*m.x105*m.x149 + 0.0001*m.x105*m.x150 + 0.0001*m.x105*m.x151 + 0.0001*
m.x105*m.x152 + 0.0001*m.x105*m.x153 + 0.0001*m.x105*m.x154 + 0.0001*m.x105*m.x155 + 0.0001*
m.x105*m.x156 + 0.0001*m.x105*m.x157 + 0.0001*m.x105*m.x158 + 0.0001*m.x105*m.x159 + 0.0001*
m.x105*m.x160 + 0.0001*m.x105*m.x161 + 0.0001*m.x105*m.x162 + 0.0001*m.x105*m.x163 + 0.0001*
m.x105*m.x164 + 0.0001*m.x105*m.x165 + 0.0001*m.x105*m.x166 + 0.0001*m.x105*m.x167 + 0.0001*
m.x105*m.x168 + 0.0001*m.x105*m.x169 + 0.0001*m.x105*m.x170 + 0.0001*m.x105*m.x171 +
1.99237583036916*m.x105*m.x172 + 1.97716255370005*m.x105*m.x173 + 0.0001*m.x105*m.x174 + 0.0001*
m.x105*m.x175 + 0.0001*m.x105*m.x176 + 0.0001*m.x105*m.x177 + 0.0001*m.x105*m.x178 + 0.0001*
m.x105*m.x179 + 0.0001*m.x105*m.x180 + 0.0001*m.x105*m.x181 + 0.0001*m.x105*m.x182 + 0.0001*
m.x105*m.x183 + 0.0001*m.x105*m.x184 + 0.0001*m.x105*m.x185 + 0.0001*m.x106*m.x1 + 0.0001*m.x106*
m.x2 + 0.0001*m.x106*m.x3 + 0.0001*m.x106*m.x4 + 0.0001*m.x106*m.x5 + 0.0001*m.x106*m.x6 + 0.0001
*m.x106*m.x7 + 0.0001*m.x106*m.x8 + 0.0001*m.x106*m.x9 + 0.0001*m.x106*m.x10 + 0.0001*m.x106*
m.x11 + 0.0001*m.x106*m.x12 + 0.0001*m.x106*m.x13 + 0.0001*m.x106*m.x14 + 0.0001*m.x106*m.x15 +
0.0001*m.x106*m.x16 + 0.0001*m.x106*m.x17 + 0.0001*m.x106*m.x18 + 0.0001*m.x106*m.x19 + 0.0001*
m.x106*m.x20 + 0.0001*m.x106*m.x21 + 0.0001*m.x106*m.x22 + 0.0001*m.x106*m.x23 + 0.0001*m.x106*
m.x24 + 0.0001*m.x106*m.x25 + 0.0001*m.x106*m.x26 + 0.0001*m.x106*m.x27 + 0.0001*m.x106*m.x28 +
0.0001*m.x106*m.x29 + 0.0001*m.x106*m.x30 + 0.0001*m.x106*m.x31 + 0.0001*m.x106*m.x32 + 0.0001*
m.x106*m.x33 + 0.0001*m.x106*m.x34 + 0.0001*m.x106*m.x35 + 0.0001*m.x106*m.x36 + 0.0001*m.x106*
m.x37 + 0.0001*m.x106*m.x38 + 0.0001*m.x106*m.x39 + 0.0001*m.x106*m.x40 + 0.0001*m.x106*m.x41 +
0.0001*m.x106*m.x42 + 0.0001*m.x106*m.x43 + 0.0001*m.x106*m.x44 + 0.0001*m.x106*m.x45 + 0.0001*
m.x106*m.x46 + 0.0001*m.x106*m.x47 + 0.0001*m.x106*m.x48 + 0.0001*m.x106*m.x49 + 0.0001*m.x106*
m.x50 + 0.0001*m.x106*m.x51 + 0.0001*m.x106*m.x52 + 0.0001*m.x106*m.x53 + 0.0001*m.x106*m.x54 +
0.0001*m.x106*m.x55 + 0.0001*m.x106*m.x56 + 0.0001*m.x106*m.x57 + 0.0001*m.x106*m.x58 + 0.0001*
m.x106*m.x59 + 0.0001*m.x106*m.x60 + 0.0001*m.x106*m.x61 + 0.0001*m.x106*m.x62 + 0.0001*m.x106*
m.x63 + 0.0001*m.x106*m.x64 + 0.0001*m.x106*m.x65 + 0.0001*m.x106*m.x66 + 0.0001*m.x106*m.x67 +
0.0001*m.x106*m.x68 + 0.0001*m.x106*m.x69 + 0.0001*m.x106*m.x70 + 0.0001*m.x106*m.x71 + 0.0001*
m.x106*m.x72 + 0.0001*m.x106*m.x73 + 0.0001*m.x106*m.x74 + 0.0001*m.x106*m.x75 + 0.0001*m.x106*
m.x76 + 0.0001*m.x106*m.x77 + 0.0001*m.x106*m.x78 + 0.0001*m.x106*m.x79 + 0.0001*m.x106*m.x80 +
0.0001*m.x106*m.x81 + 0.0001*m.x106*m.x82 + 0.0001*m.x106*m.x83 + 0.0001*m.x106*m.x84 + 0.0001*
m.x106*m.x85 + 0.0001*m.x106*m.x86 + 0.0001*m.x106*m.x87 + 0.0001*m.x106*m.x88 + 0.0001*m.x106*
m.x89 + 0.0001*m.x106*m.x90 + 0.0001*m.x106*m.x91 + 0.0001*m.x106*m.x92 + 0.0001*m.x106*m.x93 +
0.0001*m.x106*m.x94 + 0.0001*m.x106*m.x95 + 0.0001*m.x106*m.x96 + 0.0001*m.x106*m.x97 + 0.0001*
m.x106*m.x98 + 0.0001*m.x106*m.x99 + 0.0001*m.x106*m.x100 + 0.0001*m.x106*m.x101 + 0.0001*m.x106*
m.x102 + 0.0001*m.x106*m.x103 + 0.0001*m.x106*m.x104 + 0.0001*m.x106*m.x105 + 1.84203873829038*
m.x106**2 + 0.0001*m.x106*m.x107 + 0.0001*m.x106*m.x108 + 0.0001*m.x106*m.x109 + 0.0001*m.x106*
m.x110 + 0.0001*m.x106*m.x111 + 0.0001*m.x106*m.x112 + 0.0001*m.x106*m.x113 + 0.0001*m.x106*
m.x114 + 0.0001*m.x106*m.x115 + 0.0001*m.x106*m.x116 + 0.0001*m.x106*m.x117 + 0.0001*m.x106*
m.x118 + 0.0001*m.x106*m.x119 + 0.0001*m.x106*m.x120 + 0.0001*m.x106*m.x121 + 0.0001*m.x106*
m.x122 + 0.0001*m.x106*m.x123 + 0.0001*m.x106*m.x124 + 0.0001*m.x106*m.x125 + 0.0001*m.x106*
m.x126 + 0.0001*m.x106*m.x127 + 0.0001*m.x106*m.x128 + 0.0001*m.x106*m.x129 + 0.0001*m.x106*
m.x130 + 0.0001*m.x106*m.x131 + 0.0001*m.x106*m.x132 + 0.0001*m.x106*m.x133 + 0.0001*m.x106*
m.x134 + 0.0001*m.x106*m.x135 + 0.0001*m.x106*m.x136 + 0.0001*m.x106*m.x137 + 0.0001*m.x106*
m.x138 + 0.0001*m.x106*m.x139 + 0.0001*m.x106*m.x140 + 0.0001*m.x106*m.x141 + 0.0001*m.x106*
m.x142 + 0.0001*m.x106*m.x143 + 0.0001*m.x106*m.x144 + 0.0001*m.x106*m.x145 + 0.0001*m.x106*
m.x146 + 0.0001*m.x106*m.x147 + 0.0001*m.x106*m.x148 + 0.0001*m.x106*m.x149 + 0.0001*m.x106*
m.x150 + 0.0001*m.x106*m.x151 + 0.0001*m.x106*m.x152 + 0.0001*m.x106*m.x153 + 0.0001*m.x106*
m.x154 + 0.0001*m.x106*m.x155 + 0.0001*m.x106*m.x156 + 0.0001*m.x106*m.x157 + 0.0001*m.x106*
m.x158 + 0.0001*m.x106*m.x159 + 0.0001*m.x106*m.x160 + 0.0001*m.x106*m.x161 + 0.0001*m.x106*
m.x162 + 0.0001*m.x106*m.x163 + 0.0001*m.x106*m.x164 + 0.0001*m.x106*m.x165 + 0.0001*m.x106*
m.x166 + 0.0001*m.x106*m.x167 + 0.0001*m.x106*m.x168 + 0.0001*m.x106*m.x169 + 0.0001*m.x106*
m.x170 + 0.0001*m.x106*m.x171 + 0.0001*m.x106*m.x172 + 0.0001*m.x106*m.x173 + 2.18408636387853*
m.x106*m.x174 + 0.0001*m.x106*m.x175 + 0.0001*m.x106*m.x176 + 0.0001*m.x106*m.x177 + 0.0001*
m.x106*m.x178 + 0.0001*m.x106*m.x179 + 0.0001*m.x106*m.x180 + 0.0001*m.x106*m.x181 + 0.0001*
m.x106*m.x182 + 0.0001*m.x106*m.x183 + 0.0001*m.x106*m.x184 + 0.0001*m.x106*m.x185 + 0.0001*
m.x107*m.x1 + 0.0001*m.x107*m.x2 + 0.0001*m.x107*m.x3 + 0.0001*m.x107*m.x4 + 0.0001*m.x107*m.x5
+ 0.0001*m.x107*m.x6 + 0.0001*m.x107*m.x7 + 0.0001*m.x107*m.x8 + 0.0001*m.x107*m.x9 + 0.0001*
m.x107*m.x10 + 0.0001*m.x107*m.x11 + 0.0001*m.x107*m.x12 + 0.0001*m.x107*m.x13 + 0.0001*m.x107*
m.x14 + 0.0001*m.x107*m.x15 + 0.0001*m.x107*m.x16 + 0.0001*m.x107*m.x17 + 0.0001*m.x107*m.x18 +
0.0001*m.x107*m.x19 + 0.0001*m.x107*m.x20 + 0.0001*m.x107*m.x21 + 0.0001*m.x107*m.x22 + 0.0001*
m.x107*m.x23 + 0.0001*m.x107*m.x24 + 0.0001*m.x107*m.x25 + 0.0001*m.x107*m.x26 + 0.0001*m.x107*
m.x27 + 0.0001*m.x107*m.x28 + 0.0001*m.x107*m.x29 + 0.0001*m.x107*m.x30 + 0.0001*m.x107*m.x31 +
0.0001*m.x107*m.x32 + 0.0001*m.x107*m.x33 + 0.0001*m.x107*m.x34 + 0.0001*m.x107*m.x35 + 0.0001*
m.x107*m.x36 + 0.0001*m.x107*m.x37 + 0.0001*m.x107*m.x38 + 0.0001*m.x107*m.x39 + 0.0001*m.x107*
m.x40 + 0.0001*m.x107*m.x41 + 0.0001*m.x107*m.x42 + 0.0001*m.x107*m.x43 + 0.0001*m.x107*m.x44 +
0.0001*m.x107*m.x45 + 0.0001*m.x107*m.x46 + 0.0001*m.x107*m.x47 + 0.0001*m.x107*m.x48 + 0.0001*
m.x107*m.x49 + 0.0001*m.x107*m.x50 + 0.0001*m.x107*m.x51 + 0.0001*m.x107*m.x52 + 0.0001*m.x107*
m.x53 + 0.0001*m.x107*m.x54 + 0.0001*m.x107*m.x55 + 0.0001*m.x107*m.x56 + 0.0001*m.x107*m.x57 +
0.0001*m.x107*m.x58 + 0.0001*m.x107*m.x59 + 0.0001*m.x107*m.x60 + 0.0001*m.x107*m.x61 + 0.0001*
m.x107*m.x62 + 0.0001*m.x107*m.x63 + 0.0001*m.x107*m.x64 + 0.0001*m.x107*m.x65 + 0.0001*m.x107*
m.x66 + 0.0001*m.x107*m.x67 + 0.0001*m.x107*m.x68 + 0.0001*m.x107*m.x69 + 0.0001*m.x107*m.x70 +
0.0001*m.x107*m.x71 + 0.0001*m.x107*m.x72 + 0.0001*m.x107*m.x73 + 0.0001*m.x107*m.x74 + 0.0001*
m.x107*m.x75 + 0.0001*m.x107*m.x76 + 0.0001*m.x107*m.x77 + 0.0001*m.x107*m.x78 + 0.0001*m.x107*
m.x79 + 0.0001*m.x107*m.x80 + 0.0001*m.x107*m.x81 + 0.0001*m.x107*m.x82 + 0.0001*m.x107*m.x83 +
0.0001*m.x107*m.x84 + 0.0001*m.x107*m.x85 + 0.0001*m.x107*m.x86 + 0.0001*m.x107*m.x87 + 0.0001*
m.x107*m.x88 + 0.0001*m.x107*m.x89 + 0.0001*m.x107*m.x90 + 0.0001*m.x107*m.x91 + 0.0001*m.x107*
m.x92 + 0.0001*m.x107*m.x93 + 0.0001*m.x107*m.x94 + 0.0001*m.x107*m.x95 + 0.0001*m.x107*m.x96 +
0.0001*m.x107*m.x97 + 0.0001*m.x107*m.x98 + 0.0001*m.x107*m.x99 + 0.0001*m.x107*m.x100 + 0.0001*
m.x107*m.x101 + 0.0001*m.x107*m.x102 + 0.0001*m.x107*m.x103 + 0.0001*m.x107*m.x104 + 0.0001*
m.x107*m.x105 + 0.0001*m.x107*m.x106 + 1.67424277422796*m.x107**2 + 0.0001*m.x107*m.x108 + 0.0001
*m.x107*m.x109 + 0.0001*m.x107*m.x110 + 0.0001*m.x107*m.x111 + 0.0001*m.x107*m.x112 + 0.0001*
m.x107*m.x113 + 0.0001*m.x107*m.x114 + 0.0001*m.x107*m.x115 + 0.0001*m.x107*m.x116 + 0.0001*
m.x107*m.x117 + 0.0001*m.x107*m.x118 + 0.0001*m.x107*m.x119 + 0.0001*m.x107*m.x120 + 0.0001*
m.x107*m.x121 + 0.0001*m.x107*m.x122 + 0.0001*m.x107*m.x123 + 0.0001*m.x107*m.x124 + 0.0001*
m.x107*m.x125 + 0.0001*m.x107*m.x126 + 0.0001*m.x107*m.x127 + 0.0001*m.x107*m.x128 + 0.0001*
m.x107*m.x129 + 0.0001*m.x107*m.x130 + 0.0001*m.x107*m.x131 + 0.0001*m.x107*m.x132 + 0.0001*
m.x107*m.x133 + 0.0001*m.x107*m.x134 + 0.0001*m.x107*m.x135 + 0.0001*m.x107*m.x136 + 0.0001*
m.x107*m.x137 + 0.0001*m.x107*m.x138 + 0.0001*m.x107*m.x139 + 0.0001*m.x107*m.x140 + 0.0001*
m.x107*m.x141 + 0.0001*m.x107*m.x142 + 0.0001*m.x107*m.x143 + 0.0001*m.x107*m.x144 + 0.0001*
m.x107*m.x145 + 0.0001*m.x107*m.x146 + 0.0001*m.x107*m.x147 + 0.0001*m.x107*m.x148 + 0.0001*
m.x107*m.x149 + 0.0001*m.x107*m.x150 + 0.0001*m.x107*m.x151 + 0.0001*m.x107*m.x152 + 0.0001*
m.x107*m.x153 + 0.0001*m.x107*m.x154 + 0.0001*m.x107*m.x155 + 0.0001*m.x107*m.x156 + 0.0001*
m.x107*m.x157 + 0.0001*m.x107*m.x158 + 0.0001*m.x107*m.x159 + 0.0001*m.x107*m.x160 + 0.0001*
m.x107*m.x161 + 0.0001*m.x107*m.x162 + 0.0001*m.x107*m.x163 + 0.0001*m.x107*m.x164 + 0.0001*
m.x107*m.x165 + 0.0001*m.x107*m.x166 + 0.0001*m.x107*m.x167 + 0.0001*m.x107*m.x168 + 0.0001*
m.x107*m.x169 + 0.0001*m.x107*m.x170 + 0.0001*m.x107*m.x171 + 0.0001*m.x107*m.x172 + 0.0001*
m.x107*m.x173 + 0.0001*m.x107*m.x174 + 1.98513072555675*m.x107*m.x175 + 0.0001*m.x107*m.x176 +
0.0001*m.x107*m.x177 + 0.0001*m.x107*m.x178 + 0.0001*m.x107*m.x179 + 0.0001*m.x107*m.x180 +
0.0001*m.x107*m.x181 + 0.0001*m.x107*m.x182 + 0.0001*m.x107*m.x183 + 0.0001*m.x107*m.x184 +
0.0001*m.x107*m.x185 + 0.0001*m.x108*m.x1 + 0.0001*m.x108*m.x2 + 0.0001*m.x108*m.x3 + 0.0001*
m.x108*m.x4 + 0.0001*m.x108*m.x5 + 0.0001*m.x108*m.x6 + 0.0001*m.x108*m.x7 + 0.0001*m.x108*m.x8
+ 0.0001*m.x108*m.x9 + 0.0001*m.x108*m.x10 + 0.0001*m.x108*m.x11 + 0.0001*m.x108*m.x12 + 0.0001*
m.x108*m.x13 + 0.0001*m.x108*m.x14 + 0.0001*m.x108*m.x15 + 0.0001*m.x108*m.x16 + 0.0001*m.x108*
m.x17 + 0.0001*m.x108*m.x18 + 0.0001*m.x108*m.x19 + 0.0001*m.x108*m.x20 + 0.0001*m.x108*m.x21 +
0.0001*m.x108*m.x22 + 0.0001*m.x108*m.x23 + 0.0001*m.x108*m.x24 + 0.0001*m.x108*m.x25 + 0.0001*
m.x108*m.x26 + 0.0001*m.x108*m.x27 + 0.0001*m.x108*m.x28 + 0.0001*m.x108*m.x29 + 0.0001*m.x108*
m.x30 + 0.0001*m.x108*m.x31 + 0.0001*m.x108*m.x32 + 0.0001*m.x108*m.x33 + 0.0001*m.x108*m.x34 +
0.0001*m.x108*m.x35 + 0.0001*m.x108*m.x36 + 0.0001*m.x108*m.x37 + 0.0001*m.x108*m.x38 + 0.0001*
m.x108*m.x39 + 0.0001*m.x108*m.x40 + 0.0001*m.x108*m.x41 + 0.0001*m.x108*m.x42 + 0.0001*m.x108*
m.x43 + 0.0001*m.x108*m.x44 + 0.0001*m.x108*m.x45 + 0.0001*m.x108*m.x46 + 0.0001*m.x108*m.x47 +
0.0001*m.x108*m.x48 + 0.0001*m.x108*m.x49 + 0.0001*m.x108*m.x50 + 0.0001*m.x108*m.x51 + 0.0001*
m.x108*m.x52 + 0.0001*m.x108*m.x53 + 0.0001*m.x108*m.x54 + 0.0001*m.x108*m.x55 + 0.0001*m.x108*
m.x56 + 0.0001*m.x108*m.x57 + 0.0001*m.x108*m.x58 + 0.0001*m.x108*m.x59 + 0.0001*m.x108*m.x60 +
0.0001*m.x108*m.x61 + 0.0001*m.x108*m.x62 + 0.0001*m.x108*m.x63 + 0.0001*m.x108*m.x64 + 0.0001*
m.x108*m.x65 + 0.0001*m.x108*m.x66 + 0.0001*m.x108*m.x67 + 0.0001*m.x108*m.x68 + 0.0001*m.x108*
m.x69 + 0.0001*m.x108*m.x70 + 0.0001*m.x108*m.x71 + 0.0001*m.x108*m.x72 + 0.0001*m.x108*m.x73 +
0.0001*m.x108*m.x74 + 0.0001*m.x108*m.x75 + 0.0001*m.x108*m.x76 + 0.0001*m.x108*m.x77 + 0.0001*
m.x108*m.x78 + 0.0001*m.x108*m.x79 + 0.0001*m.x108*m.x80 + 0.0001*m.x108*m.x81 + 0.0001*m.x108*
m.x82 + 0.0001*m.x108*m.x83 + 0.0001*m.x108*m.x84 + 0.0001*m.x108*m.x85 + 0.0001*m.x108*m.x86 +
0.0001*m.x108*m.x87 + 0.0001*m.x108*m.x88 + 0.0001*m.x108*m.x89 + 0.0001*m.x108*m.x90 + 0.0001*
m.x108*m.x91 + 0.0001*m.x108*m.x92 + 0.0001*m.x108*m.x93 + 0.0001*m.x108*m.x94 + 0.0001*m.x108*
m.x95 + 0.0001*m.x108*m.x96 + 0.0001*m.x108*m.x97 + 0.0001*m.x108*m.x98 + 0.0001*m.x108*m.x99 +
0.0001*m.x108*m.x100 + 0.0001*m.x108*m.x101 + 0.0001*m.x108*m.x102 + 0.0001*m.x108*m.x103 +
0.0001*m.x108*m.x104 + 0.0001*m.x108*m.x105 + 0.0001*m.x108*m.x106 + 0.0001*m.x108*m.x107 +
1.80870286873953*m.x108**2 + 0.0001*m.x108*m.x109 + 0.0001*m.x108*m.x110 + 0.0001*m.x108*m.x111
+ 0.0001*m.x108*m.x112 + 0.0001*m.x108*m.x113 + 0.0001*m.x108*m.x114 + 0.0001*m.x108*m.x115 +
0.0001*m.x108*m.x116 + 0.0001*m.x108*m.x117 + 0.0001*m.x108*m.x118 + 0.0001*m.x108*m.x119 +
0.0001*m.x108*m.x120 + 0.0001*m.x108*m.x121 + 0.0001*m.x108*m.x122 + 0.0001*m.x108*m.x123 +
0.0001*m.x108*m.x124 + 0.0001*m.x108*m.x125 + 0.0001*m.x108*m.x126 + 0.0001*m.x108*m.x127 +
0.0001*m.x108*m.x128 + 0.0001*m.x108*m.x129 + 0.0001*m.x108*m.x130 + 0.0001*m.x108*m.x131 +
0.0001*m.x108*m.x132 + 0.0001*m.x108*m.x133 + 0.0001*m.x108*m.x134 + 0.0001*m.x108*m.x135 +
0.0001*m.x108*m.x136 + 0.0001*m.x108*m.x137 + 0.0001*m.x108*m.x138 + 0.0001*m.x108*m.x139 +
0.0001*m.x108*m.x140 + 0.0001*m.x108*m.x141 + 0.0001*m.x108*m.x142 + 0.0001*m.x108*m.x143 +
0.0001*m.x108*m.x144 + 0.0001*m.x108*m.x145 + 0.0001*m.x108*m.x146 + 0.0001*m.x108*m.x147 +
0.0001*m.x108*m.x148 + 0.0001*m.x108*m.x149 + 0.0001*m.x108*m.x150 + 0.0001*m.x108*m.x151 +
0.0001*m.x108*m.x152 + 0.0001*m.x108*m.x153 + 0.0001*m.x108*m.x154 + 0.0001*m.x108*m.x155 +
0.0001*m.x108*m.x156 + 0.0001*m.x108*m.x157 + 0.0001*m.x108*m.x158 + 0.0001*m.x108*m.x159 +
0.0001*m.x108*m.x160 + 0.0001*m.x108*m.x161 + 0.0001*m.x108*m.x162 + 0.0001*m.x108*m.x163 +
0.0001*m.x108*m.x164 + 0.0001*m.x108*m.x165 + 0.0001*m.x108*m.x166 + 0.0001*m.x108*m.x167 +
0.0001*m.x108*m.x168 + 0.0001*m.x108*m.x169 + 0.0001*m.x108*m.x170 + 0.0001*m.x108*m.x171 +
0.0001*m.x108*m.x172 + 0.0001*m.x108*m.x173 + 0.0001*m.x108*m.x174 + 0.0001*m.x108*m.x175 +
2.06902936086386*m.x108*m.x176 + 0.0001*m.x108*m.x177 + 0.0001*m.x108*m.x178 + 0.0001*m.x108*
m.x179 + 0.0001*m.x108*m.x180 + 0.0001*m.x108*m.x181 + 0.0001*m.x108*m.x182 + 0.0001*m.x108*
m.x183 + 0.0001*m.x108*m.x184 + 0.0001*m.x108*m.x185 + 0.0001*m.x109*m.x1 + 0.0001*m.x109*m.x2 +
0.0001*m.x109*m.x3 + 0.0001*m.x109*m.x4 + 0.0001*m.x109*m.x5 + 0.0001*m.x109*m.x6 + 0.0001*m.x109
*m.x7 + 0.0001*m.x109*m.x8 + 0.0001*m.x109*m.x9 + 0.0001*m.x109*m.x10 + 0.0001*m.x109*m.x11 +
0.0001*m.x109*m.x12 + 0.0001*m.x109*m.x13 + 0.0001*m.x109*m.x14 + 0.0001*m.x109*m.x15 + 0.0001*
m.x109*m.x16 + 0.0001*m.x109*m.x17 + 0.0001*m.x109*m.x18 + 0.0001*m.x109*m.x19 + 0.0001*m.x109*
m.x20 + 0.0001*m.x109*m.x21 + 0.0001*m.x109*m.x22 + 0.0001*m.x109*m.x23 + 0.0001*m.x109*m.x24 +
0.0001*m.x109*m.x25 + 0.0001*m.x109*m.x26 + 0.0001*m.x109*m.x27 + 0.0001*m.x109*m.x28 + 0.0001*
m.x109*m.x29 + 0.0001*m.x109*m.x30 + 0.0001*m.x109*m.x31 + 0.0001*m.x109*m.x32 + 0.0001*m.x109*
m.x33 + 0.0001*m.x109*m.x34 + 0.0001*m.x109*m.x35 + 0.0001*m.x109*m.x36 + 0.0001*m.x109*m.x37 +
0.0001*m.x109*m.x38 + 0.0001*m.x109*m.x39 + 0.0001*m.x109*m.x40 + 0.0001*m.x109*m.x41 + 0.0001*
m.x109*m.x42 + 0.0001*m.x109*m.x43 + 0.0001*m.x109*m.x44 + 0.0001*m.x109*m.x45 + 0.0001*m.x109*
m.x46 + 0.0001*m.x109*m.x47 + 0.0001*m.x109*m.x48 + 0.0001*m.x109*m.x49 + 0.0001*m.x109*m.x50 +
0.0001*m.x109*m.x51 + 0.0001*m.x109*m.x52 + 0.0001*m.x109*m.x53 + 0.0001*m.x109*m.x54 + 0.0001*
m.x109*m.x55 + 0.0001*m.x109*m.x56 + 0.0001*m.x109*m.x57 + 0.0001*m.x109*m.x58 + 0.0001*m.x109*
m.x59 + 0.0001*m.x109*m.x60 + 0.0001*m.x109*m.x61 + 0.0001*m.x109*m.x62 + 0.0001*m.x109*m.x63 +
0.0001*m.x109*m.x64 + 0.0001*m.x109*m.x65 + 0.0001*m.x109*m.x66 + 0.0001*m.x109*m.x67 + 0.0001*
m.x109*m.x68 + 0.0001*m.x109*m.x69 + 0.0001*m.x109*m.x70 + 0.0001*m.x109*m.x71 + 0.0001*m.x109*
m.x72 + 0.0001*m.x109*m.x73 + 0.0001*m.x109*m.x74 + 0.0001*m.x109*m.x75 + 0.0001*m.x109*m.x76 +
0.0001*m.x109*m.x77 + 0.0001*m.x109*m.x78 + 0.0001*m.x109*m.x79 + 0.0001*m.x109*m.x80 + 0.0001*
m.x109*m.x81 + 0.0001*m.x109*m.x82 + 0.0001*m.x109*m.x83 + 0.0001*m.x109*m.x84 + 0.0001*m.x109*
m.x85 + 0.0001*m.x109*m.x86 + 0.0001*m.x109*m.x87 + 0.0001*m.x109*m.x88 + 0.0001*m.x109*m.x89 +
0.0001*m.x109*m.x90 + 0.0001*m.x109*m.x91 + 0.0001*m.x109*m.x92 + 0.0001*m.x109*m.x93 + 0.0001*
m.x109*m.x94 + 0.0001*m.x109*m.x95 + 0.0001*m.x109*m.x96 + 0.0001*m.x109*m.x97 + 0.0001*m.x109*
m.x98 + 0.0001*m.x109*m.x99 + 0.0001*m.x109*m.x100 + 0.0001*m.x109*m.x101 + 0.0001*m.x109*m.x102
+ 0.0001*m.x109*m.x103 + 0.0001*m.x109*m.x104 + 0.0001*m.x109*m.x105 + 0.0001*m.x109*m.x106 +
0.0001*m.x109*m.x107 + 0.0001*m.x109*m.x108 + 1.76654393354786*m.x109**2 + 0.0001*m.x109*m.x110
+ 0.0001*m.x109*m.x111 + 0.0001*m.x109*m.x112 + 0.0001*m.x109*m.x113 + 0.0001*m.x109*m.x114 +
0.0001*m.x109*m.x115 + 0.0001*m.x109*m.x116 + 0.0001*m.x109*m.x117 + 0.0001*m.x109*m.x118 +
0.0001*m.x109*m.x119 + 0.0001*m.x109*m.x120 + 0.0001*m.x109*m.x121 + 0.0001*m.x109*m.x122 +
0.0001*m.x109*m.x123 + 0.0001*m.x109*m.x124 + 0.0001*m.x109*m.x125 + 0.0001*m.x109*m.x126 +
0.0001*m.x109*m.x127 + 0.0001*m.x109*m.x128 + 0.0001*m.x109*m.x129 + 0.0001*m.x109*m.x130 +
0.0001*m.x109*m.x131 + 0.0001*m.x109*m.x132 + 0.0001*m.x109*m.x133 + 0.0001*m.x109*m.x134 +
0.0001*m.x109*m.x135 + 0.0001*m.x109*m.x136 + 0.0001*m.x109*m.x137 + 0.0001*m.x109*m.x138 +
0.0001*m.x109*m.x139 + 0.0001*m.x109*m.x140 + 0.0001*m.x109*m.x141 + 0.0001*m.x109*m.x142 +
0.0001*m.x109*m.x143 + 0.0001*m.x109*m.x144 + 0.0001*m.x109*m.x145 + 0.0001*m.x109*m.x146 +
0.0001*m.x109*m.x147 + 0.0001*m.x109*m.x148 + 0.0001*m.x109*m.x149 + 0.0001*m.x109*m.x150 +
0.0001*m.x109*m.x151 + 0.0001*m.x109*m.x152 + 0.0001*m.x109*m.x153 + 0.0001*m.x109*m.x154 +
0.0001*m.x109*m.x155 + 0.0001*m.x109*m.x156 + 0.0001*m.x109*m.x157 + 0.0001*m.x109*m.x158 +
0.0001*m.x109*m.x159 + 0.0001*m.x109*m.x160 + 0.0001*m.x109*m.x161 + 0.0001*m.x109*m.x162 +
0.0001*m.x109*m.x163 + 0.0001*m.x109*m.x164 + 0.0001*m.x109*m.x165 + 0.0001*m.x109*m.x166 +
0.0001*m.x109*m.x167 + 0.0001*m.x109*m.x168 + 0.0001*m.x109*m.x169 + 0.0001*m.x109*m.x170 +
0.0001*m.x109*m.x171 + 0.0001*m.x109*m.x172 + 0.0001*m.x109*m.x173 + 0.0001*m.x109*m.x174 +
0.0001*m.x109*m.x175 + 0.0001*m.x109*m.x176 + 2.08391055624166*m.x109*m.x177 + 0.0001*m.x109*
m.x178 + 0.0001*m.x109*m.x179 + 0.0001*m.x109*m.x180 + 0.0001*m.x109*m.x181 + 0.0001*m.x109*
m.x182 + 0.0001*m.x109*m.x183 + 0.0001*m.x109*m.x184 + 0.0001*m.x109*m.x185 + 0.0001*m.x110*m.x1
+ 0.0001*m.x110*m.x2 + 0.0001*m.x110*m.x3 + 0.0001*m.x110*m.x4 + 0.0001*m.x110*m.x5 + 0.0001*
m.x110*m.x6 + 0.0001*m.x110*m.x7 + 0.0001*m.x110*m.x8 + 0.0001*m.x110*m.x9 + 0.0001*m.x110*m.x10
+ 0.0001*m.x110*m.x11 + 0.0001*m.x110*m.x12 + 0.0001*m.x110*m.x13 + 0.0001*m.x110*m.x14 + 0.0001
*m.x110*m.x15 + 0.0001*m.x110*m.x16 + 0.0001*m.x110*m.x17 + 0.0001*m.x110*m.x18 + 0.0001*m.x110*
m.x19 + 0.0001*m.x110*m.x20 + 0.0001*m.x110*m.x21 + 0.0001*m.x110*m.x22 + 0.0001*m.x110*m.x23 +
0.0001*m.x110*m.x24 + 0.0001*m.x110*m.x25 + 0.0001*m.x110*m.x26 + 0.0001*m.x110*m.x27 + 0.0001*
m.x110*m.x28 + 0.0001*m.x110*m.x29 + 0.0001*m.x110*m.x30 + 0.0001*m.x110*m.x31 + 0.0001*m.x110*
m.x32 + 0.0001*m.x110*m.x33 + 0.0001*m.x110*m.x34 + 0.0001*m.x110*m.x35 + 0.0001*m.x110*m.x36 +
0.0001*m.x110*m.x37 + 0.0001*m.x110*m.x38 + 0.0001*m.x110*m.x39 + 0.0001*m.x110*m.x40 + 0.0001*
m.x110*m.x41 + 0.0001*m.x110*m.x42 + 0.0001*m.x110*m.x43 + 0.0001*m.x110*m.x44 + 0.0001*m.x110*
m.x45 + 0.0001*m.x110*m.x46 + 0.0001*m.x110*m.x47 + 0.0001*m.x110*m.x48 + 0.0001*m.x110*m.x49 +
0.0001*m.x110*m.x50 + 0.0001*m.x110*m.x51 + 0.0001*m.x110*m.x52 + 0.0001*m.x110*m.x53 + 0.0001*
m.x110*m.x54 + 0.0001*m.x110*m.x55 + 0.0001*m.x110*m.x56 + 0.0001*m.x110*m.x57 + 0.0001*m.x110*
m.x58 + 0.0001*m.x110*m.x59 + 0.0001*m.x110*m.x60 + 0.0001*m.x110*m.x61 + 0.0001*m.x110*m.x62 +
0.0001*m.x110*m.x63 + 0.0001*m.x110*m.x64 + 0.0001*m.x110*m.x65 + 0.0001*m.x110*m.x66 + 0.0001*
m.x110*m.x67 + 0.0001*m.x110*m.x68 + 0.0001*m.x110*m.x69 + 0.0001*m.x110*m.x70 + 0.0001*m.x110*
m.x71 + 0.0001*m.x110*m.x72 + 0.0001*m.x110*m.x73 + 0.0001*m.x110*m.x74 + 0.0001*m.x110*m.x75 +
0.0001*m.x110*m.x76 + 0.0001*m.x110*m.x77 + 0.0001*m.x110*m.x78 + 0.0001*m.x110*m.x79 + 0.0001*
m.x110*m.x80 + 0.0001*m.x110*m.x81 + 0.0001*m.x110*m.x82 + 0.0001*m.x110*m.x83 + 0.0001*m.x110*
m.x84 + 0.0001*m.x110*m.x85 + 0.0001*m.x110*m.x86 + 0.0001*m.x110*m.x87 + 0.0001*m.x110*m.x88 +
0.0001*m.x110*m.x89 + 0.0001*m.x110*m.x90 + 0.0001*m.x110*m.x91 + 0.0001*m.x110*m.x92 + 0.0001*
m.x110*m.x93 + 0.0001*m.x110*m.x94 + 0.0001*m.x110*m.x95 + 0.0001*m.x110*m.x96 + 0.0001*m.x110*
m.x97 + 0.0001*m.x110*m.x98 + 0.0001*m.x110*m.x99 + 0.0001*m.x110*m.x100 + 0.0001*m.x110*m.x101
+ 0.0001*m.x110*m.x102 + 0.0001*m.x110*m.x103 + 0.0001*m.x110*m.x104 + 0.0001*m.x110*m.x105 +
0.0001*m.x110*m.x106 + 0.0001*m.x110*m.x107 + 0.0001*m.x110*m.x108 + 0.0001*m.x110*m.x109 +
1.76565978576974*m.x110**2 + 0.0001*m.x110*m.x111 + 0.0001*m.x110*m.x112 + 0.0001*m.x110*m.x113
+ 0.0001*m.x110*m.x114 + 0.0001*m.x110*m.x115 + 0.0001*m.x110*m.x116 + 0.0001*m.x110*m.x117 +
0.0001*m.x110*m.x118 + 0.0001*m.x110*m.x119 + 0.0001*m.x110*m.x120 + 0.0001*m.x110*m.x121 +
0.0001*m.x110*m.x122 + 0.0001*m.x110*m.x123 + 0.0001*m.x110*m.x124 + 0.0001*m.x110*m.x125 +
0.0001*m.x110*m.x126 + 0.0001*m.x110*m.x127 + 0.0001*m.x110*m.x128 + 0.0001*m.x110*m.x129 +
0.0001*m.x110*m.x130 + 0.0001*m.x110*m.x131 + 0.0001*m.x110*m.x132 + 0.0001*m.x110*m.x133 +
0.0001*m.x110*m.x134 + 0.0001*m.x110*m.x135 + 0.0001*m.x110*m.x136 + 0.0001*m.x110*m.x137 +
0.0001*m.x110*m.x138 + 0.0001*m.x110*m.x139 + 0.0001*m.x110*m.x140 + 0.0001*m.x110*m.x141 +
0.0001*m.x110*m.x142 + 0.0001*m.x110*m.x143 + 0.0001*m.x110*m.x144 + 0.0001*m.x110*m.x145 +
0.0001*m.x110*m.x146 + 0.0001*m.x110*m.x147 + 0.0001*m.x110*m.x148 + 0.0001*m.x110*m.x149 +
0.0001*m.x110*m.x150 + 0.0001*m.x110*m.x151 + 0.0001*m.x110*m.x152 + 0.0001*m.x110*m.x153 +
0.0001*m.x110*m.x154 + 0.0001*m.x110*m.x155 + 0.0001*m.x110*m.x156 + 0.0001*m.x110*m.x157 +
0.0001*m.x110*m.x158 + 0.0001*m.x110*m.x159 + 0.0001*m.x110*m.x160 + 0.0001*m.x110*m.x161 +
0.0001*m.x110*m.x162 + 0.0001*m.x110*m.x163 + 0.0001*m.x110*m.x164 + 0.0001*m.x110*m.x165 +
0.0001*m.x110*m.x166 + 0.0001*m.x110*m.x167 + 0.0001*m.x110*m.x168 + 0.0001*m.x110*m.x169 +
0.0001*m.x110*m.x170 + 0.0001*m.x110*m.x171 + 0.0001*m.x110*m.x172 + 0.0001*m.x110*m.x173 +
0.0001*m.x110*m.x174 + 0.0001*m.x110*m.x175 + 0.0001*m.x110*m.x176 + 0.0001*m.x110*m.x177 +
2.0828675588171*m.x110*m.x178 + 0.0001*m.x110*m.x179 + 0.0001*m.x110*m.x180 + 0.0001*m.x110*
m.x181 + 0.0001*m.x110*m.x182 + 0.0001*m.x110*m.x183 + 0.0001*m.x110*m.x184 + 0.0001*m.x110*
m.x185 + 0.0001*m.x111*m.x1 + 0.0001*m.x111*m.x2 + 0.0001*m.x111*m.x3 + 0.0001*m.x111*m.x4 +
0.0001*m.x111*m.x5 + 0.0001*m.x111*m.x6 + 0.0001*m.x111*m.x7 + 0.0001*m.x111*m.x8 + 0.0001*m.x111
*m.x9 + 0.0001*m.x111*m.x10 + 0.0001*m.x111*m.x11 + 0.0001*m.x111*m.x12 + 0.0001*m.x111*m.x13 +
0.0001*m.x111*m.x14 + 0.0001*m.x111*m.x15 + 0.0001*m.x111*m.x16 + 0.0001*m.x111*m.x17 + 0.0001*
m.x111*m.x18 + 0.0001*m.x111*m.x19 + 0.0001*m.x111*m.x20 + 0.0001*m.x111*m.x21 + 0.0001*m.x111*
m.x22 + 0.0001*m.x111*m.x23 + 0.0001*m.x111*m.x24 + 0.0001*m.x111*m.x25 + 0.0001*m.x111*m.x26 +
0.0001*m.x111*m.x27 + 0.0001*m.x111*m.x28 + 0.0001*m.x111*m.x29 + 0.0001*m.x111*m.x30 + 0.0001*
m.x111*m.x31 + 0.0001*m.x111*m.x32 + 0.0001*m.x111*m.x33 + 0.0001*m.x111*m.x34 + 0.0001*m.x111*
m.x35 + 0.0001*m.x111*m.x36 + 0.0001*m.x111*m.x37 + 0.0001*m.x111*m.x38 + 0.0001*m.x111*m.x39 +
0.0001*m.x111*m.x40 + 0.0001*m.x111*m.x41 + 0.0001*m.x111*m.x42 + 0.0001*m.x111*m.x43 + 0.0001*
m.x111*m.x44 + 0.0001*m.x111*m.x45 + 0.0001*m.x111*m.x46 + 0.0001*m.x111*m.x47 + 0.0001*m.x111*
m.x48 + 0.0001*m.x111*m.x49 + 0.0001*m.x111*m.x50 + 0.0001*m.x111*m.x51 + 0.0001*m.x111*m.x52 +
0.0001*m.x111*m.x53 + 0.0001*m.x111*m.x54 + 0.0001*m.x111*m.x55 + 0.0001*m.x111*m.x56 + 0.0001*
m.x111*m.x57 + 0.0001*m.x111*m.x58 + 0.0001*m.x111*m.x59 + 0.0001*m.x111*m.x60 + 0.0001*m.x111*
m.x61 + 0.0001*m.x111*m.x62 + 0.0001*m.x111*m.x63 + 0.0001*m.x111*m.x64 + 0.0001*m.x111*m.x65 +
0.0001*m.x111*m.x66 + 0.0001*m.x111*m.x67 + 0.0001*m.x111*m.x68 + 0.0001*m.x111*m.x69 + 0.0001*
m.x111*m.x70 + 0.0001*m.x111*m.x71 + 0.0001*m.x111*m.x72 + 0.0001*m.x111*m.x73 + 0.0001*m.x111*
m.x74 + 0.0001*m.x111*m.x75 + 0.0001*m.x111*m.x76 + 0.0001*m.x111*m.x77 + 0.0001*m.x111*m.x78 +
0.0001*m.x111*m.x79 + 0.0001*m.x111*m.x80 + 0.0001*m.x111*m.x81 + 0.0001*m.x111*m.x82 + 0.0001*
m.x111*m.x83 + 0.0001*m.x111*m.x84 + 0.0001*m.x111*m.x85 + 0.0001*m.x111*m.x86 + 0.0001*m.x111*
m.x87 + 0.0001*m.x111*m.x88 + 0.0001*m.x111*m.x89 + 0.0001*m.x111*m.x90 + 0.0001*m.x111*m.x91 +
0.0001*m.x111*m.x92 + 0.0001*m.x111*m.x93 + 0.0001*m.x111*m.x94 + 0.0001*m.x111*m.x95 + 0.0001*
m.x111*m.x96 + 0.0001*m.x111*m.x97 + 0.0001*m.x111*m.x98 + 0.0001*m.x111*m.x99 + 0.0001*m.x111*
m.x100 + 0.0001*m.x111*m.x101 + 0.0001*m.x111*m.x102 + 0.0001*m.x111*m.x103 + 0.0001*m.x111*
m.x104 + 0.0001*m.x111*m.x105 + 0.0001*m.x111*m.x106 + 0.0001*m.x111*m.x107 + 0.0001*m.x111*
m.x108 + 0.0001*m.x111*m.x109 + 0.0001*m.x111*m.x110 + 1.85230827005628*m.x111**2 + 0.0001*m.x111
*m.x112 + 0.0001*m.x111*m.x113 + 0.0001*m.x111*m.x114 + 0.0001*m.x111*m.x115 + 0.0001*m.x111*
m.x116 + 0.0001*m.x111*m.x117 + 0.0001*m.x111*m.x118 + 0.0001*m.x111*m.x119 + 0.0001*m.x111*
m.x120 + 0.0001*m.x111*m.x121 + 0.0001*m.x111*m.x122 + 0.0001*m.x111*m.x123 + 0.0001*m.x111*
m.x124 + 0.0001*m.x111*m.x125 + 0.0001*m.x111*m.x126 + 0.0001*m.x111*m.x127 + 0.0001*m.x111*
m.x128 + 0.0001*m.x111*m.x129 + 0.0001*m.x111*m.x130 + 0.0001*m.x111*m.x131 + 0.0001*m.x111*
m.x132 + 0.0001*m.x111*m.x133 + 0.0001*m.x111*m.x134 + 0.0001*m.x111*m.x135 + 0.0001*m.x111*
m.x136 + 0.0001*m.x111*m.x137 + 0.0001*m.x111*m.x138 + 0.0001*m.x111*m.x139 + 0.0001*m.x111*
m.x140 + 0.0001*m.x111*m.x141 + 0.0001*m.x111*m.x142 + 0.0001*m.x111*m.x143 + 0.0001*m.x111*
m.x144 + 0.0001*m.x111*m.x145 + 0.0001*m.x111*m.x146 + 0.0001*m.x111*m.x147 + 0.0001*m.x111*
m.x148 + 0.0001*m.x111*m.x149 + 0.0001*m.x111*m.x150 + 0.0001*m.x111*m.x151 + 0.0001*m.x111*
m.x152 + 0.0001*m.x111*m.x153 + 0.0001*m.x111*m.x154 + 0.0001*m.x111*m.x155 + 0.0001*m.x111*
m.x156 + 0.0001*m.x111*m.x157 + 0.0001*m.x111*m.x158 + 0.0001*m.x111*m.x159 + 0.0001*m.x111*
m.x160 + 0.0001*m.x111*m.x161 + 0.0001*m.x111*m.x162 + 0.0001*m.x111*m.x163 + 0.0001*m.x111*
m.x164 + 0.0001*m.x111*m.x165 + 0.0001*m.x111*m.x166 + 0.0001*m.x111*m.x167 + 0.0001*m.x111*
m.x168 + 0.0001*m.x111*m.x169 + 0.0001*m.x111*m.x170 + 0.0001*m.x111*m.x171 + 0.0001*m.x111*
m.x172 + 0.0001*m.x111*m.x173 + 0.0001*m.x111*m.x174 + 0.0001*m.x111*m.x175 + 0.0001*m.x111*
m.x176 + 0.0001*m.x111*m.x177 + 0.0001*m.x111*m.x178 + 2.12900182336716*m.x111*m.x179 + 0.0001*
m.x111*m.x180 + 0.0001*m.x111*m.x181 + 0.0001*m.x111*m.x182 + 0.0001*m.x111*m.x183 + 0.0001*
m.x111*m.x184 + 0.0001*m.x111*m.x185 + 0.0001*m.x112*m.x1 + 0.0001*m.x112*m.x2 + 0.0001*m.x112*
m.x3 + 0.0001*m.x112*m.x4 + 0.0001*m.x112*m.x5 + 0.0001*m.x112*m.x6 + 0.0001*m.x112*m.x7 + 0.0001
*m.x112*m.x8 + 0.0001*m.x112*m.x9 + 0.0001*m.x112*m.x10 + 0.0001*m.x112*m.x11 + 0.0001*m.x112*
m.x12 + 0.0001*m.x112*m.x13 + 0.0001*m.x112*m.x14 + 0.0001*m.x112*m.x15 + 0.0001*m.x112*m.x16 +
0.0001*m.x112*m.x17 + 0.0001*m.x112*m.x18 + 0.0001*m.x112*m.x19 + 0.0001*m.x112*m.x20 + 0.0001*
m.x112*m.x21 + 0.0001*m.x112*m.x22 + 0.0001*m.x112*m.x23 + 0.0001*m.x112*m.x24 + 0.0001*m.x112*
m.x25 + 0.0001*m.x112*m.x26 + 0.0001*m.x112*m.x27 + 0.0001*m.x112*m.x28 + 0.0001*m.x112*m.x29 +
0.0001*m.x112*m.x30 + 0.0001*m.x112*m.x31 + 0.0001*m.x112*m.x32 + 0.0001*m.x112*m.x33 + 0.0001*
m.x112*m.x34 + 0.0001*m.x112*m.x35 + 0.0001*m.x112*m.x36 + 0.0001*m.x112*m.x37 + 0.0001*m.x112*
m.x38 + 0.0001*m.x112*m.x39 + 0.0001*m.x112*m.x40 + 0.0001*m.x112*m.x41 + 0.0001*m.x112*m.x42 +
0.0001*m.x112*m.x43 + 0.0001*m.x112*m.x44 + 0.0001*m.x112*m.x45 + 0.0001*m.x112*m.x46 + 0.0001*
m.x112*m.x47 + 0.0001*m.x112*m.x48 + 0.0001*m.x112*m.x49 + 0.0001*m.x112*m.x50 + 0.0001*m.x112*
m.x51 + 0.0001*m.x112*m.x52 + 0.0001*m.x112*m.x53 + 0.0001*m.x112*m.x54 + 0.0001*m.x112*m.x55 +
0.0001*m.x112*m.x56 + 0.0001*m.x112*m.x57 + 0.0001*m.x112*m.x58 + 0.0001*m.x112*m.x59 + 0.0001*
m.x112*m.x60 + 0.0001*m.x112*m.x61 + 0.0001*m.x112*m.x62 + 0.0001*m.x112*m.x63 + 0.0001*m.x112*
m.x64 + 0.0001*m.x112*m.x65 + 0.0001*m.x112*m.x66 + 0.0001*m.x112*m.x67 + 0.0001*m.x112*m.x68 +
0.0001*m.x112*m.x69 + 0.0001*m.x112*m.x70 + 0.0001*m.x112*m.x71 + 0.0001*m.x112*m.x72 + 0.0001*
m.x112*m.x73 + 0.0001*m.x112*m.x74 + 0.0001*m.x112*m.x75 + 0.0001*m.x112*m.x76 + 0.0001*m.x112*
m.x77 + 0.0001*m.x112*m.x78 + 0.0001*m.x112*m.x79 + 0.0001*m.x112*m.x80 + 0.0001*m.x112*m.x81 +
0.0001*m.x112*m.x82 + 0.0001*m.x112*m.x83 + 0.0001*m.x112*m.x84 + 0.0001*m.x112*m.x85 + 0.0001*
m.x112*m.x86 + 0.0001*m.x112*m.x87 + 0.0001*m.x112*m.x88 + 0.0001*m.x112*m.x89 + 0.0001*m.x112*
m.x90 + 0.0001*m.x112*m.x91 + 0.0001*m.x112*m.x92 + 0.0001*m.x112*m.x93 + 0.0001*m.x112*m.x94 +
0.0001*m.x112*m.x95 + 0.0001*m.x112*m.x96 + 0.0001*m.x112*m.x97 + 0.0001*m.x112*m.x98 + 0.0001*
m.x112*m.x99 + 0.0001*m.x112*m.x100 + 0.0001*m.x112*m.x101 + 0.0001*m.x112*m.x102 + 0.0001*m.x112
*m.x103 + 0.0001*m.x112*m.x104 + 0.0001*m.x112*m.x105 + 0.0001*m.x112*m.x106 + 0.0001*m.x112*
m.x107 + 0.0001*m.x112*m.x108 + 0.0001*m.x112*m.x109 + 0.0001*m.x112*m.x110 + 0.0001*m.x112*
m.x111 + 3.9504776025216*m.x112**2 + 0.0001*m.x112*m.x113 + 0.0001*m.x112*m.x114 + 0.0001*m.x112*
m.x115 + 0.0001*m.x112*m.x116 + 0.0001*m.x112*m.x117 + 0.0001*m.x112*m.x118 + 0.0001*m.x112*
m.x119 + 0.0001*m.x112*m.x120 + 0.0001*m.x112*m.x121 + 0.0001*m.x112*m.x122 + 0.0001*m.x112*
m.x123 + 0.0001*m.x112*m.x124 + 0.0001*m.x112*m.x125 + 0.0001*m.x112*m.x126 + 0.0001*m.x112*
m.x127 + 0.0001*m.x112*m.x128 + 0.0001*m.x112*m.x129 + 0.0001*m.x112*m.x130 + 0.0001*m.x112*
m.x131 + 0.0001*m.x112*m.x132 + 0.0001*m.x112*m.x133 + 0.0001*m.x112*m.x134 + 0.0001*m.x112*
m.x135 + 0.0001*m.x112*m.x136 + 0.0001*m.x112*m.x137 + 0.0001*m.x112*m.x138 + 0.0001*m.x112*
m.x139 + 0.0001*m.x112*m.x140 + 0.0001*m.x112*m.x141 + 0.0001*m.x112*m.x142 + 0.0001*m.x112*
m.x143 + 0.0001*m.x112*m.x144 + 0.0001*m.x112*m.x145 + 0.0001*m.x112*m.x146 + 0.0001*m.x112*
m.x147 + 0.0001*m.x112*m.x148 + 0.0001*m.x112*m.x149 + 0.0001*m.x112*m.x150 + 0.0001*m.x112*
m.x151 + 0.0001*m.x112*m.x152 + 0.0001*m.x112*m.x153 + 0.0001*m.x112*m.x154 + 0.0001*m.x112*
m.x155 + 0.0001*m.x112*m.x156 + 0.0001*m.x112*m.x157 + 0.0001*m.x112*m.x158 + 0.0001*m.x112*
m.x159 + 0.0001*m.x112*m.x160 + 0.0001*m.x112*m.x161 + 0.0001*m.x112*m.x162 + 0.0001*m.x112*
m.x163 + 0.0001*m.x112*m.x164 + 0.0001*m.x112*m.x165 + 0.0001*m.x112*m.x166 + 0.0001*m.x112*
m.x167 + 0.0001*m.x112*m.x168 + 0.0001*m.x112*m.x169 + 0.0001*m.x112*m.x170 + 0.0001*m.x112*
m.x171 + 0.0001*m.x112*m.x172 + 0.0001*m.x112*m.x173 + 0.0001*m.x112*m.x174 + 0.0001*m.x112*
m.x175 + 0.0001*m.x112*m.x176 + 0.0001*m.x112*m.x177 + 0.0001*m.x112*m.x178 + 0.0001*m.x112*
m.x179 + 2.11770940690243*m.x112*m.x180 + 2.33597160736182*m.x112*m.x181 + 0.0001*m.x112*m.x182
+ 0.0001*m.x112*m.x183 + 0.0001*m.x112*m.x184 + 0.0001*m.x112*m.x185 + 0.0001*m.x113*m.x1 +
0.0001*m.x113*m.x2 + 0.0001*m.x113*m.x3 + 0.0001*m.x113*m.x4 + 0.0001*m.x113*m.x5 + 0.0001*m.x113
*m.x6 + 0.0001*m.x113*m.x7 + 0.0001*m.x113*m.x8 + 0.0001*m.x113*m.x9 + 0.0001*m.x113*m.x10 +
0.0001*m.x113*m.x11 + 0.0001*m.x113*m.x12 + 0.0001*m.x113*m.x13 + 0.0001*m.x113*m.x14 + 0.0001*
m.x113*m.x15 + 0.0001*m.x113*m.x16 + 0.0001*m.x113*m.x17 + 0.0001*m.x113*m.x18 + 0.0001*m.x113*
m.x19 + 0.0001*m.x113*m.x20 + 0.0001*m.x113*m.x21 + 0.0001*m.x113*m.x22 + 0.0001*m.x113*m.x23 +
0.0001*m.x113*m.x24 + 0.0001*m.x113*m.x25 + 0.0001*m.x113*m.x26 + 0.0001*m.x113*m.x27 + 0.0001*
m.x113*m.x28 + 0.0001*m.x113*m.x29 + 0.0001*m.x113*m.x30 + 0.0001*m.x113*m.x31 + 0.0001*m.x113*
m.x32 + 0.0001*m.x113*m.x33 + 0.0001*m.x113*m.x34 + 0.0001*m.x113*m.x35 + 0.0001*m.x113*m.x36 +
0.0001*m.x113*m.x37 + 0.0001*m.x113*m.x38 + 0.0001*m.x113*m.x39 + 0.0001*m.x113*m.x40 + 0.0001*
m.x113*m.x41 + 0.0001*m.x113*m.x42 + 0.0001*m.x113*m.x43 + 0.0001*m.x113*m.x44 + 0.0001*m.x113*
m.x45 + 0.0001*m.x113*m.x46 + 0.0001*m.x113*m.x47 + 0.0001*m.x113*m.x48 + 0.0001*m.x113*m.x49 +
0.0001*m.x113*m.x50 + 0.0001*m.x113*m.x51 + 0.0001*m.x113*m.x52 + 0.0001*m.x113*m.x53 + 0.0001*
m.x113*m.x54 + 0.0001*m.x113*m.x55 + 0.0001*m.x113*m.x56 + 0.0001*m.x113*m.x57 + 0.0001*m.x113*
m.x58 + 0.0001*m.x113*m.x59 + 0.0001*m.x113*m.x60 + 0.0001*m.x113*m.x61 + 0.0001*m.x113*m.x62 +
0.0001*m.x113*m.x63 + 0.0001*m.x113*m.x64 + 0.0001*m.x113*m.x65 + 0.0001*m.x113*m.x66 + 0.0001*
m.x113*m.x67 + 0.0001*m.x113*m.x68 + 0.0001*m.x113*m.x69 + 0.0001*m.x113*m.x70 + 0.0001*m.x113*
m.x71 + 0.0001*m.x113*m.x72 + 0.0001*m.x113*m.x73 + 0.0001*m.x113*m.x74 + 0.0001*m.x113*m.x75 +
0.0001*m.x113*m.x76 + 0.0001*m.x113*m.x77 + 0.0001*m.x113*m.x78 + 0.0001*m.x113*m.x79 + 0.0001*
m.x113*m.x80 + 0.0001*m.x113*m.x81 + 0.0001*m.x113*m.x82 + 0.0001*m.x113*m.x83 + 0.0001*m.x113*
m.x84 + 0.0001*m.x113*m.x85 + 0.0001*m.x113*m.x86 + 0.0001*m.x113*m.x87 + 0.0001*m.x113*m.x88 +
0.0001*m.x113*m.x89 + 0.0001*m.x113*m.x90 + 0.0001*m.x113*m.x91 + 0.0001*m.x113*m.x92 + 0.0001*
m.x113*m.x93 + 0.0001*m.x113*m.x94 + 0.0001*m.x113*m.x95 + 0.0001*m.x113*m.x96 + 0.0001*m.x113*
m.x97 + 0.0001*m.x113*m.x98 + 0.0001*m.x113*m.x99 + 0.0001*m.x113*m.x100 + 0.0001*m.x113*m.x101
+ 0.0001*m.x113*m.x102 + 0.0001*m.x113*m.x103 + 0.0001*m.x113*m.x104 + 0.0001*m.x113*m.x105 +
0.0001*m.x113*m.x106 + 0.0001*m.x113*m.x107 + 0.0001*m.x113*m.x108 + 0.0001*m.x113*m.x109 +
0.0001*m.x113*m.x110 + 0.0001*m.x113*m.x111 + 0.0001*m.x113*m.x112 + 1.84431874362729*m.x113**2
+ 0.0001*m.x113*m.x114 + 0.0001*m.x113*m.x115 + 0.0001*m.x113*m.x116 + 0.0001*m.x113*m.x117 +
0.0001*m.x113*m.x118 + 0.0001*m.x113*m.x119 + 0.0001*m.x113*m.x120 + 0.0001*m.x113*m.x121 +
0.0001*m.x113*m.x122 + 0.0001*m.x113*m.x123 + 0.0001*m.x113*m.x124 + 0.0001*m.x113*m.x125 +
0.0001*m.x113*m.x126 + 0.0001*m.x113*m.x127 + 0.0001*m.x113*m.x128 + 0.0001*m.x113*m.x129 +
0.0001*m.x113*m.x130 + 0.0001*m.x113*m.x131 + 0.0001*m.x113*m.x132 + 0.0001*m.x113*m.x133 +
0.0001*m.x113*m.x134 + 0.0001*m.x113*m.x135 + 0.0001*m.x113*m.x136 + 0.0001*m.x113*m.x137 +
0.0001*m.x113*m.x138 + 0.0001*m.x113*m.x139 + 0.0001*m.x113*m.x140 + 0.0001*m.x113*m.x141 +
0.0001*m.x113*m.x142 + 0.0001*m.x113*m.x143 + 0.0001*m.x113*m.x144 + 0.0001*m.x113*m.x145 +
0.0001*m.x113*m.x146 + 0.0001*m.x113*m.x147 + 0.0001*m.x113*m.x148 + 0.0001*m.x113*m.x149 +
0.0001*m.x113*m.x150 + 0.0001*m.x113*m.x151 + 0.0001*m.x113*m.x152 + 0.0001*m.x113*m.x153 +
0.0001*m.x113*m.x154 + 0.0001*m.x113*m.x155 + 0.0001*m.x113*m.x156 + 0.0001*m.x113*m.x157 +
0.0001*m.x113*m.x158 + 0.0001*m.x113*m.x159 + 0.0001*m.x113*m.x160 + 0.0001*m.x113*m.x161 +
0.0001*m.x113*m.x162 + 0.0001*m.x113*m.x163 + 0.0001*m.x113*m.x164 + 0.0001*m.x113*m.x165 +
0.0001*m.x113*m.x166 + 0.0001*m.x113*m.x167 + 0.0001*m.x113*m.x168 + 0.0001*m.x113*m.x169 +
0.0001*m.x113*m.x170 + 0.0001*m.x113*m.x171 + 0.0001*m.x113*m.x172 + 0.0001*m.x113*m.x173 +
0.0001*m.x113*m.x174 + 0.0001*m.x113*m.x175 + 0.0001*m.x113*m.x176 + 0.0001*m.x113*m.x177 +
0.0001*m.x113*m.x178 + 0.0001*m.x113*m.x179 + 0.0001*m.x113*m.x180 + 0.0001*m.x113*m.x181 +
2.07913408000641*m.x113*m.x182 + 0.0001*m.x113*m.x183 + 0.0001*m.x113*m.x184 + 0.0001*m.x113*
m.x185 + 0.0001*m.x114*m.x1 + 0.0001*m.x114*m.x2 + 0.0001*m.x114*m.x3 + 0.0001*m.x114*m.x4 +
0.0001*m.x114*m.x5 + 0.0001*m.x114*m.x6 + 0.0001*m.x114*m.x7 + 0.0001*m.x114*m.x8 + 0.0001*m.x114
*m.x9 + 0.0001*m.x114*m.x10 + 0.0001*m.x114*m.x11 + 0.0001*m.x114*m.x12 + 0.0001*m.x114*m.x13 +
0.0001*m.x114*m.x14 + 0.0001*m.x114*m.x15 + 0.0001*m.x114*m.x16 + 0.0001*m.x114*m.x17 + 0.0001*
m.x114*m.x18 + 0.0001*m.x114*m.x19 + 0.0001*m.x114*m.x20 + 0.0001*m.x114*m.x21 + 0.0001*m.x114*
m.x22 + 0.0001*m.x114*m.x23 + 0.0001*m.x114*m.x24 + 0.0001*m.x114*m.x25 + 0.0001*m.x114*m.x26 +
0.0001*m.x114*m.x27 + 0.0001*m.x114*m.x28 + 0.0001*m.x114*m.x29 + 0.0001*m.x114*m.x30 + 0.0001*
m.x114*m.x31 + 0.0001*m.x114*m.x32 + 0.0001*m.x114*m.x33 + 0.0001*m.x114*m.x34 + 0.0001*m.x114*
m.x35 + 0.0001*m.x114*m.x36 + 0.0001*m.x114*m.x37 + 0.0001*m.x114*m.x38 + 0.0001*m.x114*m.x39 +
0.0001*m.x114*m.x40 + 0.0001*m.x114*m.x41 + 0.0001*m.x114*m.x42 + 0.0001*m.x114*m.x43 + 0.0001*
m.x114*m.x44 + 0.0001*m.x114*m.x45 + 0.0001*m.x114*m.x46 + 0.0001*m.x114*m.x47 + 0.0001*m.x114*
m.x48 + 0.0001*m.x114*m.x49 + 0.0001*m.x114*m.x50 + 0.0001*m.x114*m.x51 + 0.0001*m.x114*m.x52 +
0.0001*m.x114*m.x53 + 0.0001*m.x114*m.x54 + 0.0001*m.x114*m.x55 + 0.0001*m.x114*m.x56 + 0.0001*
m.x114*m.x57 + 0.0001*m.x114*m.x58 + 0.0001*m.x114*m.x59 + 0.0001*m.x114*m.x60 + 0.0001*m.x114*
m.x61 + 0.0001*m.x114*m.x62 + 0.0001*m.x114*m.x63 + 0.0001*m.x114*m.x64 + 0.0001*m.x114*m.x65 +
0.0001*m.x114*m.x66 + 0.0001*m.x114*m.x67 + 0.0001*m.x114*m.x68 + 0.0001*m.x114*m.x69 + 0.0001*
m.x114*m.x70 + 0.0001*m.x114*m.x71 + 0.0001*m.x114*m.x72 + 0.0001*m.x114*m.x73 + 0.0001*m.x114*
m.x74 + 0.0001*m.x114*m.x75 + 0.0001*m.x114*m.x76 + 0.0001*m.x114*m.x77 + 0.0001*m.x114*m.x78 +
0.0001*m.x114*m.x79 + 0.0001*m.x114*m.x80 + 0.0001*m.x114*m.x81 + 0.0001*m.x114*m.x82 + 0.0001*
m.x114*m.x83 + 0.0001*m.x114*m.x84 + 0.0001*m.x114*m.x85 + 0.0001*m.x114*m.x86 + 0.0001*m.x114*
m.x87 + 0.0001*m.x114*m.x88 + 0.0001*m.x114*m.x89 + 0.0001*m.x114*m.x90 + 0.0001*m.x114*m.x91 +
0.0001*m.x114*m.x92 + 0.0001*m.x114*m.x93 + 0.0001*m.x114*m.x94 + 0.0001*m.x114*m.x95 + 0.0001*
m.x114*m.x96 + 0.0001*m.x114*m.x97 + 0.0001*m.x114*m.x98 + 0.0001*m.x114*m.x99 + 0.0001*m.x114*
m.x100 + 0.0001*m.x114*m.x101 + 0.0001*m.x114*m.x102 + 0.0001*m.x114*m.x103 + 0.0001*m.x114*
m.x104 + 0.0001*m.x114*m.x105 + 0.0001*m.x114*m.x106 + 0.0001*m.x114*m.x107 + 0.0001*m.x114*
m.x108 + 0.0001*m.x114*m.x109 + 0.0001*m.x114*m.x110 + 0.0001*m.x114*m.x111 + 0.0001*m.x114*
m.x112 + 0.0001*m.x114*m.x113 + 1.3637288491988*m.x114**2 + 0.0001*m.x114*m.x115 + 0.0001*m.x114*
m.x116 + 0.0001*m.x114*m.x117 + 0.0001*m.x114*m.x118 + 0.0001*m.x114*m.x119 + 0.0001*m.x114*
m.x120 + 0.0001*m.x114*m.x121 + 0.0001*m.x114*m.x122 + 0.0001*m.x114*m.x123 + 0.0001*m.x114*
m.x124 + 0.0001*m.x114*m.x125 + 0.0001*m.x114*m.x126 + 0.0001*m.x114*m.x127 + 0.0001*m.x114*
m.x128 + 0.0001*m.x114*m.x129 + 0.0001*m.x114*m.x130 + 0.0001*m.x114*m.x131 + 0.0001*m.x114*
m.x132 + 0.0001*m.x114*m.x133 + 0.0001*m.x114*m.x134 + 0.0001*m.x114*m.x135 + 0.0001*m.x114*
m.x136 + 0.0001*m.x114*m.x137 + 0.0001*m.x114*m.x138 + 0.0001*m.x114*m.x139 + 0.0001*m.x114*
m.x140 + 0.0001*m.x114*m.x141 + 0.0001*m.x114*m.x142 + 0.0001*m.x114*m.x143 + 0.0001*m.x114*
m.x144 + 0.0001*m.x114*m.x145 + 0.0001*m.x114*m.x146 + 0.0001*m.x114*m.x147 + 0.0001*m.x114*
m.x148 + 0.0001*m.x114*m.x149 + 0.0001*m.x114*m.x150 + 0.0001*m.x114*m.x151 + 0.0001*m.x114*
m.x152 + 0.0001*m.x114*m.x153 + 0.0001*m.x114*m.x154 + 0.0001*m.x114*m.x155 + 0.0001*m.x114*
m.x156 + 0.0001*m.x114*m.x157 + 0.0001*m.x114*m.x158 + 0.0001*m.x114*m.x159 + 0.0001*m.x114*
m.x160 + 0.0001*m.x114*m.x161 + 0.0001*m.x114*m.x162 + 0.0001*m.x114*m.x163 + 0.0001*m.x114*
m.x164 + 0.0001*m.x114*m.x165 + 0.0001*m.x114*m.x166 + 0.0001*m.x114*m.x167 + 0.0001*m.x114*
m.x168 + 0.0001*m.x114*m.x169 + 0.0001*m.x114*m.x170 + 0.0001*m.x114*m.x171 + 0.0001*m.x114*
m.x172 + 0.0001*m.x114*m.x173 + 0.0001*m.x114*m.x174 + 0.0001*m.x114*m.x175 + 0.0001*m.x114*
m.x176 + 0.0001*m.x114*m.x177 + 0.0001*m.x114*m.x178 + 0.0001*m.x114*m.x179 + 0.0001*m.x114*
m.x180 + 0.0001*m.x114*m.x181 + 0.0001*m.x114*m.x182 + 1.81266542307986*m.x114*m.x183 + 0.0001*
m.x114*m.x184 + 0.0001*m.x114*m.x185 + 0.0001*m.x115*m.x1 + 0.0001*m.x115*m.x2 + 0.0001*m.x115*
m.x3 + 0.0001*m.x115*m.x4 + 0.0001*m.x115*m.x5 + 0.0001*m.x115*m.x6 + 0.0001*m.x115*m.x7 + 0.0001
*m.x115*m.x8 + 0.0001*m.x115*m.x9 + 0.0001*m.x115*m.x10 + 0.0001*m.x115*m.x11 + 0.0001*m.x115*
m.x12 + 0.0001*m.x115*m.x13 + 0.0001*m.x115*m.x14 + 0.0001*m.x115*m.x15 + 0.0001*m.x115*m.x16 +
0.0001*m.x115*m.x17 + 0.0001*m.x115*m.x18 + 0.0001*m.x115*m.x19 + 0.0001*m.x115*m.x20 + 0.0001*
m.x115*m.x21 + 0.0001*m.x115*m.x22 + 0.0001*m.x115*m.x23 + 0.0001*m.x115*m.x24 + 0.0001*m.x115*
m.x25 + 0.0001*m.x115*m.x26 + 0.0001*m.x115*m.x27 + 0.0001*m.x115*m.x28 + 0.0001*m.x115*m.x29 +
0.0001*m.x115*m.x30 + 0.0001*m.x115*m.x31 + 0.0001*m.x115*m.x32 + 0.0001*m.x115*m.x33 + 0.0001*
m.x115*m.x34 + 0.0001*m.x115*m.x35 + 0.0001*m.x115*m.x36 + 0.0001*m.x115*m.x37 + 0.0001*m.x115*
m.x38 + 0.0001*m.x115*m.x39 + 0.0001*m.x115*m.x40 + 0.0001*m.x115*m.x41 + 0.0001*m.x115*m.x42 +
0.0001*m.x115*m.x43 + 0.0001*m.x115*m.x44 + 0.0001*m.x115*m.x45 + 0.0001*m.x115*m.x46 + 0.0001*
m.x115*m.x47 + 0.0001*m.x115*m.x48 + 0.0001*m.x115*m.x49 + 0.0001*m.x115*m.x50 + 0.0001*m.x115*
m.x51 + 0.0001*m.x115*m.x52 + 0.0001*m.x115*m.x53 + 0.0001*m.x115*m.x54 + 0.0001*m.x115*m.x55 +
0.0001*m.x115*m.x56 + 0.0001*m.x115*m.x57 + 0.0001*m.x115*m.x58 + 0.0001*m.x115*m.x59 + 0.0001*
m.x115*m.x60 + 0.0001*m.x115*m.x61 + 0.0001*m.x115*m.x62 + 0.0001*m.x115*m.x63 + 0.0001*m.x115*
m.x64 + 0.0001*m.x115*m.x65 + 0.0001*m.x115*m.x66 + 0.0001*m.x115*m.x67 + 0.0001*m.x115*m.x68 +
0.0001*m.x115*m.x69 + 0.0001*m.x115*m.x70 + 0.0001*m.x115*m.x71 + 0.0001*m.x115*m.x72 + 0.0001*
m.x115*m.x73 + 0.0001*m.x115*m.x74 + 0.0001*m.x115*m.x75 + 0.0001*m.x115*m.x76 + 0.0001*m.x115*
m.x77 + 0.0001*m.x115*m.x78 + 0.0001*m.x115*m.x79 + 0.0001*m.x115*m.x80 + 0.0001*m.x115*m.x81 +
0.0001*m.x115*m.x82 + 0.0001*m.x115*m.x83 + 0.0001*m.x115*m.x84 + 0.0001*m.x115*m.x85 + 0.0001*
m.x115*m.x86 + 0.0001*m.x115*m.x87 + 0.0001*m.x115*m.x88 + 0.0001*m.x115*m.x89 + 0.0001*m.x115*
m.x90 + 0.0001*m.x115*m.x91 + 0.0001*m.x115*m.x92 + 0.0001*m.x115*m.x93 + 0.0001*m.x115*m.x94 +
0.0001*m.x115*m.x95 + 0.0001*m.x115*m.x96 + 0.0001*m.x115*m.x97 + 0.0001*m.x115*m.x98 + 0.0001*
m.x115*m.x99 + 0.0001*m.x115*m.x100 + 0.0001*m.x115*m.x101 + 0.0001*m.x115*m.x102 + 0.0001*m.x115
*m.x103 + 0.0001*m.x115*m.x104 + 0.0001*m.x115*m.x105 + 0.0001*m.x115*m.x106 + 0.0001*m.x115*
m.x107 + 0.0001*m.x115*m.x108 + 0.0001*m.x115*m.x109 + 0.0001*m.x115*m.x110 + 0.0001*m.x115*
m.x111 + 0.0001*m.x115*m.x112 + 0.0001*m.x115*m.x113 + 0.0001*m.x115*m.x114 + 1.3637288491988*
m.x115**2 + 0.0001*m.x115*m.x116 + 0.0001*m.x115*m.x117 + 0.0001*m.x115*m.x118 + 0.0001*m.x115*
m.x119 + 0.0001*m.x115*m.x120 + 0.0001*m.x115*m.x121 + 0.0001*m.x115*m.x122 + 0.0001*m.x115*
m.x123 + 0.0001*m.x115*m.x124 + 0.0001*m.x115*m.x125 + 0.0001*m.x115*m.x126 + 0.0001*m.x115*
m.x127 + 0.0001*m.x115*m.x128 + 0.0001*m.x115*m.x129 + 0.0001*m.x115*m.x130 + 0.0001*m.x115*
m.x131 + 0.0001*m.x115*m.x132 + 0.0001*m.x115*m.x133 + 0.0001*m.x115*m.x134 + 0.0001*m.x115*
m.x135 + 0.0001*m.x115*m.x136 + 0.0001*m.x115*m.x137 + 0.0001*m.x115*m.x138 + 0.0001*m.x115*
m.x139 + 0.0001*m.x115*m.x140 + 0.0001*m.x115*m.x141 + 0.0001*m.x115*m.x142 + 0.0001*m.x115*
m.x143 + 0.0001*m.x115*m.x144 + 0.0001*m.x115*m.x145 + 0.0001*m.x115*m.x146 + 0.0001*m.x115*
m.x147 + 0.0001*m.x115*m.x148 + 0.0001*m.x115*m.x149 + 0.0001*m.x115*m.x150 + 0.0001*m.x115*
m.x151 + 0.0001*m.x115*m.x152 + 0.0001*m.x115*m.x153 + 0.0001*m.x115*m.x154 + 0.0001*m.x115*
m.x155 + 0.0001*m.x115*m.x156 + 0.0001*m.x115*m.x157 + 0.0001*m.x115*m.x158 + 0.0001*m.x115*
m.x159 + 0.0001*m.x115*m.x160 + 0.0001*m.x115*m.x161 + 0.0001*m.x115*m.x162 + 0.0001*m.x115*
m.x163 + 0.0001*m.x115*m.x164 + 0.0001*m.x115*m.x165 + 0.0001*m.x115*m.x166 + 0.0001*m.x115*
m.x167 + 0.0001*m.x115*m.x168 + 0.0001*m.x115*m.x169 + 0.0001*m.x115*m.x170 + 0.0001*m.x115*
m.x171 + 0.0001*m.x115*m.x172 + 0.0001*m.x115*m.x173 + 0.0001*m.x115*m.x174 + 0.0001*m.x115*
m.x175 + 0.0001*m.x115*m.x176 + 0.0001*m.x115*m.x177 + 0.0001*m.x115*m.x178 + 0.0001*m.x115*
m.x179 + 0.0001*m.x115*m.x180 + 0.0001*m.x115*m.x181 + 0.0001*m.x115*m.x182 + 0.0001*m.x115*
m.x183 + 1.81266542307986*m.x115*m.x184 + 0.0001*m.x115*m.x185 + 0.0001*m.x116*m.x1 + 0.0001*
m.x116*m.x2 + 0.0001*m.x116*m.x3 + 0.0001*m.x116*m.x4 + 0.0001*m.x116*m.x5 + 0.0001*m.x116*m.x6
+ 0.0001*m.x116*m.x7 + 0.0001*m.x116*m.x8 + 0.0001*m.x116*m.x9 + 0.0001*m.x116*m.x10 + 0.0001*
m.x116*m.x11 + 0.0001*m.x116*m.x12 + 0.0001*m.x116*m.x13 + 0.0001*m.x116*m.x14 + 0.0001*m.x116*
m.x15 + 0.0001*m.x116*m.x16 + 0.0001*m.x116*m.x17 + 0.0001*m.x116*m.x18 + 0.0001*m.x116*m.x19 +
0.0001*m.x116*m.x20 + 0.0001*m.x116*m.x21 + 0.0001*m.x116*m.x22 + 0.0001*m.x116*m.x23 + 0.0001*
m.x116*m.x24 + 0.0001*m.x116*m.x25 + 0.0001*m.x116*m.x26 + 0.0001*m.x116*m.x27 + 0.0001*m.x116*
m.x28 + 0.0001*m.x116*m.x29 + 0.0001*m.x116*m.x30 + 0.0001*m.x116*m.x31 + 0.0001*m.x116*m.x32 +
0.0001*m.x116*m.x33 + 0.0001*m.x116*m.x34 + 0.0001*m.x116*m.x35 + 0.0001*m.x116*m.x36 + 0.0001*
m.x116*m.x37 + 0.0001*m.x116*m.x38 + 0.0001*m.x116*m.x39 + 0.0001*m.x116*m.x40 + 0.0001*m.x116*
m.x41 + 0.0001*m.x116*m.x42 + 0.0001*m.x116*m.x43 + 0.0001*m.x116*m.x44 + 0.0001*m.x116*m.x45 +
0.0001*m.x116*m.x46 + 0.0001*m.x116*m.x47 + 0.0001*m.x116*m.x48 + 0.0001*m.x116*m.x49 + 0.0001*
m.x116*m.x50 + 0.0001*m.x116*m.x51 + 0.0001*m.x116*m.x52 + 0.0001*m.x116*m.x53 + 0.0001*m.x116*
m.x54 + 0.0001*m.x116*m.x55 + 0.0001*m.x116*m.x56 + 0.0001*m.x116*m.x57 + 0.0001*m.x116*m.x58 +
0.0001*m.x116*m.x59 + 0.0001*m.x116*m.x60 + 0.0001*m.x116*m.x61 + 0.0001*m.x116*m.x62 + 0.0001*
m.x116*m.x63 + 0.0001*m.x116*m.x64 + 0.0001*m.x116*m.x65 + 0.0001*m.x116*m.x66 + 0.0001*m.x116*
m.x67 + 0.0001*m.x116*m.x68 + 0.0001*m.x116*m.x69 + 0.0001*m.x116*m.x70 + 0.0001*m.x116*m.x71 +
0.0001*m.x116*m.x72 + 0.0001*m.x116*m.x73 + 0.0001*m.x116*m.x74 + 0.0001*m.x116*m.x75 + 0.0001*
m.x116*m.x76 + 0.0001*m.x116*m.x77 + 0.0001*m.x116*m.x78 + 0.0001*m.x116*m.x79 + 0.0001*m.x116*
m.x80 + 0.0001*m.x116*m.x81 + 0.0001*m.x116*m.x82 + 0.0001*m.x116*m.x83 + 0.0001*m.x116*m.x84 +
0.0001*m.x116*m.x85 + 0.0001*m.x116*m.x86 + 0.0001*m.x116*m.x87 + 0.0001*m.x116*m.x88 + 0.0001*
m.x116*m.x89 + 0.0001*m.x116*m.x90 + 0.0001*m.x116*m.x91 + 0.0001*m.x116*m.x92 + 0.0001*m.x116*
m.x93 + 0.0001*m.x116*m.x94 + 0.0001*m.x116*m.x95 + 0.0001*m.x116*m.x96 + 0.0001*m.x116*m.x97 +
0.0001*m.x116*m.x98 + 0.0001*m.x116*m.x99 + 0.0001*m.x116*m.x100 + 0.0001*m.x116*m.x101 + 0.0001*
m.x116*m.x102 + 0.0001*m.x116*m.x103 + 0.0001*m.x116*m.x104 + 0.0001*m.x116*m.x105 + 0.0001*
m.x116*m.x106 + 0.0001*m.x116*m.x107 + 0.0001*m.x116*m.x108 + 0.0001*m.x116*m.x109 + 0.0001*
m.x116*m.x110 + 0.0001*m.x116*m.x111 + 0.0001*m.x116*m.x112 + 0.0001*m.x116*m.x113 + 0.0001*
m.x116*m.x114 + 0.0001*m.x116*m.x115 + 6.78289880780816*m.x116**2 + 0.0001*m.x116*m.x117 + 0.0001
*m.x116*m.x118 + 0.0001*m.x116*m.x119 + 0.0001*m.x116*m.x120 + 0.0001*m.x116*m.x121 + 0.0001*
m.x116*m.x122 + 0.0001*m.x116*m.x123 + 0.0001*m.x116*m.x124 + 0.0001*m.x116*m.x125 + 0.0001*
m.x116*m.x126 + 0.0001*m.x116*m.x127 + 0.0001*m.x116*m.x128 + 0.530384532962827*m.x116*m.x129 +
0.0001*m.x116*m.x130 + 0.0001*m.x116*m.x131 + 0.0001*m.x116*m.x132 + 0.0001*m.x116*m.x133 +
0.0001*m.x116*m.x134 + 0.0001*m.x116*m.x135 + 0.0001*m.x116*m.x136 + 0.0001*m.x116*m.x137 +
0.0001*m.x116*m.x138 + 0.0001*m.x116*m.x139 + 0.0001*m.x116*m.x140 + 0.0001*m.x116*m.x141 +
9.26079022689604*m.x116*m.x142 + 0.0001*m.x116*m.x143 + 0.0001*m.x116*m.x144 + 0.0001*m.x116*
m.x145 + 0.0001*m.x116*m.x146 + 0.0001*m.x116*m.x147 + 0.0001*m.x116*m.x148 + 0.0001*m.x116*
m.x149 + 0.0001*m.x116*m.x150 + 0.0001*m.x116*m.x151 + 0.0001*m.x116*m.x152 + 0.0001*m.x116*
m.x153 + 0.0001*m.x116*m.x154 + 0.0001*m.x116*m.x155 + 0.0001*m.x116*m.x156 + 6.1573862905904*
m.x116*m.x157 + 0.0001*m.x116*m.x158 + 0.0001*m.x116*m.x159 + 0.0001*m.x116*m.x160 + 0.0001*
m.x116*m.x161 + 0.0001*m.x116*m.x162 + 0.0001*m.x116*m.x163 + 0.0001*m.x116*m.x164 + 0.0001*
m.x116*m.x165 + 0.0001*m.x116*m.x166 + 0.0001*m.x116*m.x167 + 0.0001*m.x116*m.x168 + 0.0001*
m.x116*m.x169 + 0.499857982206522*m.x116*m.x170 + 0.0001*m.x116*m.x171 + 0.0001*m.x116*m.x172 +
0.0001*m.x116*m.x173 + 0.0001*m.x116*m.x174 + 0.0001*m.x116*m.x175 + 0.0001*m.x116*m.x176 +
0.0001*m.x116*m.x177 + 0.0001*m.x116*m.x178 + 0.0001*m.x116*m.x179 + 0.0001*m.x116*m.x180 +
0.0001*m.x116*m.x181 + 0.0001*m.x116*m.x182 + 0.0001*m.x116*m.x183 + 0.0001*m.x116*m.x184 +
0.0001*m.x116*m.x185 + 0.0001*m.x117*m.x1 + 0.0001*m.x117*m.x2 + 0.0001*m.x117*m.x3 + 0.0001*
m.x117*m.x4 + 0.0001*m.x117*m.x5 + 0.0001*m.x117*m.x6 + 0.0001*m.x117*m.x7 + 0.0001*m.x117*m.x8
+ 0.0001*m.x117*m.x9 + 0.0001*m.x117*m.x10 + 0.0001*m.x117*m.x11 + 0.0001*m.x117*m.x12 + 0.0001*
m.x117*m.x13 + 0.0001*m.x117*m.x14 + 0.0001*m.x117*m.x15 + 0.0001*m.x117*m.x16 + 0.0001*m.x117*
m.x17 + 0.0001*m.x117*m.x18 + 0.0001*m.x117*m.x19 + 0.0001*m.x117*m.x20 + 0.0001*m.x117*m.x21 +
0.0001*m.x117*m.x22 + 0.0001*m.x117*m.x23 + 0.0001*m.x117*m.x24 + 0.0001*m.x117*m.x25 + 0.0001*
m.x117*m.x26 + 0.0001*m.x117*m.x27 + 0.0001*m.x117*m.x28 + 0.0001*m.x117*m.x29 + 0.0001*m.x117*
m.x30 + 0.0001*m.x117*m.x31 + 0.0001*m.x117*m.x32 + 0.0001*m.x117*m.x33 + 0.0001*m.x117*m.x34 +
0.0001*m.x117*m.x35 + 0.0001*m.x117*m.x36 + 0.0001*m.x117*m.x37 + 0.0001*m.x117*m.x38 + 0.0001*
m.x117*m.x39 + 0.0001*m.x117*m.x40 + 0.0001*m.x117*m.x41 + 0.0001*m.x117*m.x42 + 0.0001*m.x117*
m.x43 + 0.0001*m.x117*m.x44 + 0.0001*m.x117*m.x45 + 0.0001*m.x117*m.x46 + 0.0001*m.x117*m.x47 +
0.0001*m.x117*m.x48 + 0.0001*m.x117*m.x49 + 0.0001*m.x117*m.x50 + 0.0001*m.x117*m.x51 + 0.0001*
m.x117*m.x52 + 0.0001*m.x117*m.x53 + 0.0001*m.x117*m.x54 + 0.0001*m.x117*m.x55 + 0.0001*m.x117*
m.x56 + 0.0001*m.x117*m.x57 + 0.0001*m.x117*m.x58 + 0.0001*m.x117*m.x59 + 0.510414133291693*
m.x117*m.x60 + 0.0001*m.x117*m.x61 + 0.0001*m.x117*m.x62 + 0.0001*m.x117*m.x63 + 0.0001*m.x117*
m.x64 + 0.0001*m.x117*m.x65 + 0.0001*m.x117*m.x66 + 0.0001*m.x117*m.x67 + 0.0001*m.x117*m.x68 +
0.0001*m.x117*m.x69 + 0.0001*m.x117*m.x70 + 0.0001*m.x117*m.x71 + 1.48587678002252*m.x117*m.x72
+ 0.0001*m.x117*m.x73 + 0.0001*m.x117*m.x74 + 0.0001*m.x117*m.x75 + 0.0001*m.x117*m.x76 + 0.0001
*m.x117*m.x77 + 0.0001*m.x117*m.x78 + 0.0001*m.x117*m.x79 + 0.0001*m.x117*m.x80 + 0.0001*m.x117*
m.x81 + 0.0001*m.x117*m.x82 + 0.0001*m.x117*m.x83 + 0.0001*m.x117*m.x84 + 0.0001*m.x117*m.x85 +
0.0001*m.x117*m.x86 + 0.0001*m.x117*m.x87 + 0.0001*m.x117*m.x88 + 0.0001*m.x117*m.x89 + 0.0001*
m.x117*m.x90 + 0.0001*m.x117*m.x91 + 0.0001*m.x117*m.x92 + 0.0001*m.x117*m.x93 + 0.0001*m.x117*
m.x94 + 0.0001*m.x117*m.x95 + 0.0001*m.x117*m.x96 + 0.0001*m.x117*m.x97 + 0.0001*m.x117*m.x98 +
0.0001*m.x117*m.x99 + 0.0001*m.x117*m.x100 + 0.0001*m.x117*m.x101 + 0.0001*m.x117*m.x102 + 0.0001
*m.x117*m.x103 + 0.0001*m.x117*m.x104 + 0.0001*m.x117*m.x105 + 0.0001*m.x117*m.x106 + 0.0001*
m.x117*m.x107 + 0.0001*m.x117*m.x108 + 0.0001*m.x117*m.x109 + 0.0001*m.x117*m.x110 + 0.0001*
m.x117*m.x111 + 0.0001*m.x117*m.x112 + 0.0001*m.x117*m.x113 + 0.0001*m.x117*m.x114 + 0.0001*
m.x117*m.x115 + 0.0001*m.x117*m.x116 + 6.81443713506891*m.x117**2 + 0.0001*m.x117*m.x118 + 0.0001
*m.x117*m.x119 + 0.0001*m.x117*m.x120 + 0.0001*m.x117*m.x121 + 0.0001*m.x117*m.x122 + 0.0001*
m.x117*m.x123 + 0.0001*m.x117*m.x124 + 0.0001*m.x117*m.x125 + 0.0001*m.x117*m.x126 + 0.0001*
m.x117*m.x127 + 0.0001*m.x117*m.x128 + 0.0001*m.x117*m.x129 + 0.0001*m.x117*m.x130 + 0.0001*
m.x117*m.x131 + 0.0001*m.x117*m.x132 + 0.0001*m.x117*m.x133 + 0.0001*m.x117*m.x134 + 0.0001*
m.x117*m.x135 + 0.0001*m.x117*m.x136 + 0.0001*m.x117*m.x137 + 0.0001*m.x117*m.x138 + 0.0001*
m.x117*m.x139 + 0.0001*m.x117*m.x140 + 0.0001*m.x117*m.x141 + 0.0001*m.x117*m.x142 +
9.26079022689604*m.x117*m.x143 + 0.0001*m.x117*m.x144 + 0.0001*m.x117*m.x145 + 0.0001*m.x117*
m.x146 + 0.0001*m.x117*m.x147 + 0.0001*m.x117*m.x148 + 0.0001*m.x117*m.x149 + 0.0001*m.x117*
m.x150 + 0.0001*m.x117*m.x151 + 0.0001*m.x117*m.x152 + 0.0001*m.x117*m.x153 + 0.0001*m.x117*
m.x154 + 0.0001*m.x117*m.x155 + 0.0001*m.x117*m.x156 + 0.0001*m.x117*m.x157 + 6.63439031667751*
m.x117*m.x158 + 0.0001*m.x117*m.x159 + 0.0001*m.x117*m.x160 + 0.0001*m.x117*m.x161 + 0.0001*
m.x117*m.x162 + 0.0001*m.x117*m.x163 + 0.0001*m.x117*m.x164 + 0.0001*m.x117*m.x165 + 0.0001*
m.x117*m.x166 + 0.0001*m.x117*m.x167 + 0.0001*m.x117*m.x168 + 0.0001*m.x117*m.x169 + 0.0001*
m.x117*m.x170 + 0.0001*m.x117*m.x171 + 0.0001*m.x117*m.x172 + 0.0001*m.x117*m.x173 + 0.0001*
m.x117*m.x174 + 0.0001*m.x117*m.x175 + 0.0001*m.x117*m.x176 + 0.0001*m.x117*m.x177 + 0.0001*
m.x117*m.x178 + 0.0001*m.x117*m.x179 + 0.0001*m.x117*m.x180 + 0.0001*m.x117*m.x181 + 0.0001*
m.x117*m.x182 + 0.0001*m.x117*m.x183 + 0.0001*m.x117*m.x184 + 0.0001*m.x117*m.x185 + 0.0001*
m.x118*m.x1 + 0.0001*m.x118*m.x2 + 0.0001*m.x118*m.x3 + 0.0001*m.x118*m.x4 + 0.0001*m.x118*m.x5
+ 0.0001*m.x118*m.x6 + 0.0001*m.x118*m.x7 + 0.0001*m.x118*m.x8 + 0.0001*m.x118*m.x9 + 0.0001*
m.x118*m.x10 + 0.0001*m.x118*m.x11 + 0.0001*m.x118*m.x12 + 0.0001*m.x118*m.x13 + 0.0001*m.x118*
m.x14 + 0.0001*m.x118*m.x15 + 0.0001*m.x118*m.x16 + 0.0001*m.x118*m.x17 + 0.0001*m.x118*m.x18 +
0.0001*m.x118*m.x19 + 0.0001*m.x118*m.x20 + 0.0001*m.x118*m.x21 + 0.0001*m.x118*m.x22 + 0.0001*
m.x118*m.x23 + 0.0001*m.x118*m.x24 + 0.0001*m.x118*m.x25 + 0.0001*m.x118*m.x26 + 0.0001*m.x118*
m.x27 + 0.0001*m.x118*m.x28 + 0.0001*m.x118*m.x29 + 0.0001*m.x118*m.x30 + 0.0001*m.x118*m.x31 +
0.0001*m.x118*m.x32 + 0.0001*m.x118*m.x33 + 0.0001*m.x118*m.x34 + 0.0001*m.x118*m.x35 + 0.0001*
m.x118*m.x36 + 0.0001*m.x118*m.x37 + 0.0001*m.x118*m.x38 + 0.0001*m.x118*m.x39 + 0.0001*m.x118*
m.x40 + 0.0001*m.x118*m.x41 + 0.0001*m.x118*m.x42 + 0.0001*m.x118*m.x43 + 0.0001*m.x118*m.x44 +
0.0001*m.x118*m.x45 + 0.0001*m.x118*m.x46 + 0.0001*m.x118*m.x47 + 0.0001*m.x118*m.x48 + 0.0001*
m.x118*m.x49 + 0.0001*m.x118*m.x50 + 0.0001*m.x118*m.x51 + 0.0001*m.x118*m.x52 + 0.0001*m.x118*
m.x53 + 0.0001*m.x118*m.x54 + 0.0001*m.x118*m.x55 + 0.0001*m.x118*m.x56 + 0.0001*m.x118*m.x57 +
0.0001*m.x118*m.x58 + 0.0001*m.x118*m.x59 + 0.0001*m.x118*m.x60 + 0.0001*m.x118*m.x61 + 0.0001*
m.x118*m.x62 + 0.0001*m.x118*m.x63 + 0.0001*m.x118*m.x64 + 0.0001*m.x118*m.x65 + 0.0001*m.x118*
m.x66 + 0.0001*m.x118*m.x67 + 0.0001*m.x118*m.x68 + 0.0001*m.x118*m.x69 + 0.0001*m.x118*m.x70 +
0.0001*m.x118*m.x71 + 0.0001*m.x118*m.x72 + 0.825676042763423*m.x118*m.x73 + 0.0001*m.x118*m.x74
+ 0.0001*m.x118*m.x75 + 0.0001*m.x118*m.x76 + 0.0001*m.x118*m.x77 + 0.0001*m.x118*m.x78 + 0.0001
*m.x118*m.x79 + 0.0001*m.x118*m.x80 + 0.0001*m.x118*m.x81 + 0.0001*m.x118*m.x82 + 0.0001*m.x118*
m.x83 + 0.0001*m.x118*m.x84 + 0.0001*m.x118*m.x85 + 0.0001*m.x118*m.x86 + 0.0001*m.x118*m.x87 +
0.0001*m.x118*m.x88 + 0.0001*m.x118*m.x89 + 0.0001*m.x118*m.x90 + 0.0001*m.x118*m.x91 + 0.0001*
m.x118*m.x92 + 0.0001*m.x118*m.x93 + 0.0001*m.x118*m.x94 + 0.0001*m.x118*m.x95 + 0.0001*m.x118*
m.x96 + 0.0001*m.x118*m.x97 + 0.0001*m.x118*m.x98 + 0.0001*m.x118*m.x99 + 0.0001*m.x118*m.x100 +
0.0001*m.x118*m.x101 + 0.0001*m.x118*m.x102 + 0.0001*m.x118*m.x103 + 0.0001*m.x118*m.x104 +
0.0001*m.x118*m.x105 + 0.0001*m.x118*m.x106 + 0.0001*m.x118*m.x107 + 0.0001*m.x118*m.x108 +
0.0001*m.x118*m.x109 + 0.0001*m.x118*m.x110 + 0.0001*m.x118*m.x111 + 0.0001*m.x118*m.x112 +
0.0001*m.x118*m.x113 + 0.0001*m.x118*m.x114 + 0.0001*m.x118*m.x115 + 0.0001*m.x118*m.x116 +
0.0001*m.x118*m.x117 + 4.44490293411745*m.x118**2 + 0.0001*m.x118*m.x119 + 0.0001*m.x118*m.x120
+ 0.0001*m.x118*m.x121 + 0.0001*m.x118*m.x122 + 0.0001*m.x118*m.x123 + 0.0001*m.x118*m.x124 +
0.0001*m.x118*m.x125 + 0.0001*m.x118*m.x126 + 0.0001*m.x118*m.x127 + 0.0001*m.x118*m.x128 +
0.0001*m.x118*m.x129 + 0.0001*m.x118*m.x130 + 0.0001*m.x118*m.x131 + 0.0001*m.x118*m.x132 +
0.0001*m.x118*m.x133 + 0.0001*m.x118*m.x134 + 0.0001*m.x118*m.x135 + 0.0001*m.x118*m.x136 +
0.0001*m.x118*m.x137 + 0.0001*m.x118*m.x138 + 0.0001*m.x118*m.x139 + 0.0001*m.x118*m.x140 +
0.0001*m.x118*m.x141 + 0.0001*m.x118*m.x142 + 0.0001*m.x118*m.x143 + 5.79346015976993*m.x118*
m.x144 + 0.0001*m.x118*m.x145 + 0.0001*m.x118*m.x146 + 0.0001*m.x118*m.x147 + 0.0001*m.x118*
m.x148 + 0.0001*m.x118*m.x149 + 0.0001*m.x118*m.x150 + 0.0001*m.x118*m.x151 + 0.0001*m.x118*
m.x152 + 0.0001*m.x118*m.x153 + 0.0001*m.x118*m.x154 + 0.0001*m.x118*m.x155 + 0.0001*m.x118*
m.x156 + 0.0001*m.x118*m.x157 + 0.0001*m.x118*m.x158 + 4.32746339292626*m.x118*m.x159 + 0.0001*
m.x118*m.x160 + 0.0001*m.x118*m.x161 + 0.0001*m.x118*m.x162 + 0.0001*m.x118*m.x163 + 0.0001*
m.x118*m.x164 + 0.0001*m.x118*m.x165 + 0.0001*m.x118*m.x166 + 0.0001*m.x118*m.x167 + 0.0001*
m.x118*m.x168 + 0.0001*m.x118*m.x169 + 0.0001*m.x118*m.x170 + 0.0001*m.x118*m.x171 + 0.0001*
m.x118*m.x172 + 0.0001*m.x118*m.x173 + 0.0001*m.x118*m.x174 + 0.0001*m.x118*m.x175 + 0.0001*
m.x118*m.x176 + 0.0001*m.x118*m.x177 + 0.0001*m.x118*m.x178 + 0.0001*m.x118*m.x179 + 0.0001*
m.x118*m.x180 + 0.0001*m.x118*m.x181 + 0.0001*m.x118*m.x182 + 0.0001*m.x118*m.x183 + 0.0001*
m.x118*m.x184 + 0.0001*m.x118*m.x185 + 0.0001*m.x119*m.x1 + 0.0001*m.x119*m.x2 + 0.0001*m.x119*
m.x3 + 0.0001*m.x119*m.x4 + 0.0001*m.x119*m.x5 + 0.0001*m.x119*m.x6 + 0.0001*m.x119*m.x7 + 0.0001
*m.x119*m.x8 + 0.0001*m.x119*m.x9 + 0.0001*m.x119*m.x10 + 0.0001*m.x119*m.x11 + 0.0001*m.x119*
m.x12 + 0.0001*m.x119*m.x13 + 0.0001*m.x119*m.x14 + 0.0001*m.x119*m.x15 + 0.0001*m.x119*m.x16 +
0.0001*m.x119*m.x17 + 0.0001*m.x119*m.x18 + 0.0001*m.x119*m.x19 + 0.0001*m.x119*m.x20 + 0.0001*
m.x119*m.x21 + 0.0001*m.x119*m.x22 + 0.0001*m.x119*m.x23 + 0.0001*m.x119*m.x24 + 0.0001*m.x119*
m.x25 + 0.0001*m.x119*m.x26 + 0.0001*m.x119*m.x27 + 0.0001*m.x119*m.x28 + 0.0001*m.x119*m.x29 +
0.0001*m.x119*m.x30 + 0.0001*m.x119*m.x31 + 0.0001*m.x119*m.x32 + 0.0001*m.x119*m.x33 + 0.0001*
m.x119*m.x34 + 0.0001*m.x119*m.x35 + 0.0001*m.x119*m.x36 + 0.0001*m.x119*m.x37 + 0.0001*m.x119*
m.x38 + 0.0001*m.x119*m.x39 + 0.0001*m.x119*m.x40 + 0.0001*m.x119*m.x41 + 0.0001*m.x119*m.x42 +
0.0001*m.x119*m.x43 + 0.0001*m.x119*m.x44 + 0.0001*m.x119*m.x45 + 0.0001*m.x119*m.x46 + 0.0001*
m.x119*m.x47 + 0.0001*m.x119*m.x48 + 0.0001*m.x119*m.x49 + 0.0001*m.x119*m.x50 + 0.0001*m.x119*
m.x51 + 0.0001*m.x119*m.x52 + 0.0001*m.x119*m.x53 + 0.0001*m.x119*m.x54 + 0.0001*m.x119*m.x55 +
0.0001*m.x119*m.x56 + 0.0001*m.x119*m.x57 + 0.0001*m.x119*m.x58 + 0.0001*m.x119*m.x59 + 0.0001*
m.x119*m.x60 + 0.0001*m.x119*m.x61 + 0.0001*m.x119*m.x62 + 0.0001*m.x119*m.x63 + 0.0001*m.x119*
m.x64 + 0.0001*m.x119*m.x65 + 0.0001*m.x119*m.x66 + 0.0001*m.x119*m.x67 + 0.0001*m.x119*m.x68 +
0.0001*m.x119*m.x69 + 0.0001*m.x119*m.x70 + 0.0001*m.x119*m.x71 + 0.0001*m.x119*m.x72 + 0.0001*
m.x119*m.x73 + 0.726124762373682*m.x119*m.x74 + 0.0001*m.x119*m.x75 + 0.0001*m.x119*m.x76 +
0.0001*m.x119*m.x77 + 0.0001*m.x119*m.x78 + 0.0001*m.x119*m.x79 + 0.0001*m.x119*m.x80 + 0.0001*
m.x119*m.x81 + 0.0001*m.x119*m.x82 + 0.0001*m.x119*m.x83 + 0.0001*m.x119*m.x84 + 0.0001*m.x119*
m.x85 + 0.0001*m.x119*m.x86 + 0.0001*m.x119*m.x87 + 0.0001*m.x119*m.x88 + 0.0001*m.x119*m.x89 +
0.0001*m.x119*m.x90 + 0.0001*m.x119*m.x91 + 0.0001*m.x119*m.x92 + 0.0001*m.x119*m.x93 + 0.0001*
m.x119*m.x94 + 0.0001*m.x119*m.x95 + 0.0001*m.x119*m.x96 + 0.0001*m.x119*m.x97 + 0.0001*m.x119*
m.x98 + 0.0001*m.x119*m.x99 + 0.0001*m.x119*m.x100 + 0.0001*m.x119*m.x101 + 0.0001*m.x119*m.x102
+ 0.0001*m.x119*m.x103 + 0.0001*m.x119*m.x104 + 0.0001*m.x119*m.x105 + 0.0001*m.x119*m.x106 +
0.0001*m.x119*m.x107 + 0.0001*m.x119*m.x108 + 0.0001*m.x119*m.x109 + 0.0001*m.x119*m.x110 +
0.0001*m.x119*m.x111 + 0.0001*m.x119*m.x112 + 0.0001*m.x119*m.x113 + 0.0001*m.x119*m.x114 +
0.0001*m.x119*m.x115 + 0.0001*m.x119*m.x116 + 0.0001*m.x119*m.x117 + 0.0001*m.x119*m.x118 +
3.90750072903709*m.x119**2 + 0.0001*m.x119*m.x120 + 0.0001*m.x119*m.x121 + 0.0001*m.x119*m.x122
+ 0.0001*m.x119*m.x123 + 0.0001*m.x119*m.x124 + 0.0001*m.x119*m.x125 + 0.0001*m.x119*m.x126 +
0.0001*m.x119*m.x127 + 0.0001*m.x119*m.x128 + 0.0001*m.x119*m.x129 + 0.0001*m.x119*m.x130 +
0.0001*m.x119*m.x131 + 0.0001*m.x119*m.x132 + 0.0001*m.x119*m.x133 + 0.0001*m.x119*m.x134 +
0.0001*m.x119*m.x135 + 0.0001*m.x119*m.x136 + 0.0001*m.x119*m.x137 + 0.0001*m.x119*m.x138 +
0.0001*m.x119*m.x139 + 0.0001*m.x119*m.x140 + 0.0001*m.x119*m.x141 + 0.0001*m.x119*m.x142 +
0.0001*m.x119*m.x143 + 0.0001*m.x119*m.x144 + 6.32668681277508*m.x119*m.x145 + 0.0001*m.x119*
m.x146 + 0.0001*m.x119*m.x147 + 0.0001*m.x119*m.x148 + 0.0001*m.x119*m.x149 + 0.0001*m.x119*
m.x150 + 0.0001*m.x119*m.x151 + 0.0001*m.x119*m.x152 + 0.0001*m.x119*m.x153 + 0.0001*m.x119*
m.x154 + 0.0001*m.x119*m.x155 + 0.0001*m.x119*m.x156 + 0.0001*m.x119*m.x157 + 0.0001*m.x119*
m.x158 + 0.0001*m.x119*m.x159 + 3.80901503232404*m.x119*m.x160 + 0.0001*m.x119*m.x161 + 0.0001*
m.x119*m.x162 + 0.0001*m.x119*m.x163 + 0.0001*m.x119*m.x164 + 0.0001*m.x119*m.x165 + 0.0001*
m.x119*m.x166 + 0.0001*m.x119*m.x167 + 0.0001*m.x119*m.x168 + 0.0001*m.x119*m.x169 + 0.0001*
m.x119*m.x170 + 0.0001*m.x119*m.x171 + 0.0001*m.x119*m.x172 + 0.0001*m.x119*m.x173 + 0.0001*
m.x119*m.x174 + 0.0001*m.x119*m.x175 + 0.0001*m.x119*m.x176 + 0.0001*m.x119*m.x177 + 0.0001*
m.x119*m.x178 + 0.0001*m.x119*m.x179 + 0.0001*m.x119*m.x180 + 0.0001*m.x119*m.x181 + 0.0001*
m.x119*m.x182 + 0.0001*m.x119*m.x183 + 0.0001*m.x119*m.x184 + 0.0001*m.x119*m.x185 + 0.0001*
m.x120*m.x1 + 0.0001*m.x120*m.x2 + 0.0001*m.x120*m.x3 + 0.0001*m.x120*m.x4 + 0.0001*m.x120*m.x5
+ 0.0001*m.x120*m.x6 + 0.0001*m.x120*m.x7 + 0.0001*m.x120*m.x8 + 0.0001*m.x120*m.x9 + 0.0001*
m.x120*m.x10 + 0.0001*m.x120*m.x11 + 0.0001*m.x120*m.x12 + 0.0001*m.x120*m.x13 + 0.0001*m.x120*
m.x14 + 0.0001*m.x120*m.x15 + 0.0001*m.x120*m.x16 + 0.0001*m.x120*m.x17 + 0.0001*m.x120*m.x18 +
0.0001*m.x120*m.x19 + 0.0001*m.x120*m.x20 + 0.0001*m.x120*m.x21 + 0.0001*m.x120*m.x22 + 0.0001*
m.x120*m.x23 + 0.0001*m.x120*m.x24 + 0.0001*m.x120*m.x25 + 0.0001*m.x120*m.x26 + 0.0001*m.x120*
m.x27 + 0.0001*m.x120*m.x28 + 0.0001*m.x120*m.x29 + 0.0001*m.x120*m.x30 + 0.0001*m.x120*m.x31 +
0.0001*m.x120*m.x32 + 0.0001*m.x120*m.x33 + 0.0001*m.x120*m.x34 + 0.0001*m.x120*m.x35 + 0.0001*
m.x120*m.x36 + 0.0001*m.x120*m.x37 + 0.0001*m.x120*m.x38 + 0.0001*m.x120*m.x39 + 0.0001*m.x120*
m.x40 + 0.0001*m.x120*m.x41 + 0.0001*m.x120*m.x42 + 0.0001*m.x120*m.x43 + 0.0001*m.x120*m.x44 +
0.0001*m.x120*m.x45 + 0.0001*m.x120*m.x46 + 0.0001*m.x120*m.x47 + 0.0001*m.x120*m.x48 + 0.0001*
m.x120*m.x49 + 0.0001*m.x120*m.x50 + 0.0001*m.x120*m.x51 + 0.0001*m.x120*m.x52 + 0.0001*m.x120*
m.x53 + 0.0001*m.x120*m.x54 + 0.0001*m.x120*m.x55 + 0.0001*m.x120*m.x56 + 0.0001*m.x120*m.x57 +
0.0001*m.x120*m.x58 + 0.0001*m.x120*m.x59 + 0.0001*m.x120*m.x60 + 0.0001*m.x120*m.x61 + 0.0001*
m.x120*m.x62 + 0.0001*m.x120*m.x63 + 0.0001*m.x120*m.x64 + 0.0001*m.x120*m.x65 + 0.0001*m.x120*
m.x66 + 0.0001*m.x120*m.x67 + 0.0001*m.x120*m.x68 + 0.0001*m.x120*m.x69 + 0.0001*m.x120*m.x70 +
0.0001*m.x120*m.x71 + 0.0001*m.x120*m.x72 + 0.0001*m.x120*m.x73 + 0.0001*m.x120*m.x74 +
0.807657733076222*m.x120*m.x75 + 0.0001*m.x120*m.x76 + 0.0001*m.x120*m.x77 + 0.0001*m.x120*m.x78
+ 0.0001*m.x120*m.x79 + 0.0001*m.x120*m.x80 + 0.0001*m.x120*m.x81 + 0.0001*m.x120*m.x82 + 0.0001
*m.x120*m.x83 + 0.0001*m.x120*m.x84 + 0.0001*m.x120*m.x85 + 0.0001*m.x120*m.x86 + 0.0001*m.x120*
m.x87 + 0.0001*m.x120*m.x88 + 0.0001*m.x120*m.x89 + 0.0001*m.x120*m.x90 + 0.0001*m.x120*m.x91 +
0.0001*m.x120*m.x92 + 0.0001*m.x120*m.x93 + 0.0001*m.x120*m.x94 + 0.0001*m.x120*m.x95 + 0.0001*
m.x120*m.x96 + 0.0001*m.x120*m.x97 + 0.0001*m.x120*m.x98 + 0.0001*m.x120*m.x99 + 0.0001*m.x120*
m.x100 + 0.0001*m.x120*m.x101 + 0.0001*m.x120*m.x102 + 0.0001*m.x120*m.x103 + 0.0001*m.x120*
m.x104 + 0.0001*m.x120*m.x105 + 0.0001*m.x120*m.x106 + 0.0001*m.x120*m.x107 + 0.0001*m.x120*
m.x108 + 0.0001*m.x120*m.x109 + 0.0001*m.x120*m.x110 + 0.0001*m.x120*m.x111 + 0.0001*m.x120*
m.x112 + 0.0001*m.x120*m.x113 + 0.0001*m.x120*m.x114 + 0.0001*m.x120*m.x115 + 0.0001*m.x120*
m.x116 + 0.0001*m.x120*m.x117 + 0.0001*m.x120*m.x118 + 0.0001*m.x120*m.x119 + 3.90750072903709*
m.x120**2 + 0.0001*m.x120*m.x121 + 0.0001*m.x120*m.x122 + 0.0001*m.x120*m.x123 + 0.0001*m.x120*
m.x124 + 0.0001*m.x120*m.x125 + 0.0001*m.x120*m.x126 + 0.0001*m.x120*m.x127 + 0.0001*m.x120*
m.x128 + 0.0001*m.x120*m.x129 + 0.0001*m.x120*m.x130 + 0.0001*m.x120*m.x131 + 0.0001*m.x120*
m.x132 + 0.0001*m.x120*m.x133 + 0.0001*m.x120*m.x134 + 0.0001*m.x120*m.x135 + 0.0001*m.x120*
m.x136 + 0.0001*m.x120*m.x137 + 0.0001*m.x120*m.x138 + 0.0001*m.x120*m.x139 + 0.0001*m.x120*
m.x140 + 0.0001*m.x120*m.x141 + 0.0001*m.x120*m.x142 + 0.0001*m.x120*m.x143 + 0.0001*m.x120*
m.x144 + 0.0001*m.x120*m.x145 + 6.32668681277508*m.x120*m.x146 + 0.0001*m.x120*m.x147 + 0.0001*
m.x120*m.x148 + 0.0001*m.x120*m.x149 + 0.0001*m.x120*m.x150 + 0.0001*m.x120*m.x151 + 0.0001*
m.x120*m.x152 + 0.0001*m.x120*m.x153 + 0.0001*m.x120*m.x154 + 0.0001*m.x120*m.x155 + 0.0001*
m.x120*m.x156 + 0.0001*m.x120*m.x157 + 0.0001*m.x120*m.x158 + 0.0001*m.x120*m.x159 + 0.0001*
m.x120*m.x160 + 3.41170115969337*m.x120*m.x161 + 0.0001*m.x120*m.x162 + 0.0001*m.x120*m.x163 +
0.0001*m.x120*m.x164 + 0.0001*m.x120*m.x165 + 0.0001*m.x120*m.x166 + 0.0001*m.x120*m.x167 +
0.0001*m.x120*m.x168 + 0.0001*m.x120*m.x169 + 0.0001*m.x120*m.x170 + 0.0001*m.x120*m.x171 +
0.0001*m.x120*m.x172 + 0.0001*m.x120*m.x173 + 0.0001*m.x120*m.x174 + 0.0001*m.x120*m.x175 +
0.0001*m.x120*m.x176 + 0.0001*m.x120*m.x177 + 0.0001*m.x120*m.x178 + 0.0001*m.x120*m.x179 +
0.0001*m.x120*m.x180 + 0.0001*m.x120*m.x181 + 0.0001*m.x120*m.x182 + 0.0001*m.x120*m.x183 +
0.0001*m.x120*m.x184 + 0.0001*m.x120*m.x185 + 0.0001*m.x121*m.x1 + 0.0001*m.x121*m.x2 + 0.0001*
m.x121*m.x3 + 0.0001*m.x121*m.x4 + 0.0001*m.x121*m.x5 + 0.0001*m.x121*m.x6 + 0.0001*m.x121*m.x7
+ 0.0001*m.x121*m.x8 + 0.0001*m.x121*m.x9 + 0.0001*m.x121*m.x10 + 0.0001*m.x121*m.x11 + 0.0001*
m.x121*m.x12 + 0.0001*m.x121*m.x13 + 0.0001*m.x121*m.x14 + 0.0001*m.x121*m.x15 + 0.0001*m.x121*
m.x16 + 0.0001*m.x121*m.x17 + 0.0001*m.x121*m.x18 + 0.0001*m.x121*m.x19 + 0.0001*m.x121*m.x20 +
0.0001*m.x121*m.x21 + 0.0001*m.x121*m.x22 + 0.0001*m.x121*m.x23 + 0.0001*m.x121*m.x24 + 0.0001*
m.x121*m.x25 + 0.0001*m.x121*m.x26 + 0.0001*m.x121*m.x27 + 0.0001*m.x121*m.x28 + 0.0001*m.x121*
m.x29 + 0.0001*m.x121*m.x30 + 0.0001*m.x121*m.x31 + 0.0001*m.x121*m.x32 + 0.0001*m.x121*m.x33 +
0.0001*m.x121*m.x34 + 0.0001*m.x121*m.x35 + 0.0001*m.x121*m.x36 + 0.0001*m.x121*m.x37 + 0.0001*
m.x121*m.x38 + 0.0001*m.x121*m.x39 + 0.0001*m.x121*m.x40 + 0.0001*m.x121*m.x41 + 0.0001*m.x121*
m.x42 + 0.0001*m.x121*m.x43 + 0.0001*m.x121*m.x44 + 0.0001*m.x121*m.x45 + 0.0001*m.x121*m.x46 +
0.0001*m.x121*m.x47 + 0.0001*m.x121*m.x48 + 0.0001*m.x121*m.x49 + 0.0001*m.x121*m.x50 + 0.0001*
m.x121*m.x51 + 0.0001*m.x121*m.x52 + 0.0001*m.x121*m.x53 + 0.0001*m.x121*m.x54 + 0.0001*m.x121*
m.x55 + 0.0001*m.x121*m.x56 + 0.0001*m.x121*m.x57 + 0.0001*m.x121*m.x58 + 0.0001*m.x121*m.x59 +
0.0001*m.x121*m.x60 + 0.0001*m.x121*m.x61 + 0.0001*m.x121*m.x62 + 0.0001*m.x121*m.x63 + 0.0001*
m.x121*m.x64 + 0.0001*m.x121*m.x65 + 0.0001*m.x121*m.x66 + 0.0001*m.x121*m.x67 + 0.0001*m.x121*
m.x68 + 0.0001*m.x121*m.x69 + 0.0001*m.x121*m.x70 + 0.0001*m.x121*m.x71 + 0.0001*m.x121*m.x72 +
0.0001*m.x121*m.x73 + 0.0001*m.x121*m.x74 + 0.0001*m.x121*m.x75 + 0.87497610763658*m.x121*m.x76
+ 0.0001*m.x121*m.x77 + 0.0001*m.x121*m.x78 + 0.0001*m.x121*m.x79 + 0.0001*m.x121*m.x80 + 0.0001
*m.x121*m.x81 + 0.0001*m.x121*m.x82 + 0.0001*m.x121*m.x83 + 0.0001*m.x121*m.x84 + 0.0001*m.x121*
m.x85 + 0.0001*m.x121*m.x86 + 0.0001*m.x121*m.x87 + 0.0001*m.x121*m.x88 + 0.0001*m.x121*m.x89 +
0.0001*m.x121*m.x90 + 0.0001*m.x121*m.x91 + 0.0001*m.x121*m.x92 + 0.0001*m.x121*m.x93 + 0.0001*
m.x121*m.x94 + 0.0001*m.x121*m.x95 + 0.0001*m.x121*m.x96 + 0.0001*m.x121*m.x97 + 0.0001*m.x121*
m.x98 + 0.0001*m.x121*m.x99 + 0.0001*m.x121*m.x100 + 0.0001*m.x121*m.x101 + 0.0001*m.x121*m.x102
+ 0.0001*m.x121*m.x103 + 0.0001*m.x121*m.x104 + 0.0001*m.x121*m.x105 + 0.0001*m.x121*m.x106 +
0.0001*m.x121*m.x107 + 0.0001*m.x121*m.x108 + 0.0001*m.x121*m.x109 + 0.0001*m.x121*m.x110 +
0.0001*m.x121*m.x111 + 0.0001*m.x121*m.x112 + 0.0001*m.x121*m.x113 + 0.0001*m.x121*m.x114 +
0.0001*m.x121*m.x115 + 0.0001*m.x121*m.x116 + 0.0001*m.x121*m.x117 + 0.0001*m.x121*m.x118 +
0.0001*m.x121*m.x119 + 0.0001*m.x121*m.x120 + 4.23322340502799*m.x121**2 + 0.0001*m.x121*m.x122
+ 0.0001*m.x121*m.x123 + 0.0001*m.x121*m.x124 + 0.0001*m.x121*m.x125 + 0.0001*m.x121*m.x126 +
0.0001*m.x121*m.x127 + 0.0001*m.x121*m.x128 + 0.0001*m.x121*m.x129 + 0.0001*m.x121*m.x130 +
0.0001*m.x121*m.x131 + 0.0001*m.x121*m.x132 + 0.0001*m.x121*m.x133 + 0.0001*m.x121*m.x134 +
0.0001*m.x121*m.x135 + 0.0001*m.x121*m.x136 + 0.0001*m.x121*m.x137 + 0.0001*m.x121*m.x138 +
0.0001*m.x121*m.x139 + 0.0001*m.x121*m.x140 + 0.0001*m.x121*m.x141 + 0.0001*m.x121*m.x142 +
0.0001*m.x121*m.x143 + 0.0001*m.x121*m.x144 + 0.0001*m.x121*m.x145 + 0.0001*m.x121*m.x146 +
6.88571918292358*m.x121*m.x147 + 0.0001*m.x121*m.x148 + 0.0001*m.x121*m.x149 + 0.0001*m.x121*
m.x150 + 0.0001*m.x121*m.x151 + 0.0001*m.x121*m.x152 + 0.0001*m.x121*m.x153 + 0.0001*m.x121*
m.x154 + 0.0001*m.x121*m.x155 + 0.0001*m.x121*m.x156 + 0.0001*m.x121*m.x157 + 0.0001*m.x121*
m.x158 + 0.0001*m.x121*m.x159 + 0.0001*m.x121*m.x160 + 0.0001*m.x121*m.x161 + 3.69609376137639*
m.x121*m.x162 + 0.0001*m.x121*m.x163 + 0.0001*m.x121*m.x164 + 0.0001*m.x121*m.x165 + 0.0001*
m.x121*m.x166 + 0.0001*m.x121*m.x167 + 0.0001*m.x121*m.x168 + 0.0001*m.x121*m.x169 + 0.0001*
m.x121*m.x170 + 0.0001*m.x121*m.x171 + 0.0001*m.x121*m.x172 + 0.0001*m.x121*m.x173 + 0.0001*
m.x121*m.x174 + 0.0001*m.x121*m.x175 + 0.0001*m.x121*m.x176 + 0.0001*m.x121*m.x177 + 0.0001*
m.x121*m.x178 + 0.0001*m.x121*m.x179 + 0.0001*m.x121*m.x180 + 0.0001*m.x121*m.x181 + 0.0001*
m.x121*m.x182 + 0.0001*m.x121*m.x183 + 0.0001*m.x121*m.x184 + 0.0001*m.x121*m.x185 + 0.0001*
m.x122*m.x1 + 0.0001*m.x122*m.x2 + 0.0001*m.x122*m.x3 + 0.0001*m.x122*m.x4 + 0.0001*m.x122*m.x5
+ 0.0001*m.x122*m.x6 + 0.0001*m.x122*m.x7 + 0.0001*m.x122*m.x8 + 0.0001*m.x122*m.x9 + 0.0001*
m.x122*m.x10 + 0.0001*m.x122*m.x11 + 0.0001*m.x122*m.x12 + 0.0001*m.x122*m.x13 + 0.0001*m.x122*
m.x14 + 0.0001*m.x122*m.x15 + 0.0001*m.x122*m.x16 + 0.0001*m.x122*m.x17 + 0.0001*m.x122*m.x18 +
0.0001*m.x122*m.x19 + 0.0001*m.x122*m.x20 + 0.0001*m.x122*m.x21 + 0.0001*m.x122*m.x22 + 0.0001*
m.x122*m.x23 + 0.0001*m.x122*m.x24 + 0.0001*m.x122*m.x25 + 0.0001*m.x122*m.x26 + 0.0001*m.x122*
m.x27 + 0.0001*m.x122*m.x28 + 0.0001*m.x122*m.x29 + 0.0001*m.x122*m.x30 + 0.0001*m.x122*m.x31 +
0.0001*m.x122*m.x32 + 0.0001*m.x122*m.x33 + 0.0001*m.x122*m.x34 + 0.0001*m.x122*m.x35 + 0.0001*
m.x122*m.x36 + 0.0001*m.x122*m.x37 + 0.0001*m.x122*m.x38 + 0.0001*m.x122*m.x39 + 0.0001*m.x122*
m.x40 + 0.0001*m.x122*m.x41 + 0.0001*m.x122*m.x42 + 0.0001*m.x122*m.x43 + 0.0001*m.x122*m.x44 +
0.0001*m.x122*m.x45 + 0.0001*m.x122*m.x46 + 0.0001*m.x122*m.x47 + 0.0001*m.x122*m.x48 + 0.0001*
m.x122*m.x49 + 0.0001*m.x122*m.x50 + 0.0001*m.x122*m.x51 + 0.0001*m.x122*m.x52 + 0.0001*m.x122*
m.x53 + 0.0001*m.x122*m.x54 + 0.0001*m.x122*m.x55 + 0.0001*m.x122*m.x56 + 0.0001*m.x122*m.x57 +
0.0001*m.x122*m.x58 + 0.0001*m.x122*m.x59 + 0.0001*m.x122*m.x60 + 0.0001*m.x122*m.x61 + 0.0001*
m.x122*m.x62 + 0.0001*m.x122*m.x63 + 0.0001*m.x122*m.x64 + 0.0001*m.x122*m.x65 + 0.0001*m.x122*
m.x66 + 0.0001*m.x122*m.x67 + 0.0001*m.x122*m.x68 + 0.0001*m.x122*m.x69 + 0.0001*m.x122*m.x70 +
0.0001*m.x122*m.x71 + 0.0001*m.x122*m.x72 + 0.0001*m.x122*m.x73 + 0.0001*m.x122*m.x74 + 0.0001*
m.x122*m.x75 + 0.0001*m.x122*m.x76 + 0.914670511374364*m.x122*m.x77 + 0.0001*m.x122*m.x78 +
0.0001*m.x122*m.x79 + 0.0001*m.x122*m.x80 + 0.0001*m.x122*m.x81 + 0.0001*m.x122*m.x82 + 0.0001*
m.x122*m.x83 + 0.0001*m.x122*m.x84 + 0.0001*m.x122*m.x85 + 0.0001*m.x122*m.x86 + 0.0001*m.x122*
m.x87 + 0.0001*m.x122*m.x88 + 0.0001*m.x122*m.x89 + 0.0001*m.x122*m.x90 + 0.0001*m.x122*m.x91 +
0.0001*m.x122*m.x92 + 0.0001*m.x122*m.x93 + 0.0001*m.x122*m.x94 + 0.0001*m.x122*m.x95 + 0.0001*
m.x122*m.x96 + 0.0001*m.x122*m.x97 + 0.0001*m.x122*m.x98 + 0.0001*m.x122*m.x99 + 0.0001*m.x122*
m.x100 + 0.0001*m.x122*m.x101 + 0.0001*m.x122*m.x102 + 0.0001*m.x122*m.x103 + 0.0001*m.x122*
m.x104 + 0.0001*m.x122*m.x105 + 0.0001*m.x122*m.x106 + 0.0001*m.x122*m.x107 + 0.0001*m.x122*
m.x108 + 0.0001*m.x122*m.x109 + 0.0001*m.x122*m.x110 + 0.0001*m.x122*m.x111 + 0.0001*m.x122*
m.x112 + 0.0001*m.x122*m.x113 + 0.0001*m.x122*m.x114 + 0.0001*m.x122*m.x115 + 0.0001*m.x122*
m.x116 + 0.0001*m.x122*m.x117 + 0.0001*m.x122*m.x118 + 0.0001*m.x122*m.x119 + 0.0001*m.x122*
m.x120 + 0.0001*m.x122*m.x121 + 4.20902929929734*m.x122**2 + 0.0001*m.x122*m.x123 + 0.0001*m.x122
*m.x124 + 0.0001*m.x122*m.x125 + 0.0001*m.x122*m.x126 + 0.0001*m.x122*m.x127 + 0.0001*m.x122*
m.x128 + 0.0001*m.x122*m.x129 + 0.0001*m.x122*m.x130 + 0.0001*m.x122*m.x131 + 0.0001*m.x122*
m.x132 + 0.0001*m.x122*m.x133 + 0.0001*m.x122*m.x134 + 0.0001*m.x122*m.x135 + 0.0001*m.x122*
m.x136 + 0.0001*m.x122*m.x137 + 0.0001*m.x122*m.x138 + 0.0001*m.x122*m.x139 + 0.0001*m.x122*
m.x140 + 0.0001*m.x122*m.x141 + 0.0001*m.x122*m.x142 + 0.0001*m.x122*m.x143 + 0.0001*m.x122*
m.x144 + 0.0001*m.x122*m.x145 + 0.0001*m.x122*m.x146 + 0.0001*m.x122*m.x147 + 5.98091594661548*
m.x122*m.x148 + 0.0001*m.x122*m.x149 + 0.0001*m.x122*m.x150 + 0.0001*m.x122*m.x151 + 0.0001*
m.x122*m.x152 + 0.0001*m.x122*m.x153 + 0.0001*m.x122*m.x154 + 0.0001*m.x122*m.x155 + 0.0001*
m.x122*m.x156 + 0.0001*m.x122*m.x157 + 0.0001*m.x122*m.x158 + 0.0001*m.x122*m.x159 + 0.0001*
m.x122*m.x160 + 0.0001*m.x122*m.x161 + 0.0001*m.x122*m.x162 + 3.89841915597365*m.x122*m.x163 +
0.0001*m.x122*m.x164 + 0.0001*m.x122*m.x165 + 0.0001*m.x122*m.x166 + 0.0001*m.x122*m.x167 +
0.0001*m.x122*m.x168 + 0.0001*m.x122*m.x169 + 0.0001*m.x122*m.x170 + 0.0001*m.x122*m.x171 +
0.0001*m.x122*m.x172 + 0.0001*m.x122*m.x173 + 0.0001*m.x122*m.x174 + 0.0001*m.x122*m.x175 +
0.0001*m.x122*m.x176 + 0.0001*m.x122*m.x177 + 0.0001*m.x122*m.x178 + 0.0001*m.x122*m.x179 +
0.0001*m.x122*m.x180 + 0.0001*m.x122*m.x181 + 0.0001*m.x122*m.x182 + 0.0001*m.x122*m.x183 +
0.0001*m.x122*m.x184 + 0.0001*m.x122*m.x185 + 0.0001*m.x123*m.x1 + 0.0001*m.x123*m.x2 + 0.0001*
m.x123*m.x3 + 0.0001*m.x123*m.x4 + 0.0001*m.x123*m.x5 + 0.0001*m.x123*m.x6 + 0.0001*m.x123*m.x7
+ 0.0001*m.x123*m.x8 + 0.0001*m.x123*m.x9 + 0.0001*m.x123*m.x10 + 0.0001*m.x123*m.x11 + 0.0001*
m.x123*m.x12 + 0.0001*m.x123*m.x13 + 0.0001*m.x123*m.x14 + 0.0001*m.x123*m.x15 + 0.0001*m.x123*
m.x16 + 0.0001*m.x123*m.x17 + 0.0001*m.x123*m.x18 + 0.0001*m.x123*m.x19 + 0.0001*m.x123*m.x20 +
0.0001*m.x123*m.x21 + 0.0001*m.x123*m.x22 + 0.0001*m.x123*m.x23 + 0.0001*m.x123*m.x24 + 0.0001*
m.x123*m.x25 + 0.0001*m.x123*m.x26 + 0.0001*m.x123*m.x27 + 0.0001*m.x123*m.x28 + 0.0001*m.x123*
m.x29 + 0.0001*m.x123*m.x30 + 0.0001*m.x123*m.x31 + 0.0001*m.x123*m.x32 + 0.0001*m.x123*m.x33 +
0.0001*m.x123*m.x34 + 0.0001*m.x123*m.x35 + 0.0001*m.x123*m.x36 + 0.0001*m.x123*m.x37 + 0.0001*
m.x123*m.x38 + 0.0001*m.x123*m.x39 + 0.0001*m.x123*m.x40 + 0.0001*m.x123*m.x41 + 0.0001*m.x123*
m.x42 + 0.0001*m.x123*m.x43 + 0.0001*m.x123*m.x44 + 0.0001*m.x123*m.x45 + 0.0001*m.x123*m.x46 +
0.0001*m.x123*m.x47 + 0.0001*m.x123*m.x48 + 0.0001*m.x123*m.x49 + 0.0001*m.x123*m.x50 + 0.0001*
m.x123*m.x51 + 0.0001*m.x123*m.x52 + 0.0001*m.x123*m.x53 + 0.0001*m.x123*m.x54 + 0.0001*m.x123*
m.x55 + 0.0001*m.x123*m.x56 + 0.0001*m.x123*m.x57 + 0.0001*m.x123*m.x58 + 0.0001*m.x123*m.x59 +
0.0001*m.x123*m.x60 + 0.0001*m.x123*m.x61 + 0.0001*m.x123*m.x62 + 0.0001*m.x123*m.x63 + 0.0001*
m.x123*m.x64 + 0.0001*m.x123*m.x65 + 0.0001*m.x123*m.x66 + 0.0001*m.x123*m.x67 + 0.0001*m.x123*
m.x68 + 0.0001*m.x123*m.x69 + 0.0001*m.x123*m.x70 + 0.0001*m.x123*m.x71 + 0.0001*m.x123*m.x72 +
0.0001*m.x123*m.x73 + 0.0001*m.x123*m.x74 + 0.0001*m.x123*m.x75 + 0.0001*m.x123*m.x76 + 0.0001*
m.x123*m.x77 + 0.826148273240953*m.x123*m.x78 + 0.0001*m.x123*m.x79 + 0.0001*m.x123*m.x80 +
0.0001*m.x123*m.x81 + 0.0001*m.x123*m.x82 + 0.0001*m.x123*m.x83 + 0.0001*m.x123*m.x84 + 0.0001*
m.x123*m.x85 + 0.0001*m.x123*m.x86 + 0.0001*m.x123*m.x87 + 0.0001*m.x123*m.x88 + 0.0001*m.x123*
m.x89 + 0.0001*m.x123*m.x90 + 0.0001*m.x123*m.x91 + 0.0001*m.x123*m.x92 + 0.0001*m.x123*m.x93 +
0.0001*m.x123*m.x94 + 0.0001*m.x123*m.x95 + 0.0001*m.x123*m.x96 + 0.0001*m.x123*m.x97 + 0.0001*
m.x123*m.x98 + 0.0001*m.x123*m.x99 + 0.0001*m.x123*m.x100 + 0.0001*m.x123*m.x101 + 0.0001*m.x123*
m.x102 + 0.0001*m.x123*m.x103 + 0.0001*m.x123*m.x104 + 0.0001*m.x123*m.x105 + 0.0001*m.x123*
m.x106 + 0.0001*m.x123*m.x107 + 0.0001*m.x123*m.x108 + 0.0001*m.x123*m.x109 + 0.0001*m.x123*
m.x110 + 0.0001*m.x123*m.x111 + 0.0001*m.x123*m.x112 + 0.0001*m.x123*m.x113 + 0.0001*m.x123*
m.x114 + 0.0001*m.x123*m.x115 + 0.0001*m.x123*m.x116 + 0.0001*m.x123*m.x117 + 0.0001*m.x123*
m.x118 + 0.0001*m.x123*m.x119 + 0.0001*m.x123*m.x120 + 0.0001*m.x123*m.x121 + 0.0001*m.x123*
m.x122 + 4.07880738757785*m.x123**2 + 0.0001*m.x123*m.x124 + 0.0001*m.x123*m.x125 + 0.0001*m.x123
*m.x126 + 0.0001*m.x123*m.x127 + 0.0001*m.x123*m.x128 + 0.0001*m.x123*m.x129 + 0.0001*m.x123*
m.x130 + 0.0001*m.x123*m.x131 + 0.0001*m.x123*m.x132 + 0.0001*m.x123*m.x133 + 0.0001*m.x123*
m.x134 + 0.0001*m.x123*m.x135 + 0.0001*m.x123*m.x136 + 0.0001*m.x123*m.x137 + 0.0001*m.x123*
m.x138 + 0.0001*m.x123*m.x139 + 0.0001*m.x123*m.x140 + 0.0001*m.x123*m.x141 + 0.0001*m.x123*
m.x142 + 0.0001*m.x123*m.x143 + 0.0001*m.x123*m.x144 + 0.0001*m.x123*m.x145 + 0.0001*m.x123*
m.x146 + 0.0001*m.x123*m.x147 + 0.0001*m.x123*m.x148 + 5.98091594661548*m.x123*m.x149 + 0.0001*
m.x123*m.x150 + 0.0001*m.x123*m.x151 + 0.0001*m.x123*m.x152 + 0.0001*m.x123*m.x153 + 0.0001*
m.x123*m.x154 + 0.0001*m.x123*m.x155 + 0.0001*m.x123*m.x156 + 0.0001*m.x123*m.x157 + 0.0001*
m.x123*m.x158 + 0.0001*m.x123*m.x159 + 0.0001*m.x123*m.x160 + 0.0001*m.x123*m.x161 + 0.0001*
m.x123*m.x162 + 0.0001*m.x123*m.x163 + 4.06514255983911*m.x123*m.x164 + 0.0001*m.x123*m.x165 +
0.0001*m.x123*m.x166 + 0.0001*m.x123*m.x167 + 0.0001*m.x123*m.x168 + 0.0001*m.x123*m.x169 +
0.0001*m.x123*m.x170 + 0.0001*m.x123*m.x171 + 0.0001*m.x123*m.x172 + 0.0001*m.x123*m.x173 +
0.0001*m.x123*m.x174 + 0.0001*m.x123*m.x175 + 0.0001*m.x123*m.x176 + 0.0001*m.x123*m.x177 +
0.0001*m.x123*m.x178 + 0.0001*m.x123*m.x179 + 0.0001*m.x123*m.x180 + 0.0001*m.x123*m.x181 +
0.0001*m.x123*m.x182 + 0.0001*m.x123*m.x183 + 0.0001*m.x123*m.x184 + 0.0001*m.x123*m.x185 +
0.0001*m.x124*m.x1 + 0.0001*m.x124*m.x2 + 0.0001*m.x124*m.x3 + 0.0001*m.x124*m.x4 + 0.0001*m.x124
*m.x5 + 0.0001*m.x124*m.x6 + 0.0001*m.x124*m.x7 + 0.0001*m.x124*m.x8 + 0.0001*m.x124*m.x9 +
0.0001*m.x124*m.x10 + 0.0001*m.x124*m.x11 + 0.0001*m.x124*m.x12 + 0.0001*m.x124*m.x13 + 0.0001*
m.x124*m.x14 + 0.0001*m.x124*m.x15 + 0.0001*m.x124*m.x16 + 0.0001*m.x124*m.x17 + 0.0001*m.x124*
m.x18 + 0.0001*m.x124*m.x19 + 0.0001*m.x124*m.x20 + 0.0001*m.x124*m.x21 + 0.0001*m.x124*m.x22 +
0.0001*m.x124*m.x23 + 0.0001*m.x124*m.x24 + 0.0001*m.x124*m.x25 + 0.0001*m.x124*m.x26 + 0.0001*
m.x124*m.x27 + 0.0001*m.x124*m.x28 + 0.0001*m.x124*m.x29 + 0.0001*m.x124*m.x30 + 0.0001*m.x124*
m.x31 + 0.0001*m.x124*m.x32 + 0.0001*m.x124*m.x33 + 0.0001*m.x124*m.x34 + 0.0001*m.x124*m.x35 +
0.0001*m.x124*m.x36 + 0.0001*m.x124*m.x37 + 0.0001*m.x124*m.x38 + 0.0001*m.x124*m.x39 + 0.0001*
m.x124*m.x40 + 0.0001*m.x124*m.x41 + 0.0001*m.x124*m.x42 + 0.0001*m.x124*m.x43 + 0.0001*m.x124*
m.x44 + 0.0001*m.x124*m.x45 + 0.0001*m.x124*m.x46 + 0.0001*m.x124*m.x47 + 0.0001*m.x124*m.x48 +
0.0001*m.x124*m.x49 + 0.0001*m.x124*m.x50 + 0.0001*m.x124*m.x51 + 0.0001*m.x124*m.x52 + 0.0001*
m.x124*m.x53 + 0.0001*m.x124*m.x54 + 0.0001*m.x124*m.x55 + 0.0001*m.x124*m.x56 + 0.0001*m.x124*
m.x57 + 0.0001*m.x124*m.x58 + 0.0001*m.x124*m.x59 + 0.0001*m.x124*m.x60 + 0.0001*m.x124*m.x61 +
0.0001*m.x124*m.x62 + 0.0001*m.x124*m.x63 + 0.0001*m.x124*m.x64 + 0.0001*m.x124*m.x65 + 0.0001*
m.x124*m.x66 + 0.0001*m.x124*m.x67 + 0.0001*m.x124*m.x68 + 0.0001*m.x124*m.x69 + 0.0001*m.x124*
m.x70 + 0.0001*m.x124*m.x71 + 0.0001*m.x124*m.x72 + 0.0001*m.x124*m.x73 + 0.0001*m.x124*m.x74 +
0.0001*m.x124*m.x75 + 0.0001*m.x124*m.x76 + 0.0001*m.x124*m.x77 + 0.0001*m.x124*m.x78 +
0.789212707970006*m.x124*m.x79 + 0.0001*m.x124*m.x80 + 0.0001*m.x124*m.x81 + 0.0001*m.x124*m.x82
+ 0.0001*m.x124*m.x83 + 0.0001*m.x124*m.x84 + 0.0001*m.x124*m.x85 + 0.0001*m.x124*m.x86 + 0.0001
*m.x124*m.x87 + 0.0001*m.x124*m.x88 + 0.0001*m.x124*m.x89 + 0.0001*m.x124*m.x90 + 0.0001*m.x124*
m.x91 + 0.0001*m.x124*m.x92 + 0.0001*m.x124*m.x93 + 0.0001*m.x124*m.x94 + 0.0001*m.x124*m.x95 +
0.0001*m.x124*m.x96 + 0.0001*m.x124*m.x97 + 0.0001*m.x124*m.x98 + 0.0001*m.x124*m.x99 + 0.0001*
m.x124*m.x100 + 0.0001*m.x124*m.x101 + 0.0001*m.x124*m.x102 + 0.0001*m.x124*m.x103 + 0.0001*
m.x124*m.x104 + 0.0001*m.x124*m.x105 + 0.0001*m.x124*m.x106 + 0.0001*m.x124*m.x107 + 0.0001*
m.x124*m.x108 + 0.0001*m.x124*m.x109 + 0.0001*m.x124*m.x110 + 0.0001*m.x124*m.x111 + 0.0001*
m.x124*m.x112 + 0.0001*m.x124*m.x113 + 0.0001*m.x124*m.x114 + 0.0001*m.x124*m.x115 + 0.0001*
m.x124*m.x116 + 0.0001*m.x124*m.x117 + 0.0001*m.x124*m.x118 + 0.0001*m.x124*m.x119 + 0.0001*
m.x124*m.x120 + 0.0001*m.x124*m.x121 + 0.0001*m.x124*m.x122 + 0.0001*m.x124*m.x123 +
3.89643382925794*m.x124**2 + 0.0001*m.x124*m.x125 + 0.0001*m.x124*m.x126 + 0.0001*m.x124*m.x127
+ 0.0001*m.x124*m.x128 + 0.0001*m.x124*m.x129 + 0.0001*m.x124*m.x130 + 0.0001*m.x124*m.x131 +
0.0001*m.x124*m.x132 + 0.0001*m.x124*m.x133 + 0.0001*m.x124*m.x134 + 0.0001*m.x124*m.x135 +
0.0001*m.x124*m.x136 + 0.0001*m.x124*m.x137 + 0.0001*m.x124*m.x138 + 0.0001*m.x124*m.x139 +
0.0001*m.x124*m.x140 + 0.0001*m.x124*m.x141 + 0.0001*m.x124*m.x142 + 0.0001*m.x124*m.x143 +
0.0001*m.x124*m.x144 + 0.0001*m.x124*m.x145 + 0.0001*m.x124*m.x146 + 0.0001*m.x124*m.x147 +
0.0001*m.x124*m.x148 + 0.0001*m.x124*m.x149 + 5.69054082922776*m.x124*m.x150 + 0.0001*m.x124*
m.x151 + 0.0001*m.x124*m.x152 + 0.0001*m.x124*m.x153 + 0.0001*m.x124*m.x154 + 0.0001*m.x124*
m.x155 + 0.0001*m.x124*m.x156 + 0.0001*m.x124*m.x157 + 0.0001*m.x124*m.x158 + 0.0001*m.x124*
m.x159 + 0.0001*m.x124*m.x160 + 0.0001*m.x124*m.x161 + 0.0001*m.x124*m.x162 + 0.0001*m.x124*
m.x163 + 0.0001*m.x124*m.x164 + 3.88338000471745*m.x124*m.x165 + 0.0001*m.x124*m.x166 + 0.0001*
m.x124*m.x167 + 0.0001*m.x124*m.x168 + 0.0001*m.x124*m.x169 + 0.0001*m.x124*m.x170 + 0.0001*
m.x124*m.x171 + 0.0001*m.x124*m.x172 + 0.0001*m.x124*m.x173 + 0.0001*m.x124*m.x174 + 0.0001*
m.x124*m.x175 + 0.0001*m.x124*m.x176 + 0.0001*m.x124*m.x177 + 0.0001*m.x124*m.x178 + 0.0001*
m.x124*m.x179 + 0.0001*m.x124*m.x180 + 0.0001*m.x124*m.x181 + 0.0001*m.x124*m.x182 + 0.0001*
m.x124*m.x183 + 0.0001*m.x124*m.x184 + 0.0001*m.x124*m.x185 + 0.0001*m.x125*m.x1 + 0.0001*m.x125*
m.x2 + 0.0001*m.x125*m.x3 + 0.0001*m.x125*m.x4 + 0.0001*m.x125*m.x5 + 0.0001*m.x125*m.x6 + 0.0001
*m.x125*m.x7 + 0.0001*m.x125*m.x8 + 0.0001*m.x125*m.x9 + 0.0001*m.x125*m.x10 + 0.0001*m.x125*
m.x11 + 0.0001*m.x125*m.x12 + 0.0001*m.x125*m.x13 + 0.0001*m.x125*m.x14 + 0.0001*m.x125*m.x15 +
0.0001*m.x125*m.x16 + 0.0001*m.x125*m.x17 + 0.0001*m.x125*m.x18 + 0.0001*m.x125*m.x19 + 0.0001*
m.x125*m.x20 + 0.0001*m.x125*m.x21 + 0.0001*m.x125*m.x22 + 0.0001*m.x125*m.x23 + 0.0001*m.x125*
m.x24 + 0.0001*m.x125*m.x25 + 0.0001*m.x125*m.x26 + 0.0001*m.x125*m.x27 + 0.0001*m.x125*m.x28 +
0.0001*m.x125*m.x29 + 0.0001*m.x125*m.x30 + 0.0001*m.x125*m.x31 + 0.0001*m.x125*m.x32 + 0.0001*
m.x125*m.x33 + 0.0001*m.x125*m.x34 + 0.0001*m.x125*m.x35 + 0.0001*m.x125*m.x36 + 0.0001*m.x125*
m.x37 + 0.0001*m.x125*m.x38 + 0.0001*m.x125*m.x39 + 0.0001*m.x125*m.x40 + 0.0001*m.x125*m.x41 +
0.0001*m.x125*m.x42 + 0.0001*m.x125*m.x43 + 0.0001*m.x125*m.x44 + 0.0001*m.x125*m.x45 + 0.0001*
m.x125*m.x46 + 0.0001*m.x125*m.x47 + 0.0001*m.x125*m.x48 + 0.0001*m.x125*m.x49 + 0.0001*m.x125*
m.x50 + 0.0001*m.x125*m.x51 + 0.0001*m.x125*m.x52 + 0.0001*m.x125*m.x53 + 0.0001*m.x125*m.x54 +
0.0001*m.x125*m.x55 + 0.0001*m.x125*m.x56 + 0.0001*m.x125*m.x57 + 0.0001*m.x125*m.x58 + 0.0001*
m.x125*m.x59 + 0.0001*m.x125*m.x60 + 0.0001*m.x125*m.x61 + 0.0001*m.x125*m.x62 + 0.0001*m.x125*
m.x63 + 0.0001*m.x125*m.x64 + 0.0001*m.x125*m.x65 + 0.0001*m.x125*m.x66 + 0.0001*m.x125*m.x67 +
0.0001*m.x125*m.x68 + 0.0001*m.x125*m.x69 + 0.0001*m.x125*m.x70 + 0.0001*m.x125*m.x71 + 0.0001*
m.x125*m.x72 + 0.0001*m.x125*m.x73 + 0.0001*m.x125*m.x74 + 0.0001*m.x125*m.x75 + 0.0001*m.x125*
m.x76 + 0.0001*m.x125*m.x77 + 0.0001*m.x125*m.x78 + 0.0001*m.x125*m.x79 + 0.883116692568304*
m.x125*m.x80 + 0.0001*m.x125*m.x81 + 0.0001*m.x125*m.x82 + 0.0001*m.x125*m.x83 + 0.0001*m.x125*
m.x84 + 0.0001*m.x125*m.x85 + 0.0001*m.x125*m.x86 + 0.0001*m.x125*m.x87 + 0.0001*m.x125*m.x88 +
0.0001*m.x125*m.x89 + 0.0001*m.x125*m.x90 + 0.0001*m.x125*m.x91 + 0.0001*m.x125*m.x92 + 0.0001*
m.x125*m.x93 + 0.0001*m.x125*m.x94 + 0.0001*m.x125*m.x95 + 0.0001*m.x125*m.x96 + 0.0001*m.x125*
m.x97 + 0.0001*m.x125*m.x98 + 0.0001*m.x125*m.x99 + 0.0001*m.x125*m.x100 + 0.0001*m.x125*m.x101
+ 0.0001*m.x125*m.x102 + 0.0001*m.x125*m.x103 + 0.0001*m.x125*m.x104 + 0.0001*m.x125*m.x105 +
0.0001*m.x125*m.x106 + 0.0001*m.x125*m.x107 + 0.0001*m.x125*m.x108 + 0.0001*m.x125*m.x109 +
0.0001*m.x125*m.x110 + 0.0001*m.x125*m.x111 + 0.0001*m.x125*m.x112 + 0.0001*m.x125*m.x113 +
0.0001*m.x125*m.x114 + 0.0001*m.x125*m.x115 + 0.0001*m.x125*m.x116 + 0.0001*m.x125*m.x117 +
0.0001*m.x125*m.x118 + 0.0001*m.x125*m.x119 + 0.0001*m.x125*m.x120 + 0.0001*m.x125*m.x121 +
0.0001*m.x125*m.x122 + 0.0001*m.x125*m.x123 + 0.0001*m.x125*m.x124 + 5.15314060170647*m.x125**2
+ 0.0001*m.x125*m.x126 + 0.0001*m.x125*m.x127 + 0.0001*m.x125*m.x128 + 0.0001*m.x125*m.x129 +
0.0001*m.x125*m.x130 + 0.0001*m.x125*m.x131 + 0.0001*m.x125*m.x132 + 0.0001*m.x125*m.x133 +
0.0001*m.x125*m.x134 + 0.0001*m.x125*m.x135 + 0.0001*m.x125*m.x136 + 0.0001*m.x125*m.x137 +
0.0001*m.x125*m.x138 + 0.0001*m.x125*m.x139 + 0.0001*m.x125*m.x140 + 0.0001*m.x125*m.x141 +
0.0001*m.x125*m.x142 + 0.0001*m.x125*m.x143 + 0.0001*m.x125*m.x144 + 0.0001*m.x125*m.x145 +
0.0001*m.x125*m.x146 + 0.0001*m.x125*m.x147 + 0.0001*m.x125*m.x148 + 0.0001*m.x125*m.x149 +
0.0001*m.x125*m.x150 + 7.05569268711518*m.x125*m.x151 + 0.0001*m.x125*m.x152 + 0.0001*m.x125*
m.x153 + 0.0001*m.x125*m.x154 + 0.0001*m.x125*m.x155 + 0.0001*m.x125*m.x156 + 0.0001*m.x125*
m.x157 + 0.0001*m.x125*m.x158 + 0.0001*m.x125*m.x159 + 0.0001*m.x125*m.x160 + 0.0001*m.x125*
m.x161 + 0.0001*m.x125*m.x162 + 0.0001*m.x125*m.x163 + 0.0001*m.x125*m.x164 + 0.0001*m.x125*
m.x165 + 4.35805470035046*m.x125*m.x166 + 0.0001*m.x125*m.x167 + 0.0001*m.x125*m.x168 + 0.0001*
m.x125*m.x169 + 0.0001*m.x125*m.x170 + 0.0001*m.x125*m.x171 + 0.0001*m.x125*m.x172 + 0.0001*
m.x125*m.x173 + 0.0001*m.x125*m.x174 + 0.0001*m.x125*m.x175 + 0.0001*m.x125*m.x176 + 0.0001*
m.x125*m.x177 + 0.0001*m.x125*m.x178 + 0.0001*m.x125*m.x179 + 0.0001*m.x125*m.x180 + 0.0001*
m.x125*m.x181 + 0.0001*m.x125*m.x182 + 0.0001*m.x125*m.x183 + 0.0001*m.x125*m.x184 + 0.0001*
m.x125*m.x185 + 0.0001*m.x126*m.x1 + 0.0001*m.x126*m.x2 + 0.0001*m.x126*m.x3 + 0.0001*m.x126*m.x4
+ 0.0001*m.x126*m.x5 + 0.0001*m.x126*m.x6 + 0.0001*m.x126*m.x7 + 0.0001*m.x126*m.x8 + 0.0001*
m.x126*m.x9 + 0.0001*m.x126*m.x10 + 0.0001*m.x126*m.x11 + 0.0001*m.x126*m.x12 + 0.0001*m.x126*
m.x13 + 0.0001*m.x126*m.x14 + 0.0001*m.x126*m.x15 + 0.0001*m.x126*m.x16 + 0.0001*m.x126*m.x17 +
0.0001*m.x126*m.x18 + 0.0001*m.x126*m.x19 + 0.0001*m.x126*m.x20 + 0.0001*m.x126*m.x21 + 0.0001*
m.x126*m.x22 + 0.0001*m.x126*m.x23 + 0.0001*m.x126*m.x24 + 0.0001*m.x126*m.x25 + 0.0001*m.x126*
m.x26 + 0.0001*m.x126*m.x27 + 0.0001*m.x126*m.x28 + 0.0001*m.x126*m.x29 + 0.0001*m.x126*m.x30 +
0.0001*m.x126*m.x31 + 0.0001*m.x126*m.x32 + 0.0001*m.x126*m.x33 + 0.0001*m.x126*m.x34 + 0.0001*
m.x126*m.x35 + 0.0001*m.x126*m.x36 + 0.0001*m.x126*m.x37 + 0.0001*m.x126*m.x38 + 0.0001*m.x126*
m.x39 + 0.0001*m.x126*m.x40 + 0.0001*m.x126*m.x41 + 0.0001*m.x126*m.x42 + 0.0001*m.x126*m.x43 +
0.0001*m.x126*m.x44 + 0.0001*m.x126*m.x45 + 0.0001*m.x126*m.x46 + 0.0001*m.x126*m.x47 + 0.0001*
m.x126*m.x48 + 0.0001*m.x126*m.x49 + 0.0001*m.x126*m.x50 + 0.0001*m.x126*m.x51 + 0.0001*m.x126*
m.x52 + 0.0001*m.x126*m.x53 + 0.0001*m.x126*m.x54 + 0.0001*m.x126*m.x55 + 0.0001*m.x126*m.x56 +
0.0001*m.x126*m.x57 + 0.0001*m.x126*m.x58 + 0.0001*m.x126*m.x59 + 0.0001*m.x126*m.x60 + 0.0001*
m.x126*m.x61 + 0.0001*m.x126*m.x62 + 0.0001*m.x126*m.x63 + 0.0001*m.x126*m.x64 + 0.0001*m.x126*
m.x65 + 0.0001*m.x126*m.x66 + 0.0001*m.x126*m.x67 + 0.0001*m.x126*m.x68 + 0.0001*m.x126*m.x69 +
0.0001*m.x126*m.x70 + 0.0001*m.x126*m.x71 + 0.0001*m.x126*m.x72 + 0.0001*m.x126*m.x73 + 0.0001*
m.x126*m.x74 + 0.0001*m.x126*m.x75 + 0.0001*m.x126*m.x76 + 0.0001*m.x126*m.x77 + 0.0001*m.x126*
m.x78 + 0.0001*m.x126*m.x79 + 0.0001*m.x126*m.x80 + 0.920691215358521*m.x126*m.x81 + 0.0001*
m.x126*m.x82 + 0.0001*m.x126*m.x83 + 0.0001*m.x126*m.x84 + 0.0001*m.x126*m.x85 + 0.0001*m.x126*
m.x86 + 0.0001*m.x126*m.x87 + 0.0001*m.x126*m.x88 + 0.0001*m.x126*m.x89 + 0.0001*m.x126*m.x90 +
0.0001*m.x126*m.x91 + 0.0001*m.x126*m.x92 + 0.0001*m.x126*m.x93 + 0.0001*m.x126*m.x94 + 0.0001*
m.x126*m.x95 + 0.0001*m.x126*m.x96 + 0.0001*m.x126*m.x97 + 0.0001*m.x126*m.x98 + 0.0001*m.x126*
m.x99 + 0.0001*m.x126*m.x100 + 0.0001*m.x126*m.x101 + 0.0001*m.x126*m.x102 + 0.0001*m.x126*m.x103
+ 0.0001*m.x126*m.x104 + 0.0001*m.x126*m.x105 + 0.0001*m.x126*m.x106 + 0.0001*m.x126*m.x107 +
0.0001*m.x126*m.x108 + 0.0001*m.x126*m.x109 + 0.0001*m.x126*m.x110 + 0.0001*m.x126*m.x111 +
0.0001*m.x126*m.x112 + 0.0001*m.x126*m.x113 + 0.0001*m.x126*m.x114 + 0.0001*m.x126*m.x115 +
0.0001*m.x126*m.x116 + 0.0001*m.x126*m.x117 + 0.0001*m.x126*m.x118 + 0.0001*m.x126*m.x119 +
0.0001*m.x126*m.x120 + 0.0001*m.x126*m.x121 + 0.0001*m.x126*m.x122 + 0.0001*m.x126*m.x123 +
0.0001*m.x126*m.x124 + 0.0001*m.x126*m.x125 + 5.19327213087595*m.x126**2 + 0.0001*m.x126*m.x127
+ 0.0001*m.x126*m.x128 + 0.0001*m.x126*m.x129 + 0.0001*m.x126*m.x130 + 0.0001*m.x126*m.x131 +
0.0001*m.x126*m.x132 + 0.0001*m.x126*m.x133 + 0.0001*m.x126*m.x134 + 0.0001*m.x126*m.x135 +
0.0001*m.x126*m.x136 + 0.0001*m.x126*m.x137 + 0.0001*m.x126*m.x138 + 0.0001*m.x126*m.x139 +
0.0001*m.x126*m.x140 + 0.0001*m.x126*m.x141 + 0.0001*m.x126*m.x142 + 0.0001*m.x126*m.x143 +
0.0001*m.x126*m.x144 + 0.0001*m.x126*m.x145 + 0.0001*m.x126*m.x146 + 0.0001*m.x126*m.x147 +
0.0001*m.x126*m.x148 + 0.0001*m.x126*m.x149 + 0.0001*m.x126*m.x150 + 0.0001*m.x126*m.x151 +
7.05569268711518*m.x126*m.x152 + 0.0001*m.x126*m.x153 + 0.0001*m.x126*m.x154 + 0.0001*m.x126*
m.x155 + 0.0001*m.x126*m.x156 + 0.0001*m.x126*m.x157 + 0.0001*m.x126*m.x158 + 0.0001*m.x126*
m.x159 + 0.0001*m.x126*m.x160 + 0.0001*m.x126*m.x161 + 0.0001*m.x126*m.x162 + 0.0001*m.x126*
m.x163 + 0.0001*m.x126*m.x164 + 0.0001*m.x126*m.x165 + 0.0001*m.x126*m.x166 + 4.45694806359899*
m.x126*m.x167 + 0.0001*m.x126*m.x168 + 0.0001*m.x126*m.x169 + 0.0001*m.x126*m.x170 + 0.0001*
m.x126*m.x171 + 0.0001*m.x126*m.x172 + 0.0001*m.x126*m.x173 + 0.0001*m.x126*m.x174 + 0.0001*
m.x126*m.x175 + 0.0001*m.x126*m.x176 + 0.0001*m.x126*m.x177 + 0.0001*m.x126*m.x178 + 0.0001*
m.x126*m.x179 + 0.0001*m.x126*m.x180 + 0.0001*m.x126*m.x181 + 0.0001*m.x126*m.x182 + 0.0001*
m.x126*m.x183 + 0.0001*m.x126*m.x184 + 0.0001*m.x126*m.x185 + 0.0001*m.x127*m.x1 + 0.0001*m.x127*
m.x2 + 0.0001*m.x127*m.x3 + 0.0001*m.x127*m.x4 + 0.0001*m.x127*m.x5 + 0.0001*m.x127*m.x6 + 0.0001
*m.x127*m.x7 + 0.0001*m.x127*m.x8 + 0.0001*m.x127*m.x9 + 0.0001*m.x127*m.x10 + 0.0001*m.x127*
m.x11 + 0.0001*m.x127*m.x12 + 0.0001*m.x127*m.x13 + 0.0001*m.x127*m.x14 + 0.0001*m.x127*m.x15 +
0.0001*m.x127*m.x16 + 0.0001*m.x127*m.x17 + 0.0001*m.x127*m.x18 + 0.0001*m.x127*m.x19 + 0.0001*
m.x127*m.x20 + 0.0001*m.x127*m.x21 + 0.0001*m.x127*m.x22 + 0.0001*m.x127*m.x23 + 0.0001*m.x127*
m.x24 + 0.0001*m.x127*m.x25 + 0.0001*m.x127*m.x26 + 0.0001*m.x127*m.x27 + 0.0001*m.x127*m.x28 +
0.0001*m.x127*m.x29 + 0.0001*m.x127*m.x30 + 0.0001*m.x127*m.x31 + 0.0001*m.x127*m.x32 + 0.0001*
m.x127*m.x33 + 0.0001*m.x127*m.x34 + 0.0001*m.x127*m.x35 + 0.0001*m.x127*m.x36 + 0.0001*m.x127*
m.x37 + 0.0001*m.x127*m.x38 + 0.0001*m.x127*m.x39 + 0.0001*m.x127*m.x40 + 0.0001*m.x127*m.x41 +
0.0001*m.x127*m.x42 + 0.0001*m.x127*m.x43 + 0.0001*m.x127*m.x44 + 0.0001*m.x127*m.x45 + 0.0001*
m.x127*m.x46 + 0.0001*m.x127*m.x47 + 0.0001*m.x127*m.x48 + 0.0001*m.x127*m.x49 + 0.0001*m.x127*
m.x50 + 0.0001*m.x127*m.x51 + 0.0001*m.x127*m.x52 + 0.0001*m.x127*m.x53 + 0.0001*m.x127*m.x54 +
0.0001*m.x127*m.x55 + 0.0001*m.x127*m.x56 + 0.0001*m.x127*m.x57 + 0.0001*m.x127*m.x58 + 0.0001*
m.x127*m.x59 + 0.0001*m.x127*m.x60 + 0.0001*m.x127*m.x61 + 0.0001*m.x127*m.x62 + 0.0001*m.x127*
m.x63 + 0.0001*m.x127*m.x64 + 0.0001*m.x127*m.x65 + 0.0001*m.x127*m.x66 + 0.0001*m.x127*m.x67 +
0.0001*m.x127*m.x68 + 0.0001*m.x127*m.x69 + 0.0001*m.x127*m.x70 + 0.0001*m.x127*m.x71 + 0.0001*
m.x127*m.x72 + 0.0001*m.x127*m.x73 + 0.0001*m.x127*m.x74 + 0.0001*m.x127*m.x75 + 0.0001*m.x127*
m.x76 + 0.0001*m.x127*m.x77 + 0.0001*m.x127*m.x78 + 0.0001*m.x127*m.x79 + 0.0001*m.x127*m.x80 +
0.0001*m.x127*m.x81 + 0.855482006991271*m.x127*m.x82 + 0.0001*m.x127*m.x83 + 0.0001*m.x127*m.x84
+ 0.0001*m.x127*m.x85 + 0.0001*m.x127*m.x86 + 0.0001*m.x127*m.x87 + 0.0001*m.x127*m.x88 + 0.0001
*m.x127*m.x89 + 0.0001*m.x127*m.x90 + 0.0001*m.x127*m.x91 + 0.0001*m.x127*m.x92 + 0.0001*m.x127*
m.x93 + 0.0001*m.x127*m.x94 + 0.0001*m.x127*m.x95 + 0.0001*m.x127*m.x96 + 0.0001*m.x127*m.x97 +
0.0001*m.x127*m.x98 + 0.0001*m.x127*m.x99 + 0.0001*m.x127*m.x100 + 0.0001*m.x127*m.x101 + 0.0001*
m.x127*m.x102 + 0.0001*m.x127*m.x103 + 0.0001*m.x127*m.x104 + 0.0001*m.x127*m.x105 + 0.0001*
m.x127*m.x106 + 0.0001*m.x127*m.x107 + 0.0001*m.x127*m.x108 + 0.0001*m.x127*m.x109 + 0.0001*
m.x127*m.x110 + 0.0001*m.x127*m.x111 + 0.0001*m.x127*m.x112 + 0.0001*m.x127*m.x113 + 0.0001*
m.x127*m.x114 + 0.0001*m.x127*m.x115 + 0.0001*m.x127*m.x116 + 0.0001*m.x127*m.x117 + 0.0001*
m.x127*m.x118 + 0.0001*m.x127*m.x119 + 0.0001*m.x127*m.x120 + 0.0001*m.x127*m.x121 + 0.0001*
m.x127*m.x122 + 0.0001*m.x127*m.x123 + 0.0001*m.x127*m.x124 + 0.0001*m.x127*m.x125 + 0.0001*
m.x127*m.x126 + 4.82541869286828*m.x127**2 + 0.0001*m.x127*m.x128 + 0.0001*m.x127*m.x129 + 0.0001
*m.x127*m.x130 + 0.0001*m.x127*m.x131 + 0.0001*m.x127*m.x132 + 0.0001*m.x127*m.x133 + 0.0001*
m.x127*m.x134 + 0.0001*m.x127*m.x135 + 0.0001*m.x127*m.x136 + 0.0001*m.x127*m.x137 + 0.0001*
m.x127*m.x138 + 0.0001*m.x127*m.x139 + 0.0001*m.x127*m.x140 + 0.0001*m.x127*m.x141 + 0.0001*
m.x127*m.x142 + 0.0001*m.x127*m.x143 + 0.0001*m.x127*m.x144 + 0.0001*m.x127*m.x145 + 0.0001*
m.x127*m.x146 + 0.0001*m.x127*m.x147 + 0.0001*m.x127*m.x148 + 0.0001*m.x127*m.x149 + 0.0001*
m.x127*m.x150 + 0.0001*m.x127*m.x151 + 0.0001*m.x127*m.x152 + 6.56891473074487*m.x127*m.x153 +
0.0001*m.x127*m.x154 + 0.0001*m.x127*m.x155 + 0.0001*m.x127*m.x156 + 0.0001*m.x127*m.x157 +
0.0001*m.x127*m.x158 + 0.0001*m.x127*m.x159 + 0.0001*m.x127*m.x160 + 0.0001*m.x127*m.x161 +
0.0001*m.x127*m.x162 + 0.0001*m.x127*m.x163 + 0.0001*m.x127*m.x164 + 0.0001*m.x127*m.x165 +
0.0001*m.x127*m.x166 + 0.0001*m.x127*m.x167 + 4.14125144473953*m.x127*m.x168 + 0.0001*m.x127*
m.x169 + 0.0001*m.x127*m.x170 + 0.0001*m.x127*m.x171 + 0.0001*m.x127*m.x172 + 0.0001*m.x127*
m.x173 + 0.0001*m.x127*m.x174 + 0.0001*m.x127*m.x175 + 0.0001*m.x127*m.x176 + 0.0001*m.x127*
m.x177 + 0.0001*m.x127*m.x178 + 0.0001*m.x127*m.x179 + 0.0001*m.x127*m.x180 + 0.0001*m.x127*
m.x181 + 0.0001*m.x127*m.x182 + 0.0001*m.x127*m.x183 + 0.0001*m.x127*m.x184 + 0.0001*m.x127*
m.x185 + 0.0001*m.x128*m.x1 + 0.0001*m.x128*m.x2 + 0.0001*m.x128*m.x3 + 0.0001*m.x128*m.x4 +
0.0001*m.x128*m.x5 + 0.0001*m.x128*m.x6 + 0.0001*m.x128*m.x7 + 0.0001*m.x128*m.x8 + 0.0001*m.x128
*m.x9 + 0.0001*m.x128*m.x10 + 0.0001*m.x128*m.x11 + 0.0001*m.x128*m.x12 + 0.0001*m.x128*m.x13 +
0.0001*m.x128*m.x14 + 0.0001*m.x128*m.x15 + 0.0001*m.x128*m.x16 + 0.0001*m.x128*m.x17 + 0.0001*
m.x128*m.x18 + 0.0001*m.x128*m.x19 + 0.0001*m.x128*m.x20 + 0.0001*m.x128*m.x21 + 0.0001*m.x128*
m.x22 + 0.0001*m.x128*m.x23 + 0.0001*m.x128*m.x24 + 0.0001*m.x128*m.x25 + 0.0001*m.x128*m.x26 +
0.0001*m.x128*m.x27 + 0.0001*m.x128*m.x28 + 0.0001*m.x128*m.x29 + 0.0001*m.x128*m.x30 + 0.0001*
m.x128*m.x31 + 0.0001*m.x128*m.x32 + 0.0001*m.x128*m.x33 + 0.0001*m.x128*m.x34 + 0.0001*m.x128*
m.x35 + 0.0001*m.x128*m.x36 + 0.0001*m.x128*m.x37 + 0.0001*m.x128*m.x38 + 0.0001*m.x128*m.x39 +
0.0001*m.x128*m.x40 + 0.0001*m.x128*m.x41 + 0.0001*m.x128*m.x42 + 0.0001*m.x128*m.x43 + 0.0001*
m.x128*m.x44 + 0.0001*m.x128*m.x45 + 0.0001*m.x128*m.x46 + 0.0001*m.x128*m.x47 + 0.0001*m.x128*
m.x48 + 0.0001*m.x128*m.x49 + 0.0001*m.x128*m.x50 + 0.0001*m.x128*m.x51 + 0.0001*m.x128*m.x52 +
0.0001*m.x128*m.x53 + 0.0001*m.x128*m.x54 + 0.0001*m.x128*m.x55 + 0.0001*m.x128*m.x56 + 0.0001*
m.x128*m.x57 + 0.0001*m.x128*m.x58 + 0.0001*m.x128*m.x59 + 0.0001*m.x128*m.x60 + 0.0001*m.x128*
m.x61 + 0.0001*m.x128*m.x62 + 0.0001*m.x128*m.x63 + 0.0001*m.x128*m.x64 + 0.0001*m.x128*m.x65 +
0.0001*m.x128*m.x66 + 0.0001*m.x128*m.x67 + 0.0001*m.x128*m.x68 + 0.0001*m.x128*m.x69 + 0.0001*
m.x128*m.x70 + 0.0001*m.x128*m.x71 + 0.0001*m.x128*m.x72 + 0.0001*m.x128*m.x73 + 0.0001*m.x128*
m.x74 + 0.0001*m.x128*m.x75 + 0.0001*m.x128*m.x76 + 0.0001*m.x128*m.x77 + 0.0001*m.x128*m.x78 +
0.0001*m.x128*m.x79 + 0.0001*m.x128*m.x80 + 0.0001*m.x128*m.x81 + 0.0001*m.x128*m.x82 +
1.35721306884672*m.x128*m.x83 + 0.0001*m.x128*m.x84 + 0.0001*m.x128*m.x85 + 0.0001*m.x128*m.x86
+ 0.0001*m.x128*m.x87 + 0.0001*m.x128*m.x88 + 0.0001*m.x128*m.x89 + 0.0001*m.x128*m.x90 + 0.0001
*m.x128*m.x91 + 0.0001*m.x128*m.x92 + 0.0001*m.x128*m.x93 + 0.0001*m.x128*m.x94 + 0.0001*m.x128*
m.x95 + 0.0001*m.x128*m.x96 + 0.0001*m.x128*m.x97 + 0.0001*m.x128*m.x98 + 0.0001*m.x128*m.x99 +
0.0001*m.x128*m.x100 + 0.0001*m.x128*m.x101 + 0.0001*m.x128*m.x102 + 0.0001*m.x128*m.x103 +
0.0001*m.x128*m.x104 + 0.0001*m.x128*m.x105 + 0.0001*m.x128*m.x106 + 0.0001*m.x128*m.x107 +
0.0001*m.x128*m.x108 + 0.0001*m.x128*m.x109 + 0.0001*m.x128*m.x110 + 0.0001*m.x128*m.x111 +
0.0001*m.x128*m.x112 + 0.0001*m.x128*m.x113 + 0.0001*m.x128*m.x114 + 0.0001*m.x128*m.x115 +
0.0001*m.x128*m.x116 + 0.0001*m.x128*m.x117 + 0.0001*m.x128*m.x118 + 0.0001*m.x128*m.x119 +
0.0001*m.x128*m.x120 + 0.0001*m.x128*m.x121 + 0.0001*m.x128*m.x122 + 0.0001*m.x128*m.x123 +
0.0001*m.x128*m.x124 + 0.0001*m.x128*m.x125 + 0.0001*m.x128*m.x126 + 0.0001*m.x128*m.x127 +
6.61276422211265*m.x128**2 + 0.0001*m.x128*m.x129 + 0.0001*m.x128*m.x130 + 0.0001*m.x128*m.x131
+ 0.0001*m.x128*m.x132 + 0.0001*m.x128*m.x133 + 0.0001*m.x128*m.x134 + 0.0001*m.x128*m.x135 +
0.0001*m.x128*m.x136 + 0.0001*m.x128*m.x137 + 0.0001*m.x128*m.x138 + 0.0001*m.x128*m.x139 +
0.0001*m.x128*m.x140 + 0.0001*m.x128*m.x141 + 0.0001*m.x128*m.x142 + 0.0001*m.x128*m.x143 +
0.0001*m.x128*m.x144 + 0.0001*m.x128*m.x145 + 0.0001*m.x128*m.x146 + 0.0001*m.x128*m.x147 +
0.0001*m.x128*m.x148 + 0.0001*m.x128*m.x149 + 0.0001*m.x128*m.x150 + 0.0001*m.x128*m.x151 +
0.0001*m.x128*m.x152 + 0.0001*m.x128*m.x153 + 6.07157286341414*m.x128*m.x154 + 6.07157286341414*
m.x128*m.x155 + 0.0001*m.x128*m.x156 + 0.0001*m.x128*m.x157 + 0.0001*m.x128*m.x158 + 0.0001*
m.x128*m.x159 + 0.0001*m.x128*m.x160 + 0.0001*m.x128*m.x161 + 0.0001*m.x128*m.x162 + 0.0001*
m.x128*m.x163 + 0.0001*m.x128*m.x164 + 0.0001*m.x128*m.x165 + 0.0001*m.x128*m.x166 + 0.0001*
m.x128*m.x167 + 0.0001*m.x128*m.x168 + 6.60715115840967*m.x128*m.x169 + 0.0001*m.x128*m.x170 +
0.0001*m.x128*m.x171 + 0.0001*m.x128*m.x172 + 0.0001*m.x128*m.x173 + 0.0001*m.x128*m.x174 +
0.0001*m.x128*m.x175 + 0.0001*m.x128*m.x176 + 0.0001*m.x128*m.x177 + 0.0001*m.x128*m.x178 +
0.0001*m.x128*m.x179 + 0.0001*m.x128*m.x180 + 0.0001*m.x128*m.x181 + 0.0001*m.x128*m.x182 +
0.0001*m.x128*m.x183 + 0.0001*m.x128*m.x184 + 0.0001*m.x128*m.x185 + 0.0001*m.x129*m.x1 + 0.0001*
m.x129*m.x2 + 0.0001*m.x129*m.x3 + 0.0001*m.x129*m.x4 + 0.0001*m.x129*m.x5 + 0.0001*m.x129*m.x6
+ 0.0001*m.x129*m.x7 + 0.0001*m.x129*m.x8 + 0.0001*m.x129*m.x9 + 0.0001*m.x129*m.x10 + 0.0001*
m.x129*m.x11 + 0.0001*m.x129*m.x12 + 0.0001*m.x129*m.x13 + 0.0001*m.x129*m.x14 + 0.0001*m.x129*
m.x15 + 0.0001*m.x129*m.x16 + 0.0001*m.x129*m.x17 + 0.0001*m.x129*m.x18 + 0.0001*m.x129*m.x19 +
0.0001*m.x129*m.x20 + 0.0001*m.x129*m.x21 + 0.0001*m.x129*m.x22 + 0.0001*m.x129*m.x23 + 0.0001*
m.x129*m.x24 + 0.0001*m.x129*m.x25 + 0.0001*m.x129*m.x26 + 0.0001*m.x129*m.x27 + 0.0001*m.x129*
m.x28 + 0.0001*m.x129*m.x29 + 0.0001*m.x129*m.x30 + 0.0001*m.x129*m.x31 + 0.0001*m.x129*m.x32 +
0.0001*m.x129*m.x33 + 0.0001*m.x129*m.x34 + 0.0001*m.x129*m.x35 + 0.0001*m.x129*m.x36 + 0.0001*
m.x129*m.x37 + 0.0001*m.x129*m.x38 + 0.0001*m.x129*m.x39 + 0.0001*m.x129*m.x40 + 0.0001*m.x129*
m.x41 + 0.0001*m.x129*m.x42 + 0.0001*m.x129*m.x43 + 0.0001*m.x129*m.x44 + 0.0001*m.x129*m.x45 +
0.0001*m.x129*m.x46 + 0.0001*m.x129*m.x47 + 0.0001*m.x129*m.x48 + 0.0001*m.x129*m.x49 + 0.0001*
m.x129*m.x50 + 0.0001*m.x129*m.x51 + 0.0001*m.x129*m.x52 + 0.0001*m.x129*m.x53 + 0.0001*m.x129*
m.x54 + 0.0001*m.x129*m.x55 + 0.0001*m.x129*m.x56 + 0.0001*m.x129*m.x57 + 0.0001*m.x129*m.x58 +
0.0001*m.x129*m.x59 + 0.0001*m.x129*m.x60 + 0.0001*m.x129*m.x61 + 0.0001*m.x129*m.x62 + 0.0001*
m.x129*m.x63 + 0.0001*m.x129*m.x64 + 0.0001*m.x129*m.x65 + 0.0001*m.x129*m.x66 + 0.0001*m.x129*
m.x67 + 0.0001*m.x129*m.x68 + 0.0001*m.x129*m.x69 + 0.0001*m.x129*m.x70 + 0.0001*m.x129*m.x71 +
0.0001*m.x129*m.x72 + 0.0001*m.x129*m.x73 + 0.0001*m.x129*m.x74 + 0.0001*m.x129*m.x75 + 0.0001*
m.x129*m.x76 + 0.0001*m.x129*m.x77 + 0.0001*m.x129*m.x78 + 0.0001*m.x129*m.x79 + 0.0001*m.x129*
m.x80 + 0.0001*m.x129*m.x81 + 0.0001*m.x129*m.x82 + 0.0001*m.x129*m.x83 + 0.0001*m.x129*m.x84 +
0.0001*m.x129*m.x85 + 0.0001*m.x129*m.x86 + 0.0001*m.x129*m.x87 + 0.0001*m.x129*m.x88 + 0.0001*
m.x129*m.x89 + 0.0001*m.x129*m.x90 + 0.0001*m.x129*m.x91 + 0.0001*m.x129*m.x92 + 0.0001*m.x129*
m.x93 + 0.0001*m.x129*m.x94 + 0.0001*m.x129*m.x95 + 0.0001*m.x129*m.x96 + 0.0001*m.x129*m.x97 +
0.0001*m.x129*m.x98 + 0.0001*m.x129*m.x99 + 0.0001*m.x129*m.x100 + 0.0001*m.x129*m.x101 + 0.0001*
m.x129*m.x102 + 0.0001*m.x129*m.x103 + 0.0001*m.x129*m.x104 + 0.0001*m.x129*m.x105 + 0.0001*
m.x129*m.x106 + 0.0001*m.x129*m.x107 + 0.0001*m.x129*m.x108 + 0.0001*m.x129*m.x109 + 0.0001*
m.x129*m.x110 + 0.0001*m.x129*m.x111 + 0.0001*m.x129*m.x112 + 0.0001*m.x129*m.x113 + 0.0001*
m.x129*m.x114 + 0.0001*m.x129*m.x115 + 0.530384532962827*m.x129*m.x116 + 0.0001*m.x129*m.x117 +
0.0001*m.x129*m.x118 + 0.0001*m.x129*m.x119 + 0.0001*m.x129*m.x120 + 0.0001*m.x129*m.x121 +
0.0001*m.x129*m.x122 + 0.0001*m.x129*m.x123 + 0.0001*m.x129*m.x124 + 0.0001*m.x129*m.x125 +
0.0001*m.x129*m.x126 + 0.0001*m.x129*m.x127 + 0.0001*m.x129*m.x128 + 3.28445192399617*m.x129**2
+ 0.0001*m.x129*m.x130 + 0.0001*m.x129*m.x131 + 0.0001*m.x129*m.x132 + 0.0001*m.x129*m.x133 +
0.0001*m.x129*m.x134 + 0.0001*m.x129*m.x135 + 0.0001*m.x129*m.x136 + 0.0001*m.x129*m.x137 +
0.0001*m.x129*m.x138 + 0.0001*m.x129*m.x139 + 0.0001*m.x129*m.x140 + 0.0001*m.x129*m.x141 +
0.737425273741647*m.x129*m.x142 + 0.0001*m.x129*m.x143 + 0.0001*m.x129*m.x144 + 0.0001*m.x129*
m.x145 + 0.0001*m.x129*m.x146 + 0.0001*m.x129*m.x147 + 0.0001*m.x129*m.x148 + 0.0001*m.x129*
m.x149 + 0.0001*m.x129*m.x150 + 0.0001*m.x129*m.x151 + 0.0001*m.x129*m.x152 + 0.0001*m.x129*
m.x153 + 0.0001*m.x129*m.x154 + 0.0001*m.x129*m.x155 + 6.01366122063386*m.x129*m.x156 +
0.481481473554168*m.x129*m.x157 + 0.0001*m.x129*m.x158 + 0.0001*m.x129*m.x159 + 0.0001*m.x129*
m.x160 + 0.0001*m.x129*m.x161 + 0.0001*m.x129*m.x162 + 0.0001*m.x129*m.x163 + 0.0001*m.x129*
m.x164 + 0.0001*m.x129*m.x165 + 0.0001*m.x129*m.x166 + 0.0001*m.x129*m.x167 + 0.0001*m.x129*
m.x168 + 0.0001*m.x129*m.x169 + 3.0953837361136*m.x129*m.x170 + 0.0001*m.x129*m.x171 + 0.0001*
m.x129*m.x172 + 0.0001*m.x129*m.x173 + 0.0001*m.x129*m.x174 + 0.0001*m.x129*m.x175 + 0.0001*
m.x129*m.x176 + 0.0001*m.x129*m.x177 + 0.0001*m.x129*m.x178 + 0.0001*m.x129*m.x179 + 0.0001*
m.x129*m.x180 + 0.0001*m.x129*m.x181 + 0.0001*m.x129*m.x182 + 0.0001*m.x129*m.x183 + 0.0001*
m.x129*m.x184 + 0.0001*m.x129*m.x185 + 3.76549448672075*m.x130*m.x1 + 0.0001*m.x130*m.x2 + 0.0001
*m.x130*m.x3 + 0.0001*m.x130*m.x4 + 0.0001*m.x130*m.x5 + 0.0001*m.x130*m.x6 + 0.0001*m.x130*m.x7
+ 0.0001*m.x130*m.x8 + 0.0001*m.x130*m.x9 + 0.0001*m.x130*m.x10 + 0.0001*m.x130*m.x11 + 0.0001*
m.x130*m.x12 + 3.05296742049278*m.x130*m.x13 + 0.0001*m.x130*m.x14 + 0.0001*m.x130*m.x15 + 0.0001
*m.x130*m.x16 + 0.0001*m.x130*m.x17 + 0.0001*m.x130*m.x18 + 0.0001*m.x130*m.x19 + 0.0001*m.x130*
m.x20 + 0.0001*m.x130*m.x21 + 0.0001*m.x130*m.x22 + 0.0001*m.x130*m.x23 + 0.0001*m.x130*m.x24 +
0.0001*m.x130*m.x25 + 0.0001*m.x130*m.x26 + 0.0001*m.x130*m.x27 + 0.0001*m.x130*m.x28 + 0.0001*
m.x130*m.x29 + 0.0001*m.x130*m.x30 + 0.0001*m.x130*m.x31 + 0.0001*m.x130*m.x32 + 0.0001*m.x130*
m.x33 + 0.709807760487836*m.x130*m.x34 + 0.0001*m.x130*m.x35 + 2.88588347328381*m.x130*m.x36 +
0.0001*m.x130*m.x37 + 0.0001*m.x130*m.x38 + 0.0001*m.x130*m.x39 + 0.0001*m.x130*m.x40 + 0.0001*
m.x130*m.x41 + 0.0001*m.x130*m.x42 + 0.0001*m.x130*m.x43 + 0.0001*m.x130*m.x44 + 0.0001*m.x130*
m.x45 + 0.0001*m.x130*m.x46 + 0.0001*m.x130*m.x47 + 0.0001*m.x130*m.x48 + 0.0001*m.x130*m.x49 +
0.0001*m.x130*m.x50 + 0.0001*m.x130*m.x51 + 0.0001*m.x130*m.x52 + 0.0001*m.x130*m.x53 + 0.0001*
m.x130*m.x54 + 0.0001*m.x130*m.x55 + 0.437738595417195*m.x130*m.x56 + 0.0001*m.x130*m.x57 +
0.0001*m.x130*m.x58 + 0.0001*m.x130*m.x59 + 0.0001*m.x130*m.x60 + 0.0001*m.x130*m.x61 + 0.0001*
m.x130*m.x62 + 0.0001*m.x130*m.x63 + 0.0001*m.x130*m.x64 + 0.0001*m.x130*m.x65 + 0.0001*m.x130*
m.x66 + 0.0001*m.x130*m.x67 + 0.0001*m.x130*m.x68 + 0.0001*m.x130*m.x69 + 0.0001*m.x130*m.x70 +
0.0001*m.x130*m.x71 + 0.0001*m.x130*m.x72 + 0.0001*m.x130*m.x73 + 0.0001*m.x130*m.x74 + 0.0001*
m.x130*m.x75 + 0.0001*m.x130*m.x76 + 0.0001*m.x130*m.x77 + 0.0001*m.x130*m.x78 + 0.0001*m.x130*
m.x79 + 0.0001*m.x130*m.x80 + 0.0001*m.x130*m.x81 + 0.0001*m.x130*m.x82 + 0.0001*m.x130*m.x83 +
0.0001*m.x130*m.x84 + 0.0001*m.x130*m.x85 + 0.0001*m.x130*m.x86 + 0.0001*m.x130*m.x87 + 0.0001*
m.x130*m.x88 + 0.0001*m.x130*m.x89 + 0.0001*m.x130*m.x90 + 0.0001*m.x130*m.x91 + 0.0001*m.x130*
m.x92 + 1.35189577717393*m.x130*m.x93 + 0.0001*m.x130*m.x94 + 0.0001*m.x130*m.x95 + 0.0001*m.x130
*m.x96 + 0.0001*m.x130*m.x97 + 0.0001*m.x130*m.x98 + 0.0001*m.x130*m.x99 + 0.0001*m.x130*m.x100
+ 0.0001*m.x130*m.x101 + 0.0001*m.x130*m.x102 + 0.0001*m.x130*m.x103 + 0.0001*m.x130*m.x104 +
0.0001*m.x130*m.x105 + 0.0001*m.x130*m.x106 + 0.0001*m.x130*m.x107 + 0.0001*m.x130*m.x108 +
0.0001*m.x130*m.x109 + 0.0001*m.x130*m.x110 + 0.0001*m.x130*m.x111 + 0.0001*m.x130*m.x112 +
0.0001*m.x130*m.x113 + 0.0001*m.x130*m.x114 + 0.0001*m.x130*m.x115 + 0.0001*m.x130*m.x116 +
0.0001*m.x130*m.x117 + 0.0001*m.x130*m.x118 + 0.0001*m.x130*m.x119 + 0.0001*m.x130*m.x120 +
0.0001*m.x130*m.x121 + 0.0001*m.x130*m.x122 + 0.0001*m.x130*m.x123 + 0.0001*m.x130*m.x124 +
0.0001*m.x130*m.x125 + 0.0001*m.x130*m.x126 + 0.0001*m.x130*m.x127 + 0.0001*m.x130*m.x128 +
0.0001*m.x130*m.x129 + 1.76803453067464*m.x130**2 + 0.0001*m.x130*m.x131 + 0.0001*m.x130*m.x132
+ 0.0001*m.x130*m.x133 + 0.0001*m.x130*m.x134 + 0.0001*m.x130*m.x135 + 0.0001*m.x130*m.x136 +
0.0001*m.x130*m.x137 + 0.0001*m.x130*m.x138 + 0.0001*m.x130*m.x139 + 0.0001*m.x130*m.x140 +
0.0001*m.x130*m.x141 + 0.0001*m.x130*m.x142 + 0.0001*m.x130*m.x143 + 0.0001*m.x130*m.x144 +
0.0001*m.x130*m.x145 + 0.0001*m.x130*m.x146 + 0.0001*m.x130*m.x147 + 0.0001*m.x130*m.x148 +
0.0001*m.x130*m.x149 + 0.0001*m.x130*m.x150 + 0.0001*m.x130*m.x151 + 0.0001*m.x130*m.x152 +
0.0001*m.x130*m.x153 + 0.0001*m.x130*m.x154 + 0.0001*m.x130*m.x155 + 0.0001*m.x130*m.x156 +
0.0001*m.x130*m.x157 + 0.0001*m.x130*m.x158 + 0.0001*m.x130*m.x159 + 0.0001*m.x130*m.x160 +
0.0001*m.x130*m.x161 + 0.0001*m.x130*m.x162 + 0.0001*m.x130*m.x163 + 0.0001*m.x130*m.x164 +
0.0001*m.x130*m.x165 + 0.0001*m.x130*m.x166 + 0.0001*m.x130*m.x167 + 0.0001*m.x130*m.x168 +
0.0001*m.x130*m.x169 + 0.0001*m.x130*m.x170 + 0.0001*m.x130*m.x171 + 0.0001*m.x130*m.x172 +
0.0001*m.x130*m.x173 + 0.0001*m.x130*m.x174 + 0.0001*m.x130*m.x175 + 0.0001*m.x130*m.x176 +
0.0001*m.x130*m.x177 + 0.0001*m.x130*m.x178 + 0.0001*m.x130*m.x179 + 0.0001*m.x130*m.x180 +
0.0001*m.x130*m.x181 + 0.0001*m.x130*m.x182 + 0.0001*m.x130*m.x183 + 0.0001*m.x130*m.x184 +
0.0001*m.x130*m.x185 + 0.0001*m.x131*m.x1 + 3.77224840915951*m.x131*m.x2 + 0.0001*m.x131*m.x3 +
0.0001*m.x131*m.x4 + 0.0001*m.x131*m.x5 + 0.0001*m.x131*m.x6 + 0.0001*m.x131*m.x7 + 0.0001*m.x131
*m.x8 + 0.0001*m.x131*m.x9 + 0.0001*m.x131*m.x10 + 0.0001*m.x131*m.x11 + 0.0001*m.x131*m.x12 +
0.0001*m.x131*m.x13 + 3.10036242205314*m.x131*m.x14 + 0.0001*m.x131*m.x15 + 0.0001*m.x131*m.x16
+ 0.0001*m.x131*m.x17 + 0.0001*m.x131*m.x18 + 0.0001*m.x131*m.x19 + 0.0001*m.x131*m.x20 + 0.0001
*m.x131*m.x21 + 0.0001*m.x131*m.x22 + 0.0001*m.x131*m.x23 + 0.0001*m.x131*m.x24 +
0.846153145046179*m.x131*m.x25 + 0.0001*m.x131*m.x26 + 0.0001*m.x131*m.x27 + 0.0001*m.x131*m.x28
+ 0.0001*m.x131*m.x29 + 0.0001*m.x131*m.x30 + 0.0001*m.x131*m.x31 + 0.0001*m.x131*m.x32 + 0.0001
*m.x131*m.x33 + 0.0001*m.x131*m.x34 + 0.716539116478635*m.x131*m.x35 + 0.0001*m.x131*m.x36 +
2.93068453844014*m.x131*m.x37 + 0.0001*m.x131*m.x38 + 0.0001*m.x131*m.x39 + 0.0001*m.x131*m.x40
+ 0.0001*m.x131*m.x41 + 0.0001*m.x131*m.x42 + 0.0001*m.x131*m.x43 + 0.0001*m.x131*m.x44 + 0.0001
*m.x131*m.x45 + 0.0001*m.x131*m.x46 + 0.0001*m.x131*m.x47 + 0.0001*m.x131*m.x48 + 0.0001*m.x131*
m.x49 + 0.0001*m.x131*m.x50 + 0.0001*m.x131*m.x51 + 0.0001*m.x131*m.x52 + 0.0001*m.x131*m.x53 +
0.0001*m.x131*m.x54 + 0.0001*m.x131*m.x55 + 0.0001*m.x131*m.x56 + 0.447942246308306*m.x131*m.x57
+ 0.0001*m.x131*m.x58 + 0.0001*m.x131*m.x59 + 0.0001*m.x131*m.x60 + 0.0001*m.x131*m.x61 + 0.0001
*m.x131*m.x62 + 0.0001*m.x131*m.x63 + 0.0001*m.x131*m.x64 + 0.0001*m.x131*m.x65 + 0.0001*m.x131*
m.x66 + 0.0001*m.x131*m.x67 + 0.0001*m.x131*m.x68 + 0.0001*m.x131*m.x69 + 0.0001*m.x131*m.x70 +
0.0001*m.x131*m.x71 + 0.0001*m.x131*m.x72 + 0.0001*m.x131*m.x73 + 0.0001*m.x131*m.x74 + 0.0001*
m.x131*m.x75 + 0.0001*m.x131*m.x76 + 0.0001*m.x131*m.x77 + 0.0001*m.x131*m.x78 + 0.0001*m.x131*
m.x79 + 0.0001*m.x131*m.x80 + 0.0001*m.x131*m.x81 + 0.0001*m.x131*m.x82 + 0.0001*m.x131*m.x83 +
0.0001*m.x131*m.x84 + 0.0001*m.x131*m.x85 + 0.0001*m.x131*m.x86 + 0.0001*m.x131*m.x87 + 0.0001*
m.x131*m.x88 + 0.0001*m.x131*m.x89 + 0.0001*m.x131*m.x90 + 0.0001*m.x131*m.x91 + 0.0001*m.x131*
m.x92 + 0.0001*m.x131*m.x93 + 1.35189577717393*m.x131*m.x94 + 0.0001*m.x131*m.x95 + 0.0001*m.x131
*m.x96 + 0.0001*m.x131*m.x97 + 0.0001*m.x131*m.x98 + 0.0001*m.x131*m.x99 + 0.0001*m.x131*m.x100
+ 0.0001*m.x131*m.x101 + 0.0001*m.x131*m.x102 + 0.0001*m.x131*m.x103 + 0.0001*m.x131*m.x104 +
0.0001*m.x131*m.x105 + 0.0001*m.x131*m.x106 + 0.0001*m.x131*m.x107 + 0.0001*m.x131*m.x108 +
0.0001*m.x131*m.x109 + 0.0001*m.x131*m.x110 + 0.0001*m.x131*m.x111 + 0.0001*m.x131*m.x112 +
0.0001*m.x131*m.x113 + 0.0001*m.x131*m.x114 + 0.0001*m.x131*m.x115 + 0.0001*m.x131*m.x116 +
0.0001*m.x131*m.x117 + 0.0001*m.x131*m.x118 + 0.0001*m.x131*m.x119 + 0.0001*m.x131*m.x120 +
0.0001*m.x131*m.x121 + 0.0001*m.x131*m.x122 + 0.0001*m.x131*m.x123 + 0.0001*m.x131*m.x124 +
0.0001*m.x131*m.x125 + 0.0001*m.x131*m.x126 + 0.0001*m.x131*m.x127 + 0.0001*m.x131*m.x128 +
0.0001*m.x131*m.x129 + 0.0001*m.x131*m.x130 + 1.79256029956487*m.x131**2 + 0.0001*m.x131*m.x132
+ 0.0001*m.x131*m.x133 + 0.0001*m.x131*m.x134 + 0.0001*m.x131*m.x135 + 0.0001*m.x131*m.x136 +
0.0001*m.x131*m.x137 + 0.0001*m.x131*m.x138 + 0.0001*m.x131*m.x139 + 0.0001*m.x131*m.x140 +
0.0001*m.x131*m.x141 + 0.0001*m.x131*m.x142 + 0.0001*m.x131*m.x143 + 0.0001*m.x131*m.x144 +
0.0001*m.x131*m.x145 + 0.0001*m.x131*m.x146 + 0.0001*m.x131*m.x147 + 0.0001*m.x131*m.x148 +
0.0001*m.x131*m.x149 + 0.0001*m.x131*m.x150 + 0.0001*m.x131*m.x151 + 0.0001*m.x131*m.x152 +
0.0001*m.x131*m.x153 + 0.0001*m.x131*m.x154 + 0.0001*m.x131*m.x155 + 0.0001*m.x131*m.x156 +
0.0001*m.x131*m.x157 + 0.0001*m.x131*m.x158 + 0.0001*m.x131*m.x159 + 0.0001*m.x131*m.x160 +
0.0001*m.x131*m.x161 + 0.0001*m.x131*m.x162 + 0.0001*m.x131*m.x163 + 0.0001*m.x131*m.x164 +
0.0001*m.x131*m.x165 + 0.0001*m.x131*m.x166 + 0.0001*m.x131*m.x167 + 0.0001*m.x131*m.x168 +
0.0001*m.x131*m.x169 + 0.0001*m.x131*m.x170 + 0.0001*m.x131*m.x171 + 0.0001*m.x131*m.x172 +
0.0001*m.x131*m.x173 + 0.0001*m.x131*m.x174 + 0.0001*m.x131*m.x175 + 0.0001*m.x131*m.x176 +
0.0001*m.x131*m.x177 + 0.0001*m.x131*m.x178 + 0.0001*m.x131*m.x179 + 0.0001*m.x131*m.x180 +
0.0001*m.x131*m.x181 + 0.0001*m.x131*m.x182 + 0.0001*m.x131*m.x183 + 0.0001*m.x131*m.x184 +
0.0001*m.x131*m.x185 + 0.0001*m.x132*m.x1 + 0.0001*m.x132*m.x2 + 3.76257545380017*m.x132*m.x3 +
0.0001*m.x132*m.x4 + 0.0001*m.x132*m.x5 + 0.0001*m.x132*m.x6 + 0.0001*m.x132*m.x7 + 0.0001*m.x132
*m.x8 + 0.0001*m.x132*m.x9 + 0.0001*m.x132*m.x10 + 0.0001*m.x132*m.x11 + 0.0001*m.x132*m.x12 +
0.0001*m.x132*m.x13 + 0.0001*m.x132*m.x14 + 3.09241239019915*m.x132*m.x15 + 0.0001*m.x132*m.x16
+ 0.0001*m.x132*m.x17 + 0.0001*m.x132*m.x18 + 0.0001*m.x132*m.x19 + 0.0001*m.x132*m.x20 + 0.0001
*m.x132*m.x21 + 0.0001*m.x132*m.x22 + 0.0001*m.x132*m.x23 + 0.0001*m.x132*m.x24 + 0.0001*m.x132*
m.x25 + 0.83639696474523*m.x132*m.x26 + 0.0001*m.x132*m.x27 + 0.0001*m.x132*m.x28 + 0.0001*m.x132
*m.x29 + 0.0001*m.x132*m.x30 + 0.0001*m.x132*m.x31 + 0.0001*m.x132*m.x32 + 0.0001*m.x132*m.x33 +
0.0001*m.x132*m.x34 + 0.0001*m.x132*m.x35 + 0.0001*m.x132*m.x36 + 0.0001*m.x132*m.x37 +
2.92316961316618*m.x132*m.x38 + 0.0001*m.x132*m.x39 + 0.0001*m.x132*m.x40 + 0.0001*m.x132*m.x41
+ 0.0001*m.x132*m.x42 + 0.0001*m.x132*m.x43 + 0.0001*m.x132*m.x44 + 0.0001*m.x132*m.x45 + 0.0001
*m.x132*m.x46 + 0.0001*m.x132*m.x47 + 0.0001*m.x132*m.x48 + 0.0001*m.x132*m.x49 + 0.0001*m.x132*
m.x50 + 0.0001*m.x132*m.x51 + 0.0001*m.x132*m.x52 + 0.0001*m.x132*m.x53 + 0.0001*m.x132*m.x54 +
0.0001*m.x132*m.x55 + 0.0001*m.x132*m.x56 + 0.0001*m.x132*m.x57 + 0.475488660826549*m.x132*m.x58
+ 0.0001*m.x132*m.x59 + 0.0001*m.x132*m.x60 + 0.0001*m.x132*m.x61 + 0.0001*m.x132*m.x62 + 0.0001
*m.x132*m.x63 + 0.0001*m.x132*m.x64 + 0.0001*m.x132*m.x65 + 0.0001*m.x132*m.x66 + 0.0001*m.x132*
m.x67 + 0.0001*m.x132*m.x68 + 0.0001*m.x132*m.x69 + 0.0001*m.x132*m.x70 + 0.0001*m.x132*m.x71 +
0.0001*m.x132*m.x72 + 0.0001*m.x132*m.x73 + 0.0001*m.x132*m.x74 + 0.0001*m.x132*m.x75 + 0.0001*
m.x132*m.x76 + 0.0001*m.x132*m.x77 + 0.0001*m.x132*m.x78 + 0.0001*m.x132*m.x79 + 0.0001*m.x132*
m.x80 + 0.0001*m.x132*m.x81 + 0.0001*m.x132*m.x82 + 0.0001*m.x132*m.x83 + 0.0001*m.x132*m.x84 +
0.0001*m.x132*m.x85 + 0.0001*m.x132*m.x86 + 0.0001*m.x132*m.x87 + 0.0001*m.x132*m.x88 + 0.0001*
m.x132*m.x89 + 0.0001*m.x132*m.x90 + 0.0001*m.x132*m.x91 + 0.0001*m.x132*m.x92 + 0.0001*m.x132*
m.x93 + 0.0001*m.x132*m.x94 + 1.33196082493441*m.x132*m.x95 + 0.0001*m.x132*m.x96 + 0.0001*m.x132
*m.x97 + 0.0001*m.x132*m.x98 + 0.0001*m.x132*m.x99 + 0.0001*m.x132*m.x100 + 0.0001*m.x132*m.x101
+ 0.0001*m.x132*m.x102 + 0.0001*m.x132*m.x103 + 0.0001*m.x132*m.x104 + 0.0001*m.x132*m.x105 +
0.0001*m.x132*m.x106 + 0.0001*m.x132*m.x107 + 0.0001*m.x132*m.x108 + 0.0001*m.x132*m.x109 +
0.0001*m.x132*m.x110 + 0.0001*m.x132*m.x111 + 0.0001*m.x132*m.x112 + 0.0001*m.x132*m.x113 +
0.0001*m.x132*m.x114 + 0.0001*m.x132*m.x115 + 0.0001*m.x132*m.x116 + 0.0001*m.x132*m.x117 +
0.0001*m.x132*m.x118 + 0.0001*m.x132*m.x119 + 0.0001*m.x132*m.x120 + 0.0001*m.x132*m.x121 +
0.0001*m.x132*m.x122 + 0.0001*m.x132*m.x123 + 0.0001*m.x132*m.x124 + 0.0001*m.x132*m.x125 +
0.0001*m.x132*m.x126 + 0.0001*m.x132*m.x127 + 0.0001*m.x132*m.x128 + 0.0001*m.x132*m.x129 +
0.0001*m.x132*m.x130 + 0.0001*m.x132*m.x131 + 1.79540371507622*m.x132**2 + 0.0001*m.x132*m.x133
+ 0.0001*m.x132*m.x134 + 0.0001*m.x132*m.x135 + 0.0001*m.x132*m.x136 + 0.0001*m.x132*m.x137 +
0.0001*m.x132*m.x138 + 0.0001*m.x132*m.x139 + 0.0001*m.x132*m.x140 + 0.0001*m.x132*m.x141 +
0.0001*m.x132*m.x142 + 0.0001*m.x132*m.x143 + 0.0001*m.x132*m.x144 + 0.0001*m.x132*m.x145 +
0.0001*m.x132*m.x146 + 0.0001*m.x132*m.x147 + 0.0001*m.x132*m.x148 + 0.0001*m.x132*m.x149 +
0.0001*m.x132*m.x150 + 0.0001*m.x132*m.x151 + 0.0001*m.x132*m.x152 + 0.0001*m.x132*m.x153 +
0.0001*m.x132*m.x154 + 0.0001*m.x132*m.x155 + 0.0001*m.x132*m.x156 + 0.0001*m.x132*m.x157 +
0.0001*m.x132*m.x158 + 0.0001*m.x132*m.x159 + 0.0001*m.x132*m.x160 + 0.0001*m.x132*m.x161 +
0.0001*m.x132*m.x162 + 0.0001*m.x132*m.x163 + 0.0001*m.x132*m.x164 + 0.0001*m.x132*m.x165 +
0.0001*m.x132*m.x166 + 0.0001*m.x132*m.x167 + 0.0001*m.x132*m.x168 + 0.0001*m.x132*m.x169 +
0.0001*m.x132*m.x170 + 0.0001*m.x132*m.x171 + 0.0001*m.x132*m.x172 + 0.0001*m.x132*m.x173 +
0.0001*m.x132*m.x174 + 0.0001*m.x132*m.x175 + 0.0001*m.x132*m.x176 + 0.0001*m.x132*m.x177 +
0.0001*m.x132*m.x178 + 0.0001*m.x132*m.x179 + 0.0001*m.x132*m.x180 + 0.0001*m.x132*m.x181 +
0.0001*m.x132*m.x182 + 0.0001*m.x132*m.x183 + 0.0001*m.x132*m.x184 + 0.0001*m.x132*m.x185 +
0.0001*m.x133*m.x1 + 0.0001*m.x133*m.x2 + 0.0001*m.x133*m.x3 + 3.72778316578126*m.x133*m.x4 +
0.0001*m.x133*m.x5 + 0.0001*m.x133*m.x6 + 0.0001*m.x133*m.x7 + 0.0001*m.x133*m.x8 + 0.0001*m.x133
*m.x9 + 0.0001*m.x133*m.x10 + 0.0001*m.x133*m.x11 + 0.0001*m.x133*m.x12 + 0.0001*m.x133*m.x13 +
0.0001*m.x133*m.x14 + 0.0001*m.x133*m.x15 + 3.04574536914387*m.x133*m.x16 + 0.0001*m.x133*m.x17
+ 0.0001*m.x133*m.x18 + 0.0001*m.x133*m.x19 + 0.0001*m.x133*m.x20 + 0.0001*m.x133*m.x21 + 0.0001
*m.x133*m.x22 + 0.0001*m.x133*m.x23 + 0.0001*m.x133*m.x24 + 0.0001*m.x133*m.x25 + 0.0001*m.x133*
m.x26 + 0.830775905057381*m.x133*m.x27 + 0.0001*m.x133*m.x28 + 0.0001*m.x133*m.x29 + 0.0001*
m.x133*m.x30 + 0.0001*m.x133*m.x31 + 0.0001*m.x133*m.x32 + 0.0001*m.x133*m.x33 + 0.0001*m.x133*
m.x34 + 0.0001*m.x133*m.x35 + 0.0001*m.x133*m.x36 + 0.0001*m.x133*m.x37 + 0.0001*m.x133*m.x38 +
3.00889518410223*m.x133*m.x39 + 0.0001*m.x133*m.x40 + 0.0001*m.x133*m.x41 + 0.0001*m.x133*m.x42
+ 0.0001*m.x133*m.x43 + 0.0001*m.x133*m.x44 + 0.0001*m.x133*m.x45 + 0.0001*m.x133*m.x46 + 0.0001
*m.x133*m.x47 + 0.0001*m.x133*m.x48 + 0.0001*m.x133*m.x49 + 0.0001*m.x133*m.x50 + 0.0001*m.x133*
m.x51 + 0.0001*m.x133*m.x52 + 0.0001*m.x133*m.x53 + 0.0001*m.x133*m.x54 + 0.0001*m.x133*m.x55 +
0.0001*m.x133*m.x56 + 0.0001*m.x133*m.x57 + 0.0001*m.x133*m.x58 + 0.0001*m.x133*m.x59 + 0.0001*
m.x133*m.x60 + 0.0001*m.x133*m.x61 + 0.0001*m.x133*m.x62 + 0.0001*m.x133*m.x63 + 0.0001*m.x133*
m.x64 + 0.0001*m.x133*m.x65 + 0.0001*m.x133*m.x66 + 0.0001*m.x133*m.x67 + 0.0001*m.x133*m.x68 +
0.0001*m.x133*m.x69 + 0.0001*m.x133*m.x70 + 0.0001*m.x133*m.x71 + 0.0001*m.x133*m.x72 + 0.0001*
m.x133*m.x73 + 0.0001*m.x133*m.x74 + 0.0001*m.x133*m.x75 + 0.0001*m.x133*m.x76 + 0.0001*m.x133*
m.x77 + 0.0001*m.x133*m.x78 + 0.0001*m.x133*m.x79 + 0.0001*m.x133*m.x80 + 0.0001*m.x133*m.x81 +
0.0001*m.x133*m.x82 + 0.0001*m.x133*m.x83 + 0.0001*m.x133*m.x84 + 0.0001*m.x133*m.x85 + 0.0001*
m.x133*m.x86 + 0.0001*m.x133*m.x87 + 0.0001*m.x133*m.x88 + 0.0001*m.x133*m.x89 + 0.0001*m.x133*
m.x90 + 0.0001*m.x133*m.x91 + 0.0001*m.x133*m.x92 + 0.0001*m.x133*m.x93 + 0.0001*m.x133*m.x94 +
0.0001*m.x133*m.x95 + 1.32500350566268*m.x133*m.x96 + 0.0001*m.x133*m.x97 + 0.0001*m.x133*m.x98
+ 0.0001*m.x133*m.x99 + 0.0001*m.x133*m.x100 + 0.0001*m.x133*m.x101 + 0.0001*m.x133*m.x102 +
0.0001*m.x133*m.x103 + 0.0001*m.x133*m.x104 + 0.0001*m.x133*m.x105 + 0.0001*m.x133*m.x106 +
0.0001*m.x133*m.x107 + 0.0001*m.x133*m.x108 + 0.0001*m.x133*m.x109 + 0.0001*m.x133*m.x110 +
0.0001*m.x133*m.x111 + 0.0001*m.x133*m.x112 + 0.0001*m.x133*m.x113 + 0.0001*m.x133*m.x114 +
0.0001*m.x133*m.x115 + 0.0001*m.x133*m.x116 + 0.0001*m.x133*m.x117 + 0.0001*m.x133*m.x118 +
0.0001*m.x133*m.x119 + 0.0001*m.x133*m.x120 + 0.0001*m.x133*m.x121 + 0.0001*m.x133*m.x122 +
0.0001*m.x133*m.x123 + 0.0001*m.x133*m.x124 + 0.0001*m.x133*m.x125 + 0.0001*m.x133*m.x126 +
0.0001*m.x133*m.x127 + 0.0001*m.x133*m.x128 + 0.0001*m.x133*m.x129 + 0.0001*m.x133*m.x130 +
0.0001*m.x133*m.x131 + 0.0001*m.x133*m.x132 + 1.76394565270807*m.x133**2 + 0.0001*m.x133*m.x134
+ 0.0001*m.x133*m.x135 + 0.0001*m.x133*m.x136 + 0.0001*m.x133*m.x137 + 0.0001*m.x133*m.x138 +
0.0001*m.x133*m.x139 + 0.0001*m.x133*m.x140 + 0.0001*m.x133*m.x141 + 0.0001*m.x133*m.x142 +
0.0001*m.x133*m.x143 + 0.0001*m.x133*m.x144 + 0.0001*m.x133*m.x145 + 0.0001*m.x133*m.x146 +
0.0001*m.x133*m.x147 + 0.0001*m.x133*m.x148 + 0.0001*m.x133*m.x149 + 0.0001*m.x133*m.x150 +
0.0001*m.x133*m.x151 + 0.0001*m.x133*m.x152 + 0.0001*m.x133*m.x153 + 0.0001*m.x133*m.x154 +
0.0001*m.x133*m.x155 + 0.0001*m.x133*m.x156 + 0.0001*m.x133*m.x157 + 0.0001*m.x133*m.x158 +
0.0001*m.x133*m.x159 + 0.0001*m.x133*m.x160 + 0.0001*m.x133*m.x161 + 0.0001*m.x133*m.x162 +
0.0001*m.x133*m.x163 + 0.0001*m.x133*m.x164 + 0.0001*m.x133*m.x165 + 0.0001*m.x133*m.x166 +
0.0001*m.x133*m.x167 + 0.0001*m.x133*m.x168 + 0.0001*m.x133*m.x169 + 0.0001*m.x133*m.x170 +
0.0001*m.x133*m.x171 + 0.0001*m.x133*m.x172 + 0.0001*m.x133*m.x173 + 0.0001*m.x133*m.x174 +
0.0001*m.x133*m.x175 + 0.0001*m.x133*m.x176 + 0.0001*m.x133*m.x177 + 0.0001*m.x133*m.x178 +
0.0001*m.x133*m.x179 + 0.0001*m.x133*m.x180 + 0.0001*m.x133*m.x181 + 0.0001*m.x133*m.x182 +
0.0001*m.x133*m.x183 + 0.0001*m.x133*m.x184 + 0.0001*m.x133*m.x185 + 0.0001*m.x134*m.x1 + 0.0001*
m.x134*m.x2 + 0.0001*m.x134*m.x3 + 0.0001*m.x134*m.x4 + 3.73746229794978*m.x134*m.x5 + 0.0001*
m.x134*m.x6 + 0.0001*m.x134*m.x7 + 0.0001*m.x134*m.x8 + 0.0001*m.x134*m.x9 + 0.0001*m.x134*m.x10
+ 0.0001*m.x134*m.x11 + 0.0001*m.x134*m.x12 + 0.0001*m.x134*m.x13 + 0.0001*m.x134*m.x14 + 0.0001
*m.x134*m.x15 + 0.0001*m.x134*m.x16 + 2.9828914391795*m.x134*m.x17 + 0.0001*m.x134*m.x18 + 0.0001
*m.x134*m.x19 + 0.0001*m.x134*m.x20 + 0.0001*m.x134*m.x21 + 0.0001*m.x134*m.x22 + 0.0001*m.x134*
m.x23 + 0.0001*m.x134*m.x24 + 0.0001*m.x134*m.x25 + 0.0001*m.x134*m.x26 + 0.0001*m.x134*m.x27 +
0.815539264390752*m.x134*m.x28 + 0.0001*m.x134*m.x29 + 0.0001*m.x134*m.x30 + 0.0001*m.x134*m.x31
+ 0.0001*m.x134*m.x32 + 0.0001*m.x134*m.x33 + 0.0001*m.x134*m.x34 + 0.0001*m.x134*m.x35 + 0.0001
*m.x134*m.x36 + 0.0001*m.x134*m.x37 + 0.0001*m.x134*m.x38 + 0.0001*m.x134*m.x39 +
2.94634320050838*m.x134*m.x40 + 0.0001*m.x134*m.x41 + 0.0001*m.x134*m.x42 + 0.0001*m.x134*m.x43
+ 0.0001*m.x134*m.x44 + 0.0001*m.x134*m.x45 + 0.0001*m.x134*m.x46 + 0.0001*m.x134*m.x47 + 0.0001
*m.x134*m.x48 + 0.0001*m.x134*m.x49 + 0.0001*m.x134*m.x50 + 0.0001*m.x134*m.x51 + 0.0001*m.x134*
m.x52 + 0.0001*m.x134*m.x53 + 0.0001*m.x134*m.x54 + 0.0001*m.x134*m.x55 + 0.0001*m.x134*m.x56 +
0.0001*m.x134*m.x57 + 0.0001*m.x134*m.x58 + 0.0001*m.x134*m.x59 + 0.0001*m.x134*m.x60 + 0.0001*
m.x134*m.x61 + 0.0001*m.x134*m.x62 + 0.0001*m.x134*m.x63 + 0.0001*m.x134*m.x64 + 0.0001*m.x134*
m.x65 + 0.0001*m.x134*m.x66 + 0.0001*m.x134*m.x67 + 0.0001*m.x134*m.x68 + 0.0001*m.x134*m.x69 +
0.0001*m.x134*m.x70 + 0.0001*m.x134*m.x71 + 0.0001*m.x134*m.x72 + 0.0001*m.x134*m.x73 + 0.0001*
m.x134*m.x74 + 0.0001*m.x134*m.x75 + 0.0001*m.x134*m.x76 + 0.0001*m.x134*m.x77 + 0.0001*m.x134*
m.x78 + 0.0001*m.x134*m.x79 + 0.0001*m.x134*m.x80 + 0.0001*m.x134*m.x81 + 0.0001*m.x134*m.x82 +
0.0001*m.x134*m.x83 + 0.0001*m.x134*m.x84 + 0.0001*m.x134*m.x85 + 0.0001*m.x134*m.x86 + 0.0001*
m.x134*m.x87 + 0.0001*m.x134*m.x88 + 0.0001*m.x134*m.x89 + 0.0001*m.x134*m.x90 + 0.0001*m.x134*
m.x91 + 0.0001*m.x134*m.x92 + 0.0001*m.x134*m.x93 + 0.0001*m.x134*m.x94 + 0.0001*m.x134*m.x95 +
0.0001*m.x134*m.x96 + 1.32511560093607*m.x134*m.x97 + 0.0001*m.x134*m.x98 + 0.0001*m.x134*m.x99
+ 0.0001*m.x134*m.x100 + 0.0001*m.x134*m.x101 + 0.0001*m.x134*m.x102 + 0.0001*m.x134*m.x103 +
0.0001*m.x134*m.x104 + 0.0001*m.x134*m.x105 + 0.0001*m.x134*m.x106 + 0.0001*m.x134*m.x107 +
0.0001*m.x134*m.x108 + 0.0001*m.x134*m.x109 + 0.0001*m.x134*m.x110 + 0.0001*m.x134*m.x111 +
0.0001*m.x134*m.x112 + 0.0001*m.x134*m.x113 + 0.0001*m.x134*m.x114 + 0.0001*m.x134*m.x115 +
0.0001*m.x134*m.x116 + 0.0001*m.x134*m.x117 + 0.0001*m.x134*m.x118 + 0.0001*m.x134*m.x119 +
0.0001*m.x134*m.x120 + 0.0001*m.x134*m.x121 + 0.0001*m.x134*m.x122 + 0.0001*m.x134*m.x123 +
0.0001*m.x134*m.x124 + 0.0001*m.x134*m.x125 + 0.0001*m.x134*m.x126 + 0.0001*m.x134*m.x127 +
0.0001*m.x134*m.x128 + 0.0001*m.x134*m.x129 + 0.0001*m.x134*m.x130 + 0.0001*m.x134*m.x131 +
0.0001*m.x134*m.x132 + 0.0001*m.x134*m.x133 + 1.73139085475637*m.x134**2 + 0.0001*m.x134*m.x135
+ 0.0001*m.x134*m.x136 + 0.0001*m.x134*m.x137 + 0.0001*m.x134*m.x138 + 0.0001*m.x134*m.x139 +
0.0001*m.x134*m.x140 + 0.0001*m.x134*m.x141 + 0.0001*m.x134*m.x142 + 0.0001*m.x134*m.x143 +
0.0001*m.x134*m.x144 + 0.0001*m.x134*m.x145 + 0.0001*m.x134*m.x146 + 0.0001*m.x134*m.x147 +
0.0001*m.x134*m.x148 + 0.0001*m.x134*m.x149 + 0.0001*m.x134*m.x150 + 0.0001*m.x134*m.x151 +
0.0001*m.x134*m.x152 + 0.0001*m.x134*m.x153 + 0.0001*m.x134*m.x154 + 0.0001*m.x134*m.x155 +
0.0001*m.x134*m.x156 + 0.0001*m.x134*m.x157 + 0.0001*m.x134*m.x158 + 0.0001*m.x134*m.x159 +
0.0001*m.x134*m.x160 + 0.0001*m.x134*m.x161 + 0.0001*m.x134*m.x162 + 0.0001*m.x134*m.x163 +
0.0001*m.x134*m.x164 + 0.0001*m.x134*m.x165 + 0.0001*m.x134*m.x166 + 0.0001*m.x134*m.x167 +
0.0001*m.x134*m.x168 + 0.0001*m.x134*m.x169 + 0.0001*m.x134*m.x170 + 0.0001*m.x134*m.x171 +
0.0001*m.x134*m.x172 + 0.0001*m.x134*m.x173 + 0.0001*m.x134*m.x174 + 0.0001*m.x134*m.x175 +
0.0001*m.x134*m.x176 + 0.0001*m.x134*m.x177 + 0.0001*m.x134*m.x178 + 0.0001*m.x134*m.x179 +
0.0001*m.x134*m.x180 + 0.0001*m.x134*m.x181 + 0.0001*m.x134*m.x182 + 0.0001*m.x134*m.x183 +
0.0001*m.x134*m.x184 + 0.0001*m.x134*m.x185 + 0.0001*m.x135*m.x1 + 0.0001*m.x135*m.x2 + 0.0001*
m.x135*m.x3 + 0.0001*m.x135*m.x4 + 0.0001*m.x135*m.x5 + 3.80077230205016*m.x135*m.x6 + 0.0001*
m.x135*m.x7 + 0.0001*m.x135*m.x8 + 0.0001*m.x135*m.x9 + 0.0001*m.x135*m.x10 + 0.0001*m.x135*m.x11
+ 0.0001*m.x135*m.x12 + 0.0001*m.x135*m.x13 + 0.0001*m.x135*m.x14 + 0.0001*m.x135*m.x15 + 0.0001
*m.x135*m.x16 + 0.0001*m.x135*m.x17 + 3.03300046678543*m.x135*m.x18 + 0.0001*m.x135*m.x19 +
0.0001*m.x135*m.x20 + 0.0001*m.x135*m.x21 + 0.0001*m.x135*m.x22 + 0.0001*m.x135*m.x23 + 0.0001*
m.x135*m.x24 + 0.0001*m.x135*m.x25 + 0.0001*m.x135*m.x26 + 0.0001*m.x135*m.x27 + 0.0001*m.x135*
m.x28 + 0.84527694313714*m.x135*m.x29 + 0.0001*m.x135*m.x30 + 0.0001*m.x135*m.x31 + 0.0001*m.x135
*m.x32 + 0.0001*m.x135*m.x33 + 0.0001*m.x135*m.x34 + 0.0001*m.x135*m.x35 + 0.0001*m.x135*m.x36 +
0.0001*m.x135*m.x37 + 0.0001*m.x135*m.x38 + 0.0001*m.x135*m.x39 + 0.0001*m.x135*m.x40 +
2.99630448617448*m.x135*m.x41 + 0.0001*m.x135*m.x42 + 0.0001*m.x135*m.x43 + 0.0001*m.x135*m.x44
+ 0.0001*m.x135*m.x45 + 0.0001*m.x135*m.x46 + 0.0001*m.x135*m.x47 + 0.0001*m.x135*m.x48 + 0.0001
*m.x135*m.x49 + 0.0001*m.x135*m.x50 + 0.0001*m.x135*m.x51 + 0.0001*m.x135*m.x52 + 0.0001*m.x135*
m.x53 + 0.0001*m.x135*m.x54 + 0.0001*m.x135*m.x55 + 0.0001*m.x135*m.x56 + 0.0001*m.x135*m.x57 +
0.0001*m.x135*m.x58 + 0.0001*m.x135*m.x59 + 0.0001*m.x135*m.x60 + 0.0001*m.x135*m.x61 + 0.0001*
m.x135*m.x62 + 0.0001*m.x135*m.x63 + 0.0001*m.x135*m.x64 + 0.0001*m.x135*m.x65 + 0.0001*m.x135*
m.x66 + 0.0001*m.x135*m.x67 + 0.0001*m.x135*m.x68 + 0.0001*m.x135*m.x69 + 0.0001*m.x135*m.x70 +
0.0001*m.x135*m.x71 + 0.0001*m.x135*m.x72 + 0.0001*m.x135*m.x73 + 0.0001*m.x135*m.x74 + 0.0001*
m.x135*m.x75 + 0.0001*m.x135*m.x76 + 0.0001*m.x135*m.x77 + 0.0001*m.x135*m.x78 + 0.0001*m.x135*
m.x79 + 0.0001*m.x135*m.x80 + 0.0001*m.x135*m.x81 + 0.0001*m.x135*m.x82 + 0.0001*m.x135*m.x83 +
0.0001*m.x135*m.x84 + 0.0001*m.x135*m.x85 + 0.0001*m.x135*m.x86 + 0.0001*m.x135*m.x87 + 0.0001*
m.x135*m.x88 + 0.0001*m.x135*m.x89 + 0.0001*m.x135*m.x90 + 0.0001*m.x135*m.x91 + 0.0001*m.x135*
m.x92 + 0.0001*m.x135*m.x93 + 0.0001*m.x135*m.x94 + 0.0001*m.x135*m.x95 + 0.0001*m.x135*m.x96 +
0.0001*m.x135*m.x97 + 1.43304340993365*m.x135*m.x98 + 0.0001*m.x135*m.x99 + 0.0001*m.x135*m.x100
+ 0.0001*m.x135*m.x101 + 0.0001*m.x135*m.x102 + 0.0001*m.x135*m.x103 + 0.0001*m.x135*m.x104 +
0.0001*m.x135*m.x105 + 0.0001*m.x135*m.x106 + 0.0001*m.x135*m.x107 + 0.0001*m.x135*m.x108 +
0.0001*m.x135*m.x109 + 0.0001*m.x135*m.x110 + 0.0001*m.x135*m.x111 + 0.0001*m.x135*m.x112 +
0.0001*m.x135*m.x113 + 0.0001*m.x135*m.x114 + 0.0001*m.x135*m.x115 + 0.0001*m.x135*m.x116 +
0.0001*m.x135*m.x117 + 0.0001*m.x135*m.x118 + 0.0001*m.x135*m.x119 + 0.0001*m.x135*m.x120 +
0.0001*m.x135*m.x121 + 0.0001*m.x135*m.x122 + 0.0001*m.x135*m.x123 + 0.0001*m.x135*m.x124 +
0.0001*m.x135*m.x125 + 0.0001*m.x135*m.x126 + 0.0001*m.x135*m.x127 + 0.0001*m.x135*m.x128 +
0.0001*m.x135*m.x129 + 0.0001*m.x135*m.x130 + 0.0001*m.x135*m.x131 + 0.0001*m.x135*m.x132 +
0.0001*m.x135*m.x133 + 0.0001*m.x135*m.x134 + 1.81657116996559*m.x135**2 + 0.0001*m.x135*m.x136
+ 0.0001*m.x135*m.x137 + 0.0001*m.x135*m.x138 + 0.0001*m.x135*m.x139 + 0.0001*m.x135*m.x140 +
0.0001*m.x135*m.x141 + 0.0001*m.x135*m.x142 + 0.0001*m.x135*m.x143 + 0.0001*m.x135*m.x144 +
0.0001*m.x135*m.x145 + 0.0001*m.x135*m.x146 + 0.0001*m.x135*m.x147 + 0.0001*m.x135*m.x148 +
0.0001*m.x135*m.x149 + 0.0001*m.x135*m.x150 + 0.0001*m.x135*m.x151 + 0.0001*m.x135*m.x152 +
0.0001*m.x135*m.x153 + 0.0001*m.x135*m.x154 + 0.0001*m.x135*m.x155 + 0.0001*m.x135*m.x156 +
0.0001*m.x135*m.x157 + 0.0001*m.x135*m.x158 + 0.0001*m.x135*m.x159 + 0.0001*m.x135*m.x160 +
0.0001*m.x135*m.x161 + 0.0001*m.x135*m.x162 + 0.0001*m.x135*m.x163 + 0.0001*m.x135*m.x164 +
0.0001*m.x135*m.x165 + 0.0001*m.x135*m.x166 + 0.0001*m.x135*m.x167 + 0.0001*m.x135*m.x168 +
0.0001*m.x135*m.x169 + 0.0001*m.x135*m.x170 + 0.0001*m.x135*m.x171 + 0.0001*m.x135*m.x172 +
0.0001*m.x135*m.x173 + 0.0001*m.x135*m.x174 + 0.0001*m.x135*m.x175 + 0.0001*m.x135*m.x176 +
0.0001*m.x135*m.x177 + 0.0001*m.x135*m.x178 + 0.0001*m.x135*m.x179 + 0.0001*m.x135*m.x180 +
0.0001*m.x135*m.x181 + 0.0001*m.x135*m.x182 + 0.0001*m.x135*m.x183 + 0.0001*m.x135*m.x184 +
0.0001*m.x135*m.x185 + 0.0001*m.x136*m.x1 + 0.0001*m.x136*m.x2 + 0.0001*m.x136*m.x3 + 0.0001*
m.x136*m.x4 + 0.0001*m.x136*m.x5 + 0.0001*m.x136*m.x6 + 3.87695415522262*m.x136*m.x7 + 0.0001*
m.x136*m.x8 + 0.0001*m.x136*m.x9 + 0.0001*m.x136*m.x10 + 0.0001*m.x136*m.x11 + 0.0001*m.x136*
m.x12 + 0.0001*m.x136*m.x13 + 0.0001*m.x136*m.x14 + 0.0001*m.x136*m.x15 + 0.0001*m.x136*m.x16 +
0.0001*m.x136*m.x17 + 0.0001*m.x136*m.x18 + 3.15673633542148*m.x136*m.x19 + 0.0001*m.x136*m.x20
+ 0.0001*m.x136*m.x21 + 0.0001*m.x136*m.x22 + 0.0001*m.x136*m.x23 + 0.0001*m.x136*m.x24 + 0.0001
*m.x136*m.x25 + 0.0001*m.x136*m.x26 + 0.0001*m.x136*m.x27 + 0.0001*m.x136*m.x28 + 0.0001*m.x136*
m.x29 + 0.735363248013873*m.x136*m.x30 + 0.0001*m.x136*m.x31 + 0.0001*m.x136*m.x32 + 0.0001*
m.x136*m.x33 + 0.0001*m.x136*m.x34 + 0.0001*m.x136*m.x35 + 0.0001*m.x136*m.x36 + 0.0001*m.x136*
m.x37 + 0.0001*m.x136*m.x38 + 0.0001*m.x136*m.x39 + 0.0001*m.x136*m.x40 + 0.0001*m.x136*m.x41 +
3.0433224117282*m.x136*m.x42 + 0.0001*m.x136*m.x43 + 0.0001*m.x136*m.x44 + 0.0001*m.x136*m.x45 +
0.0001*m.x136*m.x46 + 0.0001*m.x136*m.x47 + 0.0001*m.x136*m.x48 + 0.0001*m.x136*m.x49 + 0.0001*
m.x136*m.x50 + 0.0001*m.x136*m.x51 + 0.0001*m.x136*m.x52 + 0.0001*m.x136*m.x53 + 0.0001*m.x136*
m.x54 + 0.0001*m.x136*m.x55 + 0.0001*m.x136*m.x56 + 0.0001*m.x136*m.x57 + 0.0001*m.x136*m.x58 +
0.0001*m.x136*m.x59 + 0.0001*m.x136*m.x60 + 0.0001*m.x136*m.x61 + 0.0001*m.x136*m.x62 + 0.0001*
m.x136*m.x63 + 0.0001*m.x136*m.x64 + 0.0001*m.x136*m.x65 + 0.0001*m.x136*m.x66 + 0.0001*m.x136*
m.x67 + 0.0001*m.x136*m.x68 + 0.0001*m.x136*m.x69 + 0.0001*m.x136*m.x70 + 0.0001*m.x136*m.x71 +
0.0001*m.x136*m.x72 + 0.0001*m.x136*m.x73 + 0.0001*m.x136*m.x74 + 0.0001*m.x136*m.x75 + 0.0001*
m.x136*m.x76 + 0.0001*m.x136*m.x77 + 0.0001*m.x136*m.x78 + 0.0001*m.x136*m.x79 + 0.0001*m.x136*
m.x80 + 0.0001*m.x136*m.x81 + 0.0001*m.x136*m.x82 + 0.0001*m.x136*m.x83 + 0.0001*m.x136*m.x84 +
0.0001*m.x136*m.x85 + 0.0001*m.x136*m.x86 + 0.0001*m.x136*m.x87 + 0.0001*m.x136*m.x88 + 0.0001*
m.x136*m.x89 + 0.0001*m.x136*m.x90 + 0.0001*m.x136*m.x91 + 0.0001*m.x136*m.x92 + 0.0001*m.x136*
m.x93 + 0.0001*m.x136*m.x94 + 0.0001*m.x136*m.x95 + 0.0001*m.x136*m.x96 + 0.0001*m.x136*m.x97 +
0.0001*m.x136*m.x98 + 0.0001*m.x136*m.x99 + 0.0001*m.x136*m.x100 + 0.0001*m.x136*m.x101 + 0.0001*
m.x136*m.x102 + 0.0001*m.x136*m.x103 + 0.0001*m.x136*m.x104 + 0.0001*m.x136*m.x105 + 0.0001*
m.x136*m.x106 + 0.0001*m.x136*m.x107 + 0.0001*m.x136*m.x108 + 0.0001*m.x136*m.x109 + 0.0001*
m.x136*m.x110 + 0.0001*m.x136*m.x111 + 0.0001*m.x136*m.x112 + 0.0001*m.x136*m.x113 + 0.0001*
m.x136*m.x114 + 0.0001*m.x136*m.x115 + 0.0001*m.x136*m.x116 + 0.0001*m.x136*m.x117 + 0.0001*
m.x136*m.x118 + 0.0001*m.x136*m.x119 + 0.0001*m.x136*m.x120 + 0.0001*m.x136*m.x121 + 0.0001*
m.x136*m.x122 + 0.0001*m.x136*m.x123 + 0.0001*m.x136*m.x124 + 0.0001*m.x136*m.x125 + 0.0001*
m.x136*m.x126 + 0.0001*m.x136*m.x127 + 0.0001*m.x136*m.x128 + 0.0001*m.x136*m.x129 + 0.0001*
m.x136*m.x130 + 0.0001*m.x136*m.x131 + 0.0001*m.x136*m.x132 + 0.0001*m.x136*m.x133 + 0.0001*
m.x136*m.x134 + 0.0001*m.x136*m.x135 + 1.65089628628065*m.x136**2 + 0.0001*m.x136*m.x137 + 0.0001
*m.x136*m.x138 + 0.0001*m.x136*m.x139 + 0.0001*m.x136*m.x140 + 0.0001*m.x136*m.x141 + 0.0001*
m.x136*m.x142 + 0.0001*m.x136*m.x143 + 0.0001*m.x136*m.x144 + 0.0001*m.x136*m.x145 + 0.0001*
m.x136*m.x146 + 0.0001*m.x136*m.x147 + 0.0001*m.x136*m.x148 + 0.0001*m.x136*m.x149 + 0.0001*
m.x136*m.x150 + 0.0001*m.x136*m.x151 + 0.0001*m.x136*m.x152 + 0.0001*m.x136*m.x153 + 0.0001*
m.x136*m.x154 + 0.0001*m.x136*m.x155 + 0.0001*m.x136*m.x156 + 0.0001*m.x136*m.x157 + 0.0001*
m.x136*m.x158 + 0.0001*m.x136*m.x159 + 0.0001*m.x136*m.x160 + 0.0001*m.x136*m.x161 + 0.0001*
m.x136*m.x162 + 0.0001*m.x136*m.x163 + 0.0001*m.x136*m.x164 + 0.0001*m.x136*m.x165 + 0.0001*
m.x136*m.x166 + 0.0001*m.x136*m.x167 + 0.0001*m.x136*m.x168 + 0.0001*m.x136*m.x169 + 0.0001*
m.x136*m.x170 + 0.0001*m.x136*m.x171 + 0.0001*m.x136*m.x172 + 0.0001*m.x136*m.x173 + 0.0001*
m.x136*m.x174 + 0.0001*m.x136*m.x175 + 0.0001*m.x136*m.x176 + 0.0001*m.x136*m.x177 + 0.0001*
m.x136*m.x178 + 0.0001*m.x136*m.x179 + 0.0001*m.x136*m.x180 + 0.0001*m.x136*m.x181 + 0.0001*
m.x136*m.x182 + 0.0001*m.x136*m.x183 + 0.0001*m.x136*m.x184 + 0.0001*m.x136*m.x185 + 0.0001*
m.x137*m.x1 + 0.0001*m.x137*m.x2 + 0.0001*m.x137*m.x3 + 0.0001*m.x137*m.x4 + 0.0001*m.x137*m.x5
+ 0.0001*m.x137*m.x6 + 0.0001*m.x137*m.x7 + 3.89718096986595*m.x137*m.x8 + 0.0001*m.x137*m.x9 +
0.0001*m.x137*m.x10 + 0.0001*m.x137*m.x11 + 0.0001*m.x137*m.x12 + 0.0001*m.x137*m.x13 + 0.0001*
m.x137*m.x14 + 0.0001*m.x137*m.x15 + 0.0001*m.x137*m.x16 + 0.0001*m.x137*m.x17 + 0.0001*m.x137*
m.x18 + 0.0001*m.x137*m.x19 + 3.50472792610672*m.x137*m.x20 + 0.0001*m.x137*m.x21 + 0.0001*m.x137
*m.x22 + 0.0001*m.x137*m.x23 + 0.0001*m.x137*m.x24 + 0.0001*m.x137*m.x25 + 0.0001*m.x137*m.x26 +
0.0001*m.x137*m.x27 + 0.0001*m.x137*m.x28 + 0.0001*m.x137*m.x29 + 0.0001*m.x137*m.x30 +
0.923236326862633*m.x137*m.x31 + 0.0001*m.x137*m.x32 + 0.0001*m.x137*m.x33 + 0.0001*m.x137*m.x34
+ 0.0001*m.x137*m.x35 + 0.0001*m.x137*m.x36 + 0.0001*m.x137*m.x37 + 0.0001*m.x137*m.x38 + 0.0001
*m.x137*m.x39 + 0.0001*m.x137*m.x40 + 0.0001*m.x137*m.x41 + 0.0001*m.x137*m.x42 + 3.3788111077122
*m.x137*m.x43 + 0.0001*m.x137*m.x44 + 0.0001*m.x137*m.x45 + 0.0001*m.x137*m.x46 + 0.0001*m.x137*
m.x47 + 0.0001*m.x137*m.x48 + 0.0001*m.x137*m.x49 + 0.0001*m.x137*m.x50 + 0.0001*m.x137*m.x51 +
0.0001*m.x137*m.x52 + 0.0001*m.x137*m.x53 + 0.0001*m.x137*m.x54 + 0.0001*m.x137*m.x55 + 0.0001*
m.x137*m.x56 + 0.0001*m.x137*m.x57 + 0.0001*m.x137*m.x58 + 0.0001*m.x137*m.x59 + 0.0001*m.x137*
m.x60 + 0.0001*m.x137*m.x61 + 0.0001*m.x137*m.x62 + 0.0001*m.x137*m.x63 + 0.0001*m.x137*m.x64 +
0.0001*m.x137*m.x65 + 0.0001*m.x137*m.x66 + 0.0001*m.x137*m.x67 + 0.0001*m.x137*m.x68 + 0.0001*
m.x137*m.x69 + 0.0001*m.x137*m.x70 + 0.0001*m.x137*m.x71 + 0.0001*m.x137*m.x72 + 0.0001*m.x137*
m.x73 + 0.0001*m.x137*m.x74 + 0.0001*m.x137*m.x75 + 0.0001*m.x137*m.x76 + 0.0001*m.x137*m.x77 +
0.0001*m.x137*m.x78 + 0.0001*m.x137*m.x79 + 0.0001*m.x137*m.x80 + 0.0001*m.x137*m.x81 + 0.0001*
m.x137*m.x82 + 0.0001*m.x137*m.x83 + 0.0001*m.x137*m.x84 + 0.0001*m.x137*m.x85 + 0.0001*m.x137*
m.x86 + 0.0001*m.x137*m.x87 + 0.0001*m.x137*m.x88 + 0.0001*m.x137*m.x89 + 0.0001*m.x137*m.x90 +
0.0001*m.x137*m.x91 + 0.0001*m.x137*m.x92 + 0.0001*m.x137*m.x93 + 0.0001*m.x137*m.x94 + 0.0001*
m.x137*m.x95 + 0.0001*m.x137*m.x96 + 0.0001*m.x137*m.x97 + 0.0001*m.x137*m.x98 + 1.4635914120443*
m.x137*m.x99 + 0.0001*m.x137*m.x100 + 0.0001*m.x137*m.x101 + 0.0001*m.x137*m.x102 + 0.0001*m.x137
*m.x103 + 0.0001*m.x137*m.x104 + 0.0001*m.x137*m.x105 + 0.0001*m.x137*m.x106 + 0.0001*m.x137*
m.x107 + 0.0001*m.x137*m.x108 + 0.0001*m.x137*m.x109 + 0.0001*m.x137*m.x110 + 0.0001*m.x137*
m.x111 + 0.0001*m.x137*m.x112 + 0.0001*m.x137*m.x113 + 0.0001*m.x137*m.x114 + 0.0001*m.x137*
m.x115 + 0.0001*m.x137*m.x116 + 0.0001*m.x137*m.x117 + 0.0001*m.x137*m.x118 + 0.0001*m.x137*
m.x119 + 0.0001*m.x137*m.x120 + 0.0001*m.x137*m.x121 + 0.0001*m.x137*m.x122 + 0.0001*m.x137*
m.x123 + 0.0001*m.x137*m.x124 + 0.0001*m.x137*m.x125 + 0.0001*m.x137*m.x126 + 0.0001*m.x137*
m.x127 + 0.0001*m.x137*m.x128 + 0.0001*m.x137*m.x129 + 0.0001*m.x137*m.x130 + 0.0001*m.x137*
m.x131 + 0.0001*m.x137*m.x132 + 0.0001*m.x137*m.x133 + 0.0001*m.x137*m.x134 + 0.0001*m.x137*
m.x135 + 0.0001*m.x137*m.x136 + 2.07270464089841*m.x137**2 + 0.0001*m.x137*m.x138 + 0.0001*m.x137
*m.x139 + 0.0001*m.x137*m.x140 + 0.0001*m.x137*m.x141 + 0.0001*m.x137*m.x142 + 0.0001*m.x137*
m.x143 + 0.0001*m.x137*m.x144 + 0.0001*m.x137*m.x145 + 0.0001*m.x137*m.x146 + 0.0001*m.x137*
m.x147 + 0.0001*m.x137*m.x148 + 0.0001*m.x137*m.x149 + 0.0001*m.x137*m.x150 + 0.0001*m.x137*
m.x151 + 0.0001*m.x137*m.x152 + 0.0001*m.x137*m.x153 + 0.0001*m.x137*m.x154 + 0.0001*m.x137*
m.x155 + 0.0001*m.x137*m.x156 + 0.0001*m.x137*m.x157 + 0.0001*m.x137*m.x158 + 0.0001*m.x137*
m.x159 + 0.0001*m.x137*m.x160 + 0.0001*m.x137*m.x161 + 0.0001*m.x137*m.x162 + 0.0001*m.x137*
m.x163 + 0.0001*m.x137*m.x164 + 0.0001*m.x137*m.x165 + 0.0001*m.x137*m.x166 + 0.0001*m.x137*
m.x167 + 0.0001*m.x137*m.x168 + 0.0001*m.x137*m.x169 + 0.0001*m.x137*m.x170 + 0.0001*m.x137*
m.x171 + 0.0001*m.x137*m.x172 + 0.0001*m.x137*m.x173 + 0.0001*m.x137*m.x174 + 0.0001*m.x137*
m.x175 + 0.0001*m.x137*m.x176 + 0.0001*m.x137*m.x177 + 0.0001*m.x137*m.x178 + 0.0001*m.x137*
m.x179 + 0.0001*m.x137*m.x180 + 0.0001*m.x137*m.x181 + 0.0001*m.x137*m.x182 + 0.0001*m.x137*
m.x183 + 0.0001*m.x137*m.x184 + 0.0001*m.x137*m.x185 + 0.0001*m.x138*m.x1 + 0.0001*m.x138*m.x2 +
0.0001*m.x138*m.x3 + 0.0001*m.x138*m.x4 + 0.0001*m.x138*m.x5 + 0.0001*m.x138*m.x6 + 0.0001*m.x138
*m.x7 + 0.0001*m.x138*m.x8 + 3.92192189312951*m.x138*m.x9 + 0.0001*m.x138*m.x10 + 0.0001*m.x138*
m.x11 + 0.0001*m.x138*m.x12 + 0.0001*m.x138*m.x13 + 0.0001*m.x138*m.x14 + 0.0001*m.x138*m.x15 +
0.0001*m.x138*m.x16 + 0.0001*m.x138*m.x17 + 0.0001*m.x138*m.x18 + 0.0001*m.x138*m.x19 + 0.0001*
m.x138*m.x20 + 3.52697733053469*m.x138*m.x21 + 0.0001*m.x138*m.x22 + 0.0001*m.x138*m.x23 + 0.0001
*m.x138*m.x24 + 0.0001*m.x138*m.x25 + 0.0001*m.x138*m.x26 + 0.0001*m.x138*m.x27 + 0.0001*m.x138*
m.x28 + 0.0001*m.x138*m.x29 + 0.0001*m.x138*m.x30 + 0.0001*m.x138*m.x31 + 0.969443186220753*
m.x138*m.x32 + 0.0001*m.x138*m.x33 + 0.0001*m.x138*m.x34 + 0.0001*m.x138*m.x35 + 0.0001*m.x138*
m.x36 + 0.0001*m.x138*m.x37 + 0.0001*m.x138*m.x38 + 0.0001*m.x138*m.x39 + 0.0001*m.x138*m.x40 +
0.0001*m.x138*m.x41 + 0.0001*m.x138*m.x42 + 0.0001*m.x138*m.x43 + 3.40026111937272*m.x138*m.x44
+ 0.0001*m.x138*m.x45 + 0.0001*m.x138*m.x46 + 0.0001*m.x138*m.x47 + 0.0001*m.x138*m.x48 + 0.0001
*m.x138*m.x49 + 0.0001*m.x138*m.x50 + 0.0001*m.x138*m.x51 + 0.0001*m.x138*m.x52 + 0.0001*m.x138*
m.x53 + 0.0001*m.x138*m.x54 + 0.0001*m.x138*m.x55 + 0.0001*m.x138*m.x56 + 0.0001*m.x138*m.x57 +
0.0001*m.x138*m.x58 + 0.0001*m.x138*m.x59 + 0.0001*m.x138*m.x60 + 0.0001*m.x138*m.x61 + 0.0001*
m.x138*m.x62 + 0.0001*m.x138*m.x63 + 0.0001*m.x138*m.x64 + 0.0001*m.x138*m.x65 + 0.0001*m.x138*
m.x66 + 0.0001*m.x138*m.x67 + 0.0001*m.x138*m.x68 + 0.0001*m.x138*m.x69 + 0.0001*m.x138*m.x70 +
0.0001*m.x138*m.x71 + 0.0001*m.x138*m.x72 + 0.0001*m.x138*m.x73 + 0.0001*m.x138*m.x74 + 0.0001*
m.x138*m.x75 + 0.0001*m.x138*m.x76 + 0.0001*m.x138*m.x77 + 0.0001*m.x138*m.x78 + 0.0001*m.x138*
m.x79 + 0.0001*m.x138*m.x80 + 0.0001*m.x138*m.x81 + 0.0001*m.x138*m.x82 + 0.0001*m.x138*m.x83 +
0.0001*m.x138*m.x84 + 0.0001*m.x138*m.x85 + 0.0001*m.x138*m.x86 + 0.0001*m.x138*m.x87 + 0.0001*
m.x138*m.x88 + 0.0001*m.x138*m.x89 + 0.0001*m.x138*m.x90 + 0.0001*m.x138*m.x91 + 0.0001*m.x138*
m.x92 + 0.0001*m.x138*m.x93 + 0.0001*m.x138*m.x94 + 0.0001*m.x138*m.x95 + 0.0001*m.x138*m.x96 +
0.0001*m.x138*m.x97 + 0.0001*m.x138*m.x98 + 0.0001*m.x138*m.x99 + 1.47288250170917*m.x138*m.x100
+ 0.0001*m.x138*m.x101 + 0.0001*m.x138*m.x102 + 0.0001*m.x138*m.x103 + 0.0001*m.x138*m.x104 +
0.0001*m.x138*m.x105 + 0.0001*m.x138*m.x106 + 0.0001*m.x138*m.x107 + 0.0001*m.x138*m.x108 +
0.0001*m.x138*m.x109 + 0.0001*m.x138*m.x110 + 0.0001*m.x138*m.x111 + 0.0001*m.x138*m.x112 +
0.0001*m.x138*m.x113 + 0.0001*m.x138*m.x114 + 0.0001*m.x138*m.x115 + 0.0001*m.x138*m.x116 +
0.0001*m.x138*m.x117 + 0.0001*m.x138*m.x118 + 0.0001*m.x138*m.x119 + 0.0001*m.x138*m.x120 +
0.0001*m.x138*m.x121 + 0.0001*m.x138*m.x122 + 0.0001*m.x138*m.x123 + 0.0001*m.x138*m.x124 +
0.0001*m.x138*m.x125 + 0.0001*m.x138*m.x126 + 0.0001*m.x138*m.x127 + 0.0001*m.x138*m.x128 +
0.0001*m.x138*m.x129 + 0.0001*m.x138*m.x130 + 0.0001*m.x138*m.x131 + 0.0001*m.x138*m.x132 +
0.0001*m.x138*m.x133 + 0.0001*m.x138*m.x134 + 0.0001*m.x138*m.x135 + 0.0001*m.x138*m.x136 +
0.0001*m.x138*m.x137 + 2.0991043613322*m.x138**2 + 0.0001*m.x138*m.x139 + 0.0001*m.x138*m.x140 +
0.0001*m.x138*m.x141 + 0.0001*m.x138*m.x142 + 0.0001*m.x138*m.x143 + 0.0001*m.x138*m.x144 +
0.0001*m.x138*m.x145 + 0.0001*m.x138*m.x146 + 0.0001*m.x138*m.x147 + 0.0001*m.x138*m.x148 +
0.0001*m.x138*m.x149 + 0.0001*m.x138*m.x150 + 0.0001*m.x138*m.x151 + 0.0001*m.x138*m.x152 +
0.0001*m.x138*m.x153 + 0.0001*m.x138*m.x154 + 0.0001*m.x138*m.x155 + 0.0001*m.x138*m.x156 +
0.0001*m.x138*m.x157 + 0.0001*m.x138*m.x158 + 0.0001*m.x138*m.x159 + 0.0001*m.x138*m.x160 +
0.0001*m.x138*m.x161 + 0.0001*m.x138*m.x162 + 0.0001*m.x138*m.x163 + 0.0001*m.x138*m.x164 +
0.0001*m.x138*m.x165 + 0.0001*m.x138*m.x166 + 0.0001*m.x138*m.x167 + 0.0001*m.x138*m.x168 +
0.0001*m.x138*m.x169 + 0.0001*m.x138*m.x170 + 0.0001*m.x138*m.x171 + 0.0001*m.x138*m.x172 +
0.0001*m.x138*m.x173 + 0.0001*m.x138*m.x174 + 0.0001*m.x138*m.x175 + 0.0001*m.x138*m.x176 +
0.0001*m.x138*m.x177 + 0.0001*m.x138*m.x178 + 0.0001*m.x138*m.x179 + 0.0001*m.x138*m.x180 +
0.0001*m.x138*m.x181 + 0.0001*m.x138*m.x182 + 0.0001*m.x138*m.x183 + 0.0001*m.x138*m.x184 +
0.0001*m.x138*m.x185 + 0.0001*m.x139*m.x1 + 0.0001*m.x139*m.x2 + 0.0001*m.x139*m.x3 + 0.0001*
m.x139*m.x4 + 0.0001*m.x139*m.x5 + 0.0001*m.x139*m.x6 + 0.0001*m.x139*m.x7 + 0.0001*m.x139*m.x8
+ 0.0001*m.x139*m.x9 + 4.04894461999615*m.x139*m.x10 + 0.0001*m.x139*m.x11 + 0.0001*m.x139*m.x12
+ 0.0001*m.x139*m.x13 + 0.0001*m.x139*m.x14 + 0.0001*m.x139*m.x15 + 0.0001*m.x139*m.x16 + 0.0001
*m.x139*m.x17 + 0.0001*m.x139*m.x18 + 0.0001*m.x139*m.x19 + 0.0001*m.x139*m.x20 + 0.0001*m.x139*
m.x21 + 3.33930736808*m.x139*m.x22 + 0.0001*m.x139*m.x23 + 0.0001*m.x139*m.x24 + 0.0001*m.x139*
m.x25 + 0.0001*m.x139*m.x26 + 0.0001*m.x139*m.x27 + 0.0001*m.x139*m.x28 + 0.0001*m.x139*m.x29 +
0.0001*m.x139*m.x30 + 0.0001*m.x139*m.x31 + 0.0001*m.x139*m.x32 + 1.01807942895716*m.x139*m.x33
+ 0.0001*m.x139*m.x34 + 0.0001*m.x139*m.x35 + 0.0001*m.x139*m.x36 + 0.0001*m.x139*m.x37 + 0.0001
*m.x139*m.x38 + 0.0001*m.x139*m.x39 + 0.0001*m.x139*m.x40 + 0.0001*m.x139*m.x41 + 0.0001*m.x139*
m.x42 + 0.0001*m.x139*m.x43 + 0.0001*m.x139*m.x44 + 3.55308816066067*m.x139*m.x45 + 0.0001*m.x139
*m.x46 + 0.0001*m.x139*m.x47 + 0.0001*m.x139*m.x48 + 0.0001*m.x139*m.x49 + 0.0001*m.x139*m.x50 +
0.0001*m.x139*m.x51 + 0.0001*m.x139*m.x52 + 0.0001*m.x139*m.x53 + 0.0001*m.x139*m.x54 + 0.0001*
m.x139*m.x55 + 0.0001*m.x139*m.x56 + 0.0001*m.x139*m.x57 + 0.0001*m.x139*m.x58 +
0.552520159022577*m.x139*m.x59 + 0.0001*m.x139*m.x60 + 0.0001*m.x139*m.x61 + 0.0001*m.x139*m.x62
+ 0.0001*m.x139*m.x63 + 0.0001*m.x139*m.x64 + 0.0001*m.x139*m.x65 + 0.0001*m.x139*m.x66 + 0.0001
*m.x139*m.x67 + 0.0001*m.x139*m.x68 + 0.0001*m.x139*m.x69 + 0.0001*m.x139*m.x70 + 0.0001*m.x139*
m.x71 + 0.0001*m.x139*m.x72 + 0.0001*m.x139*m.x73 + 0.0001*m.x139*m.x74 + 0.0001*m.x139*m.x75 +
0.0001*m.x139*m.x76 + 0.0001*m.x139*m.x77 + 0.0001*m.x139*m.x78 + 0.0001*m.x139*m.x79 + 0.0001*
m.x139*m.x80 + 0.0001*m.x139*m.x81 + 0.0001*m.x139*m.x82 + 0.0001*m.x139*m.x83 + 0.0001*m.x139*
m.x84 + 0.0001*m.x139*m.x85 + 0.0001*m.x139*m.x86 + 0.0001*m.x139*m.x87 + 0.0001*m.x139*m.x88 +
0.0001*m.x139*m.x89 + 0.0001*m.x139*m.x90 + 0.0001*m.x139*m.x91 + 0.0001*m.x139*m.x92 + 0.0001*
m.x139*m.x93 + 0.0001*m.x139*m.x94 + 0.0001*m.x139*m.x95 + 0.0001*m.x139*m.x96 + 0.0001*m.x139*
m.x97 + 0.0001*m.x139*m.x98 + 0.0001*m.x139*m.x99 + 0.0001*m.x139*m.x100 + 1.40576631319842*
m.x139*m.x101 + 0.0001*m.x139*m.x102 + 0.0001*m.x139*m.x103 + 0.0001*m.x139*m.x104 + 0.0001*
m.x139*m.x105 + 0.0001*m.x139*m.x106 + 0.0001*m.x139*m.x107 + 0.0001*m.x139*m.x108 + 0.0001*
m.x139*m.x109 + 0.0001*m.x139*m.x110 + 0.0001*m.x139*m.x111 + 0.0001*m.x139*m.x112 + 0.0001*
m.x139*m.x113 + 0.0001*m.x139*m.x114 + 0.0001*m.x139*m.x115 + 0.0001*m.x139*m.x116 + 0.0001*
m.x139*m.x117 + 0.0001*m.x139*m.x118 + 0.0001*m.x139*m.x119 + 0.0001*m.x139*m.x120 + 0.0001*
m.x139*m.x121 + 0.0001*m.x139*m.x122 + 0.0001*m.x139*m.x123 + 0.0001*m.x139*m.x124 + 0.0001*
m.x139*m.x125 + 0.0001*m.x139*m.x126 + 0.0001*m.x139*m.x127 + 0.0001*m.x139*m.x128 + 0.0001*
m.x139*m.x129 + 0.0001*m.x139*m.x130 + 0.0001*m.x139*m.x131 + 0.0001*m.x139*m.x132 + 0.0001*
m.x139*m.x133 + 0.0001*m.x139*m.x134 + 0.0001*m.x139*m.x135 + 0.0001*m.x139*m.x136 + 0.0001*
m.x139*m.x137 + 0.0001*m.x139*m.x138 + 2.21319412642794*m.x139**2 + 0.0001*m.x139*m.x140 + 0.0001
*m.x139*m.x141 + 0.0001*m.x139*m.x142 + 0.0001*m.x139*m.x143 + 0.0001*m.x139*m.x144 + 0.0001*
m.x139*m.x145 + 0.0001*m.x139*m.x146 + 0.0001*m.x139*m.x147 + 0.0001*m.x139*m.x148 + 0.0001*
m.x139*m.x149 + 0.0001*m.x139*m.x150 + 0.0001*m.x139*m.x151 + 0.0001*m.x139*m.x152 + 0.0001*
m.x139*m.x153 + 0.0001*m.x139*m.x154 + 0.0001*m.x139*m.x155 + 0.0001*m.x139*m.x156 + 0.0001*
m.x139*m.x157 + 0.0001*m.x139*m.x158 + 0.0001*m.x139*m.x159 + 0.0001*m.x139*m.x160 + 0.0001*
m.x139*m.x161 + 0.0001*m.x139*m.x162 + 0.0001*m.x139*m.x163 + 0.0001*m.x139*m.x164 + 0.0001*
m.x139*m.x165 + 0.0001*m.x139*m.x166 + 0.0001*m.x139*m.x167 + 0.0001*m.x139*m.x168 + 0.0001*
m.x139*m.x169 + 0.0001*m.x139*m.x170 + 0.0001*m.x139*m.x171 + 0.0001*m.x139*m.x172 + 0.0001*
m.x139*m.x173 + 0.0001*m.x139*m.x174 + 0.0001*m.x139*m.x175 + 0.0001*m.x139*m.x176 + 0.0001*
m.x139*m.x177 + 0.0001*m.x139*m.x178 + 0.0001*m.x139*m.x179 + 0.0001*m.x139*m.x180 + 0.0001*
m.x139*m.x181 + 0.0001*m.x139*m.x182 + 0.0001*m.x139*m.x183 + 0.0001*m.x139*m.x184 + 0.0001*
m.x139*m.x185 + 0.0001*m.x140*m.x1 + 0.0001*m.x140*m.x2 + 0.0001*m.x140*m.x3 + 0.0001*m.x140*m.x4
+ 0.0001*m.x140*m.x5 + 0.0001*m.x140*m.x6 + 0.0001*m.x140*m.x7 + 0.0001*m.x140*m.x8 + 0.0001*
m.x140*m.x9 + 0.0001*m.x140*m.x10 + 4.00357255534043*m.x140*m.x11 + 0.0001*m.x140*m.x12 + 0.0001*
m.x140*m.x13 + 0.0001*m.x140*m.x14 + 0.0001*m.x140*m.x15 + 0.0001*m.x140*m.x16 + 0.0001*m.x140*
m.x17 + 0.0001*m.x140*m.x18 + 0.0001*m.x140*m.x19 + 0.0001*m.x140*m.x20 + 0.0001*m.x140*m.x21 +
0.0001*m.x140*m.x22 + 3.22970873986782*m.x140*m.x23 + 0.0001*m.x140*m.x24 + 0.0001*m.x140*m.x25
+ 0.0001*m.x140*m.x26 + 0.0001*m.x140*m.x27 + 0.0001*m.x140*m.x28 + 0.0001*m.x140*m.x29 + 0.0001
*m.x140*m.x30 + 0.0001*m.x140*m.x31 + 0.0001*m.x140*m.x32 + 0.0001*m.x140*m.x33 +
0.988072237295943*m.x140*m.x34 + 0.0001*m.x140*m.x35 + 0.0001*m.x140*m.x36 + 0.0001*m.x140*m.x37
+ 0.0001*m.x140*m.x38 + 0.0001*m.x140*m.x39 + 0.0001*m.x140*m.x40 + 0.0001*m.x140*m.x41 + 0.0001
*m.x140*m.x42 + 0.0001*m.x140*m.x43 + 0.0001*m.x140*m.x44 + 0.0001*m.x140*m.x45 +
3.43647287279779*m.x140*m.x46 + 0.0001*m.x140*m.x47 + 0.0001*m.x140*m.x48 + 0.0001*m.x140*m.x49
+ 0.0001*m.x140*m.x50 + 0.0001*m.x140*m.x51 + 0.0001*m.x140*m.x52 + 0.0001*m.x140*m.x53 + 0.0001
*m.x140*m.x54 + 0.0001*m.x140*m.x55 + 0.0001*m.x140*m.x56 + 0.0001*m.x140*m.x57 + 0.0001*m.x140*
m.x58 + 0.0001*m.x140*m.x59 + 0.0001*m.x140*m.x60 + 0.0001*m.x140*m.x61 + 0.0001*m.x140*m.x62 +
0.0001*m.x140*m.x63 + 0.0001*m.x140*m.x64 + 0.0001*m.x140*m.x65 + 0.0001*m.x140*m.x66 + 0.0001*
m.x140*m.x67 + 0.0001*m.x140*m.x68 + 0.0001*m.x140*m.x69 + 0.0001*m.x140*m.x70 + 0.0001*m.x140*
m.x71 + 0.0001*m.x140*m.x72 + 0.0001*m.x140*m.x73 + 0.0001*m.x140*m.x74 + 0.0001*m.x140*m.x75 +
0.0001*m.x140*m.x76 + 0.0001*m.x140*m.x77 + 0.0001*m.x140*m.x78 + 0.0001*m.x140*m.x79 + 0.0001*
m.x140*m.x80 + 0.0001*m.x140*m.x81 + 0.0001*m.x140*m.x82 + 0.0001*m.x140*m.x83 + 0.0001*m.x140*
m.x84 + 0.0001*m.x140*m.x85 + 0.0001*m.x140*m.x86 + 0.0001*m.x140*m.x87 + 0.0001*m.x140*m.x88 +
0.0001*m.x140*m.x89 + 0.0001*m.x140*m.x90 + 0.0001*m.x140*m.x91 + 0.0001*m.x140*m.x92 + 0.0001*
m.x140*m.x93 + 0.0001*m.x140*m.x94 + 0.0001*m.x140*m.x95 + 0.0001*m.x140*m.x96 + 0.0001*m.x140*
m.x97 + 0.0001*m.x140*m.x98 + 0.0001*m.x140*m.x99 + 0.0001*m.x140*m.x100 + 0.0001*m.x140*m.x101
+ 1.40558683166425*m.x140*m.x102 + 0.0001*m.x140*m.x103 + 0.0001*m.x140*m.x104 + 0.0001*m.x140*
m.x105 + 0.0001*m.x140*m.x106 + 0.0001*m.x140*m.x107 + 0.0001*m.x140*m.x108 + 0.0001*m.x140*
m.x109 + 0.0001*m.x140*m.x110 + 0.0001*m.x140*m.x111 + 0.0001*m.x140*m.x112 + 0.0001*m.x140*
m.x113 + 0.0001*m.x140*m.x114 + 0.0001*m.x140*m.x115 + 0.0001*m.x140*m.x116 + 0.0001*m.x140*
m.x117 + 0.0001*m.x140*m.x118 + 0.0001*m.x140*m.x119 + 0.0001*m.x140*m.x120 + 0.0001*m.x140*
m.x121 + 0.0001*m.x140*m.x122 + 0.0001*m.x140*m.x123 + 0.0001*m.x140*m.x124 + 0.0001*m.x140*
m.x125 + 0.0001*m.x140*m.x126 + 0.0001*m.x140*m.x127 + 0.0001*m.x140*m.x128 + 0.0001*m.x140*
m.x129 + 0.0001*m.x140*m.x130 + 0.0001*m.x140*m.x131 + 0.0001*m.x140*m.x132 + 0.0001*m.x140*
m.x133 + 0.0001*m.x140*m.x134 + 0.0001*m.x140*m.x135 + 0.0001*m.x140*m.x136 + 0.0001*m.x140*
m.x137 + 0.0001*m.x140*m.x138 + 0.0001*m.x140*m.x139 + 2.14795828990021*m.x140**2 + 0.0001*m.x140
*m.x141 + 0.0001*m.x140*m.x142 + 0.0001*m.x140*m.x143 + 0.0001*m.x140*m.x144 + 0.0001*m.x140*
m.x145 + 0.0001*m.x140*m.x146 + 0.0001*m.x140*m.x147 + 0.0001*m.x140*m.x148 + 0.0001*m.x140*
m.x149 + 0.0001*m.x140*m.x150 + 0.0001*m.x140*m.x151 + 0.0001*m.x140*m.x152 + 0.0001*m.x140*
m.x153 + 0.0001*m.x140*m.x154 + 0.0001*m.x140*m.x155 + 0.0001*m.x140*m.x156 + 0.0001*m.x140*
m.x157 + 0.0001*m.x140*m.x158 + 0.0001*m.x140*m.x159 + 0.0001*m.x140*m.x160 + 0.0001*m.x140*
m.x161 + 0.0001*m.x140*m.x162 + 0.0001*m.x140*m.x163 + 0.0001*m.x140*m.x164 + 0.0001*m.x140*
m.x165 + 0.0001*m.x140*m.x166 + 0.0001*m.x140*m.x167 + 0.0001*m.x140*m.x168 + 0.0001*m.x140*
m.x169 + 0.0001*m.x140*m.x170 + 0.0001*m.x140*m.x171 + 0.0001*m.x140*m.x172 + 0.0001*m.x140*
m.x173 + 0.0001*m.x140*m.x174 + 0.0001*m.x140*m.x175 + 0.0001*m.x140*m.x176 + 0.0001*m.x140*
m.x177 + 0.0001*m.x140*m.x178 + 0.0001*m.x140*m.x179 + 0.0001*m.x140*m.x180 + 0.0001*m.x140*
m.x181 + 0.0001*m.x140*m.x182 + 0.0001*m.x140*m.x183 + 0.0001*m.x140*m.x184 + 0.0001*m.x140*
m.x185 + 0.0001*m.x141*m.x1 + 0.0001*m.x141*m.x2 + 0.0001*m.x141*m.x3 + 0.0001*m.x141*m.x4 +
0.0001*m.x141*m.x5 + 0.0001*m.x141*m.x6 + 0.0001*m.x141*m.x7 + 0.0001*m.x141*m.x8 + 0.0001*m.x141
*m.x9 + 0.0001*m.x141*m.x10 + 0.0001*m.x141*m.x11 + 3.99239821446817*m.x141*m.x12 + 0.0001*m.x141
*m.x13 + 0.0001*m.x141*m.x14 + 0.0001*m.x141*m.x15 + 0.0001*m.x141*m.x16 + 0.0001*m.x141*m.x17 +
0.0001*m.x141*m.x18 + 0.0001*m.x141*m.x19 + 0.0001*m.x141*m.x20 + 0.0001*m.x141*m.x21 + 0.0001*
m.x141*m.x22 + 0.0001*m.x141*m.x23 + 3.2206943783493*m.x141*m.x24 + 0.0001*m.x141*m.x25 + 0.0001*
m.x141*m.x26 + 0.0001*m.x141*m.x27 + 0.0001*m.x141*m.x28 + 0.0001*m.x141*m.x29 + 0.0001*m.x141*
m.x30 + 0.0001*m.x141*m.x31 + 0.0001*m.x141*m.x32 + 0.0001*m.x141*m.x33 + 0.0001*m.x141*m.x34 +
0.991883123544148*m.x141*m.x35 + 0.0001*m.x141*m.x36 + 0.0001*m.x141*m.x37 + 0.0001*m.x141*m.x38
+ 0.0001*m.x141*m.x39 + 0.0001*m.x141*m.x40 + 0.0001*m.x141*m.x41 + 0.0001*m.x141*m.x42 + 0.0001
*m.x141*m.x43 + 0.0001*m.x141*m.x44 + 0.0001*m.x141*m.x45 + 0.0001*m.x141*m.x46 +
3.42688139906742*m.x141*m.x47 + 0.0001*m.x141*m.x48 + 0.0001*m.x141*m.x49 + 0.0001*m.x141*m.x50
+ 0.0001*m.x141*m.x51 + 0.0001*m.x141*m.x52 + 0.0001*m.x141*m.x53 + 0.0001*m.x141*m.x54 + 0.0001
*m.x141*m.x55 + 0.0001*m.x141*m.x56 + 0.0001*m.x141*m.x57 + 0.0001*m.x141*m.x58 + 0.0001*m.x141*
m.x59 + 0.0001*m.x141*m.x60 + 0.0001*m.x141*m.x61 + 0.0001*m.x141*m.x62 + 0.0001*m.x141*m.x63 +
0.0001*m.x141*m.x64 + 0.0001*m.x141*m.x65 + 0.0001*m.x141*m.x66 + 0.0001*m.x141*m.x67 + 0.0001*
m.x141*m.x68 + 0.0001*m.x141*m.x69 + 0.0001*m.x141*m.x70 + 0.0001*m.x141*m.x71 + 0.0001*m.x141*
m.x72 + 0.0001*m.x141*m.x73 + 0.0001*m.x141*m.x74 + 0.0001*m.x141*m.x75 + 0.0001*m.x141*m.x76 +
0.0001*m.x141*m.x77 + 0.0001*m.x141*m.x78 + 0.0001*m.x141*m.x79 + 0.0001*m.x141*m.x80 + 0.0001*
m.x141*m.x81 + 0.0001*m.x141*m.x82 + 0.0001*m.x141*m.x83 + 0.0001*m.x141*m.x84 + 0.0001*m.x141*
m.x85 + 0.0001*m.x141*m.x86 + 0.0001*m.x141*m.x87 + 0.0001*m.x141*m.x88 + 0.0001*m.x141*m.x89 +
0.0001*m.x141*m.x90 + 0.0001*m.x141*m.x91 + 0.0001*m.x141*m.x92 + 0.0001*m.x141*m.x93 + 0.0001*
m.x141*m.x94 + 0.0001*m.x141*m.x95 + 0.0001*m.x141*m.x96 + 0.0001*m.x141*m.x97 + 0.0001*m.x141*
m.x98 + 0.0001*m.x141*m.x99 + 0.0001*m.x141*m.x100 + 0.0001*m.x141*m.x101 + 0.0001*m.x141*m.x102
+ 1.40166389008506*m.x141*m.x103 + 0.0001*m.x141*m.x104 + 0.0001*m.x141*m.x105 + 0.0001*m.x141*
m.x106 + 0.0001*m.x141*m.x107 + 0.0001*m.x141*m.x108 + 0.0001*m.x141*m.x109 + 0.0001*m.x141*
m.x110 + 0.0001*m.x141*m.x111 + 0.0001*m.x141*m.x112 + 0.0001*m.x141*m.x113 + 0.0001*m.x141*
m.x114 + 0.0001*m.x141*m.x115 + 0.0001*m.x141*m.x116 + 0.0001*m.x141*m.x117 + 0.0001*m.x141*
m.x118 + 0.0001*m.x141*m.x119 + 0.0001*m.x141*m.x120 + 0.0001*m.x141*m.x121 + 0.0001*m.x141*
m.x122 + 0.0001*m.x141*m.x123 + 0.0001*m.x141*m.x124 + 0.0001*m.x141*m.x125 + 0.0001*m.x141*
m.x126 + 0.0001*m.x141*m.x127 + 0.0001*m.x141*m.x128 + 0.0001*m.x141*m.x129 + 0.0001*m.x141*
m.x130 + 0.0001*m.x141*m.x131 + 0.0001*m.x141*m.x132 + 0.0001*m.x141*m.x133 + 0.0001*m.x141*
m.x134 + 0.0001*m.x141*m.x135 + 0.0001*m.x141*m.x136 + 0.0001*m.x141*m.x137 + 0.0001*m.x141*
m.x138 + 0.0001*m.x141*m.x139 + 0.0001*m.x141*m.x140 + 2.13598498165685*m.x141**2 + 0.0001*m.x141
*m.x142 + 0.0001*m.x141*m.x143 + 0.0001*m.x141*m.x144 + 0.0001*m.x141*m.x145 + 0.0001*m.x141*
m.x146 + 0.0001*m.x141*m.x147 + 0.0001*m.x141*m.x148 + 0.0001*m.x141*m.x149 + 0.0001*m.x141*
m.x150 + 0.0001*m.x141*m.x151 + 0.0001*m.x141*m.x152 + 0.0001*m.x141*m.x153 + 0.0001*m.x141*
m.x154 + 0.0001*m.x141*m.x155 + 0.0001*m.x141*m.x156 + 0.0001*m.x141*m.x157 + 0.0001*m.x141*
m.x158 + 0.0001*m.x141*m.x159 + 0.0001*m.x141*m.x160 + 0.0001*m.x141*m.x161 + 0.0001*m.x141*
m.x162 + 0.0001*m.x141*m.x163 + 0.0001*m.x141*m.x164 + 0.0001*m.x141*m.x165 + 0.0001*m.x141*
m.x166 + 0.0001*m.x141*m.x167 + 0.0001*m.x141*m.x168 + 0.0001*m.x141*m.x169 + 0.0001*m.x141*
m.x170 + 0.0001*m.x141*m.x171 + 0.0001*m.x141*m.x172 + 0.0001*m.x141*m.x173 + 0.0001*m.x141*
m.x174 + 0.0001*m.x141*m.x175 + 0.0001*m.x141*m.x176 + 0.0001*m.x141*m.x177 + 0.0001*m.x141*
m.x178 + 0.0001*m.x141*m.x179 + 0.0001*m.x141*m.x180 + 0.0001*m.x141*m.x181 + 0.0001*m.x141*
m.x182 + 0.0001*m.x141*m.x183 + 0.0001*m.x141*m.x184 + 0.0001*m.x141*m.x185 + 0.0001*m.x142*m.x1
+ 0.0001*m.x142*m.x2 + 0.0001*m.x142*m.x3 + 0.0001*m.x142*m.x4 + 0.0001*m.x142*m.x5 + 0.0001*
m.x142*m.x6 + 0.0001*m.x142*m.x7 + 0.0001*m.x142*m.x8 + 0.0001*m.x142*m.x9 + 0.0001*m.x142*m.x10
+ 0.0001*m.x142*m.x11 + 0.0001*m.x142*m.x12 + 0.0001*m.x142*m.x13 + 0.0001*m.x142*m.x14 + 0.0001
*m.x142*m.x15 + 0.0001*m.x142*m.x16 + 0.0001*m.x142*m.x17 + 0.0001*m.x142*m.x18 + 0.0001*m.x142*
m.x19 + 0.0001*m.x142*m.x20 + 0.0001*m.x142*m.x21 + 0.0001*m.x142*m.x22 + 0.0001*m.x142*m.x23 +
0.0001*m.x142*m.x24 + 0.0001*m.x142*m.x25 + 0.0001*m.x142*m.x26 + 0.0001*m.x142*m.x27 + 0.0001*
m.x142*m.x28 + 0.0001*m.x142*m.x29 + 0.0001*m.x142*m.x30 + 0.0001*m.x142*m.x31 + 0.0001*m.x142*
m.x32 + 0.0001*m.x142*m.x33 + 0.0001*m.x142*m.x34 + 0.0001*m.x142*m.x35 + 0.0001*m.x142*m.x36 +
0.0001*m.x142*m.x37 + 0.0001*m.x142*m.x38 + 0.0001*m.x142*m.x39 + 0.0001*m.x142*m.x40 + 0.0001*
m.x142*m.x41 + 0.0001*m.x142*m.x42 + 0.0001*m.x142*m.x43 + 0.0001*m.x142*m.x44 + 0.0001*m.x142*
m.x45 + 0.0001*m.x142*m.x46 + 0.0001*m.x142*m.x47 + 0.0001*m.x142*m.x48 + 0.0001*m.x142*m.x49 +
0.0001*m.x142*m.x50 + 0.0001*m.x142*m.x51 + 0.0001*m.x142*m.x52 + 0.0001*m.x142*m.x53 + 0.0001*
m.x142*m.x54 + 0.0001*m.x142*m.x55 + 0.0001*m.x142*m.x56 + 0.0001*m.x142*m.x57 + 0.0001*m.x142*
m.x58 + 0.0001*m.x142*m.x59 + 0.0001*m.x142*m.x60 + 0.0001*m.x142*m.x61 + 0.0001*m.x142*m.x62 +
0.0001*m.x142*m.x63 + 0.0001*m.x142*m.x64 + 0.0001*m.x142*m.x65 + 0.0001*m.x142*m.x66 + 0.0001*
m.x142*m.x67 + 0.0001*m.x142*m.x68 + 0.0001*m.x142*m.x69 + 0.0001*m.x142*m.x70 + 0.0001*m.x142*
m.x71 + 0.0001*m.x142*m.x72 + 0.0001*m.x142*m.x73 + 0.0001*m.x142*m.x74 + 0.0001*m.x142*m.x75 +
0.0001*m.x142*m.x76 + 0.0001*m.x142*m.x77 + 0.0001*m.x142*m.x78 + 0.0001*m.x142*m.x79 + 0.0001*
m.x142*m.x80 + 0.0001*m.x142*m.x81 + 0.0001*m.x142*m.x82 + 0.0001*m.x142*m.x83 + 0.0001*m.x142*
m.x84 + 0.0001*m.x142*m.x85 + 0.0001*m.x142*m.x86 + 0.0001*m.x142*m.x87 + 0.0001*m.x142*m.x88 +
0.0001*m.x142*m.x89 + 0.0001*m.x142*m.x90 + 0.0001*m.x142*m.x91 + 0.0001*m.x142*m.x92 + 0.0001*
m.x142*m.x93 + 0.0001*m.x142*m.x94 + 0.0001*m.x142*m.x95 + 0.0001*m.x142*m.x96 + 0.0001*m.x142*
m.x97 + 0.0001*m.x142*m.x98 + 0.0001*m.x142*m.x99 + 0.0001*m.x142*m.x100 + 0.0001*m.x142*m.x101
+ 0.0001*m.x142*m.x102 + 0.0001*m.x142*m.x103 + 0.0001*m.x142*m.x104 + 0.0001*m.x142*m.x105 +
0.0001*m.x142*m.x106 + 0.0001*m.x142*m.x107 + 0.0001*m.x142*m.x108 + 0.0001*m.x142*m.x109 +
0.0001*m.x142*m.x110 + 0.0001*m.x142*m.x111 + 0.0001*m.x142*m.x112 + 0.0001*m.x142*m.x113 +
0.0001*m.x142*m.x114 + 0.0001*m.x142*m.x115 + 9.26079022689604*m.x142*m.x116 + 0.0001*m.x142*
m.x117 + 0.0001*m.x142*m.x118 + 0.0001*m.x142*m.x119 + 0.0001*m.x142*m.x120 + 0.0001*m.x142*
m.x121 + 0.0001*m.x142*m.x122 + 0.0001*m.x142*m.x123 + 0.0001*m.x142*m.x124 + 0.0001*m.x142*
m.x125 + 0.0001*m.x142*m.x126 + 0.0001*m.x142*m.x127 + 0.0001*m.x142*m.x128 + 0.737425273741647*
m.x142*m.x129 + 0.0001*m.x142*m.x130 + 0.0001*m.x142*m.x131 + 0.0001*m.x142*m.x132 + 0.0001*
m.x142*m.x133 + 0.0001*m.x142*m.x134 + 0.0001*m.x142*m.x135 + 0.0001*m.x142*m.x136 + 0.0001*
m.x142*m.x137 + 0.0001*m.x142*m.x138 + 0.0001*m.x142*m.x139 + 0.0001*m.x142*m.x140 + 0.0001*
m.x142*m.x141 + 12.8764720835534*m.x142**2 + 0.0001*m.x142*m.x143 + 0.0001*m.x142*m.x144 + 0.0001
*m.x142*m.x145 + 0.0001*m.x142*m.x146 + 0.0001*m.x142*m.x147 + 0.0001*m.x142*m.x148 + 0.0001*
m.x142*m.x149 + 0.0001*m.x142*m.x150 + 0.0001*m.x142*m.x151 + 0.0001*m.x142*m.x152 + 0.0001*
m.x142*m.x153 + 0.0001*m.x142*m.x154 + 0.0001*m.x142*m.x155 + 0.0001*m.x142*m.x156 +
8.40676553603667*m.x142*m.x157 + 0.0001*m.x142*m.x158 + 0.0001*m.x142*m.x159 + 0.0001*m.x142*
m.x160 + 0.0001*m.x142*m.x161 + 0.0001*m.x142*m.x162 + 0.0001*m.x142*m.x163 + 0.0001*m.x142*
m.x164 + 0.0001*m.x142*m.x165 + 0.0001*m.x142*m.x166 + 0.0001*m.x142*m.x167 + 0.0001*m.x142*
m.x168 + 0.0001*m.x142*m.x169 + 0.694980140999375*m.x142*m.x170 + 0.0001*m.x142*m.x171 + 0.0001*
m.x142*m.x172 + 0.0001*m.x142*m.x173 + 0.0001*m.x142*m.x174 + 0.0001*m.x142*m.x175 + 0.0001*
m.x142*m.x176 + 0.0001*m.x142*m.x177 + 0.0001*m.x142*m.x178 + 0.0001*m.x142*m.x179 + 0.0001*
m.x142*m.x180 + 0.0001*m.x142*m.x181 + 0.0001*m.x142*m.x182 + 0.0001*m.x142*m.x183 + 0.0001*
m.x142*m.x184 + 0.0001*m.x142*m.x185 + 0.0001*m.x143*m.x1 + 0.0001*m.x143*m.x2 + 0.0001*m.x143*
m.x3 + 0.0001*m.x143*m.x4 + 0.0001*m.x143*m.x5 + 0.0001*m.x143*m.x6 + 0.0001*m.x143*m.x7 + 0.0001
*m.x143*m.x8 + 0.0001*m.x143*m.x9 + 0.0001*m.x143*m.x10 + 0.0001*m.x143*m.x11 + 0.0001*m.x143*
m.x12 + 0.0001*m.x143*m.x13 + 0.0001*m.x143*m.x14 + 0.0001*m.x143*m.x15 + 0.0001*m.x143*m.x16 +
0.0001*m.x143*m.x17 + 0.0001*m.x143*m.x18 + 0.0001*m.x143*m.x19 + 0.0001*m.x143*m.x20 + 0.0001*
m.x143*m.x21 + 0.0001*m.x143*m.x22 + 0.0001*m.x143*m.x23 + 0.0001*m.x143*m.x24 + 0.0001*m.x143*
m.x25 + 0.0001*m.x143*m.x26 + 0.0001*m.x143*m.x27 + 0.0001*m.x143*m.x28 + 0.0001*m.x143*m.x29 +
0.0001*m.x143*m.x30 + 0.0001*m.x143*m.x31 + 0.0001*m.x143*m.x32 + 0.0001*m.x143*m.x33 + 0.0001*
m.x143*m.x34 + 0.0001*m.x143*m.x35 + 0.0001*m.x143*m.x36 + 0.0001*m.x143*m.x37 + 0.0001*m.x143*
m.x38 + 0.0001*m.x143*m.x39 + 0.0001*m.x143*m.x40 + 0.0001*m.x143*m.x41 + 0.0001*m.x143*m.x42 +
0.0001*m.x143*m.x43 + 0.0001*m.x143*m.x44 + 0.0001*m.x143*m.x45 + 0.0001*m.x143*m.x46 + 0.0001*
m.x143*m.x47 + 0.0001*m.x143*m.x48 + 0.0001*m.x143*m.x49 + 0.0001*m.x143*m.x50 + 0.0001*m.x143*
m.x51 + 0.0001*m.x143*m.x52 + 0.0001*m.x143*m.x53 + 0.0001*m.x143*m.x54 + 0.0001*m.x143*m.x55 +
0.0001*m.x143*m.x56 + 0.0001*m.x143*m.x57 + 0.0001*m.x143*m.x58 + 0.0001*m.x143*m.x59 +
0.709657765000672*m.x143*m.x60 + 0.0001*m.x143*m.x61 + 0.0001*m.x143*m.x62 + 0.0001*m.x143*m.x63
+ 0.0001*m.x143*m.x64 + 0.0001*m.x143*m.x65 + 0.0001*m.x143*m.x66 + 0.0001*m.x143*m.x67 + 0.0001
*m.x143*m.x68 + 0.0001*m.x143*m.x69 + 0.0001*m.x143*m.x70 + 0.0001*m.x143*m.x71 +
2.02594580793731*m.x143*m.x72 + 0.0001*m.x143*m.x73 + 0.0001*m.x143*m.x74 + 0.0001*m.x143*m.x75
+ 0.0001*m.x143*m.x76 + 0.0001*m.x143*m.x77 + 0.0001*m.x143*m.x78 + 0.0001*m.x143*m.x79 + 0.0001
*m.x143*m.x80 + 0.0001*m.x143*m.x81 + 0.0001*m.x143*m.x82 + 0.0001*m.x143*m.x83 + 0.0001*m.x143*
m.x84 + 0.0001*m.x143*m.x85 + 0.0001*m.x143*m.x86 + 0.0001*m.x143*m.x87 + 0.0001*m.x143*m.x88 +
0.0001*m.x143*m.x89 + 0.0001*m.x143*m.x90 + 0.0001*m.x143*m.x91 + 0.0001*m.x143*m.x92 + 0.0001*
m.x143*m.x93 + 0.0001*m.x143*m.x94 + 0.0001*m.x143*m.x95 + 0.0001*m.x143*m.x96 + 0.0001*m.x143*
m.x97 + 0.0001*m.x143*m.x98 + 0.0001*m.x143*m.x99 + 0.0001*m.x143*m.x100 + 0.0001*m.x143*m.x101
+ 0.0001*m.x143*m.x102 + 0.0001*m.x143*m.x103 + 0.0001*m.x143*m.x104 + 0.0001*m.x143*m.x105 +
0.0001*m.x143*m.x106 + 0.0001*m.x143*m.x107 + 0.0001*m.x143*m.x108 + 0.0001*m.x143*m.x109 +
0.0001*m.x143*m.x110 + 0.0001*m.x143*m.x111 + 0.0001*m.x143*m.x112 + 0.0001*m.x143*m.x113 +
0.0001*m.x143*m.x114 + 0.0001*m.x143*m.x115 + 0.0001*m.x143*m.x116 + 9.26079022689604*m.x143*
m.x117 + 0.0001*m.x143*m.x118 + 0.0001*m.x143*m.x119 + 0.0001*m.x143*m.x120 + 0.0001*m.x143*
m.x121 + 0.0001*m.x143*m.x122 + 0.0001*m.x143*m.x123 + 0.0001*m.x143*m.x124 + 0.0001*m.x143*
m.x125 + 0.0001*m.x143*m.x126 + 0.0001*m.x143*m.x127 + 0.0001*m.x143*m.x128 + 0.0001*m.x143*
m.x129 + 0.0001*m.x143*m.x130 + 0.0001*m.x143*m.x131 + 0.0001*m.x143*m.x132 + 0.0001*m.x143*
m.x133 + 0.0001*m.x143*m.x134 + 0.0001*m.x143*m.x135 + 0.0001*m.x143*m.x136 + 0.0001*m.x143*
m.x137 + 0.0001*m.x143*m.x138 + 0.0001*m.x143*m.x139 + 0.0001*m.x143*m.x140 + 0.0001*m.x143*
m.x141 + 0.0001*m.x143*m.x142 + 12.8764720835534*m.x143**2 + 0.0001*m.x143*m.x144 + 0.0001*m.x143
*m.x145 + 0.0001*m.x143*m.x146 + 0.0001*m.x143*m.x147 + 0.0001*m.x143*m.x148 + 0.0001*m.x143*
m.x149 + 0.0001*m.x143*m.x150 + 0.0001*m.x143*m.x151 + 0.0001*m.x143*m.x152 + 0.0001*m.x143*
m.x153 + 0.0001*m.x143*m.x154 + 0.0001*m.x143*m.x155 + 0.0001*m.x143*m.x156 + 0.0001*m.x143*
m.x157 + 9.01610644057731*m.x143*m.x158 + 0.0001*m.x143*m.x159 + 0.0001*m.x143*m.x160 + 0.0001*
m.x143*m.x161 + 0.0001*m.x143*m.x162 + 0.0001*m.x143*m.x163 + 0.0001*m.x143*m.x164 + 0.0001*
m.x143*m.x165 + 0.0001*m.x143*m.x166 + 0.0001*m.x143*m.x167 + 0.0001*m.x143*m.x168 + 0.0001*
m.x143*m.x169 + 0.0001*m.x143*m.x170 + 0.0001*m.x143*m.x171 + 0.0001*m.x143*m.x172 + 0.0001*
m.x143*m.x173 + 0.0001*m.x143*m.x174 + 0.0001*m.x143*m.x175 + 0.0001*m.x143*m.x176 + 0.0001*
m.x143*m.x177 + 0.0001*m.x143*m.x178 + 0.0001*m.x143*m.x179 + 0.0001*m.x143*m.x180 + 0.0001*
m.x143*m.x181 + 0.0001*m.x143*m.x182 + 0.0001*m.x143*m.x183 + 0.0001*m.x143*m.x184 + 0.0001*
m.x143*m.x185 + 0.0001*m.x144*m.x1 + 0.0001*m.x144*m.x2 + 0.0001*m.x144*m.x3 + 0.0001*m.x144*m.x4
+ 0.0001*m.x144*m.x5 + 0.0001*m.x144*m.x6 + 0.0001*m.x144*m.x7 + 0.0001*m.x144*m.x8 + 0.0001*
m.x144*m.x9 + 0.0001*m.x144*m.x10 + 0.0001*m.x144*m.x11 + 0.0001*m.x144*m.x12 + 0.0001*m.x144*
m.x13 + 0.0001*m.x144*m.x14 + 0.0001*m.x144*m.x15 + 0.0001*m.x144*m.x16 + 0.0001*m.x144*m.x17 +
0.0001*m.x144*m.x18 + 0.0001*m.x144*m.x19 + 0.0001*m.x144*m.x20 + 0.0001*m.x144*m.x21 + 0.0001*
m.x144*m.x22 + 0.0001*m.x144*m.x23 + 0.0001*m.x144*m.x24 + 0.0001*m.x144*m.x25 + 0.0001*m.x144*
m.x26 + 0.0001*m.x144*m.x27 + 0.0001*m.x144*m.x28 + 0.0001*m.x144*m.x29 + 0.0001*m.x144*m.x30 +
0.0001*m.x144*m.x31 + 0.0001*m.x144*m.x32 + 0.0001*m.x144*m.x33 + 0.0001*m.x144*m.x34 + 0.0001*
m.x144*m.x35 + 0.0001*m.x144*m.x36 + 0.0001*m.x144*m.x37 + 0.0001*m.x144*m.x38 + 0.0001*m.x144*
m.x39 + 0.0001*m.x144*m.x40 + 0.0001*m.x144*m.x41 + 0.0001*m.x144*m.x42 + 0.0001*m.x144*m.x43 +
0.0001*m.x144*m.x44 + 0.0001*m.x144*m.x45 + 0.0001*m.x144*m.x46 + 0.0001*m.x144*m.x47 + 0.0001*
m.x144*m.x48 + 0.0001*m.x144*m.x49 + 0.0001*m.x144*m.x50 + 0.0001*m.x144*m.x51 + 0.0001*m.x144*
m.x52 + 0.0001*m.x144*m.x53 + 0.0001*m.x144*m.x54 + 0.0001*m.x144*m.x55 + 0.0001*m.x144*m.x56 +
0.0001*m.x144*m.x57 + 0.0001*m.x144*m.x58 + 0.0001*m.x144*m.x59 + 0.0001*m.x144*m.x60 + 0.0001*
m.x144*m.x61 + 0.0001*m.x144*m.x62 + 0.0001*m.x144*m.x63 + 0.0001*m.x144*m.x64 + 0.0001*m.x144*
m.x65 + 0.0001*m.x144*m.x66 + 0.0001*m.x144*m.x67 + 0.0001*m.x144*m.x68 + 0.0001*m.x144*m.x69 +
0.0001*m.x144*m.x70 + 0.0001*m.x144*m.x71 + 0.0001*m.x144*m.x72 + 1.07615655996441*m.x144*m.x73
+ 0.0001*m.x144*m.x74 + 0.0001*m.x144*m.x75 + 0.0001*m.x144*m.x76 + 0.0001*m.x144*m.x77 + 0.0001
*m.x144*m.x78 + 0.0001*m.x144*m.x79 + 0.0001*m.x144*m.x80 + 0.0001*m.x144*m.x81 + 0.0001*m.x144*
m.x82 + 0.0001*m.x144*m.x83 + 0.0001*m.x144*m.x84 + 0.0001*m.x144*m.x85 + 0.0001*m.x144*m.x86 +
0.0001*m.x144*m.x87 + 0.0001*m.x144*m.x88 + 0.0001*m.x144*m.x89 + 0.0001*m.x144*m.x90 + 0.0001*
m.x144*m.x91 + 0.0001*m.x144*m.x92 + 0.0001*m.x144*m.x93 + 0.0001*m.x144*m.x94 + 0.0001*m.x144*
m.x95 + 0.0001*m.x144*m.x96 + 0.0001*m.x144*m.x97 + 0.0001*m.x144*m.x98 + 0.0001*m.x144*m.x99 +
0.0001*m.x144*m.x100 + 0.0001*m.x144*m.x101 + 0.0001*m.x144*m.x102 + 0.0001*m.x144*m.x103 +
0.0001*m.x144*m.x104 + 0.0001*m.x144*m.x105 + 0.0001*m.x144*m.x106 + 0.0001*m.x144*m.x107 +
0.0001*m.x144*m.x108 + 0.0001*m.x144*m.x109 + 0.0001*m.x144*m.x110 + 0.0001*m.x144*m.x111 +
0.0001*m.x144*m.x112 + 0.0001*m.x144*m.x113 + 0.0001*m.x144*m.x114 + 0.0001*m.x144*m.x115 +
0.0001*m.x144*m.x116 + 0.0001*m.x144*m.x117 + 5.79346015976993*m.x144*m.x118 + 0.0001*m.x144*
m.x119 + 0.0001*m.x144*m.x120 + 0.0001*m.x144*m.x121 + 0.0001*m.x144*m.x122 + 0.0001*m.x144*
m.x123 + 0.0001*m.x144*m.x124 + 0.0001*m.x144*m.x125 + 0.0001*m.x144*m.x126 + 0.0001*m.x144*
m.x127 + 0.0001*m.x144*m.x128 + 0.0001*m.x144*m.x129 + 0.0001*m.x144*m.x130 + 0.0001*m.x144*
m.x131 + 0.0001*m.x144*m.x132 + 0.0001*m.x144*m.x133 + 0.0001*m.x144*m.x134 + 0.0001*m.x144*
m.x135 + 0.0001*m.x144*m.x136 + 0.0001*m.x144*m.x137 + 0.0001*m.x144*m.x138 + 0.0001*m.x144*
m.x139 + 0.0001*m.x144*m.x140 + 0.0001*m.x144*m.x141 + 0.0001*m.x144*m.x142 + 0.0001*m.x144*
m.x143 + 8.05538089197683*m.x144**2 + 0.0001*m.x144*m.x145 + 0.0001*m.x144*m.x146 + 0.0001*m.x144
*m.x147 + 0.0001*m.x144*m.x148 + 0.0001*m.x144*m.x149 + 0.0001*m.x144*m.x150 + 0.0001*m.x144*
m.x151 + 0.0001*m.x144*m.x152 + 0.0001*m.x144*m.x153 + 0.0001*m.x144*m.x154 + 0.0001*m.x144*
m.x155 + 0.0001*m.x144*m.x156 + 0.0001*m.x144*m.x157 + 0.0001*m.x144*m.x158 + 5.64038935568629*
m.x144*m.x159 + 0.0001*m.x144*m.x160 + 0.0001*m.x144*m.x161 + 0.0001*m.x144*m.x162 + 0.0001*
m.x144*m.x163 + 0.0001*m.x144*m.x164 + 0.0001*m.x144*m.x165 + 0.0001*m.x144*m.x166 + 0.0001*
m.x144*m.x167 + 0.0001*m.x144*m.x168 + 0.0001*m.x144*m.x169 + 0.0001*m.x144*m.x170 + 0.0001*
m.x144*m.x171 + 0.0001*m.x144*m.x172 + 0.0001*m.x144*m.x173 + 0.0001*m.x144*m.x174 + 0.0001*
m.x144*m.x175 + 0.0001*m.x144*m.x176 + 0.0001*m.x144*m.x177 + 0.0001*m.x144*m.x178 + 0.0001*
m.x144*m.x179 + 0.0001*m.x144*m.x180 + 0.0001*m.x144*m.x181 + 0.0001*m.x144*m.x182 + 0.0001*
m.x144*m.x183 + 0.0001*m.x144*m.x184 + 0.0001*m.x144*m.x185 + 0.0001*m.x145*m.x1 + 0.0001*m.x145*
m.x2 + 0.0001*m.x145*m.x3 + 0.0001*m.x145*m.x4 + 0.0001*m.x145*m.x5 + 0.0001*m.x145*m.x6 + 0.0001
*m.x145*m.x7 + 0.0001*m.x145*m.x8 + 0.0001*m.x145*m.x9 + 0.0001*m.x145*m.x10 + 0.0001*m.x145*
m.x11 + 0.0001*m.x145*m.x12 + 0.0001*m.x145*m.x13 + 0.0001*m.x145*m.x14 + 0.0001*m.x145*m.x15 +
0.0001*m.x145*m.x16 + 0.0001*m.x145*m.x17 + 0.0001*m.x145*m.x18 + 0.0001*m.x145*m.x19 + 0.0001*
m.x145*m.x20 + 0.0001*m.x145*m.x21 + 0.0001*m.x145*m.x22 + 0.0001*m.x145*m.x23 + 0.0001*m.x145*
m.x24 + 0.0001*m.x145*m.x25 + 0.0001*m.x145*m.x26 + 0.0001*m.x145*m.x27 + 0.0001*m.x145*m.x28 +
0.0001*m.x145*m.x29 + 0.0001*m.x145*m.x30 + 0.0001*m.x145*m.x31 + 0.0001*m.x145*m.x32 + 0.0001*
m.x145*m.x33 + 0.0001*m.x145*m.x34 + 0.0001*m.x145*m.x35 + 0.0001*m.x145*m.x36 + 0.0001*m.x145*
m.x37 + 0.0001*m.x145*m.x38 + 0.0001*m.x145*m.x39 + 0.0001*m.x145*m.x40 + 0.0001*m.x145*m.x41 +
0.0001*m.x145*m.x42 + 0.0001*m.x145*m.x43 + 0.0001*m.x145*m.x44 + 0.0001*m.x145*m.x45 + 0.0001*
m.x145*m.x46 + 0.0001*m.x145*m.x47 + 0.0001*m.x145*m.x48 + 0.0001*m.x145*m.x49 + 0.0001*m.x145*
m.x50 + 0.0001*m.x145*m.x51 + 0.0001*m.x145*m.x52 + 0.0001*m.x145*m.x53 + 0.0001*m.x145*m.x54 +
0.0001*m.x145*m.x55 + 0.0001*m.x145*m.x56 + 0.0001*m.x145*m.x57 + 0.0001*m.x145*m.x58 + 0.0001*
m.x145*m.x59 + 0.0001*m.x145*m.x60 + 0.0001*m.x145*m.x61 + 0.0001*m.x145*m.x62 + 0.0001*m.x145*
m.x63 + 0.0001*m.x145*m.x64 + 0.0001*m.x145*m.x65 + 0.0001*m.x145*m.x66 + 0.0001*m.x145*m.x67 +
0.0001*m.x145*m.x68 + 0.0001*m.x145*m.x69 + 0.0001*m.x145*m.x70 + 0.0001*m.x145*m.x71 + 0.0001*
m.x145*m.x72 + 0.0001*m.x145*m.x73 + 1.17562792915444*m.x145*m.x74 + 0.0001*m.x145*m.x75 + 0.0001
*m.x145*m.x76 + 0.0001*m.x145*m.x77 + 0.0001*m.x145*m.x78 + 0.0001*m.x145*m.x79 + 0.0001*m.x145*
m.x80 + 0.0001*m.x145*m.x81 + 0.0001*m.x145*m.x82 + 0.0001*m.x145*m.x83 + 0.0001*m.x145*m.x84 +
0.0001*m.x145*m.x85 + 0.0001*m.x145*m.x86 + 0.0001*m.x145*m.x87 + 0.0001*m.x145*m.x88 + 0.0001*
m.x145*m.x89 + 0.0001*m.x145*m.x90 + 0.0001*m.x145*m.x91 + 0.0001*m.x145*m.x92 + 0.0001*m.x145*
m.x93 + 0.0001*m.x145*m.x94 + 0.0001*m.x145*m.x95 + 0.0001*m.x145*m.x96 + 0.0001*m.x145*m.x97 +
0.0001*m.x145*m.x98 + 0.0001*m.x145*m.x99 + 0.0001*m.x145*m.x100 + 0.0001*m.x145*m.x101 + 0.0001*
m.x145*m.x102 + 0.0001*m.x145*m.x103 + 0.0001*m.x145*m.x104 + 0.0001*m.x145*m.x105 + 0.0001*
m.x145*m.x106 + 0.0001*m.x145*m.x107 + 0.0001*m.x145*m.x108 + 0.0001*m.x145*m.x109 + 0.0001*
m.x145*m.x110 + 0.0001*m.x145*m.x111 + 0.0001*m.x145*m.x112 + 0.0001*m.x145*m.x113 + 0.0001*
m.x145*m.x114 + 0.0001*m.x145*m.x115 + 0.0001*m.x145*m.x116 + 0.0001*m.x145*m.x117 + 0.0001*
m.x145*m.x118 + 6.32668681277508*m.x145*m.x119 + 0.0001*m.x145*m.x120 + 0.0001*m.x145*m.x121 +
0.0001*m.x145*m.x122 + 0.0001*m.x145*m.x123 + 0.0001*m.x145*m.x124 + 0.0001*m.x145*m.x125 +
0.0001*m.x145*m.x126 + 0.0001*m.x145*m.x127 + 0.0001*m.x145*m.x128 + 0.0001*m.x145*m.x129 +
0.0001*m.x145*m.x130 + 0.0001*m.x145*m.x131 + 0.0001*m.x145*m.x132 + 0.0001*m.x145*m.x133 +
0.0001*m.x145*m.x134 + 0.0001*m.x145*m.x135 + 0.0001*m.x145*m.x136 + 0.0001*m.x145*m.x137 +
0.0001*m.x145*m.x138 + 0.0001*m.x145*m.x139 + 0.0001*m.x145*m.x140 + 0.0001*m.x145*m.x141 +
0.0001*m.x145*m.x142 + 0.0001*m.x145*m.x143 + 0.0001*m.x145*m.x144 + 10.6125972598811*m.x145**2
+ 0.0001*m.x145*m.x146 + 0.0001*m.x145*m.x147 + 0.0001*m.x145*m.x148 + 0.0001*m.x145*m.x149 +
0.0001*m.x145*m.x150 + 0.0001*m.x145*m.x151 + 0.0001*m.x145*m.x152 + 0.0001*m.x145*m.x153 +
0.0001*m.x145*m.x154 + 0.0001*m.x145*m.x155 + 0.0001*m.x145*m.x156 + 0.0001*m.x145*m.x157 +
0.0001*m.x145*m.x158 + 0.0001*m.x145*m.x159 + 6.16722574049717*m.x145*m.x160 + 0.0001*m.x145*
m.x161 + 0.0001*m.x145*m.x162 + 0.0001*m.x145*m.x163 + 0.0001*m.x145*m.x164 + 0.0001*m.x145*
m.x165 + 0.0001*m.x145*m.x166 + 0.0001*m.x145*m.x167 + 0.0001*m.x145*m.x168 + 0.0001*m.x145*
m.x169 + 0.0001*m.x145*m.x170 + 0.0001*m.x145*m.x171 + 0.0001*m.x145*m.x172 + 0.0001*m.x145*
m.x173 + 0.0001*m.x145*m.x174 + 0.0001*m.x145*m.x175 + 0.0001*m.x145*m.x176 + 0.0001*m.x145*
m.x177 + 0.0001*m.x145*m.x178 + 0.0001*m.x145*m.x179 + 0.0001*m.x145*m.x180 + 0.0001*m.x145*
m.x181 + 0.0001*m.x145*m.x182 + 0.0001*m.x145*m.x183 + 0.0001*m.x145*m.x184 + 0.0001*m.x145*
m.x185 + 0.0001*m.x146*m.x1 + 0.0001*m.x146*m.x2 + 0.0001*m.x146*m.x3 + 0.0001*m.x146*m.x4 +
0.0001*m.x146*m.x5 + 0.0001*m.x146*m.x6 + 0.0001*m.x146*m.x7 + 0.0001*m.x146*m.x8 + 0.0001*m.x146
*m.x9 + 0.0001*m.x146*m.x10 + 0.0001*m.x146*m.x11 + 0.0001*m.x146*m.x12 + 0.0001*m.x146*m.x13 +
0.0001*m.x146*m.x14 + 0.0001*m.x146*m.x15 + 0.0001*m.x146*m.x16 + 0.0001*m.x146*m.x17 + 0.0001*
m.x146*m.x18 + 0.0001*m.x146*m.x19 + 0.0001*m.x146*m.x20 + 0.0001*m.x146*m.x21 + 0.0001*m.x146*
m.x22 + 0.0001*m.x146*m.x23 + 0.0001*m.x146*m.x24 + 0.0001*m.x146*m.x25 + 0.0001*m.x146*m.x26 +
0.0001*m.x146*m.x27 + 0.0001*m.x146*m.x28 + 0.0001*m.x146*m.x29 + 0.0001*m.x146*m.x30 + 0.0001*
m.x146*m.x31 + 0.0001*m.x146*m.x32 + 0.0001*m.x146*m.x33 + 0.0001*m.x146*m.x34 + 0.0001*m.x146*
m.x35 + 0.0001*m.x146*m.x36 + 0.0001*m.x146*m.x37 + 0.0001*m.x146*m.x38 + 0.0001*m.x146*m.x39 +
0.0001*m.x146*m.x40 + 0.0001*m.x146*m.x41 + 0.0001*m.x146*m.x42 + 0.0001*m.x146*m.x43 + 0.0001*
m.x146*m.x44 + 0.0001*m.x146*m.x45 + 0.0001*m.x146*m.x46 + 0.0001*m.x146*m.x47 + 0.0001*m.x146*
m.x48 + 0.0001*m.x146*m.x49 + 0.0001*m.x146*m.x50 + 0.0001*m.x146*m.x51 + 0.0001*m.x146*m.x52 +
0.0001*m.x146*m.x53 + 0.0001*m.x146*m.x54 + 0.0001*m.x146*m.x55 + 0.0001*m.x146*m.x56 + 0.0001*
m.x146*m.x57 + 0.0001*m.x146*m.x58 + 0.0001*m.x146*m.x59 + 0.0001*m.x146*m.x60 + 0.0001*m.x146*
m.x61 + 0.0001*m.x146*m.x62 + 0.0001*m.x146*m.x63 + 0.0001*m.x146*m.x64 + 0.0001*m.x146*m.x65 +
0.0001*m.x146*m.x66 + 0.0001*m.x146*m.x67 + 0.0001*m.x146*m.x68 + 0.0001*m.x146*m.x69 + 0.0001*
m.x146*m.x70 + 0.0001*m.x146*m.x71 + 0.0001*m.x146*m.x72 + 0.0001*m.x146*m.x73 + 0.0001*m.x146*
m.x74 + 1.30764034687751*m.x146*m.x75 + 0.0001*m.x146*m.x76 + 0.0001*m.x146*m.x77 + 0.0001*m.x146
*m.x78 + 0.0001*m.x146*m.x79 + 0.0001*m.x146*m.x80 + 0.0001*m.x146*m.x81 + 0.0001*m.x146*m.x82 +
0.0001*m.x146*m.x83 + 0.0001*m.x146*m.x84 + 0.0001*m.x146*m.x85 + 0.0001*m.x146*m.x86 + 0.0001*
m.x146*m.x87 + 0.0001*m.x146*m.x88 + 0.0001*m.x146*m.x89 + 0.0001*m.x146*m.x90 + 0.0001*m.x146*
m.x91 + 0.0001*m.x146*m.x92 + 0.0001*m.x146*m.x93 + 0.0001*m.x146*m.x94 + 0.0001*m.x146*m.x95 +
0.0001*m.x146*m.x96 + 0.0001*m.x146*m.x97 + 0.0001*m.x146*m.x98 + 0.0001*m.x146*m.x99 + 0.0001*
m.x146*m.x100 + 0.0001*m.x146*m.x101 + 0.0001*m.x146*m.x102 + 0.0001*m.x146*m.x103 + 0.0001*
m.x146*m.x104 + 0.0001*m.x146*m.x105 + 0.0001*m.x146*m.x106 + 0.0001*m.x146*m.x107 + 0.0001*
m.x146*m.x108 + 0.0001*m.x146*m.x109 + 0.0001*m.x146*m.x110 + 0.0001*m.x146*m.x111 + 0.0001*
m.x146*m.x112 + 0.0001*m.x146*m.x113 + 0.0001*m.x146*m.x114 + 0.0001*m.x146*m.x115 + 0.0001*
m.x146*m.x116 + 0.0001*m.x146*m.x117 + 0.0001*m.x146*m.x118 + 0.0001*m.x146*m.x119 +
6.32668681277508*m.x146*m.x120 + 0.0001*m.x146*m.x121 + 0.0001*m.x146*m.x122 + 0.0001*m.x146*
m.x123 + 0.0001*m.x146*m.x124 + 0.0001*m.x146*m.x125 + 0.0001*m.x146*m.x126 + 0.0001*m.x146*
m.x127 + 0.0001*m.x146*m.x128 + 0.0001*m.x146*m.x129 + 0.0001*m.x146*m.x130 + 0.0001*m.x146*
m.x131 + 0.0001*m.x146*m.x132 + 0.0001*m.x146*m.x133 + 0.0001*m.x146*m.x134 + 0.0001*m.x146*
m.x135 + 0.0001*m.x146*m.x136 + 0.0001*m.x146*m.x137 + 0.0001*m.x146*m.x138 + 0.0001*m.x146*
m.x139 + 0.0001*m.x146*m.x140 + 0.0001*m.x146*m.x141 + 0.0001*m.x146*m.x142 + 0.0001*m.x146*
m.x143 + 0.0001*m.x146*m.x144 + 0.0001*m.x146*m.x145 + 10.6125972598811*m.x146**2 + 0.0001*m.x146
*m.x147 + 0.0001*m.x146*m.x148 + 0.0001*m.x146*m.x149 + 0.0001*m.x146*m.x150 + 0.0001*m.x146*
m.x151 + 0.0001*m.x146*m.x152 + 0.0001*m.x146*m.x153 + 0.0001*m.x146*m.x154 + 0.0001*m.x146*
m.x155 + 0.0001*m.x146*m.x156 + 0.0001*m.x146*m.x157 + 0.0001*m.x146*m.x158 + 0.0001*m.x146*
m.x159 + 0.0001*m.x146*m.x160 + 5.52392322779655*m.x146*m.x161 + 0.0001*m.x146*m.x162 + 0.0001*
m.x146*m.x163 + 0.0001*m.x146*m.x164 + 0.0001*m.x146*m.x165 + 0.0001*m.x146*m.x166 + 0.0001*
m.x146*m.x167 + 0.0001*m.x146*m.x168 + 0.0001*m.x146*m.x169 + 0.0001*m.x146*m.x170 + 0.0001*
m.x146*m.x171 + 0.0001*m.x146*m.x172 + 0.0001*m.x146*m.x173 + 0.0001*m.x146*m.x174 + 0.0001*
m.x146*m.x175 + 0.0001*m.x146*m.x176 + 0.0001*m.x146*m.x177 + 0.0001*m.x146*m.x178 + 0.0001*
m.x146*m.x179 + 0.0001*m.x146*m.x180 + 0.0001*m.x146*m.x181 + 0.0001*m.x146*m.x182 + 0.0001*
m.x146*m.x183 + 0.0001*m.x146*m.x184 + 0.0001*m.x146*m.x185 + 0.0001*m.x147*m.x1 + 0.0001*m.x147*
m.x2 + 0.0001*m.x147*m.x3 + 0.0001*m.x147*m.x4 + 0.0001*m.x147*m.x5 + 0.0001*m.x147*m.x6 + 0.0001
*m.x147*m.x7 + 0.0001*m.x147*m.x8 + 0.0001*m.x147*m.x9 + 0.0001*m.x147*m.x10 + 0.0001*m.x147*
m.x11 + 0.0001*m.x147*m.x12 + 0.0001*m.x147*m.x13 + 0.0001*m.x147*m.x14 + 0.0001*m.x147*m.x15 +
0.0001*m.x147*m.x16 + 0.0001*m.x147*m.x17 + 0.0001*m.x147*m.x18 + 0.0001*m.x147*m.x19 + 0.0001*
m.x147*m.x20 + 0.0001*m.x147*m.x21 + 0.0001*m.x147*m.x22 + 0.0001*m.x147*m.x23 + 0.0001*m.x147*
m.x24 + 0.0001*m.x147*m.x25 + 0.0001*m.x147*m.x26 + 0.0001*m.x147*m.x27 + 0.0001*m.x147*m.x28 +
0.0001*m.x147*m.x29 + 0.0001*m.x147*m.x30 + 0.0001*m.x147*m.x31 + 0.0001*m.x147*m.x32 + 0.0001*
m.x147*m.x33 + 0.0001*m.x147*m.x34 + 0.0001*m.x147*m.x35 + 0.0001*m.x147*m.x36 + 0.0001*m.x147*
m.x37 + 0.0001*m.x147*m.x38 + 0.0001*m.x147*m.x39 + 0.0001*m.x147*m.x40 + 0.0001*m.x147*m.x41 +
0.0001*m.x147*m.x42 + 0.0001*m.x147*m.x43 + 0.0001*m.x147*m.x44 + 0.0001*m.x147*m.x45 + 0.0001*
m.x147*m.x46 + 0.0001*m.x147*m.x47 + 0.0001*m.x147*m.x48 + 0.0001*m.x147*m.x49 + 0.0001*m.x147*
m.x50 + 0.0001*m.x147*m.x51 + 0.0001*m.x147*m.x52 + 0.0001*m.x147*m.x53 + 0.0001*m.x147*m.x54 +
0.0001*m.x147*m.x55 + 0.0001*m.x147*m.x56 + 0.0001*m.x147*m.x57 + 0.0001*m.x147*m.x58 + 0.0001*
m.x147*m.x59 + 0.0001*m.x147*m.x60 + 0.0001*m.x147*m.x61 + 0.0001*m.x147*m.x62 + 0.0001*m.x147*
m.x63 + 0.0001*m.x147*m.x64 + 0.0001*m.x147*m.x65 + 0.0001*m.x147*m.x66 + 0.0001*m.x147*m.x67 +
0.0001*m.x147*m.x68 + 0.0001*m.x147*m.x69 + 0.0001*m.x147*m.x70 + 0.0001*m.x147*m.x71 + 0.0001*
m.x147*m.x72 + 0.0001*m.x147*m.x73 + 0.0001*m.x147*m.x74 + 0.0001*m.x147*m.x75 + 1.42317774497402
*m.x147*m.x76 + 0.0001*m.x147*m.x77 + 0.0001*m.x147*m.x78 + 0.0001*m.x147*m.x79 + 0.0001*m.x147*
m.x80 + 0.0001*m.x147*m.x81 + 0.0001*m.x147*m.x82 + 0.0001*m.x147*m.x83 + 0.0001*m.x147*m.x84 +
0.0001*m.x147*m.x85 + 0.0001*m.x147*m.x86 + 0.0001*m.x147*m.x87 + 0.0001*m.x147*m.x88 + 0.0001*
m.x147*m.x89 + 0.0001*m.x147*m.x90 + 0.0001*m.x147*m.x91 + 0.0001*m.x147*m.x92 + 0.0001*m.x147*
m.x93 + 0.0001*m.x147*m.x94 + 0.0001*m.x147*m.x95 + 0.0001*m.x147*m.x96 + 0.0001*m.x147*m.x97 +
0.0001*m.x147*m.x98 + 0.0001*m.x147*m.x99 + 0.0001*m.x147*m.x100 + 0.0001*m.x147*m.x101 + 0.0001*
m.x147*m.x102 + 0.0001*m.x147*m.x103 + 0.0001*m.x147*m.x104 + 0.0001*m.x147*m.x105 + 0.0001*
m.x147*m.x106 + 0.0001*m.x147*m.x107 + 0.0001*m.x147*m.x108 + 0.0001*m.x147*m.x109 + 0.0001*
m.x147*m.x110 + 0.0001*m.x147*m.x111 + 0.0001*m.x147*m.x112 + 0.0001*m.x147*m.x113 + 0.0001*
m.x147*m.x114 + 0.0001*m.x147*m.x115 + 0.0001*m.x147*m.x116 + 0.0001*m.x147*m.x117 + 0.0001*
m.x147*m.x118 + 0.0001*m.x147*m.x119 + 0.0001*m.x147*m.x120 + 6.88571918292358*m.x147*m.x121 +
0.0001*m.x147*m.x122 + 0.0001*m.x147*m.x123 + 0.0001*m.x147*m.x124 + 0.0001*m.x147*m.x125 +
0.0001*m.x147*m.x126 + 0.0001*m.x147*m.x127 + 0.0001*m.x147*m.x128 + 0.0001*m.x147*m.x129 +
0.0001*m.x147*m.x130 + 0.0001*m.x147*m.x131 + 0.0001*m.x147*m.x132 + 0.0001*m.x147*m.x133 +
0.0001*m.x147*m.x134 + 0.0001*m.x147*m.x135 + 0.0001*m.x147*m.x136 + 0.0001*m.x147*m.x137 +
0.0001*m.x147*m.x138 + 0.0001*m.x147*m.x139 + 0.0001*m.x147*m.x140 + 0.0001*m.x147*m.x141 +
0.0001*m.x147*m.x142 + 0.0001*m.x147*m.x143 + 0.0001*m.x147*m.x144 + 0.0001*m.x147*m.x145 +
0.0001*m.x147*m.x146 + 11.5503429467665*m.x147**2 + 0.0001*m.x147*m.x148 + 0.0001*m.x147*m.x149
+ 0.0001*m.x147*m.x150 + 0.0001*m.x147*m.x151 + 0.0001*m.x147*m.x152 + 0.0001*m.x147*m.x153 +
0.0001*m.x147*m.x154 + 0.0001*m.x147*m.x155 + 0.0001*m.x147*m.x156 + 0.0001*m.x147*m.x157 +
0.0001*m.x147*m.x158 + 0.0001*m.x147*m.x159 + 0.0001*m.x147*m.x160 + 0.0001*m.x147*m.x161 +
6.01202148404445*m.x147*m.x162 + 0.0001*m.x147*m.x163 + 0.0001*m.x147*m.x164 + 0.0001*m.x147*
m.x165 + 0.0001*m.x147*m.x166 + 0.0001*m.x147*m.x167 + 0.0001*m.x147*m.x168 + 0.0001*m.x147*
m.x169 + 0.0001*m.x147*m.x170 + 0.0001*m.x147*m.x171 + 0.0001*m.x147*m.x172 + 0.0001*m.x147*
m.x173 + 0.0001*m.x147*m.x174 + 0.0001*m.x147*m.x175 + 0.0001*m.x147*m.x176 + 0.0001*m.x147*
m.x177 + 0.0001*m.x147*m.x178 + 0.0001*m.x147*m.x179 + 0.0001*m.x147*m.x180 + 0.0001*m.x147*
m.x181 + 0.0001*m.x147*m.x182 + 0.0001*m.x147*m.x183 + 0.0001*m.x147*m.x184 + 0.0001*m.x147*
m.x185 + 0.0001*m.x148*m.x1 + 0.0001*m.x148*m.x2 + 0.0001*m.x148*m.x3 + 0.0001*m.x148*m.x4 +
0.0001*m.x148*m.x5 + 0.0001*m.x148*m.x6 + 0.0001*m.x148*m.x7 + 0.0001*m.x148*m.x8 + 0.0001*m.x148
*m.x9 + 0.0001*m.x148*m.x10 + 0.0001*m.x148*m.x11 + 0.0001*m.x148*m.x12 + 0.0001*m.x148*m.x13 +
0.0001*m.x148*m.x14 + 0.0001*m.x148*m.x15 + 0.0001*m.x148*m.x16 + 0.0001*m.x148*m.x17 + 0.0001*
m.x148*m.x18 + 0.0001*m.x148*m.x19 + 0.0001*m.x148*m.x20 + 0.0001*m.x148*m.x21 + 0.0001*m.x148*
m.x22 + 0.0001*m.x148*m.x23 + 0.0001*m.x148*m.x24 + 0.0001*m.x148*m.x25 + 0.0001*m.x148*m.x26 +
0.0001*m.x148*m.x27 + 0.0001*m.x148*m.x28 + 0.0001*m.x148*m.x29 + 0.0001*m.x148*m.x30 + 0.0001*
m.x148*m.x31 + 0.0001*m.x148*m.x32 + 0.0001*m.x148*m.x33 + 0.0001*m.x148*m.x34 + 0.0001*m.x148*
m.x35 + 0.0001*m.x148*m.x36 + 0.0001*m.x148*m.x37 + 0.0001*m.x148*m.x38 + 0.0001*m.x148*m.x39 +
0.0001*m.x148*m.x40 + 0.0001*m.x148*m.x41 + 0.0001*m.x148*m.x42 + 0.0001*m.x148*m.x43 + 0.0001*
m.x148*m.x44 + 0.0001*m.x148*m.x45 + 0.0001*m.x148*m.x46 + 0.0001*m.x148*m.x47 + 0.0001*m.x148*
m.x48 + 0.0001*m.x148*m.x49 + 0.0001*m.x148*m.x50 + 0.0001*m.x148*m.x51 + 0.0001*m.x148*m.x52 +
0.0001*m.x148*m.x53 + 0.0001*m.x148*m.x54 + 0.0001*m.x148*m.x55 + 0.0001*m.x148*m.x56 + 0.0001*
m.x148*m.x57 + 0.0001*m.x148*m.x58 + 0.0001*m.x148*m.x59 + 0.0001*m.x148*m.x60 + 0.0001*m.x148*
m.x61 + 0.0001*m.x148*m.x62 + 0.0001*m.x148*m.x63 + 0.0001*m.x148*m.x64 + 0.0001*m.x148*m.x65 +
0.0001*m.x148*m.x66 + 0.0001*m.x148*m.x67 + 0.0001*m.x148*m.x68 + 0.0001*m.x148*m.x69 + 0.0001*
m.x148*m.x70 + 0.0001*m.x148*m.x71 + 0.0001*m.x148*m.x72 + 0.0001*m.x148*m.x73 + 0.0001*m.x148*
m.x74 + 0.0001*m.x148*m.x75 + 0.0001*m.x148*m.x76 + 1.29968892387316*m.x148*m.x77 + 0.0001*m.x148
*m.x78 + 0.0001*m.x148*m.x79 + 0.0001*m.x148*m.x80 + 0.0001*m.x148*m.x81 + 0.0001*m.x148*m.x82 +
0.0001*m.x148*m.x83 + 0.0001*m.x148*m.x84 + 0.0001*m.x148*m.x85 + 0.0001*m.x148*m.x86 + 0.0001*
m.x148*m.x87 + 0.0001*m.x148*m.x88 + 0.0001*m.x148*m.x89 + 0.0001*m.x148*m.x90 + 0.0001*m.x148*
m.x91 + 0.0001*m.x148*m.x92 + 0.0001*m.x148*m.x93 + 0.0001*m.x148*m.x94 + 0.0001*m.x148*m.x95 +
0.0001*m.x148*m.x96 + 0.0001*m.x148*m.x97 + 0.0001*m.x148*m.x98 + 0.0001*m.x148*m.x99 + 0.0001*
m.x148*m.x100 + 0.0001*m.x148*m.x101 + 0.0001*m.x148*m.x102 + 0.0001*m.x148*m.x103 + 0.0001*
m.x148*m.x104 + 0.0001*m.x148*m.x105 + 0.0001*m.x148*m.x106 + 0.0001*m.x148*m.x107 + 0.0001*
m.x148*m.x108 + 0.0001*m.x148*m.x109 + 0.0001*m.x148*m.x110 + 0.0001*m.x148*m.x111 + 0.0001*
m.x148*m.x112 + 0.0001*m.x148*m.x113 + 0.0001*m.x148*m.x114 + 0.0001*m.x148*m.x115 + 0.0001*
m.x148*m.x116 + 0.0001*m.x148*m.x117 + 0.0001*m.x148*m.x118 + 0.0001*m.x148*m.x119 + 0.0001*
m.x148*m.x120 + 0.0001*m.x148*m.x121 + 5.98091594661548*m.x148*m.x122 + 0.0001*m.x148*m.x123 +
0.0001*m.x148*m.x124 + 0.0001*m.x148*m.x125 + 0.0001*m.x148*m.x126 + 0.0001*m.x148*m.x127 +
0.0001*m.x148*m.x128 + 0.0001*m.x148*m.x129 + 0.0001*m.x148*m.x130 + 0.0001*m.x148*m.x131 +
0.0001*m.x148*m.x132 + 0.0001*m.x148*m.x133 + 0.0001*m.x148*m.x134 + 0.0001*m.x148*m.x135 +
0.0001*m.x148*m.x136 + 0.0001*m.x148*m.x137 + 0.0001*m.x148*m.x138 + 0.0001*m.x148*m.x139 +
0.0001*m.x148*m.x140 + 0.0001*m.x148*m.x141 + 0.0001*m.x148*m.x142 + 0.0001*m.x148*m.x143 +
0.0001*m.x148*m.x144 + 0.0001*m.x148*m.x145 + 0.0001*m.x148*m.x146 + 0.0001*m.x148*m.x147 +
9.01622890790513*m.x148**2 + 0.0001*m.x148*m.x149 + 0.0001*m.x148*m.x150 + 0.0001*m.x148*m.x151
+ 0.0001*m.x148*m.x152 + 0.0001*m.x148*m.x153 + 0.0001*m.x148*m.x154 + 0.0001*m.x148*m.x155 +
0.0001*m.x148*m.x156 + 0.0001*m.x148*m.x157 + 0.0001*m.x148*m.x158 + 0.0001*m.x148*m.x159 +
0.0001*m.x148*m.x160 + 0.0001*m.x148*m.x161 + 0.0001*m.x148*m.x162 + 5.5395442897713*m.x148*
m.x163 + 0.0001*m.x148*m.x164 + 0.0001*m.x148*m.x165 + 0.0001*m.x148*m.x166 + 0.0001*m.x148*
m.x167 + 0.0001*m.x148*m.x168 + 0.0001*m.x148*m.x169 + 0.0001*m.x148*m.x170 + 0.0001*m.x148*
m.x171 + 0.0001*m.x148*m.x172 + 0.0001*m.x148*m.x173 + 0.0001*m.x148*m.x174 + 0.0001*m.x148*
m.x175 + 0.0001*m.x148*m.x176 + 0.0001*m.x148*m.x177 + 0.0001*m.x148*m.x178 + 0.0001*m.x148*
m.x179 + 0.0001*m.x148*m.x180 + 0.0001*m.x148*m.x181 + 0.0001*m.x148*m.x182 + 0.0001*m.x148*
m.x183 + 0.0001*m.x148*m.x184 + 0.0001*m.x148*m.x185 + 0.0001*m.x149*m.x1 + 0.0001*m.x149*m.x2 +
0.0001*m.x149*m.x3 + 0.0001*m.x149*m.x4 + 0.0001*m.x149*m.x5 + 0.0001*m.x149*m.x6 + 0.0001*m.x149
*m.x7 + 0.0001*m.x149*m.x8 + 0.0001*m.x149*m.x9 + 0.0001*m.x149*m.x10 + 0.0001*m.x149*m.x11 +
0.0001*m.x149*m.x12 + 0.0001*m.x149*m.x13 + 0.0001*m.x149*m.x14 + 0.0001*m.x149*m.x15 + 0.0001*
m.x149*m.x16 + 0.0001*m.x149*m.x17 + 0.0001*m.x149*m.x18 + 0.0001*m.x149*m.x19 + 0.0001*m.x149*
m.x20 + 0.0001*m.x149*m.x21 + 0.0001*m.x149*m.x22 + 0.0001*m.x149*m.x23 + 0.0001*m.x149*m.x24 +
0.0001*m.x149*m.x25 + 0.0001*m.x149*m.x26 + 0.0001*m.x149*m.x27 + 0.0001*m.x149*m.x28 + 0.0001*
m.x149*m.x29 + 0.0001*m.x149*m.x30 + 0.0001*m.x149*m.x31 + 0.0001*m.x149*m.x32 + 0.0001*m.x149*
m.x33 + 0.0001*m.x149*m.x34 + 0.0001*m.x149*m.x35 + 0.0001*m.x149*m.x36 + 0.0001*m.x149*m.x37 +
0.0001*m.x149*m.x38 + 0.0001*m.x149*m.x39 + 0.0001*m.x149*m.x40 + 0.0001*m.x149*m.x41 + 0.0001*
m.x149*m.x42 + 0.0001*m.x149*m.x43 + 0.0001*m.x149*m.x44 + 0.0001*m.x149*m.x45 + 0.0001*m.x149*
m.x46 + 0.0001*m.x149*m.x47 + 0.0001*m.x149*m.x48 + 0.0001*m.x149*m.x49 + 0.0001*m.x149*m.x50 +
0.0001*m.x149*m.x51 + 0.0001*m.x149*m.x52 + 0.0001*m.x149*m.x53 + 0.0001*m.x149*m.x54 + 0.0001*
m.x149*m.x55 + 0.0001*m.x149*m.x56 + 0.0001*m.x149*m.x57 + 0.0001*m.x149*m.x58 + 0.0001*m.x149*
m.x59 + 0.0001*m.x149*m.x60 + 0.0001*m.x149*m.x61 + 0.0001*m.x149*m.x62 + 0.0001*m.x149*m.x63 +
0.0001*m.x149*m.x64 + 0.0001*m.x149*m.x65 + 0.0001*m.x149*m.x66 + 0.0001*m.x149*m.x67 + 0.0001*
m.x149*m.x68 + 0.0001*m.x149*m.x69 + 0.0001*m.x149*m.x70 + 0.0001*m.x149*m.x71 + 0.0001*m.x149*
m.x72 + 0.0001*m.x149*m.x73 + 0.0001*m.x149*m.x74 + 0.0001*m.x149*m.x75 + 0.0001*m.x149*m.x76 +
0.0001*m.x149*m.x77 + 1.21137656774799*m.x149*m.x78 + 0.0001*m.x149*m.x79 + 0.0001*m.x149*m.x80
+ 0.0001*m.x149*m.x81 + 0.0001*m.x149*m.x82 + 0.0001*m.x149*m.x83 + 0.0001*m.x149*m.x84 + 0.0001
*m.x149*m.x85 + 0.0001*m.x149*m.x86 + 0.0001*m.x149*m.x87 + 0.0001*m.x149*m.x88 + 0.0001*m.x149*
m.x89 + 0.0001*m.x149*m.x90 + 0.0001*m.x149*m.x91 + 0.0001*m.x149*m.x92 + 0.0001*m.x149*m.x93 +
0.0001*m.x149*m.x94 + 0.0001*m.x149*m.x95 + 0.0001*m.x149*m.x96 + 0.0001*m.x149*m.x97 + 0.0001*
m.x149*m.x98 + 0.0001*m.x149*m.x99 + 0.0001*m.x149*m.x100 + 0.0001*m.x149*m.x101 + 0.0001*m.x149*
m.x102 + 0.0001*m.x149*m.x103 + 0.0001*m.x149*m.x104 + 0.0001*m.x149*m.x105 + 0.0001*m.x149*
m.x106 + 0.0001*m.x149*m.x107 + 0.0001*m.x149*m.x108 + 0.0001*m.x149*m.x109 + 0.0001*m.x149*
m.x110 + 0.0001*m.x149*m.x111 + 0.0001*m.x149*m.x112 + 0.0001*m.x149*m.x113 + 0.0001*m.x149*
m.x114 + 0.0001*m.x149*m.x115 + 0.0001*m.x149*m.x116 + 0.0001*m.x149*m.x117 + 0.0001*m.x149*
m.x118 + 0.0001*m.x149*m.x119 + 0.0001*m.x149*m.x120 + 0.0001*m.x149*m.x121 + 0.0001*m.x149*
m.x122 + 5.98091594661548*m.x149*m.x123 + 0.0001*m.x149*m.x124 + 0.0001*m.x149*m.x125 + 0.0001*
m.x149*m.x126 + 0.0001*m.x149*m.x127 + 0.0001*m.x149*m.x128 + 0.0001*m.x149*m.x129 + 0.0001*
m.x149*m.x130 + 0.0001*m.x149*m.x131 + 0.0001*m.x149*m.x132 + 0.0001*m.x149*m.x133 + 0.0001*
m.x149*m.x134 + 0.0001*m.x149*m.x135 + 0.0001*m.x149*m.x136 + 0.0001*m.x149*m.x137 + 0.0001*
m.x149*m.x138 + 0.0001*m.x149*m.x139 + 0.0001*m.x149*m.x140 + 0.0001*m.x149*m.x141 + 0.0001*
m.x149*m.x142 + 0.0001*m.x149*m.x143 + 0.0001*m.x149*m.x144 + 0.0001*m.x149*m.x145 + 0.0001*
m.x149*m.x146 + 0.0001*m.x149*m.x147 + 0.0001*m.x149*m.x148 + 9.01622890790513*m.x149**2 + 0.0001
*m.x149*m.x150 + 0.0001*m.x149*m.x151 + 0.0001*m.x149*m.x152 + 0.0001*m.x149*m.x153 + 0.0001*
m.x149*m.x154 + 0.0001*m.x149*m.x155 + 0.0001*m.x149*m.x156 + 0.0001*m.x149*m.x157 + 0.0001*
m.x149*m.x158 + 0.0001*m.x149*m.x159 + 0.0001*m.x149*m.x160 + 0.0001*m.x149*m.x161 + 0.0001*
m.x149*m.x162 + 0.0001*m.x149*m.x163 + 5.9608785151742*m.x149*m.x164 + 0.0001*m.x149*m.x165 +
0.0001*m.x149*m.x166 + 0.0001*m.x149*m.x167 + 0.0001*m.x149*m.x168 + 0.0001*m.x149*m.x169 +
0.0001*m.x149*m.x170 + 0.0001*m.x149*m.x171 + 0.0001*m.x149*m.x172 + 0.0001*m.x149*m.x173 +
0.0001*m.x149*m.x174 + 0.0001*m.x149*m.x175 + 0.0001*m.x149*m.x176 + 0.0001*m.x149*m.x177 +
0.0001*m.x149*m.x178 + 0.0001*m.x149*m.x179 + 0.0001*m.x149*m.x180 + 0.0001*m.x149*m.x181 +
0.0001*m.x149*m.x182 + 0.0001*m.x149*m.x183 + 0.0001*m.x149*m.x184 + 0.0001*m.x149*m.x185 +
0.0001*m.x150*m.x1 + 0.0001*m.x150*m.x2 + 0.0001*m.x150*m.x3 + 0.0001*m.x150*m.x4 + 0.0001*m.x150
*m.x5 + 0.0001*m.x150*m.x6 + 0.0001*m.x150*m.x7 + 0.0001*m.x150*m.x8 + 0.0001*m.x150*m.x9 +
0.0001*m.x150*m.x10 + 0.0001*m.x150*m.x11 + 0.0001*m.x150*m.x12 + 0.0001*m.x150*m.x13 + 0.0001*
m.x150*m.x14 + 0.0001*m.x150*m.x15 + 0.0001*m.x150*m.x16 + 0.0001*m.x150*m.x17 + 0.0001*m.x150*
m.x18 + 0.0001*m.x150*m.x19 + 0.0001*m.x150*m.x20 + 0.0001*m.x150*m.x21 + 0.0001*m.x150*m.x22 +
0.0001*m.x150*m.x23 + 0.0001*m.x150*m.x24 + 0.0001*m.x150*m.x25 + 0.0001*m.x150*m.x26 + 0.0001*
m.x150*m.x27 + 0.0001*m.x150*m.x28 + 0.0001*m.x150*m.x29 + 0.0001*m.x150*m.x30 + 0.0001*m.x150*
m.x31 + 0.0001*m.x150*m.x32 + 0.0001*m.x150*m.x33 + 0.0001*m.x150*m.x34 + 0.0001*m.x150*m.x35 +
0.0001*m.x150*m.x36 + 0.0001*m.x150*m.x37 + 0.0001*m.x150*m.x38 + 0.0001*m.x150*m.x39 + 0.0001*
m.x150*m.x40 + 0.0001*m.x150*m.x41 + 0.0001*m.x150*m.x42 + 0.0001*m.x150*m.x43 + 0.0001*m.x150*
m.x44 + 0.0001*m.x150*m.x45 + 0.0001*m.x150*m.x46 + 0.0001*m.x150*m.x47 + 0.0001*m.x150*m.x48 +
0.0001*m.x150*m.x49 + 0.0001*m.x150*m.x50 + 0.0001*m.x150*m.x51 + 0.0001*m.x150*m.x52 + 0.0001*
m.x150*m.x53 + 0.0001*m.x150*m.x54 + 0.0001*m.x150*m.x55 + 0.0001*m.x150*m.x56 + 0.0001*m.x150*
m.x57 + 0.0001*m.x150*m.x58 + 0.0001*m.x150*m.x59 + 0.0001*m.x150*m.x60 + 0.0001*m.x150*m.x61 +
0.0001*m.x150*m.x62 + 0.0001*m.x150*m.x63 + 0.0001*m.x150*m.x64 + 0.0001*m.x150*m.x65 + 0.0001*
m.x150*m.x66 + 0.0001*m.x150*m.x67 + 0.0001*m.x150*m.x68 + 0.0001*m.x150*m.x69 + 0.0001*m.x150*
m.x70 + 0.0001*m.x150*m.x71 + 0.0001*m.x150*m.x72 + 0.0001*m.x150*m.x73 + 0.0001*m.x150*m.x74 +
0.0001*m.x150*m.x75 + 0.0001*m.x150*m.x76 + 0.0001*m.x150*m.x77 + 0.0001*m.x150*m.x78 +
1.15256777331454*m.x150*m.x79 + 0.0001*m.x150*m.x80 + 0.0001*m.x150*m.x81 + 0.0001*m.x150*m.x82
+ 0.0001*m.x150*m.x83 + 0.0001*m.x150*m.x84 + 0.0001*m.x150*m.x85 + 0.0001*m.x150*m.x86 + 0.0001
*m.x150*m.x87 + 0.0001*m.x150*m.x88 + 0.0001*m.x150*m.x89 + 0.0001*m.x150*m.x90 + 0.0001*m.x150*
m.x91 + 0.0001*m.x150*m.x92 + 0.0001*m.x150*m.x93 + 0.0001*m.x150*m.x94 + 0.0001*m.x150*m.x95 +
0.0001*m.x150*m.x96 + 0.0001*m.x150*m.x97 + 0.0001*m.x150*m.x98 + 0.0001*m.x150*m.x99 + 0.0001*
m.x150*m.x100 + 0.0001*m.x150*m.x101 + 0.0001*m.x150*m.x102 + 0.0001*m.x150*m.x103 + 0.0001*
m.x150*m.x104 + 0.0001*m.x150*m.x105 + 0.0001*m.x150*m.x106 + 0.0001*m.x150*m.x107 + 0.0001*
m.x150*m.x108 + 0.0001*m.x150*m.x109 + 0.0001*m.x150*m.x110 + 0.0001*m.x150*m.x111 + 0.0001*
m.x150*m.x112 + 0.0001*m.x150*m.x113 + 0.0001*m.x150*m.x114 + 0.0001*m.x150*m.x115 + 0.0001*
m.x150*m.x116 + 0.0001*m.x150*m.x117 + 0.0001*m.x150*m.x118 + 0.0001*m.x150*m.x119 + 0.0001*
m.x150*m.x120 + 0.0001*m.x150*m.x121 + 0.0001*m.x150*m.x122 + 0.0001*m.x150*m.x123 +
5.69054082922776*m.x150*m.x124 + 0.0001*m.x150*m.x125 + 0.0001*m.x150*m.x126 + 0.0001*m.x150*
m.x127 + 0.0001*m.x150*m.x128 + 0.0001*m.x150*m.x129 + 0.0001*m.x150*m.x130 + 0.0001*m.x150*
m.x131 + 0.0001*m.x150*m.x132 + 0.0001*m.x150*m.x133 + 0.0001*m.x150*m.x134 + 0.0001*m.x150*
m.x135 + 0.0001*m.x150*m.x136 + 0.0001*m.x150*m.x137 + 0.0001*m.x150*m.x138 + 0.0001*m.x150*
m.x139 + 0.0001*m.x150*m.x140 + 0.0001*m.x150*m.x141 + 0.0001*m.x150*m.x142 + 0.0001*m.x150*
m.x143 + 0.0001*m.x150*m.x144 + 0.0001*m.x150*m.x145 + 0.0001*m.x150*m.x146 + 0.0001*m.x150*
m.x147 + 0.0001*m.x150*m.x148 + 0.0001*m.x150*m.x149 + 8.57848604583005*m.x150**2 + 0.0001*m.x150
*m.x151 + 0.0001*m.x150*m.x152 + 0.0001*m.x150*m.x153 + 0.0001*m.x150*m.x154 + 0.0001*m.x150*
m.x155 + 0.0001*m.x150*m.x156 + 0.0001*m.x150*m.x157 + 0.0001*m.x150*m.x158 + 0.0001*m.x150*
m.x159 + 0.0001*m.x150*m.x160 + 0.0001*m.x150*m.x161 + 0.0001*m.x150*m.x162 + 0.0001*m.x150*
m.x163 + 0.0001*m.x150*m.x164 + 5.67147623687046*m.x150*m.x165 + 0.0001*m.x150*m.x166 + 0.0001*
m.x150*m.x167 + 0.0001*m.x150*m.x168 + 0.0001*m.x150*m.x169 + 0.0001*m.x150*m.x170 + 0.0001*
m.x150*m.x171 + 0.0001*m.x150*m.x172 + 0.0001*m.x150*m.x173 + 0.0001*m.x150*m.x174 + 0.0001*
m.x150*m.x175 + 0.0001*m.x150*m.x176 + 0.0001*m.x150*m.x177 + 0.0001*m.x150*m.x178 + 0.0001*
m.x150*m.x179 + 0.0001*m.x150*m.x180 + 0.0001*m.x150*m.x181 + 0.0001*m.x150*m.x182 + 0.0001*
m.x150*m.x183 + 0.0001*m.x150*m.x184 + 0.0001*m.x150*m.x185 + 0.0001*m.x151*m.x1 + 0.0001*m.x151*
m.x2 + 0.0001*m.x151*m.x3 + 0.0001*m.x151*m.x4 + 0.0001*m.x151*m.x5 + 0.0001*m.x151*m.x6 + 0.0001
*m.x151*m.x7 + 0.0001*m.x151*m.x8 + 0.0001*m.x151*m.x9 + 0.0001*m.x151*m.x10 + 0.0001*m.x151*
m.x11 + 0.0001*m.x151*m.x12 + 0.0001*m.x151*m.x13 + 0.0001*m.x151*m.x14 + 0.0001*m.x151*m.x15 +
0.0001*m.x151*m.x16 + 0.0001*m.x151*m.x17 + 0.0001*m.x151*m.x18 + 0.0001*m.x151*m.x19 + 0.0001*
m.x151*m.x20 + 0.0001*m.x151*m.x21 + 0.0001*m.x151*m.x22 + 0.0001*m.x151*m.x23 + 0.0001*m.x151*
m.x24 + 0.0001*m.x151*m.x25 + 0.0001*m.x151*m.x26 + 0.0001*m.x151*m.x27 + 0.0001*m.x151*m.x28 +
0.0001*m.x151*m.x29 + 0.0001*m.x151*m.x30 + 0.0001*m.x151*m.x31 + 0.0001*m.x151*m.x32 + 0.0001*
m.x151*m.x33 + 0.0001*m.x151*m.x34 + 0.0001*m.x151*m.x35 + 0.0001*m.x151*m.x36 + 0.0001*m.x151*
m.x37 + 0.0001*m.x151*m.x38 + 0.0001*m.x151*m.x39 + 0.0001*m.x151*m.x40 + 0.0001*m.x151*m.x41 +
0.0001*m.x151*m.x42 + 0.0001*m.x151*m.x43 + 0.0001*m.x151*m.x44 + 0.0001*m.x151*m.x45 + 0.0001*
m.x151*m.x46 + 0.0001*m.x151*m.x47 + 0.0001*m.x151*m.x48 + 0.0001*m.x151*m.x49 + 0.0001*m.x151*
m.x50 + 0.0001*m.x151*m.x51 + 0.0001*m.x151*m.x52 + 0.0001*m.x151*m.x53 + 0.0001*m.x151*m.x54 +
0.0001*m.x151*m.x55 + 0.0001*m.x151*m.x56 + 0.0001*m.x151*m.x57 + 0.0001*m.x151*m.x58 + 0.0001*
m.x151*m.x59 + 0.0001*m.x151*m.x60 + 0.0001*m.x151*m.x61 + 0.0001*m.x151*m.x62 + 0.0001*m.x151*
m.x63 + 0.0001*m.x151*m.x64 + 0.0001*m.x151*m.x65 + 0.0001*m.x151*m.x66 + 0.0001*m.x151*m.x67 +
0.0001*m.x151*m.x68 + 0.0001*m.x151*m.x69 + 0.0001*m.x151*m.x70 + 0.0001*m.x151*m.x71 + 0.0001*
m.x151*m.x72 + 0.0001*m.x151*m.x73 + 0.0001*m.x151*m.x74 + 0.0001*m.x151*m.x75 + 0.0001*m.x151*
m.x76 + 0.0001*m.x151*m.x77 + 0.0001*m.x151*m.x78 + 0.0001*m.x151*m.x79 + 1.20913493689189*m.x151
*m.x80 + 0.0001*m.x151*m.x81 + 0.0001*m.x151*m.x82 + 0.0001*m.x151*m.x83 + 0.0001*m.x151*m.x84 +
0.0001*m.x151*m.x85 + 0.0001*m.x151*m.x86 + 0.0001*m.x151*m.x87 + 0.0001*m.x151*m.x88 + 0.0001*
m.x151*m.x89 + 0.0001*m.x151*m.x90 + 0.0001*m.x151*m.x91 + 0.0001*m.x151*m.x92 + 0.0001*m.x151*
m.x93 + 0.0001*m.x151*m.x94 + 0.0001*m.x151*m.x95 + 0.0001*m.x151*m.x96 + 0.0001*m.x151*m.x97 +
0.0001*m.x151*m.x98 + 0.0001*m.x151*m.x99 + 0.0001*m.x151*m.x100 + 0.0001*m.x151*m.x101 + 0.0001*
m.x151*m.x102 + 0.0001*m.x151*m.x103 + 0.0001*m.x151*m.x104 + 0.0001*m.x151*m.x105 + 0.0001*
m.x151*m.x106 + 0.0001*m.x151*m.x107 + 0.0001*m.x151*m.x108 + 0.0001*m.x151*m.x109 + 0.0001*
m.x151*m.x110 + 0.0001*m.x151*m.x111 + 0.0001*m.x151*m.x112 + 0.0001*m.x151*m.x113 + 0.0001*
m.x151*m.x114 + 0.0001*m.x151*m.x115 + 0.0001*m.x151*m.x116 + 0.0001*m.x151*m.x117 + 0.0001*
m.x151*m.x118 + 0.0001*m.x151*m.x119 + 0.0001*m.x151*m.x120 + 0.0001*m.x151*m.x121 + 0.0001*
m.x151*m.x122 + 0.0001*m.x151*m.x123 + 0.0001*m.x151*m.x124 + 7.05569268711518*m.x151*m.x125 +
0.0001*m.x151*m.x126 + 0.0001*m.x151*m.x127 + 0.0001*m.x151*m.x128 + 0.0001*m.x151*m.x129 +
0.0001*m.x151*m.x130 + 0.0001*m.x151*m.x131 + 0.0001*m.x151*m.x132 + 0.0001*m.x151*m.x133 +
0.0001*m.x151*m.x134 + 0.0001*m.x151*m.x135 + 0.0001*m.x151*m.x136 + 0.0001*m.x151*m.x137 +
0.0001*m.x151*m.x138 + 0.0001*m.x151*m.x139 + 0.0001*m.x151*m.x140 + 0.0001*m.x151*m.x141 +
0.0001*m.x151*m.x142 + 0.0001*m.x151*m.x143 + 0.0001*m.x151*m.x144 + 0.0001*m.x151*m.x145 +
0.0001*m.x151*m.x146 + 0.0001*m.x151*m.x147 + 0.0001*m.x151*m.x148 + 0.0001*m.x151*m.x149 +
0.0001*m.x151*m.x150 + 9.98866051152078*m.x151**2 + 0.0001*m.x151*m.x152 + 0.0001*m.x151*m.x153
+ 0.0001*m.x151*m.x154 + 0.0001*m.x151*m.x155 + 0.0001*m.x151*m.x156 + 0.0001*m.x151*m.x157 +
0.0001*m.x151*m.x158 + 0.0001*m.x151*m.x159 + 0.0001*m.x151*m.x160 + 0.0001*m.x151*m.x161 +
0.0001*m.x151*m.x162 + 0.0001*m.x151*m.x163 + 0.0001*m.x151*m.x164 + 0.0001*m.x151*m.x165 +
5.96705343413159*m.x151*m.x166 + 0.0001*m.x151*m.x167 + 0.0001*m.x151*m.x168 + 0.0001*m.x151*
m.x169 + 0.0001*m.x151*m.x170 + 0.0001*m.x151*m.x171 + 0.0001*m.x151*m.x172 + 0.0001*m.x151*
m.x173 + 0.0001*m.x151*m.x174 + 0.0001*m.x151*m.x175 + 0.0001*m.x151*m.x176 + 0.0001*m.x151*
m.x177 + 0.0001*m.x151*m.x178 + 0.0001*m.x151*m.x179 + 0.0001*m.x151*m.x180 + 0.0001*m.x151*
m.x181 + 0.0001*m.x151*m.x182 + 0.0001*m.x151*m.x183 + 0.0001*m.x151*m.x184 + 0.0001*m.x151*
m.x185 + 0.0001*m.x152*m.x1 + 0.0001*m.x152*m.x2 + 0.0001*m.x152*m.x3 + 0.0001*m.x152*m.x4 +
0.0001*m.x152*m.x5 + 0.0001*m.x152*m.x6 + 0.0001*m.x152*m.x7 + 0.0001*m.x152*m.x8 + 0.0001*m.x152
*m.x9 + 0.0001*m.x152*m.x10 + 0.0001*m.x152*m.x11 + 0.0001*m.x152*m.x12 + 0.0001*m.x152*m.x13 +
0.0001*m.x152*m.x14 + 0.0001*m.x152*m.x15 + 0.0001*m.x152*m.x16 + 0.0001*m.x152*m.x17 + 0.0001*
m.x152*m.x18 + 0.0001*m.x152*m.x19 + 0.0001*m.x152*m.x20 + 0.0001*m.x152*m.x21 + 0.0001*m.x152*
m.x22 + 0.0001*m.x152*m.x23 + 0.0001*m.x152*m.x24 + 0.0001*m.x152*m.x25 + 0.0001*m.x152*m.x26 +
0.0001*m.x152*m.x27 + 0.0001*m.x152*m.x28 + 0.0001*m.x152*m.x29 + 0.0001*m.x152*m.x30 + 0.0001*
m.x152*m.x31 + 0.0001*m.x152*m.x32 + 0.0001*m.x152*m.x33 + 0.0001*m.x152*m.x34 + 0.0001*m.x152*
m.x35 + 0.0001*m.x152*m.x36 + 0.0001*m.x152*m.x37 + 0.0001*m.x152*m.x38 + 0.0001*m.x152*m.x39 +
0.0001*m.x152*m.x40 + 0.0001*m.x152*m.x41 + 0.0001*m.x152*m.x42 + 0.0001*m.x152*m.x43 + 0.0001*
m.x152*m.x44 + 0.0001*m.x152*m.x45 + 0.0001*m.x152*m.x46 + 0.0001*m.x152*m.x47 + 0.0001*m.x152*
m.x48 + 0.0001*m.x152*m.x49 + 0.0001*m.x152*m.x50 + 0.0001*m.x152*m.x51 + 0.0001*m.x152*m.x52 +
0.0001*m.x152*m.x53 + 0.0001*m.x152*m.x54 + 0.0001*m.x152*m.x55 + 0.0001*m.x152*m.x56 + 0.0001*
m.x152*m.x57 + 0.0001*m.x152*m.x58 + 0.0001*m.x152*m.x59 + 0.0001*m.x152*m.x60 + 0.0001*m.x152*
m.x61 + 0.0001*m.x152*m.x62 + 0.0001*m.x152*m.x63 + 0.0001*m.x152*m.x64 + 0.0001*m.x152*m.x65 +
0.0001*m.x152*m.x66 + 0.0001*m.x152*m.x67 + 0.0001*m.x152*m.x68 + 0.0001*m.x152*m.x69 + 0.0001*
m.x152*m.x70 + 0.0001*m.x152*m.x71 + 0.0001*m.x152*m.x72 + 0.0001*m.x152*m.x73 + 0.0001*m.x152*
m.x74 + 0.0001*m.x152*m.x75 + 0.0001*m.x152*m.x76 + 0.0001*m.x152*m.x77 + 0.0001*m.x152*m.x78 +
0.0001*m.x152*m.x79 + 0.0001*m.x152*m.x80 + 1.25084164368406*m.x152*m.x81 + 0.0001*m.x152*m.x82
+ 0.0001*m.x152*m.x83 + 0.0001*m.x152*m.x84 + 0.0001*m.x152*m.x85 + 0.0001*m.x152*m.x86 + 0.0001
*m.x152*m.x87 + 0.0001*m.x152*m.x88 + 0.0001*m.x152*m.x89 + 0.0001*m.x152*m.x90 + 0.0001*m.x152*
m.x91 + 0.0001*m.x152*m.x92 + 0.0001*m.x152*m.x93 + 0.0001*m.x152*m.x94 + 0.0001*m.x152*m.x95 +
0.0001*m.x152*m.x96 + 0.0001*m.x152*m.x97 + 0.0001*m.x152*m.x98 + 0.0001*m.x152*m.x99 + 0.0001*
m.x152*m.x100 + 0.0001*m.x152*m.x101 + 0.0001*m.x152*m.x102 + 0.0001*m.x152*m.x103 + 0.0001*
m.x152*m.x104 + 0.0001*m.x152*m.x105 + 0.0001*m.x152*m.x106 + 0.0001*m.x152*m.x107 + 0.0001*
m.x152*m.x108 + 0.0001*m.x152*m.x109 + 0.0001*m.x152*m.x110 + 0.0001*m.x152*m.x111 + 0.0001*
m.x152*m.x112 + 0.0001*m.x152*m.x113 + 0.0001*m.x152*m.x114 + 0.0001*m.x152*m.x115 + 0.0001*
m.x152*m.x116 + 0.0001*m.x152*m.x117 + 0.0001*m.x152*m.x118 + 0.0001*m.x152*m.x119 + 0.0001*
m.x152*m.x120 + 0.0001*m.x152*m.x121 + 0.0001*m.x152*m.x122 + 0.0001*m.x152*m.x123 + 0.0001*
m.x152*m.x124 + 0.0001*m.x152*m.x125 + 7.05569268711518*m.x152*m.x126 + 0.0001*m.x152*m.x127 +
0.0001*m.x152*m.x128 + 0.0001*m.x152*m.x129 + 0.0001*m.x152*m.x130 + 0.0001*m.x152*m.x131 +
0.0001*m.x152*m.x132 + 0.0001*m.x152*m.x133 + 0.0001*m.x152*m.x134 + 0.0001*m.x152*m.x135 +
0.0001*m.x152*m.x136 + 0.0001*m.x152*m.x137 + 0.0001*m.x152*m.x138 + 0.0001*m.x152*m.x139 +
0.0001*m.x152*m.x140 + 0.0001*m.x152*m.x141 + 0.0001*m.x152*m.x142 + 0.0001*m.x152*m.x143 +
0.0001*m.x152*m.x144 + 0.0001*m.x152*m.x145 + 0.0001*m.x152*m.x146 + 0.0001*m.x152*m.x147 +
0.0001*m.x152*m.x148 + 0.0001*m.x152*m.x149 + 0.0001*m.x152*m.x150 + 0.0001*m.x152*m.x151 +
9.98866051152078*m.x152**2 + 0.0001*m.x152*m.x153 + 0.0001*m.x152*m.x154 + 0.0001*m.x152*m.x155
+ 0.0001*m.x152*m.x156 + 0.0001*m.x152*m.x157 + 0.0001*m.x152*m.x158 + 0.0001*m.x152*m.x159 +
0.0001*m.x152*m.x160 + 0.0001*m.x152*m.x161 + 0.0001*m.x152*m.x162 + 0.0001*m.x152*m.x163 +
0.0001*m.x152*m.x164 + 0.0001*m.x152*m.x165 + 0.0001*m.x152*m.x166 + 6.05530167878749*m.x152*
m.x167 + 0.0001*m.x152*m.x168 + 0.0001*m.x152*m.x169 + 0.0001*m.x152*m.x170 + 0.0001*m.x152*
m.x171 + 0.0001*m.x152*m.x172 + 0.0001*m.x152*m.x173 + 0.0001*m.x152*m.x174 + 0.0001*m.x152*
m.x175 + 0.0001*m.x152*m.x176 + 0.0001*m.x152*m.x177 + 0.0001*m.x152*m.x178 + 0.0001*m.x152*
m.x179 + 0.0001*m.x152*m.x180 + 0.0001*m.x152*m.x181 + 0.0001*m.x152*m.x182 + 0.0001*m.x152*
m.x183 + 0.0001*m.x152*m.x184 + 0.0001*m.x152*m.x185 + 0.0001*m.x153*m.x1 + 0.0001*m.x153*m.x2 +
0.0001*m.x153*m.x3 + 0.0001*m.x153*m.x4 + 0.0001*m.x153*m.x5 + 0.0001*m.x153*m.x6 + 0.0001*m.x153
*m.x7 + 0.0001*m.x153*m.x8 + 0.0001*m.x153*m.x9 + 0.0001*m.x153*m.x10 + 0.0001*m.x153*m.x11 +
0.0001*m.x153*m.x12 + 0.0001*m.x153*m.x13 + 0.0001*m.x153*m.x14 + 0.0001*m.x153*m.x15 + 0.0001*
m.x153*m.x16 + 0.0001*m.x153*m.x17 + 0.0001*m.x153*m.x18 + 0.0001*m.x153*m.x19 + 0.0001*m.x153*
m.x20 + 0.0001*m.x153*m.x21 + 0.0001*m.x153*m.x22 + 0.0001*m.x153*m.x23 + 0.0001*m.x153*m.x24 +
0.0001*m.x153*m.x25 + 0.0001*m.x153*m.x26 + 0.0001*m.x153*m.x27 + 0.0001*m.x153*m.x28 + 0.0001*
m.x153*m.x29 + 0.0001*m.x153*m.x30 + 0.0001*m.x153*m.x31 + 0.0001*m.x153*m.x32 + 0.0001*m.x153*
m.x33 + 0.0001*m.x153*m.x34 + 0.0001*m.x153*m.x35 + 0.0001*m.x153*m.x36 + 0.0001*m.x153*m.x37 +
0.0001*m.x153*m.x38 + 0.0001*m.x153*m.x39 + 0.0001*m.x153*m.x40 + 0.0001*m.x153*m.x41 + 0.0001*
m.x153*m.x42 + 0.0001*m.x153*m.x43 + 0.0001*m.x153*m.x44 + 0.0001*m.x153*m.x45 + 0.0001*m.x153*
m.x46 + 0.0001*m.x153*m.x47 + 0.0001*m.x153*m.x48 + 0.0001*m.x153*m.x49 + 0.0001*m.x153*m.x50 +
0.0001*m.x153*m.x51 + 0.0001*m.x153*m.x52 + 0.0001*m.x153*m.x53 + 0.0001*m.x153*m.x54 + 0.0001*
m.x153*m.x55 + 0.0001*m.x153*m.x56 + 0.0001*m.x153*m.x57 + 0.0001*m.x153*m.x58 + 0.0001*m.x153*
m.x59 + 0.0001*m.x153*m.x60 + 0.0001*m.x153*m.x61 + 0.0001*m.x153*m.x62 + 0.0001*m.x153*m.x63 +
0.0001*m.x153*m.x64 + 0.0001*m.x153*m.x65 + 0.0001*m.x153*m.x66 + 0.0001*m.x153*m.x67 + 0.0001*
m.x153*m.x68 + 0.0001*m.x153*m.x69 + 0.0001*m.x153*m.x70 + 0.0001*m.x153*m.x71 + 0.0001*m.x153*
m.x72 + 0.0001*m.x153*m.x73 + 0.0001*m.x153*m.x74 + 0.0001*m.x153*m.x75 + 0.0001*m.x153*m.x76 +
0.0001*m.x153*m.x77 + 0.0001*m.x153*m.x78 + 0.0001*m.x153*m.x79 + 0.0001*m.x153*m.x80 + 0.0001*
m.x153*m.x81 + 1.16455074109673*m.x153*m.x82 + 0.0001*m.x153*m.x83 + 0.0001*m.x153*m.x84 + 0.0001
*m.x153*m.x85 + 0.0001*m.x153*m.x86 + 0.0001*m.x153*m.x87 + 0.0001*m.x153*m.x88 + 0.0001*m.x153*
m.x89 + 0.0001*m.x153*m.x90 + 0.0001*m.x153*m.x91 + 0.0001*m.x153*m.x92 + 0.0001*m.x153*m.x93 +
0.0001*m.x153*m.x94 + 0.0001*m.x153*m.x95 + 0.0001*m.x153*m.x96 + 0.0001*m.x153*m.x97 + 0.0001*
m.x153*m.x98 + 0.0001*m.x153*m.x99 + 0.0001*m.x153*m.x100 + 0.0001*m.x153*m.x101 + 0.0001*m.x153*
m.x102 + 0.0001*m.x153*m.x103 + 0.0001*m.x153*m.x104 + 0.0001*m.x153*m.x105 + 0.0001*m.x153*
m.x106 + 0.0001*m.x153*m.x107 + 0.0001*m.x153*m.x108 + 0.0001*m.x153*m.x109 + 0.0001*m.x153*
m.x110 + 0.0001*m.x153*m.x111 + 0.0001*m.x153*m.x112 + 0.0001*m.x153*m.x113 + 0.0001*m.x153*
m.x114 + 0.0001*m.x153*m.x115 + 0.0001*m.x153*m.x116 + 0.0001*m.x153*m.x117 + 0.0001*m.x153*
m.x118 + 0.0001*m.x153*m.x119 + 0.0001*m.x153*m.x120 + 0.0001*m.x153*m.x121 + 0.0001*m.x153*
m.x122 + 0.0001*m.x153*m.x123 + 0.0001*m.x153*m.x124 + 0.0001*m.x153*m.x125 + 0.0001*m.x153*
m.x126 + 6.56891473074487*m.x153*m.x127 + 0.0001*m.x153*m.x128 + 0.0001*m.x153*m.x129 + 0.0001*
m.x153*m.x130 + 0.0001*m.x153*m.x131 + 0.0001*m.x153*m.x132 + 0.0001*m.x153*m.x133 + 0.0001*
m.x153*m.x134 + 0.0001*m.x153*m.x135 + 0.0001*m.x153*m.x136 + 0.0001*m.x153*m.x137 + 0.0001*
m.x153*m.x138 + 0.0001*m.x153*m.x139 + 0.0001*m.x153*m.x140 + 0.0001*m.x153*m.x141 + 0.0001*
m.x153*m.x142 + 0.0001*m.x153*m.x143 + 0.0001*m.x153*m.x144 + 0.0001*m.x153*m.x145 + 0.0001*
m.x153*m.x146 + 0.0001*m.x153*m.x147 + 0.0001*m.x153*m.x148 + 0.0001*m.x153*m.x149 + 0.0001*
m.x153*m.x150 + 0.0001*m.x153*m.x151 + 0.0001*m.x153*m.x152 + 9.29953186018033*m.x153**2 + 0.0001
*m.x153*m.x154 + 0.0001*m.x153*m.x155 + 0.0001*m.x153*m.x156 + 0.0001*m.x153*m.x157 + 0.0001*
m.x153*m.x158 + 0.0001*m.x153*m.x159 + 0.0001*m.x153*m.x160 + 0.0001*m.x153*m.x161 + 0.0001*
m.x153*m.x162 + 0.0001*m.x153*m.x163 + 0.0001*m.x153*m.x164 + 0.0001*m.x153*m.x165 + 0.0001*
m.x153*m.x166 + 0.0001*m.x153*m.x167 + 5.6375424869916*m.x153*m.x168 + 0.0001*m.x153*m.x169 +
0.0001*m.x153*m.x170 + 0.0001*m.x153*m.x171 + 0.0001*m.x153*m.x172 + 0.0001*m.x153*m.x173 +
0.0001*m.x153*m.x174 + 0.0001*m.x153*m.x175 + 0.0001*m.x153*m.x176 + 0.0001*m.x153*m.x177 +
0.0001*m.x153*m.x178 + 0.0001*m.x153*m.x179 + 0.0001*m.x153*m.x180 + 0.0001*m.x153*m.x181 +
0.0001*m.x153*m.x182 + 0.0001*m.x153*m.x183 + 0.0001*m.x153*m.x184 + 0.0001*m.x153*m.x185 +
0.0001*m.x154*m.x1 + 0.0001*m.x154*m.x2 + 0.0001*m.x154*m.x3 + 0.0001*m.x154*m.x4 + 0.0001*m.x154
*m.x5 + 0.0001*m.x154*m.x6 + 0.0001*m.x154*m.x7 + 0.0001*m.x154*m.x8 + 0.0001*m.x154*m.x9 +
0.0001*m.x154*m.x10 + 0.0001*m.x154*m.x11 + 0.0001*m.x154*m.x12 + 0.0001*m.x154*m.x13 + 0.0001*
m.x154*m.x14 + 0.0001*m.x154*m.x15 + 0.0001*m.x154*m.x16 + 0.0001*m.x154*m.x17 + 0.0001*m.x154*
m.x18 + 0.0001*m.x154*m.x19 + 0.0001*m.x154*m.x20 + 0.0001*m.x154*m.x21 + 0.0001*m.x154*m.x22 +
0.0001*m.x154*m.x23 + 0.0001*m.x154*m.x24 + 0.0001*m.x154*m.x25 + 0.0001*m.x154*m.x26 + 0.0001*
m.x154*m.x27 + 0.0001*m.x154*m.x28 + 0.0001*m.x154*m.x29 + 0.0001*m.x154*m.x30 + 0.0001*m.x154*
m.x31 + 0.0001*m.x154*m.x32 + 0.0001*m.x154*m.x33 + 0.0001*m.x154*m.x34 + 0.0001*m.x154*m.x35 +
0.0001*m.x154*m.x36 + 0.0001*m.x154*m.x37 + 0.0001*m.x154*m.x38 + 0.0001*m.x154*m.x39 + 0.0001*
m.x154*m.x40 + 0.0001*m.x154*m.x41 + 0.0001*m.x154*m.x42 + 0.0001*m.x154*m.x43 + 0.0001*m.x154*
m.x44 + 0.0001*m.x154*m.x45 + 0.0001*m.x154*m.x46 + 0.0001*m.x154*m.x47 + 0.0001*m.x154*m.x48 +
0.0001*m.x154*m.x49 + 0.0001*m.x154*m.x50 + 0.0001*m.x154*m.x51 + 0.0001*m.x154*m.x52 + 0.0001*
m.x154*m.x53 + 0.0001*m.x154*m.x54 + 0.0001*m.x154*m.x55 + 0.0001*m.x154*m.x56 + 0.0001*m.x154*
m.x57 + 0.0001*m.x154*m.x58 + 0.0001*m.x154*m.x59 + 0.0001*m.x154*m.x60 + 0.0001*m.x154*m.x61 +
0.0001*m.x154*m.x62 + 0.0001*m.x154*m.x63 + 0.0001*m.x154*m.x64 + 0.0001*m.x154*m.x65 + 0.0001*
m.x154*m.x66 + 0.0001*m.x154*m.x67 + 0.0001*m.x154*m.x68 + 0.0001*m.x154*m.x69 + 0.0001*m.x154*
m.x70 + 0.0001*m.x154*m.x71 + 0.0001*m.x154*m.x72 + 0.0001*m.x154*m.x73 + 0.0001*m.x154*m.x74 +
0.0001*m.x154*m.x75 + 0.0001*m.x154*m.x76 + 0.0001*m.x154*m.x77 + 0.0001*m.x154*m.x78 + 0.0001*
m.x154*m.x79 + 0.0001*m.x154*m.x80 + 0.0001*m.x154*m.x81 + 0.0001*m.x154*m.x82 + 1.24614469444164
*m.x154*m.x83 + 0.0001*m.x154*m.x84 + 0.0001*m.x154*m.x85 + 0.0001*m.x154*m.x86 + 0.0001*m.x154*
m.x87 + 0.0001*m.x154*m.x88 + 0.0001*m.x154*m.x89 + 0.0001*m.x154*m.x90 + 0.0001*m.x154*m.x91 +
0.0001*m.x154*m.x92 + 0.0001*m.x154*m.x93 + 0.0001*m.x154*m.x94 + 0.0001*m.x154*m.x95 + 0.0001*
m.x154*m.x96 + 0.0001*m.x154*m.x97 + 0.0001*m.x154*m.x98 + 0.0001*m.x154*m.x99 + 0.0001*m.x154*
m.x100 + 0.0001*m.x154*m.x101 + 0.0001*m.x154*m.x102 + 0.0001*m.x154*m.x103 + 0.0001*m.x154*
m.x104 + 0.0001*m.x154*m.x105 + 0.0001*m.x154*m.x106 + 0.0001*m.x154*m.x107 + 0.0001*m.x154*
m.x108 + 0.0001*m.x154*m.x109 + 0.0001*m.x154*m.x110 + 0.0001*m.x154*m.x111 + 0.0001*m.x154*
m.x112 + 0.0001*m.x154*m.x113 + 0.0001*m.x154*m.x114 + 0.0001*m.x154*m.x115 + 0.0001*m.x154*
m.x116 + 0.0001*m.x154*m.x117 + 0.0001*m.x154*m.x118 + 0.0001*m.x154*m.x119 + 0.0001*m.x154*
m.x120 + 0.0001*m.x154*m.x121 + 0.0001*m.x154*m.x122 + 0.0001*m.x154*m.x123 + 0.0001*m.x154*
m.x124 + 0.0001*m.x154*m.x125 + 0.0001*m.x154*m.x126 + 0.0001*m.x154*m.x127 + 6.07157286341414*
m.x154*m.x128 + 0.0001*m.x154*m.x129 + 0.0001*m.x154*m.x130 + 0.0001*m.x154*m.x131 + 0.0001*
m.x154*m.x132 + 0.0001*m.x154*m.x133 + 0.0001*m.x154*m.x134 + 0.0001*m.x154*m.x135 + 0.0001*
m.x154*m.x136 + 0.0001*m.x154*m.x137 + 0.0001*m.x154*m.x138 + 0.0001*m.x154*m.x139 + 0.0001*
m.x154*m.x140 + 0.0001*m.x154*m.x141 + 0.0001*m.x154*m.x142 + 0.0001*m.x154*m.x143 + 0.0001*
m.x154*m.x144 + 0.0001*m.x154*m.x145 + 0.0001*m.x154*m.x146 + 0.0001*m.x154*m.x147 + 0.0001*
m.x154*m.x148 + 0.0001*m.x154*m.x149 + 0.0001*m.x154*m.x150 + 0.0001*m.x154*m.x151 + 0.0001*
m.x154*m.x152 + 0.0001*m.x154*m.x153 + 11.5878321060596*m.x154**2 + 0.0001*m.x154*m.x155 + 0.0001
*m.x154*m.x156 + 0.0001*m.x154*m.x157 + 0.0001*m.x154*m.x158 + 0.0001*m.x154*m.x159 + 0.0001*
m.x154*m.x160 + 0.0001*m.x154*m.x161 + 0.0001*m.x154*m.x162 + 0.0001*m.x154*m.x163 + 0.0001*
m.x154*m.x164 + 0.0001*m.x154*m.x165 + 0.0001*m.x154*m.x166 + 0.0001*m.x154*m.x167 + 0.0001*
m.x154*m.x168 + 6.06641918211284*m.x154*m.x169 + 0.0001*m.x154*m.x170 + 0.0001*m.x154*m.x171 +
0.0001*m.x154*m.x172 + 0.0001*m.x154*m.x173 + 0.0001*m.x154*m.x174 + 0.0001*m.x154*m.x175 +
0.0001*m.x154*m.x176 + 0.0001*m.x154*m.x177 + 0.0001*m.x154*m.x178 + 0.0001*m.x154*m.x179 +
0.0001*m.x154*m.x180 + 0.0001*m.x154*m.x181 + 0.0001*m.x154*m.x182 + 0.0001*m.x154*m.x183 +
0.0001*m.x154*m.x184 + 0.0001*m.x154*m.x185 + 0.0001*m.x155*m.x1 + 0.0001*m.x155*m.x2 + 0.0001*
m.x155*m.x3 + 0.0001*m.x155*m.x4 + 0.0001*m.x155*m.x5 + 0.0001*m.x155*m.x6 + 0.0001*m.x155*m.x7
+ 0.0001*m.x155*m.x8 + 0.0001*m.x155*m.x9 + 0.0001*m.x155*m.x10 + 0.0001*m.x155*m.x11 + 0.0001*
m.x155*m.x12 + 0.0001*m.x155*m.x13 + 0.0001*m.x155*m.x14 + 0.0001*m.x155*m.x15 + 0.0001*m.x155*
m.x16 + 0.0001*m.x155*m.x17 + 0.0001*m.x155*m.x18 + 0.0001*m.x155*m.x19 + 0.0001*m.x155*m.x20 +
0.0001*m.x155*m.x21 + 0.0001*m.x155*m.x22 + 0.0001*m.x155*m.x23 + 0.0001*m.x155*m.x24 + 0.0001*
m.x155*m.x25 + 0.0001*m.x155*m.x26 + 0.0001*m.x155*m.x27 + 0.0001*m.x155*m.x28 + 0.0001*m.x155*
m.x29 + 0.0001*m.x155*m.x30 + 0.0001*m.x155*m.x31 + 0.0001*m.x155*m.x32 + 0.0001*m.x155*m.x33 +
0.0001*m.x155*m.x34 + 0.0001*m.x155*m.x35 + 0.0001*m.x155*m.x36 + 0.0001*m.x155*m.x37 + 0.0001*
m.x155*m.x38 + 0.0001*m.x155*m.x39 + 0.0001*m.x155*m.x40 + 0.0001*m.x155*m.x41 + 0.0001*m.x155*
m.x42 + 0.0001*m.x155*m.x43 + 0.0001*m.x155*m.x44 + 0.0001*m.x155*m.x45 + 0.0001*m.x155*m.x46 +
0.0001*m.x155*m.x47 + 0.0001*m.x155*m.x48 + 0.0001*m.x155*m.x49 + 0.0001*m.x155*m.x50 + 0.0001*
m.x155*m.x51 + 0.0001*m.x155*m.x52 + 0.0001*m.x155*m.x53 + 0.0001*m.x155*m.x54 + 0.0001*m.x155*
m.x55 + 0.0001*m.x155*m.x56 + 0.0001*m.x155*m.x57 + 0.0001*m.x155*m.x58 + 0.0001*m.x155*m.x59 +
0.0001*m.x155*m.x60 + 0.0001*m.x155*m.x61 + 0.0001*m.x155*m.x62 + 0.0001*m.x155*m.x63 + 0.0001*
m.x155*m.x64 + 0.0001*m.x155*m.x65 + 0.0001*m.x155*m.x66 + 0.0001*m.x155*m.x67 + 0.0001*m.x155*
m.x68 + 0.0001*m.x155*m.x69 + 0.0001*m.x155*m.x70 + 0.0001*m.x155*m.x71 + 0.0001*m.x155*m.x72 +
0.0001*m.x155*m.x73 + 0.0001*m.x155*m.x74 + 0.0001*m.x155*m.x75 + 0.0001*m.x155*m.x76 + 0.0001*
m.x155*m.x77 + 0.0001*m.x155*m.x78 + 0.0001*m.x155*m.x79 + 0.0001*m.x155*m.x80 + 0.0001*m.x155*
m.x81 + 0.0001*m.x155*m.x82 + 1.24614469444164*m.x155*m.x83 + 0.0001*m.x155*m.x84 + 0.0001*m.x155
*m.x85 + 0.0001*m.x155*m.x86 + 0.0001*m.x155*m.x87 + 0.0001*m.x155*m.x88 + 0.0001*m.x155*m.x89 +
0.0001*m.x155*m.x90 + 0.0001*m.x155*m.x91 + 0.0001*m.x155*m.x92 + 0.0001*m.x155*m.x93 + 0.0001*
m.x155*m.x94 + 0.0001*m.x155*m.x95 + 0.0001*m.x155*m.x96 + 0.0001*m.x155*m.x97 + 0.0001*m.x155*
m.x98 + 0.0001*m.x155*m.x99 + 0.0001*m.x155*m.x100 + 0.0001*m.x155*m.x101 + 0.0001*m.x155*m.x102
+ 0.0001*m.x155*m.x103 + 0.0001*m.x155*m.x104 + 0.0001*m.x155*m.x105 + 0.0001*m.x155*m.x106 +
0.0001*m.x155*m.x107 + 0.0001*m.x155*m.x108 + 0.0001*m.x155*m.x109 + 0.0001*m.x155*m.x110 +
0.0001*m.x155*m.x111 + 0.0001*m.x155*m.x112 + 0.0001*m.x155*m.x113 + 0.0001*m.x155*m.x114 +
0.0001*m.x155*m.x115 + 0.0001*m.x155*m.x116 + 0.0001*m.x155*m.x117 + 0.0001*m.x155*m.x118 +
0.0001*m.x155*m.x119 + 0.0001*m.x155*m.x120 + 0.0001*m.x155*m.x121 + 0.0001*m.x155*m.x122 +
0.0001*m.x155*m.x123 + 0.0001*m.x155*m.x124 + 0.0001*m.x155*m.x125 + 0.0001*m.x155*m.x126 +
0.0001*m.x155*m.x127 + 6.07157286341414*m.x155*m.x128 + 0.0001*m.x155*m.x129 + 0.0001*m.x155*
m.x130 + 0.0001*m.x155*m.x131 + 0.0001*m.x155*m.x132 + 0.0001*m.x155*m.x133 + 0.0001*m.x155*
m.x134 + 0.0001*m.x155*m.x135 + 0.0001*m.x155*m.x136 + 0.0001*m.x155*m.x137 + 0.0001*m.x155*
m.x138 + 0.0001*m.x155*m.x139 + 0.0001*m.x155*m.x140 + 0.0001*m.x155*m.x141 + 0.0001*m.x155*
m.x142 + 0.0001*m.x155*m.x143 + 0.0001*m.x155*m.x144 + 0.0001*m.x155*m.x145 + 0.0001*m.x155*
m.x146 + 0.0001*m.x155*m.x147 + 0.0001*m.x155*m.x148 + 0.0001*m.x155*m.x149 + 0.0001*m.x155*
m.x150 + 0.0001*m.x155*m.x151 + 0.0001*m.x155*m.x152 + 0.0001*m.x155*m.x153 + 0.0001*m.x155*
m.x154 + 11.5878321060596*m.x155**2 + 0.0001*m.x155*m.x156 + 0.0001*m.x155*m.x157 + 0.0001*m.x155
*m.x158 + 0.0001*m.x155*m.x159 + 0.0001*m.x155*m.x160 + 0.0001*m.x155*m.x161 + 0.0001*m.x155*
m.x162 + 0.0001*m.x155*m.x163 + 0.0001*m.x155*m.x164 + 0.0001*m.x155*m.x165 + 0.0001*m.x155*
m.x166 + 0.0001*m.x155*m.x167 + 0.0001*m.x155*m.x168 + 6.06641918211284*m.x155*m.x169 + 0.0001*
m.x155*m.x170 + 0.0001*m.x155*m.x171 + 0.0001*m.x155*m.x172 + 0.0001*m.x155*m.x173 + 0.0001*
m.x155*m.x174 + 0.0001*m.x155*m.x175 + 0.0001*m.x155*m.x176 + 0.0001*m.x155*m.x177 + 0.0001*
m.x155*m.x178 + 0.0001*m.x155*m.x179 + 0.0001*m.x155*m.x180 + 0.0001*m.x155*m.x181 + 0.0001*
m.x155*m.x182 + 0.0001*m.x155*m.x183 + 0.0001*m.x155*m.x184 + 0.0001*m.x155*m.x185 + 0.0001*
m.x156*m.x1 + 0.0001*m.x156*m.x2 + 0.0001*m.x156*m.x3 + 0.0001*m.x156*m.x4 + 0.0001*m.x156*m.x5
+ 0.0001*m.x156*m.x6 + 0.0001*m.x156*m.x7 + 0.0001*m.x156*m.x8 + 0.0001*m.x156*m.x9 + 0.0001*
m.x156*m.x10 + 0.0001*m.x156*m.x11 + 0.0001*m.x156*m.x12 + 0.0001*m.x156*m.x13 + 0.0001*m.x156*
m.x14 + 0.0001*m.x156*m.x15 + 0.0001*m.x156*m.x16 + 0.0001*m.x156*m.x17 + 0.0001*m.x156*m.x18 +
0.0001*m.x156*m.x19 + 0.0001*m.x156*m.x20 + 0.0001*m.x156*m.x21 + 0.0001*m.x156*m.x22 + 0.0001*
m.x156*m.x23 + 0.0001*m.x156*m.x24 + 0.0001*m.x156*m.x25 + 0.0001*m.x156*m.x26 + 0.0001*m.x156*
m.x27 + 0.0001*m.x156*m.x28 + 0.0001*m.x156*m.x29 + 0.0001*m.x156*m.x30 + 0.0001*m.x156*m.x31 +
0.0001*m.x156*m.x32 + 0.0001*m.x156*m.x33 + 0.0001*m.x156*m.x34 + 0.0001*m.x156*m.x35 + 0.0001*
m.x156*m.x36 + 0.0001*m.x156*m.x37 + 0.0001*m.x156*m.x38 + 0.0001*m.x156*m.x39 + 0.0001*m.x156*
m.x40 + 0.0001*m.x156*m.x41 + 0.0001*m.x156*m.x42 + 0.0001*m.x156*m.x43 + 0.0001*m.x156*m.x44 +
0.0001*m.x156*m.x45 + 0.0001*m.x156*m.x46 + 0.0001*m.x156*m.x47 + 0.0001*m.x156*m.x48 + 0.0001*
m.x156*m.x49 + 0.0001*m.x156*m.x50 + 0.0001*m.x156*m.x51 + 0.0001*m.x156*m.x52 + 0.0001*m.x156*
m.x53 + 0.0001*m.x156*m.x54 + 0.0001*m.x156*m.x55 + 0.0001*m.x156*m.x56 + 0.0001*m.x156*m.x57 +
0.0001*m.x156*m.x58 + 0.0001*m.x156*m.x59 + 0.0001*m.x156*m.x60 + 0.0001*m.x156*m.x61 + 0.0001*
m.x156*m.x62 + 0.0001*m.x156*m.x63 + 0.0001*m.x156*m.x64 + 0.0001*m.x156*m.x65 + 0.0001*m.x156*
m.x66 + 0.0001*m.x156*m.x67 + 0.0001*m.x156*m.x68 + 0.0001*m.x156*m.x69 + 0.0001*m.x156*m.x70 +
0.0001*m.x156*m.x71 + 0.0001*m.x156*m.x72 + 0.0001*m.x156*m.x73 + 0.0001*m.x156*m.x74 + 0.0001*
m.x156*m.x75 + 0.0001*m.x156*m.x76 + 0.0001*m.x156*m.x77 + 0.0001*m.x156*m.x78 + 0.0001*m.x156*
m.x79 + 0.0001*m.x156*m.x80 + 0.0001*m.x156*m.x81 + 0.0001*m.x156*m.x82 + 0.0001*m.x156*m.x83 +
0.0001*m.x156*m.x84 + 0.0001*m.x156*m.x85 + 0.0001*m.x156*m.x86 + 0.0001*m.x156*m.x87 + 0.0001*
m.x156*m.x88 + 0.0001*m.x156*m.x89 + 0.0001*m.x156*m.x90 + 0.0001*m.x156*m.x91 + 0.0001*m.x156*
m.x92 + 0.0001*m.x156*m.x93 + 0.0001*m.x156*m.x94 + 0.0001*m.x156*m.x95 + 0.0001*m.x156*m.x96 +
0.0001*m.x156*m.x97 + 0.0001*m.x156*m.x98 + 0.0001*m.x156*m.x99 + 0.0001*m.x156*m.x100 + 0.0001*
m.x156*m.x101 + 0.0001*m.x156*m.x102 + 0.0001*m.x156*m.x103 + 0.0001*m.x156*m.x104 + 0.0001*
m.x156*m.x105 + 0.0001*m.x156*m.x106 + 0.0001*m.x156*m.x107 + 0.0001*m.x156*m.x108 + 0.0001*
m.x156*m.x109 + 0.0001*m.x156*m.x110 + 0.0001*m.x156*m.x111 + 0.0001*m.x156*m.x112 + 0.0001*
m.x156*m.x113 + 0.0001*m.x156*m.x114 + 0.0001*m.x156*m.x115 + 0.0001*m.x156*m.x116 + 0.0001*
m.x156*m.x117 + 0.0001*m.x156*m.x118 + 0.0001*m.x156*m.x119 + 0.0001*m.x156*m.x120 + 0.0001*
m.x156*m.x121 + 0.0001*m.x156*m.x122 + 0.0001*m.x156*m.x123 + 0.0001*m.x156*m.x124 + 0.0001*
m.x156*m.x125 + 0.0001*m.x156*m.x126 + 0.0001*m.x156*m.x127 + 0.0001*m.x156*m.x128 +
6.01366122063386*m.x156*m.x129 + 0.0001*m.x156*m.x130 + 0.0001*m.x156*m.x131 + 0.0001*m.x156*
m.x132 + 0.0001*m.x156*m.x133 + 0.0001*m.x156*m.x134 + 0.0001*m.x156*m.x135 + 0.0001*m.x156*
m.x136 + 0.0001*m.x156*m.x137 + 0.0001*m.x156*m.x138 + 0.0001*m.x156*m.x139 + 0.0001*m.x156*
m.x140 + 0.0001*m.x156*m.x141 + 0.0001*m.x156*m.x142 + 0.0001*m.x156*m.x143 + 0.0001*m.x156*
m.x144 + 0.0001*m.x156*m.x145 + 0.0001*m.x156*m.x146 + 0.0001*m.x156*m.x147 + 0.0001*m.x156*
m.x148 + 0.0001*m.x156*m.x149 + 0.0001*m.x156*m.x150 + 0.0001*m.x156*m.x151 + 0.0001*m.x156*
m.x152 + 0.0001*m.x156*m.x153 + 0.0001*m.x156*m.x154 + 0.0001*m.x156*m.x155 + 11.4773046249267*
m.x156**2 + 0.0001*m.x156*m.x157 + 0.0001*m.x156*m.x158 + 0.0001*m.x156*m.x159 + 0.0001*m.x156*
m.x160 + 0.0001*m.x156*m.x161 + 0.0001*m.x156*m.x162 + 0.0001*m.x156*m.x163 + 0.0001*m.x156*
m.x164 + 0.0001*m.x156*m.x165 + 0.0001*m.x156*m.x166 + 0.0001*m.x156*m.x167 + 0.0001*m.x156*
m.x168 + 0.0001*m.x156*m.x169 + 5.66748238565604*m.x156*m.x170 + 0.0001*m.x156*m.x171 + 0.0001*
m.x156*m.x172 + 0.0001*m.x156*m.x173 + 0.0001*m.x156*m.x174 + 0.0001*m.x156*m.x175 + 0.0001*
m.x156*m.x176 + 0.0001*m.x156*m.x177 + 0.0001*m.x156*m.x178 + 0.0001*m.x156*m.x179 + 0.0001*
m.x156*m.x180 + 0.0001*m.x156*m.x181 + 0.0001*m.x156*m.x182 + 0.0001*m.x156*m.x183 + 0.0001*
m.x156*m.x184 + 0.0001*m.x156*m.x185 + 0.0001*m.x157*m.x1 + 0.0001*m.x157*m.x2 + 0.0001*m.x157*
m.x3 + 0.0001*m.x157*m.x4 + 0.0001*m.x157*m.x5 + 0.0001*m.x157*m.x6 + 0.0001*m.x157*m.x7 + 0.0001
*m.x157*m.x8 + 0.0001*m.x157*m.x9 + 0.0001*m.x157*m.x10 + 0.0001*m.x157*m.x11 + 0.0001*m.x157*
m.x12 + 0.0001*m.x157*m.x13 + 0.0001*m.x157*m.x14 + 0.0001*m.x157*m.x15 + 0.0001*m.x157*m.x16 +
0.0001*m.x157*m.x17 + 0.0001*m.x157*m.x18 + 0.0001*m.x157*m.x19 + 0.0001*m.x157*m.x20 + 0.0001*
m.x157*m.x21 + 0.0001*m.x157*m.x22 + 0.0001*m.x157*m.x23 + 0.0001*m.x157*m.x24 + 0.0001*m.x157*
m.x25 + 0.0001*m.x157*m.x26 + 0.0001*m.x157*m.x27 + 0.0001*m.x157*m.x28 + 0.0001*m.x157*m.x29 +
0.0001*m.x157*m.x30 + 0.0001*m.x157*m.x31 + 0.0001*m.x157*m.x32 + 0.0001*m.x157*m.x33 + 0.0001*
m.x157*m.x34 + 0.0001*m.x157*m.x35 + 0.0001*m.x157*m.x36 + 0.0001*m.x157*m.x37 + 0.0001*m.x157*
m.x38 + 0.0001*m.x157*m.x39 + 0.0001*m.x157*m.x40 + 0.0001*m.x157*m.x41 + 0.0001*m.x157*m.x42 +
0.0001*m.x157*m.x43 + 0.0001*m.x157*m.x44 + 0.0001*m.x157*m.x45 + 0.0001*m.x157*m.x46 + 0.0001*
m.x157*m.x47 + 0.0001*m.x157*m.x48 + 0.0001*m.x157*m.x49 + 0.0001*m.x157*m.x50 + 0.0001*m.x157*
m.x51 + 0.0001*m.x157*m.x52 + 0.0001*m.x157*m.x53 + 0.0001*m.x157*m.x54 + 0.0001*m.x157*m.x55 +
0.0001*m.x157*m.x56 + 0.0001*m.x157*m.x57 + 0.0001*m.x157*m.x58 + 0.0001*m.x157*m.x59 + 0.0001*
m.x157*m.x60 + 0.0001*m.x157*m.x61 + 0.0001*m.x157*m.x62 + 0.0001*m.x157*m.x63 + 0.0001*m.x157*
m.x64 + 0.0001*m.x157*m.x65 + 0.0001*m.x157*m.x66 + 0.0001*m.x157*m.x67 + 0.0001*m.x157*m.x68 +
0.0001*m.x157*m.x69 + 0.0001*m.x157*m.x70 + 0.0001*m.x157*m.x71 + 0.0001*m.x157*m.x72 + 0.0001*
m.x157*m.x73 + 0.0001*m.x157*m.x74 + 0.0001*m.x157*m.x75 + 0.0001*m.x157*m.x76 + 0.0001*m.x157*
m.x77 + 0.0001*m.x157*m.x78 + 0.0001*m.x157*m.x79 + 0.0001*m.x157*m.x80 + 0.0001*m.x157*m.x81 +
0.0001*m.x157*m.x82 + 0.0001*m.x157*m.x83 + 0.0001*m.x157*m.x84 + 0.0001*m.x157*m.x85 + 0.0001*
m.x157*m.x86 + 0.0001*m.x157*m.x87 + 0.0001*m.x157*m.x88 + 0.0001*m.x157*m.x89 + 0.0001*m.x157*
m.x90 + 0.0001*m.x157*m.x91 + 0.0001*m.x157*m.x92 + 0.0001*m.x157*m.x93 + 0.0001*m.x157*m.x94 +
0.0001*m.x157*m.x95 + 0.0001*m.x157*m.x96 + 0.0001*m.x157*m.x97 + 0.0001*m.x157*m.x98 + 0.0001*
m.x157*m.x99 + 0.0001*m.x157*m.x100 + 0.0001*m.x157*m.x101 + 0.0001*m.x157*m.x102 + 0.0001*m.x157
*m.x103 + 0.0001*m.x157*m.x104 + 0.0001*m.x157*m.x105 + 0.0001*m.x157*m.x106 + 0.0001*m.x157*
m.x107 + 0.0001*m.x157*m.x108 + 0.0001*m.x157*m.x109 + 0.0001*m.x157*m.x110 + 0.0001*m.x157*
m.x111 + 0.0001*m.x157*m.x112 + 0.0001*m.x157*m.x113 + 0.0001*m.x157*m.x114 + 0.0001*m.x157*
m.x115 + 6.1573862905904*m.x157*m.x116 + 0.0001*m.x157*m.x117 + 0.0001*m.x157*m.x118 + 0.0001*
m.x157*m.x119 + 0.0001*m.x157*m.x120 + 0.0001*m.x157*m.x121 + 0.0001*m.x157*m.x122 + 0.0001*
m.x157*m.x123 + 0.0001*m.x157*m.x124 + 0.0001*m.x157*m.x125 + 0.0001*m.x157*m.x126 + 0.0001*
m.x157*m.x127 + 0.0001*m.x157*m.x128 + 0.481481473554168*m.x157*m.x129 + 0.0001*m.x157*m.x130 +
0.0001*m.x157*m.x131 + 0.0001*m.x157*m.x132 + 0.0001*m.x157*m.x133 + 0.0001*m.x157*m.x134 +
0.0001*m.x157*m.x135 + 0.0001*m.x157*m.x136 + 0.0001*m.x157*m.x137 + 0.0001*m.x157*m.x138 +
0.0001*m.x157*m.x139 + 0.0001*m.x157*m.x140 + 0.0001*m.x157*m.x141 + 8.40676553603667*m.x157*
m.x142 + 0.0001*m.x157*m.x143 + 0.0001*m.x157*m.x144 + 0.0001*m.x157*m.x145 + 0.0001*m.x157*
m.x146 + 0.0001*m.x157*m.x147 + 0.0001*m.x157*m.x148 + 0.0001*m.x157*m.x149 + 0.0001*m.x157*
m.x150 + 0.0001*m.x157*m.x151 + 0.0001*m.x157*m.x152 + 0.0001*m.x157*m.x153 + 0.0001*m.x157*
m.x154 + 0.0001*m.x157*m.x155 + 0.0001*m.x157*m.x156 + 5.58955879695696*m.x157**2 + 0.0001*m.x157
*m.x158 + 0.0001*m.x157*m.x159 + 0.0001*m.x157*m.x160 + 0.0001*m.x157*m.x161 + 0.0001*m.x157*
m.x162 + 0.0001*m.x157*m.x163 + 0.0001*m.x157*m.x164 + 0.0001*m.x157*m.x165 + 0.0001*m.x157*
m.x166 + 0.0001*m.x157*m.x167 + 0.0001*m.x157*m.x168 + 0.0001*m.x157*m.x169 + 0.453770093960477*
m.x157*m.x170 + 0.0001*m.x157*m.x171 + 0.0001*m.x157*m.x172 + 0.0001*m.x157*m.x173 + 0.0001*
m.x157*m.x174 + 0.0001*m.x157*m.x175 + 0.0001*m.x157*m.x176 + 0.0001*m.x157*m.x177 + 0.0001*
m.x157*m.x178 + 0.0001*m.x157*m.x179 + 0.0001*m.x157*m.x180 + 0.0001*m.x157*m.x181 + 0.0001*
m.x157*m.x182 + 0.0001*m.x157*m.x183 + 0.0001*m.x157*m.x184 + 0.0001*m.x157*m.x185 + 0.0001*
m.x158*m.x1 + 0.0001*m.x158*m.x2 + 0.0001*m.x158*m.x3 + 0.0001*m.x158*m.x4 + 0.0001*m.x158*m.x5
+ 0.0001*m.x158*m.x6 + 0.0001*m.x158*m.x7 + 0.0001*m.x158*m.x8 + 0.0001*m.x158*m.x9 + 0.0001*
m.x158*m.x10 + 0.0001*m.x158*m.x11 + 0.0001*m.x158*m.x12 + 0.0001*m.x158*m.x13 + 0.0001*m.x158*
m.x14 + 0.0001*m.x158*m.x15 + 0.0001*m.x158*m.x16 + 0.0001*m.x158*m.x17 + 0.0001*m.x158*m.x18 +
0.0001*m.x158*m.x19 + 0.0001*m.x158*m.x20 + 0.0001*m.x158*m.x21 + 0.0001*m.x158*m.x22 + 0.0001*
m.x158*m.x23 + 0.0001*m.x158*m.x24 + 0.0001*m.x158*m.x25 + 0.0001*m.x158*m.x26 + 0.0001*m.x158*
m.x27 + 0.0001*m.x158*m.x28 + 0.0001*m.x158*m.x29 + 0.0001*m.x158*m.x30 + 0.0001*m.x158*m.x31 +
0.0001*m.x158*m.x32 + 0.0001*m.x158*m.x33 + 0.0001*m.x158*m.x34 + 0.0001*m.x158*m.x35 + 0.0001*
m.x158*m.x36 + 0.0001*m.x158*m.x37 + 0.0001*m.x158*m.x38 + 0.0001*m.x158*m.x39 + 0.0001*m.x158*
m.x40 + 0.0001*m.x158*m.x41 + 0.0001*m.x158*m.x42 + 0.0001*m.x158*m.x43 + 0.0001*m.x158*m.x44 +
0.0001*m.x158*m.x45 + 0.0001*m.x158*m.x46 + 0.0001*m.x158*m.x47 + 0.0001*m.x158*m.x48 + 0.0001*
m.x158*m.x49 + 0.0001*m.x158*m.x50 + 0.0001*m.x158*m.x51 + 0.0001*m.x158*m.x52 + 0.0001*m.x158*
m.x53 + 0.0001*m.x158*m.x54 + 0.0001*m.x158*m.x55 + 0.0001*m.x158*m.x56 + 0.0001*m.x158*m.x57 +
0.0001*m.x158*m.x58 + 0.0001*m.x158*m.x59 + 0.496930732887788*m.x158*m.x60 + 0.0001*m.x158*m.x61
+ 0.0001*m.x158*m.x62 + 0.0001*m.x158*m.x63 + 0.0001*m.x158*m.x64 + 0.0001*m.x158*m.x65 + 0.0001
*m.x158*m.x66 + 0.0001*m.x158*m.x67 + 0.0001*m.x158*m.x68 + 0.0001*m.x158*m.x69 + 0.0001*m.x158*
m.x70 + 0.0001*m.x158*m.x71 + 1.44661993423099*m.x158*m.x72 + 0.0001*m.x158*m.x73 + 0.0001*m.x158
*m.x74 + 0.0001*m.x158*m.x75 + 0.0001*m.x158*m.x76 + 0.0001*m.x158*m.x77 + 0.0001*m.x158*m.x78 +
0.0001*m.x158*m.x79 + 0.0001*m.x158*m.x80 + 0.0001*m.x158*m.x81 + 0.0001*m.x158*m.x82 + 0.0001*
m.x158*m.x83 + 0.0001*m.x158*m.x84 + 0.0001*m.x158*m.x85 + 0.0001*m.x158*m.x86 + 0.0001*m.x158*
m.x87 + 0.0001*m.x158*m.x88 + 0.0001*m.x158*m.x89 + 0.0001*m.x158*m.x90 + 0.0001*m.x158*m.x91 +
0.0001*m.x158*m.x92 + 0.0001*m.x158*m.x93 + 0.0001*m.x158*m.x94 + 0.0001*m.x158*m.x95 + 0.0001*
m.x158*m.x96 + 0.0001*m.x158*m.x97 + 0.0001*m.x158*m.x98 + 0.0001*m.x158*m.x99 + 0.0001*m.x158*
m.x100 + 0.0001*m.x158*m.x101 + 0.0001*m.x158*m.x102 + 0.0001*m.x158*m.x103 + 0.0001*m.x158*
m.x104 + 0.0001*m.x158*m.x105 + 0.0001*m.x158*m.x106 + 0.0001*m.x158*m.x107 + 0.0001*m.x158*
m.x108 + 0.0001*m.x158*m.x109 + 0.0001*m.x158*m.x110 + 0.0001*m.x158*m.x111 + 0.0001*m.x158*
m.x112 + 0.0001*m.x158*m.x113 + 0.0001*m.x158*m.x114 + 0.0001*m.x158*m.x115 + 0.0001*m.x158*
m.x116 + 6.63439031667751*m.x158*m.x117 + 0.0001*m.x158*m.x118 + 0.0001*m.x158*m.x119 + 0.0001*
m.x158*m.x120 + 0.0001*m.x158*m.x121 + 0.0001*m.x158*m.x122 + 0.0001*m.x158*m.x123 + 0.0001*
m.x158*m.x124 + 0.0001*m.x158*m.x125 + 0.0001*m.x158*m.x126 + 0.0001*m.x158*m.x127 + 0.0001*
m.x158*m.x128 + 0.0001*m.x158*m.x129 + 0.0001*m.x158*m.x130 + 0.0001*m.x158*m.x131 + 0.0001*
m.x158*m.x132 + 0.0001*m.x158*m.x133 + 0.0001*m.x158*m.x134 + 0.0001*m.x158*m.x135 + 0.0001*
m.x158*m.x136 + 0.0001*m.x158*m.x137 + 0.0001*m.x158*m.x138 + 0.0001*m.x158*m.x139 + 0.0001*
m.x158*m.x140 + 0.0001*m.x158*m.x141 + 0.0001*m.x158*m.x142 + 9.01610644057731*m.x158*m.x143 +
0.0001*m.x158*m.x144 + 0.0001*m.x158*m.x145 + 0.0001*m.x158*m.x146 + 0.0001*m.x158*m.x147 +
0.0001*m.x158*m.x148 + 0.0001*m.x158*m.x149 + 0.0001*m.x158*m.x150 + 0.0001*m.x158*m.x151 +
0.0001*m.x158*m.x152 + 0.0001*m.x158*m.x153 + 0.0001*m.x158*m.x154 + 0.0001*m.x158*m.x155 +
0.0001*m.x158*m.x156 + 0.0001*m.x158*m.x157 + 6.45910065311575*m.x158**2 + 0.0001*m.x158*m.x159
+ 0.0001*m.x158*m.x160 + 0.0001*m.x158*m.x161 + 0.0001*m.x158*m.x162 + 0.0001*m.x158*m.x163 +
0.0001*m.x158*m.x164 + 0.0001*m.x158*m.x165 + 0.0001*m.x158*m.x166 + 0.0001*m.x158*m.x167 +
0.0001*m.x158*m.x168 + 0.0001*m.x158*m.x169 + 0.0001*m.x158*m.x170 + 0.0001*m.x158*m.x171 +
0.0001*m.x158*m.x172 + 0.0001*m.x158*m.x173 + 0.0001*m.x158*m.x174 + 0.0001*m.x158*m.x175 +
0.0001*m.x158*m.x176 + 0.0001*m.x158*m.x177 + 0.0001*m.x158*m.x178 + 0.0001*m.x158*m.x179 +
0.0001*m.x158*m.x180 + 0.0001*m.x158*m.x181 + 0.0001*m.x158*m.x182 + 0.0001*m.x158*m.x183 +
0.0001*m.x158*m.x184 + 0.0001*m.x158*m.x185 + 0.0001*m.x159*m.x1 + 0.0001*m.x159*m.x2 + 0.0001*
m.x159*m.x3 + 0.0001*m.x159*m.x4 + 0.0001*m.x159*m.x5 + 0.0001*m.x159*m.x6 + 0.0001*m.x159*m.x7
+ 0.0001*m.x159*m.x8 + 0.0001*m.x159*m.x9 + 0.0001*m.x159*m.x10 + 0.0001*m.x159*m.x11 + 0.0001*
m.x159*m.x12 + 0.0001*m.x159*m.x13 + 0.0001*m.x159*m.x14 + 0.0001*m.x159*m.x15 + 0.0001*m.x159*
m.x16 + 0.0001*m.x159*m.x17 + 0.0001*m.x159*m.x18 + 0.0001*m.x159*m.x19 + 0.0001*m.x159*m.x20 +
0.0001*m.x159*m.x21 + 0.0001*m.x159*m.x22 + 0.0001*m.x159*m.x23 + 0.0001*m.x159*m.x24 + 0.0001*
m.x159*m.x25 + 0.0001*m.x159*m.x26 + 0.0001*m.x159*m.x27 + 0.0001*m.x159*m.x28 + 0.0001*m.x159*
m.x29 + 0.0001*m.x159*m.x30 + 0.0001*m.x159*m.x31 + 0.0001*m.x159*m.x32 + 0.0001*m.x159*m.x33 +
0.0001*m.x159*m.x34 + 0.0001*m.x159*m.x35 + 0.0001*m.x159*m.x36 + 0.0001*m.x159*m.x37 + 0.0001*
m.x159*m.x38 + 0.0001*m.x159*m.x39 + 0.0001*m.x159*m.x40 + 0.0001*m.x159*m.x41 + 0.0001*m.x159*
m.x42 + 0.0001*m.x159*m.x43 + 0.0001*m.x159*m.x44 + 0.0001*m.x159*m.x45 + 0.0001*m.x159*m.x46 +
0.0001*m.x159*m.x47 + 0.0001*m.x159*m.x48 + 0.0001*m.x159*m.x49 + 0.0001*m.x159*m.x50 + 0.0001*
m.x159*m.x51 + 0.0001*m.x159*m.x52 + 0.0001*m.x159*m.x53 + 0.0001*m.x159*m.x54 + 0.0001*m.x159*
m.x55 + 0.0001*m.x159*m.x56 + 0.0001*m.x159*m.x57 + 0.0001*m.x159*m.x58 + 0.0001*m.x159*m.x59 +
0.0001*m.x159*m.x60 + 0.0001*m.x159*m.x61 + 0.0001*m.x159*m.x62 + 0.0001*m.x159*m.x63 + 0.0001*
m.x159*m.x64 + 0.0001*m.x159*m.x65 + 0.0001*m.x159*m.x66 + 0.0001*m.x159*m.x67 + 0.0001*m.x159*
m.x68 + 0.0001*m.x159*m.x69 + 0.0001*m.x159*m.x70 + 0.0001*m.x159*m.x71 + 0.0001*m.x159*m.x72 +
0.803862866089973*m.x159*m.x73 + 0.0001*m.x159*m.x74 + 0.0001*m.x159*m.x75 + 0.0001*m.x159*m.x76
+ 0.0001*m.x159*m.x77 + 0.0001*m.x159*m.x78 + 0.0001*m.x159*m.x79 + 0.0001*m.x159*m.x80 + 0.0001
*m.x159*m.x81 + 0.0001*m.x159*m.x82 + 0.0001*m.x159*m.x83 + 0.0001*m.x159*m.x84 + 0.0001*m.x159*
m.x85 + 0.0001*m.x159*m.x86 + 0.0001*m.x159*m.x87 + 0.0001*m.x159*m.x88 + 0.0001*m.x159*m.x89 +
0.0001*m.x159*m.x90 + 0.0001*m.x159*m.x91 + 0.0001*m.x159*m.x92 + 0.0001*m.x159*m.x93 + 0.0001*
m.x159*m.x94 + 0.0001*m.x159*m.x95 + 0.0001*m.x159*m.x96 + 0.0001*m.x159*m.x97 + 0.0001*m.x159*
m.x98 + 0.0001*m.x159*m.x99 + 0.0001*m.x159*m.x100 + 0.0001*m.x159*m.x101 + 0.0001*m.x159*m.x102
+ 0.0001*m.x159*m.x103 + 0.0001*m.x159*m.x104 + 0.0001*m.x159*m.x105 + 0.0001*m.x159*m.x106 +
0.0001*m.x159*m.x107 + 0.0001*m.x159*m.x108 + 0.0001*m.x159*m.x109 + 0.0001*m.x159*m.x110 +
0.0001*m.x159*m.x111 + 0.0001*m.x159*m.x112 + 0.0001*m.x159*m.x113 + 0.0001*m.x159*m.x114 +
0.0001*m.x159*m.x115 + 0.0001*m.x159*m.x116 + 0.0001*m.x159*m.x117 + 4.32746339292626*m.x159*
m.x118 + 0.0001*m.x159*m.x119 + 0.0001*m.x159*m.x120 + 0.0001*m.x159*m.x121 + 0.0001*m.x159*
m.x122 + 0.0001*m.x159*m.x123 + 0.0001*m.x159*m.x124 + 0.0001*m.x159*m.x125 + 0.0001*m.x159*
m.x126 + 0.0001*m.x159*m.x127 + 0.0001*m.x159*m.x128 + 0.0001*m.x159*m.x129 + 0.0001*m.x159*
m.x130 + 0.0001*m.x159*m.x131 + 0.0001*m.x159*m.x132 + 0.0001*m.x159*m.x133 + 0.0001*m.x159*
m.x134 + 0.0001*m.x159*m.x135 + 0.0001*m.x159*m.x136 + 0.0001*m.x159*m.x137 + 0.0001*m.x159*
m.x138 + 0.0001*m.x159*m.x139 + 0.0001*m.x159*m.x140 + 0.0001*m.x159*m.x141 + 0.0001*m.x159*
m.x142 + 0.0001*m.x159*m.x143 + 5.64038935568629*m.x159*m.x144 + 0.0001*m.x159*m.x145 + 0.0001*
m.x159*m.x146 + 0.0001*m.x159*m.x147 + 0.0001*m.x159*m.x148 + 0.0001*m.x159*m.x149 + 0.0001*
m.x159*m.x150 + 0.0001*m.x159*m.x151 + 0.0001*m.x159*m.x152 + 0.0001*m.x159*m.x153 + 0.0001*
m.x159*m.x154 + 0.0001*m.x159*m.x155 + 0.0001*m.x159*m.x156 + 0.0001*m.x159*m.x157 + 0.0001*
m.x159*m.x158 + 4.21312681176268*m.x159**2 + 0.0001*m.x159*m.x160 + 0.0001*m.x159*m.x161 + 0.0001
*m.x159*m.x162 + 0.0001*m.x159*m.x163 + 0.0001*m.x159*m.x164 + 0.0001*m.x159*m.x165 + 0.0001*
m.x159*m.x166 + 0.0001*m.x159*m.x167 + 0.0001*m.x159*m.x168 + 0.0001*m.x159*m.x169 + 0.0001*
m.x159*m.x170 + 0.0001*m.x159*m.x171 + 0.0001*m.x159*m.x172 + 0.0001*m.x159*m.x173 + 0.0001*
m.x159*m.x174 + 0.0001*m.x159*m.x175 + 0.0001*m.x159*m.x176 + 0.0001*m.x159*m.x177 + 0.0001*
m.x159*m.x178 + 0.0001*m.x159*m.x179 + 0.0001*m.x159*m.x180 + 0.0001*m.x159*m.x181 + 0.0001*
m.x159*m.x182 + 0.0001*m.x159*m.x183 + 0.0001*m.x159*m.x184 + 0.0001*m.x159*m.x185 + 0.0001*
m.x160*m.x1 + 0.0001*m.x160*m.x2 + 0.0001*m.x160*m.x3 + 0.0001*m.x160*m.x4 + 0.0001*m.x160*m.x5
+ 0.0001*m.x160*m.x6 + 0.0001*m.x160*m.x7 + 0.0001*m.x160*m.x8 + 0.0001*m.x160*m.x9 + 0.0001*
m.x160*m.x10 + 0.0001*m.x160*m.x11 + 0.0001*m.x160*m.x12 + 0.0001*m.x160*m.x13 + 0.0001*m.x160*
m.x14 + 0.0001*m.x160*m.x15 + 0.0001*m.x160*m.x16 + 0.0001*m.x160*m.x17 + 0.0001*m.x160*m.x18 +
0.0001*m.x160*m.x19 + 0.0001*m.x160*m.x20 + 0.0001*m.x160*m.x21 + 0.0001*m.x160*m.x22 + 0.0001*
m.x160*m.x23 + 0.0001*m.x160*m.x24 + 0.0001*m.x160*m.x25 + 0.0001*m.x160*m.x26 + 0.0001*m.x160*
m.x27 + 0.0001*m.x160*m.x28 + 0.0001*m.x160*m.x29 + 0.0001*m.x160*m.x30 + 0.0001*m.x160*m.x31 +
0.0001*m.x160*m.x32 + 0.0001*m.x160*m.x33 + 0.0001*m.x160*m.x34 + 0.0001*m.x160*m.x35 + 0.0001*
m.x160*m.x36 + 0.0001*m.x160*m.x37 + 0.0001*m.x160*m.x38 + 0.0001*m.x160*m.x39 + 0.0001*m.x160*
m.x40 + 0.0001*m.x160*m.x41 + 0.0001*m.x160*m.x42 + 0.0001*m.x160*m.x43 + 0.0001*m.x160*m.x44 +
0.0001*m.x160*m.x45 + 0.0001*m.x160*m.x46 + 0.0001*m.x160*m.x47 + 0.0001*m.x160*m.x48 + 0.0001*
m.x160*m.x49 + 0.0001*m.x160*m.x50 + 0.0001*m.x160*m.x51 + 0.0001*m.x160*m.x52 + 0.0001*m.x160*
m.x53 + 0.0001*m.x160*m.x54 + 0.0001*m.x160*m.x55 + 0.0001*m.x160*m.x56 + 0.0001*m.x160*m.x57 +
0.0001*m.x160*m.x58 + 0.0001*m.x160*m.x59 + 0.0001*m.x160*m.x60 + 0.0001*m.x160*m.x61 + 0.0001*
m.x160*m.x62 + 0.0001*m.x160*m.x63 + 0.0001*m.x160*m.x64 + 0.0001*m.x160*m.x65 + 0.0001*m.x160*
m.x66 + 0.0001*m.x160*m.x67 + 0.0001*m.x160*m.x68 + 0.0001*m.x160*m.x69 + 0.0001*m.x160*m.x70 +
0.0001*m.x160*m.x71 + 0.0001*m.x160*m.x72 + 0.0001*m.x160*m.x73 + 0.707825371164089*m.x160*m.x74
+ 0.0001*m.x160*m.x75 + 0.0001*m.x160*m.x76 + 0.0001*m.x160*m.x77 + 0.0001*m.x160*m.x78 + 0.0001
*m.x160*m.x79 + 0.0001*m.x160*m.x80 + 0.0001*m.x160*m.x81 + 0.0001*m.x160*m.x82 + 0.0001*m.x160*
m.x83 + 0.0001*m.x160*m.x84 + 0.0001*m.x160*m.x85 + 0.0001*m.x160*m.x86 + 0.0001*m.x160*m.x87 +
0.0001*m.x160*m.x88 + 0.0001*m.x160*m.x89 + 0.0001*m.x160*m.x90 + 0.0001*m.x160*m.x91 + 0.0001*
m.x160*m.x92 + 0.0001*m.x160*m.x93 + 0.0001*m.x160*m.x94 + 0.0001*m.x160*m.x95 + 0.0001*m.x160*
m.x96 + 0.0001*m.x160*m.x97 + 0.0001*m.x160*m.x98 + 0.0001*m.x160*m.x99 + 0.0001*m.x160*m.x100 +
0.0001*m.x160*m.x101 + 0.0001*m.x160*m.x102 + 0.0001*m.x160*m.x103 + 0.0001*m.x160*m.x104 +
0.0001*m.x160*m.x105 + 0.0001*m.x160*m.x106 + 0.0001*m.x160*m.x107 + 0.0001*m.x160*m.x108 +
0.0001*m.x160*m.x109 + 0.0001*m.x160*m.x110 + 0.0001*m.x160*m.x111 + 0.0001*m.x160*m.x112 +
0.0001*m.x160*m.x113 + 0.0001*m.x160*m.x114 + 0.0001*m.x160*m.x115 + 0.0001*m.x160*m.x116 +
0.0001*m.x160*m.x117 + 0.0001*m.x160*m.x118 + 3.80901503232404*m.x160*m.x119 + 0.0001*m.x160*
m.x120 + 0.0001*m.x160*m.x121 + 0.0001*m.x160*m.x122 + 0.0001*m.x160*m.x123 + 0.0001*m.x160*
m.x124 + 0.0001*m.x160*m.x125 + 0.0001*m.x160*m.x126 + 0.0001*m.x160*m.x127 + 0.0001*m.x160*
m.x128 + 0.0001*m.x160*m.x129 + 0.0001*m.x160*m.x130 + 0.0001*m.x160*m.x131 + 0.0001*m.x160*
m.x132 + 0.0001*m.x160*m.x133 + 0.0001*m.x160*m.x134 + 0.0001*m.x160*m.x135 + 0.0001*m.x160*
m.x136 + 0.0001*m.x160*m.x137 + 0.0001*m.x160*m.x138 + 0.0001*m.x160*m.x139 + 0.0001*m.x160*
m.x140 + 0.0001*m.x160*m.x141 + 0.0001*m.x160*m.x142 + 0.0001*m.x160*m.x143 + 0.0001*m.x160*
m.x144 + 6.16722574049717*m.x160*m.x145 + 0.0001*m.x160*m.x146 + 0.0001*m.x160*m.x147 + 0.0001*
m.x160*m.x148 + 0.0001*m.x160*m.x149 + 0.0001*m.x160*m.x150 + 0.0001*m.x160*m.x151 + 0.0001*
m.x160*m.x152 + 0.0001*m.x160*m.x153 + 0.0001*m.x160*m.x154 + 0.0001*m.x160*m.x155 + 0.0001*
m.x160*m.x156 + 0.0001*m.x160*m.x157 + 0.0001*m.x160*m.x158 + 0.0001*m.x160*m.x159 +
3.71301165906068*m.x160**2 + 0.0001*m.x160*m.x161 + 0.0001*m.x160*m.x162 + 0.0001*m.x160*m.x163
+ 0.0001*m.x160*m.x164 + 0.0001*m.x160*m.x165 + 0.0001*m.x160*m.x166 + 0.0001*m.x160*m.x167 +
0.0001*m.x160*m.x168 + 0.0001*m.x160*m.x169 + 0.0001*m.x160*m.x170 + 0.0001*m.x160*m.x171 +
0.0001*m.x160*m.x172 + 0.0001*m.x160*m.x173 + 0.0001*m.x160*m.x174 + 0.0001*m.x160*m.x175 +
0.0001*m.x160*m.x176 + 0.0001*m.x160*m.x177 + 0.0001*m.x160*m.x178 + 0.0001*m.x160*m.x179 +
0.0001*m.x160*m.x180 + 0.0001*m.x160*m.x181 + 0.0001*m.x160*m.x182 + 0.0001*m.x160*m.x183 +
0.0001*m.x160*m.x184 + 0.0001*m.x160*m.x185 + 0.0001*m.x161*m.x1 + 0.0001*m.x161*m.x2 + 0.0001*
m.x161*m.x3 + 0.0001*m.x161*m.x4 + 0.0001*m.x161*m.x5 + 0.0001*m.x161*m.x6 + 0.0001*m.x161*m.x7
+ 0.0001*m.x161*m.x8 + 0.0001*m.x161*m.x9 + 0.0001*m.x161*m.x10 + 0.0001*m.x161*m.x11 + 0.0001*
m.x161*m.x12 + 0.0001*m.x161*m.x13 + 0.0001*m.x161*m.x14 + 0.0001*m.x161*m.x15 + 0.0001*m.x161*
m.x16 + 0.0001*m.x161*m.x17 + 0.0001*m.x161*m.x18 + 0.0001*m.x161*m.x19 + 0.0001*m.x161*m.x20 +
0.0001*m.x161*m.x21 + 0.0001*m.x161*m.x22 + 0.0001*m.x161*m.x23 + 0.0001*m.x161*m.x24 + 0.0001*
m.x161*m.x25 + 0.0001*m.x161*m.x26 + 0.0001*m.x161*m.x27 + 0.0001*m.x161*m.x28 + 0.0001*m.x161*
m.x29 + 0.0001*m.x161*m.x30 + 0.0001*m.x161*m.x31 + 0.0001*m.x161*m.x32 + 0.0001*m.x161*m.x33 +
0.0001*m.x161*m.x34 + 0.0001*m.x161*m.x35 + 0.0001*m.x161*m.x36 + 0.0001*m.x161*m.x37 + 0.0001*
m.x161*m.x38 + 0.0001*m.x161*m.x39 + 0.0001*m.x161*m.x40 + 0.0001*m.x161*m.x41 + 0.0001*m.x161*
m.x42 + 0.0001*m.x161*m.x43 + 0.0001*m.x161*m.x44 + 0.0001*m.x161*m.x45 + 0.0001*m.x161*m.x46 +
0.0001*m.x161*m.x47 + 0.0001*m.x161*m.x48 + 0.0001*m.x161*m.x49 + 0.0001*m.x161*m.x50 + 0.0001*
m.x161*m.x51 + 0.0001*m.x161*m.x52 + 0.0001*m.x161*m.x53 + 0.0001*m.x161*m.x54 + 0.0001*m.x161*
m.x55 + 0.0001*m.x161*m.x56 + 0.0001*m.x161*m.x57 + 0.0001*m.x161*m.x58 + 0.0001*m.x161*m.x59 +
0.0001*m.x161*m.x60 + 0.0001*m.x161*m.x61 + 0.0001*m.x161*m.x62 + 0.0001*m.x161*m.x63 + 0.0001*
m.x161*m.x64 + 0.0001*m.x161*m.x65 + 0.0001*m.x161*m.x66 + 0.0001*m.x161*m.x67 + 0.0001*m.x161*
m.x68 + 0.0001*m.x161*m.x69 + 0.0001*m.x161*m.x70 + 0.0001*m.x161*m.x71 + 0.0001*m.x161*m.x72 +
0.0001*m.x161*m.x73 + 0.0001*m.x161*m.x74 + 0.70518890429601*m.x161*m.x75 + 0.0001*m.x161*m.x76
+ 0.0001*m.x161*m.x77 + 0.0001*m.x161*m.x78 + 0.0001*m.x161*m.x79 + 0.0001*m.x161*m.x80 + 0.0001
*m.x161*m.x81 + 0.0001*m.x161*m.x82 + 0.0001*m.x161*m.x83 + 0.0001*m.x161*m.x84 + 0.0001*m.x161*
m.x85 + 0.0001*m.x161*m.x86 + 0.0001*m.x161*m.x87 + 0.0001*m.x161*m.x88 + 0.0001*m.x161*m.x89 +
0.0001*m.x161*m.x90 + 0.0001*m.x161*m.x91 + 0.0001*m.x161*m.x92 + 0.0001*m.x161*m.x93 + 0.0001*
m.x161*m.x94 + 0.0001*m.x161*m.x95 + 0.0001*m.x161*m.x96 + 0.0001*m.x161*m.x97 + 0.0001*m.x161*
m.x98 + 0.0001*m.x161*m.x99 + 0.0001*m.x161*m.x100 + 0.0001*m.x161*m.x101 + 0.0001*m.x161*m.x102
+ 0.0001*m.x161*m.x103 + 0.0001*m.x161*m.x104 + 0.0001*m.x161*m.x105 + 0.0001*m.x161*m.x106 +
0.0001*m.x161*m.x107 + 0.0001*m.x161*m.x108 + 0.0001*m.x161*m.x109 + 0.0001*m.x161*m.x110 +
0.0001*m.x161*m.x111 + 0.0001*m.x161*m.x112 + 0.0001*m.x161*m.x113 + 0.0001*m.x161*m.x114 +
0.0001*m.x161*m.x115 + 0.0001*m.x161*m.x116 + 0.0001*m.x161*m.x117 + 0.0001*m.x161*m.x118 +
0.0001*m.x161*m.x119 + 3.41170115969337*m.x161*m.x120 + 0.0001*m.x161*m.x121 + 0.0001*m.x161*
m.x122 + 0.0001*m.x161*m.x123 + 0.0001*m.x161*m.x124 + 0.0001*m.x161*m.x125 + 0.0001*m.x161*
m.x126 + 0.0001*m.x161*m.x127 + 0.0001*m.x161*m.x128 + 0.0001*m.x161*m.x129 + 0.0001*m.x161*
m.x130 + 0.0001*m.x161*m.x131 + 0.0001*m.x161*m.x132 + 0.0001*m.x161*m.x133 + 0.0001*m.x161*
m.x134 + 0.0001*m.x161*m.x135 + 0.0001*m.x161*m.x136 + 0.0001*m.x161*m.x137 + 0.0001*m.x161*
m.x138 + 0.0001*m.x161*m.x139 + 0.0001*m.x161*m.x140 + 0.0001*m.x161*m.x141 + 0.0001*m.x161*
m.x142 + 0.0001*m.x161*m.x143 + 0.0001*m.x161*m.x144 + 0.0001*m.x161*m.x145 + 5.52392322779655*
m.x161*m.x146 + 0.0001*m.x161*m.x147 + 0.0001*m.x161*m.x148 + 0.0001*m.x161*m.x149 + 0.0001*
m.x161*m.x150 + 0.0001*m.x161*m.x151 + 0.0001*m.x161*m.x152 + 0.0001*m.x161*m.x153 + 0.0001*
m.x161*m.x154 + 0.0001*m.x161*m.x155 + 0.0001*m.x161*m.x156 + 0.0001*m.x161*m.x157 + 0.0001*
m.x161*m.x158 + 0.0001*m.x161*m.x159 + 0.0001*m.x161*m.x160 + 2.97881226422415*m.x161**2 + 0.0001
*m.x161*m.x162 + 0.0001*m.x161*m.x163 + 0.0001*m.x161*m.x164 + 0.0001*m.x161*m.x165 + 0.0001*
m.x161*m.x166 + 0.0001*m.x161*m.x167 + 0.0001*m.x161*m.x168 + 0.0001*m.x161*m.x169 + 0.0001*
m.x161*m.x170 + 0.0001*m.x161*m.x171 + 0.0001*m.x161*m.x172 + 0.0001*m.x161*m.x173 + 0.0001*
m.x161*m.x174 + 0.0001*m.x161*m.x175 + 0.0001*m.x161*m.x176 + 0.0001*m.x161*m.x177 + 0.0001*
m.x161*m.x178 + 0.0001*m.x161*m.x179 + 0.0001*m.x161*m.x180 + 0.0001*m.x161*m.x181 + 0.0001*
m.x161*m.x182 + 0.0001*m.x161*m.x183 + 0.0001*m.x161*m.x184 + 0.0001*m.x161*m.x185 + 0.0001*
m.x162*m.x1 + 0.0001*m.x162*m.x2 + 0.0001*m.x162*m.x3 + 0.0001*m.x162*m.x4 + 0.0001*m.x162*m.x5
+ 0.0001*m.x162*m.x6 + 0.0001*m.x162*m.x7 + 0.0001*m.x162*m.x8 + 0.0001*m.x162*m.x9 + 0.0001*
m.x162*m.x10 + 0.0001*m.x162*m.x11 + 0.0001*m.x162*m.x12 + 0.0001*m.x162*m.x13 + 0.0001*m.x162*
m.x14 + 0.0001*m.x162*m.x15 + 0.0001*m.x162*m.x16 + 0.0001*m.x162*m.x17 + 0.0001*m.x162*m.x18 +
0.0001*m.x162*m.x19 + 0.0001*m.x162*m.x20 + 0.0001*m.x162*m.x21 + 0.0001*m.x162*m.x22 + 0.0001*
m.x162*m.x23 + 0.0001*m.x162*m.x24 + 0.0001*m.x162*m.x25 + 0.0001*m.x162*m.x26 + 0.0001*m.x162*
m.x27 + 0.0001*m.x162*m.x28 + 0.0001*m.x162*m.x29 + 0.0001*m.x162*m.x30 + 0.0001*m.x162*m.x31 +
0.0001*m.x162*m.x32 + 0.0001*m.x162*m.x33 + 0.0001*m.x162*m.x34 + 0.0001*m.x162*m.x35 + 0.0001*
m.x162*m.x36 + 0.0001*m.x162*m.x37 + 0.0001*m.x162*m.x38 + 0.0001*m.x162*m.x39 + 0.0001*m.x162*
m.x40 + 0.0001*m.x162*m.x41 + 0.0001*m.x162*m.x42 + 0.0001*m.x162*m.x43 + 0.0001*m.x162*m.x44 +
0.0001*m.x162*m.x45 + 0.0001*m.x162*m.x46 + 0.0001*m.x162*m.x47 + 0.0001*m.x162*m.x48 + 0.0001*
m.x162*m.x49 + 0.0001*m.x162*m.x50 + 0.0001*m.x162*m.x51 + 0.0001*m.x162*m.x52 + 0.0001*m.x162*
m.x53 + 0.0001*m.x162*m.x54 + 0.0001*m.x162*m.x55 + 0.0001*m.x162*m.x56 + 0.0001*m.x162*m.x57 +
0.0001*m.x162*m.x58 + 0.0001*m.x162*m.x59 + 0.0001*m.x162*m.x60 + 0.0001*m.x162*m.x61 + 0.0001*
m.x162*m.x62 + 0.0001*m.x162*m.x63 + 0.0001*m.x162*m.x64 + 0.0001*m.x162*m.x65 + 0.0001*m.x162*
m.x66 + 0.0001*m.x162*m.x67 + 0.0001*m.x162*m.x68 + 0.0001*m.x162*m.x69 + 0.0001*m.x162*m.x70 +
0.0001*m.x162*m.x71 + 0.0001*m.x162*m.x72 + 0.0001*m.x162*m.x73 + 0.0001*m.x162*m.x74 + 0.0001*
m.x162*m.x75 + 0.763965431364781*m.x162*m.x76 + 0.0001*m.x162*m.x77 + 0.0001*m.x162*m.x78 +
0.0001*m.x162*m.x79 + 0.0001*m.x162*m.x80 + 0.0001*m.x162*m.x81 + 0.0001*m.x162*m.x82 + 0.0001*
m.x162*m.x83 + 0.0001*m.x162*m.x84 + 0.0001*m.x162*m.x85 + 0.0001*m.x162*m.x86 + 0.0001*m.x162*
m.x87 + 0.0001*m.x162*m.x88 + 0.0001*m.x162*m.x89 + 0.0001*m.x162*m.x90 + 0.0001*m.x162*m.x91 +
0.0001*m.x162*m.x92 + 0.0001*m.x162*m.x93 + 0.0001*m.x162*m.x94 + 0.0001*m.x162*m.x95 + 0.0001*
m.x162*m.x96 + 0.0001*m.x162*m.x97 + 0.0001*m.x162*m.x98 + 0.0001*m.x162*m.x99 + 0.0001*m.x162*
m.x100 + 0.0001*m.x162*m.x101 + 0.0001*m.x162*m.x102 + 0.0001*m.x162*m.x103 + 0.0001*m.x162*
m.x104 + 0.0001*m.x162*m.x105 + 0.0001*m.x162*m.x106 + 0.0001*m.x162*m.x107 + 0.0001*m.x162*
m.x108 + 0.0001*m.x162*m.x109 + 0.0001*m.x162*m.x110 + 0.0001*m.x162*m.x111 + 0.0001*m.x162*
m.x112 + 0.0001*m.x162*m.x113 + 0.0001*m.x162*m.x114 + 0.0001*m.x162*m.x115 + 0.0001*m.x162*
m.x116 + 0.0001*m.x162*m.x117 + 0.0001*m.x162*m.x118 + 0.0001*m.x162*m.x119 + 0.0001*m.x162*
m.x120 + 3.69609376137639*m.x162*m.x121 + 0.0001*m.x162*m.x122 + 0.0001*m.x162*m.x123 + 0.0001*
m.x162*m.x124 + 0.0001*m.x162*m.x125 + 0.0001*m.x162*m.x126 + 0.0001*m.x162*m.x127 + 0.0001*
m.x162*m.x128 + 0.0001*m.x162*m.x129 + 0.0001*m.x162*m.x130 + 0.0001*m.x162*m.x131 + 0.0001*
m.x162*m.x132 + 0.0001*m.x162*m.x133 + 0.0001*m.x162*m.x134 + 0.0001*m.x162*m.x135 + 0.0001*
m.x162*m.x136 + 0.0001*m.x162*m.x137 + 0.0001*m.x162*m.x138 + 0.0001*m.x162*m.x139 + 0.0001*
m.x162*m.x140 + 0.0001*m.x162*m.x141 + 0.0001*m.x162*m.x142 + 0.0001*m.x162*m.x143 + 0.0001*
m.x162*m.x144 + 0.0001*m.x162*m.x145 + 0.0001*m.x162*m.x146 + 6.01202148404445*m.x162*m.x147 +
0.0001*m.x162*m.x148 + 0.0001*m.x162*m.x149 + 0.0001*m.x162*m.x150 + 0.0001*m.x162*m.x151 +
0.0001*m.x162*m.x152 + 0.0001*m.x162*m.x153 + 0.0001*m.x162*m.x154 + 0.0001*m.x162*m.x155 +
0.0001*m.x162*m.x156 + 0.0001*m.x162*m.x157 + 0.0001*m.x162*m.x158 + 0.0001*m.x162*m.x159 +
0.0001*m.x162*m.x160 + 0.0001*m.x162*m.x161 + 3.22711905356876*m.x162**2 + 0.0001*m.x162*m.x163
+ 0.0001*m.x162*m.x164 + 0.0001*m.x162*m.x165 + 0.0001*m.x162*m.x166 + 0.0001*m.x162*m.x167 +
0.0001*m.x162*m.x168 + 0.0001*m.x162*m.x169 + 0.0001*m.x162*m.x170 + 0.0001*m.x162*m.x171 +
0.0001*m.x162*m.x172 + 0.0001*m.x162*m.x173 + 0.0001*m.x162*m.x174 + 0.0001*m.x162*m.x175 +
0.0001*m.x162*m.x176 + 0.0001*m.x162*m.x177 + 0.0001*m.x162*m.x178 + 0.0001*m.x162*m.x179 +
0.0001*m.x162*m.x180 + 0.0001*m.x162*m.x181 + 0.0001*m.x162*m.x182 + 0.0001*m.x162*m.x183 +
0.0001*m.x162*m.x184 + 0.0001*m.x162*m.x185 + 0.0001*m.x163*m.x1 + 0.0001*m.x163*m.x2 + 0.0001*
m.x163*m.x3 + 0.0001*m.x163*m.x4 + 0.0001*m.x163*m.x5 + 0.0001*m.x163*m.x6 + 0.0001*m.x163*m.x7
+ 0.0001*m.x163*m.x8 + 0.0001*m.x163*m.x9 + 0.0001*m.x163*m.x10 + 0.0001*m.x163*m.x11 + 0.0001*
m.x163*m.x12 + 0.0001*m.x163*m.x13 + 0.0001*m.x163*m.x14 + 0.0001*m.x163*m.x15 + 0.0001*m.x163*
m.x16 + 0.0001*m.x163*m.x17 + 0.0001*m.x163*m.x18 + 0.0001*m.x163*m.x19 + 0.0001*m.x163*m.x20 +
0.0001*m.x163*m.x21 + 0.0001*m.x163*m.x22 + 0.0001*m.x163*m.x23 + 0.0001*m.x163*m.x24 + 0.0001*
m.x163*m.x25 + 0.0001*m.x163*m.x26 + 0.0001*m.x163*m.x27 + 0.0001*m.x163*m.x28 + 0.0001*m.x163*
m.x29 + 0.0001*m.x163*m.x30 + 0.0001*m.x163*m.x31 + 0.0001*m.x163*m.x32 + 0.0001*m.x163*m.x33 +
0.0001*m.x163*m.x34 + 0.0001*m.x163*m.x35 + 0.0001*m.x163*m.x36 + 0.0001*m.x163*m.x37 + 0.0001*
m.x163*m.x38 + 0.0001*m.x163*m.x39 + 0.0001*m.x163*m.x40 + 0.0001*m.x163*m.x41 + 0.0001*m.x163*
m.x42 + 0.0001*m.x163*m.x43 + 0.0001*m.x163*m.x44 + 0.0001*m.x163*m.x45 + 0.0001*m.x163*m.x46 +
0.0001*m.x163*m.x47 + 0.0001*m.x163*m.x48 + 0.0001*m.x163*m.x49 + 0.0001*m.x163*m.x50 + 0.0001*
m.x163*m.x51 + 0.0001*m.x163*m.x52 + 0.0001*m.x163*m.x53 + 0.0001*m.x163*m.x54 + 0.0001*m.x163*
m.x55 + 0.0001*m.x163*m.x56 + 0.0001*m.x163*m.x57 + 0.0001*m.x163*m.x58 + 0.0001*m.x163*m.x59 +
0.0001*m.x163*m.x60 + 0.0001*m.x163*m.x61 + 0.0001*m.x163*m.x62 + 0.0001*m.x163*m.x63 + 0.0001*
m.x163*m.x64 + 0.0001*m.x163*m.x65 + 0.0001*m.x163*m.x66 + 0.0001*m.x163*m.x67 + 0.0001*m.x163*
m.x68 + 0.0001*m.x163*m.x69 + 0.0001*m.x163*m.x70 + 0.0001*m.x163*m.x71 + 0.0001*m.x163*m.x72 +
0.0001*m.x163*m.x73 + 0.0001*m.x163*m.x74 + 0.0001*m.x163*m.x75 + 0.0001*m.x163*m.x76 +
0.847177128279277*m.x163*m.x77 + 0.0001*m.x163*m.x78 + 0.0001*m.x163*m.x79 + 0.0001*m.x163*m.x80
+ 0.0001*m.x163*m.x81 + 0.0001*m.x163*m.x82 + 0.0001*m.x163*m.x83 + 0.0001*m.x163*m.x84 + 0.0001
*m.x163*m.x85 + 0.0001*m.x163*m.x86 + 0.0001*m.x163*m.x87 + 0.0001*m.x163*m.x88 + 0.0001*m.x163*
m.x89 + 0.0001*m.x163*m.x90 + 0.0001*m.x163*m.x91 + 0.0001*m.x163*m.x92 + 0.0001*m.x163*m.x93 +
0.0001*m.x163*m.x94 + 0.0001*m.x163*m.x95 + 0.0001*m.x163*m.x96 + 0.0001*m.x163*m.x97 + 0.0001*
m.x163*m.x98 + 0.0001*m.x163*m.x99 + 0.0001*m.x163*m.x100 + 0.0001*m.x163*m.x101 + 0.0001*m.x163*
m.x102 + 0.0001*m.x163*m.x103 + 0.0001*m.x163*m.x104 + 0.0001*m.x163*m.x105 + 0.0001*m.x163*
m.x106 + 0.0001*m.x163*m.x107 + 0.0001*m.x163*m.x108 + 0.0001*m.x163*m.x109 + 0.0001*m.x163*
m.x110 + 0.0001*m.x163*m.x111 + 0.0001*m.x163*m.x112 + 0.0001*m.x163*m.x113 + 0.0001*m.x163*
m.x114 + 0.0001*m.x163*m.x115 + 0.0001*m.x163*m.x116 + 0.0001*m.x163*m.x117 + 0.0001*m.x163*
m.x118 + 0.0001*m.x163*m.x119 + 0.0001*m.x163*m.x120 + 0.0001*m.x163*m.x121 + 3.89841915597365*
m.x163*m.x122 + 0.0001*m.x163*m.x123 + 0.0001*m.x163*m.x124 + 0.0001*m.x163*m.x125 + 0.0001*
m.x163*m.x126 + 0.0001*m.x163*m.x127 + 0.0001*m.x163*m.x128 + 0.0001*m.x163*m.x129 + 0.0001*
m.x163*m.x130 + 0.0001*m.x163*m.x131 + 0.0001*m.x163*m.x132 + 0.0001*m.x163*m.x133 + 0.0001*
m.x163*m.x134 + 0.0001*m.x163*m.x135 + 0.0001*m.x163*m.x136 + 0.0001*m.x163*m.x137 + 0.0001*
m.x163*m.x138 + 0.0001*m.x163*m.x139 + 0.0001*m.x163*m.x140 + 0.0001*m.x163*m.x141 + 0.0001*
m.x163*m.x142 + 0.0001*m.x163*m.x143 + 0.0001*m.x163*m.x144 + 0.0001*m.x163*m.x145 + 0.0001*
m.x163*m.x146 + 0.0001*m.x163*m.x147 + 5.5395442897713*m.x163*m.x148 + 0.0001*m.x163*m.x149 +
0.0001*m.x163*m.x150 + 0.0001*m.x163*m.x151 + 0.0001*m.x163*m.x152 + 0.0001*m.x163*m.x153 +
0.0001*m.x163*m.x154 + 0.0001*m.x163*m.x155 + 0.0001*m.x163*m.x156 + 0.0001*m.x163*m.x157 +
0.0001*m.x163*m.x158 + 0.0001*m.x163*m.x159 + 0.0001*m.x163*m.x160 + 0.0001*m.x163*m.x161 +
0.0001*m.x163*m.x162 + 3.61073138893024*m.x163**2 + 0.0001*m.x163*m.x164 + 0.0001*m.x163*m.x165
+ 0.0001*m.x163*m.x166 + 0.0001*m.x163*m.x167 + 0.0001*m.x163*m.x168 + 0.0001*m.x163*m.x169 +
0.0001*m.x163*m.x170 + 0.0001*m.x163*m.x171 + 0.0001*m.x163*m.x172 + 0.0001*m.x163*m.x173 +
0.0001*m.x163*m.x174 + 0.0001*m.x163*m.x175 + 0.0001*m.x163*m.x176 + 0.0001*m.x163*m.x177 +
0.0001*m.x163*m.x178 + 0.0001*m.x163*m.x179 + 0.0001*m.x163*m.x180 + 0.0001*m.x163*m.x181 +
0.0001*m.x163*m.x182 + 0.0001*m.x163*m.x183 + 0.0001*m.x163*m.x184 + 0.0001*m.x163*m.x185 +
0.0001*m.x164*m.x1 + 0.0001*m.x164*m.x2 + 0.0001*m.x164*m.x3 + 0.0001*m.x164*m.x4 + 0.0001*m.x164
*m.x5 + 0.0001*m.x164*m.x6 + 0.0001*m.x164*m.x7 + 0.0001*m.x164*m.x8 + 0.0001*m.x164*m.x9 +
0.0001*m.x164*m.x10 + 0.0001*m.x164*m.x11 + 0.0001*m.x164*m.x12 + 0.0001*m.x164*m.x13 + 0.0001*
m.x164*m.x14 + 0.0001*m.x164*m.x15 + 0.0001*m.x164*m.x16 + 0.0001*m.x164*m.x17 + 0.0001*m.x164*
m.x18 + 0.0001*m.x164*m.x19 + 0.0001*m.x164*m.x20 + 0.0001*m.x164*m.x21 + 0.0001*m.x164*m.x22 +
0.0001*m.x164*m.x23 + 0.0001*m.x164*m.x24 + 0.0001*m.x164*m.x25 + 0.0001*m.x164*m.x26 + 0.0001*
m.x164*m.x27 + 0.0001*m.x164*m.x28 + 0.0001*m.x164*m.x29 + 0.0001*m.x164*m.x30 + 0.0001*m.x164*
m.x31 + 0.0001*m.x164*m.x32 + 0.0001*m.x164*m.x33 + 0.0001*m.x164*m.x34 + 0.0001*m.x164*m.x35 +
0.0001*m.x164*m.x36 + 0.0001*m.x164*m.x37 + 0.0001*m.x164*m.x38 + 0.0001*m.x164*m.x39 + 0.0001*
m.x164*m.x40 + 0.0001*m.x164*m.x41 + 0.0001*m.x164*m.x42 + 0.0001*m.x164*m.x43 + 0.0001*m.x164*
m.x44 + 0.0001*m.x164*m.x45 + 0.0001*m.x164*m.x46 + 0.0001*m.x164*m.x47 + 0.0001*m.x164*m.x48 +
0.0001*m.x164*m.x49 + 0.0001*m.x164*m.x50 + 0.0001*m.x164*m.x51 + 0.0001*m.x164*m.x52 + 0.0001*
m.x164*m.x53 + 0.0001*m.x164*m.x54 + 0.0001*m.x164*m.x55 + 0.0001*m.x164*m.x56 + 0.0001*m.x164*
m.x57 + 0.0001*m.x164*m.x58 + 0.0001*m.x164*m.x59 + 0.0001*m.x164*m.x60 + 0.0001*m.x164*m.x61 +
0.0001*m.x164*m.x62 + 0.0001*m.x164*m.x63 + 0.0001*m.x164*m.x64 + 0.0001*m.x164*m.x65 + 0.0001*
m.x164*m.x66 + 0.0001*m.x164*m.x67 + 0.0001*m.x164*m.x68 + 0.0001*m.x164*m.x69 + 0.0001*m.x164*
m.x70 + 0.0001*m.x164*m.x71 + 0.0001*m.x164*m.x72 + 0.0001*m.x164*m.x73 + 0.0001*m.x164*m.x74 +
0.0001*m.x164*m.x75 + 0.0001*m.x164*m.x76 + 0.0001*m.x164*m.x77 + 0.823380777001311*m.x164*m.x78
+ 0.0001*m.x164*m.x79 + 0.0001*m.x164*m.x80 + 0.0001*m.x164*m.x81 + 0.0001*m.x164*m.x82 + 0.0001
*m.x164*m.x83 + 0.0001*m.x164*m.x84 + 0.0001*m.x164*m.x85 + 0.0001*m.x164*m.x86 + 0.0001*m.x164*
m.x87 + 0.0001*m.x164*m.x88 + 0.0001*m.x164*m.x89 + 0.0001*m.x164*m.x90 + 0.0001*m.x164*m.x91 +
0.0001*m.x164*m.x92 + 0.0001*m.x164*m.x93 + 0.0001*m.x164*m.x94 + 0.0001*m.x164*m.x95 + 0.0001*
m.x164*m.x96 + 0.0001*m.x164*m.x97 + 0.0001*m.x164*m.x98 + 0.0001*m.x164*m.x99 + 0.0001*m.x164*
m.x100 + 0.0001*m.x164*m.x101 + 0.0001*m.x164*m.x102 + 0.0001*m.x164*m.x103 + 0.0001*m.x164*
m.x104 + 0.0001*m.x164*m.x105 + 0.0001*m.x164*m.x106 + 0.0001*m.x164*m.x107 + 0.0001*m.x164*
m.x108 + 0.0001*m.x164*m.x109 + 0.0001*m.x164*m.x110 + 0.0001*m.x164*m.x111 + 0.0001*m.x164*
m.x112 + 0.0001*m.x164*m.x113 + 0.0001*m.x164*m.x114 + 0.0001*m.x164*m.x115 + 0.0001*m.x164*
m.x116 + 0.0001*m.x164*m.x117 + 0.0001*m.x164*m.x118 + 0.0001*m.x164*m.x119 + 0.0001*m.x164*
m.x120 + 0.0001*m.x164*m.x121 + 0.0001*m.x164*m.x122 + 4.06514255983911*m.x164*m.x123 + 0.0001*
m.x164*m.x124 + 0.0001*m.x164*m.x125 + 0.0001*m.x164*m.x126 + 0.0001*m.x164*m.x127 + 0.0001*
m.x164*m.x128 + 0.0001*m.x164*m.x129 + 0.0001*m.x164*m.x130 + 0.0001*m.x164*m.x131 + 0.0001*
m.x164*m.x132 + 0.0001*m.x164*m.x133 + 0.0001*m.x164*m.x134 + 0.0001*m.x164*m.x135 + 0.0001*
m.x164*m.x136 + 0.0001*m.x164*m.x137 + 0.0001*m.x164*m.x138 + 0.0001*m.x164*m.x139 + 0.0001*
m.x164*m.x140 + 0.0001*m.x164*m.x141 + 0.0001*m.x164*m.x142 + 0.0001*m.x164*m.x143 + 0.0001*
m.x164*m.x144 + 0.0001*m.x164*m.x145 + 0.0001*m.x164*m.x146 + 0.0001*m.x164*m.x147 + 0.0001*
m.x164*m.x148 + 5.9608785151742*m.x164*m.x149 + 0.0001*m.x164*m.x150 + 0.0001*m.x164*m.x151 +
0.0001*m.x164*m.x152 + 0.0001*m.x164*m.x153 + 0.0001*m.x164*m.x154 + 0.0001*m.x164*m.x155 +
0.0001*m.x164*m.x156 + 0.0001*m.x164*m.x157 + 0.0001*m.x164*m.x158 + 0.0001*m.x164*m.x159 +
0.0001*m.x164*m.x160 + 0.0001*m.x164*m.x161 + 0.0001*m.x164*m.x162 + 0.0001*m.x164*m.x163 +
4.05152351315289*m.x164**2 + 0.0001*m.x164*m.x165 + 0.0001*m.x164*m.x166 + 0.0001*m.x164*m.x167
+ 0.0001*m.x164*m.x168 + 0.0001*m.x164*m.x169 + 0.0001*m.x164*m.x170 + 0.0001*m.x164*m.x171 +
0.0001*m.x164*m.x172 + 0.0001*m.x164*m.x173 + 0.0001*m.x164*m.x174 + 0.0001*m.x164*m.x175 +
0.0001*m.x164*m.x176 + 0.0001*m.x164*m.x177 + 0.0001*m.x164*m.x178 + 0.0001*m.x164*m.x179 +
0.0001*m.x164*m.x180 + 0.0001*m.x164*m.x181 + 0.0001*m.x164*m.x182 + 0.0001*m.x164*m.x183 +
0.0001*m.x164*m.x184 + 0.0001*m.x164*m.x185 + 0.0001*m.x165*m.x1 + 0.0001*m.x165*m.x2 + 0.0001*
m.x165*m.x3 + 0.0001*m.x165*m.x4 + 0.0001*m.x165*m.x5 + 0.0001*m.x165*m.x6 + 0.0001*m.x165*m.x7
+ 0.0001*m.x165*m.x8 + 0.0001*m.x165*m.x9 + 0.0001*m.x165*m.x10 + 0.0001*m.x165*m.x11 + 0.0001*
m.x165*m.x12 + 0.0001*m.x165*m.x13 + 0.0001*m.x165*m.x14 + 0.0001*m.x165*m.x15 + 0.0001*m.x165*
m.x16 + 0.0001*m.x165*m.x17 + 0.0001*m.x165*m.x18 + 0.0001*m.x165*m.x19 + 0.0001*m.x165*m.x20 +
0.0001*m.x165*m.x21 + 0.0001*m.x165*m.x22 + 0.0001*m.x165*m.x23 + 0.0001*m.x165*m.x24 + 0.0001*
m.x165*m.x25 + 0.0001*m.x165*m.x26 + 0.0001*m.x165*m.x27 + 0.0001*m.x165*m.x28 + 0.0001*m.x165*
m.x29 + 0.0001*m.x165*m.x30 + 0.0001*m.x165*m.x31 + 0.0001*m.x165*m.x32 + 0.0001*m.x165*m.x33 +
0.0001*m.x165*m.x34 + 0.0001*m.x165*m.x35 + 0.0001*m.x165*m.x36 + 0.0001*m.x165*m.x37 + 0.0001*
m.x165*m.x38 + 0.0001*m.x165*m.x39 + 0.0001*m.x165*m.x40 + 0.0001*m.x165*m.x41 + 0.0001*m.x165*
m.x42 + 0.0001*m.x165*m.x43 + 0.0001*m.x165*m.x44 + 0.0001*m.x165*m.x45 + 0.0001*m.x165*m.x46 +
0.0001*m.x165*m.x47 + 0.0001*m.x165*m.x48 + 0.0001*m.x165*m.x49 + 0.0001*m.x165*m.x50 + 0.0001*
m.x165*m.x51 + 0.0001*m.x165*m.x52 + 0.0001*m.x165*m.x53 + 0.0001*m.x165*m.x54 + 0.0001*m.x165*
m.x55 + 0.0001*m.x165*m.x56 + 0.0001*m.x165*m.x57 + 0.0001*m.x165*m.x58 + 0.0001*m.x165*m.x59 +
0.0001*m.x165*m.x60 + 0.0001*m.x165*m.x61 + 0.0001*m.x165*m.x62 + 0.0001*m.x165*m.x63 + 0.0001*
m.x165*m.x64 + 0.0001*m.x165*m.x65 + 0.0001*m.x165*m.x66 + 0.0001*m.x165*m.x67 + 0.0001*m.x165*
m.x68 + 0.0001*m.x165*m.x69 + 0.0001*m.x165*m.x70 + 0.0001*m.x165*m.x71 + 0.0001*m.x165*m.x72 +
0.0001*m.x165*m.x73 + 0.0001*m.x165*m.x74 + 0.0001*m.x165*m.x75 + 0.0001*m.x165*m.x76 + 0.0001*
m.x165*m.x77 + 0.0001*m.x165*m.x78 + 0.786568956360439*m.x165*m.x79 + 0.0001*m.x165*m.x80 +
0.0001*m.x165*m.x81 + 0.0001*m.x165*m.x82 + 0.0001*m.x165*m.x83 + 0.0001*m.x165*m.x84 + 0.0001*
m.x165*m.x85 + 0.0001*m.x165*m.x86 + 0.0001*m.x165*m.x87 + 0.0001*m.x165*m.x88 + 0.0001*m.x165*
m.x89 + 0.0001*m.x165*m.x90 + 0.0001*m.x165*m.x91 + 0.0001*m.x165*m.x92 + 0.0001*m.x165*m.x93 +
0.0001*m.x165*m.x94 + 0.0001*m.x165*m.x95 + 0.0001*m.x165*m.x96 + 0.0001*m.x165*m.x97 + 0.0001*
m.x165*m.x98 + 0.0001*m.x165*m.x99 + 0.0001*m.x165*m.x100 + 0.0001*m.x165*m.x101 + 0.0001*m.x165*
m.x102 + 0.0001*m.x165*m.x103 + 0.0001*m.x165*m.x104 + 0.0001*m.x165*m.x105 + 0.0001*m.x165*
m.x106 + 0.0001*m.x165*m.x107 + 0.0001*m.x165*m.x108 + 0.0001*m.x165*m.x109 + 0.0001*m.x165*
m.x110 + 0.0001*m.x165*m.x111 + 0.0001*m.x165*m.x112 + 0.0001*m.x165*m.x113 + 0.0001*m.x165*
m.x114 + 0.0001*m.x165*m.x115 + 0.0001*m.x165*m.x116 + 0.0001*m.x165*m.x117 + 0.0001*m.x165*
m.x118 + 0.0001*m.x165*m.x119 + 0.0001*m.x165*m.x120 + 0.0001*m.x165*m.x121 + 0.0001*m.x165*
m.x122 + 0.0001*m.x165*m.x123 + 3.88338000471745*m.x165*m.x124 + 0.0001*m.x165*m.x125 + 0.0001*
m.x165*m.x126 + 0.0001*m.x165*m.x127 + 0.0001*m.x165*m.x128 + 0.0001*m.x165*m.x129 + 0.0001*
m.x165*m.x130 + 0.0001*m.x165*m.x131 + 0.0001*m.x165*m.x132 + 0.0001*m.x165*m.x133 + 0.0001*
m.x165*m.x134 + 0.0001*m.x165*m.x135 + 0.0001*m.x165*m.x136 + 0.0001*m.x165*m.x137 + 0.0001*
m.x165*m.x138 + 0.0001*m.x165*m.x139 + 0.0001*m.x165*m.x140 + 0.0001*m.x165*m.x141 + 0.0001*
m.x165*m.x142 + 0.0001*m.x165*m.x143 + 0.0001*m.x165*m.x144 + 0.0001*m.x165*m.x145 + 0.0001*
m.x165*m.x146 + 0.0001*m.x165*m.x147 + 0.0001*m.x165*m.x148 + 0.0001*m.x165*m.x149 +
5.67147623687046*m.x165*m.x150 + 0.0001*m.x165*m.x151 + 0.0001*m.x165*m.x152 + 0.0001*m.x165*
m.x153 + 0.0001*m.x165*m.x154 + 0.0001*m.x165*m.x155 + 0.0001*m.x165*m.x156 + 0.0001*m.x165*
m.x157 + 0.0001*m.x165*m.x158 + 0.0001*m.x165*m.x159 + 0.0001*m.x165*m.x160 + 0.0001*m.x165*
m.x161 + 0.0001*m.x165*m.x162 + 0.0001*m.x165*m.x163 + 0.0001*m.x165*m.x164 + 3.87036991419529*
m.x165**2 + 0.0001*m.x165*m.x166 + 0.0001*m.x165*m.x167 + 0.0001*m.x165*m.x168 + 0.0001*m.x165*
m.x169 + 0.0001*m.x165*m.x170 + 0.0001*m.x165*m.x171 + 0.0001*m.x165*m.x172 + 0.0001*m.x165*
m.x173 + 0.0001*m.x165*m.x174 + 0.0001*m.x165*m.x175 + 0.0001*m.x165*m.x176 + 0.0001*m.x165*
m.x177 + 0.0001*m.x165*m.x178 + 0.0001*m.x165*m.x179 + 0.0001*m.x165*m.x180 + 0.0001*m.x165*
m.x181 + 0.0001*m.x165*m.x182 + 0.0001*m.x165*m.x183 + 0.0001*m.x165*m.x184 + 0.0001*m.x165*
m.x185 + 0.0001*m.x166*m.x1 + 0.0001*m.x166*m.x2 + 0.0001*m.x166*m.x3 + 0.0001*m.x166*m.x4 +
0.0001*m.x166*m.x5 + 0.0001*m.x166*m.x6 + 0.0001*m.x166*m.x7 + 0.0001*m.x166*m.x8 + 0.0001*m.x166
*m.x9 + 0.0001*m.x166*m.x10 + 0.0001*m.x166*m.x11 + 0.0001*m.x166*m.x12 + 0.0001*m.x166*m.x13 +
0.0001*m.x166*m.x14 + 0.0001*m.x166*m.x15 + 0.0001*m.x166*m.x16 + 0.0001*m.x166*m.x17 + 0.0001*
m.x166*m.x18 + 0.0001*m.x166*m.x19 + 0.0001*m.x166*m.x20 + 0.0001*m.x166*m.x21 + 0.0001*m.x166*
m.x22 + 0.0001*m.x166*m.x23 + 0.0001*m.x166*m.x24 + 0.0001*m.x166*m.x25 + 0.0001*m.x166*m.x26 +
0.0001*m.x166*m.x27 + 0.0001*m.x166*m.x28 + 0.0001*m.x166*m.x29 + 0.0001*m.x166*m.x30 + 0.0001*
m.x166*m.x31 + 0.0001*m.x166*m.x32 + 0.0001*m.x166*m.x33 + 0.0001*m.x166*m.x34 + 0.0001*m.x166*
m.x35 + 0.0001*m.x166*m.x36 + 0.0001*m.x166*m.x37 + 0.0001*m.x166*m.x38 + 0.0001*m.x166*m.x39 +
0.0001*m.x166*m.x40 + 0.0001*m.x166*m.x41 + 0.0001*m.x166*m.x42 + 0.0001*m.x166*m.x43 + 0.0001*
m.x166*m.x44 + 0.0001*m.x166*m.x45 + 0.0001*m.x166*m.x46 + 0.0001*m.x166*m.x47 + 0.0001*m.x166*
m.x48 + 0.0001*m.x166*m.x49 + 0.0001*m.x166*m.x50 + 0.0001*m.x166*m.x51 + 0.0001*m.x166*m.x52 +
0.0001*m.x166*m.x53 + 0.0001*m.x166*m.x54 + 0.0001*m.x166*m.x55 + 0.0001*m.x166*m.x56 + 0.0001*
m.x166*m.x57 + 0.0001*m.x166*m.x58 + 0.0001*m.x166*m.x59 + 0.0001*m.x166*m.x60 + 0.0001*m.x166*
m.x61 + 0.0001*m.x166*m.x62 + 0.0001*m.x166*m.x63 + 0.0001*m.x166*m.x64 + 0.0001*m.x166*m.x65 +
0.0001*m.x166*m.x66 + 0.0001*m.x166*m.x67 + 0.0001*m.x166*m.x68 + 0.0001*m.x166*m.x69 + 0.0001*
m.x166*m.x70 + 0.0001*m.x166*m.x71 + 0.0001*m.x166*m.x72 + 0.0001*m.x166*m.x73 + 0.0001*m.x166*
m.x74 + 0.0001*m.x166*m.x75 + 0.0001*m.x166*m.x76 + 0.0001*m.x166*m.x77 + 0.0001*m.x166*m.x78 +
0.0001*m.x166*m.x79 + 0.746872060090427*m.x166*m.x80 + 0.0001*m.x166*m.x81 + 0.0001*m.x166*m.x82
+ 0.0001*m.x166*m.x83 + 0.0001*m.x166*m.x84 + 0.0001*m.x166*m.x85 + 0.0001*m.x166*m.x86 + 0.0001
*m.x166*m.x87 + 0.0001*m.x166*m.x88 + 0.0001*m.x166*m.x89 + 0.0001*m.x166*m.x90 + 0.0001*m.x166*
m.x91 + 0.0001*m.x166*m.x92 + 0.0001*m.x166*m.x93 + 0.0001*m.x166*m.x94 + 0.0001*m.x166*m.x95 +
0.0001*m.x166*m.x96 + 0.0001*m.x166*m.x97 + 0.0001*m.x166*m.x98 + 0.0001*m.x166*m.x99 + 0.0001*
m.x166*m.x100 + 0.0001*m.x166*m.x101 + 0.0001*m.x166*m.x102 + 0.0001*m.x166*m.x103 + 0.0001*
m.x166*m.x104 + 0.0001*m.x166*m.x105 + 0.0001*m.x166*m.x106 + 0.0001*m.x166*m.x107 + 0.0001*
m.x166*m.x108 + 0.0001*m.x166*m.x109 + 0.0001*m.x166*m.x110 + 0.0001*m.x166*m.x111 + 0.0001*
m.x166*m.x112 + 0.0001*m.x166*m.x113 + 0.0001*m.x166*m.x114 + 0.0001*m.x166*m.x115 + 0.0001*
m.x166*m.x116 + 0.0001*m.x166*m.x117 + 0.0001*m.x166*m.x118 + 0.0001*m.x166*m.x119 + 0.0001*
m.x166*m.x120 + 0.0001*m.x166*m.x121 + 0.0001*m.x166*m.x122 + 0.0001*m.x166*m.x123 + 0.0001*
m.x166*m.x124 + 4.35805470035046*m.x166*m.x125 + 0.0001*m.x166*m.x126 + 0.0001*m.x166*m.x127 +
0.0001*m.x166*m.x128 + 0.0001*m.x166*m.x129 + 0.0001*m.x166*m.x130 + 0.0001*m.x166*m.x131 +
0.0001*m.x166*m.x132 + 0.0001*m.x166*m.x133 + 0.0001*m.x166*m.x134 + 0.0001*m.x166*m.x135 +
0.0001*m.x166*m.x136 + 0.0001*m.x166*m.x137 + 0.0001*m.x166*m.x138 + 0.0001*m.x166*m.x139 +
0.0001*m.x166*m.x140 + 0.0001*m.x166*m.x141 + 0.0001*m.x166*m.x142 + 0.0001*m.x166*m.x143 +
0.0001*m.x166*m.x144 + 0.0001*m.x166*m.x145 + 0.0001*m.x166*m.x146 + 0.0001*m.x166*m.x147 +
0.0001*m.x166*m.x148 + 0.0001*m.x166*m.x149 + 0.0001*m.x166*m.x150 + 5.96705343413159*m.x166*
m.x151 + 0.0001*m.x166*m.x152 + 0.0001*m.x166*m.x153 + 0.0001*m.x166*m.x154 + 0.0001*m.x166*
m.x155 + 0.0001*m.x166*m.x156 + 0.0001*m.x166*m.x157 + 0.0001*m.x166*m.x158 + 0.0001*m.x166*
m.x159 + 0.0001*m.x166*m.x160 + 0.0001*m.x166*m.x161 + 0.0001*m.x166*m.x162 + 0.0001*m.x166*
m.x163 + 0.0001*m.x166*m.x164 + 0.0001*m.x166*m.x165 + 3.68564619267261*m.x166**2 + 0.0001*m.x166
*m.x167 + 0.0001*m.x166*m.x168 + 0.0001*m.x166*m.x169 + 0.0001*m.x166*m.x170 + 0.0001*m.x166*
m.x171 + 0.0001*m.x166*m.x172 + 0.0001*m.x166*m.x173 + 0.0001*m.x166*m.x174 + 0.0001*m.x166*
m.x175 + 0.0001*m.x166*m.x176 + 0.0001*m.x166*m.x177 + 0.0001*m.x166*m.x178 + 0.0001*m.x166*
m.x179 + 0.0001*m.x166*m.x180 + 0.0001*m.x166*m.x181 + 0.0001*m.x166*m.x182 + 0.0001*m.x166*
m.x183 + 0.0001*m.x166*m.x184 + 0.0001*m.x166*m.x185 + 0.0001*m.x167*m.x1 + 0.0001*m.x167*m.x2 +
0.0001*m.x167*m.x3 + 0.0001*m.x167*m.x4 + 0.0001*m.x167*m.x5 + 0.0001*m.x167*m.x6 + 0.0001*m.x167
*m.x7 + 0.0001*m.x167*m.x8 + 0.0001*m.x167*m.x9 + 0.0001*m.x167*m.x10 + 0.0001*m.x167*m.x11 +
0.0001*m.x167*m.x12 + 0.0001*m.x167*m.x13 + 0.0001*m.x167*m.x14 + 0.0001*m.x167*m.x15 + 0.0001*
m.x167*m.x16 + 0.0001*m.x167*m.x17 + 0.0001*m.x167*m.x18 + 0.0001*m.x167*m.x19 + 0.0001*m.x167*
m.x20 + 0.0001*m.x167*m.x21 + 0.0001*m.x167*m.x22 + 0.0001*m.x167*m.x23 + 0.0001*m.x167*m.x24 +
0.0001*m.x167*m.x25 + 0.0001*m.x167*m.x26 + 0.0001*m.x167*m.x27 + 0.0001*m.x167*m.x28 + 0.0001*
m.x167*m.x29 + 0.0001*m.x167*m.x30 + 0.0001*m.x167*m.x31 + 0.0001*m.x167*m.x32 + 0.0001*m.x167*
m.x33 + 0.0001*m.x167*m.x34 + 0.0001*m.x167*m.x35 + 0.0001*m.x167*m.x36 + 0.0001*m.x167*m.x37 +
0.0001*m.x167*m.x38 + 0.0001*m.x167*m.x39 + 0.0001*m.x167*m.x40 + 0.0001*m.x167*m.x41 + 0.0001*
m.x167*m.x42 + 0.0001*m.x167*m.x43 + 0.0001*m.x167*m.x44 + 0.0001*m.x167*m.x45 + 0.0001*m.x167*
m.x46 + 0.0001*m.x167*m.x47 + 0.0001*m.x167*m.x48 + 0.0001*m.x167*m.x49 + 0.0001*m.x167*m.x50 +
0.0001*m.x167*m.x51 + 0.0001*m.x167*m.x52 + 0.0001*m.x167*m.x53 + 0.0001*m.x167*m.x54 + 0.0001*
m.x167*m.x55 + 0.0001*m.x167*m.x56 + 0.0001*m.x167*m.x57 + 0.0001*m.x167*m.x58 + 0.0001*m.x167*
m.x59 + 0.0001*m.x167*m.x60 + 0.0001*m.x167*m.x61 + 0.0001*m.x167*m.x62 + 0.0001*m.x167*m.x63 +
0.0001*m.x167*m.x64 + 0.0001*m.x167*m.x65 + 0.0001*m.x167*m.x66 + 0.0001*m.x167*m.x67 + 0.0001*
m.x167*m.x68 + 0.0001*m.x167*m.x69 + 0.0001*m.x167*m.x70 + 0.0001*m.x167*m.x71 + 0.0001*m.x167*
m.x72 + 0.0001*m.x167*m.x73 + 0.0001*m.x167*m.x74 + 0.0001*m.x167*m.x75 + 0.0001*m.x167*m.x76 +
0.0001*m.x167*m.x77 + 0.0001*m.x167*m.x78 + 0.0001*m.x167*m.x79 + 0.0001*m.x167*m.x80 +
0.790163389415287*m.x167*m.x81 + 0.0001*m.x167*m.x82 + 0.0001*m.x167*m.x83 + 0.0001*m.x167*m.x84
+ 0.0001*m.x167*m.x85 + 0.0001*m.x167*m.x86 + 0.0001*m.x167*m.x87 + 0.0001*m.x167*m.x88 + 0.0001
*m.x167*m.x89 + 0.0001*m.x167*m.x90 + 0.0001*m.x167*m.x91 + 0.0001*m.x167*m.x92 + 0.0001*m.x167*
m.x93 + 0.0001*m.x167*m.x94 + 0.0001*m.x167*m.x95 + 0.0001*m.x167*m.x96 + 0.0001*m.x167*m.x97 +
0.0001*m.x167*m.x98 + 0.0001*m.x167*m.x99 + 0.0001*m.x167*m.x100 + 0.0001*m.x167*m.x101 + 0.0001*
m.x167*m.x102 + 0.0001*m.x167*m.x103 + 0.0001*m.x167*m.x104 + 0.0001*m.x167*m.x105 + 0.0001*
m.x167*m.x106 + 0.0001*m.x167*m.x107 + 0.0001*m.x167*m.x108 + 0.0001*m.x167*m.x109 + 0.0001*
m.x167*m.x110 + 0.0001*m.x167*m.x111 + 0.0001*m.x167*m.x112 + 0.0001*m.x167*m.x113 + 0.0001*
m.x167*m.x114 + 0.0001*m.x167*m.x115 + 0.0001*m.x167*m.x116 + 0.0001*m.x167*m.x117 + 0.0001*
m.x167*m.x118 + 0.0001*m.x167*m.x119 + 0.0001*m.x167*m.x120 + 0.0001*m.x167*m.x121 + 0.0001*
m.x167*m.x122 + 0.0001*m.x167*m.x123 + 0.0001*m.x167*m.x124 + 0.0001*m.x167*m.x125 +
4.45694806359899*m.x167*m.x126 + 0.0001*m.x167*m.x127 + 0.0001*m.x167*m.x128 + 0.0001*m.x167*
m.x129 + 0.0001*m.x167*m.x130 + 0.0001*m.x167*m.x131 + 0.0001*m.x167*m.x132 + 0.0001*m.x167*
m.x133 + 0.0001*m.x167*m.x134 + 0.0001*m.x167*m.x135 + 0.0001*m.x167*m.x136 + 0.0001*m.x167*
m.x137 + 0.0001*m.x167*m.x138 + 0.0001*m.x167*m.x139 + 0.0001*m.x167*m.x140 + 0.0001*m.x167*
m.x141 + 0.0001*m.x167*m.x142 + 0.0001*m.x167*m.x143 + 0.0001*m.x167*m.x144 + 0.0001*m.x167*
m.x145 + 0.0001*m.x167*m.x146 + 0.0001*m.x167*m.x147 + 0.0001*m.x167*m.x148 + 0.0001*m.x167*
m.x149 + 0.0001*m.x167*m.x150 + 0.0001*m.x167*m.x151 + 6.05530167878749*m.x167*m.x152 + 0.0001*
m.x167*m.x153 + 0.0001*m.x167*m.x154 + 0.0001*m.x167*m.x155 + 0.0001*m.x167*m.x156 + 0.0001*
m.x167*m.x157 + 0.0001*m.x167*m.x158 + 0.0001*m.x167*m.x159 + 0.0001*m.x167*m.x160 + 0.0001*
m.x167*m.x161 + 0.0001*m.x167*m.x162 + 0.0001*m.x167*m.x163 + 0.0001*m.x167*m.x164 + 0.0001*
m.x167*m.x165 + 0.0001*m.x167*m.x166 + 3.82502514428857*m.x167**2 + 0.0001*m.x167*m.x168 + 0.0001
*m.x167*m.x169 + 0.0001*m.x167*m.x170 + 0.0001*m.x167*m.x171 + 0.0001*m.x167*m.x172 + 0.0001*
m.x167*m.x173 + 0.0001*m.x167*m.x174 + 0.0001*m.x167*m.x175 + 0.0001*m.x167*m.x176 + 0.0001*
m.x167*m.x177 + 0.0001*m.x167*m.x178 + 0.0001*m.x167*m.x179 + 0.0001*m.x167*m.x180 + 0.0001*
m.x167*m.x181 + 0.0001*m.x167*m.x182 + 0.0001*m.x167*m.x183 + 0.0001*m.x167*m.x184 + 0.0001*
m.x167*m.x185 + 0.0001*m.x168*m.x1 + 0.0001*m.x168*m.x2 + 0.0001*m.x168*m.x3 + 0.0001*m.x168*m.x4
+ 0.0001*m.x168*m.x5 + 0.0001*m.x168*m.x6 + 0.0001*m.x168*m.x7 + 0.0001*m.x168*m.x8 + 0.0001*
m.x168*m.x9 + 0.0001*m.x168*m.x10 + 0.0001*m.x168*m.x11 + 0.0001*m.x168*m.x12 + 0.0001*m.x168*
m.x13 + 0.0001*m.x168*m.x14 + 0.0001*m.x168*m.x15 + 0.0001*m.x168*m.x16 + 0.0001*m.x168*m.x17 +
0.0001*m.x168*m.x18 + 0.0001*m.x168*m.x19 + 0.0001*m.x168*m.x20 + 0.0001*m.x168*m.x21 + 0.0001*
m.x168*m.x22 + 0.0001*m.x168*m.x23 + 0.0001*m.x168*m.x24 + 0.0001*m.x168*m.x25 + 0.0001*m.x168*
m.x26 + 0.0001*m.x168*m.x27 + 0.0001*m.x168*m.x28 + 0.0001*m.x168*m.x29 + 0.0001*m.x168*m.x30 +
0.0001*m.x168*m.x31 + 0.0001*m.x168*m.x32 + 0.0001*m.x168*m.x33 + 0.0001*m.x168*m.x34 + 0.0001*
m.x168*m.x35 + 0.0001*m.x168*m.x36 + 0.0001*m.x168*m.x37 + 0.0001*m.x168*m.x38 + 0.0001*m.x168*
m.x39 + 0.0001*m.x168*m.x40 + 0.0001*m.x168*m.x41 + 0.0001*m.x168*m.x42 + 0.0001*m.x168*m.x43 +
0.0001*m.x168*m.x44 + 0.0001*m.x168*m.x45 + 0.0001*m.x168*m.x46 + 0.0001*m.x168*m.x47 + 0.0001*
m.x168*m.x48 + 0.0001*m.x168*m.x49 + 0.0001*m.x168*m.x50 + 0.0001*m.x168*m.x51 + 0.0001*m.x168*
m.x52 + 0.0001*m.x168*m.x53 + 0.0001*m.x168*m.x54 + 0.0001*m.x168*m.x55 + 0.0001*m.x168*m.x56 +
0.0001*m.x168*m.x57 + 0.0001*m.x168*m.x58 + 0.0001*m.x168*m.x59 + 0.0001*m.x168*m.x60 + 0.0001*
m.x168*m.x61 + 0.0001*m.x168*m.x62 + 0.0001*m.x168*m.x63 + 0.0001*m.x168*m.x64 + 0.0001*m.x168*
m.x65 + 0.0001*m.x168*m.x66 + 0.0001*m.x168*m.x67 + 0.0001*m.x168*m.x68 + 0.0001*m.x168*m.x69 +
0.0001*m.x168*m.x70 + 0.0001*m.x168*m.x71 + 0.0001*m.x168*m.x72 + 0.0001*m.x168*m.x73 + 0.0001*
m.x168*m.x74 + 0.0001*m.x168*m.x75 + 0.0001*m.x168*m.x76 + 0.0001*m.x168*m.x77 + 0.0001*m.x168*
m.x78 + 0.0001*m.x168*m.x79 + 0.0001*m.x168*m.x80 + 0.0001*m.x168*m.x81 + 0.734199996191235*
m.x168*m.x82 + 0.0001*m.x168*m.x83 + 0.0001*m.x168*m.x84 + 0.0001*m.x168*m.x85 + 0.0001*m.x168*
m.x86 + 0.0001*m.x168*m.x87 + 0.0001*m.x168*m.x88 + 0.0001*m.x168*m.x89 + 0.0001*m.x168*m.x90 +
0.0001*m.x168*m.x91 + 0.0001*m.x168*m.x92 + 0.0001*m.x168*m.x93 + 0.0001*m.x168*m.x94 + 0.0001*
m.x168*m.x95 + 0.0001*m.x168*m.x96 + 0.0001*m.x168*m.x97 + 0.0001*m.x168*m.x98 + 0.0001*m.x168*
m.x99 + 0.0001*m.x168*m.x100 + 0.0001*m.x168*m.x101 + 0.0001*m.x168*m.x102 + 0.0001*m.x168*m.x103
+ 0.0001*m.x168*m.x104 + 0.0001*m.x168*m.x105 + 0.0001*m.x168*m.x106 + 0.0001*m.x168*m.x107 +
0.0001*m.x168*m.x108 + 0.0001*m.x168*m.x109 + 0.0001*m.x168*m.x110 + 0.0001*m.x168*m.x111 +
0.0001*m.x168*m.x112 + 0.0001*m.x168*m.x113 + 0.0001*m.x168*m.x114 + 0.0001*m.x168*m.x115 +
0.0001*m.x168*m.x116 + 0.0001*m.x168*m.x117 + 0.0001*m.x168*m.x118 + 0.0001*m.x168*m.x119 +
0.0001*m.x168*m.x120 + 0.0001*m.x168*m.x121 + 0.0001*m.x168*m.x122 + 0.0001*m.x168*m.x123 +
0.0001*m.x168*m.x124 + 0.0001*m.x168*m.x125 + 0.0001*m.x168*m.x126 + 4.14125144473953*m.x168*
m.x127 + 0.0001*m.x168*m.x128 + 0.0001*m.x168*m.x129 + 0.0001*m.x168*m.x130 + 0.0001*m.x168*
m.x131 + 0.0001*m.x168*m.x132 + 0.0001*m.x168*m.x133 + 0.0001*m.x168*m.x134 + 0.0001*m.x168*
m.x135 + 0.0001*m.x168*m.x136 + 0.0001*m.x168*m.x137 + 0.0001*m.x168*m.x138 + 0.0001*m.x168*
m.x139 + 0.0001*m.x168*m.x140 + 0.0001*m.x168*m.x141 + 0.0001*m.x168*m.x142 + 0.0001*m.x168*
m.x143 + 0.0001*m.x168*m.x144 + 0.0001*m.x168*m.x145 + 0.0001*m.x168*m.x146 + 0.0001*m.x168*
m.x147 + 0.0001*m.x168*m.x148 + 0.0001*m.x168*m.x149 + 0.0001*m.x168*m.x150 + 0.0001*m.x168*
m.x151 + 0.0001*m.x168*m.x152 + 5.6375424869916*m.x168*m.x153 + 0.0001*m.x168*m.x154 + 0.0001*
m.x168*m.x155 + 0.0001*m.x168*m.x156 + 0.0001*m.x168*m.x157 + 0.0001*m.x168*m.x158 + 0.0001*
m.x168*m.x159 + 0.0001*m.x168*m.x160 + 0.0001*m.x168*m.x161 + 0.0001*m.x168*m.x162 + 0.0001*
m.x168*m.x163 + 0.0001*m.x168*m.x164 + 0.0001*m.x168*m.x165 + 0.0001*m.x168*m.x166 + 0.0001*
m.x168*m.x167 + 3.55409018796714*m.x168**2 + 0.0001*m.x168*m.x169 + 0.0001*m.x168*m.x170 + 0.0001
*m.x168*m.x171 + 0.0001*m.x168*m.x172 + 0.0001*m.x168*m.x173 + 0.0001*m.x168*m.x174 + 0.0001*
m.x168*m.x175 + 0.0001*m.x168*m.x176 + 0.0001*m.x168*m.x177 + 0.0001*m.x168*m.x178 + 0.0001*
m.x168*m.x179 + 0.0001*m.x168*m.x180 + 0.0001*m.x168*m.x181 + 0.0001*m.x168*m.x182 + 0.0001*
m.x168*m.x183 + 0.0001*m.x168*m.x184 + 0.0001*m.x168*m.x185 + 0.0001*m.x169*m.x1 + 0.0001*m.x169*
m.x2 + 0.0001*m.x169*m.x3 + 0.0001*m.x169*m.x4 + 0.0001*m.x169*m.x5 + 0.0001*m.x169*m.x6 + 0.0001
*m.x169*m.x7 + 0.0001*m.x169*m.x8 + 0.0001*m.x169*m.x9 + 0.0001*m.x169*m.x10 + 0.0001*m.x169*
m.x11 + 0.0001*m.x169*m.x12 + 0.0001*m.x169*m.x13 + 0.0001*m.x169*m.x14 + 0.0001*m.x169*m.x15 +
0.0001*m.x169*m.x16 + 0.0001*m.x169*m.x17 + 0.0001*m.x169*m.x18 + 0.0001*m.x169*m.x19 + 0.0001*
m.x169*m.x20 + 0.0001*m.x169*m.x21 + 0.0001*m.x169*m.x22 + 0.0001*m.x169*m.x23 + 0.0001*m.x169*
m.x24 + 0.0001*m.x169*m.x25 + 0.0001*m.x169*m.x26 + 0.0001*m.x169*m.x27 + 0.0001*m.x169*m.x28 +
0.0001*m.x169*m.x29 + 0.0001*m.x169*m.x30 + 0.0001*m.x169*m.x31 + 0.0001*m.x169*m.x32 + 0.0001*
m.x169*m.x33 + 0.0001*m.x169*m.x34 + 0.0001*m.x169*m.x35 + 0.0001*m.x169*m.x36 + 0.0001*m.x169*
m.x37 + 0.0001*m.x169*m.x38 + 0.0001*m.x169*m.x39 + 0.0001*m.x169*m.x40 + 0.0001*m.x169*m.x41 +
0.0001*m.x169*m.x42 + 0.0001*m.x169*m.x43 + 0.0001*m.x169*m.x44 + 0.0001*m.x169*m.x45 + 0.0001*
m.x169*m.x46 + 0.0001*m.x169*m.x47 + 0.0001*m.x169*m.x48 + 0.0001*m.x169*m.x49 + 0.0001*m.x169*
m.x50 + 0.0001*m.x169*m.x51 + 0.0001*m.x169*m.x52 + 0.0001*m.x169*m.x53 + 0.0001*m.x169*m.x54 +
0.0001*m.x169*m.x55 + 0.0001*m.x169*m.x56 + 0.0001*m.x169*m.x57 + 0.0001*m.x169*m.x58 + 0.0001*
m.x169*m.x59 + 0.0001*m.x169*m.x60 + 0.0001*m.x169*m.x61 + 0.0001*m.x169*m.x62 + 0.0001*m.x169*
m.x63 + 0.0001*m.x169*m.x64 + 0.0001*m.x169*m.x65 + 0.0001*m.x169*m.x66 + 0.0001*m.x169*m.x67 +
0.0001*m.x169*m.x68 + 0.0001*m.x169*m.x69 + 0.0001*m.x169*m.x70 + 0.0001*m.x169*m.x71 + 0.0001*
m.x169*m.x72 + 0.0001*m.x169*m.x73 + 0.0001*m.x169*m.x74 + 0.0001*m.x169*m.x75 + 0.0001*m.x169*
m.x76 + 0.0001*m.x169*m.x77 + 0.0001*m.x169*m.x78 + 0.0001*m.x169*m.x79 + 0.0001*m.x169*m.x80 +
0.0001*m.x169*m.x81 + 0.0001*m.x169*m.x82 + 1.35606110318633*m.x169*m.x83 + 0.0001*m.x169*m.x84
+ 0.0001*m.x169*m.x85 + 0.0001*m.x169*m.x86 + 0.0001*m.x169*m.x87 + 0.0001*m.x169*m.x88 + 0.0001
*m.x169*m.x89 + 0.0001*m.x169*m.x90 + 0.0001*m.x169*m.x91 + 0.0001*m.x169*m.x92 + 0.0001*m.x169*
m.x93 + 0.0001*m.x169*m.x94 + 0.0001*m.x169*m.x95 + 0.0001*m.x169*m.x96 + 0.0001*m.x169*m.x97 +
0.0001*m.x169*m.x98 + 0.0001*m.x169*m.x99 + 0.0001*m.x169*m.x100 + 0.0001*m.x169*m.x101 + 0.0001*
m.x169*m.x102 + 0.0001*m.x169*m.x103 + 0.0001*m.x169*m.x104 + 0.0001*m.x169*m.x105 + 0.0001*
m.x169*m.x106 + 0.0001*m.x169*m.x107 + 0.0001*m.x169*m.x108 + 0.0001*m.x169*m.x109 + 0.0001*
m.x169*m.x110 + 0.0001*m.x169*m.x111 + 0.0001*m.x169*m.x112 + 0.0001*m.x169*m.x113 + 0.0001*
m.x169*m.x114 + 0.0001*m.x169*m.x115 + 0.0001*m.x169*m.x116 + 0.0001*m.x169*m.x117 + 0.0001*
m.x169*m.x118 + 0.0001*m.x169*m.x119 + 0.0001*m.x169*m.x120 + 0.0001*m.x169*m.x121 + 0.0001*
m.x169*m.x122 + 0.0001*m.x169*m.x123 + 0.0001*m.x169*m.x124 + 0.0001*m.x169*m.x125 + 0.0001*
m.x169*m.x126 + 0.0001*m.x169*m.x127 + 6.60715115840967*m.x169*m.x128 + 0.0001*m.x169*m.x129 +
0.0001*m.x169*m.x130 + 0.0001*m.x169*m.x131 + 0.0001*m.x169*m.x132 + 0.0001*m.x169*m.x133 +
0.0001*m.x169*m.x134 + 0.0001*m.x169*m.x135 + 0.0001*m.x169*m.x136 + 0.0001*m.x169*m.x137 +
0.0001*m.x169*m.x138 + 0.0001*m.x169*m.x139 + 0.0001*m.x169*m.x140 + 0.0001*m.x169*m.x141 +
0.0001*m.x169*m.x142 + 0.0001*m.x169*m.x143 + 0.0001*m.x169*m.x144 + 0.0001*m.x169*m.x145 +
0.0001*m.x169*m.x146 + 0.0001*m.x169*m.x147 + 0.0001*m.x169*m.x148 + 0.0001*m.x169*m.x149 +
0.0001*m.x169*m.x150 + 0.0001*m.x169*m.x151 + 0.0001*m.x169*m.x152 + 0.0001*m.x169*m.x153 +
6.06641918211284*m.x169*m.x154 + 6.06641918211284*m.x169*m.x155 + 0.0001*m.x169*m.x156 + 0.0001*
m.x169*m.x157 + 0.0001*m.x169*m.x158 + 0.0001*m.x169*m.x159 + 0.0001*m.x169*m.x160 + 0.0001*
m.x169*m.x161 + 0.0001*m.x169*m.x162 + 0.0001*m.x169*m.x163 + 0.0001*m.x169*m.x164 + 0.0001*
m.x169*m.x165 + 0.0001*m.x169*m.x166 + 0.0001*m.x169*m.x167 + 0.0001*m.x169*m.x168 +
6.60154285927405*m.x169**2 + 0.0001*m.x169*m.x170 + 0.0001*m.x169*m.x171 + 0.0001*m.x169*m.x172
+ 0.0001*m.x169*m.x173 + 0.0001*m.x169*m.x174 + 0.0001*m.x169*m.x175 + 0.0001*m.x169*m.x176 +
0.0001*m.x169*m.x177 + 0.0001*m.x169*m.x178 + 0.0001*m.x169*m.x179 + 0.0001*m.x169*m.x180 +
0.0001*m.x169*m.x181 + 0.0001*m.x169*m.x182 + 0.0001*m.x169*m.x183 + 0.0001*m.x169*m.x184 +
0.0001*m.x169*m.x185 + 0.0001*m.x170*m.x1 + 0.0001*m.x170*m.x2 + 0.0001*m.x170*m.x3 + 0.0001*
m.x170*m.x4 + 0.0001*m.x170*m.x5 + 0.0001*m.x170*m.x6 + 0.0001*m.x170*m.x7 + 0.0001*m.x170*m.x8
+ 0.0001*m.x170*m.x9 + 0.0001*m.x170*m.x10 + 0.0001*m.x170*m.x11 + 0.0001*m.x170*m.x12 + 0.0001*
m.x170*m.x13 + 0.0001*m.x170*m.x14 + 0.0001*m.x170*m.x15 + 0.0001*m.x170*m.x16 + 0.0001*m.x170*
m.x17 + 0.0001*m.x170*m.x18 + 0.0001*m.x170*m.x19 + 0.0001*m.x170*m.x20 + 0.0001*m.x170*m.x21 +
0.0001*m.x170*m.x22 + 0.0001*m.x170*m.x23 + 0.0001*m.x170*m.x24 + 0.0001*m.x170*m.x25 + 0.0001*
m.x170*m.x26 + 0.0001*m.x170*m.x27 + 0.0001*m.x170*m.x28 + 0.0001*m.x170*m.x29 + 0.0001*m.x170*
m.x30 + 0.0001*m.x170*m.x31 + 0.0001*m.x170*m.x32 + 0.0001*m.x170*m.x33 + 0.0001*m.x170*m.x34 +
0.0001*m.x170*m.x35 + 0.0001*m.x170*m.x36 + 0.0001*m.x170*m.x37 + 0.0001*m.x170*m.x38 + 0.0001*
m.x170*m.x39 + 0.0001*m.x170*m.x40 + 0.0001*m.x170*m.x41 + 0.0001*m.x170*m.x42 + 0.0001*m.x170*
m.x43 + 0.0001*m.x170*m.x44 + 0.0001*m.x170*m.x45 + 0.0001*m.x170*m.x46 + 0.0001*m.x170*m.x47 +
0.0001*m.x170*m.x48 + 0.0001*m.x170*m.x49 + 0.0001*m.x170*m.x50 + 0.0001*m.x170*m.x51 + 0.0001*
m.x170*m.x52 + 0.0001*m.x170*m.x53 + 0.0001*m.x170*m.x54 + 0.0001*m.x170*m.x55 + 0.0001*m.x170*
m.x56 + 0.0001*m.x170*m.x57 + 0.0001*m.x170*m.x58 + 0.0001*m.x170*m.x59 + 0.0001*m.x170*m.x60 +
0.0001*m.x170*m.x61 + 0.0001*m.x170*m.x62 + 0.0001*m.x170*m.x63 + 0.0001*m.x170*m.x64 + 0.0001*
m.x170*m.x65 + 0.0001*m.x170*m.x66 + 0.0001*m.x170*m.x67 + 0.0001*m.x170*m.x68 + 0.0001*m.x170*
m.x69 + 0.0001*m.x170*m.x70 + 0.0001*m.x170*m.x71 + 0.0001*m.x170*m.x72 + 0.0001*m.x170*m.x73 +
0.0001*m.x170*m.x74 + 0.0001*m.x170*m.x75 + 0.0001*m.x170*m.x76 + 0.0001*m.x170*m.x77 + 0.0001*
m.x170*m.x78 + 0.0001*m.x170*m.x79 + 0.0001*m.x170*m.x80 + 0.0001*m.x170*m.x81 + 0.0001*m.x170*
m.x82 + 0.0001*m.x170*m.x83 + 0.0001*m.x170*m.x84 + 0.0001*m.x170*m.x85 + 0.0001*m.x170*m.x86 +
0.0001*m.x170*m.x87 + 0.0001*m.x170*m.x88 + 0.0001*m.x170*m.x89 + 0.0001*m.x170*m.x90 + 0.0001*
m.x170*m.x91 + 0.0001*m.x170*m.x92 + 0.0001*m.x170*m.x93 + 0.0001*m.x170*m.x94 + 0.0001*m.x170*
m.x95 + 0.0001*m.x170*m.x96 + 0.0001*m.x170*m.x97 + 0.0001*m.x170*m.x98 + 0.0001*m.x170*m.x99 +
0.0001*m.x170*m.x100 + 0.0001*m.x170*m.x101 + 0.0001*m.x170*m.x102 + 0.0001*m.x170*m.x103 +
0.0001*m.x170*m.x104 + 0.0001*m.x170*m.x105 + 0.0001*m.x170*m.x106 + 0.0001*m.x170*m.x107 +
0.0001*m.x170*m.x108 + 0.0001*m.x170*m.x109 + 0.0001*m.x170*m.x110 + 0.0001*m.x170*m.x111 +
0.0001*m.x170*m.x112 + 0.0001*m.x170*m.x113 + 0.0001*m.x170*m.x114 + 0.0001*m.x170*m.x115 +
0.499857982206522*m.x170*m.x116 + 0.0001*m.x170*m.x117 + 0.0001*m.x170*m.x118 + 0.0001*m.x170*
m.x119 + 0.0001*m.x170*m.x120 + 0.0001*m.x170*m.x121 + 0.0001*m.x170*m.x122 + 0.0001*m.x170*
m.x123 + 0.0001*m.x170*m.x124 + 0.0001*m.x170*m.x125 + 0.0001*m.x170*m.x126 + 0.0001*m.x170*
m.x127 + 0.0001*m.x170*m.x128 + 3.0953837361136*m.x170*m.x129 + 0.0001*m.x170*m.x130 + 0.0001*
m.x170*m.x131 + 0.0001*m.x170*m.x132 + 0.0001*m.x170*m.x133 + 0.0001*m.x170*m.x134 + 0.0001*
m.x170*m.x135 + 0.0001*m.x170*m.x136 + 0.0001*m.x170*m.x137 + 0.0001*m.x170*m.x138 + 0.0001*
m.x170*m.x139 + 0.0001*m.x170*m.x140 + 0.0001*m.x170*m.x141 + 0.694980140999375*m.x170*m.x142 +
0.0001*m.x170*m.x143 + 0.0001*m.x170*m.x144 + 0.0001*m.x170*m.x145 + 0.0001*m.x170*m.x146 +
0.0001*m.x170*m.x147 + 0.0001*m.x170*m.x148 + 0.0001*m.x170*m.x149 + 0.0001*m.x170*m.x150 +
0.0001*m.x170*m.x151 + 0.0001*m.x170*m.x152 + 0.0001*m.x170*m.x153 + 0.0001*m.x170*m.x154 +
0.0001*m.x170*m.x155 + 5.66748238565604*m.x170*m.x156 + 0.453770093960477*m.x170*m.x157 + 0.0001*
m.x170*m.x158 + 0.0001*m.x170*m.x159 + 0.0001*m.x170*m.x160 + 0.0001*m.x170*m.x161 + 0.0001*
m.x170*m.x162 + 0.0001*m.x170*m.x163 + 0.0001*m.x170*m.x164 + 0.0001*m.x170*m.x165 + 0.0001*
m.x170*m.x166 + 0.0001*m.x170*m.x167 + 0.0001*m.x170*m.x168 + 0.0001*m.x170*m.x169 +
2.9171995157523*m.x170**2 + 0.0001*m.x170*m.x171 + 0.0001*m.x170*m.x172 + 0.0001*m.x170*m.x173 +
0.0001*m.x170*m.x174 + 0.0001*m.x170*m.x175 + 0.0001*m.x170*m.x176 + 0.0001*m.x170*m.x177 +
0.0001*m.x170*m.x178 + 0.0001*m.x170*m.x179 + 0.0001*m.x170*m.x180 + 0.0001*m.x170*m.x181 +
0.0001*m.x170*m.x182 + 0.0001*m.x170*m.x183 + 0.0001*m.x170*m.x184 + 0.0001*m.x170*m.x185 +
0.0001*m.x171*m.x1 + 0.0001*m.x171*m.x2 + 0.0001*m.x171*m.x3 + 0.0001*m.x171*m.x4 + 0.0001*m.x171
*m.x5 + 0.0001*m.x171*m.x6 + 0.0001*m.x171*m.x7 + 0.0001*m.x171*m.x8 + 0.0001*m.x171*m.x9 +
0.0001*m.x171*m.x10 + 0.0001*m.x171*m.x11 + 0.0001*m.x171*m.x12 + 0.0001*m.x171*m.x13 + 0.0001*
m.x171*m.x14 + 0.0001*m.x171*m.x15 + 0.0001*m.x171*m.x16 + 0.0001*m.x171*m.x17 + 0.0001*m.x171*
m.x18 + 0.0001*m.x171*m.x19 + 0.0001*m.x171*m.x20 + 0.0001*m.x171*m.x21 + 0.0001*m.x171*m.x22 +
0.0001*m.x171*m.x23 + 0.0001*m.x171*m.x24 + 0.0001*m.x171*m.x25 + 0.0001*m.x171*m.x26 + 0.0001*
m.x171*m.x27 + 0.0001*m.x171*m.x28 + 0.0001*m.x171*m.x29 + 0.0001*m.x171*m.x30 + 0.0001*m.x171*
m.x31 + 0.0001*m.x171*m.x32 + 0.0001*m.x171*m.x33 + 0.0001*m.x171*m.x34 + 0.0001*m.x171*m.x35 +
0.0001*m.x171*m.x36 + 0.0001*m.x171*m.x37 + 0.0001*m.x171*m.x38 + 0.0001*m.x171*m.x39 + 0.0001*
m.x171*m.x40 + 0.0001*m.x171*m.x41 + 0.0001*m.x171*m.x42 + 0.0001*m.x171*m.x43 + 0.0001*m.x171*
m.x44 + 0.0001*m.x171*m.x45 + 0.0001*m.x171*m.x46 + 0.0001*m.x171*m.x47 + 0.0001*m.x171*m.x48 +
0.0001*m.x171*m.x49 + 0.0001*m.x171*m.x50 + 0.0001*m.x171*m.x51 + 0.0001*m.x171*m.x52 + 0.0001*
m.x171*m.x53 + 0.0001*m.x171*m.x54 + 0.0001*m.x171*m.x55 + 0.0001*m.x171*m.x56 + 0.0001*m.x171*
m.x57 + 0.0001*m.x171*m.x58 + 0.0001*m.x171*m.x59 + 0.0001*m.x171*m.x60 + 0.0001*m.x171*m.x61 +
0.0001*m.x171*m.x62 + 0.0001*m.x171*m.x63 + 0.0001*m.x171*m.x64 + 0.0001*m.x171*m.x65 + 0.0001*
m.x171*m.x66 + 0.0001*m.x171*m.x67 + 0.0001*m.x171*m.x68 + 0.0001*m.x171*m.x69 + 0.0001*m.x171*
m.x70 + 0.0001*m.x171*m.x71 + 0.0001*m.x171*m.x72 + 0.0001*m.x171*m.x73 + 0.0001*m.x171*m.x74 +
0.0001*m.x171*m.x75 + 0.0001*m.x171*m.x76 + 0.0001*m.x171*m.x77 + 0.0001*m.x171*m.x78 + 0.0001*
m.x171*m.x79 + 0.0001*m.x171*m.x80 + 0.0001*m.x171*m.x81 + 0.0001*m.x171*m.x82 + 0.0001*m.x171*
m.x83 + 0.0001*m.x171*m.x84 + 0.0001*m.x171*m.x85 + 0.0001*m.x171*m.x86 + 0.0001*m.x171*m.x87 +
0.0001*m.x171*m.x88 + 0.0001*m.x171*m.x89 + 0.0001*m.x171*m.x90 + 0.0001*m.x171*m.x91 + 0.0001*
m.x171*m.x92 + 0.0001*m.x171*m.x93 + 0.0001*m.x171*m.x94 + 0.0001*m.x171*m.x95 + 0.0001*m.x171*
m.x96 + 0.0001*m.x171*m.x97 + 0.0001*m.x171*m.x98 + 0.0001*m.x171*m.x99 + 0.0001*m.x171*m.x100 +
0.0001*m.x171*m.x101 + 0.0001*m.x171*m.x102 + 0.0001*m.x171*m.x103 + 2.06289850672701*m.x171*
m.x104 + 0.0001*m.x171*m.x105 + 0.0001*m.x171*m.x106 + 0.0001*m.x171*m.x107 + 0.0001*m.x171*
m.x108 + 0.0001*m.x171*m.x109 + 0.0001*m.x171*m.x110 + 0.0001*m.x171*m.x111 + 0.0001*m.x171*
m.x112 + 0.0001*m.x171*m.x113 + 0.0001*m.x171*m.x114 + 0.0001*m.x171*m.x115 + 0.0001*m.x171*
m.x116 + 0.0001*m.x171*m.x117 + 0.0001*m.x171*m.x118 + 0.0001*m.x171*m.x119 + 0.0001*m.x171*
m.x120 + 0.0001*m.x171*m.x121 + 0.0001*m.x171*m.x122 + 0.0001*m.x171*m.x123 + 0.0001*m.x171*
m.x124 + 0.0001*m.x171*m.x125 + 0.0001*m.x171*m.x126 + 0.0001*m.x171*m.x127 + 0.0001*m.x171*
m.x128 + 0.0001*m.x171*m.x129 + 0.0001*m.x171*m.x130 + 0.0001*m.x171*m.x131 + 0.0001*m.x171*
m.x132 + 0.0001*m.x171*m.x133 + 0.0001*m.x171*m.x134 + 0.0001*m.x171*m.x135 + 0.0001*m.x171*
m.x136 + 0.0001*m.x171*m.x137 + 0.0001*m.x171*m.x138 + 0.0001*m.x171*m.x139 + 0.0001*m.x171*
m.x140 + 0.0001*m.x171*m.x141 + 0.0001*m.x171*m.x142 + 0.0001*m.x171*m.x143 + 0.0001*m.x171*
m.x144 + 0.0001*m.x171*m.x145 + 0.0001*m.x171*m.x146 + 0.0001*m.x171*m.x147 + 0.0001*m.x171*
m.x148 + 0.0001*m.x171*m.x149 + 0.0001*m.x171*m.x150 + 0.0001*m.x171*m.x151 + 0.0001*m.x171*
m.x152 + 0.0001*m.x171*m.x153 + 0.0001*m.x171*m.x154 + 0.0001*m.x171*m.x155 + 0.0001*m.x171*
m.x156 + 0.0001*m.x171*m.x157 + 0.0001*m.x171*m.x158 + 0.0001*m.x171*m.x159 + 0.0001*m.x171*
m.x160 + 0.0001*m.x171*m.x161 + 0.0001*m.x171*m.x162 + 0.0001*m.x171*m.x163 + 0.0001*m.x171*
m.x164 + 0.0001*m.x171*m.x165 + 0.0001*m.x171*m.x166 + 0.0001*m.x171*m.x167 + 0.0001*m.x171*
m.x168 + 0.0001*m.x171*m.x169 + 0.0001*m.x171*m.x170 + 2.30979835693109*m.x171**2 + 0.0001*m.x171
*m.x172 + 0.0001*m.x171*m.x173 + 0.0001*m.x171*m.x174 + 0.0001*m.x171*m.x175 + 0.0001*m.x171*
m.x176 + 0.0001*m.x171*m.x177 + 0.0001*m.x171*m.x178 + 0.0001*m.x171*m.x179 + 0.0001*m.x171*
m.x180 + 0.0001*m.x171*m.x181 + 0.0001*m.x171*m.x182 + 0.0001*m.x171*m.x183 + 0.0001*m.x171*
m.x184 + 0.0001*m.x171*m.x185 + 0.0001*m.x172*m.x1 + 0.0001*m.x172*m.x2 + 0.0001*m.x172*m.x3 +
0.0001*m.x172*m.x4 + 0.0001*m.x172*m.x5 + 0.0001*m.x172*m.x6 + 0.0001*m.x172*m.x7 + 0.0001*m.x172
*m.x8 + 0.0001*m.x172*m.x9 + 0.0001*m.x172*m.x10 + 0.0001*m.x172*m.x11 + 0.0001*m.x172*m.x12 +
0.0001*m.x172*m.x13 + 0.0001*m.x172*m.x14 + 0.0001*m.x172*m.x15 + 0.0001*m.x172*m.x16 + 0.0001*
m.x172*m.x17 + 0.0001*m.x172*m.x18 + 0.0001*m.x172*m.x19 + 0.0001*m.x172*m.x20 + 0.0001*m.x172*
m.x21 + 0.0001*m.x172*m.x22 + 0.0001*m.x172*m.x23 + 0.0001*m.x172*m.x24 + 0.0001*m.x172*m.x25 +
0.0001*m.x172*m.x26 + 0.0001*m.x172*m.x27 + 0.0001*m.x172*m.x28 + 0.0001*m.x172*m.x29 + 0.0001*
m.x172*m.x30 + 0.0001*m.x172*m.x31 + 0.0001*m.x172*m.x32 + 0.0001*m.x172*m.x33 + 0.0001*m.x172*
m.x34 + 0.0001*m.x172*m.x35 + 0.0001*m.x172*m.x36 + 0.0001*m.x172*m.x37 + 0.0001*m.x172*m.x38 +
0.0001*m.x172*m.x39 + 0.0001*m.x172*m.x40 + 0.0001*m.x172*m.x41 + 0.0001*m.x172*m.x42 + 0.0001*
m.x172*m.x43 + 0.0001*m.x172*m.x44 + 0.0001*m.x172*m.x45 + 0.0001*m.x172*m.x46 + 0.0001*m.x172*
m.x47 + 0.0001*m.x172*m.x48 + 0.0001*m.x172*m.x49 + 0.0001*m.x172*m.x50 + 0.0001*m.x172*m.x51 +
0.0001*m.x172*m.x52 + 0.0001*m.x172*m.x53 + 0.0001*m.x172*m.x54 + 0.0001*m.x172*m.x55 + 0.0001*
m.x172*m.x56 + 0.0001*m.x172*m.x57 + 0.0001*m.x172*m.x58 + 0.0001*m.x172*m.x59 + 0.0001*m.x172*
m.x60 + 0.0001*m.x172*m.x61 + 0.0001*m.x172*m.x62 + 0.0001*m.x172*m.x63 + 0.0001*m.x172*m.x64 +
0.0001*m.x172*m.x65 + 0.0001*m.x172*m.x66 + 0.0001*m.x172*m.x67 + 0.0001*m.x172*m.x68 + 0.0001*
m.x172*m.x69 + 0.0001*m.x172*m.x70 + 0.0001*m.x172*m.x71 + 0.0001*m.x172*m.x72 + 0.0001*m.x172*
m.x73 + 0.0001*m.x172*m.x74 + 0.0001*m.x172*m.x75 + 0.0001*m.x172*m.x76 + 0.0001*m.x172*m.x77 +
0.0001*m.x172*m.x78 + 0.0001*m.x172*m.x79 + 0.0001*m.x172*m.x80 + 0.0001*m.x172*m.x81 + 0.0001*
m.x172*m.x82 + 0.0001*m.x172*m.x83 + 0.0001*m.x172*m.x84 + 0.0001*m.x172*m.x85 + 0.0001*m.x172*
m.x86 + 0.0001*m.x172*m.x87 + 0.0001*m.x172*m.x88 + 0.0001*m.x172*m.x89 + 0.0001*m.x172*m.x90 +
0.0001*m.x172*m.x91 + 0.0001*m.x172*m.x92 + 0.0001*m.x172*m.x93 + 0.0001*m.x172*m.x94 + 0.0001*
m.x172*m.x95 + 0.0001*m.x172*m.x96 + 0.0001*m.x172*m.x97 + 0.0001*m.x172*m.x98 + 0.0001*m.x172*
m.x99 + 0.0001*m.x172*m.x100 + 0.0001*m.x172*m.x101 + 0.0001*m.x172*m.x102 + 0.0001*m.x172*m.x103
+ 0.0001*m.x172*m.x104 + 1.99237583036916*m.x172*m.x105 + 0.0001*m.x172*m.x106 + 0.0001*m.x172*
m.x107 + 0.0001*m.x172*m.x108 + 0.0001*m.x172*m.x109 + 0.0001*m.x172*m.x110 + 0.0001*m.x172*
m.x111 + 0.0001*m.x172*m.x112 + 0.0001*m.x172*m.x113 + 0.0001*m.x172*m.x114 + 0.0001*m.x172*
m.x115 + 0.0001*m.x172*m.x116 + 0.0001*m.x172*m.x117 + 0.0001*m.x172*m.x118 + 0.0001*m.x172*
m.x119 + 0.0001*m.x172*m.x120 + 0.0001*m.x172*m.x121 + 0.0001*m.x172*m.x122 + 0.0001*m.x172*
m.x123 + 0.0001*m.x172*m.x124 + 0.0001*m.x172*m.x125 + 0.0001*m.x172*m.x126 + 0.0001*m.x172*
m.x127 + 0.0001*m.x172*m.x128 + 0.0001*m.x172*m.x129 + 0.0001*m.x172*m.x130 + 0.0001*m.x172*
m.x131 + 0.0001*m.x172*m.x132 + 0.0001*m.x172*m.x133 + 0.0001*m.x172*m.x134 + 0.0001*m.x172*
m.x135 + 0.0001*m.x172*m.x136 + 0.0001*m.x172*m.x137 + 0.0001*m.x172*m.x138 + 0.0001*m.x172*
m.x139 + 0.0001*m.x172*m.x140 + 0.0001*m.x172*m.x141 + 0.0001*m.x172*m.x142 + 0.0001*m.x172*
m.x143 + 0.0001*m.x172*m.x144 + 0.0001*m.x172*m.x145 + 0.0001*m.x172*m.x146 + 0.0001*m.x172*
m.x147 + 0.0001*m.x172*m.x148 + 0.0001*m.x172*m.x149 + 0.0001*m.x172*m.x150 + 0.0001*m.x172*
m.x151 + 0.0001*m.x172*m.x152 + 0.0001*m.x172*m.x153 + 0.0001*m.x172*m.x154 + 0.0001*m.x172*
m.x155 + 0.0001*m.x172*m.x156 + 0.0001*m.x172*m.x157 + 0.0001*m.x172*m.x158 + 0.0001*m.x172*
m.x159 + 0.0001*m.x172*m.x160 + 0.0001*m.x172*m.x161 + 0.0001*m.x172*m.x162 + 0.0001*m.x172*
m.x163 + 0.0001*m.x172*m.x164 + 0.0001*m.x172*m.x165 + 0.0001*m.x172*m.x166 + 0.0001*m.x172*
m.x167 + 0.0001*m.x172*m.x168 + 0.0001*m.x172*m.x169 + 0.0001*m.x172*m.x170 + 0.0001*m.x172*
m.x171 + 2.30979835693109*m.x172**2 + 0.0001*m.x172*m.x173 + 0.0001*m.x172*m.x174 + 0.0001*m.x172
*m.x175 + 0.0001*m.x172*m.x176 + 0.0001*m.x172*m.x177 + 0.0001*m.x172*m.x178 + 0.0001*m.x172*
m.x179 + 0.0001*m.x172*m.x180 + 0.0001*m.x172*m.x181 + 0.0001*m.x172*m.x182 + 0.0001*m.x172*
m.x183 + 0.0001*m.x172*m.x184 + 0.0001*m.x172*m.x185 + 0.0001*m.x173*m.x1 + 0.0001*m.x173*m.x2 +
0.0001*m.x173*m.x3 + 0.0001*m.x173*m.x4 + 0.0001*m.x173*m.x5 + 0.0001*m.x173*m.x6 + 0.0001*m.x173
*m.x7 + 0.0001*m.x173*m.x8 + 0.0001*m.x173*m.x9 + 0.0001*m.x173*m.x10 + 0.0001*m.x173*m.x11 +
0.0001*m.x173*m.x12 + 0.0001*m.x173*m.x13 + 0.0001*m.x173*m.x14 + 0.0001*m.x173*m.x15 + 0.0001*
m.x173*m.x16 + 0.0001*m.x173*m.x17 + 0.0001*m.x173*m.x18 + 0.0001*m.x173*m.x19 + 0.0001*m.x173*
m.x20 + 0.0001*m.x173*m.x21 + 0.0001*m.x173*m.x22 + 0.0001*m.x173*m.x23 + 0.0001*m.x173*m.x24 +
0.0001*m.x173*m.x25 + 0.0001*m.x173*m.x26 + 0.0001*m.x173*m.x27 + 0.0001*m.x173*m.x28 + 0.0001*
m.x173*m.x29 + 0.0001*m.x173*m.x30 + 0.0001*m.x173*m.x31 + 0.0001*m.x173*m.x32 + 0.0001*m.x173*
m.x33 + 0.0001*m.x173*m.x34 + 0.0001*m.x173*m.x35 + 0.0001*m.x173*m.x36 + 0.0001*m.x173*m.x37 +
0.0001*m.x173*m.x38 + 0.0001*m.x173*m.x39 + 0.0001*m.x173*m.x40 + 0.0001*m.x173*m.x41 + 0.0001*
m.x173*m.x42 + 0.0001*m.x173*m.x43 + 0.0001*m.x173*m.x44 + 0.0001*m.x173*m.x45 + 0.0001*m.x173*
m.x46 + 0.0001*m.x173*m.x47 + 0.0001*m.x173*m.x48 + 0.0001*m.x173*m.x49 + 0.0001*m.x173*m.x50 +
0.0001*m.x173*m.x51 + 0.0001*m.x173*m.x52 + 0.0001*m.x173*m.x53 + 0.0001*m.x173*m.x54 + 0.0001*
m.x173*m.x55 + 0.0001*m.x173*m.x56 + 0.0001*m.x173*m.x57 + 0.0001*m.x173*m.x58 + 0.0001*m.x173*
m.x59 + 0.0001*m.x173*m.x60 + 0.0001*m.x173*m.x61 + 0.0001*m.x173*m.x62 + 0.0001*m.x173*m.x63 +
0.0001*m.x173*m.x64 + 0.0001*m.x173*m.x65 + 0.0001*m.x173*m.x66 + 0.0001*m.x173*m.x67 + 0.0001*
m.x173*m.x68 + 0.0001*m.x173*m.x69 + 0.0001*m.x173*m.x70 + 0.0001*m.x173*m.x71 + 0.0001*m.x173*
m.x72 + 0.0001*m.x173*m.x73 + 0.0001*m.x173*m.x74 + 0.0001*m.x173*m.x75 + 0.0001*m.x173*m.x76 +
0.0001*m.x173*m.x77 + 0.0001*m.x173*m.x78 + 0.0001*m.x173*m.x79 + 0.0001*m.x173*m.x80 + 0.0001*
m.x173*m.x81 + 0.0001*m.x173*m.x82 + 0.0001*m.x173*m.x83 + 0.0001*m.x173*m.x84 + 0.0001*m.x173*
m.x85 + 0.0001*m.x173*m.x86 + 0.0001*m.x173*m.x87 + 0.0001*m.x173*m.x88 + 0.0001*m.x173*m.x89 +
0.0001*m.x173*m.x90 + 0.0001*m.x173*m.x91 + 0.0001*m.x173*m.x92 + 0.0001*m.x173*m.x93 + 0.0001*
m.x173*m.x94 + 0.0001*m.x173*m.x95 + 0.0001*m.x173*m.x96 + 0.0001*m.x173*m.x97 + 0.0001*m.x173*
m.x98 + 0.0001*m.x173*m.x99 + 0.0001*m.x173*m.x100 + 0.0001*m.x173*m.x101 + 0.0001*m.x173*m.x102
+ 0.0001*m.x173*m.x103 + 0.0001*m.x173*m.x104 + 1.97716255370005*m.x173*m.x105 + 0.0001*m.x173*
m.x106 + 0.0001*m.x173*m.x107 + 0.0001*m.x173*m.x108 + 0.0001*m.x173*m.x109 + 0.0001*m.x173*
m.x110 + 0.0001*m.x173*m.x111 + 0.0001*m.x173*m.x112 + 0.0001*m.x173*m.x113 + 0.0001*m.x173*
m.x114 + 0.0001*m.x173*m.x115 + 0.0001*m.x173*m.x116 + 0.0001*m.x173*m.x117 + 0.0001*m.x173*
m.x118 + 0.0001*m.x173*m.x119 + 0.0001*m.x173*m.x120 + 0.0001*m.x173*m.x121 + 0.0001*m.x173*
m.x122 + 0.0001*m.x173*m.x123 + 0.0001*m.x173*m.x124 + 0.0001*m.x173*m.x125 + 0.0001*m.x173*
m.x126 + 0.0001*m.x173*m.x127 + 0.0001*m.x173*m.x128 + 0.0001*m.x173*m.x129 + 0.0001*m.x173*
m.x130 + 0.0001*m.x173*m.x131 + 0.0001*m.x173*m.x132 + 0.0001*m.x173*m.x133 + 0.0001*m.x173*
m.x134 + 0.0001*m.x173*m.x135 + 0.0001*m.x173*m.x136 + 0.0001*m.x173*m.x137 + 0.0001*m.x173*
m.x138 + 0.0001*m.x173*m.x139 + 0.0001*m.x173*m.x140 + 0.0001*m.x173*m.x141 + 0.0001*m.x173*
m.x142 + 0.0001*m.x173*m.x143 + 0.0001*m.x173*m.x144 + 0.0001*m.x173*m.x145 + 0.0001*m.x173*
m.x146 + 0.0001*m.x173*m.x147 + 0.0001*m.x173*m.x148 + 0.0001*m.x173*m.x149 + 0.0001*m.x173*
m.x150 + 0.0001*m.x173*m.x151 + 0.0001*m.x173*m.x152 + 0.0001*m.x173*m.x153 + 0.0001*m.x173*
m.x154 + 0.0001*m.x173*m.x155 + 0.0001*m.x173*m.x156 + 0.0001*m.x173*m.x157 + 0.0001*m.x173*
m.x158 + 0.0001*m.x173*m.x159 + 0.0001*m.x173*m.x160 + 0.0001*m.x173*m.x161 + 0.0001*m.x173*
m.x162 + 0.0001*m.x173*m.x163 + 0.0001*m.x173*m.x164 + 0.0001*m.x173*m.x165 + 0.0001*m.x173*
m.x166 + 0.0001*m.x173*m.x167 + 0.0001*m.x173*m.x168 + 0.0001*m.x173*m.x169 + 0.0001*m.x173*
m.x170 + 0.0001*m.x173*m.x171 + 0.0001*m.x173*m.x172 + 2.29216120067462*m.x173**2 + 0.0001*m.x173
*m.x174 + 0.0001*m.x173*m.x175 + 0.0001*m.x173*m.x176 + 0.0001*m.x173*m.x177 + 0.0001*m.x173*
m.x178 + 0.0001*m.x173*m.x179 + 0.0001*m.x173*m.x180 + 0.0001*m.x173*m.x181 + 0.0001*m.x173*
m.x182 + 0.0001*m.x173*m.x183 + 0.0001*m.x173*m.x184 + 0.0001*m.x173*m.x185 + 0.0001*m.x174*m.x1
+ 0.0001*m.x174*m.x2 + 0.0001*m.x174*m.x3 + 0.0001*m.x174*m.x4 + 0.0001*m.x174*m.x5 + 0.0001*
m.x174*m.x6 + 0.0001*m.x174*m.x7 + 0.0001*m.x174*m.x8 + 0.0001*m.x174*m.x9 + 0.0001*m.x174*m.x10
+ 0.0001*m.x174*m.x11 + 0.0001*m.x174*m.x12 + 0.0001*m.x174*m.x13 + 0.0001*m.x174*m.x14 + 0.0001
*m.x174*m.x15 + 0.0001*m.x174*m.x16 + 0.0001*m.x174*m.x17 + 0.0001*m.x174*m.x18 + 0.0001*m.x174*
m.x19 + 0.0001*m.x174*m.x20 + 0.0001*m.x174*m.x21 + 0.0001*m.x174*m.x22 + 0.0001*m.x174*m.x23 +
0.0001*m.x174*m.x24 + 0.0001*m.x174*m.x25 + 0.0001*m.x174*m.x26 + 0.0001*m.x174*m.x27 + 0.0001*
m.x174*m.x28 + 0.0001*m.x174*m.x29 + 0.0001*m.x174*m.x30 + 0.0001*m.x174*m.x31 + 0.0001*m.x174*
m.x32 + 0.0001*m.x174*m.x33 + 0.0001*m.x174*m.x34 + 0.0001*m.x174*m.x35 + 0.0001*m.x174*m.x36 +
0.0001*m.x174*m.x37 + 0.0001*m.x174*m.x38 + 0.0001*m.x174*m.x39 + 0.0001*m.x174*m.x40 + 0.0001*
m.x174*m.x41 + 0.0001*m.x174*m.x42 + 0.0001*m.x174*m.x43 + 0.0001*m.x174*m.x44 + 0.0001*m.x174*
m.x45 + 0.0001*m.x174*m.x46 + 0.0001*m.x174*m.x47 + 0.0001*m.x174*m.x48 + 0.0001*m.x174*m.x49 +
0.0001*m.x174*m.x50 + 0.0001*m.x174*m.x51 + 0.0001*m.x174*m.x52 + 0.0001*m.x174*m.x53 + 0.0001*
m.x174*m.x54 + 0.0001*m.x174*m.x55 + 0.0001*m.x174*m.x56 + 0.0001*m.x174*m.x57 + 0.0001*m.x174*
m.x58 + 0.0001*m.x174*m.x59 + 0.0001*m.x174*m.x60 + 0.0001*m.x174*m.x61 + 0.0001*m.x174*m.x62 +
0.0001*m.x174*m.x63 + 0.0001*m.x174*m.x64 + 0.0001*m.x174*m.x65 + 0.0001*m.x174*m.x66 + 0.0001*
m.x174*m.x67 + 0.0001*m.x174*m.x68 + 0.0001*m.x174*m.x69 + 0.0001*m.x174*m.x70 + 0.0001*m.x174*
m.x71 + 0.0001*m.x174*m.x72 + 0.0001*m.x174*m.x73 + 0.0001*m.x174*m.x74 + 0.0001*m.x174*m.x75 +
0.0001*m.x174*m.x76 + 0.0001*m.x174*m.x77 + 0.0001*m.x174*m.x78 + 0.0001*m.x174*m.x79 + 0.0001*
m.x174*m.x80 + 0.0001*m.x174*m.x81 + 0.0001*m.x174*m.x82 + 0.0001*m.x174*m.x83 + 0.0001*m.x174*
m.x84 + 0.0001*m.x174*m.x85 + 0.0001*m.x174*m.x86 + 0.0001*m.x174*m.x87 + 0.0001*m.x174*m.x88 +
0.0001*m.x174*m.x89 + 0.0001*m.x174*m.x90 + 0.0001*m.x174*m.x91 + 0.0001*m.x174*m.x92 + 0.0001*
m.x174*m.x93 + 0.0001*m.x174*m.x94 + 0.0001*m.x174*m.x95 + 0.0001*m.x174*m.x96 + 0.0001*m.x174*
m.x97 + 0.0001*m.x174*m.x98 + 0.0001*m.x174*m.x99 + 0.0001*m.x174*m.x100 + 0.0001*m.x174*m.x101
+ 0.0001*m.x174*m.x102 + 0.0001*m.x174*m.x103 + 0.0001*m.x174*m.x104 + 0.0001*m.x174*m.x105 +
2.18408636387853*m.x174*m.x106 + 0.0001*m.x174*m.x107 + 0.0001*m.x174*m.x108 + 0.0001*m.x174*
m.x109 + 0.0001*m.x174*m.x110 + 0.0001*m.x174*m.x111 + 0.0001*m.x174*m.x112 + 0.0001*m.x174*
m.x113 + 0.0001*m.x174*m.x114 + 0.0001*m.x174*m.x115 + 0.0001*m.x174*m.x116 + 0.0001*m.x174*
m.x117 + 0.0001*m.x174*m.x118 + 0.0001*m.x174*m.x119 + 0.0001*m.x174*m.x120 + 0.0001*m.x174*
m.x121 + 0.0001*m.x174*m.x122 + 0.0001*m.x174*m.x123 + 0.0001*m.x174*m.x124 + 0.0001*m.x174*
m.x125 + 0.0001*m.x174*m.x126 + 0.0001*m.x174*m.x127 + 0.0001*m.x174*m.x128 + 0.0001*m.x174*
m.x129 + 0.0001*m.x174*m.x130 + 0.0001*m.x174*m.x131 + 0.0001*m.x174*m.x132 + 0.0001*m.x174*
m.x133 + 0.0001*m.x174*m.x134 + 0.0001*m.x174*m.x135 + 0.0001*m.x174*m.x136 + 0.0001*m.x174*
m.x137 + 0.0001*m.x174*m.x138 + 0.0001*m.x174*m.x139 + 0.0001*m.x174*m.x140 + 0.0001*m.x174*
m.x141 + 0.0001*m.x174*m.x142 + 0.0001*m.x174*m.x143 + 0.0001*m.x174*m.x144 + 0.0001*m.x174*
m.x145 + 0.0001*m.x174*m.x146 + 0.0001*m.x174*m.x147 + 0.0001*m.x174*m.x148 + 0.0001*m.x174*
m.x149 + 0.0001*m.x174*m.x150 + 0.0001*m.x174*m.x151 + 0.0001*m.x174*m.x152 + 0.0001*m.x174*
m.x153 + 0.0001*m.x174*m.x154 + 0.0001*m.x174*m.x155 + 0.0001*m.x174*m.x156 + 0.0001*m.x174*
m.x157 + 0.0001*m.x174*m.x158 + 0.0001*m.x174*m.x159 + 0.0001*m.x174*m.x160 + 0.0001*m.x174*
m.x161 + 0.0001*m.x174*m.x162 + 0.0001*m.x174*m.x163 + 0.0001*m.x174*m.x164 + 0.0001*m.x174*
m.x165 + 0.0001*m.x174*m.x166 + 0.0001*m.x174*m.x167 + 0.0001*m.x174*m.x168 + 0.0001*m.x174*
m.x169 + 0.0001*m.x174*m.x170 + 0.0001*m.x174*m.x171 + 0.0001*m.x174*m.x172 + 0.0001*m.x174*
m.x173 + 2.58965215960902*m.x174**2 + 0.0001*m.x174*m.x175 + 0.0001*m.x174*m.x176 + 0.0001*m.x174
*m.x177 + 0.0001*m.x174*m.x178 + 0.0001*m.x174*m.x179 + 0.0001*m.x174*m.x180 + 0.0001*m.x174*
m.x181 + 0.0001*m.x174*m.x182 + 0.0001*m.x174*m.x183 + 0.0001*m.x174*m.x184 + 0.0001*m.x174*
m.x185 + 0.0001*m.x175*m.x1 + 0.0001*m.x175*m.x2 + 0.0001*m.x175*m.x3 + 0.0001*m.x175*m.x4 +
0.0001*m.x175*m.x5 + 0.0001*m.x175*m.x6 + 0.0001*m.x175*m.x7 + 0.0001*m.x175*m.x8 + 0.0001*m.x175
*m.x9 + 0.0001*m.x175*m.x10 + 0.0001*m.x175*m.x11 + 0.0001*m.x175*m.x12 + 0.0001*m.x175*m.x13 +
0.0001*m.x175*m.x14 + 0.0001*m.x175*m.x15 + 0.0001*m.x175*m.x16 + 0.0001*m.x175*m.x17 + 0.0001*
m.x175*m.x18 + 0.0001*m.x175*m.x19 + 0.0001*m.x175*m.x20 + 0.0001*m.x175*m.x21 + 0.0001*m.x175*
m.x22 + 0.0001*m.x175*m.x23 + 0.0001*m.x175*m.x24 + 0.0001*m.x175*m.x25 + 0.0001*m.x175*m.x26 +
0.0001*m.x175*m.x27 + 0.0001*m.x175*m.x28 + 0.0001*m.x175*m.x29 + 0.0001*m.x175*m.x30 + 0.0001*
m.x175*m.x31 + 0.0001*m.x175*m.x32 + 0.0001*m.x175*m.x33 + 0.0001*m.x175*m.x34 + 0.0001*m.x175*
m.x35 + 0.0001*m.x175*m.x36 + 0.0001*m.x175*m.x37 + 0.0001*m.x175*m.x38 + 0.0001*m.x175*m.x39 +
0.0001*m.x175*m.x40 + 0.0001*m.x175*m.x41 + 0.0001*m.x175*m.x42 + 0.0001*m.x175*m.x43 + 0.0001*
m.x175*m.x44 + 0.0001*m.x175*m.x45 + 0.0001*m.x175*m.x46 + 0.0001*m.x175*m.x47 + 0.0001*m.x175*
m.x48 + 0.0001*m.x175*m.x49 + 0.0001*m.x175*m.x50 + 0.0001*m.x175*m.x51 + 0.0001*m.x175*m.x52 +
0.0001*m.x175*m.x53 + 0.0001*m.x175*m.x54 + 0.0001*m.x175*m.x55 + 0.0001*m.x175*m.x56 + 0.0001*
m.x175*m.x57 + 0.0001*m.x175*m.x58 + 0.0001*m.x175*m.x59 + 0.0001*m.x175*m.x60 + 0.0001*m.x175*
m.x61 + 0.0001*m.x175*m.x62 + 0.0001*m.x175*m.x63 + 0.0001*m.x175*m.x64 + 0.0001*m.x175*m.x65 +
0.0001*m.x175*m.x66 + 0.0001*m.x175*m.x67 + 0.0001*m.x175*m.x68 + 0.0001*m.x175*m.x69 + 0.0001*
m.x175*m.x70 + 0.0001*m.x175*m.x71 + 0.0001*m.x175*m.x72 + 0.0001*m.x175*m.x73 + 0.0001*m.x175*
m.x74 + 0.0001*m.x175*m.x75 + 0.0001*m.x175*m.x76 + 0.0001*m.x175*m.x77 + 0.0001*m.x175*m.x78 +
0.0001*m.x175*m.x79 + 0.0001*m.x175*m.x80 + 0.0001*m.x175*m.x81 + 0.0001*m.x175*m.x82 + 0.0001*
m.x175*m.x83 + 0.0001*m.x175*m.x84 + 0.0001*m.x175*m.x85 + 0.0001*m.x175*m.x86 + 0.0001*m.x175*
m.x87 + 0.0001*m.x175*m.x88 + 0.0001*m.x175*m.x89 + 0.0001*m.x175*m.x90 + 0.0001*m.x175*m.x91 +
0.0001*m.x175*m.x92 + 0.0001*m.x175*m.x93 + 0.0001*m.x175*m.x94 + 0.0001*m.x175*m.x95 + 0.0001*
m.x175*m.x96 + 0.0001*m.x175*m.x97 + 0.0001*m.x175*m.x98 + 0.0001*m.x175*m.x99 + 0.0001*m.x175*
m.x100 + 0.0001*m.x175*m.x101 + 0.0001*m.x175*m.x102 + 0.0001*m.x175*m.x103 + 0.0001*m.x175*
m.x104 + 0.0001*m.x175*m.x105 + 0.0001*m.x175*m.x106 + 1.98513072555675*m.x175*m.x107 + 0.0001*
m.x175*m.x108 + 0.0001*m.x175*m.x109 + 0.0001*m.x175*m.x110 + 0.0001*m.x175*m.x111 + 0.0001*
m.x175*m.x112 + 0.0001*m.x175*m.x113 + 0.0001*m.x175*m.x114 + 0.0001*m.x175*m.x115 + 0.0001*
m.x175*m.x116 + 0.0001*m.x175*m.x117 + 0.0001*m.x175*m.x118 + 0.0001*m.x175*m.x119 + 0.0001*
m.x175*m.x120 + 0.0001*m.x175*m.x121 + 0.0001*m.x175*m.x122 + 0.0001*m.x175*m.x123 + 0.0001*
m.x175*m.x124 + 0.0001*m.x175*m.x125 + 0.0001*m.x175*m.x126 + 0.0001*m.x175*m.x127 + 0.0001*
m.x175*m.x128 + 0.0001*m.x175*m.x129 + 0.0001*m.x175*m.x130 + 0.0001*m.x175*m.x131 + 0.0001*
m.x175*m.x132 + 0.0001*m.x175*m.x133 + 0.0001*m.x175*m.x134 + 0.0001*m.x175*m.x135 + 0.0001*
m.x175*m.x136 + 0.0001*m.x175*m.x137 + 0.0001*m.x175*m.x138 + 0.0001*m.x175*m.x139 + 0.0001*
m.x175*m.x140 + 0.0001*m.x175*m.x141 + 0.0001*m.x175*m.x142 + 0.0001*m.x175*m.x143 + 0.0001*
m.x175*m.x144 + 0.0001*m.x175*m.x145 + 0.0001*m.x175*m.x146 + 0.0001*m.x175*m.x147 + 0.0001*
m.x175*m.x148 + 0.0001*m.x175*m.x149 + 0.0001*m.x175*m.x150 + 0.0001*m.x175*m.x151 + 0.0001*
m.x175*m.x152 + 0.0001*m.x175*m.x153 + 0.0001*m.x175*m.x154 + 0.0001*m.x175*m.x155 + 0.0001*
m.x175*m.x156 + 0.0001*m.x175*m.x157 + 0.0001*m.x175*m.x158 + 0.0001*m.x175*m.x159 + 0.0001*
m.x175*m.x160 + 0.0001*m.x175*m.x161 + 0.0001*m.x175*m.x162 + 0.0001*m.x175*m.x163 + 0.0001*
m.x175*m.x164 + 0.0001*m.x175*m.x165 + 0.0001*m.x175*m.x166 + 0.0001*m.x175*m.x167 + 0.0001*
m.x175*m.x168 + 0.0001*m.x175*m.x169 + 0.0001*m.x175*m.x170 + 0.0001*m.x175*m.x171 + 0.0001*
m.x175*m.x172 + 0.0001*m.x175*m.x173 + 0.0001*m.x175*m.x174 + 2.3537505022527*m.x175**2 + 0.0001*
m.x175*m.x176 + 0.0001*m.x175*m.x177 + 0.0001*m.x175*m.x178 + 0.0001*m.x175*m.x179 + 0.0001*
m.x175*m.x180 + 0.0001*m.x175*m.x181 + 0.0001*m.x175*m.x182 + 0.0001*m.x175*m.x183 + 0.0001*
m.x175*m.x184 + 0.0001*m.x175*m.x185 + 0.0001*m.x176*m.x1 + 0.0001*m.x176*m.x2 + 0.0001*m.x176*
m.x3 + 0.0001*m.x176*m.x4 + 0.0001*m.x176*m.x5 + 0.0001*m.x176*m.x6 + 0.0001*m.x176*m.x7 + 0.0001
*m.x176*m.x8 + 0.0001*m.x176*m.x9 + 0.0001*m.x176*m.x10 + 0.0001*m.x176*m.x11 + 0.0001*m.x176*
m.x12 + 0.0001*m.x176*m.x13 + 0.0001*m.x176*m.x14 + 0.0001*m.x176*m.x15 + 0.0001*m.x176*m.x16 +
0.0001*m.x176*m.x17 + 0.0001*m.x176*m.x18 + 0.0001*m.x176*m.x19 + 0.0001*m.x176*m.x20 + 0.0001*
m.x176*m.x21 + 0.0001*m.x176*m.x22 + 0.0001*m.x176*m.x23 + 0.0001*m.x176*m.x24 + 0.0001*m.x176*
m.x25 + 0.0001*m.x176*m.x26 + 0.0001*m.x176*m.x27 + 0.0001*m.x176*m.x28 + 0.0001*m.x176*m.x29 +
0.0001*m.x176*m.x30 + 0.0001*m.x176*m.x31 + 0.0001*m.x176*m.x32 + 0.0001*m.x176*m.x33 + 0.0001*
m.x176*m.x34 + 0.0001*m.x176*m.x35 + 0.0001*m.x176*m.x36 + 0.0001*m.x176*m.x37 + 0.0001*m.x176*
m.x38 + 0.0001*m.x176*m.x39 + 0.0001*m.x176*m.x40 + 0.0001*m.x176*m.x41 + 0.0001*m.x176*m.x42 +
0.0001*m.x176*m.x43 + 0.0001*m.x176*m.x44 + 0.0001*m.x176*m.x45 + 0.0001*m.x176*m.x46 + 0.0001*
m.x176*m.x47 + 0.0001*m.x176*m.x48 + 0.0001*m.x176*m.x49 + 0.0001*m.x176*m.x50 + 0.0001*m.x176*
m.x51 + 0.0001*m.x176*m.x52 + 0.0001*m.x176*m.x53 + 0.0001*m.x176*m.x54 + 0.0001*m.x176*m.x55 +
0.0001*m.x176*m.x56 + 0.0001*m.x176*m.x57 + 0.0001*m.x176*m.x58 + 0.0001*m.x176*m.x59 + 0.0001*
m.x176*m.x60 + 0.0001*m.x176*m.x61 + 0.0001*m.x176*m.x62 + 0.0001*m.x176*m.x63 + 0.0001*m.x176*
m.x64 + 0.0001*m.x176*m.x65 + 0.0001*m.x176*m.x66 + 0.0001*m.x176*m.x67 + 0.0001*m.x176*m.x68 +
0.0001*m.x176*m.x69 + 0.0001*m.x176*m.x70 + 0.0001*m.x176*m.x71 + 0.0001*m.x176*m.x72 + 0.0001*
m.x176*m.x73 + 0.0001*m.x176*m.x74 + 0.0001*m.x176*m.x75 + 0.0001*m.x176*m.x76 + 0.0001*m.x176*
m.x77 + 0.0001*m.x176*m.x78 + 0.0001*m.x176*m.x79 + 0.0001*m.x176*m.x80 + 0.0001*m.x176*m.x81 +
0.0001*m.x176*m.x82 + 0.0001*m.x176*m.x83 + 0.0001*m.x176*m.x84 + 0.0001*m.x176*m.x85 + 0.0001*
m.x176*m.x86 + 0.0001*m.x176*m.x87 + 0.0001*m.x176*m.x88 + 0.0001*m.x176*m.x89 + 0.0001*m.x176*
m.x90 + 0.0001*m.x176*m.x91 + 0.0001*m.x176*m.x92 + 0.0001*m.x176*m.x93 + 0.0001*m.x176*m.x94 +
0.0001*m.x176*m.x95 + 0.0001*m.x176*m.x96 + 0.0001*m.x176*m.x97 + 0.0001*m.x176*m.x98 + 0.0001*
m.x176*m.x99 + 0.0001*m.x176*m.x100 + 0.0001*m.x176*m.x101 + 0.0001*m.x176*m.x102 + 0.0001*m.x176
*m.x103 + 0.0001*m.x176*m.x104 + 0.0001*m.x176*m.x105 + 0.0001*m.x176*m.x106 + 0.0001*m.x176*
m.x107 + 2.06902936086386*m.x176*m.x108 + 0.0001*m.x176*m.x109 + 0.0001*m.x176*m.x110 + 0.0001*
m.x176*m.x111 + 0.0001*m.x176*m.x112 + 0.0001*m.x176*m.x113 + 0.0001*m.x176*m.x114 + 0.0001*
m.x176*m.x115 + 0.0001*m.x176*m.x116 + 0.0001*m.x176*m.x117 + 0.0001*m.x176*m.x118 + 0.0001*
m.x176*m.x119 + 0.0001*m.x176*m.x120 + 0.0001*m.x176*m.x121 + 0.0001*m.x176*m.x122 + 0.0001*
m.x176*m.x123 + 0.0001*m.x176*m.x124 + 0.0001*m.x176*m.x125 + 0.0001*m.x176*m.x126 + 0.0001*
m.x176*m.x127 + 0.0001*m.x176*m.x128 + 0.0001*m.x176*m.x129 + 0.0001*m.x176*m.x130 + 0.0001*
m.x176*m.x131 + 0.0001*m.x176*m.x132 + 0.0001*m.x176*m.x133 + 0.0001*m.x176*m.x134 + 0.0001*
m.x176*m.x135 + 0.0001*m.x176*m.x136 + 0.0001*m.x176*m.x137 + 0.0001*m.x176*m.x138 + 0.0001*
m.x176*m.x139 + 0.0001*m.x176*m.x140 + 0.0001*m.x176*m.x141 + 0.0001*m.x176*m.x142 + 0.0001*
m.x176*m.x143 + 0.0001*m.x176*m.x144 + 0.0001*m.x176*m.x145 + 0.0001*m.x176*m.x146 + 0.0001*
m.x176*m.x147 + 0.0001*m.x176*m.x148 + 0.0001*m.x176*m.x149 + 0.0001*m.x176*m.x150 + 0.0001*
m.x176*m.x151 + 0.0001*m.x176*m.x152 + 0.0001*m.x176*m.x153 + 0.0001*m.x176*m.x154 + 0.0001*
m.x176*m.x155 + 0.0001*m.x176*m.x156 + 0.0001*m.x176*m.x157 + 0.0001*m.x176*m.x158 + 0.0001*
m.x176*m.x159 + 0.0001*m.x176*m.x160 + 0.0001*m.x176*m.x161 + 0.0001*m.x176*m.x162 + 0.0001*
m.x176*m.x163 + 0.0001*m.x176*m.x164 + 0.0001*m.x176*m.x165 + 0.0001*m.x176*m.x166 + 0.0001*
m.x176*m.x167 + 0.0001*m.x176*m.x168 + 0.0001*m.x176*m.x169 + 0.0001*m.x176*m.x170 + 0.0001*
m.x176*m.x171 + 0.0001*m.x176*m.x172 + 0.0001*m.x176*m.x173 + 0.0001*m.x176*m.x174 + 0.0001*
m.x176*m.x175 + 2.36682670060936*m.x176**2 + 0.0001*m.x176*m.x177 + 0.0001*m.x176*m.x178 + 0.0001
*m.x176*m.x179 + 0.0001*m.x176*m.x180 + 0.0001*m.x176*m.x181 + 0.0001*m.x176*m.x182 + 0.0001*
m.x176*m.x183 + 0.0001*m.x176*m.x184 + 0.0001*m.x176*m.x185 + 0.0001*m.x177*m.x1 + 0.0001*m.x177*
m.x2 + 0.0001*m.x177*m.x3 + 0.0001*m.x177*m.x4 + 0.0001*m.x177*m.x5 + 0.0001*m.x177*m.x6 + 0.0001
*m.x177*m.x7 + 0.0001*m.x177*m.x8 + 0.0001*m.x177*m.x9 + 0.0001*m.x177*m.x10 + 0.0001*m.x177*
m.x11 + 0.0001*m.x177*m.x12 + 0.0001*m.x177*m.x13 + 0.0001*m.x177*m.x14 + 0.0001*m.x177*m.x15 +
0.0001*m.x177*m.x16 + 0.0001*m.x177*m.x17 + 0.0001*m.x177*m.x18 + 0.0001*m.x177*m.x19 + 0.0001*
m.x177*m.x20 + 0.0001*m.x177*m.x21 + 0.0001*m.x177*m.x22 + 0.0001*m.x177*m.x23 + 0.0001*m.x177*
m.x24 + 0.0001*m.x177*m.x25 + 0.0001*m.x177*m.x26 + 0.0001*m.x177*m.x27 + 0.0001*m.x177*m.x28 +
0.0001*m.x177*m.x29 + 0.0001*m.x177*m.x30 + 0.0001*m.x177*m.x31 + 0.0001*m.x177*m.x32 + 0.0001*
m.x177*m.x33 + 0.0001*m.x177*m.x34 + 0.0001*m.x177*m.x35 + 0.0001*m.x177*m.x36 + 0.0001*m.x177*
m.x37 + 0.0001*m.x177*m.x38 + 0.0001*m.x177*m.x39 + 0.0001*m.x177*m.x40 + 0.0001*m.x177*m.x41 +
0.0001*m.x177*m.x42 + 0.0001*m.x177*m.x43 + 0.0001*m.x177*m.x44 + 0.0001*m.x177*m.x45 + 0.0001*
m.x177*m.x46 + 0.0001*m.x177*m.x47 + 0.0001*m.x177*m.x48 + 0.0001*m.x177*m.x49 + 0.0001*m.x177*
m.x50 + 0.0001*m.x177*m.x51 + 0.0001*m.x177*m.x52 + 0.0001*m.x177*m.x53 + 0.0001*m.x177*m.x54 +
0.0001*m.x177*m.x55 + 0.0001*m.x177*m.x56 + 0.0001*m.x177*m.x57 + 0.0001*m.x177*m.x58 + 0.0001*
m.x177*m.x59 + 0.0001*m.x177*m.x60 + 0.0001*m.x177*m.x61 + 0.0001*m.x177*m.x62 + 0.0001*m.x177*
m.x63 + 0.0001*m.x177*m.x64 + 0.0001*m.x177*m.x65 + 0.0001*m.x177*m.x66 + 0.0001*m.x177*m.x67 +
0.0001*m.x177*m.x68 + 0.0001*m.x177*m.x69 + 0.0001*m.x177*m.x70 + 0.0001*m.x177*m.x71 + 0.0001*
m.x177*m.x72 + 0.0001*m.x177*m.x73 + 0.0001*m.x177*m.x74 + 0.0001*m.x177*m.x75 + 0.0001*m.x177*
m.x76 + 0.0001*m.x177*m.x77 + 0.0001*m.x177*m.x78 + 0.0001*m.x177*m.x79 + 0.0001*m.x177*m.x80 +
0.0001*m.x177*m.x81 + 0.0001*m.x177*m.x82 + 0.0001*m.x177*m.x83 + 0.0001*m.x177*m.x84 + 0.0001*
m.x177*m.x85 + 0.0001*m.x177*m.x86 + 0.0001*m.x177*m.x87 + 0.0001*m.x177*m.x88 + 0.0001*m.x177*
m.x89 + 0.0001*m.x177*m.x90 + 0.0001*m.x177*m.x91 + 0.0001*m.x177*m.x92 + 0.0001*m.x177*m.x93 +
0.0001*m.x177*m.x94 + 0.0001*m.x177*m.x95 + 0.0001*m.x177*m.x96 + 0.0001*m.x177*m.x97 + 0.0001*
m.x177*m.x98 + 0.0001*m.x177*m.x99 + 0.0001*m.x177*m.x100 + 0.0001*m.x177*m.x101 + 0.0001*m.x177*
m.x102 + 0.0001*m.x177*m.x103 + 0.0001*m.x177*m.x104 + 0.0001*m.x177*m.x105 + 0.0001*m.x177*
m.x106 + 0.0001*m.x177*m.x107 + 0.0001*m.x177*m.x108 + 2.08391055624166*m.x177*m.x109 + 0.0001*
m.x177*m.x110 + 0.0001*m.x177*m.x111 + 0.0001*m.x177*m.x112 + 0.0001*m.x177*m.x113 + 0.0001*
m.x177*m.x114 + 0.0001*m.x177*m.x115 + 0.0001*m.x177*m.x116 + 0.0001*m.x177*m.x117 + 0.0001*
m.x177*m.x118 + 0.0001*m.x177*m.x119 + 0.0001*m.x177*m.x120 + 0.0001*m.x177*m.x121 + 0.0001*
m.x177*m.x122 + 0.0001*m.x177*m.x123 + 0.0001*m.x177*m.x124 + 0.0001*m.x177*m.x125 + 0.0001*
m.x177*m.x126 + 0.0001*m.x177*m.x127 + 0.0001*m.x177*m.x128 + 0.0001*m.x177*m.x129 + 0.0001*
m.x177*m.x130 + 0.0001*m.x177*m.x131 + 0.0001*m.x177*m.x132 + 0.0001*m.x177*m.x133 + 0.0001*
m.x177*m.x134 + 0.0001*m.x177*m.x135 + 0.0001*m.x177*m.x136 + 0.0001*m.x177*m.x137 + 0.0001*
m.x177*m.x138 + 0.0001*m.x177*m.x139 + 0.0001*m.x177*m.x140 + 0.0001*m.x177*m.x141 + 0.0001*
m.x177*m.x142 + 0.0001*m.x177*m.x143 + 0.0001*m.x177*m.x144 + 0.0001*m.x177*m.x145 + 0.0001*
m.x177*m.x146 + 0.0001*m.x177*m.x147 + 0.0001*m.x177*m.x148 + 0.0001*m.x177*m.x149 + 0.0001*
m.x177*m.x150 + 0.0001*m.x177*m.x151 + 0.0001*m.x177*m.x152 + 0.0001*m.x177*m.x153 + 0.0001*
m.x177*m.x154 + 0.0001*m.x177*m.x155 + 0.0001*m.x177*m.x156 + 0.0001*m.x177*m.x157 + 0.0001*
m.x177*m.x158 + 0.0001*m.x177*m.x159 + 0.0001*m.x177*m.x160 + 0.0001*m.x177*m.x161 + 0.0001*
m.x177*m.x162 + 0.0001*m.x177*m.x163 + 0.0001*m.x177*m.x164 + 0.0001*m.x177*m.x165 + 0.0001*
m.x177*m.x166 + 0.0001*m.x177*m.x167 + 0.0001*m.x177*m.x168 + 0.0001*m.x177*m.x169 + 0.0001*
m.x177*m.x170 + 0.0001*m.x177*m.x171 + 0.0001*m.x177*m.x172 + 0.0001*m.x177*m.x173 + 0.0001*
m.x177*m.x174 + 0.0001*m.x177*m.x175 + 0.0001*m.x177*m.x176 + 2.45829657892161*m.x177**2 + 0.0001
*m.x177*m.x178 + 0.0001*m.x177*m.x179 + 0.0001*m.x177*m.x180 + 0.0001*m.x177*m.x181 + 0.0001*
m.x177*m.x182 + 0.0001*m.x177*m.x183 + 0.0001*m.x177*m.x184 + 0.0001*m.x177*m.x185 + 0.0001*
m.x178*m.x1 + 0.0001*m.x178*m.x2 + 0.0001*m.x178*m.x3 + 0.0001*m.x178*m.x4 + 0.0001*m.x178*m.x5
+ 0.0001*m.x178*m.x6 + 0.0001*m.x178*m.x7 + 0.0001*m.x178*m.x8 + 0.0001*m.x178*m.x9 + 0.0001*
m.x178*m.x10 + 0.0001*m.x178*m.x11 + 0.0001*m.x178*m.x12 + 0.0001*m.x178*m.x13 + 0.0001*m.x178*
m.x14 + 0.0001*m.x178*m.x15 + 0.0001*m.x178*m.x16 + 0.0001*m.x178*m.x17 + 0.0001*m.x178*m.x18 +
0.0001*m.x178*m.x19 + 0.0001*m.x178*m.x20 + 0.0001*m.x178*m.x21 + 0.0001*m.x178*m.x22 + 0.0001*
m.x178*m.x23 + 0.0001*m.x178*m.x24 + 0.0001*m.x178*m.x25 + 0.0001*m.x178*m.x26 + 0.0001*m.x178*
m.x27 + 0.0001*m.x178*m.x28 + 0.0001*m.x178*m.x29 + 0.0001*m.x178*m.x30 + 0.0001*m.x178*m.x31 +
0.0001*m.x178*m.x32 + 0.0001*m.x178*m.x33 + 0.0001*m.x178*m.x34 + 0.0001*m.x178*m.x35 + 0.0001*
m.x178*m.x36 + 0.0001*m.x178*m.x37 + 0.0001*m.x178*m.x38 + 0.0001*m.x178*m.x39 + 0.0001*m.x178*
m.x40 + 0.0001*m.x178*m.x41 + 0.0001*m.x178*m.x42 + 0.0001*m.x178*m.x43 + 0.0001*m.x178*m.x44 +
0.0001*m.x178*m.x45 + 0.0001*m.x178*m.x46 + 0.0001*m.x178*m.x47 + 0.0001*m.x178*m.x48 + 0.0001*
m.x178*m.x49 + 0.0001*m.x178*m.x50 + 0.0001*m.x178*m.x51 + 0.0001*m.x178*m.x52 + 0.0001*m.x178*
m.x53 + 0.0001*m.x178*m.x54 + 0.0001*m.x178*m.x55 + 0.0001*m.x178*m.x56 + 0.0001*m.x178*m.x57 +
0.0001*m.x178*m.x58 + 0.0001*m.x178*m.x59 + 0.0001*m.x178*m.x60 + 0.0001*m.x178*m.x61 + 0.0001*
m.x178*m.x62 + 0.0001*m.x178*m.x63 + 0.0001*m.x178*m.x64 + 0.0001*m.x178*m.x65 + 0.0001*m.x178*
m.x66 + 0.0001*m.x178*m.x67 + 0.0001*m.x178*m.x68 + 0.0001*m.x178*m.x69 + 0.0001*m.x178*m.x70 +
0.0001*m.x178*m.x71 + 0.0001*m.x178*m.x72 + 0.0001*m.x178*m.x73 + 0.0001*m.x178*m.x74 + 0.0001*
m.x178*m.x75 + 0.0001*m.x178*m.x76 + 0.0001*m.x178*m.x77 + 0.0001*m.x178*m.x78 + 0.0001*m.x178*
m.x79 + 0.0001*m.x178*m.x80 + 0.0001*m.x178*m.x81 + 0.0001*m.x178*m.x82 + 0.0001*m.x178*m.x83 +
0.0001*m.x178*m.x84 + 0.0001*m.x178*m.x85 + 0.0001*m.x178*m.x86 + 0.0001*m.x178*m.x87 + 0.0001*
m.x178*m.x88 + 0.0001*m.x178*m.x89 + 0.0001*m.x178*m.x90 + 0.0001*m.x178*m.x91 + 0.0001*m.x178*
m.x92 + 0.0001*m.x178*m.x93 + 0.0001*m.x178*m.x94 + 0.0001*m.x178*m.x95 + 0.0001*m.x178*m.x96 +
0.0001*m.x178*m.x97 + 0.0001*m.x178*m.x98 + 0.0001*m.x178*m.x99 + 0.0001*m.x178*m.x100 + 0.0001*
m.x178*m.x101 + 0.0001*m.x178*m.x102 + 0.0001*m.x178*m.x103 + 0.0001*m.x178*m.x104 + 0.0001*
m.x178*m.x105 + 0.0001*m.x178*m.x106 + 0.0001*m.x178*m.x107 + 0.0001*m.x178*m.x108 + 0.0001*
m.x178*m.x109 + 2.0828675588171*m.x178*m.x110 + 0.0001*m.x178*m.x111 + 0.0001*m.x178*m.x112 +
0.0001*m.x178*m.x113 + 0.0001*m.x178*m.x114 + 0.0001*m.x178*m.x115 + 0.0001*m.x178*m.x116 +
0.0001*m.x178*m.x117 + 0.0001*m.x178*m.x118 + 0.0001*m.x178*m.x119 + 0.0001*m.x178*m.x120 +
0.0001*m.x178*m.x121 + 0.0001*m.x178*m.x122 + 0.0001*m.x178*m.x123 + 0.0001*m.x178*m.x124 +
0.0001*m.x178*m.x125 + 0.0001*m.x178*m.x126 + 0.0001*m.x178*m.x127 + 0.0001*m.x178*m.x128 +
0.0001*m.x178*m.x129 + 0.0001*m.x178*m.x130 + 0.0001*m.x178*m.x131 + 0.0001*m.x178*m.x132 +
0.0001*m.x178*m.x133 + 0.0001*m.x178*m.x134 + 0.0001*m.x178*m.x135 + 0.0001*m.x178*m.x136 +
0.0001*m.x178*m.x137 + 0.0001*m.x178*m.x138 + 0.0001*m.x178*m.x139 + 0.0001*m.x178*m.x140 +
0.0001*m.x178*m.x141 + 0.0001*m.x178*m.x142 + 0.0001*m.x178*m.x143 + 0.0001*m.x178*m.x144 +
0.0001*m.x178*m.x145 + 0.0001*m.x178*m.x146 + 0.0001*m.x178*m.x147 + 0.0001*m.x178*m.x148 +
0.0001*m.x178*m.x149 + 0.0001*m.x178*m.x150 + 0.0001*m.x178*m.x151 + 0.0001*m.x178*m.x152 +
0.0001*m.x178*m.x153 + 0.0001*m.x178*m.x154 + 0.0001*m.x178*m.x155 + 0.0001*m.x178*m.x156 +
0.0001*m.x178*m.x157 + 0.0001*m.x178*m.x158 + 0.0001*m.x178*m.x159 + 0.0001*m.x178*m.x160 +
0.0001*m.x178*m.x161 + 0.0001*m.x178*m.x162 + 0.0001*m.x178*m.x163 + 0.0001*m.x178*m.x164 +
0.0001*m.x178*m.x165 + 0.0001*m.x178*m.x166 + 0.0001*m.x178*m.x167 + 0.0001*m.x178*m.x168 +
0.0001*m.x178*m.x169 + 0.0001*m.x178*m.x170 + 0.0001*m.x178*m.x171 + 0.0001*m.x178*m.x172 +
0.0001*m.x178*m.x173 + 0.0001*m.x178*m.x174 + 0.0001*m.x178*m.x175 + 0.0001*m.x178*m.x176 +
0.0001*m.x178*m.x177 + 2.45706619226616*m.x178**2 + 0.0001*m.x178*m.x179 + 0.0001*m.x178*m.x180
+ 0.0001*m.x178*m.x181 + 0.0001*m.x178*m.x182 + 0.0001*m.x178*m.x183 + 0.0001*m.x178*m.x184 +
0.0001*m.x178*m.x185 + 0.0001*m.x179*m.x1 + 0.0001*m.x179*m.x2 + 0.0001*m.x179*m.x3 + 0.0001*
m.x179*m.x4 + 0.0001*m.x179*m.x5 + 0.0001*m.x179*m.x6 + 0.0001*m.x179*m.x7 + 0.0001*m.x179*m.x8
+ 0.0001*m.x179*m.x9 + 0.0001*m.x179*m.x10 + 0.0001*m.x179*m.x11 + 0.0001*m.x179*m.x12 + 0.0001*
m.x179*m.x13 + 0.0001*m.x179*m.x14 + 0.0001*m.x179*m.x15 + 0.0001*m.x179*m.x16 + 0.0001*m.x179*
m.x17 + 0.0001*m.x179*m.x18 + 0.0001*m.x179*m.x19 + 0.0001*m.x179*m.x20 + 0.0001*m.x179*m.x21 +
0.0001*m.x179*m.x22 + 0.0001*m.x179*m.x23 + 0.0001*m.x179*m.x24 + 0.0001*m.x179*m.x25 + 0.0001*
m.x179*m.x26 + 0.0001*m.x179*m.x27 + 0.0001*m.x179*m.x28 + 0.0001*m.x179*m.x29 + 0.0001*m.x179*
m.x30 + 0.0001*m.x179*m.x31 + 0.0001*m.x179*m.x32 + 0.0001*m.x179*m.x33 + 0.0001*m.x179*m.x34 +
0.0001*m.x179*m.x35 + 0.0001*m.x179*m.x36 + 0.0001*m.x179*m.x37 + 0.0001*m.x179*m.x38 + 0.0001*
m.x179*m.x39 + 0.0001*m.x179*m.x40 + 0.0001*m.x179*m.x41 + 0.0001*m.x179*m.x42 + 0.0001*m.x179*
m.x43 + 0.0001*m.x179*m.x44 + 0.0001*m.x179*m.x45 + 0.0001*m.x179*m.x46 + 0.0001*m.x179*m.x47 +
0.0001*m.x179*m.x48 + 0.0001*m.x179*m.x49 + 0.0001*m.x179*m.x50 + 0.0001*m.x179*m.x51 + 0.0001*
m.x179*m.x52 + 0.0001*m.x179*m.x53 + 0.0001*m.x179*m.x54 + 0.0001*m.x179*m.x55 + 0.0001*m.x179*
m.x56 + 0.0001*m.x179*m.x57 + 0.0001*m.x179*m.x58 + 0.0001*m.x179*m.x59 + 0.0001*m.x179*m.x60 +
0.0001*m.x179*m.x61 + 0.0001*m.x179*m.x62 + 0.0001*m.x179*m.x63 + 0.0001*m.x179*m.x64 + 0.0001*
m.x179*m.x65 + 0.0001*m.x179*m.x66 + 0.0001*m.x179*m.x67 + 0.0001*m.x179*m.x68 + 0.0001*m.x179*
m.x69 + 0.0001*m.x179*m.x70 + 0.0001*m.x179*m.x71 + 0.0001*m.x179*m.x72 + 0.0001*m.x179*m.x73 +
0.0001*m.x179*m.x74 + 0.0001*m.x179*m.x75 + 0.0001*m.x179*m.x76 + 0.0001*m.x179*m.x77 + 0.0001*
m.x179*m.x78 + 0.0001*m.x179*m.x79 + 0.0001*m.x179*m.x80 + 0.0001*m.x179*m.x81 + 0.0001*m.x179*
m.x82 + 0.0001*m.x179*m.x83 + 0.0001*m.x179*m.x84 + 0.0001*m.x179*m.x85 + 0.0001*m.x179*m.x86 +
0.0001*m.x179*m.x87 + 0.0001*m.x179*m.x88 + 0.0001*m.x179*m.x89 + 0.0001*m.x179*m.x90 + 0.0001*
m.x179*m.x91 + 0.0001*m.x179*m.x92 + 0.0001*m.x179*m.x93 + 0.0001*m.x179*m.x94 + 0.0001*m.x179*
m.x95 + 0.0001*m.x179*m.x96 + 0.0001*m.x179*m.x97 + 0.0001*m.x179*m.x98 + 0.0001*m.x179*m.x99 +
0.0001*m.x179*m.x100 + 0.0001*m.x179*m.x101 + 0.0001*m.x179*m.x102 + 0.0001*m.x179*m.x103 +
0.0001*m.x179*m.x104 + 0.0001*m.x179*m.x105 + 0.0001*m.x179*m.x106 + 0.0001*m.x179*m.x107 +
0.0001*m.x179*m.x108 + 0.0001*m.x179*m.x109 + 0.0001*m.x179*m.x110 + 2.12900182336716*m.x179*
m.x111 + 0.0001*m.x179*m.x112 + 0.0001*m.x179*m.x113 + 0.0001*m.x179*m.x114 + 0.0001*m.x179*
m.x115 + 0.0001*m.x179*m.x116 + 0.0001*m.x179*m.x117 + 0.0001*m.x179*m.x118 + 0.0001*m.x179*
m.x119 + 0.0001*m.x179*m.x120 + 0.0001*m.x179*m.x121 + 0.0001*m.x179*m.x122 + 0.0001*m.x179*
m.x123 + 0.0001*m.x179*m.x124 + 0.0001*m.x179*m.x125 + 0.0001*m.x179*m.x126 + 0.0001*m.x179*
m.x127 + 0.0001*m.x179*m.x128 + 0.0001*m.x179*m.x129 + 0.0001*m.x179*m.x130 + 0.0001*m.x179*
m.x131 + 0.0001*m.x179*m.x132 + 0.0001*m.x179*m.x133 + 0.0001*m.x179*m.x134 + 0.0001*m.x179*
m.x135 + 0.0001*m.x179*m.x136 + 0.0001*m.x179*m.x137 + 0.0001*m.x179*m.x138 + 0.0001*m.x179*
m.x139 + 0.0001*m.x179*m.x140 + 0.0001*m.x179*m.x141 + 0.0001*m.x179*m.x142 + 0.0001*m.x179*
m.x143 + 0.0001*m.x179*m.x144 + 0.0001*m.x179*m.x145 + 0.0001*m.x179*m.x146 + 0.0001*m.x179*
m.x147 + 0.0001*m.x179*m.x148 + 0.0001*m.x179*m.x149 + 0.0001*m.x179*m.x150 + 0.0001*m.x179*
m.x151 + 0.0001*m.x179*m.x152 + 0.0001*m.x179*m.x153 + 0.0001*m.x179*m.x154 + 0.0001*m.x179*
m.x155 + 0.0001*m.x179*m.x156 + 0.0001*m.x179*m.x157 + 0.0001*m.x179*m.x158 + 0.0001*m.x179*
m.x159 + 0.0001*m.x179*m.x160 + 0.0001*m.x179*m.x161 + 0.0001*m.x179*m.x162 + 0.0001*m.x179*
m.x163 + 0.0001*m.x179*m.x164 + 0.0001*m.x179*m.x165 + 0.0001*m.x179*m.x166 + 0.0001*m.x179*
m.x167 + 0.0001*m.x179*m.x168 + 0.0001*m.x179*m.x169 + 0.0001*m.x179*m.x170 + 0.0001*m.x179*
m.x171 + 0.0001*m.x179*m.x172 + 0.0001*m.x179*m.x173 + 0.0001*m.x179*m.x174 + 0.0001*m.x179*
m.x175 + 0.0001*m.x179*m.x176 + 0.0001*m.x179*m.x177 + 0.0001*m.x179*m.x178 + 2.44702945539991*
m.x179**2 + 0.0001*m.x179*m.x180 + 0.0001*m.x179*m.x181 + 0.0001*m.x179*m.x182 + 0.0001*m.x179*
m.x183 + 0.0001*m.x179*m.x184 + 0.0001*m.x179*m.x185 + 0.0001*m.x180*m.x1 + 0.0001*m.x180*m.x2 +
0.0001*m.x180*m.x3 + 0.0001*m.x180*m.x4 + 0.0001*m.x180*m.x5 + 0.0001*m.x180*m.x6 + 0.0001*m.x180
*m.x7 + 0.0001*m.x180*m.x8 + 0.0001*m.x180*m.x9 + 0.0001*m.x180*m.x10 + 0.0001*m.x180*m.x11 +
0.0001*m.x180*m.x12 + 0.0001*m.x180*m.x13 + 0.0001*m.x180*m.x14 + 0.0001*m.x180*m.x15 + 0.0001*
m.x180*m.x16 + 0.0001*m.x180*m.x17 + 0.0001*m.x180*m.x18 + 0.0001*m.x180*m.x19 + 0.0001*m.x180*
m.x20 + 0.0001*m.x180*m.x21 + 0.0001*m.x180*m.x22 + 0.0001*m.x180*m.x23 + 0.0001*m.x180*m.x24 +
0.0001*m.x180*m.x25 + 0.0001*m.x180*m.x26 + 0.0001*m.x180*m.x27 + 0.0001*m.x180*m.x28 + 0.0001*
m.x180*m.x29 + 0.0001*m.x180*m.x30 + 0.0001*m.x180*m.x31 + 0.0001*m.x180*m.x32 + 0.0001*m.x180*
m.x33 + 0.0001*m.x180*m.x34 + 0.0001*m.x180*m.x35 + 0.0001*m.x180*m.x36 + 0.0001*m.x180*m.x37 +
0.0001*m.x180*m.x38 + 0.0001*m.x180*m.x39 + 0.0001*m.x180*m.x40 + 0.0001*m.x180*m.x41 + 0.0001*
m.x180*m.x42 + 0.0001*m.x180*m.x43 + 0.0001*m.x180*m.x44 + 0.0001*m.x180*m.x45 + 0.0001*m.x180*
m.x46 + 0.0001*m.x180*m.x47 + 0.0001*m.x180*m.x48 + 0.0001*m.x180*m.x49 + 0.0001*m.x180*m.x50 +
0.0001*m.x180*m.x51 + 0.0001*m.x180*m.x52 + 0.0001*m.x180*m.x53 + 0.0001*m.x180*m.x54 + 0.0001*
m.x180*m.x55 + 0.0001*m.x180*m.x56 + 0.0001*m.x180*m.x57 + 0.0001*m.x180*m.x58 + 0.0001*m.x180*
m.x59 + 0.0001*m.x180*m.x60 + 0.0001*m.x180*m.x61 + 0.0001*m.x180*m.x62 + 0.0001*m.x180*m.x63 +
0.0001*m.x180*m.x64 + 0.0001*m.x180*m.x65 + 0.0001*m.x180*m.x66 + 0.0001*m.x180*m.x67 + 0.0001*
m.x180*m.x68 + 0.0001*m.x180*m.x69 + 0.0001*m.x180*m.x70 + 0.0001*m.x180*m.x71 + 0.0001*m.x180*
m.x72 + 0.0001*m.x180*m.x73 + 0.0001*m.x180*m.x74 + 0.0001*m.x180*m.x75 + 0.0001*m.x180*m.x76 +
0.0001*m.x180*m.x77 + 0.0001*m.x180*m.x78 + 0.0001*m.x180*m.x79 + 0.0001*m.x180*m.x80 + 0.0001*
m.x180*m.x81 + 0.0001*m.x180*m.x82 + 0.0001*m.x180*m.x83 + 0.0001*m.x180*m.x84 + 0.0001*m.x180*
m.x85 + 0.0001*m.x180*m.x86 + 0.0001*m.x180*m.x87 + 0.0001*m.x180*m.x88 + 0.0001*m.x180*m.x89 +
0.0001*m.x180*m.x90 + 0.0001*m.x180*m.x91 + 0.0001*m.x180*m.x92 + 0.0001*m.x180*m.x93 + 0.0001*
m.x180*m.x94 + 0.0001*m.x180*m.x95 + 0.0001*m.x180*m.x96 + 0.0001*m.x180*m.x97 + 0.0001*m.x180*
m.x98 + 0.0001*m.x180*m.x99 + 0.0001*m.x180*m.x100 + 0.0001*m.x180*m.x101 + 0.0001*m.x180*m.x102
+ 0.0001*m.x180*m.x103 + 0.0001*m.x180*m.x104 + 0.0001*m.x180*m.x105 + 0.0001*m.x180*m.x106 +
0.0001*m.x180*m.x107 + 0.0001*m.x180*m.x108 + 0.0001*m.x180*m.x109 + 0.0001*m.x180*m.x110 +
0.0001*m.x180*m.x111 + 2.11770940690243*m.x180*m.x112 + 0.0001*m.x180*m.x113 + 0.0001*m.x180*
m.x114 + 0.0001*m.x180*m.x115 + 0.0001*m.x180*m.x116 + 0.0001*m.x180*m.x117 + 0.0001*m.x180*
m.x118 + 0.0001*m.x180*m.x119 + 0.0001*m.x180*m.x120 + 0.0001*m.x180*m.x121 + 0.0001*m.x180*
m.x122 + 0.0001*m.x180*m.x123 + 0.0001*m.x180*m.x124 + 0.0001*m.x180*m.x125 + 0.0001*m.x180*
m.x126 + 0.0001*m.x180*m.x127 + 0.0001*m.x180*m.x128 + 0.0001*m.x180*m.x129 + 0.0001*m.x180*
m.x130 + 0.0001*m.x180*m.x131 + 0.0001*m.x180*m.x132 + 0.0001*m.x180*m.x133 + 0.0001*m.x180*
m.x134 + 0.0001*m.x180*m.x135 + 0.0001*m.x180*m.x136 + 0.0001*m.x180*m.x137 + 0.0001*m.x180*
m.x138 + 0.0001*m.x180*m.x139 + 0.0001*m.x180*m.x140 + 0.0001*m.x180*m.x141 + 0.0001*m.x180*
m.x142 + 0.0001*m.x180*m.x143 + 0.0001*m.x180*m.x144 + 0.0001*m.x180*m.x145 + 0.0001*m.x180*
m.x146 + 0.0001*m.x180*m.x147 + 0.0001*m.x180*m.x148 + 0.0001*m.x180*m.x149 + 0.0001*m.x180*
m.x150 + 0.0001*m.x180*m.x151 + 0.0001*m.x180*m.x152 + 0.0001*m.x180*m.x153 + 0.0001*m.x180*
m.x154 + 0.0001*m.x180*m.x155 + 0.0001*m.x180*m.x156 + 0.0001*m.x180*m.x157 + 0.0001*m.x180*
m.x158 + 0.0001*m.x180*m.x159 + 0.0001*m.x180*m.x160 + 0.0001*m.x180*m.x161 + 0.0001*m.x180*
m.x162 + 0.0001*m.x180*m.x163 + 0.0001*m.x180*m.x164 + 0.0001*m.x180*m.x165 + 0.0001*m.x180*
m.x166 + 0.0001*m.x180*m.x167 + 0.0001*m.x180*m.x168 + 0.0001*m.x180*m.x169 + 0.0001*m.x180*
m.x170 + 0.0001*m.x180*m.x171 + 0.0001*m.x180*m.x172 + 0.0001*m.x180*m.x173 + 0.0001*m.x180*
m.x174 + 0.0001*m.x180*m.x175 + 0.0001*m.x180*m.x176 + 0.0001*m.x180*m.x177 + 0.0001*m.x180*
m.x178 + 0.0001*m.x180*m.x179 + 2.38739919976447*m.x180**2 + 0.0001*m.x180*m.x181 + 0.0001*m.x180
*m.x182 + 0.0001*m.x180*m.x183 + 0.0001*m.x180*m.x184 + 0.0001*m.x180*m.x185 + 0.0001*m.x181*m.x1
+ 0.0001*m.x181*m.x2 + 0.0001*m.x181*m.x3 + 0.0001*m.x181*m.x4 + 0.0001*m.x181*m.x5 + 0.0001*
m.x181*m.x6 + 0.0001*m.x181*m.x7 + 0.0001*m.x181*m.x8 + 0.0001*m.x181*m.x9 + 0.0001*m.x181*m.x10
+ 0.0001*m.x181*m.x11 + 0.0001*m.x181*m.x12 + 0.0001*m.x181*m.x13 + 0.0001*m.x181*m.x14 + 0.0001
*m.x181*m.x15 + 0.0001*m.x181*m.x16 + 0.0001*m.x181*m.x17 + 0.0001*m.x181*m.x18 + 0.0001*m.x181*
m.x19 + 0.0001*m.x181*m.x20 + 0.0001*m.x181*m.x21 + 0.0001*m.x181*m.x22 + 0.0001*m.x181*m.x23 +
0.0001*m.x181*m.x24 + 0.0001*m.x181*m.x25 + 0.0001*m.x181*m.x26 + 0.0001*m.x181*m.x27 + 0.0001*
m.x181*m.x28 + 0.0001*m.x181*m.x29 + 0.0001*m.x181*m.x30 + 0.0001*m.x181*m.x31 + 0.0001*m.x181*
m.x32 + 0.0001*m.x181*m.x33 + 0.0001*m.x181*m.x34 + 0.0001*m.x181*m.x35 + 0.0001*m.x181*m.x36 +
0.0001*m.x181*m.x37 + 0.0001*m.x181*m.x38 + 0.0001*m.x181*m.x39 + 0.0001*m.x181*m.x40 + 0.0001*
m.x181*m.x41 + 0.0001*m.x181*m.x42 + 0.0001*m.x181*m.x43 + 0.0001*m.x181*m.x44 + 0.0001*m.x181*
m.x45 + 0.0001*m.x181*m.x46 + 0.0001*m.x181*m.x47 + 0.0001*m.x181*m.x48 + 0.0001*m.x181*m.x49 +
0.0001*m.x181*m.x50 + 0.0001*m.x181*m.x51 + 0.0001*m.x181*m.x52 + 0.0001*m.x181*m.x53 + 0.0001*
m.x181*m.x54 + 0.0001*m.x181*m.x55 + 0.0001*m.x181*m.x56 + 0.0001*m.x181*m.x57 + 0.0001*m.x181*
m.x58 + 0.0001*m.x181*m.x59 + 0.0001*m.x181*m.x60 + 0.0001*m.x181*m.x61 + 0.0001*m.x181*m.x62 +
0.0001*m.x181*m.x63 + 0.0001*m.x181*m.x64 + 0.0001*m.x181*m.x65 + 0.0001*m.x181*m.x66 + 0.0001*
m.x181*m.x67 + 0.0001*m.x181*m.x68 + 0.0001*m.x181*m.x69 + 0.0001*m.x181*m.x70 + 0.0001*m.x181*
m.x71 + 0.0001*m.x181*m.x72 + 0.0001*m.x181*m.x73 + 0.0001*m.x181*m.x74 + 0.0001*m.x181*m.x75 +
0.0001*m.x181*m.x76 + 0.0001*m.x181*m.x77 + 0.0001*m.x181*m.x78 + 0.0001*m.x181*m.x79 + 0.0001*
m.x181*m.x80 + 0.0001*m.x181*m.x81 + 0.0001*m.x181*m.x82 + 0.0001*m.x181*m.x83 + 0.0001*m.x181*
m.x84 + 0.0001*m.x181*m.x85 + 0.0001*m.x181*m.x86 + 0.0001*m.x181*m.x87 + 0.0001*m.x181*m.x88 +
0.0001*m.x181*m.x89 + 0.0001*m.x181*m.x90 + 0.0001*m.x181*m.x91 + 0.0001*m.x181*m.x92 + 0.0001*
m.x181*m.x93 + 0.0001*m.x181*m.x94 + 0.0001*m.x181*m.x95 + 0.0001*m.x181*m.x96 + 0.0001*m.x181*
m.x97 + 0.0001*m.x181*m.x98 + 0.0001*m.x181*m.x99 + 0.0001*m.x181*m.x100 + 0.0001*m.x181*m.x101
+ 0.0001*m.x181*m.x102 + 0.0001*m.x181*m.x103 + 0.0001*m.x181*m.x104 + 0.0001*m.x181*m.x105 +
0.0001*m.x181*m.x106 + 0.0001*m.x181*m.x107 + 0.0001*m.x181*m.x108 + 0.0001*m.x181*m.x109 +
0.0001*m.x181*m.x110 + 0.0001*m.x181*m.x111 + 2.33597160736182*m.x181*m.x112 + 0.0001*m.x181*
m.x113 + 0.0001*m.x181*m.x114 + 0.0001*m.x181*m.x115 + 0.0001*m.x181*m.x116 + 0.0001*m.x181*
m.x117 + 0.0001*m.x181*m.x118 + 0.0001*m.x181*m.x119 + 0.0001*m.x181*m.x120 + 0.0001*m.x181*
m.x121 + 0.0001*m.x181*m.x122 + 0.0001*m.x181*m.x123 + 0.0001*m.x181*m.x124 + 0.0001*m.x181*
m.x125 + 0.0001*m.x181*m.x126 + 0.0001*m.x181*m.x127 + 0.0001*m.x181*m.x128 + 0.0001*m.x181*
m.x129 + 0.0001*m.x181*m.x130 + 0.0001*m.x181*m.x131 + 0.0001*m.x181*m.x132 + 0.0001*m.x181*
m.x133 + 0.0001*m.x181*m.x134 + 0.0001*m.x181*m.x135 + 0.0001*m.x181*m.x136 + 0.0001*m.x181*
m.x137 + 0.0001*m.x181*m.x138 + 0.0001*m.x181*m.x139 + 0.0001*m.x181*m.x140 + 0.0001*m.x181*
m.x141 + 0.0001*m.x181*m.x142 + 0.0001*m.x181*m.x143 + 0.0001*m.x181*m.x144 + 0.0001*m.x181*
m.x145 + 0.0001*m.x181*m.x146 + 0.0001*m.x181*m.x147 + 0.0001*m.x181*m.x148 + 0.0001*m.x181*
m.x149 + 0.0001*m.x181*m.x150 + 0.0001*m.x181*m.x151 + 0.0001*m.x181*m.x152 + 0.0001*m.x181*
m.x153 + 0.0001*m.x181*m.x154 + 0.0001*m.x181*m.x155 + 0.0001*m.x181*m.x156 + 0.0001*m.x181*
m.x157 + 0.0001*m.x181*m.x158 + 0.0001*m.x181*m.x159 + 0.0001*m.x181*m.x160 + 0.0001*m.x181*
m.x161 + 0.0001*m.x181*m.x162 + 0.0001*m.x181*m.x163 + 0.0001*m.x181*m.x164 + 0.0001*m.x181*
m.x165 + 0.0001*m.x181*m.x166 + 0.0001*m.x181*m.x167 + 0.0001*m.x181*m.x168 + 0.0001*m.x181*
m.x169 + 0.0001*m.x181*m.x170 + 0.0001*m.x181*m.x171 + 0.0001*m.x181*m.x172 + 0.0001*m.x181*
m.x173 + 0.0001*m.x181*m.x174 + 0.0001*m.x181*m.x175 + 0.0001*m.x181*m.x176 + 0.0001*m.x181*
m.x177 + 0.0001*m.x181*m.x178 + 0.0001*m.x181*m.x179 + 0.0001*m.x181*m.x180 + 2.63345835250395*
m.x181**2 + 0.0001*m.x181*m.x182 + 0.0001*m.x181*m.x183 + 0.0001*m.x181*m.x184 + 0.0001*m.x181*
m.x185 + 0.0001*m.x182*m.x1 + 0.0001*m.x182*m.x2 + 0.0001*m.x182*m.x3 + 0.0001*m.x182*m.x4 +
0.0001*m.x182*m.x5 + 0.0001*m.x182*m.x6 + 0.0001*m.x182*m.x7 + 0.0001*m.x182*m.x8 + 0.0001*m.x182
*m.x9 + 0.0001*m.x182*m.x10 + 0.0001*m.x182*m.x11 + 0.0001*m.x182*m.x12 + 0.0001*m.x182*m.x13 +
0.0001*m.x182*m.x14 + 0.0001*m.x182*m.x15 + 0.0001*m.x182*m.x16 + 0.0001*m.x182*m.x17 + 0.0001*
m.x182*m.x18 + 0.0001*m.x182*m.x19 + 0.0001*m.x182*m.x20 + 0.0001*m.x182*m.x21 + 0.0001*m.x182*
m.x22 + 0.0001*m.x182*m.x23 + 0.0001*m.x182*m.x24 + 0.0001*m.x182*m.x25 + 0.0001*m.x182*m.x26 +
0.0001*m.x182*m.x27 + 0.0001*m.x182*m.x28 + 0.0001*m.x182*m.x29 + 0.0001*m.x182*m.x30 + 0.0001*
m.x182*m.x31 + 0.0001*m.x182*m.x32 + 0.0001*m.x182*m.x33 + 0.0001*m.x182*m.x34 + 0.0001*m.x182*
m.x35 + 0.0001*m.x182*m.x36 + 0.0001*m.x182*m.x37 + 0.0001*m.x182*m.x38 + 0.0001*m.x182*m.x39 +
0.0001*m.x182*m.x40 + 0.0001*m.x182*m.x41 + 0.0001*m.x182*m.x42 + 0.0001*m.x182*m.x43 + 0.0001*
m.x182*m.x44 + 0.0001*m.x182*m.x45 + 0.0001*m.x182*m.x46 + 0.0001*m.x182*m.x47 + 0.0001*m.x182*
m.x48 + 0.0001*m.x182*m.x49 + 0.0001*m.x182*m.x50 + 0.0001*m.x182*m.x51 + 0.0001*m.x182*m.x52 +
0.0001*m.x182*m.x53 + 0.0001*m.x182*m.x54 + 0.0001*m.x182*m.x55 + 0.0001*m.x182*m.x56 + 0.0001*
m.x182*m.x57 + 0.0001*m.x182*m.x58 + 0.0001*m.x182*m.x59 + 0.0001*m.x182*m.x60 + 0.0001*m.x182*
m.x61 + 0.0001*m.x182*m.x62 + 0.0001*m.x182*m.x63 + 0.0001*m.x182*m.x64 + 0.0001*m.x182*m.x65 +
0.0001*m.x182*m.x66 + 0.0001*m.x182*m.x67 + 0.0001*m.x182*m.x68 + 0.0001*m.x182*m.x69 + 0.0001*
m.x182*m.x70 + 0.0001*m.x182*m.x71 + 0.0001*m.x182*m.x72 + 0.0001*m.x182*m.x73 + 0.0001*m.x182*
m.x74 + 0.0001*m.x182*m.x75 + 0.0001*m.x182*m.x76 + 0.0001*m.x182*m.x77 + 0.0001*m.x182*m.x78 +
0.0001*m.x182*m.x79 + 0.0001*m.x182*m.x80 + 0.0001*m.x182*m.x81 + 0.0001*m.x182*m.x82 + 0.0001*
m.x182*m.x83 + 0.0001*m.x182*m.x84 + 0.0001*m.x182*m.x85 + 0.0001*m.x182*m.x86 + 0.0001*m.x182*
m.x87 + 0.0001*m.x182*m.x88 + 0.0001*m.x182*m.x89 + 0.0001*m.x182*m.x90 + 0.0001*m.x182*m.x91 +
0.0001*m.x182*m.x92 + 0.0001*m.x182*m.x93 + 0.0001*m.x182*m.x94 + 0.0001*m.x182*m.x95 + 0.0001*
m.x182*m.x96 + 0.0001*m.x182*m.x97 + 0.0001*m.x182*m.x98 + 0.0001*m.x182*m.x99 + 0.0001*m.x182*
m.x100 + 0.0001*m.x182*m.x101 + 0.0001*m.x182*m.x102 + 0.0001*m.x182*m.x103 + 0.0001*m.x182*
m.x104 + 0.0001*m.x182*m.x105 + 0.0001*m.x182*m.x106 + 0.0001*m.x182*m.x107 + 0.0001*m.x182*
m.x108 + 0.0001*m.x182*m.x109 + 0.0001*m.x182*m.x110 + 0.0001*m.x182*m.x111 + 0.0001*m.x182*
m.x112 + 2.07913408000641*m.x182*m.x113 + 0.0001*m.x182*m.x114 + 0.0001*m.x182*m.x115 + 0.0001*
m.x182*m.x116 + 0.0001*m.x182*m.x117 + 0.0001*m.x182*m.x118 + 0.0001*m.x182*m.x119 + 0.0001*
m.x182*m.x120 + 0.0001*m.x182*m.x121 + 0.0001*m.x182*m.x122 + 0.0001*m.x182*m.x123 + 0.0001*
m.x182*m.x124 + 0.0001*m.x182*m.x125 + 0.0001*m.x182*m.x126 + 0.0001*m.x182*m.x127 + 0.0001*
m.x182*m.x128 + 0.0001*m.x182*m.x129 + 0.0001*m.x182*m.x130 + 0.0001*m.x182*m.x131 + 0.0001*
m.x182*m.x132 + 0.0001*m.x182*m.x133 + 0.0001*m.x182*m.x134 + 0.0001*m.x182*m.x135 + 0.0001*
m.x182*m.x136 + 0.0001*m.x182*m.x137 + 0.0001*m.x182*m.x138 + 0.0001*m.x182*m.x139 + 0.0001*
m.x182*m.x140 + 0.0001*m.x182*m.x141 + 0.0001*m.x182*m.x142 + 0.0001*m.x182*m.x143 + 0.0001*
m.x182*m.x144 + 0.0001*m.x182*m.x145 + 0.0001*m.x182*m.x146 + 0.0001*m.x182*m.x147 + 0.0001*
m.x182*m.x148 + 0.0001*m.x182*m.x149 + 0.0001*m.x182*m.x150 + 0.0001*m.x182*m.x151 + 0.0001*
m.x182*m.x152 + 0.0001*m.x182*m.x153 + 0.0001*m.x182*m.x154 + 0.0001*m.x182*m.x155 + 0.0001*
m.x182*m.x156 + 0.0001*m.x182*m.x157 + 0.0001*m.x182*m.x158 + 0.0001*m.x182*m.x159 + 0.0001*
m.x182*m.x160 + 0.0001*m.x182*m.x161 + 0.0001*m.x182*m.x162 + 0.0001*m.x182*m.x163 + 0.0001*
m.x182*m.x164 + 0.0001*m.x182*m.x165 + 0.0001*m.x182*m.x166 + 0.0001*m.x182*m.x167 + 0.0001*
m.x182*m.x168 + 0.0001*m.x182*m.x169 + 0.0001*m.x182*m.x170 + 0.0001*m.x182*m.x171 + 0.0001*
m.x182*m.x172 + 0.0001*m.x182*m.x173 + 0.0001*m.x182*m.x174 + 0.0001*m.x182*m.x175 + 0.0001*
m.x182*m.x176 + 0.0001*m.x182*m.x177 + 0.0001*m.x182*m.x178 + 0.0001*m.x182*m.x179 + 0.0001*
m.x182*m.x180 + 0.0001*m.x182*m.x181 + 2.34384730262563*m.x182**2 + 0.0001*m.x182*m.x183 + 0.0001
*m.x182*m.x184 + 0.0001*m.x182*m.x185 + 0.0001*m.x183*m.x1 + 0.0001*m.x183*m.x2 + 0.0001*m.x183*
m.x3 + 0.0001*m.x183*m.x4 + 0.0001*m.x183*m.x5 + 0.0001*m.x183*m.x6 + 0.0001*m.x183*m.x7 + 0.0001
*m.x183*m.x8 + 0.0001*m.x183*m.x9 + 0.0001*m.x183*m.x10 + 0.0001*m.x183*m.x11 + 0.0001*m.x183*
m.x12 + 0.0001*m.x183*m.x13 + 0.0001*m.x183*m.x14 + 0.0001*m.x183*m.x15 + 0.0001*m.x183*m.x16 +
0.0001*m.x183*m.x17 + 0.0001*m.x183*m.x18 + 0.0001*m.x183*m.x19 + 0.0001*m.x183*m.x20 + 0.0001*
m.x183*m.x21 + 0.0001*m.x183*m.x22 + 0.0001*m.x183*m.x23 + 0.0001*m.x183*m.x24 + 0.0001*m.x183*
m.x25 + 0.0001*m.x183*m.x26 + 0.0001*m.x183*m.x27 + 0.0001*m.x183*m.x28 + 0.0001*m.x183*m.x29 +
0.0001*m.x183*m.x30 + 0.0001*m.x183*m.x31 + 0.0001*m.x183*m.x32 + 0.0001*m.x183*m.x33 + 0.0001*
m.x183*m.x34 + 0.0001*m.x183*m.x35 + 0.0001*m.x183*m.x36 + 0.0001*m.x183*m.x37 + 0.0001*m.x183*
m.x38 + 0.0001*m.x183*m.x39 + 0.0001*m.x183*m.x40 + 0.0001*m.x183*m.x41 + 0.0001*m.x183*m.x42 +
0.0001*m.x183*m.x43 + 0.0001*m.x183*m.x44 + 0.0001*m.x183*m.x45 + 0.0001*m.x183*m.x46 + 0.0001*
m.x183*m.x47 + 0.0001*m.x183*m.x48 + 0.0001*m.x183*m.x49 + 0.0001*m.x183*m.x50 + 0.0001*m.x183*
m.x51 + 0.0001*m.x183*m.x52 + 0.0001*m.x183*m.x53 + 0.0001*m.x183*m.x54 + 0.0001*m.x183*m.x55 +
0.0001*m.x183*m.x56 + 0.0001*m.x183*m.x57 + 0.0001*m.x183*m.x58 + 0.0001*m.x183*m.x59 + 0.0001*
m.x183*m.x60 + 0.0001*m.x183*m.x61 + 0.0001*m.x183*m.x62 + 0.0001*m.x183*m.x63 + 0.0001*m.x183*
m.x64 + 0.0001*m.x183*m.x65 + 0.0001*m.x183*m.x66 + 0.0001*m.x183*m.x67 + 0.0001*m.x183*m.x68 +
0.0001*m.x183*m.x69 + 0.0001*m.x183*m.x70 + 0.0001*m.x183*m.x71 + 0.0001*m.x183*m.x72 + 0.0001*
m.x183*m.x73 + 0.0001*m.x183*m.x74 + 0.0001*m.x183*m.x75 + 0.0001*m.x183*m.x76 + 0.0001*m.x183*
m.x77 + 0.0001*m.x183*m.x78 + 0.0001*m.x183*m.x79 + 0.0001*m.x183*m.x80 + 0.0001*m.x183*m.x81 +
0.0001*m.x183*m.x82 + 0.0001*m.x183*m.x83 + 0.0001*m.x183*m.x84 + 0.0001*m.x183*m.x85 + 0.0001*
m.x183*m.x86 + 0.0001*m.x183*m.x87 + 0.0001*m.x183*m.x88 + 0.0001*m.x183*m.x89 + 0.0001*m.x183*
m.x90 + 0.0001*m.x183*m.x91 + 0.0001*m.x183*m.x92 + 0.0001*m.x183*m.x93 + 0.0001*m.x183*m.x94 +
0.0001*m.x183*m.x95 + 0.0001*m.x183*m.x96 + 0.0001*m.x183*m.x97 + 0.0001*m.x183*m.x98 + 0.0001*
m.x183*m.x99 + 0.0001*m.x183*m.x100 + 0.0001*m.x183*m.x101 + 0.0001*m.x183*m.x102 + 0.0001*m.x183
*m.x103 + 0.0001*m.x183*m.x104 + 0.0001*m.x183*m.x105 + 0.0001*m.x183*m.x106 + 0.0001*m.x183*
m.x107 + 0.0001*m.x183*m.x108 + 0.0001*m.x183*m.x109 + 0.0001*m.x183*m.x110 + 0.0001*m.x183*
m.x111 + 0.0001*m.x183*m.x112 + 0.0001*m.x183*m.x113 + 1.81266542307986*m.x183*m.x114 + 0.0001*
m.x183*m.x115 + 0.0001*m.x183*m.x116 + 0.0001*m.x183*m.x117 + 0.0001*m.x183*m.x118 + 0.0001*
m.x183*m.x119 + 0.0001*m.x183*m.x120 + 0.0001*m.x183*m.x121 + 0.0001*m.x183*m.x122 + 0.0001*
m.x183*m.x123 + 0.0001*m.x183*m.x124 + 0.0001*m.x183*m.x125 + 0.0001*m.x183*m.x126 + 0.0001*
m.x183*m.x127 + 0.0001*m.x183*m.x128 + 0.0001*m.x183*m.x129 + 0.0001*m.x183*m.x130 + 0.0001*
m.x183*m.x131 + 0.0001*m.x183*m.x132 + 0.0001*m.x183*m.x133 + 0.0001*m.x183*m.x134 + 0.0001*
m.x183*m.x135 + 0.0001*m.x183*m.x136 + 0.0001*m.x183*m.x137 + 0.0001*m.x183*m.x138 + 0.0001*
m.x183*m.x139 + 0.0001*m.x183*m.x140 + 0.0001*m.x183*m.x141 + 0.0001*m.x183*m.x142 + 0.0001*
m.x183*m.x143 + 0.0001*m.x183*m.x144 + 0.0001*m.x183*m.x145 + 0.0001*m.x183*m.x146 + 0.0001*
m.x183*m.x147 + 0.0001*m.x183*m.x148 + 0.0001*m.x183*m.x149 + 0.0001*m.x183*m.x150 + 0.0001*
m.x183*m.x151 + 0.0001*m.x183*m.x152 + 0.0001*m.x183*m.x153 + 0.0001*m.x183*m.x154 + 0.0001*
m.x183*m.x155 + 0.0001*m.x183*m.x156 + 0.0001*m.x183*m.x157 + 0.0001*m.x183*m.x158 + 0.0001*
m.x183*m.x159 + 0.0001*m.x183*m.x160 + 0.0001*m.x183*m.x161 + 0.0001*m.x183*m.x162 + 0.0001*
m.x183*m.x163 + 0.0001*m.x183*m.x164 + 0.0001*m.x183*m.x165 + 0.0001*m.x183*m.x166 + 0.0001*
m.x183*m.x167 + 0.0001*m.x183*m.x168 + 0.0001*m.x183*m.x169 + 0.0001*m.x183*m.x170 + 0.0001*
m.x183*m.x171 + 0.0001*m.x183*m.x172 + 0.0001*m.x183*m.x173 + 0.0001*m.x183*m.x174 + 0.0001*
m.x183*m.x175 + 0.0001*m.x183*m.x176 + 0.0001*m.x183*m.x177 + 0.0001*m.x183*m.x178 + 0.0001*
m.x183*m.x179 + 0.0001*m.x183*m.x180 + 0.0001*m.x183*m.x181 + 0.0001*m.x183*m.x182 +
2.40940177949448*m.x183**2 + 0.0001*m.x183*m.x184 + 0.0001*m.x183*m.x185 + 0.0001*m.x184*m.x1 +
0.0001*m.x184*m.x2 + 0.0001*m.x184*m.x3 + 0.0001*m.x184*m.x4 + 0.0001*m.x184*m.x5 + 0.0001*m.x184
*m.x6 + 0.0001*m.x184*m.x7 + 0.0001*m.x184*m.x8 + 0.0001*m.x184*m.x9 + 0.0001*m.x184*m.x10 +
0.0001*m.x184*m.x11 + 0.0001*m.x184*m.x12 + 0.0001*m.x184*m.x13 + 0.0001*m.x184*m.x14 + 0.0001*
m.x184*m.x15 + 0.0001*m.x184*m.x16 + 0.0001*m.x184*m.x17 + 0.0001*m.x184*m.x18 + 0.0001*m.x184*
m.x19 + 0.0001*m.x184*m.x20 + 0.0001*m.x184*m.x21 + 0.0001*m.x184*m.x22 + 0.0001*m.x184*m.x23 +
0.0001*m.x184*m.x24 + 0.0001*m.x184*m.x25 + 0.0001*m.x184*m.x26 + 0.0001*m.x184*m.x27 + 0.0001*
m.x184*m.x28 + 0.0001*m.x184*m.x29 + 0.0001*m.x184*m.x30 + 0.0001*m.x184*m.x31 + 0.0001*m.x184*
m.x32 + 0.0001*m.x184*m.x33 + 0.0001*m.x184*m.x34 + 0.0001*m.x184*m.x35 + 0.0001*m.x184*m.x36 +
0.0001*m.x184*m.x37 + 0.0001*m.x184*m.x38 + 0.0001*m.x184*m.x39 + 0.0001*m.x184*m.x40 + 0.0001*
m.x184*m.x41 + 0.0001*m.x184*m.x42 + 0.0001*m.x184*m.x43 + 0.0001*m.x184*m.x44 + 0.0001*m.x184*
m.x45 + 0.0001*m.x184*m.x46 + 0.0001*m.x184*m.x47 + 0.0001*m.x184*m.x48 + 0.0001*m.x184*m.x49 +
0.0001*m.x184*m.x50 + 0.0001*m.x184*m.x51 + 0.0001*m.x184*m.x52 + 0.0001*m.x184*m.x53 + 0.0001*
m.x184*m.x54 + 0.0001*m.x184*m.x55 + 0.0001*m.x184*m.x56 + 0.0001*m.x184*m.x57 + 0.0001*m.x184*
m.x58 + 0.0001*m.x184*m.x59 + 0.0001*m.x184*m.x60 + 0.0001*m.x184*m.x61 + 0.0001*m.x184*m.x62 +
0.0001*m.x184*m.x63 + 0.0001*m.x184*m.x64 + 0.0001*m.x184*m.x65 + 0.0001*m.x184*m.x66 + 0.0001*
m.x184*m.x67 + 0.0001*m.x184*m.x68 + 0.0001*m.x184*m.x69 + 0.0001*m.x184*m.x70 + 0.0001*m.x184*
m.x71 + 0.0001*m.x184*m.x72 + 0.0001*m.x184*m.x73 + 0.0001*m.x184*m.x74 + 0.0001*m.x184*m.x75 +
0.0001*m.x184*m.x76 + 0.0001*m.x184*m.x77 + 0.0001*m.x184*m.x78 + 0.0001*m.x184*m.x79 + 0.0001*
m.x184*m.x80 + 0.0001*m.x184*m.x81 + 0.0001*m.x184*m.x82 + 0.0001*m.x184*m.x83 + 0.0001*m.x184*
m.x84 + 0.0001*m.x184*m.x85 + 0.0001*m.x184*m.x86 + 0.0001*m.x184*m.x87 + 0.0001*m.x184*m.x88 +
0.0001*m.x184*m.x89 + 0.0001*m.x184*m.x90 + 0.0001*m.x184*m.x91 + 0.0001*m.x184*m.x92 + 0.0001*
m.x184*m.x93 + 0.0001*m.x184*m.x94 + 0.0001*m.x184*m.x95 + 0.0001*m.x184*m.x96 + 0.0001*m.x184*
m.x97 + 0.0001*m.x184*m.x98 + 0.0001*m.x184*m.x99 + 0.0001*m.x184*m.x100 + 0.0001*m.x184*m.x101
+ 0.0001*m.x184*m.x102 + 0.0001*m.x184*m.x103 + 0.0001*m.x184*m.x104 + 0.0001*m.x184*m.x105 +
0.0001*m.x184*m.x106 + 0.0001*m.x184*m.x107 + 0.0001*m.x184*m.x108 + 0.0001*m.x184*m.x109 +
0.0001*m.x184*m.x110 + 0.0001*m.x184*m.x111 + 0.0001*m.x184*m.x112 + 0.0001*m.x184*m.x113 +
0.0001*m.x184*m.x114 + 1.81266542307986*m.x184*m.x115 + 0.0001*m.x184*m.x116 + 0.0001*m.x184*
m.x117 + 0.0001*m.x184*m.x118 + 0.0001*m.x184*m.x119 + 0.0001*m.x184*m.x120 + 0.0001*m.x184*
m.x121 + 0.0001*m.x184*m.x122 + 0.0001*m.x184*m.x123 + 0.0001*m.x184*m.x124 + 0.0001*m.x184*
m.x125 + 0.0001*m.x184*m.x126 + 0.0001*m.x184*m.x127 + 0.0001*m.x184*m.x128 + 0.0001*m.x184*
m.x129 + 0.0001*m.x184*m.x130 + 0.0001*m.x184*m.x131 + 0.0001*m.x184*m.x132 + 0.0001*m.x184*
m.x133 + 0.0001*m.x184*m.x134 + 0.0001*m.x184*m.x135 + 0.0001*m.x184*m.x136 + 0.0001*m.x184*
m.x137 + 0.0001*m.x184*m.x138 + 0.0001*m.x184*m.x139 + 0.0001*m.x184*m.x140 + 0.0001*m.x184*
m.x141 + 0.0001*m.x184*m.x142 + 0.0001*m.x184*m.x143 + 0.0001*m.x184*m.x144 + 0.0001*m.x184*
m.x145 + 0.0001*m.x184*m.x146 + 0.0001*m.x184*m.x147 + 0.0001*m.x184*m.x148 + 0.0001*m.x184*
m.x149 + 0.0001*m.x184*m.x150 + 0.0001*m.x184*m.x151 + 0.0001*m.x184*m.x152 + 0.0001*m.x184*
m.x153 + 0.0001*m.x184*m.x154 + 0.0001*m.x184*m.x155 + 0.0001*m.x184*m.x156 + 0.0001*m.x184*
m.x157 + 0.0001*m.x184*m.x158 + 0.0001*m.x184*m.x159 + 0.0001*m.x184*m.x160 + 0.0001*m.x184*
m.x161 + 0.0001*m.x184*m.x162 + 0.0001*m.x184*m.x163 + 0.0001*m.x184*m.x164 + 0.0001*m.x184*
m.x165 + 0.0001*m.x184*m.x166 + 0.0001*m.x184*m.x167 + 0.0001*m.x184*m.x168 + 0.0001*m.x184*
m.x169 + 0.0001*m.x184*m.x170 + 0.0001*m.x184*m.x171 + 0.0001*m.x184*m.x172 + 0.0001*m.x184*
m.x173 + 0.0001*m.x184*m.x174 + 0.0001*m.x184*m.x175 + 0.0001*m.x184*m.x176 + 0.0001*m.x184*
m.x177 + 0.0001*m.x184*m.x178 + 0.0001*m.x184*m.x179 + 0.0001*m.x184*m.x180 + 0.0001*m.x184*
m.x181 + 0.0001*m.x184*m.x182 + 0.0001*m.x184*m.x183 + 2.40940177949448*m.x184**2 + 0.0001*m.x184
*m.x185 + 0.0001*m.x185*m.x1 + 0.0001*m.x185*m.x2 + 0.0001*m.x185*m.x3 + 0.0001*m.x185*m.x4 +
0.0001*m.x185*m.x5 + 0.0001*m.x185*m.x6 + 0.0001*m.x185*m.x7 + 0.0001*m.x185*m.x8 + 0.0001*m.x185
*m.x9 + 0.0001*m.x185*m.x10 + 0.0001*m.x185*m.x11 + 0.0001*m.x185*m.x12 + 0.0001*m.x185*m.x13 +
0.0001*m.x185*m.x14 + 0.0001*m.x185*m.x15 + 0.0001*m.x185*m.x16 + 0.0001*m.x185*m.x17 + 0.0001*
m.x185*m.x18 + 0.0001*m.x185*m.x19 + 0.0001*m.x185*m.x20 + 0.0001*m.x185*m.x21 + 0.0001*m.x185*
m.x22 + 0.0001*m.x185*m.x23 + 0.0001*m.x185*m.x24 + 0.0001*m.x185*m.x25 + 0.0001*m.x185*m.x26 +
0.0001*m.x185*m.x27 + 0.0001*m.x185*m.x28 + 0.0001*m.x185*m.x29 + 0.0001*m.x185*m.x30 + 0.0001*
m.x185*m.x31 + 0.0001*m.x185*m.x32 + 0.0001*m.x185*m.x33 + 0.0001*m.x185*m.x34 + 0.0001*m.x185*
m.x35 + 0.0001*m.x185*m.x36 + 0.0001*m.x185*m.x37 + 0.0001*m.x185*m.x38 + 0.0001*m.x185*m.x39 +
0.0001*m.x185*m.x40 + 0.0001*m.x185*m.x41 + 0.0001*m.x185*m.x42 + 0.0001*m.x185*m.x43 + 0.0001*
m.x185*m.x44 + 0.0001*m.x185*m.x45 + 0.0001*m.x185*m.x46 + 0.0001*m.x185*m.x47 + 0.0001*m.x185*
m.x48 + 0.0001*m.x185*m.x49 + 0.0001*m.x185*m.x50 + 0.0001*m.x185*m.x51 + 0.0001*m.x185*m.x52 +
0.0001*m.x185*m.x53 + 0.0001*m.x185*m.x54 + 0.0001*m.x185*m.x55 + 0.0001*m.x185*m.x56 + 0.0001*
m.x185*m.x57 + 0.0001*m.x185*m.x58 + 0.0001*m.x185*m.x59 + 0.0001*m.x185*m.x60 + 0.0001*m.x185*
m.x61 + 0.0001*m.x185*m.x62 + 0.0001*m.x185*m.x63 + 0.0001*m.x185*m.x64 + 0.0001*m.x185*m.x65 +
0.0001*m.x185*m.x66 + 0.0001*m.x185*m.x67 + 0.0001*m.x185*m.x68 + 0.0001*m.x185*m.x69 + 0.0001*
m.x185*m.x70 + 0.0001*m.x185*m.x71 + 0.0001*m.x185*m.x72 + 0.0001*m.x185*m.x73 + 0.0001*m.x185*
m.x74 + 0.0001*m.x185*m.x75 + 0.0001*m.x185*m.x76 + 0.0001*m.x185*m.x77 + 0.0001*m.x185*m.x78 +
0.0001*m.x185*m.x79 + 0.0001*m.x185*m.x80 + 0.0001*m.x185*m.x81 + 0.0001*m.x185*m.x82 + 0.0001*
m.x185*m.x83 + 0.0001*m.x185*m.x84 + 0.0001*m.x185*m.x85 + 0.0001*m.x185*m.x86 + 0.0001*m.x185*
m.x87 + 0.0001*m.x185*m.x88 + 0.0001*m.x185*m.x89 + 0.0001*m.x185*m.x90 + 0.0001*m.x185*m.x91 +
0.0001*m.x185*m.x92 + 0.0001*m.x185*m.x93 + 0.0001*m.x185*m.x94 + 0.0001*m.x185*m.x95 + 0.0001*
m.x185*m.x96 + 0.0001*m.x185*m.x97 + 0.0001*m.x185*m.x98 + 0.0001*m.x185*m.x99 + 0.0001*m.x185*
m.x100 + 0.0001*m.x185*m.x101 + 0.0001*m.x185*m.x102 + 0.0001*m.x185*m.x103 + 0.0001*m.x185*
m.x104 + 0.0001*m.x185*m.x105 + 0.0001*m.x185*m.x106 + 0.0001*m.x185*m.x107 + 0.0001*m.x185*
m.x108 + 0.0001*m.x185*m.x109 + 0.0001*m.x185*m.x110 + 0.0001*m.x185*m.x111 + 0.0001*m.x185*
m.x112 + 0.0001*m.x185*m.x113 + 0.0001*m.x185*m.x114 + 0.0001*m.x185*m.x115 + 0.0001*m.x185*
m.x116 + 0.0001*m.x185*m.x117 + 0.0001*m.x185*m.x118 + 0.0001*m.x185*m.x119 + 0.0001*m.x185*
m.x120 + 0.0001*m.x185*m.x121 + 0.0001*m.x185*m.x122 + 0.0001*m.x185*m.x123 + 0.0001*m.x185*
m.x124 + 0.0001*m.x185*m.x125 + 0.0001*m.x185*m.x126 + 0.0001*m.x185*m.x127 + 0.0001*m.x185*
m.x128 + 0.0001*m.x185*m.x129 + 0.0001*m.x185*m.x130 + 0.0001*m.x185*m.x131 + 0.0001*m.x185*
m.x132 + 0.0001*m.x185*m.x133 + 0.0001*m.x185*m.x134 + 0.0001*m.x185*m.x135 + 0.0001*m.x185*
m.x136 + 0.0001*m.x185*m.x137 + 0.0001*m.x185*m.x138 + 0.0001*m.x185*m.x139 + 0.0001*m.x185*
m.x140 + 0.0001*m.x185*m.x141 + 0.0001*m.x185*m.x142 + 0.0001*m.x185*m.x143 + 0.0001*m.x185*
m.x144 + 0.0001*m.x185*m.x145 + 0.0001*m.x185*m.x146 + 0.0001*m.x185*m.x147 + 0.0001*m.x185*
m.x148 + 0.0001*m.x185*m.x149 + 0.0001*m.x185*m.x150 + 0.0001*m.x185*m.x151 + 0.0001*m.x185*
m.x152 + 0.0001*m.x185*m.x153 + 0.0001*m.x185*m.x154 + 0.0001*m.x185*m.x155 + 0.0001*m.x185*
m.x156 + 0.0001*m.x185*m.x157 + 0.0001*m.x185*m.x158 + 0.0001*m.x185*m.x159 + 0.0001*m.x185*
m.x160 + 0.0001*m.x185*m.x161 + 0.0001*m.x185*m.x162 + 0.0001*m.x185*m.x163 + 0.0001*m.x185*
m.x164 + 0.0001*m.x185*m.x165 + 0.0001*m.x185*m.x166 + 0.0001*m.x185*m.x167 + 0.0001*m.x185*
m.x168 + 0.0001*m.x185*m.x169 + 0.0001*m.x185*m.x170 + 0.0001*m.x185*m.x171 + 0.0001*m.x185*
m.x172 + 0.0001*m.x185*m.x173 + 0.0001*m.x185*m.x174 + 0.0001*m.x185*m.x175 + 0.0001*m.x185*
m.x176 + 0.0001*m.x185*m.x177 + 0.0001*m.x185*m.x178 + 0.0001*m.x185*m.x179 + 0.0001*m.x185*
m.x180 + 0.0001*m.x185*m.x181 + 0.0001*m.x185*m.x182 + 0.0001*m.x185*m.x183 + 0.0001*m.x185*
m.x184 + 2.46066974883064*m.x185**2, sense=minimize)
m.c2 = Constraint(expr= - m.x1 + 0.0692401*m.b371 <= 0.692401)
m.c3 = Constraint(expr= - m.x2 + 0.0513191*m.b371 <= 0.513191)
m.c4 = Constraint(expr= - m.x3 + 0.0470779*m.b371 <= 0.470779)
m.c5 = Constraint(expr= - m.x4 + 0.0607966*m.b371 <= 0.607966)
m.c6 = Constraint(expr= - m.x5 + 0.0610414*m.b371 <= 0.610414)
m.c7 = Constraint(expr= - m.x6 + 0.0604472*m.b371 <= 0.604472)
m.c8 = Constraint(expr= - m.x7 + 0.0638469*m.b371 <= 0.638469)
m.c9 = Constraint(expr= - m.x8 + 0.061071*m.b371 <= 0.61071)
m.c10 = Constraint(expr= - m.x9 + 0.0614154*m.b371 <= 0.614154)
m.c11 = Constraint(expr= - m.x10 + 0.0647275*m.b371 <= 0.647275)
m.c12 = Constraint(expr= - m.x11 + 0.062866*m.b371 <= 0.62866)
m.c13 = Constraint(expr= - m.x12 + 0.0628454*m.b371 <= 0.628454)
m.c14 = Constraint(expr= - m.x13 + 0.0561378*m.b372 <= 0.561378)
m.c15 = Constraint(expr= - m.x14 + 0.0421782*m.b372 <= 0.421782)
m.c16 = Constraint(expr= - m.x15 + 0.0386925*m.b372 <= 0.386925)
m.c17 = Constraint(expr= - m.x16 + 0.0496729*m.b372 <= 0.496729)
m.c18 = Constraint(expr= - m.x17 + 0.0487172*m.b372 <= 0.487172)
m.c19 = Constraint(expr= - m.x18 + 0.0482363*m.b372 <= 0.482363)
m.c20 = Constraint(expr= - m.x19 + 0.0519859*m.b372 <= 0.519859)
m.c21 = Constraint(expr= - m.x20 + 0.0549209*m.b372 <= 0.549209)
m.c22 = Constraint(expr= - m.x21 + 0.0552306*m.b372 <= 0.552306)
m.c23 = Constraint(expr= - m.x22 + 0.0533827*m.b372 <= 0.533827)
m.c24 = Constraint(expr= - m.x23 + 0.0507141*m.b372 <= 0.507141)
m.c25 = Constraint(expr= - m.x24 + 0.0506975*m.b372 <= 0.506975)
m.c26 = Constraint(expr= - m.x25 + 0.241073*m.b373 <= 2.41073)
m.c27 = Constraint(expr= - m.x26 + 0.243231*m.b373 <= 2.43231)
m.c28 = Constraint(expr= - m.x27 + 0.209474*m.b373 <= 2.09474)
m.c29 = Constraint(expr= - m.x28 + 0.206093*m.b373 <= 2.06093)
m.c30 = Constraint(expr= - m.x29 + 0.205633*m.b373 <= 2.05633)
m.c31 = Constraint(expr= - m.x30 + 0.199737*m.b373 <= 1.99737)
m.c32 = Constraint(expr= - m.x31 + 0.208874*m.b373 <= 2.08874)
m.c33 = Constraint(expr= - m.x32 + 0.198451*m.b373 <= 1.98451)
m.c34 = Constraint(expr= - m.x33 + 0.204814*m.b373 <= 2.04814)
m.c35 = Constraint(expr= - m.x34 + 0.235521*m.b373 <= 2.35521)
m.c36 = Constraint(expr= - m.x35 + 0.230543*m.b373 <= 2.30543)
m.c37 = Constraint(expr= - m.x36 + 0.0530653*m.b374 <= 0.530653)
m.c38 = Constraint(expr= - m.x37 + 0.0398698*m.b374 <= 0.398698)
m.c39 = Constraint(expr= - m.x38 + 0.0365749*m.b374 <= 0.365749)
m.c40 = Constraint(expr= - m.x39 + 0.0490719*m.b374 <= 0.490719)
m.c41 = Constraint(expr= - m.x40 + 0.0481203*m.b374 <= 0.481203)
m.c42 = Constraint(expr= - m.x41 + 0.0476526*m.b374 <= 0.476526)
m.c43 = Constraint(expr= - m.x42 + 0.0501181*m.b374 <= 0.501181)
m.c44 = Constraint(expr= - m.x43 + 0.0529476*m.b374 <= 0.529476)
m.c45 = Constraint(expr= - m.x44 + 0.0532463*m.b374 <= 0.532463)
m.c46 = Constraint(expr= - m.x45 + 0.0568004*m.b374 <= 0.568004)
m.c47 = Constraint(expr= - m.x46 + 0.0539609*m.b374 <= 0.539609)
m.c48 = Constraint(expr= - m.x47 + 0.0539432*m.b374 <= 0.539432)
m.c49 = Constraint(expr= - m.x48 + 0.116172*m.b375 <= 1.16172)
m.c50 = Constraint(expr= - m.x49 + 0.131023*m.b375 <= 1.31023)
m.c51 = Constraint(expr= - m.x50 + 0.132577*m.b375 <= 1.32577)
m.c52 = Constraint(expr= - m.x51 + 0.130429*m.b375 <= 1.30429)
m.c53 = Constraint(expr= - m.x52 + 0.128257*m.b375 <= 1.28257)
m.c54 = Constraint(expr= - m.x53 + 0.130249*m.b375 <= 1.30249)
m.c55 = Constraint(expr= - m.x54 + 0.133113*m.b375 <= 1.33113)
m.c56 = Constraint(expr= - m.x55 + 0.235835*m.b375 <= 2.35835)
m.c57 = Constraint(expr= - m.x56 + 0.134486*m.b375 <= 1.34486)
m.c58 = Constraint(expr= - m.x57 + 0.133164*m.b375 <= 1.33164)
m.c59 = Constraint(expr= - m.x58 + 0.194623*m.b375 <= 1.94623)
m.c60 = Constraint(expr= - m.x59 + 0.0198697*m.b375 <= 0.198697)
m.c61 = Constraint(expr= - m.x60 + 0.349831*m.b376 <= 3.49831)
m.c62 = Constraint(expr= - m.x61 + 0.37018*m.b376 <= 3.7018)
m.c63 = Constraint(expr= - m.x62 + 0.370431*m.b376 <= 3.70431)
m.c64 = Constraint(expr= - m.x63 + 0.396073*m.b376 <= 3.96073)
m.c65 = Constraint(expr= - m.x64 + 0.371726*m.b376 <= 3.71726)
m.c66 = Constraint(expr= - m.x65 + 0.374194*m.b376 <= 3.74194)
m.c67 = Constraint(expr= - m.x66 + 0.364062*m.b376 <= 3.64062)
m.c68 = Constraint(expr= - m.x67 + 0.38712*m.b376 <= 3.8712)
m.c69 = Constraint(expr= - m.x68 + 0.387628*m.b376 <= 3.87628)
m.c70 = Constraint(expr= - m.x69 + 0.395493*m.b376 <= 3.95493)
m.c71 = Constraint(expr= - m.x70 + 0.375282*m.b376 <= 3.75282)
m.c72 = Constraint(expr= - m.x71 + 0.37019*m.b376 <= 3.7019)
m.c73 = Constraint(expr= - m.x72 + 0.153165*m.b377 <= 1.53165)
m.c74 = Constraint(expr= - m.x73 + 0.173161*m.b377 <= 1.73161)
m.c75 = Constraint(expr= - m.x74 + 0.172602*m.b377 <= 1.72602)
m.c76 = Constraint(expr= - m.x75 + 0.204698*m.b377 <= 2.04698)
m.c77 = Constraint(expr= - m.x76 + 0.18199*m.b377 <= 1.8199)
m.c78 = Constraint(expr= - m.x77 + 0.184341*m.b377 <= 1.84341)
m.c79 = Constraint(expr= - m.x78 + 0.167159*m.b377 <= 1.67159)
m.c80 = Constraint(expr= - m.x79 + 0.193571*m.b377 <= 1.93571)
m.c81 = Constraint(expr= - m.x80 + 0.192513*m.b377 <= 1.92513)
m.c82 = Constraint(expr= - m.x81 + 0.203089*m.b377 <= 2.03089)
m.c83 = Constraint(expr= - m.x82 + 0.178443*m.b377 <= 1.78443)
m.c84 = Constraint(expr= - m.x83 + 0.189588*m.b377 <= 1.89588)
m.c85 = Constraint(expr= - m.x84 + 0.372749*m.b378 <= 3.72749)
m.c86 = Constraint(expr= - m.x85 + 0.362121*m.b378 <= 3.62121)
m.c87 = Constraint(expr= - m.x86 + 0.370018*m.b378 <= 3.70018)
m.c88 = Constraint(expr= - m.x87 + 0.364025*m.b378 <= 3.64025)
m.c89 = Constraint(expr= - m.x88 + 0.367531*m.b378 <= 3.67531)
m.c90 = Constraint(expr= - m.x89 + 0.366627*m.b378 <= 3.66627)
m.c91 = Constraint(expr= - m.x90 + 0.376405*m.b378 <= 3.76405)
m.c92 = Constraint(expr= - m.x91 + 0.341879*m.b378 <= 3.41879)
m.c93 = Constraint(expr= - m.x92 + 0.355005*m.b378 <= 3.55005)
m.c94 = Constraint(expr= - m.x93 + 0.415405*m.b378 <= 4.15405)
m.c95 = Constraint(expr= - m.x94 + 0.40195*m.b378 <= 4.0195)
m.c96 = Constraint(expr= - m.x95 + 0.545261*m.b378 <= 5.45261)
m.c97 = Constraint(expr= - m.x96 + 0.0440955*m.b378 <= 0.440955)
m.c98 = Constraint(expr= - m.x97 + 0.0437507*m.b378 <= 0.437507)
m.c99 = Constraint(expr= - m.x98 + 0.0417871*m.b378 <= 0.417871)
m.c100 = Constraint(expr= - m.x99 + 0.0472616*m.b378 <= 0.472616)
m.c101 = Constraint(expr= - m.x100 + 0.0475038*m.b378 <= 0.475038)
m.c102 = Constraint(expr= - m.x101 + 0.0505596*m.b378 <= 0.505596)
m.c103 = Constraint(expr= - m.x102 + 0.046999*m.b378 <= 0.46999)
m.c104 = Constraint(expr= - m.x103 + 0.0466464*m.b378 <= 0.466464)
m.c105 = Constraint(expr= - m.x104 + 0.428329*m.b379 <= 4.28329)
m.c106 = Constraint(expr= - m.x105 + 0.597785*m.b379 <= 5.97785)
m.c107 = Constraint(expr= - m.x106 + 0.415427*m.b379 <= 4.15427)
m.c108 = Constraint(expr= - m.x107 + 0.430813*m.b379 <= 4.30813)
m.c109 = Constraint(expr= - m.x108 + 0.433171*m.b379 <= 4.33171)
m.c110 = Constraint(expr= - m.x109 + 0.418136*m.b379 <= 4.18136)
m.c111 = Constraint(expr= - m.x110 + 0.429279*m.b379 <= 4.29279)
m.c112 = Constraint(expr= - m.x111 + 0.429341*m.b379 <= 4.29341)
m.c113 = Constraint(expr= - m.x112 + 0.607043*m.b379 <= 6.07043)
m.c114 = Constraint(expr= - m.x113 + 0.377426*m.b379 <= 3.77426)
m.c115 = Constraint(expr= - m.x114 + 0.361529*m.b379 <= 3.61529)
m.c116 = Constraint(expr= - m.x115 + 0.361529*m.b379 <= 3.61529)
m.c117 = Constraint(expr= - m.x116 + 0.03013*m.b380 <= 0.3013)
m.c118 = Constraint(expr= - m.x117 + 0.0407356*m.b380 <= 0.407356)
m.c119 = Constraint(expr= - m.x118 + 0.0400957*m.b380 <= 0.400957)
m.c120 = Constraint(expr= - m.x119 + 0.0364663*m.b380 <= 0.364663)
m.c121 = Constraint(expr= - m.x120 + 0.0362005*m.b380 <= 0.362005)
m.c122 = Constraint(expr= - m.x121 + 0.0372731*m.b380 <= 0.372731)
m.c123 = Constraint(expr= - m.x122 + 0.0409479*m.b380 <= 0.409479)
m.c124 = Constraint(expr= - m.x123 + 0.0398242*m.b380 <= 0.398242)
m.c125 = Constraint(expr= - m.x124 + 0.038497*m.b380 <= 0.38497)
m.c126 = Constraint(expr= - m.x125 + 0.0378994*m.b380 <= 0.378994)
m.c127 = Constraint(expr= - m.x126 + 0.0380718*m.b380 <= 0.380718)
m.c128 = Constraint(expr= - m.x127 + 0.0392795*m.b380 <= 0.392795)
m.c129 = Constraint(expr= - m.x128 + 0.0995721*m.b380 <= 0.995721)
m.c130 = Constraint(expr= - m.x129 + 0.0732346*m.b380 <= 0.732346)
m.c131 = Constraint(expr= - m.x130 + 0.0868679*m.b381 <= 0.868679)
m.c132 = Constraint(expr= - m.x131 + 0.0777715*m.b381 <= 0.777715)
m.c133 = Constraint(expr= - m.x132 + 0.101527*m.b381 <= 1.01527)
m.c134 = Constraint(expr= - m.x133 + 0.0321133*m.b381 <= 0.321133)
m.c135 = Constraint(expr= - m.x134 + 0.0315665*m.b381 <= 0.315665)
m.c136 = Constraint(expr= - m.x135 + 0.0319378*m.b381 <= 0.319378)
m.c137 = Constraint(expr= - m.x136 + 0.0271866*m.b381 <= 0.271866)
m.c138 = Constraint(expr= - m.x137 + 0.0364662*m.b381 <= 0.364662)
m.c139 = Constraint(expr= - m.x138 + 0.0369007*m.b381 <= 0.369007)
m.c140 = Constraint(expr= - m.x139 + 0.0400714*m.b381 <= 0.400714)
m.c141 = Constraint(expr= - m.x140 + 0.0378908*m.b381 <= 0.378908)
m.c142 = Constraint(expr= - m.x141 + 0.0377165*m.b381 <= 0.377165)
m.c143 = Constraint(expr= - m.x142 + 0.0929079*m.b382 <= 0.929079)
m.c144 = Constraint(expr= - m.x143 + 0.0558954*m.b382 <= 0.558954)
m.c145 = Constraint(expr= - m.x144 + 0.0542686*m.b382 <= 0.542686)
m.c146 = Constraint(expr= - m.x145 + 0.060239*m.b382 <= 0.60239)
m.c147 = Constraint(expr= - m.x146 + 0.0600093*m.b382 <= 0.600093)
m.c148 = Constraint(expr= - m.x147 + 0.0616804*m.b382 <= 0.616804)
m.c149 = Constraint(expr= - m.x148 + 0.0602731*m.b382 <= 0.602731)
m.c150 = Constraint(expr= - m.x149 + 0.0593095*m.b382 <= 0.593095)
m.c151 = Constraint(expr= - m.x150 + 0.0575161*m.b382 <= 0.575161)
m.c152 = Constraint(expr= - m.x151 + 0.0529298*m.b382 <= 0.529298)
m.c153 = Constraint(expr= - m.x152 + 0.0530236*m.b382 <= 0.530236)
m.c154 = Constraint(expr= - m.x153 + 0.0546282*m.b382 <= 0.546282)
m.c155 = Constraint(expr= - m.x154 + 0.0854295*m.b382 <= 0.854295)
m.c156 = Constraint(expr= - m.x155 + 0.083876*m.b382 <= 0.83876)
m.c157 = Constraint(expr= - m.x156 + 0.136064*m.b382 <= 1.36064)
m.c158 = Constraint(expr= - m.x157 + 0.0273514*m.b383 <= 0.273514)
m.c159 = Constraint(expr= - m.x158 + 0.0396593*m.b383 <= 0.396593)
m.c160 = Constraint(expr= - m.x159 + 0.0390363*m.b383 <= 0.390363)
m.c161 = Constraint(expr= - m.x160 + 0.0355471*m.b383 <= 0.355471)
m.c162 = Constraint(expr= - m.x161 + 0.0316072*m.b383 <= 0.316072)
m.c163 = Constraint(expr= - m.x162 + 0.0325436*m.b383 <= 0.325436)
m.c164 = Constraint(expr= - m.x163 + 0.037926*m.b383 <= 0.37926)
m.c165 = Constraint(expr= - m.x164 + 0.0396908*m.b383 <= 0.396908)
m.c166 = Constraint(expr= - m.x165 + 0.038368*m.b383 <= 0.38368)
m.c167 = Constraint(expr= - m.x166 + 0.0320518*m.b383 <= 0.320518)
m.c168 = Constraint(expr= - m.x167 + 0.0326737*m.b383 <= 0.326737)
m.c169 = Constraint(expr= - m.x168 + 0.0337102*m.b383 <= 0.337102)
m.c170 = Constraint(expr= - m.x169 + 0.0994876*m.b383 <= 0.994876)
m.c171 = Constraint(expr= - m.x170 + 0.0690188*m.b383 <= 0.690188)
m.c172 = Constraint(expr= - m.x171 + 0.479596*m.b384 <= 4.79596)
m.c173 = Constraint(expr= - m.x172 + 0.346514*m.b384 <= 3.46514)
m.c174 = Constraint(expr= - m.x173 + 0.346514*m.b384 <= 3.46514)
m.c175 = Constraint(expr= - m.x174 + 0.492571*m.b384 <= 4.92571)
m.c176 = Constraint(expr= - m.x175 + 0.510815*m.b384 <= 5.10815)
m.c177 = Constraint(expr= - m.x176 + 0.495521*m.b384 <= 4.95521)
m.c178 = Constraint(expr= - m.x177 + 0.493259*m.b384 <= 4.93259)
m.c179 = Constraint(expr= - m.x178 + 0.506405*m.b384 <= 5.06405)
m.c180 = Constraint(expr= - m.x179 + 0.493479*m.b384 <= 4.93479)
m.c181 = Constraint(expr= - m.x180 + 0.34506*m.b384 <= 3.4506)
m.c182 = Constraint(expr= - m.x181 + 0.339293*m.b384 <= 3.39293)
m.c183 = Constraint(expr= - m.x182 + 0.425482*m.b384 <= 4.25482)
m.c184 = Constraint(expr= - m.x183 + 0.480552*m.b384 <= 4.80552)
m.c185 = Constraint(expr= - m.x184 + 0.480552*m.b384 <= 4.80552)
m.c186 = Constraint(expr= - m.x185 + 0.620126*m.b384 <= 6.20126)
m.c187 = Constraint(expr= m.x1 - 96.93614*m.b371 <= -0.692401)
m.c188 = Constraint(expr= m.x2 - 71.84674*m.b371 <= -0.513191)
m.c189 = Constraint(expr= m.x3 - 65.90906*m.b371 <= -0.470779)
m.c190 = Constraint(expr= m.x4 - 85.11524*m.b371 <= -0.607966)
m.c191 = Constraint(expr= m.x5 - 85.45796*m.b371 <= -0.610414)
m.c192 = Constraint(expr= m.x6 - 84.62608*m.b371 <= -0.604472)
m.c193 = Constraint(expr= m.x7 - 89.38566*m.b371 <= -0.638469)
m.c194 = Constraint(expr= m.x8 - 85.4994*m.b371 <= -0.61071)
m.c195 = Constraint(expr= m.x9 - 85.98156*m.b371 <= -0.614154)
m.c196 = Constraint(expr= m.x10 - 90.6185*m.b371 <= -0.647275)
m.c197 = Constraint(expr= m.x11 - 88.0124*m.b371 <= -0.62866)
m.c198 = Constraint(expr= m.x12 - 87.98356*m.b371 <= -0.628454)
m.c199 = Constraint(expr= m.x13 - 78.59292*m.b372 <= -0.561378)
m.c200 = Constraint(expr= m.x14 - 59.04948*m.b372 <= -0.421782)
m.c201 = Constraint(expr= m.x15 - 54.1695*m.b372 <= -0.386925)
m.c202 = Constraint(expr= m.x16 - 69.54206*m.b372 <= -0.496729)
m.c203 = Constraint(expr= m.x17 - 68.20408*m.b372 <= -0.487172)
m.c204 = Constraint(expr= m.x18 - 67.53082*m.b372 <= -0.482363)
m.c205 = Constraint(expr= m.x19 - 72.78026*m.b372 <= -0.519859)
m.c206 = Constraint(expr= m.x20 - 76.88926*m.b372 <= -0.549209)
m.c207 = Constraint(expr= m.x21 - 77.32284*m.b372 <= -0.552306)
m.c208 = Constraint(expr= m.x22 - 74.73578*m.b372 <= -0.533827)
m.c209 = Constraint(expr= m.x23 - 70.99974*m.b372 <= -0.507141)
m.c210 = Constraint(expr= m.x24 - 70.9765*m.b372 <= -0.506975)
m.c211 = Constraint(expr= m.x25 - 337.5022*m.b373 <= -2.41073)
m.c212 = Constraint(expr= m.x26 - 340.5234*m.b373 <= -2.43231)
m.c213 = Constraint(expr= m.x27 - 293.2636*m.b373 <= -2.09474)
m.c214 = Constraint(expr= m.x28 - 288.5302*m.b373 <= -2.06093)
m.c215 = Constraint(expr= m.x29 - 287.8862*m.b373 <= -2.05633)
m.c216 = Constraint(expr= m.x30 - 279.6318*m.b373 <= -1.99737)
m.c217 = Constraint(expr= m.x31 - 292.4236*m.b373 <= -2.08874)
m.c218 = Constraint(expr= m.x32 - 277.8314*m.b373 <= -1.98451)
m.c219 = Constraint(expr= m.x33 - 286.7396*m.b373 <= -2.04814)
m.c220 = Constraint(expr= m.x34 - 329.7294*m.b373 <= -2.35521)
m.c221 = Constraint(expr= m.x35 - 322.7602*m.b373 <= -2.30543)
m.c222 = Constraint(expr= m.x36 - 74.29142*m.b374 <= -0.530653)
m.c223 = Constraint(expr= m.x37 - 55.81772*m.b374 <= -0.398698)
m.c224 = Constraint(expr= m.x38 - 51.20486*m.b374 <= -0.365749)
m.c225 = Constraint(expr= m.x39 - 68.70066*m.b374 <= -0.490719)
m.c226 = Constraint(expr= m.x40 - 67.36842*m.b374 <= -0.481203)
m.c227 = Constraint(expr= m.x41 - 66.71364*m.b374 <= -0.476526)
m.c228 = Constraint(expr= m.x42 - 70.16534*m.b374 <= -0.501181)
m.c229 = Constraint(expr= m.x43 - 74.12664*m.b374 <= -0.529476)
m.c230 = Constraint(expr= m.x44 - 74.54482*m.b374 <= -0.532463)
m.c231 = Constraint(expr= m.x45 - 79.52056*m.b374 <= -0.568004)
m.c232 = Constraint(expr= m.x46 - 75.54526*m.b374 <= -0.539609)
m.c233 = Constraint(expr= m.x47 - 75.52048*m.b374 <= -0.539432)
m.c234 = Constraint(expr= m.x48 - 162.6408*m.b375 <= -1.16172)
m.c235 = Constraint(expr= m.x49 - 183.4322*m.b375 <= -1.31023)
m.c236 = Constraint(expr= m.x50 - 185.6078*m.b375 <= -1.32577)
m.c237 = Constraint(expr= m.x51 - 182.6006*m.b375 <= -1.30429)
m.c238 = Constraint(expr= m.x52 - 179.5598*m.b375 <= -1.28257)
m.c239 = Constraint(expr= m.x53 - 182.3486*m.b375 <= -1.30249)
m.c240 = Constraint(expr= m.x54 - 186.3582*m.b375 <= -1.33113)
m.c241 = Constraint(expr= m.x55 - 330.169*m.b375 <= -2.35835)
m.c242 = Constraint(expr= m.x56 - 188.2804*m.b375 <= -1.34486)
m.c243 = Constraint(expr= m.x57 - 186.4296*m.b375 <= -1.33164)
m.c244 = Constraint(expr= m.x58 - 272.4722*m.b375 <= -1.94623)
m.c245 = Constraint(expr= m.x59 - 27.81758*m.b375 <= -0.198697)
m.c246 = Constraint(expr= m.x60 - 489.7634*m.b376 <= -3.49831)
m.c247 = Constraint(expr= m.x61 - 518.252*m.b376 <= -3.7018)
m.c248 = Constraint(expr= m.x62 - 518.6034*m.b376 <= -3.70431)
m.c249 = Constraint(expr= m.x63 - 554.5022*m.b376 <= -3.96073)
m.c250 = Constraint(expr= m.x64 - 520.4164*m.b376 <= -3.71726)
m.c251 = Constraint(expr= m.x65 - 523.8716*m.b376 <= -3.74194)
m.c252 = Constraint(expr= m.x66 - 509.6868*m.b376 <= -3.64062)
m.c253 = Constraint(expr= m.x67 - 541.968*m.b376 <= -3.8712)
m.c254 = Constraint(expr= m.x68 - 542.6792*m.b376 <= -3.87628)
m.c255 = Constraint(expr= m.x69 - 553.6902*m.b376 <= -3.95493)
m.c256 = Constraint(expr= m.x70 - 525.3948*m.b376 <= -3.75282)
m.c257 = Constraint(expr= m.x71 - 518.266*m.b376 <= -3.7019)
m.c258 = Constraint(expr= m.x72 - 214.431*m.b377 <= -1.53165)
m.c259 = Constraint(expr= m.x73 - 242.4254*m.b377 <= -1.73161)
m.c260 = Constraint(expr= m.x74 - 241.6428*m.b377 <= -1.72602)
m.c261 = Constraint(expr= m.x75 - 286.5772*m.b377 <= -2.04698)
m.c262 = Constraint(expr= m.x76 - 254.786*m.b377 <= -1.8199)
m.c263 = Constraint(expr= m.x77 - 258.0774*m.b377 <= -1.84341)
m.c264 = Constraint(expr= m.x78 - 234.0226*m.b377 <= -1.67159)
m.c265 = Constraint(expr= m.x79 - 270.9994*m.b377 <= -1.93571)
m.c266 = Constraint(expr= m.x80 - 269.5182*m.b377 <= -1.92513)
m.c267 = Constraint(expr= m.x81 - 284.3246*m.b377 <= -2.03089)
m.c268 = Constraint(expr= m.x82 - 249.8202*m.b377 <= -1.78443)
m.c269 = Constraint(expr= m.x83 - 265.4232*m.b377 <= -1.89588)
m.c270 = Constraint(expr= m.x84 - 521.8486*m.b378 <= -3.72749)
m.c271 = Constraint(expr= m.x85 - 506.9694*m.b378 <= -3.62121)
m.c272 = Constraint(expr= m.x86 - 518.0252*m.b378 <= -3.70018)
m.c273 = Constraint(expr= m.x87 - 509.635*m.b378 <= -3.64025)
m.c274 = Constraint(expr= m.x88 - 514.5434*m.b378 <= -3.67531)
m.c275 = Constraint(expr= m.x89 - 513.2778*m.b378 <= -3.66627)
m.c276 = Constraint(expr= m.x90 - 526.967*m.b378 <= -3.76405)
m.c277 = Constraint(expr= m.x91 - 478.6306*m.b378 <= -3.41879)
m.c278 = Constraint(expr= m.x92 - 497.007*m.b378 <= -3.55005)
m.c279 = Constraint(expr= m.x93 - 581.567*m.b378 <= -4.15405)
m.c280 = Constraint(expr= m.x94 - 562.73*m.b378 <= -4.0195)
m.c281 = Constraint(expr= m.x95 - 763.3654*m.b378 <= -5.45261)
m.c282 = Constraint(expr= m.x96 - 61.7337*m.b378 <= -0.440955)
m.c283 = Constraint(expr= m.x97 - 61.25098*m.b378 <= -0.437507)
m.c284 = Constraint(expr= m.x98 - 58.50194*m.b378 <= -0.417871)
m.c285 = Constraint(expr= m.x99 - 66.16624*m.b378 <= -0.472616)
m.c286 = Constraint(expr= m.x100 - 66.50532*m.b378 <= -0.475038)
m.c287 = Constraint(expr= m.x101 - 70.78344*m.b378 <= -0.505596)
m.c288 = Constraint(expr= m.x102 - 65.7986*m.b378 <= -0.46999)
m.c289 = Constraint(expr= m.x103 - 65.30496*m.b378 <= -0.466464)
m.c290 = Constraint(expr= m.x104 - 599.6606*m.b379 <= -4.28329)
m.c291 = Constraint(expr= m.x105 - 836.899*m.b379 <= -5.97785)
m.c292 = Constraint(expr= m.x106 - 581.5978*m.b379 <= -4.15427)
m.c293 = Constraint(expr= m.x107 - 603.1382*m.b379 <= -4.30813)
m.c294 = Constraint(expr= m.x108 - 606.4394*m.b379 <= -4.33171)
m.c295 = Constraint(expr= m.x109 - 585.3904*m.b379 <= -4.18136)
m.c296 = Constraint(expr= m.x110 - 600.9906*m.b379 <= -4.29279)
m.c297 = Constraint(expr= m.x111 - 601.0774*m.b379 <= -4.29341)
m.c298 = Constraint(expr= m.x112 - 849.8602*m.b379 <= -6.07043)
m.c299 = Constraint(expr= m.x113 - 528.3964*m.b379 <= -3.77426)
m.c300 = Constraint(expr= m.x114 - 506.1406*m.b379 <= -3.61529)
m.c301 = Constraint(expr= m.x115 - 506.1406*m.b379 <= -3.61529)
m.c302 = Constraint(expr= m.x116 - 42.182*m.b380 <= -0.3013)
m.c303 = Constraint(expr= m.x117 - 57.02984*m.b380 <= -0.407356)
m.c304 = Constraint(expr= m.x118 - 56.13398*m.b380 <= -0.400957)
m.c305 = Constraint(expr= m.x119 - 51.05282*m.b380 <= -0.364663)
m.c306 = Constraint(expr= m.x120 - 50.6807*m.b380 <= -0.362005)
m.c307 = Constraint(expr= m.x121 - 52.18234*m.b380 <= -0.372731)
m.c308 = Constraint(expr= m.x122 - 57.32706*m.b380 <= -0.409479)
m.c309 = Constraint(expr= m.x123 - 55.75388*m.b380 <= -0.398242)
m.c310 = Constraint(expr= m.x124 - 53.8958*m.b380 <= -0.38497)
m.c311 = Constraint(expr= m.x125 - 53.05916*m.b380 <= -0.378994)
m.c312 = Constraint(expr= m.x126 - 53.30052*m.b380 <= -0.380718)
m.c313 = Constraint(expr= m.x127 - 54.9913*m.b380 <= -0.392795)
m.c314 = Constraint(expr= m.x128 - 139.40094*m.b380 <= -0.995721)
m.c315 = Constraint(expr= m.x129 - 102.52844*m.b380 <= -0.732346)
m.c316 = Constraint(expr= m.x130 - 121.61506*m.b381 <= -0.868679)
m.c317 = Constraint(expr= m.x131 - 108.8801*m.b381 <= -0.777715)
m.c318 = Constraint(expr= m.x132 - 142.1378*m.b381 <= -1.01527)
m.c319 = Constraint(expr= m.x133 - 44.95862*m.b381 <= -0.321133)
m.c320 = Constraint(expr= m.x134 - 44.1931*m.b381 <= -0.315665)
m.c321 = Constraint(expr= m.x135 - 44.71292*m.b381 <= -0.319378)
m.c322 = Constraint(expr= m.x136 - 38.06124*m.b381 <= -0.271866)
m.c323 = Constraint(expr= m.x137 - 51.05268*m.b381 <= -0.364662)
m.c324 = Constraint(expr= m.x138 - 51.66098*m.b381 <= -0.369007)
m.c325 = Constraint(expr= m.x139 - 56.09996*m.b381 <= -0.400714)
m.c326 = Constraint(expr= m.x140 - 53.04712*m.b381 <= -0.378908)
m.c327 = Constraint(expr= m.x141 - 52.8031*m.b381 <= -0.377165)
m.c328 = Constraint(expr= m.x142 - 130.07106*m.b382 <= -0.929079)
m.c329 = Constraint(expr= m.x143 - 78.25356*m.b382 <= -0.558954)
m.c330 = Constraint(expr= m.x144 - 75.97604*m.b382 <= -0.542686)
m.c331 = Constraint(expr= m.x145 - 84.3346*m.b382 <= -0.60239)
m.c332 = Constraint(expr= m.x146 - 84.01302*m.b382 <= -0.600093)
m.c333 = Constraint(expr= m.x147 - 86.35256*m.b382 <= -0.616804)
m.c334 = Constraint(expr= m.x148 - 84.38234*m.b382 <= -0.602731)
m.c335 = Constraint(expr= m.x149 - 83.0333*m.b382 <= -0.593095)
m.c336 = Constraint(expr= m.x150 - 80.52254*m.b382 <= -0.575161)
m.c337 = Constraint(expr= m.x151 - 74.10172*m.b382 <= -0.529298)
m.c338 = Constraint(expr= m.x152 - 74.23304*m.b382 <= -0.530236)
m.c339 = Constraint(expr= m.x153 - 76.47948*m.b382 <= -0.546282)
m.c340 = Constraint(expr= m.x154 - 119.6013*m.b382 <= -0.854295)
m.c341 = Constraint(expr= m.x155 - 117.4264*m.b382 <= -0.83876)
m.c342 = Constraint(expr= m.x156 - 190.4896*m.b382 <= -1.36064)
m.c343 = Constraint(expr= m.x157 - 38.29196*m.b383 <= -0.273514)
m.c344 = Constraint(expr= m.x158 - 55.52302*m.b383 <= -0.396593)
m.c345 = Constraint(expr= m.x159 - 54.65082*m.b383 <= -0.390363)
m.c346 = Constraint(expr= m.x160 - 49.76594*m.b383 <= -0.355471)
m.c347 = Constraint(expr= m.x161 - 44.25008*m.b383 <= -0.316072)
m.c348 = Constraint(expr= m.x162 - 45.56104*m.b383 <= -0.325436)
m.c349 = Constraint(expr= m.x163 - 53.0964*m.b383 <= -0.37926)
m.c350 = Constraint(expr= m.x164 - 55.56712*m.b383 <= -0.396908)
m.c351 = Constraint(expr= m.x165 - 53.7152*m.b383 <= -0.38368)
m.c352 = Constraint(expr= m.x166 - 44.87252*m.b383 <= -0.320518)
m.c353 = Constraint(expr= m.x167 - 45.74318*m.b383 <= -0.326737)
m.c354 = Constraint(expr= m.x168 - 47.19428*m.b383 <= -0.337102)
m.c355 = Constraint(expr= m.x169 - 139.28264*m.b383 <= -0.994876)
m.c356 = Constraint(expr= m.x170 - 96.62632*m.b383 <= -0.690188)
m.c357 = Constraint(expr= m.x171 - 671.4344*m.b384 <= -4.79596)
m.c358 = Constraint(expr= m.x172 - 485.1196*m.b384 <= -3.46514)
m.c359 = Constraint(expr= m.x173 - 485.1196*m.b384 <= -3.46514)
m.c360 = Constraint(expr= m.x174 - 689.5994*m.b384 <= -4.92571)
m.c361 = Constraint(expr= m.x175 - 715.141*m.b384 <= -5.10815)
m.c362 = Constraint(expr= m.x176 - 693.7294*m.b384 <= -4.95521)
m.c363 = Constraint(expr= m.x177 - 690.5626*m.b384 <= -4.93259)
m.c364 = Constraint(expr= m.x178 - 708.967*m.b384 <= -5.06405)
m.c365 = Constraint(expr= m.x179 - 690.8706*m.b384 <= -4.93479)
m.c366 = Constraint(expr= m.x180 - 483.084*m.b384 <= -3.4506)
m.c367 = Constraint(expr= m.x181 - 475.0102*m.b384 <= -3.39293)
m.c368 = Constraint(expr= m.x182 - 595.6748*m.b384 <= -4.25482)
m.c369 = Constraint(expr= m.x183 - 672.7728*m.b384 <= -4.80552)
m.c370 = Constraint(expr= m.x184 - 672.7728*m.b384 <= -4.80552)
m.c371 = Constraint(expr= m.x185 - 868.1764*m.b384 <= -6.20126)
m.c372 = Constraint(expr= - m.x1 + m.x186 == 0.692401)
m.c373 = Constraint(expr= - m.x2 + m.x187 == 0.513191)
m.c374 = Constraint(expr= - m.x3 + m.x188 == 0.470779)
m.c375 = Constraint(expr= - m.x4 + m.x189 == 0.607966)
m.c376 = Constraint(expr= - m.x5 + m.x190 == 0.610414)
m.c377 = Constraint(expr= - m.x6 + m.x191 == 0.604472)
m.c378 = Constraint(expr= - m.x7 + m.x192 == 0.638469)
m.c379 = Constraint(expr= - m.x8 + m.x193 == 0.61071)
m.c380 = Constraint(expr= - m.x9 + m.x194 == 0.614154)
m.c381 = Constraint(expr= - m.x10 + m.x195 == 0.647275)
m.c382 = Constraint(expr= - m.x11 + m.x196 == 0.62866)
m.c383 = Constraint(expr= - m.x12 + m.x197 == 0.628454)
m.c384 = Constraint(expr= - m.x13 + m.x198 == 0.561378)
m.c385 = Constraint(expr= - m.x14 + m.x199 == 0.421782)
m.c386 = Constraint(expr= - m.x15 + m.x200 == 0.386925)
m.c387 = Constraint(expr= - m.x16 + m.x201 == 0.496729)
m.c388 = Constraint(expr= - m.x17 + m.x202 == 0.487172)
m.c389 = Constraint(expr= - m.x18 + m.x203 == 0.482363)
m.c390 = Constraint(expr= - m.x19 + m.x204 == 0.519859)
m.c391 = Constraint(expr= - m.x20 + m.x205 == 0.549209)
m.c392 = Constraint(expr= - m.x21 + m.x206 == 0.552306)
m.c393 = Constraint(expr= - m.x22 + m.x207 == 0.533827)
m.c394 = Constraint(expr= - m.x23 + m.x208 == 0.507141)
m.c395 = Constraint(expr= - m.x24 + m.x209 == 0.506975)
m.c396 = Constraint(expr= - m.x25 + m.x210 == 2.41073)
m.c397 = Constraint(expr= - m.x26 + m.x211 == 2.43231)
m.c398 = Constraint(expr= - m.x27 + m.x212 == 2.09474)
m.c399 = Constraint(expr= - m.x28 + m.x213 == 2.06093)
m.c400 = Constraint(expr= - m.x29 + m.x214 == 2.05633)
m.c401 = Constraint(expr= - m.x30 + m.x215 == 1.99737)
m.c402 = Constraint(expr= - m.x31 + m.x216 == 2.08874)
m.c403 = Constraint(expr= - m.x32 + m.x217 == 1.98451)
m.c404 = Constraint(expr= - m.x33 + m.x218 == 2.04814)
m.c405 = Constraint(expr= - m.x34 + m.x219 == 2.35521)
m.c406 = Constraint(expr= - m.x35 + m.x220 == 2.30543)
m.c407 = Constraint(expr= - m.x36 + m.x221 == 0.530653)
m.c408 = Constraint(expr= - m.x37 + m.x222 == 0.398698)
m.c409 = Constraint(expr= - m.x38 + m.x223 == 0.365749)
m.c410 = Constraint(expr= - m.x39 + m.x224 == 0.490719)
m.c411 = Constraint(expr= - m.x40 + m.x225 == 0.481203)
m.c412 = Constraint(expr= - m.x41 + m.x226 == 0.476526)
m.c413 = Constraint(expr= - m.x42 + m.x227 == 0.501181)
m.c414 = Constraint(expr= - m.x43 + m.x228 == 0.529476)
m.c415 = Constraint(expr= - m.x44 + m.x229 == 0.532463)
m.c416 = Constraint(expr= - m.x45 + m.x230 == 0.568004)
m.c417 = Constraint(expr= - m.x46 + m.x231 == 0.539609)
m.c418 = Constraint(expr= - m.x47 + m.x232 == 0.539432)
m.c419 = Constraint(expr= - m.x48 + m.x233 == 1.16172)
m.c420 = Constraint(expr= - m.x49 + m.x234 == 1.31023)
m.c421 = Constraint(expr= - m.x50 + m.x235 == 1.32577)
m.c422 = Constraint(expr= - m.x51 + m.x236 == 1.30429)
m.c423 = Constraint(expr= - m.x52 + m.x237 == 1.28257)
m.c424 = Constraint(expr= - m.x53 + m.x238 == 1.30249)
m.c425 = Constraint(expr= - m.x54 + m.x239 == 1.33113)
m.c426 = Constraint(expr= - m.x55 + m.x240 == 2.35835)
m.c427 = Constraint(expr= - m.x56 + m.x241 == 1.34486)
m.c428 = Constraint(expr= - m.x57 + m.x242 == 1.33164)
m.c429 = Constraint(expr= - m.x58 + m.x243 == 1.94623)
m.c430 = Constraint(expr= - m.x59 + m.x244 == 0.198697)
m.c431 = Constraint(expr= - m.x60 + m.x245 == 3.49831)
m.c432 = Constraint(expr= - m.x61 + m.x246 == 3.7018)
m.c433 = Constraint(expr= - m.x62 + m.x247 == 3.70431)
m.c434 = Constraint(expr= - m.x63 + m.x248 == 3.96073)
m.c435 = Constraint(expr= - m.x64 + m.x249 == 3.71726)
m.c436 = Constraint(expr= - m.x65 + m.x250 == 3.74194)
m.c437 = Constraint(expr= - m.x66 + m.x251 == 3.64062)
m.c438 = Constraint(expr= - m.x67 + m.x252 == 3.8712)
m.c439 = Constraint(expr= - m.x68 + m.x253 == 3.87628)
m.c440 = Constraint(expr= - m.x69 + m.x254 == 3.95493)
m.c441 = Constraint(expr= - m.x70 + m.x255 == 3.75282)
m.c442 = Constraint(expr= - m.x71 + m.x256 == 3.7019)
m.c443 = Constraint(expr= - m.x72 + m.x257 == 1.53165)
m.c444 = Constraint(expr= - m.x73 + m.x258 == 1.73161)
m.c445 = Constraint(expr= - m.x74 + m.x259 == 1.72602)
m.c446 = Constraint(expr= - m.x75 + m.x260 == 2.04698)
m.c447 = Constraint(expr= - m.x76 + m.x261 == 1.8199)
m.c448 = Constraint(expr= - m.x77 + m.x262 == 1.84341)
m.c449 = Constraint(expr= - m.x78 + m.x263 == 1.67159)
m.c450 = Constraint(expr= - m.x79 + m.x264 == 1.93571)
m.c451 = Constraint(expr= - m.x80 + m.x265 == 1.92513)
m.c452 = Constraint(expr= - m.x81 + m.x266 == 2.03089)
m.c453 = Constraint(expr= - m.x82 + m.x267 == 1.78443)
m.c454 = Constraint(expr= - m.x83 + m.x268 == 1.89588)
m.c455 = Constraint(expr= - m.x84 + m.x269 == 3.72749)
m.c456 = Constraint(expr= - m.x85 + m.x270 == 3.62121)
m.c457 = Constraint(expr= - m.x86 + m.x271 == 3.70018)
m.c458 = Constraint(expr= - m.x87 + m.x272 == 3.64025)
m.c459 = Constraint(expr= - m.x88 + m.x273 == 3.67531)
m.c460 = Constraint(expr= - m.x89 + m.x274 == 3.66627)
m.c461 = Constraint(expr= - m.x90 + m.x275 == 3.76405)
m.c462 = Constraint(expr= - m.x91 + m.x276 == 3.41879)
m.c463 = Constraint(expr= - m.x92 + m.x277 == 3.55005)
m.c464 = Constraint(expr= - m.x93 + m.x278 == 4.15405)
m.c465 = Constraint(expr= - m.x94 + m.x279 == 4.0195)
m.c466 = Constraint(expr= - m.x95 + m.x280 == 5.45261)
m.c467 = Constraint(expr= - m.x96 + m.x281 == 0.440955)
m.c468 = Constraint(expr= - m.x97 + m.x282 == 0.437507)
m.c469 = Constraint(expr= - m.x98 + m.x283 == 0.417871)
m.c470 = Constraint(expr= - m.x99 + m.x284 == 0.472616)
m.c471 = Constraint(expr= - m.x100 + m.x285 == 0.475038)
m.c472 = Constraint(expr= - m.x101 + m.x286 == 0.505596)
m.c473 = Constraint(expr= - m.x102 + m.x287 == 0.46999)
m.c474 = Constraint(expr= - m.x103 + m.x288 == 0.466464)
m.c475 = Constraint(expr= - m.x104 + m.x289 == 4.28329)
m.c476 = Constraint(expr= - m.x105 + m.x290 == 5.97785)
m.c477 = Constraint(expr= - m.x106 + m.x291 == 4.15427)
m.c478 = Constraint(expr= - m.x107 + m.x292 == 4.30813)
m.c479 = Constraint(expr= - m.x108 + m.x293 == 4.33171)
m.c480 = Constraint(expr= - m.x109 + m.x294 == 4.18136)
m.c481 = Constraint(expr= - m.x110 + m.x295 == 4.29279)
m.c482 = Constraint(expr= - m.x111 + m.x296 == 4.29341)
m.c483 = Constraint(expr= - m.x112 + m.x297 == 6.07043)
m.c484 = Constraint(expr= - m.x113 + m.x298 == 3.77426)
m.c485 = Constraint(expr= - m.x114 + m.x299 == 3.61529)
m.c486 = Constraint(expr= - m.x115 + m.x300 == 3.61529)
m.c487 = Constraint(expr= - m.x116 + m.x301 == 0.3013)
m.c488 = Constraint(expr= - m.x117 + m.x302 == 0.407356)
m.c489 = Constraint(expr= - m.x118 + m.x303 == 0.400957)
m.c490 = Constraint(expr= - m.x119 + m.x304 == 0.364663)
m.c491 = Constraint(expr= - m.x120 + m.x305 == 0.362005)
m.c492 = Constraint(expr= - m.x121 + m.x306 == 0.372731)
m.c493 = Constraint(expr= - m.x122 + m.x307 == 0.409479)
m.c494 = Constraint(expr= - m.x123 + m.x308 == 0.398242)
m.c495 = Constraint(expr= - m.x124 + m.x309 == 0.38497)
m.c496 = Constraint(expr= - m.x125 + m.x310 == 0.378994)
m.c497 = Constraint(expr= - m.x126 + m.x311 == 0.380718)
m.c498 = Constraint(expr= - m.x127 + m.x312 == 0.392795)
m.c499 = Constraint(expr= - m.x128 + m.x313 == 0.995721)
m.c500 = Constraint(expr= - m.x129 + m.x314 == 0.732346)
m.c501 = Constraint(expr= - m.x130 + m.x315 == 0.868679)
m.c502 = Constraint(expr= - m.x131 + m.x316 == 0.777715)
m.c503 = Constraint(expr= - m.x132 + m.x317 == 1.01527)
m.c504 = Constraint(expr= - m.x133 + m.x318 == 0.321133)
m.c505 = Constraint(expr= - m.x134 + m.x319 == 0.315665)
m.c506 = Constraint(expr= - m.x135 + m.x320 == 0.319378)
m.c507 = Constraint(expr= - m.x136 + m.x321 == 0.271866)
m.c508 = Constraint(expr= - m.x137 + m.x322 == 0.364662)
m.c509 = Constraint(expr= - m.x138 + m.x323 == 0.369007)
m.c510 = Constraint(expr= - m.x139 + m.x324 == 0.400714)
m.c511 = Constraint(expr= - m.x140 + m.x325 == 0.378908)
m.c512 = Constraint(expr= - m.x141 + m.x326 == 0.377165)
m.c513 = Constraint(expr= - m.x142 + m.x327 == 0.929079)
m.c514 = Constraint(expr= - m.x143 + m.x328 == 0.558954)
m.c515 = Constraint(expr= - m.x144 + m.x329 == 0.542686)
m.c516 = Constraint(expr= - m.x145 + m.x330 == 0.60239)
m.c517 = Constraint(expr= - m.x146 + m.x331 == 0.600093)
m.c518 = Constraint(expr= - m.x147 + m.x332 == 0.616804)
m.c519 = Constraint(expr= - m.x148 + m.x333 == 0.602731)
m.c520 = Constraint(expr= - m.x149 + m.x334 == 0.593095)
m.c521 = Constraint(expr= - m.x150 + m.x335 == 0.575161)
m.c522 = Constraint(expr= - m.x151 + m.x336 == 0.529298)
m.c523 = Constraint(expr= - m.x152 + m.x337 == 0.530236)
m.c524 = Constraint(expr= - m.x153 + m.x338 == 0.546282)
m.c525 = Constraint(expr= - m.x154 + m.x339 == 0.854295)
m.c526 = Constraint(expr= - m.x155 + m.x340 == 0.83876)
m.c527 = Constraint(expr= - m.x156 + m.x341 == 1.36064)
m.c528 = Constraint(expr= - m.x157 + m.x342 == 0.273514)
m.c529 = Constraint(expr= - m.x158 + m.x343 == 0.396593)
m.c530 = Constraint(expr= - m.x159 + m.x344 == 0.390363)
m.c531 = Constraint(expr= - m.x160 + m.x345 == 0.355471)
m.c532 = Constraint(expr= - m.x161 + m.x346 == 0.316072)
m.c533 = Constraint(expr= - m.x162 + m.x347 == 0.325436)
m.c534 = Constraint(expr= - m.x163 + m.x348 == 0.37926)
m.c535 = Constraint(expr= - m.x164 + m.x349 == 0.396908)
m.c536 = Constraint(expr= - m.x165 + m.x350 == 0.38368)
m.c537 = Constraint(expr= - m.x166 + m.x351 == 0.320518)
m.c538 = Constraint(expr= - m.x167 + m.x352 == 0.326737)
m.c539 = Constraint(expr= - m.x168 + m.x353 == 0.337102)
m.c540 = Constraint(expr= - m.x169 + m.x354 == 0.994876)
m.c541 = Constraint(expr= - m.x170 + m.x355 == 0.690188)
m.c542 = Constraint(expr= - m.x171 + m.x356 == 4.79596)
m.c543 = Constraint(expr= - m.x172 + m.x357 == 3.46514)
m.c544 = Constraint(expr= - m.x173 + m.x358 == 3.46514)
m.c545 = Constraint(expr= - m.x174 + m.x359 == 4.92571)
m.c546 = Constraint(expr= - m.x175 + m.x360 == 5.10815)
m.c547 = Constraint(expr= - m.x176 + m.x361 == 4.95521)
m.c548 = Constraint(expr= - m.x177 + m.x362 == 4.93259)
m.c549 = Constraint(expr= - m.x178 + m.x363 == 5.06405)
m.c550 = Constraint(expr= - m.x179 + m.x364 == 4.93479)
m.c551 = Constraint(expr= - m.x180 + m.x365 == 3.4506)
m.c552 = Constraint(expr= - m.x181 + m.x366 == 3.39293)
m.c553 = Constraint(expr= - m.x182 + m.x367 == 4.25482)
m.c554 = Constraint(expr= - m.x183 + m.x368 == 4.80552)
m.c555 = Constraint(expr= - m.x184 + m.x369 == 4.80552)
m.c556 = Constraint(expr= - m.x185 + m.x370 == 6.20126)
m.c557 = Constraint(expr= m.b371 + m.b372 + m.b373 + m.b374 + m.b375 + m.b376 + m.b377 + m.b378 + m.b379 + m.b380
+ m.b381 + m.b382 + m.b383 + m.b384 == 3)
| 0 | 0 | 0 |
cde6ac42dd903016ad321671e739158b049c791e | 6,824 | py | Python | instantdl/evaluation/Utils_data_evaluation.py | aliechoes/InstantDL | ce88ff7971c7cd49b4279960cd820b72474daa42 | [
"MIT"
] | 37 | 2020-05-23T16:46:38.000Z | 2022-03-14T12:27:38.000Z | instantdl/evaluation/Utils_data_evaluation.py | ruolinsss/InstantDL | c8c9cce96baafb1bafc3fb021ab37418785c6d8f | [
"MIT"
] | 18 | 2020-06-17T13:34:33.000Z | 2022-02-09T23:47:32.000Z | instantdl/evaluation/Utils_data_evaluation.py | ruolinsss/InstantDL | c8c9cce96baafb1bafc3fb021ab37418785c6d8f | [
"MIT"
] | 6 | 2020-06-17T14:00:54.000Z | 2021-07-27T06:27:08.000Z | """
InstantDL
Utils for data evaluation
Written by Dominik Waibel
"""
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams["font.family"] = "Computer Modern Roman"
from skimage import io
from skimage.io import imread
from skimage.color import gray2rgb, rgb2gray
from skimage.transform import resize
import os
import logging
def normalize(data):
'''
:param data: data to be normalized0
:return: normalize data between 0 and 1
'''
mindata = np.min(data)
maxdata = np.max(data)
data = (data - mindata) / (maxdata - mindata)
data = np.nan_to_num(data)
return data
def import_images(import_dir, files, new_file_ending):
'''
:param import_dir: directory from where the images are imported
:param files: list of filenames
:param new_file_ending: file ending to be attached to the imagenames
:return: returns a stack containing the image data and their names in the correct order
'''
data = []
names = []
for file in files:
if new_file_ending is not None:
file = (file + new_file_ending)
if file.endswith(".npy"):
imp = np.array(np.load(os.path.join(import_dir, file)))
else:
imp = np.array(imread(os.path.join(import_dir, file)))
if np.shape(imp)[-1] == 1:
imp = imp[...,-1]
if np.shape(imp)[-1] is not 3:
imp = gray2rgb(imp)
data.append(imp)
names.append(file)
data = np.array(data)
logging.info("Checking dimensions:")
if np.shape(data)[-1] == 1:
data = data[...,0]
logging.info("Shape of data imported is:")
logging.info(np.shape(data))
return data, names
def calcerrormap(prediction, groundtruth):
'''
:param prediction: stack of images in the prediction dataset
:param groundtruth: stack of images in the groundtruth dataset
:return: stack with the absolute and relative differene between the prediction and groundtruth
'''
logging.info(np.shape(groundtruth))
logging.info(np.shape(prediction))
groundtruth = np.asarray(groundtruth, dtype=float)
prediction = np.asarray(prediction, dtype=float)
groundtruth_norm = (groundtruth - np.mean(groundtruth))/(np.std(groundtruth))
prediction_norm = (prediction - np.mean(prediction))/(np.std(prediction))
groundtruth_fs = (groundtruth - np.min(groundtruth))/(np.max(groundtruth)- np.min(groundtruth))
prediction_fs = (prediction - np.min(prediction))/(np.max(prediction)- np.min(prediction))
abs_errormap_norm = ((groundtruth_fs - prediction_fs))
rel_errormap_norm = np.abs(np.divide(abs_errormap_norm, groundtruth_norm, out=np.zeros_like(abs_errormap_norm), where=groundtruth_norm!=0))
rel_error_norm = np.mean(np.concatenate(np.concatenate((rel_errormap_norm))))
logging.info("The relative Error over the normalized dataset is:",rel_error_norm, " best ist close to zero")
return abs_errormap_norm, rel_errormap_norm
def prepare_data_for_evaluation(root_dir, max_images):
'''
:param root_dir: path to directory
:param max_images: the maximum number of images to to be evaluated
:return: executes the quantitative and visual asssesment of the model predition
saves quantitative results to the insights folder and visual results to the evaluation folder
'''
test_dir = root_dir + "/test/"
results_dir = root_dir + "/results/"
report_dir = root_dir + "/evaluation/"
insights_dir = root_dir + "/insights/"
if os.path.isdir(test_dir + "/image/") == True:
RCNN = False
else:
RCNN = True
#Set results dir only for RCNN
results_dir = root_dir + "/results/"
groundtruth_exists = False
if os.path.exists(root_dir + "/test/groundtruth/") and os.path.isdir(root_dir + "/test/groundtruth/"):
groundtruth_exists = True
if RCNN == True:
logging.info("Resizing MaskRCNN images to 256, 256 dimensins to make them stackable")
image_fnames = os.listdir(test_dir)
image_fnames = image_fnames[0:max_images]
image = []
groundtruth = []
predictions = []
logging.info("importing", len(image_fnames), "files")
for name in image_fnames:
image_folder = (test_dir+name+"/image/"+name+".png")
imagein = (np.array(rgb2gray(io.imread(image_folder))))
image.append(resize(imagein, (256,256)))
groundtruths_imp = []
for file in os.listdir(test_dir + name + "/mask/"):
groundtruths_in = np.array(io.imread(test_dir + name + "/mask/" + file))
groundtruths_in = resize(rgb2gray(groundtruths_in), (256, 256))
groundtruths_imp.append(groundtruths_in)
groundtruth.append(np.sum(groundtruths_imp, axis=0))
prediction_folder = results_dir + name + ".npy"
prediction = np.load(prediction_folder)
prediction = np.sum(np.where(prediction == 1, 1, 0), axis = -1)
prediction[prediction > 1] = 1
predictions.append(resize(prediction, (256,256)))
logging.info("pred %s" % np.shape(predictions))
logging.info("gt %s" % np.shape(groundtruth))
predictions = np.array(predictions)
groundtruth = np.array(groundtruth)
abs_errormap_norm, rel_errormap_norm = calcerrormap(predictions, groundtruth)
else:
image_files = os.listdir(test_dir + "/image/")
if max_images is not None:
image_files = image_files[0: max_images]
image, image_fnames = import_images(test_dir + "/image/", image_files, None)
predictions, _ = import_images(results_dir, image_files, "_predict.tif")
if os.path.isdir(test_dir + "/groundtruth/"):
groundtruth, _ = import_images(test_dir + "/groundtruth/", image_files, None)
image, image_fnames = import_images(test_dir + "/image/", image_files, None)
if os.path.isdir(test_dir + "image2"):
image2, _ = import_images(test_dir + "image2", image_files, None)
image1, _ = import_images(test_dir + "image1", image_files, None)
elif os.path.isdir(test_dir + "image1"):
image1, _ = import_images(test_dir + "image1", image_files, None)
if os.path.isdir(root_dir + "uncertainty"):
uncertainty, _ = import_images(root_dir + "uncertainty", image_files, "_predict.tif")
if os.path.isdir(test_dir + "/groundtruth/"):
abs_errormap_norm, rel_errormap_norm = calcerrormap(predictions, groundtruth)
os.makedirs(root_dir + "/insights/", exist_ok=True)
np.save(root_dir + "/insights/" + "image", image)
np.save(root_dir + "/insights/" + "prediction", predictions)
if os.path.isdir(test_dir + "/groundtruth/") and len(groundtruth) > 1:
np.save(root_dir + "/insights/" + "groundtruth", groundtruth)
np.save(root_dir + "/insights/" + "abs_errormap", abs_errormap_norm)
np.save(root_dir + "/insights/" + "rel_errormap", rel_errormap_norm)
np.save(root_dir + "/insights/" + "image_names", image_fnames)
if os.path.isdir(root_dir + "uncertainty"):
np.save(root_dir + "/insights/" + "uncertainty", uncertainty/255.)
if os.path.isdir(test_dir + "image1"):
logging.info("Two")
np.save(root_dir + "/insights/" + "image1", image1)
if os.path.isdir(test_dir + "image2"):
logging.info("Three")
np.save(root_dir + "/insights/" + "image1", image1)
np.save(root_dir + "/insights/" + "image2", image2)
| 41.865031 | 140 | 0.724795 | """
InstantDL
Utils for data evaluation
Written by Dominik Waibel
"""
import numpy as np
import matplotlib.pyplot as plt
plt.rcParams["font.family"] = "Computer Modern Roman"
from skimage import io
from skimage.io import imread
from skimage.color import gray2rgb, rgb2gray
from skimage.transform import resize
import os
import logging
def normalize(data):
'''
:param data: data to be normalized0
:return: normalize data between 0 and 1
'''
mindata = np.min(data)
maxdata = np.max(data)
data = (data - mindata) / (maxdata - mindata)
data = np.nan_to_num(data)
return data
def import_images(import_dir, files, new_file_ending):
'''
:param import_dir: directory from where the images are imported
:param files: list of filenames
:param new_file_ending: file ending to be attached to the imagenames
:return: returns a stack containing the image data and their names in the correct order
'''
data = []
names = []
for file in files:
if new_file_ending is not None:
file = (file + new_file_ending)
if file.endswith(".npy"):
imp = np.array(np.load(os.path.join(import_dir, file)))
else:
imp = np.array(imread(os.path.join(import_dir, file)))
if np.shape(imp)[-1] == 1:
imp = imp[...,-1]
if np.shape(imp)[-1] is not 3:
imp = gray2rgb(imp)
data.append(imp)
names.append(file)
data = np.array(data)
logging.info("Checking dimensions:")
if np.shape(data)[-1] == 1:
data = data[...,0]
logging.info("Shape of data imported is:")
logging.info(np.shape(data))
return data, names
def calcerrormap(prediction, groundtruth):
'''
:param prediction: stack of images in the prediction dataset
:param groundtruth: stack of images in the groundtruth dataset
:return: stack with the absolute and relative differene between the prediction and groundtruth
'''
logging.info(np.shape(groundtruth))
logging.info(np.shape(prediction))
groundtruth = np.asarray(groundtruth, dtype=float)
prediction = np.asarray(prediction, dtype=float)
groundtruth_norm = (groundtruth - np.mean(groundtruth))/(np.std(groundtruth))
prediction_norm = (prediction - np.mean(prediction))/(np.std(prediction))
groundtruth_fs = (groundtruth - np.min(groundtruth))/(np.max(groundtruth)- np.min(groundtruth))
prediction_fs = (prediction - np.min(prediction))/(np.max(prediction)- np.min(prediction))
abs_errormap_norm = ((groundtruth_fs - prediction_fs))
rel_errormap_norm = np.abs(np.divide(abs_errormap_norm, groundtruth_norm, out=np.zeros_like(abs_errormap_norm), where=groundtruth_norm!=0))
rel_error_norm = np.mean(np.concatenate(np.concatenate((rel_errormap_norm))))
logging.info("The relative Error over the normalized dataset is:",rel_error_norm, " best ist close to zero")
return abs_errormap_norm, rel_errormap_norm
def prepare_data_for_evaluation(root_dir, max_images):
'''
:param root_dir: path to directory
:param max_images: the maximum number of images to to be evaluated
:return: executes the quantitative and visual asssesment of the model predition
saves quantitative results to the insights folder and visual results to the evaluation folder
'''
test_dir = root_dir + "/test/"
results_dir = root_dir + "/results/"
report_dir = root_dir + "/evaluation/"
insights_dir = root_dir + "/insights/"
if os.path.isdir(test_dir + "/image/") == True:
RCNN = False
else:
RCNN = True
#Set results dir only for RCNN
results_dir = root_dir + "/results/"
groundtruth_exists = False
if os.path.exists(root_dir + "/test/groundtruth/") and os.path.isdir(root_dir + "/test/groundtruth/"):
groundtruth_exists = True
if RCNN == True:
logging.info("Resizing MaskRCNN images to 256, 256 dimensins to make them stackable")
image_fnames = os.listdir(test_dir)
image_fnames = image_fnames[0:max_images]
image = []
groundtruth = []
predictions = []
logging.info("importing", len(image_fnames), "files")
for name in image_fnames:
image_folder = (test_dir+name+"/image/"+name+".png")
imagein = (np.array(rgb2gray(io.imread(image_folder))))
image.append(resize(imagein, (256,256)))
groundtruths_imp = []
for file in os.listdir(test_dir + name + "/mask/"):
groundtruths_in = np.array(io.imread(test_dir + name + "/mask/" + file))
groundtruths_in = resize(rgb2gray(groundtruths_in), (256, 256))
groundtruths_imp.append(groundtruths_in)
groundtruth.append(np.sum(groundtruths_imp, axis=0))
prediction_folder = results_dir + name + ".npy"
prediction = np.load(prediction_folder)
prediction = np.sum(np.where(prediction == 1, 1, 0), axis = -1)
prediction[prediction > 1] = 1
predictions.append(resize(prediction, (256,256)))
logging.info("pred %s" % np.shape(predictions))
logging.info("gt %s" % np.shape(groundtruth))
predictions = np.array(predictions)
groundtruth = np.array(groundtruth)
abs_errormap_norm, rel_errormap_norm = calcerrormap(predictions, groundtruth)
else:
image_files = os.listdir(test_dir + "/image/")
if max_images is not None:
image_files = image_files[0: max_images]
image, image_fnames = import_images(test_dir + "/image/", image_files, None)
predictions, _ = import_images(results_dir, image_files, "_predict.tif")
if os.path.isdir(test_dir + "/groundtruth/"):
groundtruth, _ = import_images(test_dir + "/groundtruth/", image_files, None)
image, image_fnames = import_images(test_dir + "/image/", image_files, None)
if os.path.isdir(test_dir + "image2"):
image2, _ = import_images(test_dir + "image2", image_files, None)
image1, _ = import_images(test_dir + "image1", image_files, None)
elif os.path.isdir(test_dir + "image1"):
image1, _ = import_images(test_dir + "image1", image_files, None)
if os.path.isdir(root_dir + "uncertainty"):
uncertainty, _ = import_images(root_dir + "uncertainty", image_files, "_predict.tif")
if os.path.isdir(test_dir + "/groundtruth/"):
abs_errormap_norm, rel_errormap_norm = calcerrormap(predictions, groundtruth)
os.makedirs(root_dir + "/insights/", exist_ok=True)
np.save(root_dir + "/insights/" + "image", image)
np.save(root_dir + "/insights/" + "prediction", predictions)
if os.path.isdir(test_dir + "/groundtruth/") and len(groundtruth) > 1:
np.save(root_dir + "/insights/" + "groundtruth", groundtruth)
np.save(root_dir + "/insights/" + "abs_errormap", abs_errormap_norm)
np.save(root_dir + "/insights/" + "rel_errormap", rel_errormap_norm)
np.save(root_dir + "/insights/" + "image_names", image_fnames)
if os.path.isdir(root_dir + "uncertainty"):
np.save(root_dir + "/insights/" + "uncertainty", uncertainty/255.)
if os.path.isdir(test_dir + "image1"):
logging.info("Two")
np.save(root_dir + "/insights/" + "image1", image1)
if os.path.isdir(test_dir + "image2"):
logging.info("Three")
np.save(root_dir + "/insights/" + "image1", image1)
np.save(root_dir + "/insights/" + "image2", image2)
| 0 | 0 | 0 |
db7016b7502cf910b5e7181eaba57cbebf2abc58 | 3,908 | py | Python | openmdao.main/src/openmdao/main/test/test_exprmapper.py | MrShoks/OpenMDAO-Framework | 412f34ffe31a95631fbe55ca7d75b84669ae8f8c | [
"Apache-2.0"
] | 1 | 2020-06-28T20:38:56.000Z | 2020-06-28T20:38:56.000Z | openmdao.main/src/openmdao/main/test/test_exprmapper.py | MrShoks/OpenMDAO-Framework | 412f34ffe31a95631fbe55ca7d75b84669ae8f8c | [
"Apache-2.0"
] | null | null | null | openmdao.main/src/openmdao/main/test/test_exprmapper.py | MrShoks/OpenMDAO-Framework | 412f34ffe31a95631fbe55ca7d75b84669ae8f8c | [
"Apache-2.0"
] | null | null | null | import unittest
from openmdao.main.assembly import ExprMapper, Assembly, set_as_top
from openmdao.main.component import Component
from openmdao.main.datatypes.int import Int
from openmdao.main.expreval import ExprEvaluator
nodes = ['A', 'B', 'C', 'D']
if __name__ == "__main__":
unittest.main()
| 31.772358 | 107 | 0.523797 | import unittest
from openmdao.main.assembly import ExprMapper, Assembly, set_as_top
from openmdao.main.component import Component
from openmdao.main.datatypes.int import Int
from openmdao.main.expreval import ExprEvaluator
nodes = ['A', 'B', 'C', 'D']
class Simple(Component):
a = Int(iotype='in')
b = Int(iotype='in')
c = Int(iotype='out')
d = Int(iotype='out')
def __init__(self):
super(Simple, self).__init__()
self.a = 1
self.b = 2
self.c = 3
self.d = -1
def execute(self):
self.c = self.a + self.b
self.d = self.a - self.b
def make_graph(nodes=(), connections=()):
scope = set_as_top(Assembly())
sub = scope.add('sub', Assembly())
dep = ExprMapper(sub)
for name in nodes:
if name.startswith('parent.'):
scope.add(name.split('.', 1)[1], Simple())
else:
sub.add(name, Simple())
#dep.add(name)
for src, dest in connections:
if '.' not in src and not sub.contains(src):
if dest.startswith('parent.'):
iotype = 'out'
else:
iotype = 'in'
sub.add(src, Int(1, iotype=iotype))
if '.' not in dest and not sub.contains(dest):
if src.startswith('parent.'):
iotype = 'in'
else:
iotype = 'out'
sub.add(dest, Int(1, iotype=iotype))
dep.connect(ExprEvaluator(src, sub), ExprEvaluator(dest, sub), sub)
return dep, sub
class ExprMapperTestCase(unittest.TestCase):
def setUp(self):
self.internal_conns = [
('A.c', 'B.b'),
('B.c', 'D.a'),
('C.c', 'D.b'),
]
self.boundary_conns = [
('a', 'B.a'),
('D.c', 'c'),
]
self.dep, self.scope = make_graph(nodes,
self.internal_conns +
self.boundary_conns)
def test_get_source(self):
dep, scope = make_graph(nodes,
self.internal_conns +
self.boundary_conns)
self.assertEqual(dep.get_source('B.a'), 'a')
self.assertEqual(dep.get_source('A.a'), None)
self.assertEqual(dep.get_source('c'), 'D.c')
def test_list_connections(self):
self.assertEqual(set(self.dep.list_connections(show_passthrough=False)),
set([('A.c', 'B.b'), ('B.c', 'D.a'), ('C.c', 'D.b')]))
self.assertEqual(set(self.dep.list_connections()),
set([('A.c', 'B.b'), ('B.c', 'D.a'), ('C.c', 'D.b'), ('a', 'B.a'), ('D.c', 'c')]))
def test_already_connected(self):
# internal connection
try:
self.dep.check_connect('A.d', 'B.a', self.scope)
except Exception as err:
self.assertEqual(str(err), "sub: 'B.a' is already connected to source 'a'")
else:
self.fail('Exception expected')
# input boundary connection
try:
self.dep.check_connect('a', 'B.b', self.scope)
except Exception as err:
self.assertEqual(str(err), "sub: 'B.b' is already connected to source 'A.c'")
else:
self.fail('Exception expected')
# internal to boundary output connection
try:
self.dep.check_connect('B.d', 'c', self.scope)
except Exception as err:
self.assertEqual(str(err), "sub: 'c' is already connected to source 'D.c'")
else:
self.fail('Exception expected')
def test_disconnect(self):
self.dep.disconnect('a')
self.dep.disconnect('c')
def test_find_referring_exprs(self):
self.assertEqual(set(self.dep.find_referring_exprs('A')),
set(['A.c']))
if __name__ == "__main__":
unittest.main()
| 3,189 | 183 | 231 |
22a11db03a101448d5407d23793a178572bfb3b7 | 885 | py | Python | SoftLayer/CLI/sshkey/list.py | dvzrv/softlayer-python | 9a5f6c6981bcc370084537b4d1769383499ce90d | [
"MIT"
] | 126 | 2015-01-05T05:09:22.000Z | 2021-07-02T00:16:35.000Z | SoftLayer/CLI/sshkey/list.py | dvzrv/softlayer-python | 9a5f6c6981bcc370084537b4d1769383499ce90d | [
"MIT"
] | 969 | 2015-01-05T15:55:31.000Z | 2022-03-31T19:55:20.000Z | SoftLayer/CLI/sshkey/list.py | dvzrv/softlayer-python | 9a5f6c6981bcc370084537b4d1769383499ce90d | [
"MIT"
] | 176 | 2015-01-22T11:23:40.000Z | 2022-02-11T13:16:58.000Z | """List SSH keys."""
# :license: MIT, see LICENSE for more details.
import click
import SoftLayer
from SoftLayer.CLI import environment
from SoftLayer.CLI import formatting
@click.command()
@click.option('--sortby',
help='Column to sort by',
type=click.Choice(['id',
'label',
'fingerprint',
'notes']))
@environment.pass_env
def cli(env, sortby):
"""List SSH keys."""
mgr = SoftLayer.SshKeyManager(env.client)
keys = mgr.list_keys()
table = formatting.Table(['id', 'label', 'fingerprint', 'notes'])
table.sortby = sortby
for key in keys:
table.add_row([key['id'],
key.get('label'),
key.get('fingerprint'),
key.get('notes', '-')])
env.fout(table)
| 25.285714 | 69 | 0.515254 | """List SSH keys."""
# :license: MIT, see LICENSE for more details.
import click
import SoftLayer
from SoftLayer.CLI import environment
from SoftLayer.CLI import formatting
@click.command()
@click.option('--sortby',
help='Column to sort by',
type=click.Choice(['id',
'label',
'fingerprint',
'notes']))
@environment.pass_env
def cli(env, sortby):
"""List SSH keys."""
mgr = SoftLayer.SshKeyManager(env.client)
keys = mgr.list_keys()
table = formatting.Table(['id', 'label', 'fingerprint', 'notes'])
table.sortby = sortby
for key in keys:
table.add_row([key['id'],
key.get('label'),
key.get('fingerprint'),
key.get('notes', '-')])
env.fout(table)
| 0 | 0 | 0 |
5f511edbc1c5ee755c4dc2d1720e1d22c5f8a152 | 503 | py | Python | core/crypter.py | DtxdF/reverse-shell-sdc | d03554561166067407331a4c728a975df03c9614 | [
"MIT"
] | 1 | 2019-01-26T20:02:00.000Z | 2019-01-26T20:02:00.000Z | crypter.py | DtxdF/sdc | c1ca8b7be6de42b1e5197f98414db05fd2657f1e | [
"MIT"
] | null | null | null | crypter.py | DtxdF/sdc | c1ca8b7be6de42b1e5197f98414db05fd2657f1e | [
"MIT"
] | null | null | null | # -*- coding: UTF-8 -*-
from Crypto.Cipher import AES
from Crypto import Random
iv = Random.new().read(AES.block_size)
| 29.588235 | 57 | 0.725646 | # -*- coding: UTF-8 -*-
from Crypto.Cipher import AES
from Crypto import Random
iv = Random.new().read(AES.block_size)
def encrypt(text, key, inicialization_vector=iv):
ces = AES.new(key, AES.MODE_CFB, inicialization_vector)
cipher_end = inicialization_vector + ces.encrypt(text)
return cipher_end.encode("hex")
def decrypt(text, key, inicialization_vector=iv):
ces = AES.new(key, AES.MODE_CFB, inicialization_vector)
return ces.decrypt(text.decode("hex"))[AES.block_size:] | 327 | 0 | 50 |
eb8bf5b97c0067c20c0d042bcf77ff6052931c07 | 11,588 | py | Python | fastreid/utils/get_st_matrix.py | weleen/MGH.pytorch | 69f2830f6bd60fe3b33c80c04540c0c800d26de1 | [
"Apache-2.0"
] | 4 | 2021-10-06T15:57:29.000Z | 2021-12-21T12:46:19.000Z | fastreid/utils/get_st_matrix.py | weleen/MGH.pytorch | 69f2830f6bd60fe3b33c80c04540c0c800d26de1 | [
"Apache-2.0"
] | 1 | 2022-02-14T06:36:19.000Z | 2022-02-24T08:18:39.000Z | fastreid/utils/get_st_matrix.py | weleen/MGH.pytorch | 69f2830f6bd60fe3b33c80c04540c0c800d26de1 | [
"Apache-2.0"
] | null | null | null | import glob
import math
import os
import numpy as np
if __name__ == "__main__":
data_dir = "/data/wuyiming/reid/msmt/MSMT17_V1/train/"
imgs_path = glob.glob(os.path.join(data_dir, '*', '*.jpg'))
matrix = get_st_matrix(imgs_path, pseudo_labels=None)
| 37.993443 | 179 | 0.569382 | import glob
import math
import os
import numpy as np
def joint_similarity(q_cam, q_frame, g_cam, g_frame, distribution, score=None):
gamma = 5
interval = 100
score_st = np.zeros((len(q_cam), len(g_cam)))
for i in range(len(q_cam)):
for j in range(len(g_cam)):
if q_frame[i] > g_frame[j]:
diff = q_frame[i] - g_frame[j]
hist_ = int(diff / interval)
pr = distribution[q_cam[i] - 1][g_cam[j] - 1][hist_]
else:
diff = g_frame[j] - q_frame[i]
hist_ = int(diff / interval)
pr = distribution[g_cam[j] - 1][q_cam[i] - 1][hist_]
score_st[i][j] = pr
if score is None:
dist = 1 - 1 / (1 + 2 * np.exp(-gamma * score_st))
return dist
else:
assert score.shape == score_st.shape
dist = 1 - 1 / (1 + np.exp(-gamma * score)) * 1 / (1 + 2 * np.exp(-gamma * score_st)) # https://github.com/ljn114514/JVTC/blob/master/utils/st_distribution.py#L5
return dist
def single_process(q_frame, g_frame, q_cam, g_cam, i, distribution):
# print(i, 'running')
interval = 100
score_st_i = np.zeros(len(g_cam))
for j in range(len(g_cam)):
if q_frame > g_frame[j]:
diff = q_frame - g_frame[j]
hist_ = int(diff / interval)
pr = distribution[q_cam - 1][g_cam[j] - 1][hist_]
else:
diff = g_frame[j] - q_frame
hist_ = int(diff / interval)
pr = distribution[g_cam[j] - 1][q_cam - 1][hist_]
score_st_i[j] = pr
return score_st_i
def joint_similarity_parallel(q_cam, q_frame, g_cam, g_frame, distribution, score=None):
gamma = 5
import multiprocessing
print('multiple processes start')
print(multiprocessing.cpu_count())
# pool = multiprocessing.Pool(maxtasksperchild=10)
pool = multiprocessing.Pool()
manager = multiprocessing.Manager()
res_list = []
for i in range(len(q_cam)):
res = pool.apply_async(func=single_process, args=(q_frame[i], g_frame, q_cam[i], g_cam, i, distribution))
res_list.append(res)
pool.close()
pool.join()
print('multiple processes finished')
res_list = [res.get() for res in res_list]
score_st = np.asarray(res_list)
if score is None:
dist = 1 - 1 / (1 + 2 * np.exp(-gamma * score_st))
return dist
else:
assert score.shape == score_st.shape
dist = 1 - 1 / (1 + np.exp(-gamma * score)) * 1 / (1 + 2 * np.exp(-gamma * score_st)) # https://github.com/ljn114514/JVTC/blob/master/utils/st_distribution.py#L5
return dist
def gaussian_func(x, u, o=50):
temp1 = 1.0 / (o * math.sqrt(2 * math.pi))
temp2 = -(np.power(x - u, 2)) / (2 * np.power(o, 2))
return temp1 * np.exp(temp2)
def gauss_smooth(arr, o):
hist_num = len(arr)
vect= np.zeros((hist_num,1))
for i in range(hist_num):
vect[i,0]=i
approximate_delta = 3*o # when x-u>approximate_delta, e.g., 6*o, the gaussian value is approximately equal to 0.
gaussian_vect= gaussian_func(vect,0,o)
matrix = np.zeros((hist_num,hist_num))
for i in range(hist_num):
k=0
for j in range(i,hist_num):
if k>approximate_delta:
continue
matrix[i][j]=gaussian_vect[j-i]
k=k+1
matrix = matrix+matrix.transpose()
for i in range(hist_num):
matrix[i][i]=matrix[i][i]/2
xxx = np.dot(matrix,arr)
return xxx
def get_id(img_path):
camera_id = []
labels = []
frames = []
for path in img_path:
filename = path.split('/')[-1]
label = filename[0:4]
if "MSMT17" in path:
camera, period, frame = filename.split('_')[2:5]
camera_id.append(int(camera))
else:
camera = filename.split('c')[1]
if "Market" in path:
frame = filename.split('_')[2][1:]
elif "DukeMTMC" in path:
frame = filename[9:16]
camera_id.append(int(camera[0]))
if label[0:2]=='-1':
labels.append(-1)
else:
labels.append(int(label))
frames.append(int(frame))
return camera_id, labels, frames
def spatial_temporal_distribution(camera_id, labels, frames): # code from https://github.com/Wanggcong/Spatial-Temporal-Re-identification/blob/master/gen_st_model_market.py#L48
class_num = len(set(labels))
cam_num = len(set(camera_id))
max_hist = 3000
spatial_temporal_sum = np.zeros((class_num, cam_num))
spatial_temporal_count = np.zeros((class_num, cam_num))
eps = 0.0000001
interval = 100.0
for i in range(len(camera_id)):
label_k = labels[i] #### not in order, done
cam_k = camera_id[i] - 1 ##### ### ### ### ### ### ### ### ### ### ### ### # from 1, not 0
frame_k = frames[i]
spatial_temporal_sum[label_k][cam_k] += frame_k
spatial_temporal_count[label_k][cam_k] += 1
spatial_temporal_avg = spatial_temporal_sum / (spatial_temporal_count + eps) # spatial_temporal_avg: 751 ids, 6 cameras, center point
distribution = np.zeros((cam_num, cam_num, max_hist))
for i in range(class_num):
for j in range(cam_num - 1):
for k in range(j + 1, cam_num):
if spatial_temporal_count[i][j] == 0 or spatial_temporal_count[i][k] == 0:
continue
st_ij = spatial_temporal_avg[i][j]
st_ik = spatial_temporal_avg[i][k]
if st_ij > st_ik:
diff = st_ij - st_ik
hist_ = int(diff / interval)
distribution[j][k][hist_] += 1 # [big][small]
else:
diff = st_ik - st_ij
hist_ = int(diff / interval)
distribution[k][j][hist_] += 1
smooth = 50
for i in range(cam_num):
for j in range(cam_num):
#print("gauss "+str(i)+"->"+str(j))
distribution[i][j][:] = gauss_smooth(distribution[i][j][:],smooth)
sum_ = np.sum(distribution, axis=2)
for i in range(cam_num):
for j in range(cam_num):
distribution[i][j] /= (sum_[i][j] + eps)
return distribution # [to][from], to xxx camera, from xxx camera
def get_st_matrix(imgs_path, pseudo_labels=None, score=None):
train_cam, train_label, train_frames = get_id(imgs_path)
if pseudo_labels is not None:
labels = pseudo_labels
else:
labels = train_label
inlier_ind = np.where(np.array(labels, dtype=np.int64) != -1)[0]
# select inlier
t_cam, t_label, t_frames = [], [], []
for ind in inlier_ind:
t_cam.append(train_cam[ind])
t_label.append(labels[ind])
t_frames.append(train_frames[ind])
reordered_label = []
dic = {}
i = 0
for label in t_label:
if dic.get(label) is None:
dic[label] = i
i += 1
reordered_label.append(dic[label])
import time
a = time.time()
# file_path = 'distribution.npy'
# if not os.path.exists(file_path):
# # distribution = spatial_temporal_distribution(t_cam, reordered_label, t_frames)
distribution = get_st_distribution(t_cam, reordered_label, t_frames)
# np.save(file_path, distribution)
# else:
# distribution = np.load(file_path)
b = time.time()
print('spatial temporal matrix computation get_st_distribution cost: {}'.format(b - a))
print('Use multiprocessing')
matrix = joint_similarity_parallel(train_cam, train_frames, train_cam, train_frames, distribution, score)
c = time.time()
print(f'cost {c - b}s')
# np.save('matrix2.npy', matrix2)
# print('Use single process')
# matrix1 = joint_similarity(train_cam, train_frames, train_cam, train_frames, distribution, score) # if score is not None, calculate distance matrix based on joint similarity
# np.save('matrix1.npy', matrix1)
# print(f'cost {time.time() - c}s')
# assert np.allclose(matrix1, matrix)
# raise ValueError
# np.save('spatial_temporal_matrix_market.npy', matrix)
return matrix
def get_st_distribution(camera_id, labels, frames): # code from https://github.com/ljn114514/JVTC/blob/master/utils/st_distribution.py#L72:5
id_num = len(set(labels))
cam_num = len(set(camera_id))
spatial_temporal_sum = np.zeros((id_num, cam_num))
spatial_temporal_count = np.zeros((id_num, cam_num))
eps = 0.0000001
interval = 100.0
for i in range(len(camera_id)):
label_k = int(labels[i]) #### not in order, done
cam_k = int(
camera_id[i] - 1
) ##### ### ### ### ### ### ### ### ### ### ### ### # from 1, not 0
frame_k = frames[i]
spatial_temporal_sum[label_k][
cam_k] = spatial_temporal_sum[label_k][cam_k] + frame_k
spatial_temporal_count[label_k][
cam_k] = spatial_temporal_count[label_k][cam_k] + 1
spatial_temporal_avg = spatial_temporal_sum / (
spatial_temporal_count + eps
) # spatial_temporal_avg: 702 ids, 8cameras, center point
distribution = np.zeros((cam_num, cam_num, 3000))
for i in range(id_num):
for j in range(cam_num - 1):
for k in range(j + 1, cam_num):
if spatial_temporal_count[i][j] == 0 or spatial_temporal_count[
i][k] == 0:
continue
st_ij = spatial_temporal_avg[i][j]
st_ik = spatial_temporal_avg[i][k]
if st_ij > st_ik:
diff = st_ij - st_ik
hist_ = int(diff / interval)
distribution[j][k][
hist_] = distribution[j][k][hist_] + 1 # [big][small]
else:
diff = st_ik - st_ij
hist_ = int(diff / interval)
distribution[k][j][hist_] = distribution[k][j][hist_] + 1
for i in range(id_num):
for j in range(cam_num):
if spatial_temporal_count[i][j] > 1:
frames_same_cam = []
for k in range(len(camera_id)):
if labels[k] == i and camera_id[k] - 1 == j:
frames_same_cam.append(frames[k])
frame_id_min = min(frames_same_cam)
#print 'id, cam, len',i, j, len(frames_same_cam)
for item in frames_same_cam:
#if item != frame_id_min:
diff = item - frame_id_min
hist_ = int(diff / interval)
#print item, frame_id_min, diff, hist_
distribution[j][j][hist_] = distribution[j][j][
hist_] + spatial_temporal_count[i][j]
smooth = 50
for i in range(cam_num):
for j in range(cam_num):
#print("gauss "+str(i)+"->"+str(j))
distribution[i][j][:] = gauss_smooth(distribution[i][j][:], smooth)
sum_ = np.sum(distribution, axis=2)
for i in range(cam_num):
for j in range(cam_num):
distribution[i][j][:] = distribution[i][j][:] / (sum_[i][j] + eps)
return distribution # [to][from], to xxx camera, from xxx camera
if __name__ == "__main__":
data_dir = "/data/wuyiming/reid/msmt/MSMT17_V1/train/"
imgs_path = glob.glob(os.path.join(data_dir, '*', '*.jpg'))
matrix = get_st_matrix(imgs_path, pseudo_labels=None)
| 11,115 | 0 | 207 |
82b5b7b8f5f9224c7b5fcaf67ab14cb67482b2bc | 5,787 | py | Python | python/Lib/site-packages/tensorflow/contrib/nccl/ops/gen_nccl_ops.py | LiquidInkCo/ImageClassifier | c0d471a55a70b3118178488db3c005a9277baade | [
"Apache-2.0"
] | 1 | 2018-01-20T15:08:00.000Z | 2018-01-20T15:08:00.000Z | python/Lib/site-packages/tensorflow/contrib/nccl/ops/gen_nccl_ops.py | LiquidInkCo/ImageClassifier | c0d471a55a70b3118178488db3c005a9277baade | [
"Apache-2.0"
] | null | null | null | python/Lib/site-packages/tensorflow/contrib/nccl/ops/gen_nccl_ops.py | LiquidInkCo/ImageClassifier | c0d471a55a70b3118178488db3c005a9277baade | [
"Apache-2.0"
] | null | null | null | """Python wrappers around TensorFlow ops.
This file is MACHINE GENERATED! Do not edit.
"""
import collections as _collections
from google.protobuf import text_format as _text_format
from tensorflow.core.framework import op_def_pb2 as _op_def_pb2
# Needed to trigger the call to _set_call_cpp_shape_fn.
from tensorflow.python.framework import common_shapes as _common_shapes
from tensorflow.python.framework import op_def_registry as _op_def_registry
from tensorflow.python.framework import ops as _ops
from tensorflow.python.framework import op_def_library as _op_def_library
def nccl_all_reduce(input, reduction, num_devices, shared_name, name=None):
r"""Outputs a tensor containing the reduction across all input tensors passed to ops
within the same `shared_name.
The graph should be constructed so if one op runs with shared_name value `c`,
then `num_devices` ops will run with shared_name value `c`. Failure to do so
will cause the graph execution to fail to complete.
Args:
input: A `Tensor`. Must be one of the following types: `float32`, `float64`, `int32`, `int64`.
the input to the reduction
reduction: A `string` from: `"min", "max", "prod", "sum"`.
the reduction operation to perform.
num_devices: An `int`.
The number of devices participating in this reduction.
shared_name: A `string`.
Identifier that shared between ops of the same reduction.
name: A name for the operation (optional).
Returns:
A `Tensor`. Has the same type as `input`.
the value of the reduction across all `num_devices` devices.
"""
result = _op_def_lib.apply_op("NcclAllReduce", input=input,
reduction=reduction, num_devices=num_devices,
shared_name=shared_name, name=name)
return result
def nccl_broadcast_recv(shape, T, num_devices, shared_name, name=None):
r"""Sends data of shape `shape` from the NcclBroadcastSend op registered in the
same `shared_name`.
The graph should be constructed so that one device runs `NcclBroadcastSend` and
`num_devices-1` devices run NcclBroadcastRecv ops with shared_name value `c`.
Failure to do so will cause the graph execution to fail to complete.
Args:
shape: A `Tensor` of type `int64`. The shape of the output.
T: A `tf.DType` from: `tf.float32, tf.float64, tf.int32, tf.int64`.
num_devices: An `int`.
The number of devices participating in this reduction.
shared_name: A `string`.
Identifier that is shared between ops of the same broadcast.
name: A name for the operation (optional).
Returns:
A `Tensor` of type `T`.
The broadcast data received from the NcclBroadcastSend op.
"""
result = _op_def_lib.apply_op("NcclBroadcastRecv", shape=shape, T=T,
num_devices=num_devices,
shared_name=shared_name, name=name)
return result
def nccl_broadcast_send(input, num_devices, shared_name, name=None):
r"""Sends `input` to the NcclBroadcastRecv ops registered in the same `shared_name`.
The graph should be constructed so that one device runs `NcclBroadcastSend` and
`num_devices-1` devices run NcclBroadcastRecv ops with shared_name value `c`.
Failure to do so will cause the graph execution to fail to complete.
Args:
input: A `Tensor`. Must be one of the following types: `float32`, `float64`, `int32`, `int64`.
The input to the broadcast
num_devices: An `int`.
The number of devices participating in this reduction.
shared_name: A `string`.
Identifier that is shared between ops of the same broadcast.
name: A name for the operation (optional).
Returns:
The created Operation.
"""
result = _op_def_lib.apply_op("NcclBroadcastSend", input=input,
num_devices=num_devices,
shared_name=shared_name, name=name)
return result
_InitOpDefLibrary.op_list_ascii = """op {
name: "NcclAllReduce"
input_arg {
name: "input"
type_attr: "T"
}
output_arg {
name: "data"
type_attr: "T"
}
attr {
name: "reduction"
type: "string"
allowed_values {
list {
s: "min"
s: "max"
s: "prod"
s: "sum"
}
}
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
type: DT_INT32
type: DT_INT64
}
}
}
attr {
name: "num_devices"
type: "int"
}
attr {
name: "shared_name"
type: "string"
}
is_stateful: true
}
op {
name: "NcclBroadcastRecv"
input_arg {
name: "shape"
type: DT_INT64
}
output_arg {
name: "output"
type_attr: "T"
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
type: DT_INT32
type: DT_INT64
}
}
}
attr {
name: "num_devices"
type: "int"
}
attr {
name: "shared_name"
type: "string"
}
is_stateful: true
}
op {
name: "NcclBroadcastSend"
input_arg {
name: "input"
type_attr: "T"
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
type: DT_INT32
type: DT_INT64
}
}
}
attr {
name: "num_devices"
type: "int"
}
attr {
name: "shared_name"
type: "string"
}
is_stateful: true
}
"""
_op_def_lib = _InitOpDefLibrary()
| 26.18552 | 98 | 0.658027 | """Python wrappers around TensorFlow ops.
This file is MACHINE GENERATED! Do not edit.
"""
import collections as _collections
from google.protobuf import text_format as _text_format
from tensorflow.core.framework import op_def_pb2 as _op_def_pb2
# Needed to trigger the call to _set_call_cpp_shape_fn.
from tensorflow.python.framework import common_shapes as _common_shapes
from tensorflow.python.framework import op_def_registry as _op_def_registry
from tensorflow.python.framework import ops as _ops
from tensorflow.python.framework import op_def_library as _op_def_library
def nccl_all_reduce(input, reduction, num_devices, shared_name, name=None):
r"""Outputs a tensor containing the reduction across all input tensors passed to ops
within the same `shared_name.
The graph should be constructed so if one op runs with shared_name value `c`,
then `num_devices` ops will run with shared_name value `c`. Failure to do so
will cause the graph execution to fail to complete.
Args:
input: A `Tensor`. Must be one of the following types: `float32`, `float64`, `int32`, `int64`.
the input to the reduction
reduction: A `string` from: `"min", "max", "prod", "sum"`.
the reduction operation to perform.
num_devices: An `int`.
The number of devices participating in this reduction.
shared_name: A `string`.
Identifier that shared between ops of the same reduction.
name: A name for the operation (optional).
Returns:
A `Tensor`. Has the same type as `input`.
the value of the reduction across all `num_devices` devices.
"""
result = _op_def_lib.apply_op("NcclAllReduce", input=input,
reduction=reduction, num_devices=num_devices,
shared_name=shared_name, name=name)
return result
def nccl_broadcast_recv(shape, T, num_devices, shared_name, name=None):
r"""Sends data of shape `shape` from the NcclBroadcastSend op registered in the
same `shared_name`.
The graph should be constructed so that one device runs `NcclBroadcastSend` and
`num_devices-1` devices run NcclBroadcastRecv ops with shared_name value `c`.
Failure to do so will cause the graph execution to fail to complete.
Args:
shape: A `Tensor` of type `int64`. The shape of the output.
T: A `tf.DType` from: `tf.float32, tf.float64, tf.int32, tf.int64`.
num_devices: An `int`.
The number of devices participating in this reduction.
shared_name: A `string`.
Identifier that is shared between ops of the same broadcast.
name: A name for the operation (optional).
Returns:
A `Tensor` of type `T`.
The broadcast data received from the NcclBroadcastSend op.
"""
result = _op_def_lib.apply_op("NcclBroadcastRecv", shape=shape, T=T,
num_devices=num_devices,
shared_name=shared_name, name=name)
return result
def nccl_broadcast_send(input, num_devices, shared_name, name=None):
r"""Sends `input` to the NcclBroadcastRecv ops registered in the same `shared_name`.
The graph should be constructed so that one device runs `NcclBroadcastSend` and
`num_devices-1` devices run NcclBroadcastRecv ops with shared_name value `c`.
Failure to do so will cause the graph execution to fail to complete.
Args:
input: A `Tensor`. Must be one of the following types: `float32`, `float64`, `int32`, `int64`.
The input to the broadcast
num_devices: An `int`.
The number of devices participating in this reduction.
shared_name: A `string`.
Identifier that is shared between ops of the same broadcast.
name: A name for the operation (optional).
Returns:
The created Operation.
"""
result = _op_def_lib.apply_op("NcclBroadcastSend", input=input,
num_devices=num_devices,
shared_name=shared_name, name=name)
return result
def _InitOpDefLibrary():
op_list = _op_def_pb2.OpList()
_text_format.Merge(_InitOpDefLibrary.op_list_ascii, op_list)
_op_def_registry.register_op_list(op_list)
op_def_lib = _op_def_library.OpDefLibrary()
op_def_lib.add_op_list(op_list)
return op_def_lib
_InitOpDefLibrary.op_list_ascii = """op {
name: "NcclAllReduce"
input_arg {
name: "input"
type_attr: "T"
}
output_arg {
name: "data"
type_attr: "T"
}
attr {
name: "reduction"
type: "string"
allowed_values {
list {
s: "min"
s: "max"
s: "prod"
s: "sum"
}
}
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
type: DT_INT32
type: DT_INT64
}
}
}
attr {
name: "num_devices"
type: "int"
}
attr {
name: "shared_name"
type: "string"
}
is_stateful: true
}
op {
name: "NcclBroadcastRecv"
input_arg {
name: "shape"
type: DT_INT64
}
output_arg {
name: "output"
type_attr: "T"
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
type: DT_INT32
type: DT_INT64
}
}
}
attr {
name: "num_devices"
type: "int"
}
attr {
name: "shared_name"
type: "string"
}
is_stateful: true
}
op {
name: "NcclBroadcastSend"
input_arg {
name: "input"
type_attr: "T"
}
attr {
name: "T"
type: "type"
allowed_values {
list {
type: DT_FLOAT
type: DT_DOUBLE
type: DT_INT32
type: DT_INT64
}
}
}
attr {
name: "num_devices"
type: "int"
}
attr {
name: "shared_name"
type: "string"
}
is_stateful: true
}
"""
_op_def_lib = _InitOpDefLibrary()
| 244 | 0 | 23 |
91cfa64f5eaebcc6371e8bfbd6095f967a21bd64 | 52 | py | Python | python/testData/resolve/TypeUndeclaredClassAttr.py | jnthn/intellij-community | 8fa7c8a3ace62400c838e0d5926a7be106aa8557 | [
"Apache-2.0"
] | 2 | 2019-04-28T07:48:50.000Z | 2020-12-11T14:18:08.000Z | python/testData/resolve/TypeUndeclaredClassAttr.py | jnthn/intellij-community | 8fa7c8a3ace62400c838e0d5926a7be106aa8557 | [
"Apache-2.0"
] | 173 | 2018-07-05T13:59:39.000Z | 2018-08-09T01:12:03.000Z | python/testData/resolve/TypeUndeclaredClassAttr.py | jnthn/intellij-community | 8fa7c8a3ace62400c838e0d5926a7be106aa8557 | [
"Apache-2.0"
] | 2 | 2020-03-15T08:57:37.000Z | 2020-04-07T04:48:14.000Z |
print(A.my_attr)
# <ref> | 8.666667 | 16 | 0.5 | class A:
pass
print(A.my_attr)
# <ref> | 0 | -4 | 22 |
9e78a464d85758a6410cf9ef2916db721432642c | 4,860 | py | Python | radar_label_convert_kitti_format.py | wzan0001/Astyx-radar-dataset-convert-to-kitti-format | f0e6bf04fc9cd7b49c96f09803598a2c8561bf5a | [
"MIT"
] | 12 | 2019-11-04T08:56:41.000Z | 2022-03-29T05:47:14.000Z | radar_label_convert_kitti_format.py | paland3/Astyx-radar-dataset-convert-to-kitti-format | f0e6bf04fc9cd7b49c96f09803598a2c8561bf5a | [
"MIT"
] | 3 | 2019-12-04T18:19:06.000Z | 2020-10-08T12:34:21.000Z | radar_label_convert_kitti_format.py | paland3/Astyx-radar-dataset-convert-to-kitti-format | f0e6bf04fc9cd7b49c96f09803598a2c8561bf5a | [
"MIT"
] | 3 | 2019-12-04T18:06:37.000Z | 2020-10-01T09:25:10.000Z | #####################################################
##将radar 数据转为kitti格式 ##
#####################################################
import json
import math
import os
import numpy as np
import utils
| 37.384615 | 122 | 0.480864 | #####################################################
##将radar 数据转为kitti格式 ##
#####################################################
import json
import math
import os
import numpy as np
import utils
def rotMat2quatern(R):
# transform the rotation matrix into quatern
q = np.zeros(4)
K = np.zeros([4, 4])
K[0, 0] = 1 / 3 * (R[0, 0] - R[1, 1] - R[2, 2])
K[0, 1] = 1 / 3 * (R[1, 0] + R[0, 1])
K[0, 2] = 1 / 3 * (R[2, 0] + R[0, 2])
K[0, 3] = 1 / 3 * (R[1, 2] - R[2, 1])
K[1, 0] = 1 / 3 * (R[1, 0] + R[0, 1])
K[1, 1] = 1 / 3 * (R[1, 1] - R[0, 0] - R[2, 2])
K[1, 2] = 1 / 3 * (R[2, 1] + R[1, 2])
K[1, 3] = 1 / 3 * (R[2, 0] - R[0, 2])
K[2, 0] = 1 / 3 * (R[2, 0] + R[0, 2])
K[2, 1] = 1 / 3 * (R[2, 1] + R[1, 2])
K[2, 2] = 1 / 3 * (R[2, 2] - R[0, 0] - R[1, 1])
K[2, 3] = 1 / 3 * (R[0, 1] - R[1, 0])
K[3, 0] = 1 / 3 * (R[1, 2] - R[2, 1])
K[3, 1] = 1 / 3 * (R[2, 0] - R[0, 2])
K[3, 2] = 1 / 3 * (R[0, 1] - R[1, 0])
K[3, 3] = 1 / 3 * (R[0, 0] + R[1, 1] + R[2, 2])
D, V = np.linalg.eig(K)
pp = 0
for i in range(1, 4):
if(D[i] > D[pp]):
pp = i
q = V[:, pp]
q = np.array([q[3], q[0], q[1], q[2]])
#print(q)
return q
def qaut_to_angle(quat):
x=quat[0]
y=quat[1]
z=quat[2]
w=quat[3]
rol = math.atan2(2*(w*x+y*z),1-2*(x*x+y*y))#the rol is the yaw angle!
#pith = math.asin(2*(w*y-z*z))
#yaw = math.atan2(2*(w*z+x*y),1-2*(z*z+y*y))
return rol
def quaternionToRotationMatrix(quat):
q = quat.copy()
q=np.array(q)
n = np.dot(q, q)
if n < np.finfo(q.dtype).eps:
rot_matrix=np.identity(4)
return rot_matrix
q = q * np.sqrt(2.0 / n)
q = np.outer(q, q)
rot_matrix = np.array(
[[1.0 - q[2, 2] - q[3, 3], q[1, 2] + q[3, 0], q[1, 3] - q[2, 0]],
[q[1, 2] - q[3, 0], 1.0 - q[1, 1] - q[3, 3], q[2, 3] + q[1, 0]],
[q[1, 3] + q[2, 0], q[2, 3] - q[1, 0], 1.0 - q[1, 1] - q[2, 2]]],
dtype=q.dtype)
return rot_matrix
def radarcoordToCameracoordYaw(quat,frame_calib):
radar_quat_to_mat=quaternionToRotationMatrix(quat)
radar_to_camera_mat=np.array(frame_calib.tr_velodyne_to_cam)
radar_to_camera_mat=radar_to_camera_mat[:,0:3]
rot_mat=np.dot(radar_to_camera_mat,radar_quat_to_mat)
rot_quat=rotMat2quatern(rot_mat)
angles=qaut_to_angle(rot_quat)
return angles
def label_convert(save_dir,read_dir,calib_dir):
name_list=[]
for file in os.listdir(read_dir):
name_list.append(file)
for name in name_list:
read_name=read_dir+name
save_name=save_dir+name[0:6]+'.txt'
img_idx=int(name[0:6])
print(save_name)
frame_calib = utils.read_calibration(calib_dir, img_idx)
with open(save_name,mode='w')as save_txt_file_name:
with open(read_name,mode='r')as read_json_file_name:
read_object=json.load(read_json_file_name)#dict
objts=read_object['objects']#list
for oo in objts:
obj=oo#dict
anotation=[]
if obj['classname']=='Other Vehicle':
anotation.append('Other_Vehicle')
else:
anotation.append(obj['classname'])
anotation.append('0')#truncated unused
anotation.append(str(obj['occlusion']))
anotation.append('-10')#alpha unused
anotation.append('0')#2d box unuseds
anotation.append('0')
anotation.append('0')
anotation.append('0')
dim=obj['dimension3d']
anotation.append(str(dim[2]))#h
anotation.append(str(dim[1]))#w
anotation.append(str(dim[0]))#l
centerpoint=np.array(obj['center3d'])
centerpoint=np.reshape(centerpoint,(1,3))
camera_centerpoint = utils.radar_to_cam_frame(centerpoint, frame_calib)#transform to camera coordinate
anotation.append(str(camera_centerpoint[0][0]))
anotation.append(str(camera_centerpoint[0][1]+dim[2]*0.5))#top centor point
anotation.append(str(camera_centerpoint[0][2]))
orientation_quat=obj['orientation_quat']#quaterns
yaw_ang=radarcoordToCameracoordYaw(orientation_quat,frame_calib)
anotation.append(str(yaw_ang))
anotation.append('0')
str_anot=' '.join(anotation)
#print(str_anot)
save_txt_file_name.write(str_anot+'\n')
| 4,519 | 0 | 115 |
130d8cea94163011e3019f8d2e8e7db66b3df129 | 2,522 | py | Python | python/sparknlp/__init__.py | rohannng/spark-nlp | ea1b78a54223c2c94b506312367f0ac678c26228 | [
"Apache-2.0"
] | 1 | 2020-04-09T03:35:27.000Z | 2020-04-09T03:35:27.000Z | python/sparknlp/__init__.py | rohannng/spark-nlp | ea1b78a54223c2c94b506312367f0ac678c26228 | [
"Apache-2.0"
] | 2 | 2020-02-26T00:51:15.000Z | 2021-09-27T22:38:55.000Z | python/sparknlp/__init__.py | rohannng/spark-nlp | ea1b78a54223c2c94b506312367f0ac678c26228 | [
"Apache-2.0"
] | null | null | null | import sys
from pyspark.sql import SparkSession
from sparknlp import annotator
from sparknlp.base import DocumentAssembler, Finisher, TokenAssembler, Chunk2Doc, Doc2Chunk
sys.modules['com.johnsnowlabs.nlp.annotators'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.tokenizer'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.tokenizer.wordpiece'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.ner'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.ner.regex'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.ner.crf'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.ner.dl'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.pos'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.pos.perceptron'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sbd'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sbd.pragmatic'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sbd.deep'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sda'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sda.pragmatic'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sda.vivekn'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.spell'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.spell.norvig'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.spell.context'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.spell.symmetric'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.parser'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.parser.dep'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.parser.typdep'] = annotator
sys.modules['com.johnsnowlabs.nlp.embeddings'] = annotator
annotators = annotator
embeddings = annotator
| 46.703704 | 182 | 0.758128 | import sys
from pyspark.sql import SparkSession
from sparknlp import annotator
from sparknlp.base import DocumentAssembler, Finisher, TokenAssembler, Chunk2Doc, Doc2Chunk
sys.modules['com.johnsnowlabs.nlp.annotators'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.tokenizer'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.tokenizer.wordpiece'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.ner'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.ner.regex'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.ner.crf'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.ner.dl'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.pos'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.pos.perceptron'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sbd'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sbd.pragmatic'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sbd.deep'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sda'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sda.pragmatic'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.sda.vivekn'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.spell'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.spell.norvig'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.spell.context'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.spell.symmetric'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.parser'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.parser.dep'] = annotator
sys.modules['com.johnsnowlabs.nlp.annotators.parser.typdep'] = annotator
sys.modules['com.johnsnowlabs.nlp.embeddings'] = annotator
annotators = annotator
embeddings = annotator
def start(include_ocr=False):
builder = SparkSession.builder \
.appName("Spark NLP") \
.master("local[*]") \
.config("spark.driver.memory", "6G") \
.config("spark.serializer", "org.apache.spark.serializer.KryoSerializer")
if include_ocr:
builder \
.config("spark.jars.packages", "JohnSnowLabs:spark-nlp:2.1.0,com.johnsnowlabs.nlp:spark-nlp-ocr_2.11:2.1.0,javax.media.jai:com.springsource.javax.media.jai.core:1.1.3") \
.config("spark.jars.repositories", "http://repo.spring.io/plugins-release")
else:
builder.config("spark.jars.packages", "JohnSnowLabs:spark-nlp:2.1.0") \
return builder.getOrCreate()
def version():
print('2.1.0')
| 683 | 0 | 46 |
6b12d7c010c6f962cecef9162c031dc86f92b8cb | 1,567 | py | Python | cigale_all.py | wisemanp/DESSNHosts | 882c0b81b5164fe16c234366e52e99c167e948a8 | [
"MIT"
] | null | null | null | cigale_all.py | wisemanp/DESSNHosts | 882c0b81b5164fe16c234366e52e99c167e948a8 | [
"MIT"
] | null | null | null | cigale_all.py | wisemanp/DESSNHosts | 882c0b81b5164fe16c234366e52e99c167e948a8 | [
"MIT"
] | null | null | null | # -*- coding: utf-8 -*-
import numpy as np
import pandas as pd
import subprocess
import glob
import matplotlib.pyplot as plt
import seaborn as sns
import logging
import os
import argparse
import astropy.io.fits as fits
from astropy.coordinates import SkyCoord
from astropy.table import Table
from astropy import units as u
from astroquery.irsa_dust import IrsaDust
from shutil import copyfile
from utils.cigale_tools import prep_cigale_data, cigale_config, run_cigale
if __name__=="__main__":
main()
| 35.613636 | 104 | 0.708998 | # -*- coding: utf-8 -*-
import numpy as np
import pandas as pd
import subprocess
import glob
import matplotlib.pyplot as plt
import seaborn as sns
import logging
import os
import argparse
import astropy.io.fits as fits
from astropy.coordinates import SkyCoord
from astropy.table import Table
from astropy import units as u
from astroquery.irsa_dust import IrsaDust
from shutil import copyfile
from utils.cigale_tools import prep_cigale_data, cigale_config, run_cigale
def parser():
parser=argparse.ArgumentParser()
parser.add_argument('-l','--namelist',help='List of SN names as a .txt or .csv file',default = None)
parser.add_argument('-d','--dered',help='Deredden the input magnitudes?',action='store_true')
parser.add_argument('-ci','--docig',help='Do Cigale run?',action='store_true')
parser.add_argument('-ml','--ml',help ='Do ML-based cut?',action='store_true')
parser.add_argument('-fz','--fz',help='File to manually force redshifts',default=None)
parser.add_argument('-lr','--lr',help='Allow large radius hosts?',action='store_true')
return parser.parse_args()
def main():
args = parser()
prep_cigale_data(sn_name_fn = args.namelist,dered=args.dered,ml=args.ml,fz=args.fz,lr=args.lr)
if args.docig:
dered_suffix=''
if args.dered:
dered_suffix='_dered'
cigale_config('%s.dat'%(os.path.split(args.namelist)[-1].split('.')[0]+dered_suffix))
run_cigale(os.path.split(args.namelist)[-1].split('.')[0]+dered_suffix)
print ('Done!')
if __name__=="__main__":
main()
| 1,014 | 0 | 46 |
4de3db5fce1fe180f827eb981705a978e547069e | 1,705 | py | Python | tests/stix_translation/test_maas360_stix_to_query.py | rkchaudhary/stix-shifter | 96985773382e8bd1730df84c4089e620b4eb3939 | [
"Apache-2.0"
] | null | null | null | tests/stix_translation/test_maas360_stix_to_query.py | rkchaudhary/stix-shifter | 96985773382e8bd1730df84c4089e620b4eb3939 | [
"Apache-2.0"
] | null | null | null | tests/stix_translation/test_maas360_stix_to_query.py | rkchaudhary/stix-shifter | 96985773382e8bd1730df84c4089e620b4eb3939 | [
"Apache-2.0"
] | null | null | null | from stix_shifter.stix_translation import stix_translation
import unittest
translation = stix_translation.StixTranslation()
class TestStixToQuery(unittest.TestCase):
"""
class to perform unit test case guardium translate query
"""
def _test_query_assertions(self, query, queries):
"""
to assert the each query in the list against expected result
"""
self.assertIsInstance(query, dict)
self.assertIsInstance(query['queries'], list)
for index, each_query in enumerate(query.get('queries'), start=0):
print(each_query)
print("---------")
#self.assertEqual(each_query, queries[index])
self.assertEqual(True, each_query in queries) | 46.081081 | 193 | 0.677419 | from stix_shifter.stix_translation import stix_translation
import unittest
translation = stix_translation.StixTranslation()
class TestStixToQuery(unittest.TestCase):
"""
class to perform unit test case guardium translate query
"""
def _test_query_assertions(self, query, queries):
"""
to assert the each query in the list against expected result
"""
self.assertIsInstance(query, dict)
self.assertIsInstance(query['queries'], list)
for index, each_query in enumerate(query.get('queries'), start=0):
print(each_query)
print("---------")
#self.assertEqual(each_query, queries[index])
self.assertEqual(True, each_query in queries)
def test_pattern_translation_basic(self):
stix_pattern = "[email-addr:value = 'rkchaudhary@ibm.com'] AND [x-com-ibm-mdm-devices:device_id = 'ApplF2LV13JPHFM2'] START t'2018-06-01T00:00:00.009Z' STOP t'2019-11-01T01:11:11.009Z'"
query = translation.translate('maas360', 'query', '{}', stix_pattern)
print(query)
def test_pattern_translation_twoOps(self):
stix_pattern = "[email-addr:value = 'rkchaudhary@ibm.com' OR user-account:user_id = 'rkchaudhary'] START t'2018-06-01T00:00:00.009Z' STOP t'2019-11-01T01:11:11.009Z'"
query = translation.translate('maas360', 'query', '{}', stix_pattern)
print(query)
def test_pattern_translation_signle_custom(self):
stix_pattern = "[x-com-ibm-mdm-devices:device_id = 'ApplF2LV13JPHFM2'] START t'2018-06-01T00:00:00.009Z' STOP t'2019-11-01T01:11:11.009Z'"
query = translation.translate('maas360', 'query', '{}', stix_pattern)
print(query) | 882 | 0 | 81 |
77dfe6ceccd70bce06d70a820cbf8fa3dec8473f | 2,185 | py | Python | subcircuit/devices/isense.py | joehood/SubCircuit | 0097735f71b19a4d3f95696d3af0a3df4a620e25 | [
"Apache-2.0"
] | 6 | 2016-03-29T02:04:05.000Z | 2021-11-09T00:26:20.000Z | subcircuit/devices/isense.py | joehood/SubCircuit | 0097735f71b19a4d3f95696d3af0a3df4a620e25 | [
"Apache-2.0"
] | null | null | null | subcircuit/devices/isense.py | joehood/SubCircuit | 0097735f71b19a4d3f95696d3af0a3df4a620e25 | [
"Apache-2.0"
] | null | null | null | """Current Scope Device.
Copyright 2014 Joe Hood
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import subcircuit.interfaces as inter
import subcircuit.sandbox as sb
class CurrentSensorBlock(sb.Block):
"""Schematic graphical inteface for IScope device."""
friendly_name = "Current Sensor"
family = "Meters"
label = "I"
engine = CurrentSensor
symbol = sb.Symbol()
# lines:
symbol.lines.append(((80, 40), (80, 70)))
symbol.lines.append(((60, 80), (100, 80)))
# plus:
symbol.lines.append(((60, 53), (60, 63)))
symbol.lines.append(((55, 58), (65, 58)))
# circle
symbol.circles.append((75, 70, 10, 20))
| 29.133333 | 72 | 0.637986 | """Current Scope Device.
Copyright 2014 Joe Hood
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import subcircuit.interfaces as inter
import subcircuit.sandbox as sb
class CurrentSensor(inter.MNADevice, inter.CurrentSensor):
def __init__(self, nodes, **parameters):
inter.MNADevice.__init__(self, nodes, 0, **parameters)
def connect(self):
nplus, nminus, current_node = self.nodes
self.port2node = {0: self.get_node_index(nplus),
1: self.get_node_index(nminus),
2: self.get_node_index(current_node)}
def start(self, dt):
self.jac[0, 2] = 1.0
self.jac[1, 2] = -1.0
self.jac[2, 0] = 1.0
self.jac[2, 1] = -1.0
def get_current_node(self):
return self.port2node[2], -1.0
class CurrentSensorBlock(sb.Block):
"""Schematic graphical inteface for IScope device."""
friendly_name = "Current Sensor"
family = "Meters"
label = "I"
engine = CurrentSensor
symbol = sb.Symbol()
# lines:
symbol.lines.append(((80, 40), (80, 70)))
symbol.lines.append(((60, 80), (100, 80)))
# plus:
symbol.lines.append(((60, 53), (60, 63)))
symbol.lines.append(((55, 58), (65, 58)))
# circle
symbol.circles.append((75, 70, 10, 20))
def __init__(self, name):
# init super:
sb.Block.__init__(self, name, None)
# port:
self.ports['positive'] = sb.Port(self, 0, (60, 80))
self.ports['negative'] = sb.Port(self, 1, (100, 80))
self.ports['current node'] = sb.Port(self, 2, (80, 40))
def get_engine(self, nodes):
self.engine = CurrentSensor(nodes)
return self.engine
| 818 | 37 | 185 |
f4084514a406d6266af2d042d121afe74ab07c77 | 594 | py | Python | plugins/Cowsay/__init__.py | ecumene/Automata | f34a329d161111ee42caaf5fd2bca8d3a202ed39 | [
"MIT"
] | 11 | 2019-07-11T12:53:45.000Z | 2022-01-19T21:11:38.000Z | plugins/Cowsay/__init__.py | ecumene/Automata | f34a329d161111ee42caaf5fd2bca8d3a202ed39 | [
"MIT"
] | 36 | 2019-10-03T18:48:15.000Z | 2022-02-01T16:01:07.000Z | plugins/Cowsay/__init__.py | ecumene/Automata | f34a329d161111ee42caaf5fd2bca8d3a202ed39 | [
"MIT"
] | 21 | 2019-12-09T03:42:34.000Z | 2022-01-30T22:48:58.000Z | import urllib.parse
from nextcord.ext import commands
import nextcord
import httpx
from Plugin import AutomataPlugin
COWSAY_API = "https://cowsay.morecode.org/say"
class Cowsay(AutomataPlugin):
"""
Cowsay
Made using https://cowsay.morecode.org/
"""
@commands.command()
async def cowsay(self, ctx: commands.Context, message: str):
"""Responds with a cow, saying your message"""
cow = httpx.get(COWSAY_API, params={"message": message, "format": "text"}).text
message = await ctx.send(f"```{cow}```")
await message.add_reaction("🐮")
| 22.846154 | 87 | 0.6633 | import urllib.parse
from nextcord.ext import commands
import nextcord
import httpx
from Plugin import AutomataPlugin
COWSAY_API = "https://cowsay.morecode.org/say"
class Cowsay(AutomataPlugin):
"""
Cowsay
Made using https://cowsay.morecode.org/
"""
@commands.command()
async def cowsay(self, ctx: commands.Context, message: str):
"""Responds with a cow, saying your message"""
cow = httpx.get(COWSAY_API, params={"message": message, "format": "text"}).text
message = await ctx.send(f"```{cow}```")
await message.add_reaction("🐮")
| 0 | 0 | 0 |
35b767e2a5ac0d888b05fcff65cdefe560265a12 | 33,847 | py | Python | garch.py | Brigittecasro1/armagarch | dc9967363b9eeba0510540a34e1d5e987542334a | [
"MIT"
] | null | null | null | garch.py | Brigittecasro1/armagarch | dc9967363b9eeba0510540a34e1d5e987542334a | [
"MIT"
] | null | null | null | garch.py | Brigittecasro1/armagarch | dc9967363b9eeba0510540a34e1d5e987542334a | [
"MIT"
] | null | null | null | # -*- coding: utf-8 -*-
"""
Created on Fri Mar 2 20:08:14 2018
@author: Ian
"""
from basicFun import hessian_2sided
from basicFun import getLag
import numpy as np
import scipy
import shutil
import datetime
from scipy.optimize import brute
from scipy.special import gamma
from statsmodels.tsa.arima_model import ARMA
| 36.87037 | 104 | 0.429344 | # -*- coding: utf-8 -*-
"""
Created on Fri Mar 2 20:08:14 2018
@author: Ian
"""
from basicFun import hessian_2sided
from basicFun import getLag
import numpy as np
import scipy
import shutil
import datetime
from scipy.optimize import brute
from scipy.special import gamma
from statsmodels.tsa.arima_model import ARMA
class garch(object):
def __init__(self, data, PQ = (0,0), poq = (1,0,1), startingVals = None, \
constant = True, debug = False, printRes = True, fast = False,\
extraRegressors = None, dist = 'Normal'):
self._data = data
self._extraRegressors = extraRegressors
if self._extraRegressors is not None:
try:
self._numregs = np.shape(extraRegressors)[1]
except:
self._numregs = 1
else:
self._numregs = 0
self._poq = poq
self._PQ = PQ
if self._poq[1] == 0:
self._gtype = 'GARCH'
else:
self._gtype = 'GJR'
self._startVals = startingVals
self._dist = dist
self._method = 'MLE'
self._model = constant
self._debug = debug
self._printRes = printRes
self._fast = fast
#@profile
def _meanProcess(self, yt, parameters, PQ = (1,0)):
et = np.zeros((len(yt),))
c = parameters[0]
lags = getLag(yt,PQ[0])
if (PQ[0]>0) or (PQ[1]>0):
phi = parameters[1:PQ[0]+1]
theta = parameters[PQ[0]+1:PQ[0]+PQ[1]+1]
if self._numregs>0:
beta = parameters[PQ[0]+PQ[1]+1:]
for i in range(len(yt)):
ey = c
if i>0:
if PQ[0] > 0:
ytLag = lags[i]
ey = ey +ytLag@phi
if PQ[1]>0:
etLag = np.array(et[i-PQ[1]:i])[::-1]
ey = ey + etLag@theta[:PQ[1]]
et[i]=float(ey)
et = yt - et
if self._extraRegressors is not None:
if len(beta)>1:
et = et - self._extraRegressors.values@beta
else:
et = et - self._extraRegressors*beta
return np.asarray(et)
#@profile
def _normLik(self, data, ht, out=False):
"""
Likelihood function for Normal distribution
"""
if np.any(ht<=0):
nlogLik = np.Inf
else:
lls = np.log(2*np.pi) + np.log(ht) + (data)**2/ht
nlogLik = 0.5*np.sum(lls)
if np.isnan(nlogLik):
nlogLik = np.Inf
if out == False:
return nlogLik
else:
return nlogLik, lls
def _tLik(self, data, ht, nu, out=False):
"""
Likelihood function for t-Student distribution
"""
if np.any(ht<=0) or nu<=2:
nlogLik = np.Inf
else:
lls = np.log(gamma((nu+1)/2)/(np.sqrt(np.pi*(nu-2))*gamma(nu/2)))\
- 0.5*np.log(ht) - (nu+1)/2*np.log(1+data**2/(ht*(nu-2)))
nlogLik = np.sum(-lls)
if np.isnan(nlogLik):
nlogLik = np.Inf
if out == False:
return nlogLik
else:
return nlogLik, lls
def _skewtLik(self, data, ht, nu, l, out=False):
"""
Likelihood function for skew-t Distribution
"""
if np.any(ht<=0) or nu<=2 or np.abs(l)>=1:
nlogLik = np.Inf
else:
a = gamma((nu+1)/2)*np.sqrt(nu-2)*(l-1/l)
a = a/(np.sqrt(np.pi)*gamma(nu/2))
b = np.sqrt((l**2+1/l**2-1)-a**2)
tVar = -a/b
IndicF = -1*(data/np.sqrt(ht)<tVar)
IndicF = 2*IndicF+1
IndicF = 2*IndicF
lls = np.log(gamma((nu+1)/2)/(np.sqrt(np.pi*(nu-2))*gamma(nu/2)))\
+ np.log(b) + np.log(2/(l+1/l))\
- 0.5*np.log(ht)\
- 0.5*(nu+1)*np.log(1+(b*data/np.sqrt(ht)+a)**2/(nu-2)*l**IndicF)
nlogLik = np.sum(-lls)
if np.isnan(nlogLik):
nlogLik = np.Inf
if out == False:
return nlogLik
else:
return nlogLik, lls
#@profile
def _garchParUnwrap(self, parameters, poq):
omega = parameters[0]
pointer = 1
# getting alphas
if poq[0] == 0:
alpha = 0
else:
pointer = pointer+poq[0]
alpha = parameters[1:pointer]
# getting gammas
if poq[1] == 0:
gamma = 0
else:
gamma = parameters[pointer: pointer+poq[1]]
pointer = pointer+poq[1]
# getting betas
if poq[2] == 0:
beta = 0
else:
beta = parameters[pointer:pointer+poq[2]]
return omega, alpha, gamma, beta
#@profile
def _garchht(self, parameters, et, gtype = 'GARCH', poq = (1,0,1)):
# it is common to set ho as unconditional varince
ht = []
#print(parameters)
omega, alpha, gamma, beta = self._garchParUnwrap(parameters, poq)
h0 = np.mean(et**2)
ht.append(h0)
for i in np.arange(1,len(et),1):
etLag = np.array(et[i-poq[0]:i])[::-1]
htLag = np.array(ht[i-poq[2]:i])[::-1]
if gtype == 'GARCH':
tempRes = omega
try:
tempRes += alpha[:len(etLag)]@(etLag**2)
except:
pass
try:
tempRes += beta[:len(htLag)]@htLag
except:
pass
ht.append(tempRes)
elif gtype=='GJR':
etLagGamma = np.array(et[i-poq[1]:i])[::-1]
indFun = 1*(etLagGamma<0)
ht.append(omega+np.sum(alpha*etLag**2)
+np.sum(gamma*indFun*etLagGamma**2)
+np.sum(beta*np.asarray(htLag)))
# embeding the inequality for stability reasons
if (np.any(np.asarray(parameters)<0)):
ht = 0
if (np.any(np.isnan(parameters))):
ht = 0
if (1-np.sum(alpha)-np.sum(beta)-0.5*np.sum(gamma))<0:
ht = 0
return np.asarray(ht)
#@profile
def _garchll(self, parameters, data, gtype, poq, out=False, brute = False):
if (self._model == False) or (brute==True):
et = data - np.mean(data)
if self._dist =='Student':
if brute == True:
nu=3
else:
nu = parameters[-1]
elif self._dist == 'skewt':
if brute == True:
nu=3
l = 0.5
else:
nu = parameters[-2]
l = parameters[-1]
ht = self._garchht(parameters[:-1],et, gtype, poq)
else:
Mparams = parameters[:1+np.sum(self._PQ)+self._numregs]
if self._dist == 'Student':
Gparams = parameters[1+np.sum(self._PQ)+self._numregs:-1]
nu = parameters[-1]
elif self._dist == 'skewt':
nu = parameters[-2]
l = parameters[-1]
Gparams = parameters[1+np.sum(self._PQ)+self._numregs:-2]
else:
Gparams = parameters[1+np.sum(self._PQ)+self._numregs:]
et = self._meanProcess(data, Mparams, self._PQ)
ht = self._garchht(Gparams, et, gtype, poq)
if out == False:
if self._dist=='Normal':
nlogLik = self._normLik(et, ht, out)
elif self._dist == 'Student':
nlogLik = self._tLik(et, ht, nu, out)
elif self._dist == 'skewt':
nlogLik = self._skewtLik(et, ht, nu, l, out)
else:
raise TypeError('The distribution nopt implemented')
if self._debug == True:
print(parameters, nlogLik)
return nlogLik
else:
nlogLik, lls = self._normLik(et, ht, out)
return nlogLik, lls
#@profile
def _garchConst(self, parameters, data, gtype, poq, out=None):
if self._model == False:
if self._dist == 'Student':
Gparams = parameters[:-1]
nu = parameters[-1]
elif self._dist == 'skewt':
Gparams = parameters[:-2]
nu = parameters[-2]
l = parameters[-1]
else:
Gparams = parameters
omega, alpha, gamma, beta = self._garchParUnwrap(Gparams, poq)
return np.array([0.999-np.sum(alpha)-np.sum(beta)-0.5*np.sum(gamma)])
else:
Mparams = parameters[:1+np.sum(self._PQ)]
if self._dist == 'Student':
Gparams = parameters[1+np.sum(self._PQ)+self._numregs:-1]
nu = parameters[-1]
elif self._dist == 'skewt':
Gparams = parameters[1+np.sum(self._PQ)+self._numregs:-2]
nu = parameters[-2]
l = parameters[-1]
else:
Gparams = parameters[1+np.sum(self._PQ)+self._numregs:]
omega, alpha, gamma, beta = self._garchParUnwrap(Gparams, poq)
const = np.array([0.999-np.sum(alpha)-np.sum(beta)-0.5*np.sum(gamma)])
if np.sum(self._PQ)>0:
if self._PQ[0]>0:
ars = -Mparams[0:self._PQ[0]+1]
ars[0] = 1
rootsAR = 1-np.abs(np.roots(ars))
np.append(const, np.all(rootsAR>0)*2-1)
if self._PQ[1]>0:
mas = -Mparams[self._PQ[0]:]
mas[0] = 1
rootsMA = 1-np.abs(np.roots(mas))
np.append(const,np.all(rootsMA>0)*2-1)
return const
def _valsConstructor(self,z,*params):
data, gtype, poq = params
return self._garchll(z, data, gtype, poq, brute= True)
#@profile
def _getStartVals(self):
if self._startVals is None:
# perform a grid search
if self._model == True:
if (self._PQ[0]>0) | (self._PQ[1]>0):
# fitting ARMA model
tMdl = ARMA(self._data,self._PQ).fit()
startingVals = list(tMdl.params.values)
et = tMdl.resid.values
else:
startingVals=[np.mean(self._data)]
et = self._data-startingVals[0]
if self._numregs>0:
startingVals = startingVals + list(np.zeros((self._numregs,)))
else:
et = self._data
startingVals = []
# getting the starting vals for garch
params = (et, 'GARCH', (self._poq[0], 0, self._poq[2]))
# bound for omega
rranges = [slice(0.001, 0.1, 0.1)]
# range for p
for i in range(self._poq[0]):
rranges.append(slice(0.1, 0.15, 0.01))
# range for q
for i in range(self._poq[2]):
rranges.append(slice(0.6, 0.8, 0.1))
gridRes = brute(self._valsConstructor, tuple(rranges), \
args = params, full_output=True, finish=None)
vals= gridRes[0]
if self._poq[1] == 0:
startingVals = startingVals+list(vals)
else:
startingVals = startingVals+list(vals[:1+self._poq[0]])\
+ list(np.zeros((self._poq[1],)))\
+ list(vals[1+self._poq[0]:])
if self._dist == 'Student':
startingVals = startingVals+[3,]
elif self._dist == 'skewt':
startingVals = startingVals+[3,0.5]
else:
startingVals = self._startVals
return startingVals
#@profile
def fit(self):
finfo = np.finfo(np.float64)
# getting starting values
startingVals = self._getStartVals()
# creating bounds for an optimizer
bounds = []
if self._model == True:
bounds.append((-10*np.abs(np.mean(self._data)), 10*np.abs(np.mean(self._data))))
if np.sum(self._PQ)>0:
for i in range(np.sum(self._PQ)):
bounds.append((-0.999, 0.999))
if self._numregs>0:
for i in range(self._numregs):
bounds.append((-np.inf, np.inf))
# GARCH bounds
bounds.append((finfo.eps, 2*np.var(self._data)))#omega
for i in range(np.sum(self._poq)):
bounds.append((finfo.eps,0.9999))
# Distribution bounds
if self._dist == 'Student':
# above 12 degrees of freedom it converges to Normal
bounds.append((3,np.inf))
elif self._dist == 'skewt':
bounds.append((3,np.inf))
bounds.append((-0.999,0.999))
args = (np.asarray(self._data), self._gtype, self._poq)
if self._printRes == True:
optimOutput = 1
else:
optimOutput = 0
# estimating standard GARCH model
#print(startingVals)
self._estimates = scipy.optimize.fmin_slsqp(self._garchll, startingVals,
args = args,
f_ieqcons = self._garchConst,
bounds = bounds,
epsilon=1e-6, acc = 1e-7, iter=100,\
iprint = optimOutput)
# Once the model is estimated I can get the standard errors
if self._fast == False:
self._vcv = self._getvcv()
self._log_likelihood = -self._garchll(self._estimates,\
self._data,\
self._gtype,\
self._poq)
self._getICs()
self._rsquared()
self._stres = self._et/np.sqrt(self._ht)
if self._printRes == True:
self._printResults()
#@profile
def _rsquared(self):
if self._model == True:
Mparams = self._estimates[:1+np.sum(self._PQ)+self._numregs]
Gparams = self._estimates[1+np.sum(self._PQ)+self._numregs:]
omega, alpha, gamma, beta = self._garchParUnwrap(Gparams, self._poq)
self._uncondVar = omega/(1-np.sum(alpha)-np.sum(beta)-0.5*np.sum(gamma))
et = self._meanProcess(self._data, Mparams, self._PQ)
self._ht = self._garchht(Gparams, et, self._gtype, self._poq)
self._et = et
Ey = self._data - et
self._rsq = np.sum((Ey-np.mean(self._data))**2)/np.sum((self._data-np.mean(self._data))**2)
self._adjrsq =1-(1-self._rsq)*(len(self._data)-1)/(len(self._data)-np.sum(self._PQ)-1)
else:
self._et = self.data
self._ht = self._garchht(self._estimates,self._et, self._gtype, self._poq)
self._rsq = np.nan
self._adjrsq = np.nan
#@profile
def _normLf(self):
l = 1/np.sqrt(2*np.pi*self._ht)*np.exp(-(self._data
-np.mean(self._data))**2/(2*self._ht))
return np.prod(l)
#@profile
def _getICs(self):
k = len(self._estimates)
n = len(self._data)
L = self._log_likelihood
self._AIC = 2*k - 2*L
if n/k<40:
self._AIC = self._AIC + 2*k*(k+1)/(n-k-1)
self._BIC = np.log(n)*k - 2*L
self._HQIC = -2*L + (2*k*np.log(np.log(n)))
self._SIC = -2*L + np.log(n+2*k)
#@profile
def _getvcv(self):
parameters =self._estimates
data = self._data
gtype = self._gtype
poq = self._poq
T = len(data)
step = 1e-5 * parameters
scores = np.zeros((T,len(parameters)))
for i in range(len(parameters)):
h = step[i]
delta = np.zeros(len(parameters))
delta[i] = h
loglik, logliksplus = self._garchll(parameters + delta, \
data, gtype, poq, out=True)
loglik, logliksminus = self._garchll(parameters - delta, \
data, gtype, poq, out=True)
scores[:,i] = (logliksplus - logliksminus)/(2*h)
I = (scores.T @ scores)/T
args = (data, gtype, poq)
J = hessian_2sided(self._garchll, parameters, args)
J = J/T
try:
Jinv = np.mat(np.linalg.inv(J))
vcv = Jinv*np.mat(I)*Jinv/T
vcv = np.asarray(vcv)
except:
print('WARNING: Hessian is singular! St.errors are not calcualted')
vcv = np.eye(len(parameters))
return vcv
#@profile
def _printResults(self):
params = self._estimates
vcv = self._vcv
gtype = self._gtype
output = np.vstack((params,np.sqrt(np.diag(vcv)),params/np.sqrt(np.diag(vcv)))).T
if self._model== True:
meanParams = output[:1+np.sum(self._PQ)+self._numregs,:]
if self._dist == 'Student':
goutput = output[1+np.sum(self._PQ)+self._numregs:-1,:]
elif self._dist == 'skewt':
goutput = output[1+np.sum(self._PQ)+self._numregs:-2,:]
else:
goutput = output[1+np.sum(self._PQ)+self._numregs:,:]
else:
goutput = output
tab = 4
columns = shutil.get_terminal_size().columns
# printing the upper body
title = gtype+ " estimation results"
print(title.center(columns))
print('='*columns)
smallCol = columns/2-tab
sts = self._smallStats()
for i in range(8):
item1 = sts[i]
item2 = sts[i+8]
print(self._cellStr(item1[0], item1[1], smallCol) + tab*' '
+ self._cellStr(item2[0], item2[1], smallCol))
# printing the mean model
ocl = (columns)/4-tab
if self._model == True:
print('Mean Model'.center(columns))
print('='*columns)
if self._numregs==0:
self._tableOutput(meanParams, ['Constant','AR','MA'],
(1, self._PQ[0], self._PQ[1]), tab, ocl)
else:
self._tableOutput(meanParams, ['Constant','AR','MA','reg'],
(1, self._PQ[0], self._PQ[1], self._numregs),\
tab, ocl)
# print the results of mean model here
# printing the volatility model
print('Volatility Model'.center(columns))
print('='*columns)
self._tableOutput(goutput, ['omega','alpha','gamma','beta'],
(1, self._poq[0],self._poq[1],self._poq[2]), tab, ocl)
if self._dist == 'Student':
print('Distribution: Student'.center(columns))
print('='*columns)
self._tableOutput(np.atleast_2d(output[-1,:]), ['nu', ], (1, ), tab, ocl)
elif self._dist == 'skewt':
print('Distribution: Student'.center(columns))
print('='*columns)
self._tableOutput(output[-2:,:], ['nu','lambda'], (1,1), tab, ocl)
print('='*columns)
print('Covariance estimator: robust')
#@profile
def _tableOutput(self, output, rowNames, reps, tab, ocl):
columns = shutil.get_terminal_size().columns
poq = np.cumsum(reps)
pointer = 0
counter = 0
print(int(ocl)*' '+tab*' '
+ ' '*int(ocl-len('Estimate'))+'Estimate' +tab*' '
+ ' '*int(ocl-len('Std. Error'))+'Std. Error'+tab*' '
+ ' '*int(ocl-len('t-stat'))+'t-stat'
)
print('-'*columns)
if np.shape(output)[1]>1:
for i in range(len(output)):
item = np.round(output[i], decimals = 3)
# creating name
if i>= poq[pointer]:
pointer = pointer+1
while reps[pointer] == 0:
pointer = pointer+1
if reps[pointer]>1:
counter = counter+1
else:
counter = 0
elif counter >0:
counter = counter+1
if counter == 0:
rowName = rowNames[pointer]
else:
rowName = rowNames[pointer]+'['+str(counter)+']'
tabLenName = ' '*int(ocl-len(rowName))
# putting the values
est = str(item[0])
se = str(item[1])
tstat = str(item[2])
print(rowName+tabLenName+tab*' '
+' '*int(ocl-len(est)) + est+ tab*' '
+' '*int(ocl-len(se)) + se+tab*' '
+' '*int(ocl-len(tstat)) + tstat)
else:
tabLenName = ' '*int(ocl-len(rowName))
# putting the values
est = str(output[0])
se = str(output[1])
tstat = str(output[2])
print(rowName+tabLenName+tab*' '
+' '*int(ocl-len(est)) + est+ tab*' '
+' '*int(ocl-len(se)) + se+tab*' '
+' '*int(ocl-len(tstat)) + tstat)
#@profile
def _smallStats(self):
data = self._data
gtype = self._gtype
ll = self._log_likelihood
sts = []
if self._model == False:
model = 'Zero-Constant'
elif np.sum(self._PQ) == 0:
model = 'Constant'
else:
model = ''
if self._PQ[0] > 0:
model = model + 'AR'
if self._PQ[1] > 0:
model = model + 'MA'
sts.append(['Dep Variable', 'y'])
sts.append(['Mean Model', model])
sts.append(['Vol Model', gtype])
sts.append(['Distribution',self._dist])
sts.append(['Method', self._method])
sts.append(['', ''])
now = datetime.datetime.now()
sts.append(['Date', now.strftime("%a, %b %d %Y")])
sts.append(['Time', now.strftime("%H:%M:%S")])
sts.append(['R-squared', str(np.round(self._rsq, decimals=2))])
sts.append(['Adj. R-squared', str(np.round(self._adjrsq, decimals=2))])
sts.append(['Log Likelihood', str(np.round(ll, decimals=2))])
sts.append(['AIC', str(np.round(self._AIC, decimals=2))])
sts.append(['BIC', str(np.round(self._BIC, decimals=2))])
sts.append(['Num obs', str(len(data))])
sts.append(['Df Residuals', str(len(data)-len(self._estimates))])
sts.append(['Df Model', str(len(self._estimates))])
return sts
#@profile
def _cellStr(self, cellName, cellContent, length):
resLen = int(length - len(cellName) - len(cellContent))
if cellName !='':
cellName = cellName+':'
if resLen<0:
return cellName+' '+cellContent
else:
return cellName+' '*resLen + cellContent
else:
return ' '*int(length)+' '
def summary(self):
self._printResults()
def applyModel(self, newData, reconstruct = False, y0 = 0, h0=1):
if reconstruct == False:
if self._model == True:
Mparams = self._estimates[:1+np.sum(self._PQ)]
Gparams = self._estimates[1+np.sum(self._PQ):]
et = self._meanProcess(newData, Mparams, PQ = (1,0))
ht = self._garchht(Gparams, et, gtype = self._gtype, poq = self._poq)
else:
et = newData
ht = self._garchht(self._estimates, et, self._gtype, self._poq)
return [et, ht]
else:
# it means that we got innovations and need to return yts and hts
if self._model == True:
Mparams = self._estimates[:1+np.sum(self._PQ)]
Gparams = self._estimates[1+np.sum(self._PQ):]
# generate ht from the model
ht = np.zeros(np.size(newData))
#print(parameters)
omega, alpha, gamma, beta = self._garchParUnwrap(Gparams, self._poq)
ht[0] = h0
et = newData
et[0] *= np.sqrt(ht[0])
# generating variance
for i in np.arange(1,len(et),1):
etLag = np.array(et[i-self._poq[0]:i])[::-1]
htLag = np.array(ht[i-self._poq[2]:i])[::-1]
if self._gtype == 'GARCH':
tempRes = omega
try:
tempRes += alpha[:len(etLag)]@(etLag**2)
except:
pass
try:
tempRes += beta[:len(htLag)]@htLag
except:
pass
elif self._gtype=='GJR':
etLagGamma = np.array(et[i-self._poq[1]:i])[::-1]
indFun = 1*(etLagGamma<0)
tempRes = omega
try:
tempRes += alpha[:len(etLag)]@(etLag**2)
except:
pass
try:
tempRes += beta[:len(htLag)]@htLag
except:
pass
try:
tempRes += indFun*(gamma[:len(etLagGamma)]@etLagGamma)
except:
pass
if tempRes>=0:
ht[i] = tempRes
else:
ht[i] = h0
et[i] *= np.sqrt(ht[i])
# reconstructing ys
eY = np.zeros(np.size(ht))
# add constant
eY = eY+Mparams[0]
if (self._PQ[0]>0) or (self._PQ[1]>0):
phi = Mparams[1:self._PQ[0]+1]
theta = Mparams[self._PQ[0]+1:]
# check if MA is there
if self._PQ[1]>0:
etLag = getLag(et, self._PQ[1])
maComp = etLag*theta[:self._PQ[1]]
eY = eY + maComp
# check if ARMA is there
if self._PQ[0]>0:
for i in range(len(eY)):
if i == 0:
if type(phi) == float:
eY[0] = eY[0]+phi*y0
else:
eY[0] = eY[0]+phi[0]*y0
else:
ytLag = np.array(eY[i-self._PQ[0]:i])[::-1]
eY[i] = eY[i] + ytLag@phi
return [eY+et, ht]
else:
"""
This part is WRONG! You need to generate ht first and then
multiply et by sqrt(ht) the result will be yt
"""
yt = newData
ht = self._garchht(self._estimates, yt, self._gtype, self._poq)
return [yt, ht]
def predict(self, step = 1):
"""
The function does one-step ahead forecast. Simulation is not stable
This part needs some work to be done on
"""
poq = self._poq
PQ = self._PQ
htF = []
ey = []
if self._model == False:
Gparams = self._estimates
omega, alpha, gamma, beta = self._garchParUnwrap(Gparams, poq)
else:
Mparams = self._estimates[:1+np.sum(self._PQ)]
Gparams = self._estimates[1+np.sum(self._PQ):]
omega, alpha, gamma, beta = self._garchParUnwrap(Gparams, poq)
if step >1:
"""
Here I use simulations to infer the values
"""
if self._dist == 'Normal':
ets = np.random.normal(0, 1, size=(1000+step-1, 1000))
ets = ets[1000:,:]
for i in range(step):
if i == 0:
etLag = np.array(self._et[-poq[0]:])[::-1]
htLag = np.array(self._ht[-poq[2]:])[::-1]
if poq[1]>0:
etLagGamma = np.array(self._et[-poq[1]:])[::-1]
indFun = 1*(etLagGamma<0)
else:
etLagGamma = 0
indFun = 0
htFtemp = omega + np.sum(alpha*etLag**2)+ np.sum(beta*htLag)\
+ np.sum(gamma*indFun*etLagGamma**2)
htF.append(htFtemp)
if self._model == False:
ey.append(0)
else:
eyt=Mparams[0]
if PQ[0] > 0:
phi = Mparams[1:PQ[0]+1]
ytLag = np.array(self._data[-PQ[0]:])[::-1]
eyt = eyt +np.sum(ytLag*phi)
if PQ[1]>0:
theta = Mparams[1+PQ[0]:]
etLag = np.array(self._et[-PQ[1]:])[::-1]
eyt = eyt + np.sum(etLag*theta)
ey.append(eyt)
else:
htFtemp = []
for j in range(1000):
# previous volatility
htLag = np.roll(htLag,1)
htLag[0] = htF[-1]
# alpha component
etLag = np.roll(etLag,1)
etLag[0] = ets[i-1,j]
etInov = np.sum(alpha*etLag**2)
# gamma component
if poq[1]>0:
etLagGamma = np.roll(etLagGamma)
etLagGamma[0] = ets[i-1,j]
indFun = 1*(etLagGamma<0)
gammaComp = np.sum(indFun*etLagGamma*gamma)
else:
gammaComp = 0
htFtemp.append(omega + np.sum(beta*htLag)+ etInov + gammaComp)
if self._model == False:
eyt = 0
else:
eyt=Mparams[0]
if PQ[0] > 0:
phi = Mparams[1:PQ[0]+1]
ytLag = np.roll(ytLag,1)
ytLag[0] = ey[-1]
eyt = eyt +np.sum(ytLag*phi)
if PQ[1]>0:
theta = Mparams[1+PQ[0]:]
eyt = eyt + np.sum(etLag*theta)
ey.append(np.sum(eyt)/1000)
htF.append(np.sum(htFtemp)/1000)
return np.array(ey), np.array(htF)
@property
def ht(self):
return self._ht
@property
def params(self):
return self._estimates
@property
def vcv(self):
return self._vcv
@property
def data(self):
return self._data
@property
def AIC(self):
return self._AIC
@property
def BIC(self):
return self._BIC
@property
def HQIC(self):
return self._HQIC
@property
def SIC(self):
return self._SIC
@property
def ll(self):
return self._log_likelihood
@property
def et(self):
return self._et
@property
def stres(self):
return self._stres
@property
def uncvar(self):
return self._uncondVar | 26,134 | 7,355 | 24 |
7263ff6f028f606b22e4e4cb3a16f0f68dc018bf | 2,465 | py | Python | objconf/config.py | milosta/objconf | 7d8ffbe0cd89cc1330b6228d3a59c0d7fe41a648 | [
"Apache-2.0"
] | 3 | 2021-08-28T08:06:39.000Z | 2021-10-01T18:05:05.000Z | objconf/config.py | milosta/objconf | 7d8ffbe0cd89cc1330b6228d3a59c0d7fe41a648 | [
"Apache-2.0"
] | null | null | null | objconf/config.py | milosta/objconf | 7d8ffbe0cd89cc1330b6228d3a59c0d7fe41a648 | [
"Apache-2.0"
] | null | null | null | import configparser
import inspect
import json
import warnings
from enum import Enum, auto
from typing import Dict, Set, TextIO, Any, Optional, Iterable
import yaml
from objconf import attributes
class Config:
"""
`Config` is a base class for your configuration class.
Inherit from Config when defining configuration for your application.
"""
@classmethod
@classmethod
@classmethod
@classmethod
@staticmethod
| 32.866667 | 100 | 0.637728 | import configparser
import inspect
import json
import warnings
from enum import Enum, auto
from typing import Dict, Set, TextIO, Any, Optional, Iterable
import yaml
from objconf import attributes
class ExtraVals(Enum):
IGNORE = auto()
WARNING = auto()
ERROR = auto()
class Config:
"""
`Config` is a base class for your configuration class.
Inherit from Config when defining configuration for your application.
"""
@classmethod
def load_yaml(cls, stream: TextIO, extra_vals: ExtraVals = ExtraVals.WARNING,
loader=yaml.SafeLoader) -> 'Config':
return cls.load_dict(yaml.load(stream, loader), extra_vals)
@classmethod
def load_json(cls, stream: TextIO, extra_vals: ExtraVals = ExtraVals.WARNING,
**parser_kwargs) -> 'Config':
return cls.load_dict(json.load(stream, **parser_kwargs), extra_vals)
@classmethod
def load_ini(cls, stream: TextIO, extra_vals: ExtraVals = ExtraVals.WARNING,
sections: Optional[Iterable[str]] = None, **parser_kwargs) -> 'Config':
cfgparser = configparser.ConfigParser(**parser_kwargs)
cfgparser.read_file(stream)
if sections is None:
sections = cfgparser.sections()
data = {} # type: Dict[str, Any]
for section in sections:
data.update(cfgparser[section])
return cls.load_dict(data, extra_vals)
@classmethod
def load_dict(cls, data: Dict[str, Any], extra_vals: ExtraVals = ExtraVals.WARNING) -> 'Config':
config = cls()
data_keys = set(data.keys())
for attr_name, attr in inspect.getmembers(
cls, lambda x: isinstance(x, attributes.Attribute)):
value = data.get(attr.key, attr.default)
if value == attributes.UNDEFINED:
raise RuntimeError(f'Missing required attribute {attr.key}')
setattr(config, attr_name, value)
data_keys.discard(attr.key)
if data_keys:
cls.handle_extra_vals(extra_vals, data_keys)
return config
@staticmethod
def handle_extra_vals(action: ExtraVals, extras: Set[str]) -> None:
if action == ExtraVals.IGNORE:
return
msg = f'Found unrecognised configuration values: {extras}'
if action == ExtraVals.WARNING:
warnings.warn(msg)
return
if action == ExtraVals.ERROR:
raise ValueError(msg)
| 1,797 | 61 | 153 |
606368de9fea1a94e44707b87c87a602d81fa160 | 7,358 | py | Python | src/ralph/data_center/tests/factories.py | DoNnMyTh/ralph | 97b91639fa68965ad3fd9d0d2652a6545a2a5b72 | [
"Apache-2.0"
] | 1,668 | 2015-01-01T12:51:20.000Z | 2022-03-29T09:05:35.000Z | src/ralph/data_center/tests/factories.py | hq-git/ralph | e2448caf02d6e5abfd81da2cff92aefe0a534883 | [
"Apache-2.0"
] | 2,314 | 2015-01-02T13:26:26.000Z | 2022-03-29T04:06:03.000Z | src/ralph/data_center/tests/factories.py | hq-git/ralph | e2448caf02d6e5abfd81da2cff92aefe0a534883 | [
"Apache-2.0"
] | 534 | 2015-01-05T12:40:28.000Z | 2022-03-29T21:10:12.000Z | from datetime import datetime, timedelta
import factory
from factory.django import DjangoModelFactory
from factory.fuzzy import FuzzyDecimal, FuzzyInteger
from ralph.assets.models.choices import AssetSource
from ralph.assets.tests.factories import (
AssetHolderFactory,
BaseObjectFactory,
BudgetInfoFactory,
ConfigurationClassFactory,
DataCenterAssetModelFactory,
DiskFactory,
EthernetFactory,
EthernetWithIPAddressFactory,
FibreChannelCardFactory,
MemoryFactory,
ProcessorFactory,
ServiceEnvironmentFactory
)
from ralph.data_center.models.choices import ConnectionType
from ralph.data_center.models.components import DiskShare, DiskShareMount
from ralph.data_center.models.physical import (
Accessory,
ACCESSORY_DATA,
Connection,
DataCenter,
DataCenterAsset,
Rack,
RackAccessory,
ServerRoom
)
from ralph.data_center.models.virtual import (
Cluster,
ClusterType,
Database,
VIP,
VIPProtocol
)
date_now = datetime.now().date()
class DataCenterAssetFullFactory(DataCenterAssetFactory):
"""
Factory for DataCenterAsset and m2m relations
"""
rack = factory.SubFactory(RackFactory)
# m2m relations
# TODO: parent, networks (as terminators), operations, security scans,
# clusters, tags
eth1 = factory.RelatedFactory(
EthernetWithIPAddressFactory,
'base_object',
ipaddress__is_management=True,
)
eth2 = factory.RelatedFactory(EthernetFactory, 'base_object')
eth3 = factory.RelatedFactory(
EthernetWithIPAddressFactory,
'base_object',
ipaddress__dhcp_expose=True,
)
licence1 = factory.RelatedFactory(
'ralph.licences.tests.factories.BaseObjectLicenceFactory', 'base_object'
)
licence2 = factory.RelatedFactory(
'ralph.licences.tests.factories.BaseObjectLicenceFactory',
'base_object',
quantity=3
)
support1 = factory.RelatedFactory(
'ralph.supports.tests.factories.BaseObjectsSupportFactory',
'baseobject'
)
support2 = factory.RelatedFactory(
'ralph.supports.tests.factories.BaseObjectsSupportFactory',
'baseobject'
)
mem1 = factory.RelatedFactory(MemoryFactory, 'base_object')
mem2 = factory.RelatedFactory(MemoryFactory, 'base_object')
fc_card1 = factory.RelatedFactory(FibreChannelCardFactory, 'base_object')
fc_card2 = factory.RelatedFactory(FibreChannelCardFactory, 'base_object')
proc1 = factory.RelatedFactory(ProcessorFactory, 'base_object')
proc2 = factory.RelatedFactory(ProcessorFactory, 'base_object')
disk1 = factory.RelatedFactory(DiskFactory, 'base_object')
disk2 = factory.RelatedFactory(DiskFactory, 'base_object')
scmstatuscheck = factory.RelatedFactory(
'ralph.configuration_management.tests.factories.SCMStatusCheckFactory',
'base_object',
)
@factory.post_generation
| 29.432 | 80 | 0.71514 | from datetime import datetime, timedelta
import factory
from factory.django import DjangoModelFactory
from factory.fuzzy import FuzzyDecimal, FuzzyInteger
from ralph.assets.models.choices import AssetSource
from ralph.assets.tests.factories import (
AssetHolderFactory,
BaseObjectFactory,
BudgetInfoFactory,
ConfigurationClassFactory,
DataCenterAssetModelFactory,
DiskFactory,
EthernetFactory,
EthernetWithIPAddressFactory,
FibreChannelCardFactory,
MemoryFactory,
ProcessorFactory,
ServiceEnvironmentFactory
)
from ralph.data_center.models.choices import ConnectionType
from ralph.data_center.models.components import DiskShare, DiskShareMount
from ralph.data_center.models.physical import (
Accessory,
ACCESSORY_DATA,
Connection,
DataCenter,
DataCenterAsset,
Rack,
RackAccessory,
ServerRoom
)
from ralph.data_center.models.virtual import (
Cluster,
ClusterType,
Database,
VIP,
VIPProtocol
)
date_now = datetime.now().date()
class DiskShareFactory(DjangoModelFactory):
base_object = factory.SubFactory(BaseObjectFactory)
wwn = factory.Sequence(lambda n: 'wwn {}'.format(n))
class Meta:
model = DiskShare
class DiskShareMountFactory(DjangoModelFactory):
share = factory.SubFactory(DiskShareFactory)
class Meta:
model = DiskShareMount
class ClusterTypeFactory(DjangoModelFactory):
name = factory.Iterator(['Application', 'Partitional'])
class Meta:
model = ClusterType
django_get_or_create = ['name']
class ClusterFactory(DjangoModelFactory):
name = factory.Iterator(
['Databases', 'Applications', 'Switch', 'Load balancer']
)
type = factory.SubFactory(ClusterTypeFactory)
configuration_path = factory.SubFactory(ConfigurationClassFactory)
service_env = factory.SubFactory(ServiceEnvironmentFactory)
class Meta:
model = Cluster
django_get_or_create = ['name']
@factory.post_generation
def post_tags(self, create, extracted, **kwargs):
self.tags.add('abc, cde', 'xyz')
class DataCenterFactory(DjangoModelFactory):
name = factory.Iterator(['DC1', 'DC2', 'DC3', 'DC4', 'DC5'])
class Meta:
model = DataCenter
django_get_or_create = ['name']
class ServerRoomFactory(DjangoModelFactory):
name = factory.Iterator([
'Server Room A', 'Server Room B', 'Server Room C', 'Server Room D'
])
data_center = factory.SubFactory(DataCenterFactory)
class Meta:
model = ServerRoom
django_get_or_create = ['name']
class AccessoryFactory(DjangoModelFactory):
name = factory.Iterator(ACCESSORY_DATA)
class Meta:
model = Accessory
django_get_or_create = ['name']
class RackFactory(DjangoModelFactory):
name = factory.Sequence(lambda n: 'Rack #{}'.format(n + 100))
server_room = factory.SubFactory(ServerRoomFactory)
class Meta:
model = Rack
django_get_or_create = ['name']
class RackAccessoryFactory(DjangoModelFactory):
accessory = factory.SubFactory(AccessoryFactory)
rack = factory.SubFactory(RackFactory)
class Meta:
model = RackAccessory
class DataCenterAssetFactory(DjangoModelFactory):
force_depreciation = False
model = factory.SubFactory(DataCenterAssetModelFactory)
sn = factory.Faker('ssn')
barcode = factory.Sequence(lambda n: 'dc' + str(n + 10**8))
hostname = factory.Sequence(lambda n: 'ralph{}.allegro.pl'.format(n))
order_no = factory.Sequence(lambda n: 'Order number ' + str(n))
budget_info = factory.SubFactory(BudgetInfoFactory)
invoice_date = date_now - timedelta(days=15)
invoice_no = factory.Sequence(lambda n: 'Invoice number ' + str(n))
property_of = factory.SubFactory(AssetHolderFactory)
provider = factory.Iterator([
'Komputronik', 'Dell Poland', 'Oracle Poland'
])
source = factory.Iterator([
AssetSource.shipment.id, AssetSource.salvaged.id
])
price = FuzzyDecimal(10, 300)
service_env = factory.SubFactory(ServiceEnvironmentFactory)
configuration_path = factory.SubFactory(ConfigurationClassFactory)
firmware_version = factory.Sequence(lambda n: '1.1.{}'.format(n))
bios_version = factory.Sequence(lambda n: '2.2.{}'.format(n))
class Meta:
model = DataCenterAsset
class DataCenterAssetFullFactory(DataCenterAssetFactory):
"""
Factory for DataCenterAsset and m2m relations
"""
rack = factory.SubFactory(RackFactory)
# m2m relations
# TODO: parent, networks (as terminators), operations, security scans,
# clusters, tags
eth1 = factory.RelatedFactory(
EthernetWithIPAddressFactory,
'base_object',
ipaddress__is_management=True,
)
eth2 = factory.RelatedFactory(EthernetFactory, 'base_object')
eth3 = factory.RelatedFactory(
EthernetWithIPAddressFactory,
'base_object',
ipaddress__dhcp_expose=True,
)
licence1 = factory.RelatedFactory(
'ralph.licences.tests.factories.BaseObjectLicenceFactory', 'base_object'
)
licence2 = factory.RelatedFactory(
'ralph.licences.tests.factories.BaseObjectLicenceFactory',
'base_object',
quantity=3
)
support1 = factory.RelatedFactory(
'ralph.supports.tests.factories.BaseObjectsSupportFactory',
'baseobject'
)
support2 = factory.RelatedFactory(
'ralph.supports.tests.factories.BaseObjectsSupportFactory',
'baseobject'
)
mem1 = factory.RelatedFactory(MemoryFactory, 'base_object')
mem2 = factory.RelatedFactory(MemoryFactory, 'base_object')
fc_card1 = factory.RelatedFactory(FibreChannelCardFactory, 'base_object')
fc_card2 = factory.RelatedFactory(FibreChannelCardFactory, 'base_object')
proc1 = factory.RelatedFactory(ProcessorFactory, 'base_object')
proc2 = factory.RelatedFactory(ProcessorFactory, 'base_object')
disk1 = factory.RelatedFactory(DiskFactory, 'base_object')
disk2 = factory.RelatedFactory(DiskFactory, 'base_object')
scmstatuscheck = factory.RelatedFactory(
'ralph.configuration_management.tests.factories.SCMStatusCheckFactory',
'base_object',
)
@factory.post_generation
def post_tags(self, create, extracted, **kwargs):
self.tags.add('abc, cde', 'xyz')
class ConnectionFactory(DjangoModelFactory):
outbound = factory.SubFactory(DataCenterAssetFactory)
inbound = factory.SubFactory(DataCenterAssetFactory)
connection_type = factory.Iterator([ConnectionType.network.id])
class Meta:
model = Connection
class DatabaseFactory(DjangoModelFactory):
service_env = factory.SubFactory(ServiceEnvironmentFactory)
class Meta:
model = Database
class VIPFactory(DjangoModelFactory):
name = factory.Sequence(lambda n: 'ralph-test{}.local'.format(n))
# IPAddressFactory is given as string to avoid circular imports here.
ip = factory.SubFactory('ralph.networks.tests.factories.IPAddressFactory')
port = FuzzyInteger(1024, 49151)
protocol = factory.Iterator([VIPProtocol.TCP.id, VIPProtocol.UDP.id])
service_env = factory.SubFactory(ServiceEnvironmentFactory)
class Meta:
model = VIP
class VIPFullFactory(VIPFactory):
parent = factory.SubFactory(Cluster)
| 138 | 3,920 | 348 |
6448bef424e00a080c08c631644ca96fc804f43a | 1,926 | py | Python | 6_survival_analysis/data_utilities.py | jjc2718/mutation-fn | e6bab15109a79c7d42dcdbedb1b949a6289d8958 | [
"BSD-3-Clause"
] | null | null | null | 6_survival_analysis/data_utilities.py | jjc2718/mutation-fn | e6bab15109a79c7d42dcdbedb1b949a6289d8958 | [
"BSD-3-Clause"
] | null | null | null | 6_survival_analysis/data_utilities.py | jjc2718/mutation-fn | e6bab15109a79c7d42dcdbedb1b949a6289d8958 | [
"BSD-3-Clause"
] | null | null | null | """
Utilities for loading and preprocessing relevant data.
"""
import pandas as pd
def load_cnv_data(cnv_file, copy_samples, threshold='moderate'):
"""Load and threshold CNV data file from GDC."""
# load raw copy info tsv file
copy_thresh_df = (
pd.read_csv(cnv_file, sep='\t', index_col=0)
.drop(columns=['Locus ID', 'Cytoband'])
)
# drop everything after TCGA sample identifier, use sample as index
copy_thresh_df.columns = copy_thresh_df.columns.str[0:15]
# orient as samples x columns, harmonize samples, and fill NA values
copy_samples = (
copy_samples.intersection(set(copy_thresh_df.columns))
)
copy_thresh_df = (copy_thresh_df
.T
.loc[sorted(copy_samples)]
.fillna(0)
.astype(int)
)
# make sure there's no duplicate samples after we subset
assert copy_thresh_df.index.duplicated().sum() == 0
# thresholded copy number includes 5 values [-2, -1, 0, 1, 2], which
# correspond to "deep loss", "moderate loss", "no change",
# "moderate gain", and "deep gain", respectively.
if threshold == 'moderate':
# here we want to use "moderate" and "deep" loss/gain as 1
copy_loss_df = (copy_thresh_df
.replace(to_replace=[1, 2], value=0)
.replace(to_replace=[-1, -2], value=1)
)
copy_gain_df = (copy_thresh_df
.replace(to_replace=[1, 2], value=1)
.replace(to_replace=[-1, -2], value=0)
)
elif threshold == 'deep':
# here we want to use only "deep" loss/gain as 1
copy_loss_df = (copy_thresh_df
.replace(to_replace=[1, 2, -1], value=0)
.replace(to_replace=[-2], value=1)
)
copy_gain_df = (copy_thresh_df
.replace(to_replace=[2], value=1)
.replace(to_replace=[1, -1, -2], value=0)
)
return copy_loss_df, copy_gain_df
| 34.392857 | 72 | 0.611111 | """
Utilities for loading and preprocessing relevant data.
"""
import pandas as pd
def load_cnv_data(cnv_file, copy_samples, threshold='moderate'):
"""Load and threshold CNV data file from GDC."""
# load raw copy info tsv file
copy_thresh_df = (
pd.read_csv(cnv_file, sep='\t', index_col=0)
.drop(columns=['Locus ID', 'Cytoband'])
)
# drop everything after TCGA sample identifier, use sample as index
copy_thresh_df.columns = copy_thresh_df.columns.str[0:15]
# orient as samples x columns, harmonize samples, and fill NA values
copy_samples = (
copy_samples.intersection(set(copy_thresh_df.columns))
)
copy_thresh_df = (copy_thresh_df
.T
.loc[sorted(copy_samples)]
.fillna(0)
.astype(int)
)
# make sure there's no duplicate samples after we subset
assert copy_thresh_df.index.duplicated().sum() == 0
# thresholded copy number includes 5 values [-2, -1, 0, 1, 2], which
# correspond to "deep loss", "moderate loss", "no change",
# "moderate gain", and "deep gain", respectively.
if threshold == 'moderate':
# here we want to use "moderate" and "deep" loss/gain as 1
copy_loss_df = (copy_thresh_df
.replace(to_replace=[1, 2], value=0)
.replace(to_replace=[-1, -2], value=1)
)
copy_gain_df = (copy_thresh_df
.replace(to_replace=[1, 2], value=1)
.replace(to_replace=[-1, -2], value=0)
)
elif threshold == 'deep':
# here we want to use only "deep" loss/gain as 1
copy_loss_df = (copy_thresh_df
.replace(to_replace=[1, 2, -1], value=0)
.replace(to_replace=[-2], value=1)
)
copy_gain_df = (copy_thresh_df
.replace(to_replace=[2], value=1)
.replace(to_replace=[1, -1, -2], value=0)
)
return copy_loss_df, copy_gain_df
| 0 | 0 | 0 |
b569ffa3d70d74180c922aef3a4e0e8b51d61ceb | 2,856 | py | Python | data/test/python/d7a86a2141a7402bd2a6b7fe2a5021a5e47898e7test_RobotController.py | harshp8l/deep-learning-lang-detection | 2a54293181c1c2b1a2b840ddee4d4d80177efb33 | [
"MIT"
] | 84 | 2017-10-25T15:49:21.000Z | 2021-11-28T21:25:54.000Z | data/test/python/d7a86a2141a7402bd2a6b7fe2a5021a5e47898e7test_RobotController.py | vassalos/deep-learning-lang-detection | cbb00b3e81bed3a64553f9c6aa6138b2511e544e | [
"MIT"
] | 5 | 2018-03-29T11:50:46.000Z | 2021-04-26T13:33:18.000Z | data/test/python/d7a86a2141a7402bd2a6b7fe2a5021a5e47898e7test_RobotController.py | vassalos/deep-learning-lang-detection | cbb00b3e81bed3a64553f9c6aa6138b2511e544e | [
"MIT"
] | 24 | 2017-11-22T08:31:00.000Z | 2022-03-27T01:22:31.000Z | #Tests for RobotController
#Author: Witold Wasilewski 2011
from RoboticFramework.RobotController.RobotController import RobotController
from RoboticFramework.RobotModelBounder import RobotModelBounder
from RoboticFramework.RobotArm import RobotArm
from config import Config
from RoboticFramework.RobotController.Delegate.RobotControllerRecordingDelegate import RobotControllerRecordingDelegate
from RoboticFramework.RobotController.Event.NewPositionEvent import NewPositionEvent | 38.08 | 119 | 0.723389 | #Tests for RobotController
#Author: Witold Wasilewski 2011
from RoboticFramework.RobotController.RobotController import RobotController
from RoboticFramework.RobotModelBounder import RobotModelBounder
from RoboticFramework.RobotArm import RobotArm
from config import Config
from RoboticFramework.RobotController.Delegate.RobotControllerRecordingDelegate import RobotControllerRecordingDelegate
from RoboticFramework.RobotController.Event.NewPositionEvent import NewPositionEvent
class TestRobotController:
def setup_method(self, method):
configuration = Config( "settings.cfg" )
initPositions = configuration.initPositions
constrainments = configuration.constrainments
maxSpeed = configuration.maxSpeed
accuracy = configuration.accuracy
robotArm = RobotArm( initPositions, constrainments, maxSpeed, accuracy )
#init model bounder
robotModelBounder = RobotModelBounder( robotArm, [], 0, 0 )
#setup robotController
self.robotController = RobotController(robotArm, robotModelBounder, lambda: True )
def test_startRecording_simple(self):
self.robotController.startRecording()
assert self.robotController.isRecording
def test_stopRecording_simple(self):
self.robotController.startRecording()
self.robotController.stopRecording()
assert not self.robotController.isRecording
def test_addDelegate_simple(self):
delegate = RobotControllerRecordingDelegate()
self.robotController.addDelegate(delegate)
assert self.robotController.hasDelegate(delegate)
def test_removeDelegate_simple(self):
delegate = RobotControllerRecordingDelegate()
self.robotController.addDelegate(delegate)
self.robotController.removeDelegate(delegate)
assert not self.robotController.hasDelegate(delegate)
def test_invokeDelagate_1(self):
delegate = RobotControllerRecordingDelegate()
delegate.recording = True
self.robotController.addDelegate(delegate)
event = NewPositionEvent("data")
self.robotController.invokeEvent(event)
assert delegate.sequence.amount() == 1
def test_invokeDelegate_Many(self):
delegate = RobotControllerRecordingDelegate()
delegate.recording = True
delegate2 = RobotControllerRecordingDelegate()
delegate2.recording = True
self.robotController.addDelegate(delegate)
self.robotController.addDelegate(delegate2)
event = NewPositionEvent("data")
self.robotController.invokeEvent(event)
assert delegate.sequence.amount() == 1
assert delegate2.sequence.amount() == 1
def teardown_method(self, method):
del self.robotController | 2,097 | 5 | 275 |
0e23a2ee6bb3711665ea38b27a094f8f0a270862 | 12,696 | py | Python | mirdata/annotations.py | chrisdonahue/mirdata | c9906e0948adcc75183f5246e7baa879022efcdb | [
"BSD-3-Clause"
] | 1 | 2021-02-24T08:31:14.000Z | 2021-02-24T08:31:14.000Z | mirdata/annotations.py | chrisdonahue/mirdata | c9906e0948adcc75183f5246e7baa879022efcdb | [
"BSD-3-Clause"
] | 1 | 2021-03-15T20:37:41.000Z | 2021-03-19T10:35:33.000Z | mirdata/annotations.py | chrisdonahue/mirdata | c9906e0948adcc75183f5246e7baa879022efcdb | [
"BSD-3-Clause"
] | 1 | 2021-05-03T19:34:46.000Z | 2021-05-03T19:34:46.000Z | """mirdata annotation data types
"""
import numpy as np
class Annotation(object):
"""Annotation base class"""
class BeatData(Annotation):
"""BeatData class
Attributes:
times (np.ndarray): array of time stamps (as floats) in seconds
with positive, strictly increasing values
positions (np.ndarray or None): array of beat positions (as ints)
e.g. 1, 2, 3, 4
"""
class SectionData(Annotation):
"""SectionData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
times should be positive and intervals should have
non-negative duration
labels (list or None): list of labels (as strings)
"""
class NoteData(Annotation):
"""NoteData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
notes (np.ndarray): array of notes (as floats) in Hz
confidence (np.ndarray or None): array of confidence values
between 0 and 1
"""
class ChordData(Annotation):
"""ChordData class
Attributes:
intervals (np.ndarray or None): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
labels (list): list chord labels (as strings)
confidence (np.ndarray or None): array of confidence values
between 0 and 1
"""
class F0Data(Annotation):
"""F0Data class
Attributes:
times (np.ndarray): array of time stamps (as floats) in seconds
with positive, strictly increasing values
frequencies (np.ndarray): array of frequency values (as floats)
in Hz
confidence (np.ndarray or None): array of confidence values
between 0 and 1
"""
class MultiF0Data(Annotation):
"""MultiF0Data class
Attributes:
times (np.ndarray): array of time stamps (as floats) in seconds
with positive, strictly increasing values
frequency_list (list): list of lists of frequency values (as floats)
in Hz
confidence_list (list or None): list of lists of confidence values
between 0 and 1
"""
class KeyData(Annotation):
"""KeyData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
keys (list): list key labels (as strings)
"""
class LyricData(Annotation):
"""LyricData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
lyrics (list): list of lyrics (as strings)
pronunciations (list or None): list of pronunciations (as strings)
"""
class TempoData(Annotation):
"""TempoData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
value (list): array of tempo values (as floats)
confidence (np.ndarray or None): array of confidence values
between 0 and 1
"""
class EventData(Annotation):
"""TempoData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
events (list): list of event labels (as strings)
"""
def validate_array_like(array_like, expected_type, expected_dtype, none_allowed=False):
"""Validate that array-like object is well formed
If array_like is None, validation passes automatically.
Args:
array_like (array-like): object to validate
expected_type (type): expected type, either list or np.ndarray
expected_dtype (type): expected dtype
none_allowed (bool): if True, allows array to be None
Raises:
TypeError: if type/dtype does not match expected_type/expected_dtype
ValueError: if array
"""
if array_like is None:
if none_allowed:
return
else:
raise ValueError("array_like cannot be None")
assert expected_type in [
list,
np.ndarray,
], "expected type must be a list or np.ndarray"
if not isinstance(array_like, expected_type):
raise TypeError(
f"Object should be a {expected_type}, but is a {type(array_like)}"
)
if expected_type == list and not all(
isinstance(n, expected_dtype) for n in array_like
):
raise TypeError(f"List elements should all have type {expected_dtype}")
if expected_type == np.ndarray and array_like.dtype != expected_dtype:
raise TypeError(
f"Array should have dtype {expected_dtype} but has {array_like.dtype}"
)
if np.asarray(array_like).size == 0:
raise ValueError("Object should not be empty, use None instead")
def validate_lengths_equal(array_list):
"""Validate that arrays in list are equal in length
Some arrays may be None, and the validation for these are skipped.
Args:
array_list (list): list of array-like objects
Raises:
ValueError: if arrays are not equal in length
"""
if len(array_list) == 1:
return
for att1, att2 in zip(array_list[:1], array_list[1:]):
if att1 is None or att2 is None:
continue
if not len(att1) == len(att2):
raise ValueError("Arrays have unequal length")
def validate_confidence(confidence):
"""Validate if confidence is well-formed.
If confidence is None, validation passes automatically
Args:
confidence (np.ndarray): an array of confidence values
Raises:
ValueError: if confidence are not between 0 and 1
"""
if confidence is None:
return
confidence_shape = np.shape(confidence)
if len(confidence_shape) != 1:
raise ValueError(
f"Confidence should be 1d, but array has shape {confidence_shape}"
)
if (confidence < 0).any() or (confidence > 1).any():
raise ValueError("confidence should be between 0 and 1")
def validate_times(times):
"""Validate if times are well-formed.
If times is None, validation passes automatically
Args:
times (np.ndarray): an array of time stamps
Raises:
ValueError: if times have negative values or are non-increasing
"""
if times is None:
return
time_shape = np.shape(times)
if len(time_shape) != 1:
raise ValueError(f"Times should be 1d, but array has shape {time_shape}")
if (times < 0).any():
raise ValueError("times should be positive numbers")
if (times[1:] - times[:-1] <= 0).any():
raise ValueError("times should be strictly increasing")
def validate_intervals(intervals):
"""Validate if intervals are well-formed.
If intervals is None, validation passes automatically
Args:
intervals (np.ndarray): (n x 2) array
Raises:
ValueError: if intervals have an invalid shape, have negative values
or if end times are smaller than start times.
"""
if intervals is None:
return
# validate that intervals have the correct shape
interval_shape = np.shape(intervals)
if len(interval_shape) != 2 or interval_shape[1] != 2:
raise ValueError(
f"Intervals should be arrays with two columns, but array has {interval_shape}"
)
# validate that time stamps are all positive numbers
if (intervals < 0).any():
raise ValueError(f"Interval values should be nonnegative numbers")
# validate that end times are bigger than start times
elif (intervals[:, 1] - intervals[:, 0] < 0).any():
raise ValueError(f"Interval start times must be smaller than end times")
| 31.503722 | 90 | 0.658239 | """mirdata annotation data types
"""
import numpy as np
class Annotation(object):
"""Annotation base class"""
def __repr__(self):
attributes = [v for v in dir(self) if not v.startswith("_")]
repr_str = f"{self.__class__.__name__}({', '.join(attributes)})"
return repr_str
class BeatData(Annotation):
"""BeatData class
Attributes:
times (np.ndarray): array of time stamps (as floats) in seconds
with positive, strictly increasing values
positions (np.ndarray or None): array of beat positions (as ints)
e.g. 1, 2, 3, 4
"""
def __init__(self, times, positions=None):
validate_array_like(times, np.ndarray, float)
validate_array_like(positions, np.ndarray, int, none_allowed=True)
validate_lengths_equal([times, positions])
validate_times(times)
self.times = times
self.positions = positions
class SectionData(Annotation):
"""SectionData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
times should be positive and intervals should have
non-negative duration
labels (list or None): list of labels (as strings)
"""
def __init__(self, intervals, labels=None):
validate_array_like(intervals, np.ndarray, float)
validate_array_like(labels, list, str, none_allowed=True)
validate_lengths_equal([intervals, labels])
validate_intervals(intervals)
self.intervals = intervals
self.labels = labels
class NoteData(Annotation):
"""NoteData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
notes (np.ndarray): array of notes (as floats) in Hz
confidence (np.ndarray or None): array of confidence values
between 0 and 1
"""
def __init__(self, intervals, notes, confidence=None):
validate_array_like(intervals, np.ndarray, float)
validate_array_like(notes, np.ndarray, float)
validate_array_like(confidence, np.ndarray, float, none_allowed=True)
validate_lengths_equal([intervals, notes, confidence])
validate_intervals(intervals)
validate_confidence(confidence)
self.intervals = intervals
self.notes = notes
self.confidence = confidence
class ChordData(Annotation):
"""ChordData class
Attributes:
intervals (np.ndarray or None): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
labels (list): list chord labels (as strings)
confidence (np.ndarray or None): array of confidence values
between 0 and 1
"""
def __init__(self, intervals, labels, confidence=None):
validate_array_like(intervals, np.ndarray, float)
validate_array_like(labels, list, str)
validate_array_like(confidence, np.ndarray, float, none_allowed=True)
validate_lengths_equal([intervals, labels, confidence])
validate_intervals(intervals)
validate_confidence(confidence)
self.intervals = intervals
self.labels = labels
self.confidence = confidence
class F0Data(Annotation):
"""F0Data class
Attributes:
times (np.ndarray): array of time stamps (as floats) in seconds
with positive, strictly increasing values
frequencies (np.ndarray): array of frequency values (as floats)
in Hz
confidence (np.ndarray or None): array of confidence values
between 0 and 1
"""
def __init__(self, times, frequencies, confidence=None):
validate_array_like(times, np.ndarray, float)
validate_array_like(frequencies, np.ndarray, float)
validate_array_like(confidence, np.ndarray, float, none_allowed=True)
validate_lengths_equal([times, frequencies, confidence])
validate_times(times)
validate_confidence(confidence)
self.times = times
self.frequencies = frequencies
self.confidence = confidence
class MultiF0Data(Annotation):
"""MultiF0Data class
Attributes:
times (np.ndarray): array of time stamps (as floats) in seconds
with positive, strictly increasing values
frequency_list (list): list of lists of frequency values (as floats)
in Hz
confidence_list (list or None): list of lists of confidence values
between 0 and 1
"""
def __init__(self, times, frequency_list, confidence_list=None):
validate_array_like(times, np.ndarray, float)
validate_array_like(frequency_list, list, list)
validate_array_like(confidence_list, list, list, none_allowed=True)
validate_lengths_equal([times, frequency_list, confidence_list])
validate_times(times)
self.times = times
self.frequency_list = frequency_list
self.confidence_list = confidence_list
class KeyData(Annotation):
"""KeyData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
keys (list): list key labels (as strings)
"""
def __init__(self, intervals, keys):
validate_array_like(intervals, np.ndarray, float)
validate_array_like(keys, list, str)
validate_lengths_equal([intervals, keys])
validate_intervals(intervals)
self.intervals = intervals
self.keys = keys
class LyricData(Annotation):
"""LyricData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
lyrics (list): list of lyrics (as strings)
pronunciations (list or None): list of pronunciations (as strings)
"""
def __init__(self, intervals, lyrics, pronunciations=None):
validate_array_like(intervals, np.ndarray, float)
validate_array_like(lyrics, list, str)
validate_array_like(pronunciations, list, str, none_allowed=True)
validate_lengths_equal([intervals, lyrics, pronunciations])
validate_intervals(intervals)
self.intervals = intervals
self.lyrics = lyrics
self.pronunciations = pronunciations
class TempoData(Annotation):
"""TempoData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
value (list): array of tempo values (as floats)
confidence (np.ndarray or None): array of confidence values
between 0 and 1
"""
def __init__(self, intervals, value, confidence=None):
validate_array_like(intervals, np.ndarray, float)
validate_array_like(value, np.ndarray, float)
validate_array_like(confidence, np.ndarray, float, none_allowed=True)
validate_lengths_equal([intervals, value, confidence])
validate_intervals(intervals)
validate_confidence(confidence)
self.intervals = intervals
self.value = value
self.confidence = confidence
class EventData(Annotation):
"""TempoData class
Attributes:
intervals (np.ndarray): (n x 2) array of intervals
(as floats) in seconds in the form [start_time, end_time]
with positive time stamps and end_time >= start_time.
events (list): list of event labels (as strings)
"""
def __init__(self, intervals, events):
validate_array_like(intervals, np.ndarray, float)
validate_array_like(events, list, str)
validate_lengths_equal([intervals, events])
validate_intervals(intervals)
self.intervals = intervals
self.events = events
def validate_array_like(array_like, expected_type, expected_dtype, none_allowed=False):
"""Validate that array-like object is well formed
If array_like is None, validation passes automatically.
Args:
array_like (array-like): object to validate
expected_type (type): expected type, either list or np.ndarray
expected_dtype (type): expected dtype
none_allowed (bool): if True, allows array to be None
Raises:
TypeError: if type/dtype does not match expected_type/expected_dtype
ValueError: if array
"""
if array_like is None:
if none_allowed:
return
else:
raise ValueError("array_like cannot be None")
assert expected_type in [
list,
np.ndarray,
], "expected type must be a list or np.ndarray"
if not isinstance(array_like, expected_type):
raise TypeError(
f"Object should be a {expected_type}, but is a {type(array_like)}"
)
if expected_type == list and not all(
isinstance(n, expected_dtype) for n in array_like
):
raise TypeError(f"List elements should all have type {expected_dtype}")
if expected_type == np.ndarray and array_like.dtype != expected_dtype:
raise TypeError(
f"Array should have dtype {expected_dtype} but has {array_like.dtype}"
)
if np.asarray(array_like).size == 0:
raise ValueError("Object should not be empty, use None instead")
def validate_lengths_equal(array_list):
"""Validate that arrays in list are equal in length
Some arrays may be None, and the validation for these are skipped.
Args:
array_list (list): list of array-like objects
Raises:
ValueError: if arrays are not equal in length
"""
if len(array_list) == 1:
return
for att1, att2 in zip(array_list[:1], array_list[1:]):
if att1 is None or att2 is None:
continue
if not len(att1) == len(att2):
raise ValueError("Arrays have unequal length")
def validate_confidence(confidence):
"""Validate if confidence is well-formed.
If confidence is None, validation passes automatically
Args:
confidence (np.ndarray): an array of confidence values
Raises:
ValueError: if confidence are not between 0 and 1
"""
if confidence is None:
return
confidence_shape = np.shape(confidence)
if len(confidence_shape) != 1:
raise ValueError(
f"Confidence should be 1d, but array has shape {confidence_shape}"
)
if (confidence < 0).any() or (confidence > 1).any():
raise ValueError("confidence should be between 0 and 1")
def validate_times(times):
"""Validate if times are well-formed.
If times is None, validation passes automatically
Args:
times (np.ndarray): an array of time stamps
Raises:
ValueError: if times have negative values or are non-increasing
"""
if times is None:
return
time_shape = np.shape(times)
if len(time_shape) != 1:
raise ValueError(f"Times should be 1d, but array has shape {time_shape}")
if (times < 0).any():
raise ValueError("times should be positive numbers")
if (times[1:] - times[:-1] <= 0).any():
raise ValueError("times should be strictly increasing")
def validate_intervals(intervals):
"""Validate if intervals are well-formed.
If intervals is None, validation passes automatically
Args:
intervals (np.ndarray): (n x 2) array
Raises:
ValueError: if intervals have an invalid shape, have negative values
or if end times are smaller than start times.
"""
if intervals is None:
return
# validate that intervals have the correct shape
interval_shape = np.shape(intervals)
if len(interval_shape) != 2 or interval_shape[1] != 2:
raise ValueError(
f"Intervals should be arrays with two columns, but array has {interval_shape}"
)
# validate that time stamps are all positive numbers
if (intervals < 0).any():
raise ValueError(f"Interval values should be nonnegative numbers")
# validate that end times are bigger than start times
elif (intervals[:, 1] - intervals[:, 0] < 0).any():
raise ValueError(f"Interval start times must be smaller than end times")
| 4,043 | 0 | 297 |
262bb9619caacedf94868b2f81681a4d5f616beb | 583 | py | Python | day01/ex02/test.py | agelloz/42AI-python-bootcamp | 843099a6f6ea088f7c2f415ed0a33e9decd20641 | [
"MIT"
] | 1 | 2019-11-11T10:37:49.000Z | 2019-11-11T10:37:49.000Z | day01/ex02/test.py | agelloz/42AI-python-bootcamp | 843099a6f6ea088f7c2f415ed0a33e9decd20641 | [
"MIT"
] | null | null | null | day01/ex02/test.py | agelloz/42AI-python-bootcamp | 843099a6f6ea088f7c2f415ed0a33e9decd20641 | [
"MIT"
] | null | null | null | from vector import Vector
v1 = Vector([0.0, 1.0, 2.0, 3.0])
v2 = Vector(3)
v3 = Vector((10, 15))
v4 = Vector(5)
v5 = Vector([5.0])
print(v1)
print(v2)
print(v3)
print(v4)
print(v5)
print(repr(v5))
print("\nadd")
v6 = v1 + v2
v6 = v3 + v4
v6 = v5 + 4
v6 = 7 + v5
v6 = v2 + 5
v6 = 12 + v1
print("\nsub")
v6 = v1 - v2
v6 = v3 - v4
v6 = v5 - 4
v6 = 7 - v5
v6 = v2 - 5
v6 = 12 - v1
print("\ndiv")
v6 = v1 / v2
v6 = v3 / v4
v6 = v5 / 4
v6 = 7 / v5
v6 = v2 / 5
v6 = 12 / v1
print("\nmul")
print(str(v1 * v2))
print(str(v3 * v4))
v6 = v5 * 4
v6 = 7 * v5
v6 = v2 * 5
v6 = 12 * v1
#print(v2)
| 13.55814 | 33 | 0.533448 | from vector import Vector
v1 = Vector([0.0, 1.0, 2.0, 3.0])
v2 = Vector(3)
v3 = Vector((10, 15))
v4 = Vector(5)
v5 = Vector([5.0])
print(v1)
print(v2)
print(v3)
print(v4)
print(v5)
print(repr(v5))
print("\nadd")
v6 = v1 + v2
v6 = v3 + v4
v6 = v5 + 4
v6 = 7 + v5
v6 = v2 + 5
v6 = 12 + v1
print("\nsub")
v6 = v1 - v2
v6 = v3 - v4
v6 = v5 - 4
v6 = 7 - v5
v6 = v2 - 5
v6 = 12 - v1
print("\ndiv")
v6 = v1 / v2
v6 = v3 / v4
v6 = v5 / 4
v6 = 7 / v5
v6 = v2 / 5
v6 = 12 / v1
print("\nmul")
print(str(v1 * v2))
print(str(v3 * v4))
v6 = v5 * 4
v6 = 7 * v5
v6 = v2 * 5
v6 = 12 * v1
#print(v2)
| 0 | 0 | 0 |