Skip to content

πŸ”οΈ Assign Peaks

Open In Colab


The ChromAnalyzer class in the chromatopy library provides several methods for adding and defining molecules, that allow later extraction and processing of the data. Information on a molecule is defined in regards of the intend of the measurement. This means that besides a molecule's name, its retention time, also the initial concentration and the respective unit are added for time-course measurements.

Molecules are defined using the define_molecule method. It adds a molecule to the list of molecules within the ChromAnalyzer object. This method requires several parameters, including the internal identifier, PubChem CID, and retention time, among others.

Required parameters:

  • id: Internal identifier of the molecule, such as s0, ABTS or A0_34S.
  • pubchem_cid: PubChem CID of the molecule.
  • retention_time: Retention time for peak annotation in minutes.

Optional parameters:

  • init_conc: Initial concentration of the molecule. Defaults to None
  • conc_unit: Unit of the concentration. Defaults to None.
  • name: Name of the molecule. If not provided, the name is retrieved from the PubChem database. Defaults to None.
  • retention_tolerance: Retention time tolerance for peak annotation in minutes. Defaults to 0.1.
  • wavelength: Wavelength of the detector on which the molecule was detected. Defaults to None.

Returns:

  • The method returns a Molecule object that is added to the molecules list within the ChromAnalyzer object.
How it works

Once the molecule is defined, all peaks within the chromatographic data that match the retention time within the specified tolerance are annotated with the molecule's id, hence allowing for further analysis and processing of the data. This happens in the background. In the following assignment of a substrate and product molecule of a kinetic measurement is shown.

Kinetic Measurements

Define Molecules

Consider the following cascade reaction, where molecules measurable by chromatography are highlighted in blue:

graph LR
  A[<b>N<sup>6</sup>-benzyl-ATP</b><br>2.5 mM] --> C{<b><i>Mj</i>MAT</b><br>0.05 mM};

  B[<b><i>ortho</i>-nitrobenzyl-<i>DL</i>-homocysteine</b><br>5 mM] --> C
  style C fill:transparent,stroke:#000

  C --> D[<b><i>ortho</i>-Nitrobenzyl-<i>S</>-Adenosylmethionine analogue</b>]
  style D fill:transparent,stroke:#000;

  D --> E{<b><i>Rn</i>COMT</b><br>0.05 mM};
  style E fill:transparent,stroke:#000

  DHBAL[<b><i>3,4</i>-dihydroxybenzaldehyde</b><br>0.3 mM] --> E

  E --> F[<b>O<sup>3</sup>-modified <i>3,4</i>-dihydroxybenzaldehyde</b>] & G[<b><i>S</i>-adenosyl-<i>L</i>-homocysteine analogue</b>]

  style G fill:transparent,stroke:#000;

This cascade reaction involves two enzymatic steps. In the first step, the Methionine Adenosyltransferase from Methanocaldococcus jannaschii (MjMAT) catalyzes the conversion of N6-benzyl-ATP (n1_triphosphate) and ortho-nitrobenzyl-DL-homocysteine (y_Hcy) into ortho-Nitrobenzyl-S-Adenosylmethionine analogue (n1y). In the second step, the Catechol-O-methyltransferase from Rattus norvegicus (RnCOMT) further processes n1y and 3,4-dihydroxybenzaldehyde (DHBAL) to produce O3-modified 3,4-dihydroxybenzaldehyde (DHBAL_modified) and an S-adenosyl-L-homocysteine analogue.

The following retention times are known:

Molecule Retention Time [min]
n1_triphosphate 13.9
y_Hcy 15.7
DHBAL 12.6
DHBAL_modified 23.2

The ChromAnalyzer allows for the annotation of peaks corresponding to these reactants and products. The following code snippet demonstrates how to define the substrates and products for each recorded chromatogram at reaction time points of 0, 0.5, 2, and 6 hours after the reaction start.

Example

from chromatopy import ChromAnalyzer
from chromatopy.units import mM

# Read the data
data_dir = "data/asm"
cascade_analyzer = ChromAnalyzer.read_asm(
    path=data_dir,
    ph=7.4,
    temperature=25,
)

# Define N6-benzyl-ATP
n1_triphosphate = cascade_analyzer.define_molecule(
    pubchem_cid=127255957,
    id="n1_triphosphate",
    name="N6-benzyl-ATP",
    retention_time=13.9,
    init_conc=2.5,
    conc_unit=mM,
)

# Define ortho-nitrobenzyl-DL-homocysteine
y_Hcy = cascade_analyzer.define_molecule(
    pubchem_cid=-1,
    id="y_Hcy",
    name="ortho-nitrobenzyl-DL-homocysteine",
    retention_time=15.7,
    init_conc=5,
    conc_unit=mM,
)

# Define AdoONB analogue
DHBAL = cascade_analyzer.define_molecule(
    pubchem_cid=8768,
    id="n1y",
    name="DHBAL",
    retention_time=12.6,
    init_conc=0,
    conc_unit=mM,
)

DHBAL_modified = cascade_analyzer.define_molecule(
    pubchem_cid=-1,
    id="DHBAL_O3",
    name="DHBAL O3",
    retention_time=23.21,
    init_conc=0,
    conc_unit=mM,
)
βœ… Loaded 4 chromatograms.
🎯 Assigned N6-benzyl-ATP to 4 peaks
🎯 Assigned ortho-nitrobenzyl-DL-homocysteine to 4 peaks
🎯 Assigned DHBAL to 3 peaks
🎯 Assigned DHBAL O3 to 3 peaks

To verify the correct assignment of molecules to their respective peaks, use the visualize_all method and setting assigned_only=True, ensuring that only the peaks are annotated correctly. If not, and the peaks are for instance shifting, the retention_tolerance can be increased during peak definition to allow for a wider retention time range of be annotated to one molecule.

Example

cascade_analyzer.visualize_all(assigned_only=True, dark_mode=True)

Please reload the page if the visualization is not displayed correctly

{"data":[{"customdata":[[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63],[132194901837.0,12.63]],"fill":"tozeroy","fillcolor":"rgb(59, 81, 138)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME0","line":{"color":"rgb(59, 81, 138)","width":1},"mode":"lines","name":"DHBAL","visible":true,"x":[12.4427,12.45182457912458,12.460949158249159,12.470073737373738,12.479198316498318,12.488322895622895,12.497447474747474,12.506572053872054,12.515696632996633,12.524821212121212,12.533945791245792,12.543070370370371,12.55219494949495,12.56131952861953,12.570444107744107,12.579568686868686,12.588693265993266,12.597817845117845,12.606942424242424,12.616067003367004,12.625191582491583,12.634316161616162,12.643440740740742,12.65256531986532,12.661689898989898,12.670814478114478,12.679939057239057,12.689063636363636,12.698188215488216,12.707312794612795,12.716437373737374,12.725561952861954,12.734686531986531,12.74381111111111,12.75293569023569,12.76206026936027,12.771184848484848,12.780309427609428,12.789434006734007,12.798558585858586,12.807683164983166,12.816807744107743,12.825932323232323,12.835056902356902,12.844181481481481,12.85330606060606,12.86243063973064,12.87155521885522,12.880679797979798,12.889804377104378,12.898928956228955,12.908053535353535,12.917178114478114,12.926302693602693,12.935427272727273,12.944551851851852,12.953676430976431,12.96280101010101,12.97192558922559,12.981050168350167,12.990174747474747,12.999299326599326,13.008423905723905,13.017548484848485,13.026673063973064,13.035797643097643,13.044922222222223,13.054046801346802,13.06317138047138,13.072295959595959,13.081420538720538,13.090545117845117,13.099669696969697,13.108794276094276,13.117918855218855,13.127043434343435,13.136168013468014,13.145292592592591,13.15441717171717,13.16354175084175,13.17266632996633,13.181790909090909,13.190915488215488,13.200040067340067,13.209164646464647,13.218289225589226,13.227413804713803,13.236538383838383,13.245662962962962,13.254787542087541,13.26391212121212,13.2730367003367,13.28216127946128,13.291285858585859,13.300410437710438,13.309535016835015,13.318659595959595,13.327784175084174,13.336908754208753,13.346033333333333],"y":[390576.70749194786,550733.1639493151,763305.705741471,1039867.9136351482,1392452.010160891,1832756.147610407,2371109.0228030826,3015232.12206313,3768880.5117506324,4630483.876336213,5591943.484312046,6637760.226160485,7744666.789174296,8881908.679898959,10012263.248636795,11093806.99051444,12082348.033318993,12934345.778522132,13610058.192189638,14076603.797290696,14310611.168789499,14300158.995607916,14045782.542287808,13560428.223370558,12868361.656998772,12003157.40721186,11005002.22180019,9917613.000502106,8785097.183542402,7649065.371746822,6546249.665914226,5506798.008203673,4553319.427786951,3700662.503712838,2956332.1809287374,2321396.748429187,1791710.7625519107,1359279.674382341,1013612.9091550793,742946.9991699544,535261.3961293482,379049.9135463681,263845.24457536184,180519.66958985903,121400.97609216705,80249.478155289,52141.63499045716,33300.40097740717,20904.35011828647,12898.70968197623,7823.088712377601,4663.721756420403,2732.809750692475,1574.0138698491667,891.1075043824012,495.8770819904406,271.2316478655792,145.82402383203257,77.06198347284788,40.02890203145275,20.437584350209328,10.256704341551533,5.059510492275908,2.4531920844913753,1.1691682101206553,0.5477026366614742,0.25219417697375524,0.11414257546546583,0.050778827674760996,0.02220445215870576,0.009543767363782126,0.004032013860483925,0.0016743512779255963,0.0006834291982153307,0.00027419710827075445,0.00010813209098159474,4.191492773301899e-05,1.59700116158501e-05,5.980866824020651e-06,2.20163551292826e-06,7.966161403154926e-07,2.8331865457173756e-07,9.904296424008499e-08,3.4032549008415176e-08,1.149443734011986e-08,3.8159558859344555e-09,1.2452064553660255e-09,3.993942160975322e-10,1.2591705822530243e-10,3.9020223811485007e-11,1.1885496626660702e-11,3.5585027017513835e-12,1.0472241681223016e-12,3.0292450207377916e-13,8.612942318465022e-14,2.4070829933765387e-14,6.6123065580126205e-15,1.7854072142285473e-15,4.738533772672109e-16,1.2361553848881662e-16],"type":"scatter"},{"customdata":[[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94],[3348128496686.0,13.94]],"fill":"tozeroy","fillcolor":"rgb(41, 124, 142)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME0","line":{"color":"rgb(41, 124, 142)","width":1},"mode":"lines","name":"N6-benzyl-ATP","visible":true,"x":[13.749366666666667,13.766908754208755,13.784450841750843,13.801992929292929,13.819535016835017,13.837077104377105,13.854619191919193,13.87216127946128,13.889703367003367,13.907245454545455,13.924787542087543,13.94232962962963,13.959871717171717,13.977413804713805,13.994955892255893,14.01249797979798,14.030040067340067,14.047582154882155,14.065124242424243,14.08266632996633,14.100208417508417,14.117750505050505,14.135292592592593,14.15283468013468,14.170376767676768,14.187918855218856,14.205460942760944,14.22300303030303,14.240545117845118,14.258087205387206,14.275629292929294,14.293171380471382,14.310713468013468,14.328255555555556,14.345797643097644,14.36333973063973,14.380881818181818,14.398423905723906,14.415965993265994,14.433508080808082,14.451050168350168,14.468592255892256,14.486134343434344,14.503676430976432,14.521218518518518,14.538760606060606,14.556302693602694,14.573844781144782,14.591386868686868,14.608928956228956,14.626471043771044,14.644013131313132,14.661555218855218,14.679097306397306,14.696639393939394,14.714181481481482,14.731723569023568,14.749265656565656,14.766807744107744,14.784349831649832,14.80189191919192,14.819434006734006,14.836976094276094,14.854518181818182,14.872060269360269,14.889602356902357,14.907144444444445,14.924686531986533,14.94222861952862,14.959770707070707,14.977312794612795,14.994854882154883,15.012396969696969,15.029939057239057,15.047481144781145,15.065023232323233,15.08256531986532,15.100107407407407,15.117649494949495,15.135191582491583,15.15273367003367,15.170275757575757,15.187817845117845,15.205359932659933,15.22290202020202,15.240444107744107,15.257986195286195,15.275528282828283,15.293070370370371,15.310612457912459,15.328154545454545,15.345696632996633,15.363238720538721,15.380780808080807,15.398322895622895,15.415864983164983,15.433407070707071,15.45094915824916,15.468491245791245,15.486033333333333],"y":[2297121.5914803823,5692703.366395361,12941714.81960678,26990056.75050505,51636223.35938377,90624128.80649926,145905586.05809644,215495742.82694918,291973994.4910938,362901153.674419,413781649.9997343,432805535.0017244,415291541.9759027,365554443.2111908,295181916.90489835,218658382.5843365,148587137.01195765,92626445.62520874,52969696.46654643,27788088.308923535,13372991.153428018,5903874.8820854705,2391026.744080382,888322.0111950497,302757.64177245984,94658.25739431159,27149.422573984633,7143.341129281286,1724.1731758985202,381.7676098753344,77.54538823483851,14.449458471480675,2.469936957799008,0.38731013964672867,0.05571479872800424,0.007352261849203352,0.0008900411103090171,9.884116795219142e-05,1.0069418037307171e-05,9.410432300431014e-07,8.067769450428008e-08,6.3450651290994025e-09,4.57780606695092e-10,3.029823971629141e-11,1.8395690968696475e-12,1.0245980238540558e-13,5.23515595121363e-15,2.453829786475779e-16,1.0551105007731906e-17,4.1618857833422385e-19,1.5059864715108596e-20,4.999086879956808e-22,1.5222956252248896e-23,4.252516574538431e-25,1.0897621795529527e-26,2.561864460411383e-28,5.524834427222222e-30,1.0930023266499832e-31,1.9836342871008968e-33,3.3024847996799317e-35,5.043810357493747e-37,7.066679123984204e-39,9.08261060614264e-41,1.0708896463369628e-42,1.1582903681953575e-44,1.1492879972206632e-46,1.046113961136259e-48,8.73509888972086e-51,6.691066631457526e-53,4.7017722057265446e-55,3.0308644574665477e-57,1.7922976946783968e-59,9.722825210610899e-62,4.8385308176821804e-64,2.2088857093424206e-66,9.250637873002625e-69,3.553929562751189e-71,1.2525199518231066e-73,4.049479363222755e-76,1.2010260531532795e-78,3.2677164740369194e-81,8.155958507027103e-84,1.867430073934743e-86,3.9224046076979955e-89,7.557865050261197e-92,1.3359326886512043e-94,2.166250724947039e-97,3.222341513409333e-100,4.3971685441766625e-103,5.504442755439807e-106,6.321094855154316e-109,6.659014433471774e-112,6.435263078228802e-115,5.705074977475997e-118,4.63975563386093e-121,3.461525697416548e-124,2.3690744728825298e-127,1.4874027057214377e-130,8.566770293796937e-134,4.526310864950384e-137],"type":"scatter"},{"customdata":[[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69],[1378469360689.0,15.69]],"fill":"tozeroy","fillcolor":"rgb(34, 144, 140)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME0","line":{"color":"rgb(34, 144, 140)","width":1},"mode":"lines","name":"ortho-nitrobenzyl-DL-homocysteine","visible":true,"x":[15.492700000000001,15.499669696969699,15.506639393939395,15.513609090909092,15.520578787878788,15.527548484848486,15.534518181818182,15.54148787878788,15.548457575757578,15.555427272727274,15.562396969696971,15.569366666666667,15.576336363636365,15.583306060606061,15.590275757575759,15.597245454545455,15.604215151515152,15.61118484848485,15.618154545454546,15.625124242424244,15.63209393939394,15.639063636363637,15.646033333333333,15.653003030303031,15.659972727272729,15.666942424242425,15.673912121212123,15.680881818181819,15.687851515151516,15.694821212121212,15.70179090909091,15.708760606060608,15.715730303030304,15.722700000000001,15.729669696969697,15.736639393939395,15.743609090909091,15.750578787878789,15.757548484848485,15.764518181818183,15.77148787878788,15.778457575757576,15.785427272727274,15.79239696969697,15.799366666666668,15.806336363636364,15.813306060606061,15.820275757575759,15.827245454545455,15.834215151515153,15.841184848484849,15.848154545454546,15.855124242424242,15.86209393939394,15.869063636363638,15.876033333333334,15.883003030303032,15.889972727272728,15.896942424242425,15.903912121212121,15.910881818181819,15.917851515151515,15.924821212121213,15.93179090909091,15.938760606060606,15.945730303030304,15.9527,15.959669696969698,15.966639393939394,15.973609090909092,15.98057878787879,15.987548484848485,15.994518181818183,16.00148787878788,16.008457575757575,16.015427272727273,16.02239696969697,16.029366666666668,16.036336363636366,16.04330606060606,16.050275757575758,16.057245454545455,16.064215151515153,16.071184848484847,16.078154545454545,16.085124242424243,16.09209393939394,16.09906363636364,16.106033333333333,16.11300303030303,16.119972727272728,16.126942424242426,16.13391212121212,16.140881818181818,16.147851515151515,16.154821212121213,16.16179090909091,16.168760606060605,16.175730303030303,16.1827],"y":[365776.58558934723,572543.963351755,881572.2348785406,1335251.5548986318,1989410.5023278776,2915693.343751813,4203542.179932046,5961356.566755375,8316314.6699273,11412291.427992988,15405326.895734861,20456206.93735269,26719936.62057734,34332218.20288655,43393474.93274842,53951449.890758544,65983893.19743063,79383250.39566043,93945491.66072646,109365195.8536133,125238671.36277185,141076245.56230932,156323928.39011952,170393550.45536685,182699336.2476786,192697869.0118891,199927704.4603359,204044631.24356294,204848831.09803754,202300955.11844683,196525315.16718966,187799830.00786245,176533858.3726305,163236380.7474268,148477971.63047236,132850508.18701185,116928543.29889321,101235768.41069998,86219113.50755481,72231934.78370243,59526598.66500715,48255743.65885385,38480710.57743172,30185145.8344158,23291614.79378497,17679177.03120868,13200203.165906593,9695167.387058139,7004645.047193559,4978208.467182583,3480295.746070507,2393400.334434973,1619088.802488202,1077412.7639753805,705260.7074832387,454122.88249758864,287642.6017693339,179221.10721992486,109845.23666760577,66226.13756907753,39276.58772838788,22913.645958296882,13149.546403106893,7423.068541623364,4122.040879779278,2251.6311256115114,1209.8689125358865,639.492590770881,332.49785012466816,170.0584793185687,85.55863871516176,42.343384299031214,20.61405314058698,9.871822583384184,4.650369023788563,2.1549322354769034,0.9822814521997704,0.4404477488376827,0.19427144512981018,0.08429070225531293,0.03597547183394188,0.015103912126549981,0.006237758075135637,0.0025340998843766207,0.001012686583368306,0.0003980911369058176,0.00015393808728630958,5.855524314854164e-05,2.190996160619858e-05,8.064428012449274e-06,2.919857438793878e-06,1.0399341761153397e-06,3.643394341181384e-07,1.2556327455373385e-07,4.256721254303355e-08,1.4195278448889622e-08,4.656597975796974e-09,1.5026218486417273e-09,4.769652936893979e-10,1.4892924349343353e-10],"type":"scatter"},{"hovertext":"N6BENZYLADOONB_RNCOMT_TIME0","line":{"color":"white","dash":"solid","width":1},"mode":"lines","name":"Signal","visible":true,"x":[0.0027,0.006033333333333333,0.009366666666666667,0.0127,0.016033333333333333,0.019366666666666664,0.0227,0.026033333333333335,0.029366666666666666,0.0327,0.036033333333333334,0.03936666666666667,0.042699999999999995,0.046033333333333336,0.04936666666666667,0.0527,0.05603333333333334,0.059366666666666665,0.0627,0.06603333333333333,0.06936666666666666,0.0727,0.07603333333333334,0.07936666666666665,0.0827,0.08603333333333334,0.08936666666666666,0.0927,0.09603333333333333,0.09936666666666666,0.1027,0.10603333333333334,0.10936666666666667,0.1127,0.11603333333333334,0.11936666666666666,0.1227,0.12603333333333333,0.12936666666666666,0.13269999999999998,0.13603333333333334,0.13936666666666667,0.1427,0.14603333333333335,0.14936666666666668,0.1527,0.15603333333333333,0.15936666666666666,0.1627,0.16603333333333334,0.1693666666666667,0.1727,0.17603333333333332,0.17936666666666667,0.1827,0.18603333333333336,0.18936666666666666,0.19269999999999998,0.19603333333333334,0.19936666666666666,0.20270000000000002,0.20603333333333335,0.20936666666666665,0.2127,0.21603333333333333,0.21936666666666668,0.2227,0.22603333333333334,0.22936666666666666,0.2327,0.23603333333333334,0.23936666666666667,0.2427,0.24603333333333335,0.24936666666666665,0.25270000000000004,0.25603333333333333,0.25936666666666663,0.2627,0.26603333333333334,0.26936666666666664,0.2727,0.27603333333333335,0.27936666666666665,0.2827,0.2860333333333333,0.28936666666666666,0.2927,0.2960333333333333,0.29936666666666667,0.30269999999999997,0.3060333333333333,0.3093666666666667,0.31270000000000003,0.31603333333333333,0.31936666666666663,0.3227,0.32603333333333334,0.3293666666666667,0.3327,0.3360333333333333,0.33936666666666665,0.3427,0.34603333333333336,0.34936666666666666,0.35269999999999996,0.3560333333333333,0.35936666666666667,0.3627,0.3660333333333333,0.3693666666666667,0.3727,0.37603333333333333,0.3793666666666667,0.3827,0.38603333333333334,0.38936666666666664,0.3927,0.39603333333333335,0.39936666666666665,0.4027,0.4060333333333333,0.4093666666666667,0.4127,0.4160333333333333,0.41936666666666667,0.42269999999999996,0.4260333333333334,0.4293666666666667,0.4327,0.43603333333333333,0.4393666666666666,0.44270000000000004,0.44603333333333334,0.44936666666666664,0.4527,0.4560333333333333,0.4593666666666667,0.4627,0.46603333333333335,0.46936666666666665,0.47269999999999995,0.47603333333333336,0.47936666666666666,0.4827,0.4860333333333333,0.4893666666666666,0.4927,0.4960333333333333,0.4993666666666667,0.5027,0.5060333333333333,0.5093666666666666,0.5127,0.5160333333333333,0.5193666666666666,0.5226999999999999,0.5260333333333334,0.5293666666666667,0.5327,0.5360333333333334,0.5393666666666667,0.5427,0.5460333333333334,0.5493666666666667,0.5527,0.5560333333333334,0.5593666666666667,0.5627,0.5660333333333334,0.5693666666666667,0.5727,0.5760333333333333,0.5793666666666667,0.5827000000000001,0.5860333333333333,0.5893666666666667,0.5927,0.5960333333333333,0.5993666666666667,0.6027,0.6060333333333333,0.6093666666666666,0.6127,0.6160333333333334,0.6193666666666666,0.6227,0.6260333333333333,0.6293666666666666,0.6327,0.6360333333333333,0.6393666666666667,0.6426999999999999,0.6460333333333333,0.6493666666666668,0.6527,0.6560333333333334,0.6593666666666667,0.6627,0.6660333333333334,0.6693666666666667,0.6727000000000001,0.6760333333333333,0.6793666666666667,0.6827000000000001,0.6860333333333333,0.6893666666666667,0.6927,0.6960333333333334,0.6993666666666667,0.7027,0.7060333333333334,0.7093666666666666,0.7127,0.7160333333333334,0.7193666666666666,0.7227,0.7260333333333333,0.7293666666666667,0.7327,0.7360333333333333,0.7393666666666667,0.7426999999999999,0.7460333333333333,0.7493666666666667,0.7527,0.7560333333333333,0.7593666666666666,0.7627,0.7660333333333333,0.7693666666666666,0.7727,0.7760333333333332,0.7793666666666667,0.7827000000000001,0.7860333333333334,0.7893666666666667,0.7927,0.7960333333333334,0.7993666666666667,0.8027,0.8060333333333334,0.8093666666666667,0.8127,0.8160333333333334,0.8193666666666667,0.8227,0.8260333333333333,0.8293666666666667,0.8327000000000001,0.8360333333333333,0.8393666666666667,0.8427,0.8460333333333333,0.8493666666666667,0.8527,0.8560333333333333,0.8593666666666666,0.8627,0.8660333333333334,0.8693666666666666,0.8727,0.8760333333333333,0.8793666666666666,0.8827,0.8860333333333333,0.8893666666666667,0.8926999999999999,0.8960333333333333,0.8993666666666668,0.9027,0.9060333333333334,0.9093666666666667,0.9127,0.9160333333333334,0.9193666666666667,0.9227000000000001,0.9260333333333333,0.9293666666666667,0.9327000000000001,0.9360333333333333,0.9393666666666667,0.9427,0.9460333333333334,0.9493666666666667,0.9527,0.9560333333333334,0.9593666666666666,0.9627,0.9660333333333334,0.9693666666666666,0.9727,0.9760333333333333,0.9793666666666667,0.9827,0.9860333333333333,0.9893666666666667,0.9926999999999999,0.9960333333333333,0.9993666666666667,1.0027,1.0060333333333333,1.0093666666666665,1.0127,1.0160333333333333,1.0193666666666668,1.0227,1.0260333333333334,1.0293666666666668,1.0327,1.0360333333333334,1.0393666666666668,1.0427,1.0460333333333334,1.0493666666666668,1.0527,1.0560333333333334,1.0593666666666666,1.0627,1.0660333333333334,1.0693666666666668,1.0727,1.0760333333333334,1.0793666666666666,1.0827,1.0860333333333334,1.0893666666666666,1.0927,1.0960333333333334,1.0993666666666668,1.1027,1.1060333333333332,1.1093666666666666,1.1127,1.1160333333333334,1.1193666666666668,1.1226999999999998,1.1260333333333332,1.1293666666666666,1.1327,1.1360333333333335,1.1393666666666666,1.1427,1.1460333333333332,1.1493666666666666,1.1527,1.1560333333333332,1.1593666666666667,1.1627,1.1660333333333335,1.1693666666666667,1.1726999999999999,1.1760333333333333,1.1793666666666667,1.1827,1.1860333333333335,1.1893666666666667,1.1926999999999999,1.1960333333333333,1.1993666666666667,1.2027,1.2060333333333333,1.2093666666666667,1.2127000000000001,1.2160333333333333,1.2193666666666667,1.2227,1.2260333333333333,1.2293666666666667,1.2327000000000001,1.2360333333333335,1.2393666666666665,1.2427,1.2460333333333333,1.2493666666666667,1.2527000000000001,1.2560333333333333,1.2593666666666665,1.2627,1.2660333333333333,1.2693666666666668,1.2727,1.2760333333333334,1.2793666666666668,1.2827,1.2860333333333334,1.2893666666666665,1.2927,1.2960333333333334,1.2993666666666668,1.3027000000000002,1.3060333333333332,1.3093666666666666,1.3127,1.3160333333333334,1.3193666666666668,1.3227,1.3260333333333334,1.3293666666666666,1.3327,1.3360333333333334,1.3393666666666666,1.3427,1.3460333333333334,1.3493666666666668,1.3527,1.3560333333333332,1.3593666666666666,1.3627,1.3660333333333334,1.3693666666666668,1.3726999999999998,1.3760333333333332,1.3793666666666666,1.3827,1.3860333333333335,1.3893666666666666,1.3927,1.3960333333333332,1.3993666666666666,1.4027,1.4060333333333332,1.4093666666666667,1.4127,1.4160333333333335,1.4193666666666667,1.4226999999999999,1.4260333333333333,1.4293666666666667,1.4327,1.4360333333333335,1.4393666666666667,1.4426999999999999,1.4460333333333333,1.4493666666666667,1.4527,1.4560333333333333,1.4593666666666667,1.4627000000000001,1.4660333333333333,1.4693666666666667,1.4727,1.4760333333333333,1.4793666666666667,1.4827000000000001,1.4860333333333335,1.4893666666666665,1.4927,1.4960333333333333,1.4993666666666667,1.5027000000000001,1.5060333333333333,1.5093666666666665,1.5127,1.5160333333333333,1.5193666666666668,1.5227,1.5260333333333334,1.5293666666666668,1.5327,1.5360333333333334,1.5393666666666665,1.5427,1.5460333333333334,1.5493666666666668,1.5527000000000002,1.5560333333333332,1.5593666666666666,1.5627,1.5660333333333334,1.5693666666666668,1.5727,1.5760333333333334,1.5793666666666666,1.5827,1.5860333333333334,1.5893666666666666,1.5927,1.5960333333333334,1.5993666666666668,1.6027,1.6060333333333332,1.6093666666666666,1.6127,1.6160333333333334,1.6193666666666668,1.6226999999999998,1.6260333333333332,1.6293666666666666,1.6327,1.6360333333333335,1.6393666666666666,1.6427,1.6460333333333332,1.6493666666666666,1.6527,1.6560333333333332,1.6593666666666667,1.6627,1.6660333333333335,1.6693666666666667,1.6726999999999999,1.6760333333333333,1.6793666666666667,1.6827,1.6860333333333335,1.6893666666666667,1.6926999999999999,1.6960333333333333,1.6993666666666667,1.7027,1.7060333333333333,1.7093666666666667,1.7127000000000001,1.7160333333333333,1.7193666666666667,1.7227,1.7260333333333333,1.7293666666666667,1.7327000000000001,1.7360333333333335,1.7393666666666665,1.7427,1.7460333333333333,1.7493666666666667,1.7527000000000001,1.7560333333333333,1.7593666666666665,1.7627,1.7660333333333333,1.7693666666666668,1.7727,1.7760333333333334,1.7793666666666668,1.7827,1.7860333333333334,1.7893666666666665,1.7927,1.7960333333333334,1.7993666666666668,1.8027000000000002,1.8060333333333332,1.8093666666666666,1.8127,1.8160333333333334,1.8193666666666668,1.8227,1.8260333333333334,1.8293666666666666,1.8327,1.8360333333333334,1.8393666666666666,1.8427,1.8460333333333334,1.8493666666666668,1.8527,1.8560333333333332,1.8593666666666666,1.8627,1.8660333333333334,1.8693666666666668,1.8726999999999998,1.8760333333333332,1.8793666666666666,1.8827,1.8860333333333335,1.8893666666666666,1.8927,1.8960333333333332,1.8993666666666666,1.9027,1.9060333333333332,1.9093666666666667,1.9127,1.9160333333333335,1.9193666666666667,1.9226999999999999,1.9260333333333333,1.9293666666666667,1.9327,1.9360333333333335,1.9393666666666667,1.9426999999999999,1.9460333333333333,1.9493666666666667,1.9527,1.9560333333333333,1.9593666666666667,1.9627000000000001,1.9660333333333333,1.9693666666666667,1.9727,1.9760333333333333,1.9793666666666667,1.9827000000000001,1.9860333333333335,1.9893666666666665,1.9927,1.9960333333333333,1.9993666666666667,2.0027,2.0060333333333333,2.0093666666666667,2.0127,2.0160333333333336,2.019366666666667,2.0227,2.0260333333333334,2.0293666666666668,2.0327,2.0360333333333336,2.0393666666666665,2.0427,2.0460333333333334,2.049366666666667,2.0527,2.056033333333333,2.0593666666666666,2.0627,2.0660333333333334,2.069366666666667,2.0726999999999998,2.076033333333333,2.0793666666666666,2.0827,2.0860333333333334,2.0893666666666664,2.0927,2.096033333333333,2.0993666666666666,2.1027,2.1060333333333334,2.109366666666667,2.1127,2.116033333333333,2.1193666666666666,2.1227,2.1260333333333334,2.129366666666667,2.1327000000000003,2.1360333333333332,2.1393666666666666,2.1427,2.1460333333333335,2.1493666666666664,2.1527000000000003,2.1560333333333332,2.1593666666666667,2.1627,2.166033333333333,2.169366666666667,2.1727,2.1760333333333337,2.1793666666666667,2.1826999999999996,2.1860333333333335,2.1893666666666665,2.1927000000000003,2.1960333333333333,2.1993666666666667,2.2027,2.206033333333333,2.209366666666667,2.2127,2.2160333333333333,2.2193666666666667,2.2227,2.2260333333333335,2.2293666666666665,2.2327,2.2360333333333333,2.2393666666666667,2.2427,2.2460333333333335,2.2493666666666665,2.2527,2.2560333333333333,2.2593666666666667,2.2627,2.266033333333333,2.269366666666667,2.2727,2.2760333333333334,2.2793666666666668,2.2826999999999997,2.2860333333333336,2.2893666666666665,2.2927000000000004,2.2960333333333334,2.2993666666666663,2.3027,2.306033333333333,2.309366666666667,2.3127,2.316033333333333,2.319366666666667,2.3226999999999998,2.3260333333333336,2.3293666666666666,2.3327,2.3360333333333334,2.3393666666666664,2.3427000000000002,2.346033333333333,2.3493666666666666,2.3527,2.3560333333333334,2.359366666666667,2.3627,2.366033333333333,2.3693666666666666,2.3727,2.3760333333333334,2.379366666666667,2.3827,2.3860333333333332,2.3893666666666666,2.3927,2.3960333333333335,2.3993666666666664,2.4027000000000003,2.4060333333333332,2.4093666666666667,2.4127,2.416033333333333,2.419366666666667,2.4227,2.4260333333333337,2.4293666666666667,2.4326999999999996,2.4360333333333335,2.4393666666666665,2.4427000000000003,2.4460333333333333,2.4493666666666667,2.4527,2.456033333333333,2.459366666666667,2.4627,2.4660333333333333,2.4693666666666667,2.4727,2.4760333333333335,2.4793666666666665,2.4827,2.4860333333333333,2.4893666666666667,2.4927,2.4960333333333335,2.4993666666666665,2.5027,2.5060333333333333,2.5093666666666667,2.5127,2.516033333333333,2.519366666666667,2.5227,2.5260333333333334,2.5293666666666668,2.5326999999999997,2.5360333333333336,2.5393666666666665,2.5427000000000004,2.5460333333333334,2.5493666666666663,2.5527,2.556033333333333,2.559366666666667,2.5627,2.566033333333333,2.569366666666667,2.5726999999999998,2.5760333333333336,2.5793666666666666,2.5827,2.5860333333333334,2.5893666666666664,2.5927000000000002,2.596033333333333,2.5993666666666666,2.6027,2.6060333333333334,2.609366666666667,2.6127,2.616033333333333,2.6193666666666666,2.6227,2.6260333333333334,2.629366666666667,2.6327,2.6360333333333332,2.6393666666666666,2.6427,2.6460333333333335,2.6493666666666664,2.6527000000000003,2.6560333333333332,2.6593666666666667,2.6627,2.666033333333333,2.669366666666667,2.6727,2.6760333333333337,2.6793666666666667,2.6826999999999996,2.6860333333333335,2.6893666666666665,2.6927000000000003,2.6960333333333333,2.6993666666666667,2.7027,2.706033333333333,2.709366666666667,2.7127,2.7160333333333333,2.7193666666666667,2.7227,2.7260333333333335,2.7293666666666665,2.7327,2.7360333333333333,2.7393666666666667,2.7427,2.7460333333333335,2.7493666666666665,2.7527,2.7560333333333333,2.7593666666666667,2.7627,2.766033333333333,2.769366666666667,2.7727,2.7760333333333334,2.7793666666666668,2.7826999999999997,2.7860333333333336,2.7893666666666665,2.7927000000000004,2.7960333333333334,2.7993666666666663,2.8027,2.806033333333333,2.809366666666667,2.8127,2.816033333333333,2.819366666666667,2.8226999999999998,2.8260333333333336,2.8293666666666666,2.8327,2.8360333333333334,2.8393666666666664,2.8427000000000002,2.846033333333333,2.8493666666666666,2.8527,2.8560333333333334,2.859366666666667,2.8627,2.866033333333333,2.8693666666666666,2.8727,2.8760333333333334,2.879366666666667,2.8827,2.8860333333333332,2.8893666666666666,2.8927,2.8960333333333335,2.8993666666666664,2.9027000000000003,2.9060333333333332,2.9093666666666667,2.9127,2.916033333333333,2.919366666666667,2.9227,2.9260333333333337,2.9293666666666667,2.9326999999999996,2.9360333333333335,2.9393666666666665,2.9427000000000003,2.9460333333333333,2.9493666666666667,2.9527,2.956033333333333,2.959366666666667,2.9627,2.9660333333333333,2.9693666666666667,2.9727,2.9760333333333335,2.9793666666666665,2.9827,2.9860333333333333,2.9893666666666667,2.9927,2.9960333333333335,2.9993666666666665,3.0027,3.0060333333333333,3.0093666666666667,3.0127,3.016033333333333,3.019366666666667,3.0227,3.0260333333333334,3.0293666666666668,3.0326999999999997,3.0360333333333336,3.0393666666666665,3.0427000000000004,3.0460333333333334,3.0493666666666663,3.0527,3.056033333333333,3.059366666666667,3.0627,3.066033333333333,3.069366666666667,3.0726999999999998,3.0760333333333336,3.0793666666666666,3.0827,3.0860333333333334,3.0893666666666664,3.0927000000000002,3.096033333333333,3.0993666666666666,3.1027,3.1060333333333334,3.109366666666667,3.1127,3.116033333333333,3.1193666666666666,3.1227,3.1260333333333334,3.129366666666667,3.1327,3.1360333333333332,3.1393666666666666,3.1427,3.1460333333333335,3.1493666666666664,3.1527000000000003,3.1560333333333332,3.1593666666666667,3.1627,3.166033333333333,3.169366666666667,3.1727,3.1760333333333337,3.1793666666666667,3.1826999999999996,3.1860333333333335,3.1893666666666665,3.1927000000000003,3.1960333333333333,3.1993666666666667,3.2027,3.206033333333333,3.209366666666667,3.2127,3.2160333333333333,3.2193666666666667,3.2227,3.2260333333333335,3.2293666666666665,3.2327,3.2360333333333333,3.2393666666666667,3.2427,3.2460333333333335,3.2493666666666665,3.2527,3.2560333333333333,3.2593666666666667,3.2627,3.266033333333333,3.269366666666667,3.2727,3.2760333333333334,3.2793666666666668,3.2826999999999997,3.2860333333333336,3.2893666666666665,3.2927000000000004,3.2960333333333334,3.2993666666666663,3.3027,3.306033333333333,3.309366666666667,3.3127,3.316033333333333,3.319366666666667,3.3226999999999998,3.3260333333333336,3.3293666666666666,3.3327,3.3360333333333334,3.3393666666666664,3.3427000000000002,3.346033333333333,3.3493666666666666,3.3527,3.3560333333333334,3.359366666666667,3.3627,3.366033333333333,3.3693666666666666,3.3727,3.3760333333333334,3.379366666666667,3.3827,3.3860333333333332,3.3893666666666666,3.3927,3.3960333333333335,3.3993666666666664,3.4027000000000003,3.4060333333333332,3.4093666666666667,3.4127,3.416033333333333,3.419366666666667,3.4227,3.4260333333333337,3.4293666666666667,3.4326999999999996,3.4360333333333335,3.4393666666666665,3.4427000000000003,3.4460333333333333,3.4493666666666667,3.4527,3.456033333333333,3.459366666666667,3.4627,3.4660333333333333,3.4693666666666667,3.4727,3.4760333333333335,3.4793666666666665,3.4827,3.4860333333333333,3.4893666666666667,3.4927,3.4960333333333335,3.4993666666666665,3.5027,3.5060333333333333,3.5093666666666667,3.5127,3.516033333333333,3.519366666666667,3.5227,3.5260333333333334,3.5293666666666668,3.5326999999999997,3.5360333333333336,3.5393666666666665,3.5427000000000004,3.5460333333333334,3.5493666666666663,3.5527,3.556033333333333,3.559366666666667,3.5627,3.566033333333333,3.569366666666667,3.5726999999999998,3.5760333333333336,3.5793666666666666,3.5827,3.5860333333333334,3.5893666666666664,3.5927000000000002,3.596033333333333,3.5993666666666666,3.6027,3.6060333333333334,3.609366666666667,3.6127,3.616033333333333,3.6193666666666666,3.6227,3.6260333333333334,3.629366666666667,3.6327,3.6360333333333332,3.6393666666666666,3.6427,3.6460333333333335,3.6493666666666664,3.6527000000000003,3.6560333333333332,3.6593666666666667,3.6627,3.666033333333333,3.669366666666667,3.6727,3.6760333333333337,3.6793666666666667,3.6826999999999996,3.6860333333333335,3.6893666666666665,3.6927000000000003,3.6960333333333333,3.6993666666666667,3.7027,3.706033333333333,3.709366666666667,3.7127,3.7160333333333333,3.7193666666666667,3.7227,3.7260333333333335,3.7293666666666665,3.7327,3.7360333333333333,3.7393666666666667,3.7427,3.7460333333333335,3.7493666666666665,3.7527,3.7560333333333333,3.7593666666666667,3.7627,3.766033333333333,3.769366666666667,3.7727,3.7760333333333334,3.7793666666666668,3.7826999999999997,3.7860333333333336,3.7893666666666665,3.7927000000000004,3.7960333333333334,3.7993666666666663,3.8027,3.806033333333333,3.809366666666667,3.8127,3.816033333333333,3.819366666666667,3.8226999999999998,3.8260333333333336,3.8293666666666666,3.8327,3.8360333333333334,3.8393666666666664,3.8427000000000002,3.846033333333333,3.8493666666666666,3.8527,3.8560333333333334,3.859366666666667,3.8627,3.866033333333333,3.8693666666666666,3.8727,3.8760333333333334,3.879366666666667,3.8827,3.8860333333333332,3.8893666666666666,3.8927,3.8960333333333335,3.8993666666666664,3.9027000000000003,3.9060333333333332,3.9093666666666667,3.9127,3.916033333333333,3.919366666666667,3.9227,3.9260333333333337,3.9293666666666667,3.9326999999999996,3.9360333333333335,3.9393666666666665,3.9427000000000003,3.9460333333333333,3.9493666666666667,3.9527,3.956033333333333,3.959366666666667,3.9627,3.9660333333333333,3.9693666666666667,3.9727,3.9760333333333335,3.9793666666666665,3.9827,3.9860333333333333,3.9893666666666667,3.9927,3.9960333333333335,3.9993666666666665,4.0027,4.006033333333333,4.009366666666667,4.0127,4.016033333333334,4.0193666666666665,4.0226999999999995,4.026033333333333,4.029366666666666,4.0327,4.036033333333333,4.039366666666667,4.0427,4.046033333333333,4.049366666666667,4.0527,4.056033333333334,4.059366666666667,4.0627,4.066033333333333,4.069366666666666,4.0727,4.076033333333333,4.079366666666667,4.0827,4.086033333333334,4.089366666666667,4.0927,4.096033333333334,4.099366666666667,4.1027000000000005,4.106033333333333,4.109366666666667,4.1127,4.116033333333333,4.119366666666667,4.1227,4.126033333333334,4.129366666666667,4.1327,4.136033333333334,4.139366666666667,4.1427000000000005,4.1460333333333335,4.149366666666666,4.1527,4.156033333333333,4.159366666666667,4.1627,4.166033333333333,4.169366666666667,4.1727,4.176033333333334,4.179366666666667,4.1827,4.1860333333333335,4.1893666666666665,4.1927,4.196033333333333,4.199366666666666,4.2027,4.206033333333333,4.209366666666667,4.2127,4.216033333333333,4.219366666666667,4.2227,4.2260333333333335,4.2293666666666665,4.2326999999999995,4.236033333333333,4.239366666666666,4.2427,4.246033333333333,4.249366666666666,4.2527,4.256033333333333,4.259366666666667,4.2627,4.266033333333334,4.2693666666666665,4.2727,4.276033333333333,4.279366666666666,4.2827,4.286033333333333,4.289366666666667,4.2927,4.296033333333333,4.299366666666667,4.3027,4.306033333333334,4.309366666666667,4.3127,4.316033333333333,4.319366666666666,4.3227,4.326033333333333,4.329366666666667,4.3327,4.336033333333333,4.339366666666667,4.3427,4.346033333333334,4.349366666666667,4.3527,4.356033333333333,4.359366666666667,4.3627,4.366033333333333,4.369366666666666,4.3727,4.376033333333334,4.379366666666667,4.3827,4.386033333333333,4.389366666666667,4.3927000000000005,4.3960333333333335,4.399366666666666,4.402699999999999,4.406033333333334,4.409366666666667,4.4127,4.416033333333333,4.419366666666666,4.422700000000001,4.426033333333334,4.429366666666667,4.4327,4.436033333333333,4.439366666666667,4.4427,4.446033333333333,4.449366666666666,4.452699999999999,4.456033333333334,4.459366666666667,4.4627,4.466033333333333,4.469366666666667,4.472700000000001,4.4760333333333335,4.4793666666666665,4.4826999999999995,4.486033333333333,4.489366666666667,4.4927,4.496033333333333,4.499366666666666,4.5027,4.506033333333334,4.509366666666667,4.5127,4.516033333333334,4.5193666666666665,4.5227,4.526033333333333,4.529366666666666,4.5327,4.536033333333333,4.539366666666667,4.5427,4.546033333333333,4.549366666666667,4.5527,4.556033333333334,4.559366666666667,4.5627,4.566033333333333,4.569366666666666,4.5727,4.576033333333333,4.579366666666667,4.5827,4.586033333333333,4.589366666666667,4.5927,4.596033333333334,4.599366666666667,4.6027,4.606033333333333,4.609366666666667,4.6127,4.616033333333333,4.619366666666666,4.6227,4.626033333333334,4.629366666666667,4.6327,4.636033333333333,4.639366666666667,4.6427000000000005,4.6460333333333335,4.649366666666666,4.652699999999999,4.656033333333334,4.659366666666667,4.6627,4.666033333333333,4.669366666666666,4.672700000000001,4.676033333333334,4.679366666666667,4.6827,4.686033333333333,4.689366666666667,4.6927,4.696033333333333,4.699366666666666,4.702699999999999,4.706033333333334,4.709366666666667,4.7127,4.716033333333333,4.719366666666667,4.722700000000001,4.7260333333333335,4.7293666666666665,4.7326999999999995,4.736033333333333,4.739366666666667,4.7427,4.746033333333333,4.749366666666666,4.7527,4.756033333333334,4.759366666666667,4.7627,4.766033333333334,4.7693666666666665,4.7727,4.776033333333333,4.779366666666666,4.7827,4.786033333333333,4.789366666666667,4.7927,4.796033333333333,4.799366666666667,4.8027,4.806033333333334,4.809366666666667,4.8127,4.816033333333333,4.819366666666666,4.8227,4.826033333333333,4.829366666666667,4.8327,4.836033333333333,4.839366666666667,4.8427,4.846033333333334,4.849366666666667,4.8527,4.856033333333333,4.859366666666667,4.8627,4.866033333333333,4.869366666666666,4.8727,4.876033333333334,4.879366666666667,4.8827,4.886033333333333,4.889366666666667,4.8927000000000005,4.8960333333333335,4.899366666666666,4.902699999999999,4.906033333333334,4.909366666666667,4.9127,4.916033333333333,4.919366666666666,4.922700000000001,4.926033333333334,4.929366666666667,4.9327,4.936033333333333,4.939366666666667,4.9427,4.946033333333333,4.949366666666666,4.952699999999999,4.956033333333334,4.959366666666667,4.9627,4.966033333333333,4.969366666666667,4.972700000000001,4.9760333333333335,4.9793666666666665,4.9826999999999995,4.986033333333333,4.989366666666667,4.9927,4.996033333333333,4.999366666666666,5.0027,5.006033333333334,5.009366666666667,5.0127,5.016033333333334,5.0193666666666665,5.0227,5.026033333333333,5.029366666666666,5.0327,5.036033333333333,5.039366666666667,5.0427,5.046033333333333,5.049366666666667,5.0527,5.056033333333334,5.059366666666667,5.0627,5.066033333333333,5.069366666666666,5.0727,5.076033333333333,5.079366666666667,5.0827,5.086033333333333,5.089366666666667,5.0927,5.096033333333334,5.099366666666667,5.1027,5.106033333333333,5.109366666666667,5.1127,5.116033333333333,5.119366666666666,5.1227,5.126033333333334,5.129366666666667,5.1327,5.136033333333333,5.139366666666667,5.1427000000000005,5.1460333333333335,5.149366666666666,5.152699999999999,5.156033333333334,5.159366666666667,5.1627,5.166033333333333,5.169366666666666,5.172700000000001,5.176033333333334,5.179366666666667,5.1827,5.186033333333333,5.189366666666667,5.1927,5.196033333333333,5.199366666666666,5.202699999999999,5.206033333333334,5.209366666666667,5.2127,5.216033333333333,5.219366666666667,5.222700000000001,5.2260333333333335,5.2293666666666665,5.2326999999999995,5.236033333333333,5.239366666666667,5.2427,5.246033333333333,5.249366666666666,5.2527,5.256033333333334,5.259366666666667,5.2627,5.266033333333334,5.2693666666666665,5.2727,5.276033333333333,5.279366666666666,5.2827,5.286033333333333,5.289366666666667,5.2927,5.296033333333333,5.299366666666667,5.3027,5.306033333333334,5.309366666666667,5.3127,5.316033333333333,5.319366666666666,5.3227,5.326033333333333,5.329366666666667,5.3327,5.336033333333333,5.339366666666667,5.3427,5.346033333333334,5.349366666666667,5.3527,5.356033333333333,5.359366666666667,5.3627,5.366033333333333,5.369366666666666,5.3727,5.376033333333334,5.379366666666667,5.3827,5.386033333333333,5.389366666666667,5.3927000000000005,5.3960333333333335,5.399366666666666,5.402699999999999,5.406033333333334,5.409366666666667,5.4127,5.416033333333333,5.419366666666666,5.422700000000001,5.426033333333334,5.429366666666667,5.4327,5.436033333333333,5.439366666666667,5.4427,5.446033333333333,5.449366666666666,5.452699999999999,5.456033333333334,5.459366666666667,5.4627,5.466033333333333,5.469366666666667,5.472700000000001,5.4760333333333335,5.4793666666666665,5.4826999999999995,5.486033333333333,5.489366666666667,5.4927,5.496033333333333,5.499366666666666,5.5027,5.506033333333334,5.509366666666667,5.5127,5.516033333333334,5.5193666666666665,5.5227,5.526033333333333,5.529366666666666,5.5327,5.536033333333333,5.539366666666667,5.5427,5.546033333333333,5.549366666666667,5.5527,5.556033333333334,5.559366666666667,5.5627,5.566033333333333,5.569366666666666,5.5727,5.576033333333333,5.579366666666667,5.5827,5.586033333333333,5.589366666666667,5.5927,5.596033333333334,5.599366666666667,5.6027,5.606033333333333,5.609366666666667,5.6127,5.616033333333333,5.619366666666666,5.6227,5.626033333333334,5.629366666666667,5.6327,5.636033333333333,5.639366666666667,5.6427000000000005,5.6460333333333335,5.649366666666666,5.652699999999999,5.656033333333334,5.659366666666667,5.6627,5.666033333333333,5.669366666666666,5.672700000000001,5.676033333333334,5.679366666666667,5.6827,5.686033333333333,5.689366666666667,5.6927,5.696033333333333,5.699366666666666,5.702699999999999,5.706033333333334,5.709366666666667,5.7127,5.716033333333333,5.719366666666667,5.722700000000001,5.7260333333333335,5.7293666666666665,5.7326999999999995,5.736033333333333,5.739366666666667,5.7427,5.746033333333333,5.749366666666666,5.7527,5.756033333333334,5.759366666666667,5.7627,5.766033333333334,5.7693666666666665,5.7727,5.776033333333333,5.779366666666666,5.7827,5.786033333333333,5.789366666666667,5.7927,5.796033333333333,5.799366666666667,5.8027,5.806033333333334,5.809366666666667,5.8127,5.816033333333333,5.819366666666666,5.8227,5.826033333333333,5.829366666666667,5.8327,5.836033333333333,5.839366666666667,5.8427,5.846033333333334,5.849366666666667,5.8527,5.856033333333333,5.859366666666667,5.8627,5.866033333333333,5.869366666666666,5.8727,5.876033333333334,5.879366666666667,5.8827,5.886033333333333,5.889366666666667,5.8927000000000005,5.8960333333333335,5.899366666666666,5.902699999999999,5.906033333333334,5.909366666666667,5.9127,5.916033333333333,5.919366666666666,5.922700000000001,5.926033333333334,5.929366666666667,5.9327,5.936033333333333,5.939366666666667,5.9427,5.946033333333333,5.949366666666666,5.952699999999999,5.956033333333334,5.959366666666667,5.9627,5.966033333333333,5.969366666666667,5.972700000000001,5.9760333333333335,5.9793666666666665,5.9826999999999995,5.986033333333333,5.989366666666667,5.9927,5.996033333333333,5.999366666666666,6.0027,6.006033333333334,6.009366666666667,6.0127,6.016033333333334,6.0193666666666665,6.0227,6.026033333333333,6.029366666666666,6.0327,6.036033333333333,6.039366666666667,6.0427,6.046033333333333,6.049366666666667,6.0527,6.056033333333334,6.059366666666667,6.0627,6.066033333333333,6.069366666666666,6.0727,6.076033333333333,6.079366666666667,6.0827,6.086033333333333,6.089366666666667,6.0927,6.096033333333334,6.099366666666667,6.1027,6.106033333333333,6.109366666666667,6.1127,6.116033333333333,6.119366666666666,6.1227,6.126033333333334,6.129366666666667,6.1327,6.136033333333333,6.139366666666667,6.1427000000000005,6.1460333333333335,6.149366666666666,6.152699999999999,6.156033333333334,6.159366666666667,6.1627,6.166033333333333,6.169366666666666,6.172700000000001,6.176033333333334,6.179366666666667,6.1827,6.186033333333333,6.189366666666667,6.1927,6.196033333333333,6.199366666666666,6.202699999999999,6.206033333333334,6.209366666666667,6.2127,6.216033333333333,6.219366666666667,6.222700000000001,6.2260333333333335,6.2293666666666665,6.2326999999999995,6.236033333333333,6.239366666666667,6.2427,6.246033333333333,6.249366666666666,6.2527,6.256033333333334,6.259366666666667,6.2627,6.266033333333334,6.2693666666666665,6.2727,6.276033333333333,6.279366666666666,6.2827,6.286033333333333,6.289366666666667,6.2927,6.296033333333333,6.299366666666667,6.3027,6.306033333333334,6.309366666666667,6.3127,6.316033333333333,6.319366666666666,6.3227,6.326033333333333,6.329366666666667,6.3327,6.336033333333333,6.339366666666667,6.3427,6.346033333333334,6.349366666666667,6.3527,6.356033333333333,6.359366666666667,6.3627,6.366033333333333,6.369366666666666,6.3727,6.376033333333334,6.379366666666667,6.3827,6.386033333333333,6.389366666666667,6.3927000000000005,6.3960333333333335,6.399366666666666,6.402699999999999,6.406033333333334,6.409366666666667,6.4127,6.416033333333333,6.419366666666666,6.422700000000001,6.426033333333334,6.429366666666667,6.4327,6.436033333333333,6.439366666666667,6.4427,6.446033333333333,6.449366666666666,6.452699999999999,6.456033333333334,6.459366666666667,6.4627,6.466033333333333,6.469366666666667,6.472700000000001,6.4760333333333335,6.4793666666666665,6.4826999999999995,6.486033333333333,6.489366666666667,6.4927,6.496033333333333,6.499366666666666,6.5027,6.506033333333334,6.509366666666667,6.5127,6.516033333333334,6.5193666666666665,6.5227,6.526033333333333,6.529366666666666,6.5327,6.536033333333333,6.539366666666667,6.5427,6.546033333333333,6.549366666666667,6.5527,6.556033333333334,6.559366666666667,6.5627,6.566033333333333,6.569366666666666,6.5727,6.576033333333333,6.579366666666667,6.5827,6.586033333333333,6.589366666666667,6.5927,6.596033333333334,6.599366666666667,6.6027,6.606033333333333,6.609366666666667,6.6127,6.616033333333333,6.619366666666666,6.6227,6.626033333333334,6.629366666666667,6.6327,6.636033333333333,6.639366666666667,6.6427000000000005,6.6460333333333335,6.649366666666666,6.652699999999999,6.656033333333334,6.659366666666667,6.6627,6.666033333333333,6.669366666666666,6.672700000000001,6.676033333333334,6.679366666666667,6.6827,6.686033333333333,6.689366666666667,6.6927,6.696033333333333,6.699366666666666,6.702699999999999,6.706033333333334,6.709366666666667,6.7127,6.716033333333333,6.719366666666667,6.722700000000001,6.7260333333333335,6.7293666666666665,6.7326999999999995,6.736033333333333,6.739366666666667,6.7427,6.746033333333333,6.749366666666666,6.7527,6.756033333333334,6.759366666666667,6.7627,6.766033333333334,6.7693666666666665,6.7727,6.776033333333333,6.779366666666666,6.7827,6.786033333333333,6.789366666666667,6.7927,6.796033333333333,6.799366666666667,6.8027,6.806033333333334,6.809366666666667,6.8127,6.816033333333333,6.819366666666666,6.8227,6.826033333333333,6.829366666666667,6.8327,6.836033333333333,6.839366666666667,6.8427,6.846033333333334,6.849366666666667,6.8527,6.856033333333333,6.859366666666667,6.8627,6.866033333333333,6.869366666666666,6.8727,6.876033333333334,6.879366666666667,6.8827,6.886033333333333,6.889366666666667,6.8927000000000005,6.8960333333333335,6.899366666666666,6.902699999999999,6.906033333333334,6.909366666666667,6.9127,6.916033333333333,6.919366666666666,6.922700000000001,6.926033333333334,6.929366666666667,6.9327,6.936033333333333,6.939366666666667,6.9427,6.946033333333333,6.949366666666666,6.952699999999999,6.956033333333334,6.959366666666667,6.9627,6.966033333333333,6.969366666666667,6.972700000000001,6.9760333333333335,6.9793666666666665,6.9826999999999995,6.986033333333333,6.989366666666667,6.9927,6.996033333333333,6.999366666666666,7.0027,7.006033333333334,7.009366666666667,7.0127,7.016033333333334,7.0193666666666665,7.0227,7.026033333333333,7.029366666666666,7.0327,7.036033333333333,7.039366666666667,7.0427,7.046033333333333,7.049366666666667,7.0527,7.056033333333334,7.059366666666667,7.0627,7.066033333333333,7.069366666666666,7.0727,7.076033333333333,7.079366666666667,7.0827,7.086033333333333,7.089366666666667,7.0927,7.096033333333334,7.099366666666667,7.1027,7.106033333333333,7.109366666666667,7.1127,7.116033333333333,7.119366666666666,7.1227,7.126033333333334,7.129366666666667,7.1327,7.136033333333333,7.139366666666667,7.1427000000000005,7.1460333333333335,7.149366666666666,7.152699999999999,7.156033333333334,7.159366666666667,7.1627,7.166033333333333,7.169366666666666,7.172700000000001,7.176033333333334,7.179366666666667,7.1827,7.186033333333333,7.189366666666667,7.1927,7.196033333333333,7.199366666666666,7.202699999999999,7.206033333333334,7.209366666666667,7.2127,7.216033333333333,7.219366666666667,7.222700000000001,7.2260333333333335,7.2293666666666665,7.2326999999999995,7.236033333333333,7.239366666666667,7.2427,7.246033333333333,7.249366666666666,7.2527,7.256033333333334,7.259366666666667,7.2627,7.266033333333334,7.2693666666666665,7.2727,7.276033333333333,7.279366666666666,7.2827,7.286033333333333,7.289366666666667,7.2927,7.296033333333333,7.299366666666667,7.3027,7.306033333333334,7.309366666666667,7.3127,7.316033333333333,7.319366666666666,7.3227,7.326033333333333,7.329366666666667,7.3327,7.336033333333333,7.339366666666667,7.3427,7.346033333333334,7.349366666666667,7.3527,7.356033333333333,7.359366666666667,7.3627,7.366033333333333,7.369366666666666,7.3727,7.376033333333334,7.379366666666667,7.3827,7.386033333333333,7.389366666666667,7.3927000000000005,7.3960333333333335,7.399366666666666,7.402699999999999,7.406033333333334,7.409366666666667,7.4127,7.416033333333333,7.419366666666666,7.422700000000001,7.426033333333334,7.429366666666667,7.4327,7.436033333333333,7.439366666666667,7.4427,7.446033333333333,7.449366666666666,7.452699999999999,7.456033333333334,7.459366666666667,7.4627,7.466033333333333,7.469366666666667,7.472700000000001,7.4760333333333335,7.4793666666666665,7.4826999999999995,7.486033333333333,7.489366666666667,7.4927,7.496033333333333,7.499366666666666,7.5027,7.506033333333334,7.509366666666667,7.5127,7.516033333333334,7.5193666666666665,7.5227,7.526033333333333,7.529366666666666,7.5327,7.536033333333333,7.539366666666667,7.5427,7.546033333333333,7.549366666666667,7.5527,7.556033333333334,7.559366666666667,7.5627,7.566033333333333,7.569366666666666,7.5727,7.576033333333333,7.579366666666667,7.5827,7.586033333333333,7.589366666666667,7.5927,7.596033333333334,7.599366666666667,7.6027,7.606033333333333,7.609366666666667,7.6127,7.616033333333333,7.619366666666666,7.6227,7.626033333333334,7.629366666666667,7.6327,7.636033333333333,7.639366666666667,7.6427000000000005,7.6460333333333335,7.649366666666666,7.652699999999999,7.656033333333334,7.659366666666667,7.6627,7.666033333333333,7.669366666666666,7.672700000000001,7.676033333333334,7.679366666666667,7.6827,7.686033333333333,7.689366666666667,7.6927,7.696033333333333,7.699366666666666,7.702699999999999,7.706033333333334,7.709366666666667,7.7127,7.716033333333333,7.719366666666667,7.722700000000001,7.7260333333333335,7.7293666666666665,7.7326999999999995,7.736033333333333,7.739366666666667,7.7427,7.746033333333333,7.749366666666666,7.7527,7.756033333333334,7.759366666666667,7.7627,7.766033333333334,7.7693666666666665,7.7727,7.776033333333333,7.779366666666666,7.7827,7.786033333333333,7.789366666666667,7.7927,7.796033333333333,7.799366666666667,7.8027,7.806033333333334,7.809366666666667,7.8127,7.816033333333333,7.819366666666666,7.8227,7.826033333333333,7.829366666666667,7.8327,7.836033333333333,7.839366666666667,7.8427,7.846033333333334,7.849366666666667,7.8527,7.856033333333333,7.859366666666667,7.8627,7.866033333333333,7.869366666666666,7.8727,7.876033333333334,7.879366666666667,7.8827,7.886033333333333,7.889366666666667,7.8927000000000005,7.8960333333333335,7.899366666666666,7.902699999999999,7.906033333333334,7.909366666666667,7.9127,7.916033333333333,7.919366666666666,7.922700000000001,7.926033333333334,7.929366666666667,7.9327,7.936033333333333,7.939366666666667,7.9427,7.946033333333333,7.949366666666666,7.952699999999999,7.956033333333334,7.959366666666667,7.9627,7.966033333333333,7.969366666666667,7.972700000000001,7.9760333333333335,7.9793666666666665,7.9826999999999995,7.986033333333333,7.989366666666667,7.9927,7.996033333333333,7.999366666666666,8.002699999999999,8.006033333333333,8.009366666666667,8.0127,8.016033333333333,8.019366666666667,8.0227,8.026033333333334,8.029366666666666,8.0327,8.036033333333332,8.039366666666668,8.0427,8.046033333333334,8.049366666666666,8.0527,8.056033333333334,8.059366666666667,8.0627,8.066033333333333,8.069366666666665,8.072700000000001,8.076033333333333,8.079366666666667,8.082699999999999,8.086033333333333,8.089366666666667,8.0927,8.096033333333333,8.099366666666667,8.1027,8.106033333333334,8.109366666666666,8.1127,8.116033333333332,8.119366666666666,8.1227,8.126033333333334,8.129366666666666,8.1327,8.136033333333334,8.139366666666668,8.1427,8.146033333333333,8.149366666666667,8.1527,8.156033333333333,8.159366666666667,8.1627,8.166033333333333,8.169366666666667,8.1727,8.176033333333333,8.179366666666667,8.1827,8.186033333333333,8.189366666666666,8.1927,8.196033333333334,8.199366666666666,8.2027,8.206033333333334,8.209366666666666,8.2127,8.216033333333334,8.219366666666666,8.2227,8.226033333333334,8.229366666666667,8.2327,8.236033333333333,8.239366666666667,8.242700000000001,8.246033333333333,8.249366666666667,8.252699999999999,8.256033333333333,8.259366666666667,8.2627,8.266033333333333,8.269366666666667,8.2727,8.276033333333334,8.279366666666666,8.2827,8.286033333333332,8.289366666666668,8.2927,8.296033333333334,8.299366666666666,8.3027,8.306033333333334,8.309366666666667,8.3127,8.316033333333333,8.319366666666665,8.322700000000001,8.326033333333333,8.329366666666667,8.332699999999999,8.336033333333333,8.339366666666667,8.3427,8.346033333333333,8.349366666666667,8.3527,8.356033333333334,8.359366666666666,8.3627,8.366033333333332,8.369366666666666,8.3727,8.376033333333334,8.379366666666666,8.3827,8.386033333333334,8.389366666666668,8.3927,8.396033333333333,8.399366666666667,8.4027,8.406033333333333,8.409366666666667,8.4127,8.416033333333333,8.419366666666667,8.4227,8.426033333333333,8.429366666666667,8.4327,8.436033333333333,8.439366666666666,8.4427,8.446033333333334,8.449366666666666,8.4527,8.456033333333334,8.459366666666666,8.4627,8.466033333333334,8.469366666666666,8.4727,8.476033333333334,8.479366666666667,8.4827,8.486033333333333,8.489366666666667,8.492700000000001,8.496033333333333,8.499366666666667,8.502699999999999,8.506033333333333,8.509366666666667,8.5127,8.516033333333333,8.519366666666667,8.5227,8.526033333333334,8.529366666666666,8.5327,8.536033333333334,8.539366666666666,8.5427,8.546033333333332,8.549366666666666,8.5527,8.556033333333334,8.559366666666667,8.5627,8.566033333333333,8.569366666666667,8.5727,8.576033333333333,8.579366666666665,8.582699999999999,8.586033333333335,8.589366666666667,8.5927,8.596033333333333,8.599366666666667,8.6027,8.606033333333333,8.609366666666666,8.612699999999998,8.616033333333332,8.619366666666668,8.6227,8.626033333333334,8.629366666666666,8.6327,8.636033333333334,8.639366666666666,8.6427,8.646033333333332,8.649366666666667,8.652700000000001,8.656033333333333,8.659366666666667,8.6627,8.666033333333333,8.669366666666667,8.672699999999999,8.676033333333333,8.679366666666665,8.6827,8.686033333333334,8.689366666666666,8.6927,8.696033333333332,8.699366666666666,8.7027,8.706033333333332,8.709366666666666,8.7127,8.716033333333334,8.719366666666668,8.7227,8.726033333333334,8.729366666666666,8.7327,8.736033333333333,8.739366666666665,8.742700000000001,8.746033333333333,8.749366666666667,8.7527,8.756033333333333,8.759366666666667,8.762699999999999,8.766033333333333,8.769366666666667,8.772699999999999,8.776033333333334,8.779366666666666,8.7827,8.786033333333334,8.789366666666666,8.7927,8.796033333333332,8.799366666666666,8.8027,8.806033333333334,8.809366666666667,8.8127,8.816033333333333,8.819366666666667,8.8227,8.826033333333333,8.829366666666665,8.832699999999999,8.836033333333335,8.839366666666667,8.8427,8.846033333333333,8.849366666666667,8.8527,8.856033333333333,8.859366666666666,8.862699999999998,8.866033333333332,8.869366666666668,8.8727,8.876033333333334,8.879366666666666,8.8827,8.886033333333334,8.889366666666666,8.8927,8.896033333333332,8.899366666666667,8.902700000000001,8.906033333333333,8.909366666666667,8.9127,8.916033333333333,8.919366666666667,8.922699999999999,8.926033333333333,8.929366666666665,8.9327,8.936033333333334,8.939366666666666,8.9427,8.946033333333332,8.949366666666666,8.9527,8.956033333333332,8.959366666666666,8.9627,8.966033333333334,8.969366666666668,8.9727,8.976033333333334,8.979366666666666,8.9827,8.986033333333333,8.989366666666665,8.992700000000001,8.996033333333333,8.999366666666667,9.0027,9.006033333333333,9.009366666666667,9.012699999999999,9.016033333333333,9.019366666666667,9.022699999999999,9.026033333333334,9.029366666666666,9.0327,9.036033333333334,9.039366666666666,9.0427,9.046033333333332,9.049366666666666,9.0527,9.056033333333334,9.059366666666667,9.0627,9.066033333333333,9.069366666666667,9.0727,9.076033333333333,9.079366666666665,9.082699999999999,9.086033333333335,9.089366666666667,9.0927,9.096033333333333,9.099366666666667,9.1027,9.106033333333333,9.109366666666666,9.112699999999998,9.116033333333332,9.119366666666668,9.1227,9.126033333333334,9.129366666666666,9.1327,9.136033333333334,9.139366666666666,9.1427,9.146033333333332,9.149366666666667,9.152700000000001,9.156033333333333,9.159366666666667,9.1627,9.166033333333333,9.169366666666667,9.172699999999999,9.176033333333333,9.179366666666665,9.1827,9.186033333333334,9.189366666666666,9.1927,9.196033333333332,9.199366666666666,9.2027,9.206033333333332,9.209366666666666,9.2127,9.216033333333334,9.219366666666668,9.2227,9.226033333333334,9.229366666666666,9.2327,9.236033333333333,9.239366666666665,9.242700000000001,9.246033333333333,9.249366666666667,9.2527,9.256033333333333,9.259366666666667,9.262699999999999,9.266033333333333,9.269366666666667,9.272699999999999,9.276033333333334,9.279366666666666,9.2827,9.286033333333334,9.289366666666666,9.2927,9.296033333333332,9.299366666666666,9.3027,9.306033333333334,9.309366666666667,9.3127,9.316033333333333,9.319366666666667,9.3227,9.326033333333333,9.329366666666665,9.332699999999999,9.336033333333335,9.339366666666667,9.3427,9.346033333333333,9.349366666666667,9.3527,9.356033333333333,9.359366666666666,9.362699999999998,9.366033333333332,9.369366666666668,9.3727,9.376033333333334,9.379366666666666,9.3827,9.386033333333334,9.389366666666666,9.3927,9.396033333333332,9.399366666666667,9.402700000000001,9.406033333333333,9.409366666666667,9.4127,9.416033333333333,9.419366666666667,9.422699999999999,9.426033333333333,9.429366666666665,9.4327,9.436033333333334,9.439366666666666,9.4427,9.446033333333332,9.449366666666666,9.4527,9.456033333333332,9.459366666666666,9.4627,9.466033333333334,9.469366666666668,9.4727,9.476033333333334,9.479366666666666,9.4827,9.486033333333333,9.489366666666665,9.492700000000001,9.496033333333333,9.499366666666667,9.5027,9.506033333333333,9.509366666666667,9.512699999999999,9.516033333333333,9.519366666666667,9.522699999999999,9.526033333333334,9.529366666666666,9.5327,9.536033333333334,9.539366666666666,9.5427,9.546033333333332,9.549366666666666,9.5527,9.556033333333334,9.559366666666667,9.5627,9.566033333333333,9.569366666666667,9.5727,9.576033333333333,9.579366666666665,9.582699999999999,9.586033333333335,9.589366666666667,9.5927,9.596033333333333,9.599366666666667,9.6027,9.606033333333333,9.609366666666666,9.612699999999998,9.616033333333332,9.619366666666668,9.6227,9.626033333333334,9.629366666666666,9.6327,9.636033333333334,9.639366666666666,9.6427,9.646033333333332,9.649366666666667,9.652700000000001,9.656033333333333,9.659366666666667,9.6627,9.666033333333333,9.669366666666667,9.672699999999999,9.676033333333333,9.679366666666665,9.6827,9.686033333333334,9.689366666666666,9.6927,9.696033333333332,9.699366666666666,9.7027,9.706033333333332,9.709366666666666,9.7127,9.716033333333334,9.719366666666668,9.7227,9.726033333333334,9.729366666666666,9.7327,9.736033333333333,9.739366666666665,9.742700000000001,9.746033333333333,9.749366666666667,9.7527,9.756033333333333,9.759366666666667,9.762699999999999,9.766033333333333,9.769366666666667,9.772699999999999,9.776033333333334,9.779366666666666,9.7827,9.786033333333334,9.789366666666666,9.7927,9.796033333333332,9.799366666666666,9.8027,9.806033333333334,9.809366666666667,9.8127,9.816033333333333,9.819366666666667,9.8227,9.826033333333333,9.829366666666665,9.832699999999999,9.836033333333335,9.839366666666667,9.8427,9.846033333333333,9.849366666666667,9.8527,9.856033333333333,9.859366666666666,9.862699999999998,9.866033333333332,9.869366666666668,9.8727,9.876033333333334,9.879366666666666,9.8827,9.886033333333334,9.889366666666666,9.8927,9.896033333333332,9.899366666666667,9.902700000000001,9.906033333333333,9.909366666666667,9.9127,9.916033333333333,9.919366666666667,9.922699999999999,9.926033333333333,9.929366666666665,9.9327,9.936033333333334,9.939366666666666,9.9427,9.946033333333332,9.949366666666666,9.9527,9.956033333333332,9.959366666666666,9.9627,9.966033333333334,9.969366666666668,9.9727,9.976033333333334,9.979366666666666,9.9827,9.986033333333333,9.989366666666665,9.992700000000001,9.996033333333333,9.999366666666667,10.0027,10.006033333333333,10.009366666666667,10.012699999999999,10.016033333333333,10.019366666666667,10.022699999999999,10.026033333333334,10.029366666666666,10.0327,10.036033333333334,10.039366666666666,10.0427,10.046033333333332,10.049366666666666,10.0527,10.056033333333334,10.059366666666667,10.0627,10.066033333333333,10.069366666666667,10.0727,10.076033333333333,10.079366666666665,10.082699999999999,10.086033333333335,10.089366666666667,10.0927,10.096033333333333,10.099366666666667,10.1027,10.106033333333333,10.109366666666666,10.112699999999998,10.116033333333332,10.119366666666668,10.1227,10.126033333333334,10.129366666666666,10.1327,10.136033333333334,10.139366666666666,10.1427,10.146033333333332,10.149366666666667,10.152700000000001,10.156033333333333,10.159366666666667,10.1627,10.166033333333333,10.169366666666667,10.172699999999999,10.176033333333333,10.179366666666665,10.1827,10.186033333333334,10.189366666666666,10.1927,10.196033333333332,10.199366666666666,10.2027,10.206033333333332,10.209366666666666,10.2127,10.216033333333334,10.219366666666668,10.2227,10.226033333333334,10.229366666666666,10.2327,10.236033333333333,10.239366666666665,10.242700000000001,10.246033333333333,10.249366666666667,10.2527,10.256033333333333,10.259366666666667,10.262699999999999,10.266033333333333,10.269366666666667,10.272699999999999,10.276033333333334,10.279366666666666,10.2827,10.286033333333334,10.289366666666666,10.2927,10.296033333333332,10.299366666666666,10.3027,10.306033333333334,10.309366666666667,10.3127,10.316033333333333,10.319366666666667,10.3227,10.326033333333333,10.329366666666665,10.332699999999999,10.336033333333335,10.339366666666667,10.3427,10.346033333333333,10.349366666666667,10.3527,10.356033333333333,10.359366666666666,10.362699999999998,10.366033333333332,10.369366666666668,10.3727,10.376033333333334,10.379366666666666,10.3827,10.386033333333334,10.389366666666666,10.3927,10.396033333333332,10.399366666666667,10.402700000000001,10.406033333333333,10.409366666666667,10.4127,10.416033333333333,10.419366666666667,10.422699999999999,10.426033333333333,10.429366666666665,10.4327,10.436033333333334,10.439366666666666,10.4427,10.446033333333332,10.449366666666666,10.4527,10.456033333333332,10.459366666666666,10.4627,10.466033333333334,10.469366666666668,10.4727,10.476033333333334,10.479366666666666,10.4827,10.486033333333333,10.489366666666665,10.492700000000001,10.496033333333333,10.499366666666667,10.5027,10.506033333333333,10.509366666666667,10.512699999999999,10.516033333333333,10.519366666666667,10.522699999999999,10.526033333333334,10.529366666666666,10.5327,10.536033333333334,10.539366666666666,10.5427,10.546033333333332,10.549366666666666,10.5527,10.556033333333334,10.559366666666667,10.5627,10.566033333333333,10.569366666666667,10.5727,10.576033333333333,10.579366666666665,10.582699999999999,10.586033333333335,10.589366666666667,10.5927,10.596033333333333,10.599366666666667,10.6027,10.606033333333333,10.609366666666666,10.612699999999998,10.616033333333332,10.619366666666668,10.6227,10.626033333333334,10.629366666666666,10.6327,10.636033333333334,10.639366666666666,10.6427,10.646033333333332,10.649366666666667,10.652700000000001,10.656033333333333,10.659366666666667,10.6627,10.666033333333333,10.669366666666667,10.672699999999999,10.676033333333333,10.679366666666665,10.6827,10.686033333333334,10.689366666666666,10.6927,10.696033333333332,10.699366666666666,10.7027,10.706033333333332,10.709366666666666,10.7127,10.716033333333334,10.719366666666668,10.7227,10.726033333333334,10.729366666666666,10.7327,10.736033333333333,10.739366666666665,10.742700000000001,10.746033333333333,10.749366666666667,10.7527,10.756033333333333,10.759366666666667,10.762699999999999,10.766033333333333,10.769366666666667,10.772699999999999,10.776033333333334,10.779366666666666,10.7827,10.786033333333334,10.789366666666666,10.7927,10.796033333333332,10.799366666666666,10.8027,10.806033333333334,10.809366666666667,10.8127,10.816033333333333,10.819366666666667,10.8227,10.826033333333333,10.829366666666665,10.832699999999999,10.836033333333335,10.839366666666667,10.8427,10.846033333333333,10.849366666666667,10.8527,10.856033333333333,10.859366666666666,10.862699999999998,10.866033333333332,10.869366666666668,10.8727,10.876033333333334,10.879366666666666,10.8827,10.886033333333334,10.889366666666666,10.8927,10.896033333333332,10.899366666666667,10.902700000000001,10.906033333333333,10.909366666666667,10.9127,10.916033333333333,10.919366666666667,10.922699999999999,10.926033333333333,10.929366666666665,10.9327,10.936033333333334,10.939366666666666,10.9427,10.946033333333332,10.949366666666666,10.9527,10.956033333333332,10.959366666666666,10.9627,10.966033333333334,10.969366666666668,10.9727,10.976033333333334,10.979366666666666,10.9827,10.986033333333333,10.989366666666665,10.992700000000001,10.996033333333333,10.999366666666667,11.0027,11.006033333333333,11.009366666666667,11.012699999999999,11.016033333333333,11.019366666666667,11.022699999999999,11.026033333333334,11.029366666666666,11.0327,11.036033333333334,11.039366666666666,11.0427,11.046033333333332,11.049366666666666,11.0527,11.056033333333334,11.059366666666667,11.0627,11.066033333333333,11.069366666666667,11.0727,11.076033333333333,11.079366666666665,11.082699999999999,11.086033333333335,11.089366666666667,11.0927,11.096033333333333,11.099366666666667,11.1027,11.106033333333333,11.109366666666666,11.112699999999998,11.116033333333332,11.119366666666668,11.1227,11.126033333333334,11.129366666666666,11.1327,11.136033333333334,11.139366666666666,11.1427,11.146033333333332,11.149366666666667,11.152700000000001,11.156033333333333,11.159366666666667,11.1627,11.166033333333333,11.169366666666667,11.172699999999999,11.176033333333333,11.179366666666665,11.1827,11.186033333333334,11.189366666666666,11.1927,11.196033333333332,11.199366666666666,11.2027,11.206033333333332,11.209366666666666,11.2127,11.216033333333334,11.219366666666668,11.2227,11.226033333333334,11.229366666666666,11.2327,11.236033333333333,11.239366666666665,11.242700000000001,11.246033333333333,11.249366666666667,11.2527,11.256033333333333,11.259366666666667,11.262699999999999,11.266033333333333,11.269366666666667,11.272699999999999,11.276033333333334,11.279366666666666,11.2827,11.286033333333334,11.289366666666666,11.2927,11.296033333333332,11.299366666666666,11.3027,11.306033333333334,11.309366666666667,11.3127,11.316033333333333,11.319366666666667,11.3227,11.326033333333333,11.329366666666665,11.332699999999999,11.336033333333335,11.339366666666667,11.3427,11.346033333333333,11.349366666666667,11.3527,11.356033333333333,11.359366666666666,11.362699999999998,11.366033333333332,11.369366666666668,11.3727,11.376033333333334,11.379366666666666,11.3827,11.386033333333334,11.389366666666666,11.3927,11.396033333333332,11.399366666666667,11.402700000000001,11.406033333333333,11.409366666666667,11.4127,11.416033333333333,11.419366666666667,11.422699999999999,11.426033333333333,11.429366666666665,11.4327,11.436033333333334,11.439366666666666,11.4427,11.446033333333332,11.449366666666666,11.4527,11.456033333333332,11.459366666666666,11.4627,11.466033333333334,11.469366666666668,11.4727,11.476033333333334,11.479366666666666,11.4827,11.486033333333333,11.489366666666665,11.492700000000001,11.496033333333333,11.499366666666667,11.5027,11.506033333333333,11.509366666666667,11.512699999999999,11.516033333333333,11.519366666666667,11.522699999999999,11.526033333333334,11.529366666666666,11.5327,11.536033333333334,11.539366666666666,11.5427,11.546033333333332,11.549366666666666,11.5527,11.556033333333334,11.559366666666667,11.5627,11.566033333333333,11.569366666666667,11.5727,11.576033333333333,11.579366666666665,11.582699999999999,11.586033333333335,11.589366666666667,11.5927,11.596033333333333,11.599366666666667,11.6027,11.606033333333333,11.609366666666666,11.612699999999998,11.616033333333332,11.619366666666668,11.6227,11.626033333333334,11.629366666666666,11.6327,11.636033333333334,11.639366666666666,11.6427,11.646033333333332,11.649366666666667,11.652700000000001,11.656033333333333,11.659366666666667,11.6627,11.666033333333333,11.669366666666667,11.672699999999999,11.676033333333333,11.679366666666665,11.6827,11.686033333333334,11.689366666666666,11.6927,11.696033333333332,11.699366666666666,11.7027,11.706033333333332,11.709366666666666,11.7127,11.716033333333334,11.719366666666668,11.7227,11.726033333333334,11.729366666666666,11.7327,11.736033333333333,11.739366666666665,11.742700000000001,11.746033333333333,11.749366666666667,11.7527,11.756033333333333,11.759366666666667,11.762699999999999,11.766033333333333,11.769366666666667,11.772699999999999,11.776033333333334,11.779366666666666,11.7827,11.786033333333334,11.789366666666666,11.7927,11.796033333333332,11.799366666666666,11.8027,11.806033333333334,11.809366666666667,11.8127,11.816033333333333,11.819366666666667,11.8227,11.826033333333333,11.829366666666665,11.832699999999999,11.836033333333335,11.839366666666667,11.8427,11.846033333333333,11.849366666666667,11.8527,11.856033333333333,11.859366666666666,11.862699999999998,11.866033333333332,11.869366666666668,11.8727,11.876033333333334,11.879366666666666,11.8827,11.886033333333334,11.889366666666666,11.8927,11.896033333333332,11.899366666666667,11.902700000000001,11.906033333333333,11.909366666666667,11.9127,11.916033333333333,11.919366666666667,11.922699999999999,11.926033333333333,11.929366666666665,11.9327,11.936033333333334,11.939366666666666,11.9427,11.946033333333332,11.949366666666666,11.9527,11.956033333333332,11.959366666666666,11.9627,11.966033333333334,11.969366666666668,11.9727,11.976033333333334,11.979366666666666,11.9827,11.986033333333333,11.989366666666665,11.992700000000001,11.996033333333333,11.999366666666667,12.0027,12.006033333333333,12.009366666666667,12.012699999999999,12.016033333333333,12.019366666666667,12.022699999999999,12.026033333333334,12.029366666666666,12.0327,12.036033333333334,12.039366666666666,12.0427,12.046033333333332,12.049366666666666,12.0527,12.056033333333334,12.059366666666667,12.0627,12.066033333333333,12.069366666666667,12.0727,12.076033333333333,12.079366666666665,12.082699999999999,12.086033333333335,12.089366666666667,12.0927,12.096033333333333,12.099366666666667,12.1027,12.106033333333333,12.109366666666666,12.112699999999998,12.116033333333332,12.119366666666668,12.1227,12.126033333333334,12.129366666666666,12.1327,12.136033333333334,12.139366666666666,12.1427,12.146033333333332,12.149366666666667,12.152700000000001,12.156033333333333,12.159366666666667,12.1627,12.166033333333333,12.169366666666667,12.172699999999999,12.176033333333333,12.179366666666665,12.1827,12.186033333333334,12.189366666666666,12.1927,12.196033333333332,12.199366666666666,12.2027,12.206033333333332,12.209366666666666,12.2127,12.216033333333334,12.219366666666668,12.2227,12.226033333333334,12.229366666666666,12.2327,12.236033333333333,12.239366666666665,12.242700000000001,12.246033333333333,12.249366666666667,12.2527,12.256033333333333,12.259366666666667,12.262699999999999,12.266033333333333,12.269366666666667,12.272699999999999,12.276033333333334,12.279366666666666,12.2827,12.286033333333334,12.289366666666666,12.2927,12.296033333333332,12.299366666666666,12.3027,12.306033333333334,12.309366666666667,12.3127,12.316033333333333,12.319366666666667,12.3227,12.326033333333333,12.329366666666665,12.332699999999999,12.336033333333335,12.339366666666667,12.3427,12.346033333333333,12.349366666666667,12.3527,12.356033333333333,12.359366666666666,12.362699999999998,12.366033333333332,12.369366666666668,12.3727,12.376033333333334,12.379366666666666,12.3827,12.386033333333334,12.389366666666666,12.3927,12.396033333333332,12.399366666666667,12.402700000000001,12.406033333333333,12.409366666666667,12.4127,12.416033333333333,12.419366666666667,12.422699999999999,12.426033333333333,12.429366666666665,12.4327,12.436033333333334,12.439366666666666,12.4427,12.446033333333332,12.449366666666666,12.4527,12.456033333333332,12.459366666666666,12.4627,12.466033333333334,12.469366666666668,12.4727,12.476033333333334,12.479366666666666,12.4827,12.486033333333333,12.489366666666665,12.492700000000001,12.496033333333333,12.499366666666667,12.5027,12.506033333333333,12.509366666666667,12.512699999999999,12.516033333333333,12.519366666666667,12.522699999999999,12.526033333333334,12.529366666666666,12.5327,12.536033333333334,12.539366666666666,12.5427,12.546033333333332,12.549366666666666,12.5527,12.556033333333334,12.559366666666667,12.5627,12.566033333333333,12.569366666666667,12.5727,12.576033333333333,12.579366666666665,12.582699999999999,12.586033333333335,12.589366666666667,12.5927,12.596033333333333,12.599366666666667,12.6027,12.606033333333333,12.609366666666666,12.612699999999998,12.616033333333332,12.619366666666668,12.6227,12.626033333333334,12.629366666666666,12.6327,12.636033333333334,12.639366666666666,12.6427,12.646033333333332,12.649366666666667,12.652700000000001,12.656033333333333,12.659366666666667,12.6627,12.666033333333333,12.669366666666667,12.672699999999999,12.676033333333333,12.679366666666665,12.6827,12.686033333333334,12.689366666666666,12.6927,12.696033333333332,12.699366666666666,12.7027,12.706033333333332,12.709366666666666,12.7127,12.716033333333334,12.719366666666668,12.7227,12.726033333333334,12.729366666666666,12.7327,12.736033333333333,12.739366666666665,12.742700000000001,12.746033333333333,12.749366666666667,12.7527,12.756033333333333,12.759366666666667,12.762699999999999,12.766033333333333,12.769366666666667,12.772699999999999,12.776033333333334,12.779366666666666,12.7827,12.786033333333334,12.789366666666666,12.7927,12.796033333333332,12.799366666666666,12.8027,12.806033333333334,12.809366666666667,12.8127,12.816033333333333,12.819366666666667,12.8227,12.826033333333333,12.829366666666665,12.832699999999999,12.836033333333335,12.839366666666667,12.8427,12.846033333333333,12.849366666666667,12.8527,12.856033333333333,12.859366666666666,12.862699999999998,12.866033333333332,12.869366666666668,12.8727,12.876033333333334,12.879366666666666,12.8827,12.886033333333334,12.889366666666666,12.8927,12.896033333333332,12.899366666666667,12.902700000000001,12.906033333333333,12.909366666666667,12.9127,12.916033333333333,12.919366666666667,12.922699999999999,12.926033333333333,12.929366666666665,12.9327,12.936033333333334,12.939366666666666,12.9427,12.946033333333332,12.949366666666666,12.9527,12.956033333333332,12.959366666666666,12.9627,12.966033333333334,12.969366666666668,12.9727,12.976033333333334,12.979366666666666,12.9827,12.986033333333333,12.989366666666665,12.992700000000001,12.996033333333333,12.999366666666667,13.0027,13.006033333333333,13.009366666666667,13.012699999999999,13.016033333333333,13.019366666666667,13.022699999999999,13.026033333333334,13.029366666666666,13.0327,13.036033333333334,13.039366666666666,13.0427,13.046033333333332,13.049366666666666,13.0527,13.056033333333334,13.059366666666667,13.0627,13.066033333333333,13.069366666666667,13.0727,13.076033333333333,13.079366666666665,13.082699999999999,13.086033333333335,13.089366666666667,13.0927,13.096033333333333,13.099366666666667,13.1027,13.106033333333333,13.109366666666666,13.112699999999998,13.116033333333332,13.119366666666668,13.1227,13.126033333333334,13.129366666666666,13.1327,13.136033333333334,13.139366666666666,13.1427,13.146033333333332,13.149366666666667,13.152700000000001,13.156033333333333,13.159366666666667,13.1627,13.166033333333333,13.169366666666667,13.172699999999999,13.176033333333333,13.179366666666665,13.1827,13.186033333333334,13.189366666666666,13.1927,13.196033333333332,13.199366666666666,13.2027,13.206033333333332,13.209366666666666,13.2127,13.216033333333334,13.219366666666668,13.2227,13.226033333333334,13.229366666666666,13.2327,13.236033333333333,13.239366666666665,13.242700000000001,13.246033333333333,13.249366666666667,13.2527,13.256033333333333,13.259366666666667,13.262699999999999,13.266033333333333,13.269366666666667,13.272699999999999,13.276033333333334,13.279366666666666,13.2827,13.286033333333334,13.289366666666666,13.2927,13.296033333333332,13.299366666666666,13.3027,13.306033333333334,13.309366666666667,13.3127,13.316033333333333,13.319366666666667,13.3227,13.326033333333333,13.329366666666665,13.332699999999999,13.336033333333335,13.339366666666667,13.3427,13.346033333333333,13.349366666666667,13.3527,13.356033333333333,13.359366666666666,13.362699999999998,13.366033333333332,13.369366666666668,13.3727,13.376033333333334,13.379366666666666,13.3827,13.386033333333334,13.389366666666666,13.3927,13.396033333333332,13.399366666666667,13.402700000000001,13.406033333333333,13.409366666666667,13.4127,13.416033333333333,13.419366666666667,13.422699999999999,13.426033333333333,13.429366666666665,13.4327,13.436033333333334,13.439366666666666,13.4427,13.446033333333332,13.449366666666666,13.4527,13.456033333333332,13.459366666666666,13.4627,13.466033333333334,13.469366666666668,13.4727,13.476033333333334,13.479366666666666,13.4827,13.486033333333333,13.489366666666665,13.492700000000001,13.496033333333333,13.499366666666667,13.5027,13.506033333333333,13.509366666666667,13.512699999999999,13.516033333333333,13.519366666666667,13.522699999999999,13.526033333333334,13.529366666666666,13.5327,13.536033333333334,13.539366666666666,13.5427,13.546033333333332,13.549366666666666,13.5527,13.556033333333334,13.559366666666667,13.5627,13.566033333333333,13.569366666666667,13.5727,13.576033333333333,13.579366666666665,13.582699999999999,13.586033333333335,13.589366666666667,13.5927,13.596033333333333,13.599366666666667,13.6027,13.606033333333333,13.609366666666666,13.612699999999998,13.616033333333332,13.619366666666668,13.6227,13.626033333333334,13.629366666666666,13.6327,13.636033333333334,13.639366666666666,13.6427,13.646033333333332,13.649366666666667,13.652700000000001,13.656033333333333,13.659366666666667,13.6627,13.666033333333333,13.669366666666667,13.672699999999999,13.676033333333333,13.679366666666665,13.6827,13.686033333333334,13.689366666666666,13.6927,13.696033333333332,13.699366666666666,13.7027,13.706033333333332,13.709366666666666,13.7127,13.716033333333334,13.719366666666668,13.7227,13.726033333333334,13.729366666666666,13.7327,13.736033333333333,13.739366666666665,13.742700000000001,13.746033333333333,13.749366666666667,13.7527,13.756033333333333,13.759366666666667,13.762699999999999,13.766033333333333,13.769366666666667,13.772699999999999,13.776033333333334,13.779366666666666,13.7827,13.786033333333334,13.789366666666666,13.7927,13.796033333333332,13.799366666666666,13.8027,13.806033333333334,13.809366666666667,13.8127,13.816033333333333,13.819366666666667,13.8227,13.826033333333333,13.829366666666665,13.832699999999999,13.836033333333335,13.839366666666667,13.8427,13.846033333333333,13.849366666666667,13.8527,13.856033333333333,13.859366666666666,13.862699999999998,13.866033333333332,13.869366666666668,13.8727,13.876033333333334,13.879366666666666,13.8827,13.886033333333334,13.889366666666666,13.8927,13.896033333333332,13.899366666666667,13.902700000000001,13.906033333333333,13.909366666666667,13.9127,13.916033333333333,13.919366666666667,13.922699999999999,13.926033333333333,13.929366666666665,13.9327,13.936033333333334,13.939366666666666,13.9427,13.946033333333332,13.949366666666666,13.9527,13.956033333333332,13.959366666666666,13.9627,13.966033333333334,13.969366666666668,13.9727,13.976033333333334,13.979366666666666,13.9827,13.986033333333333,13.989366666666665,13.992700000000001,13.996033333333333,13.999366666666667,14.0027,14.006033333333333,14.009366666666667,14.012699999999999,14.016033333333333,14.019366666666667,14.022699999999999,14.026033333333334,14.029366666666666,14.0327,14.036033333333334,14.039366666666666,14.0427,14.046033333333332,14.049366666666666,14.0527,14.056033333333334,14.059366666666667,14.0627,14.066033333333333,14.069366666666667,14.0727,14.076033333333333,14.079366666666665,14.082699999999999,14.086033333333335,14.089366666666667,14.0927,14.096033333333333,14.099366666666667,14.1027,14.106033333333333,14.109366666666666,14.112699999999998,14.116033333333332,14.119366666666668,14.1227,14.126033333333334,14.129366666666666,14.1327,14.136033333333334,14.139366666666666,14.1427,14.146033333333332,14.149366666666667,14.152700000000001,14.156033333333333,14.159366666666667,14.1627,14.166033333333333,14.169366666666667,14.172699999999999,14.176033333333333,14.179366666666665,14.1827,14.186033333333334,14.189366666666666,14.1927,14.196033333333332,14.199366666666666,14.2027,14.206033333333332,14.209366666666666,14.2127,14.216033333333334,14.219366666666668,14.2227,14.226033333333334,14.229366666666666,14.2327,14.236033333333333,14.239366666666665,14.242700000000001,14.246033333333333,14.249366666666667,14.2527,14.256033333333333,14.259366666666667,14.262699999999999,14.266033333333333,14.269366666666667,14.272699999999999,14.276033333333334,14.279366666666666,14.2827,14.286033333333334,14.289366666666666,14.2927,14.296033333333332,14.299366666666666,14.3027,14.306033333333334,14.309366666666667,14.3127,14.316033333333333,14.319366666666667,14.3227,14.326033333333333,14.329366666666665,14.332699999999999,14.336033333333335,14.339366666666667,14.3427,14.346033333333333,14.349366666666667,14.3527,14.356033333333333,14.359366666666666,14.362699999999998,14.366033333333332,14.369366666666668,14.3727,14.376033333333334,14.379366666666666,14.3827,14.386033333333334,14.389366666666666,14.3927,14.396033333333332,14.399366666666667,14.402700000000001,14.406033333333333,14.409366666666667,14.4127,14.416033333333333,14.419366666666667,14.422699999999999,14.426033333333333,14.429366666666665,14.4327,14.436033333333334,14.439366666666666,14.4427,14.446033333333332,14.449366666666666,14.4527,14.456033333333332,14.459366666666666,14.4627,14.466033333333334,14.469366666666668,14.4727,14.476033333333334,14.479366666666666,14.4827,14.486033333333333,14.489366666666665,14.492700000000001,14.496033333333333,14.499366666666667,14.5027,14.506033333333333,14.509366666666667,14.512699999999999,14.516033333333333,14.519366666666667,14.522699999999999,14.526033333333334,14.529366666666666,14.5327,14.536033333333334,14.539366666666666,14.5427,14.546033333333332,14.549366666666666,14.5527,14.556033333333334,14.559366666666667,14.5627,14.566033333333333,14.569366666666667,14.5727,14.576033333333333,14.579366666666665,14.582699999999999,14.586033333333335,14.589366666666667,14.5927,14.596033333333333,14.599366666666667,14.6027,14.606033333333333,14.609366666666666,14.612699999999998,14.616033333333332,14.619366666666668,14.6227,14.626033333333334,14.629366666666666,14.6327,14.636033333333334,14.639366666666666,14.6427,14.646033333333332,14.649366666666667,14.652700000000001,14.656033333333333,14.659366666666667,14.6627,14.666033333333333,14.669366666666667,14.672699999999999,14.676033333333333,14.679366666666665,14.6827,14.686033333333334,14.689366666666666,14.6927,14.696033333333332,14.699366666666666,14.7027,14.706033333333332,14.709366666666666,14.7127,14.716033333333334,14.719366666666668,14.7227,14.726033333333334,14.729366666666666,14.7327,14.736033333333333,14.739366666666665,14.742700000000001,14.746033333333333,14.749366666666667,14.7527,14.756033333333333,14.759366666666667,14.762699999999999,14.766033333333333,14.769366666666667,14.772699999999999,14.776033333333334,14.779366666666666,14.7827,14.786033333333334,14.789366666666666,14.7927,14.796033333333332,14.799366666666666,14.8027,14.806033333333334,14.809366666666667,14.8127,14.816033333333333,14.819366666666667,14.8227,14.826033333333333,14.829366666666665,14.832699999999999,14.836033333333335,14.839366666666667,14.8427,14.846033333333333,14.849366666666667,14.8527,14.856033333333333,14.859366666666666,14.862699999999998,14.866033333333332,14.869366666666668,14.8727,14.876033333333334,14.879366666666666,14.8827,14.886033333333334,14.889366666666666,14.8927,14.896033333333332,14.899366666666667,14.902700000000001,14.906033333333333,14.909366666666667,14.9127,14.916033333333333,14.919366666666667,14.922699999999999,14.926033333333333,14.929366666666665,14.9327,14.936033333333334,14.939366666666666,14.9427,14.946033333333332,14.949366666666666,14.9527,14.956033333333332,14.959366666666666,14.9627,14.966033333333334,14.969366666666668,14.9727,14.976033333333334,14.979366666666666,14.9827,14.986033333333333,14.989366666666665,14.992700000000001,14.996033333333333,14.999366666666667,15.0027,15.006033333333333,15.009366666666667,15.012699999999999,15.016033333333333,15.019366666666667,15.022699999999999,15.026033333333334,15.029366666666666,15.0327,15.036033333333334,15.039366666666666,15.0427,15.046033333333332,15.049366666666666,15.0527,15.056033333333334,15.059366666666667,15.0627,15.066033333333333,15.069366666666667,15.0727,15.076033333333333,15.079366666666665,15.082699999999999,15.086033333333335,15.089366666666667,15.0927,15.096033333333333,15.099366666666667,15.1027,15.106033333333333,15.109366666666666,15.112699999999998,15.116033333333332,15.119366666666668,15.1227,15.126033333333334,15.129366666666666,15.1327,15.136033333333334,15.139366666666666,15.1427,15.146033333333332,15.149366666666667,15.152700000000001,15.156033333333333,15.159366666666667,15.1627,15.166033333333333,15.169366666666667,15.172699999999999,15.176033333333333,15.179366666666665,15.1827,15.186033333333334,15.189366666666666,15.1927,15.196033333333332,15.199366666666666,15.2027,15.206033333333332,15.209366666666666,15.2127,15.216033333333334,15.219366666666668,15.2227,15.226033333333334,15.229366666666666,15.2327,15.236033333333333,15.239366666666665,15.242700000000001,15.246033333333333,15.249366666666667,15.2527,15.256033333333333,15.259366666666667,15.262699999999999,15.266033333333333,15.269366666666667,15.272699999999999,15.276033333333334,15.279366666666666,15.2827,15.286033333333334,15.289366666666666,15.2927,15.296033333333332,15.299366666666666,15.3027,15.306033333333334,15.309366666666667,15.3127,15.316033333333333,15.319366666666667,15.3227,15.326033333333333,15.329366666666665,15.332699999999999,15.336033333333335,15.339366666666667,15.3427,15.346033333333333,15.349366666666667,15.3527,15.356033333333333,15.359366666666666,15.362699999999998,15.366033333333332,15.369366666666668,15.3727,15.376033333333334,15.379366666666666,15.3827,15.386033333333334,15.389366666666666,15.3927,15.396033333333332,15.399366666666667,15.402700000000001,15.406033333333333,15.409366666666667,15.4127,15.416033333333333,15.419366666666667,15.422699999999999,15.426033333333333,15.429366666666665,15.4327,15.436033333333334,15.439366666666666,15.4427,15.446033333333332,15.449366666666666,15.4527,15.456033333333332,15.459366666666666,15.4627,15.466033333333334,15.469366666666668,15.4727,15.476033333333334,15.479366666666666,15.4827,15.486033333333333,15.489366666666665,15.492700000000001,15.496033333333333,15.499366666666667,15.5027,15.506033333333333,15.509366666666667,15.512699999999999,15.516033333333333,15.519366666666667,15.522699999999999,15.526033333333334,15.529366666666666,15.5327,15.536033333333334,15.539366666666666,15.5427,15.546033333333332,15.549366666666666,15.5527,15.556033333333334,15.559366666666667,15.5627,15.566033333333333,15.569366666666667,15.5727,15.576033333333333,15.579366666666665,15.582699999999999,15.586033333333335,15.589366666666667,15.5927,15.596033333333333,15.599366666666667,15.6027,15.606033333333333,15.609366666666666,15.612699999999998,15.616033333333332,15.619366666666668,15.6227,15.626033333333334,15.629366666666666,15.6327,15.636033333333334,15.639366666666666,15.6427,15.646033333333332,15.649366666666667,15.652700000000001,15.656033333333333,15.659366666666667,15.6627,15.666033333333333,15.669366666666667,15.672699999999999,15.676033333333333,15.679366666666665,15.6827,15.686033333333334,15.689366666666666,15.6927,15.696033333333332,15.699366666666666,15.7027,15.706033333333332,15.709366666666666,15.7127,15.716033333333334,15.719366666666668,15.7227,15.726033333333334,15.729366666666666,15.7327,15.736033333333333,15.739366666666665,15.742700000000001,15.746033333333333,15.749366666666667,15.7527,15.756033333333333,15.759366666666667,15.762699999999999,15.766033333333333,15.769366666666667,15.772699999999999,15.776033333333334,15.779366666666666,15.7827,15.786033333333334,15.789366666666666,15.7927,15.796033333333332,15.799366666666666,15.8027,15.806033333333334,15.809366666666667,15.8127,15.816033333333333,15.819366666666667,15.8227,15.826033333333333,15.829366666666665,15.832699999999999,15.836033333333335,15.839366666666667,15.8427,15.846033333333333,15.849366666666667,15.8527,15.856033333333333,15.859366666666666,15.862699999999998,15.866033333333332,15.869366666666668,15.8727,15.876033333333334,15.879366666666666,15.8827,15.886033333333334,15.889366666666666,15.8927,15.896033333333332,15.899366666666667,15.902700000000001,15.906033333333333,15.909366666666667,15.9127,15.916033333333333,15.919366666666667,15.922699999999999,15.926033333333333,15.929366666666665,15.9327,15.936033333333334,15.939366666666666,15.9427,15.946033333333332,15.949366666666666,15.9527,15.956033333333332,15.959366666666666,15.9627,15.966033333333334,15.969366666666668,15.9727,15.976033333333334,15.979366666666666,15.9827,15.986033333333333,15.989366666666665,15.992700000000001,15.996033333333333,15.999366666666667,16.0027,16.00603333333333,16.00936666666667,16.0127,16.016033333333333,16.019366666666667,16.0227,16.026033333333334,16.029366666666665,16.0327,16.036033333333332,16.039366666666666,16.0427,16.046033333333334,16.049366666666668,16.0527,16.056033333333332,16.059366666666666,16.0627,16.066033333333333,16.069366666666667,16.0727,16.076033333333335,16.079366666666665,16.0827,16.086033333333333,16.089366666666667,16.0927,16.09603333333333,16.099366666666665,16.102700000000002,16.106033333333333,16.109366666666666,16.1127,16.116033333333334,16.119366666666668,16.1227,16.126033333333332,16.129366666666666,16.1327,16.136033333333334,16.139366666666668,16.1427,16.14603333333333,16.149366666666666,16.1527,16.156033333333333,16.159366666666667,16.162699999999997,16.166033333333335,16.16936666666667,16.1727,16.176033333333333,16.179366666666667,16.1827,16.186033333333334,16.189366666666665,16.1927,16.196033333333332,16.199366666666666,16.2027,16.206033333333334,16.209366666666668,16.212699999999998,16.216033333333332,16.219366666666666,16.2227,16.226033333333334,16.229366666666667,16.2327,16.236033333333335,16.239366666666665,16.2427,16.246033333333333,16.249366666666667,16.2527,16.25603333333333,16.25936666666667,16.2627,16.266033333333333,16.269366666666667,16.2727,16.276033333333334,16.279366666666665,16.2827,16.286033333333332,16.289366666666666,16.2927,16.296033333333334,16.299366666666668,16.3027,16.306033333333332,16.309366666666666,16.3127,16.316033333333333,16.319366666666667,16.3227,16.326033333333335,16.329366666666665,16.3327,16.336033333333333,16.339366666666667,16.3427,16.34603333333333,16.349366666666665,16.352700000000002,16.356033333333333,16.359366666666666,16.3627,16.366033333333334,16.369366666666668,16.3727,16.376033333333332,16.379366666666666,16.3827,16.386033333333334,16.389366666666668,16.3927,16.39603333333333,16.399366666666666,16.4027,16.406033333333333,16.409366666666667,16.412699999999997,16.416033333333335,16.41936666666667,16.4227,16.426033333333333,16.429366666666667,16.4327,16.436033333333334,16.439366666666665,16.4427,16.446033333333332,16.449366666666666,16.4527,16.456033333333334,16.459366666666668,16.462699999999998,16.466033333333332,16.469366666666666,16.4727,16.476033333333334,16.479366666666667,16.4827,16.486033333333335,16.489366666666665,16.4927,16.496033333333333,16.499366666666667,16.5027,16.50603333333333,16.50936666666667,16.5127,16.516033333333333,16.519366666666667,16.5227,16.526033333333334,16.529366666666665,16.5327,16.536033333333332,16.539366666666666,16.5427,16.546033333333334,16.549366666666668,16.5527,16.556033333333332,16.559366666666666,16.5627,16.566033333333333,16.569366666666667,16.5727,16.576033333333335,16.579366666666665,16.5827,16.586033333333333,16.589366666666667,16.5927,16.59603333333333,16.599366666666665,16.602700000000002,16.606033333333333,16.609366666666666,16.6127,16.616033333333334,16.619366666666668,16.6227,16.626033333333332,16.629366666666666,16.6327,16.636033333333334,16.639366666666668,16.6427,16.64603333333333,16.649366666666666,16.6527,16.656033333333333,16.659366666666667,16.662699999999997,16.666033333333335,16.66936666666667,16.6727,16.676033333333333,16.679366666666667,16.6827,16.686033333333334,16.689366666666665,16.6927,16.696033333333332,16.699366666666666,16.7027,16.706033333333334,16.709366666666668,16.712699999999998,16.716033333333332,16.719366666666666,16.7227,16.726033333333334,16.729366666666667,16.7327,16.736033333333335,16.739366666666665,16.7427,16.746033333333333,16.749366666666667,16.7527,16.75603333333333,16.75936666666667,16.7627,16.766033333333333,16.769366666666667,16.7727,16.776033333333334,16.779366666666665,16.7827,16.786033333333332,16.789366666666666,16.7927,16.796033333333334,16.799366666666668,16.8027,16.806033333333332,16.809366666666666,16.8127,16.816033333333333,16.819366666666667,16.8227,16.826033333333335,16.829366666666665,16.8327,16.836033333333333,16.839366666666667,16.8427,16.84603333333333,16.849366666666665,16.852700000000002,16.856033333333333,16.859366666666666,16.8627,16.866033333333334,16.869366666666668,16.8727,16.876033333333332,16.879366666666666,16.8827,16.886033333333334,16.889366666666668,16.8927,16.89603333333333,16.899366666666666,16.9027,16.906033333333333,16.909366666666667,16.912699999999997,16.916033333333335,16.91936666666667,16.9227,16.926033333333333,16.929366666666667,16.9327,16.936033333333334,16.939366666666665,16.9427,16.946033333333332,16.949366666666666,16.9527,16.956033333333334,16.959366666666668,16.962699999999998,16.966033333333332,16.969366666666666,16.9727,16.976033333333334,16.979366666666667,16.9827,16.986033333333335,16.989366666666665,16.9927,16.996033333333333,16.999366666666667,17.0027,17.00603333333333,17.00936666666667,17.0127,17.016033333333333,17.019366666666667,17.0227,17.026033333333334,17.029366666666665,17.0327,17.036033333333332,17.039366666666666,17.0427,17.046033333333334,17.049366666666668,17.0527,17.056033333333332,17.059366666666666,17.0627,17.066033333333333,17.069366666666667,17.0727,17.07603333333333,17.079366666666665,17.0827,17.086033333333333,17.089366666666667,17.092699999999997,17.09603333333333,17.099366666666665,17.102700000000002,17.106033333333336,17.109366666666666,17.1127,17.116033333333334,17.119366666666668,17.122700000000002,17.126033333333332,17.129366666666666,17.1327,17.136033333333334,17.139366666666668,17.142699999999998,17.14603333333333,17.149366666666666,17.1527,17.156033333333333,17.159366666666664,17.162699999999997,17.166033333333335,17.16936666666667,17.172700000000003,17.176033333333333,17.179366666666667,17.1827,17.186033333333334,17.18936666666667,17.1927,17.196033333333332,17.199366666666666,17.2027,17.206033333333334,17.209366666666664,17.212699999999998,17.216033333333332,17.219366666666666,17.2227,17.22603333333333,17.229366666666667,17.2327,17.236033333333335,17.23936666666667,17.2427,17.246033333333333,17.249366666666667,17.2527,17.256033333333335,17.259366666666665,17.2627,17.266033333333333,17.269366666666667,17.2727,17.27603333333333,17.279366666666665,17.2827,17.286033333333332,17.28936666666667,17.2927,17.296033333333334,17.299366666666668,17.3027,17.306033333333335,17.309366666666666,17.3127,17.316033333333333,17.319366666666667,17.3227,17.32603333333333,17.329366666666665,17.3327,17.336033333333333,17.339366666666667,17.342699999999997,17.34603333333333,17.349366666666665,17.352700000000002,17.356033333333336,17.359366666666666,17.3627,17.366033333333334,17.369366666666668,17.372700000000002,17.376033333333332,17.379366666666666,17.3827,17.386033333333334,17.389366666666668,17.392699999999998,17.39603333333333,17.399366666666666,17.4027,17.406033333333333,17.409366666666664,17.412699999999997,17.416033333333335,17.41936666666667,17.422700000000003,17.426033333333333,17.429366666666667,17.4327,17.436033333333334,17.43936666666667,17.4427,17.446033333333332,17.449366666666666,17.4527,17.456033333333334,17.459366666666664,17.462699999999998,17.466033333333332,17.469366666666666,17.4727,17.47603333333333,17.479366666666667,17.4827,17.486033333333335,17.48936666666667,17.4927,17.496033333333333,17.499366666666667,17.5027,17.506033333333335,17.509366666666665,17.5127,17.516033333333333,17.519366666666667,17.5227,17.52603333333333,17.529366666666665,17.5327,17.536033333333332,17.53936666666667,17.5427,17.546033333333334,17.549366666666668,17.5527,17.556033333333335,17.559366666666666,17.5627,17.566033333333333,17.569366666666667,17.5727,17.57603333333333,17.579366666666665,17.5827,17.586033333333333,17.589366666666667,17.592699999999997,17.59603333333333,17.599366666666665,17.602700000000002,17.606033333333336,17.609366666666666,17.6127,17.616033333333334,17.619366666666668,17.622700000000002,17.626033333333332,17.629366666666666,17.6327,17.636033333333334,17.639366666666668,17.642699999999998,17.64603333333333,17.649366666666666,17.6527,17.656033333333333,17.659366666666664,17.662699999999997,17.666033333333335,17.66936666666667,17.672700000000003,17.676033333333333,17.679366666666667,17.6827,17.686033333333334,17.68936666666667,17.6927,17.696033333333332,17.699366666666666,17.7027,17.706033333333334,17.709366666666664,17.712699999999998,17.716033333333332,17.719366666666666,17.7227,17.72603333333333,17.729366666666667,17.7327,17.736033333333335,17.73936666666667,17.7427,17.746033333333333,17.749366666666667,17.7527,17.756033333333335,17.759366666666665,17.7627,17.766033333333333,17.769366666666667,17.7727,17.77603333333333,17.779366666666665,17.7827,17.786033333333332,17.78936666666667,17.7927,17.796033333333334,17.799366666666668,17.8027,17.806033333333335,17.809366666666666,17.8127,17.816033333333333,17.819366666666667,17.8227,17.82603333333333,17.829366666666665,17.8327,17.836033333333333,17.839366666666667,17.842699999999997,17.84603333333333,17.849366666666665,17.852700000000002,17.856033333333336,17.859366666666666,17.8627,17.866033333333334,17.869366666666668,17.872700000000002,17.876033333333332,17.879366666666666,17.8827,17.886033333333334,17.889366666666668,17.892699999999998,17.89603333333333,17.899366666666666,17.9027,17.906033333333333,17.909366666666664,17.912699999999997,17.916033333333335,17.91936666666667,17.922700000000003,17.926033333333333,17.929366666666667,17.9327,17.936033333333334,17.93936666666667,17.9427,17.946033333333332,17.949366666666666,17.9527,17.956033333333334,17.959366666666664,17.962699999999998,17.966033333333332,17.969366666666666,17.9727,17.97603333333333,17.979366666666667,17.9827,17.986033333333335,17.98936666666667,17.9927,17.996033333333333,17.999366666666667,18.0027,18.006033333333335,18.009366666666665,18.0127,18.016033333333333,18.019366666666667,18.0227,18.02603333333333,18.029366666666665,18.0327,18.036033333333332,18.03936666666667,18.0427,18.046033333333334,18.049366666666668,18.0527,18.056033333333335,18.059366666666666,18.0627,18.066033333333333,18.069366666666667,18.0727,18.07603333333333,18.079366666666665,18.0827,18.086033333333333,18.089366666666667,18.092699999999997,18.09603333333333,18.099366666666665,18.102700000000002,18.106033333333336,18.109366666666666,18.1127,18.116033333333334,18.119366666666668,18.122700000000002,18.126033333333332,18.129366666666666,18.1327,18.136033333333334,18.139366666666668,18.142699999999998,18.14603333333333,18.149366666666666,18.1527,18.156033333333333,18.159366666666664,18.162699999999997,18.166033333333335,18.16936666666667,18.172700000000003,18.176033333333333,18.179366666666667,18.1827,18.186033333333334,18.18936666666667,18.1927,18.196033333333332,18.199366666666666,18.2027,18.206033333333334,18.209366666666664,18.212699999999998,18.216033333333332,18.219366666666666,18.2227,18.22603333333333,18.229366666666667,18.2327,18.236033333333335,18.23936666666667,18.2427,18.246033333333333,18.249366666666667,18.2527,18.256033333333335,18.259366666666665,18.2627,18.266033333333333,18.269366666666667,18.2727,18.27603333333333,18.279366666666665,18.2827,18.286033333333332,18.28936666666667,18.2927,18.296033333333334,18.299366666666668,18.3027,18.306033333333335,18.309366666666666,18.3127,18.316033333333333,18.319366666666667,18.3227,18.32603333333333,18.329366666666665,18.3327,18.336033333333333,18.339366666666667,18.342699999999997,18.34603333333333,18.349366666666665,18.352700000000002,18.356033333333336,18.359366666666666,18.3627,18.366033333333334,18.369366666666668,18.372700000000002,18.376033333333332,18.379366666666666,18.3827,18.386033333333334,18.389366666666668,18.392699999999998,18.39603333333333,18.399366666666666,18.4027,18.406033333333333,18.409366666666664,18.412699999999997,18.416033333333335,18.41936666666667,18.422700000000003,18.426033333333333,18.429366666666667,18.4327,18.436033333333334,18.43936666666667,18.4427,18.446033333333332,18.449366666666666,18.4527,18.456033333333334,18.459366666666664,18.462699999999998,18.466033333333332,18.469366666666666,18.4727,18.47603333333333,18.479366666666667,18.4827,18.486033333333335,18.48936666666667,18.4927,18.496033333333333,18.499366666666667,18.5027,18.506033333333335,18.509366666666665,18.5127,18.516033333333333,18.519366666666667,18.5227,18.52603333333333,18.529366666666665,18.5327,18.536033333333332,18.53936666666667,18.5427,18.546033333333334,18.549366666666668,18.5527,18.556033333333335,18.559366666666666,18.5627,18.566033333333333,18.569366666666667,18.5727,18.57603333333333,18.579366666666665,18.5827,18.586033333333333,18.589366666666667,18.592699999999997,18.59603333333333,18.599366666666665,18.602700000000002,18.606033333333336,18.609366666666666,18.6127,18.616033333333334,18.619366666666668,18.622700000000002,18.626033333333332,18.629366666666666,18.6327,18.636033333333334,18.639366666666668,18.642699999999998,18.64603333333333,18.649366666666666,18.6527,18.656033333333333,18.659366666666664,18.662699999999997,18.666033333333335,18.66936666666667,18.672700000000003,18.676033333333333,18.679366666666667,18.6827,18.686033333333334,18.68936666666667,18.6927,18.696033333333332,18.699366666666666,18.7027,18.706033333333334,18.709366666666664,18.712699999999998,18.716033333333332,18.719366666666666,18.7227,18.72603333333333,18.729366666666667,18.7327,18.736033333333335,18.73936666666667,18.7427,18.746033333333333,18.749366666666667,18.7527,18.756033333333335,18.759366666666665,18.7627,18.766033333333333,18.769366666666667,18.7727,18.77603333333333,18.779366666666665,18.7827,18.786033333333332,18.78936666666667,18.7927,18.796033333333334,18.799366666666668,18.8027,18.806033333333335,18.809366666666666,18.8127,18.816033333333333,18.819366666666667,18.8227,18.82603333333333,18.829366666666665,18.8327,18.836033333333333,18.839366666666667,18.842699999999997,18.84603333333333,18.849366666666665,18.852700000000002,18.856033333333336,18.859366666666666,18.8627,18.866033333333334,18.869366666666668,18.872700000000002,18.876033333333332,18.879366666666666,18.8827,18.886033333333334,18.889366666666668,18.892699999999998,18.89603333333333,18.899366666666666,18.9027,18.906033333333333,18.909366666666664,18.912699999999997,18.916033333333335,18.91936666666667,18.922700000000003,18.926033333333333,18.929366666666667,18.9327,18.936033333333334,18.93936666666667,18.9427,18.946033333333332,18.949366666666666,18.9527,18.956033333333334,18.959366666666664,18.962699999999998,18.966033333333332,18.969366666666666,18.9727,18.97603333333333,18.979366666666667,18.9827,18.986033333333335,18.98936666666667,18.9927,18.996033333333333,18.999366666666667,19.0027,19.006033333333335,19.009366666666665,19.0127,19.016033333333333,19.019366666666667,19.0227,19.02603333333333,19.029366666666665,19.0327,19.036033333333332,19.03936666666667,19.0427,19.046033333333334,19.049366666666668,19.0527,19.056033333333335,19.059366666666666,19.0627,19.066033333333333,19.069366666666667,19.0727,19.07603333333333,19.079366666666665,19.0827,19.086033333333333,19.089366666666667,19.092699999999997,19.09603333333333,19.099366666666665,19.102700000000002,19.106033333333336,19.109366666666666,19.1127,19.116033333333334,19.119366666666668,19.122700000000002,19.126033333333332,19.129366666666666,19.1327,19.136033333333334,19.139366666666668,19.142699999999998,19.14603333333333,19.149366666666666,19.1527,19.156033333333333,19.159366666666664,19.162699999999997,19.166033333333335,19.16936666666667,19.172700000000003,19.176033333333333,19.179366666666667,19.1827,19.186033333333334,19.18936666666667,19.1927,19.196033333333332,19.199366666666666,19.2027,19.206033333333334,19.209366666666664,19.212699999999998,19.216033333333332,19.219366666666666,19.2227,19.22603333333333,19.229366666666667,19.2327,19.236033333333335,19.23936666666667,19.2427,19.246033333333333,19.249366666666667,19.2527,19.256033333333335,19.259366666666665,19.2627,19.266033333333333,19.269366666666667,19.2727,19.27603333333333,19.279366666666665,19.2827,19.286033333333332,19.28936666666667,19.2927,19.296033333333334,19.299366666666668,19.3027,19.306033333333335,19.309366666666666,19.3127,19.316033333333333,19.319366666666667,19.3227,19.32603333333333,19.329366666666665,19.3327,19.336033333333333,19.339366666666667,19.342699999999997,19.34603333333333,19.349366666666665,19.352700000000002,19.356033333333336,19.359366666666666,19.3627,19.366033333333334,19.369366666666668,19.372700000000002,19.376033333333332,19.379366666666666,19.3827,19.386033333333334,19.389366666666668,19.392699999999998,19.39603333333333,19.399366666666666,19.4027,19.406033333333333,19.409366666666664,19.412699999999997,19.416033333333335,19.41936666666667,19.422700000000003,19.426033333333333,19.429366666666667,19.4327,19.436033333333334,19.43936666666667,19.4427,19.446033333333332,19.449366666666666,19.4527,19.456033333333334,19.459366666666664,19.462699999999998,19.466033333333332,19.469366666666666,19.4727,19.47603333333333,19.479366666666667,19.4827,19.486033333333335,19.48936666666667,19.4927,19.496033333333333,19.499366666666667,19.5027,19.506033333333335,19.509366666666665,19.5127,19.516033333333333,19.519366666666667,19.5227,19.52603333333333,19.529366666666665,19.5327,19.536033333333332,19.53936666666667,19.5427,19.546033333333334,19.549366666666668,19.5527,19.556033333333335,19.559366666666666,19.5627,19.566033333333333,19.569366666666667,19.5727,19.57603333333333,19.579366666666665,19.5827,19.586033333333333,19.589366666666667,19.592699999999997,19.59603333333333,19.599366666666665,19.602700000000002,19.606033333333336,19.609366666666666,19.6127,19.616033333333334,19.619366666666668,19.622700000000002,19.626033333333332,19.629366666666666,19.6327,19.636033333333334,19.639366666666668,19.642699999999998,19.64603333333333,19.649366666666666,19.6527,19.656033333333333,19.659366666666664,19.662699999999997,19.666033333333335,19.66936666666667,19.672700000000003,19.676033333333333,19.679366666666667,19.6827,19.686033333333334,19.68936666666667,19.6927,19.696033333333332,19.699366666666666,19.7027,19.706033333333334,19.709366666666664,19.712699999999998,19.716033333333332,19.719366666666666,19.7227,19.72603333333333,19.729366666666667,19.7327,19.736033333333335,19.73936666666667,19.7427,19.746033333333333,19.749366666666667,19.7527,19.756033333333335,19.759366666666665,19.7627,19.766033333333333,19.769366666666667,19.7727,19.77603333333333,19.779366666666665,19.7827,19.786033333333332,19.78936666666667,19.7927,19.796033333333334,19.799366666666668,19.8027,19.806033333333335,19.809366666666666,19.8127,19.816033333333333,19.819366666666667,19.8227,19.82603333333333,19.829366666666665,19.8327,19.836033333333333,19.839366666666667,19.842699999999997,19.84603333333333,19.849366666666665,19.852700000000002,19.856033333333336,19.859366666666666,19.8627,19.866033333333334,19.869366666666668,19.872700000000002,19.876033333333332,19.879366666666666,19.8827,19.886033333333334,19.889366666666668,19.892699999999998,19.89603333333333,19.899366666666666,19.9027,19.906033333333333,19.909366666666664,19.912699999999997,19.916033333333335,19.91936666666667,19.922700000000003,19.926033333333333,19.929366666666667,19.9327,19.936033333333334,19.93936666666667,19.9427,19.946033333333332,19.949366666666666,19.9527,19.956033333333334,19.959366666666664,19.962699999999998,19.966033333333332,19.969366666666666,19.9727,19.97603333333333,19.979366666666667,19.9827,19.986033333333335,19.98936666666667,19.9927,19.996033333333333,19.999366666666667,20.0027,20.006033333333335,20.009366666666665,20.0127,20.016033333333333,20.019366666666667,20.0227,20.02603333333333,20.029366666666665,20.0327,20.036033333333332,20.03936666666667,20.0427,20.046033333333334,20.049366666666668,20.0527,20.056033333333335,20.059366666666666,20.0627,20.066033333333333,20.069366666666667,20.0727,20.07603333333333,20.079366666666665,20.0827,20.086033333333333,20.089366666666667,20.092699999999997,20.09603333333333,20.099366666666665,20.102700000000002,20.106033333333336,20.109366666666666,20.1127,20.116033333333334,20.119366666666668,20.122700000000002,20.126033333333332,20.129366666666666,20.1327,20.136033333333334,20.139366666666668,20.142699999999998,20.14603333333333,20.149366666666666,20.1527,20.156033333333333,20.159366666666664,20.162699999999997,20.166033333333335,20.16936666666667,20.172700000000003,20.176033333333333,20.179366666666667,20.1827,20.186033333333334,20.18936666666667,20.1927,20.196033333333332,20.199366666666666,20.2027,20.206033333333334,20.209366666666664,20.212699999999998,20.216033333333332,20.219366666666666,20.2227,20.22603333333333,20.229366666666667,20.2327,20.236033333333335,20.23936666666667,20.2427,20.246033333333333,20.249366666666667,20.2527,20.256033333333335,20.259366666666665,20.2627,20.266033333333333,20.269366666666667,20.2727,20.27603333333333,20.279366666666665,20.2827,20.286033333333332,20.28936666666667,20.2927,20.296033333333334,20.299366666666668,20.3027,20.306033333333335,20.309366666666666,20.3127,20.316033333333333,20.319366666666667,20.3227,20.32603333333333,20.329366666666665,20.3327,20.336033333333333,20.339366666666667,20.342699999999997,20.34603333333333,20.349366666666665,20.352700000000002,20.356033333333336,20.359366666666666,20.3627,20.366033333333334,20.369366666666668,20.372700000000002,20.376033333333332,20.379366666666666,20.3827,20.386033333333334,20.389366666666668,20.392699999999998,20.39603333333333,20.399366666666666,20.4027,20.406033333333333,20.409366666666664,20.412699999999997,20.416033333333335,20.41936666666667,20.422700000000003,20.426033333333333,20.429366666666667,20.4327,20.436033333333334,20.43936666666667,20.4427,20.446033333333332,20.449366666666666,20.4527,20.456033333333334,20.459366666666664,20.462699999999998,20.466033333333332,20.469366666666666,20.4727,20.47603333333333,20.479366666666667,20.4827,20.486033333333335,20.48936666666667,20.4927,20.496033333333333,20.499366666666667,20.5027,20.506033333333335,20.509366666666665,20.5127,20.516033333333333,20.519366666666667,20.5227,20.52603333333333,20.529366666666665,20.5327,20.536033333333332,20.53936666666667,20.5427,20.546033333333334,20.549366666666668,20.5527,20.556033333333335,20.559366666666666,20.5627,20.566033333333333,20.569366666666667,20.5727,20.57603333333333,20.579366666666665,20.5827,20.586033333333333,20.589366666666667,20.592699999999997,20.59603333333333,20.599366666666665,20.602700000000002,20.606033333333336,20.609366666666666,20.6127,20.616033333333334,20.619366666666668,20.622700000000002,20.626033333333332,20.629366666666666,20.6327,20.636033333333334,20.639366666666668,20.642699999999998,20.64603333333333,20.649366666666666,20.6527,20.656033333333333,20.659366666666664,20.662699999999997,20.666033333333335,20.66936666666667,20.672700000000003,20.676033333333333,20.679366666666667,20.6827,20.686033333333334,20.68936666666667,20.6927,20.696033333333332,20.699366666666666,20.7027,20.706033333333334,20.709366666666664,20.712699999999998,20.716033333333332,20.719366666666666,20.7227,20.72603333333333,20.729366666666667,20.7327,20.736033333333335,20.73936666666667,20.7427,20.746033333333333,20.749366666666667,20.7527,20.756033333333335,20.759366666666665,20.7627,20.766033333333333,20.769366666666667,20.7727,20.77603333333333,20.779366666666665,20.7827,20.786033333333332,20.78936666666667,20.7927,20.796033333333334,20.799366666666668,20.8027,20.806033333333335,20.809366666666666,20.8127,20.816033333333333,20.819366666666667,20.8227,20.82603333333333,20.829366666666665,20.8327,20.836033333333333,20.839366666666667,20.842699999999997,20.84603333333333,20.849366666666665,20.852700000000002,20.856033333333336,20.859366666666666,20.8627,20.866033333333334,20.869366666666668,20.872700000000002,20.876033333333332,20.879366666666666,20.8827,20.886033333333334,20.889366666666668,20.892699999999998,20.89603333333333,20.899366666666666,20.9027,20.906033333333333,20.909366666666664,20.912699999999997,20.916033333333335,20.91936666666667,20.922700000000003,20.926033333333333,20.929366666666667,20.9327,20.936033333333334,20.93936666666667,20.9427,20.946033333333332,20.949366666666666,20.9527,20.956033333333334,20.959366666666664,20.962699999999998,20.966033333333332,20.969366666666666,20.9727,20.97603333333333,20.979366666666667,20.9827,20.986033333333335,20.98936666666667,20.9927,20.996033333333333,20.999366666666667,21.0027,21.006033333333335,21.009366666666665,21.0127,21.016033333333333,21.019366666666667,21.0227,21.02603333333333,21.029366666666665,21.0327,21.036033333333332,21.03936666666667,21.0427,21.046033333333334,21.049366666666668,21.0527,21.056033333333335,21.059366666666666,21.0627,21.066033333333333,21.069366666666667,21.0727,21.07603333333333,21.079366666666665,21.0827,21.086033333333333,21.089366666666667,21.092699999999997,21.09603333333333,21.099366666666665,21.102700000000002,21.106033333333336,21.109366666666666,21.1127,21.116033333333334,21.119366666666668,21.122700000000002,21.126033333333332,21.129366666666666,21.1327,21.136033333333334,21.139366666666668,21.142699999999998,21.14603333333333,21.149366666666666,21.1527,21.156033333333333,21.159366666666664,21.162699999999997,21.166033333333335,21.16936666666667,21.172700000000003,21.176033333333333,21.179366666666667,21.1827,21.186033333333334,21.18936666666667,21.1927,21.196033333333332,21.199366666666666,21.2027,21.206033333333334,21.209366666666664,21.212699999999998,21.216033333333332,21.219366666666666,21.2227,21.22603333333333,21.229366666666667,21.2327,21.236033333333335,21.23936666666667,21.2427,21.246033333333333,21.249366666666667,21.2527,21.256033333333335,21.259366666666665,21.2627,21.266033333333333,21.269366666666667,21.2727,21.27603333333333,21.279366666666665,21.2827,21.286033333333332,21.28936666666667,21.2927,21.296033333333334,21.299366666666668,21.3027,21.306033333333335,21.309366666666666,21.3127,21.316033333333333,21.319366666666667,21.3227,21.32603333333333,21.329366666666665,21.3327,21.336033333333333,21.339366666666667,21.342699999999997,21.34603333333333,21.349366666666665,21.352700000000002,21.356033333333336,21.359366666666666,21.3627,21.366033333333334,21.369366666666668,21.372700000000002,21.376033333333332,21.379366666666666,21.3827,21.386033333333334,21.389366666666668,21.392699999999998,21.39603333333333,21.399366666666666,21.4027,21.406033333333333,21.409366666666664,21.412699999999997,21.416033333333335,21.41936666666667,21.422700000000003,21.426033333333333,21.429366666666667,21.4327,21.436033333333334,21.43936666666667,21.4427,21.446033333333332,21.449366666666666,21.4527,21.456033333333334,21.459366666666664,21.462699999999998,21.466033333333332,21.469366666666666,21.4727,21.47603333333333,21.479366666666667,21.4827,21.486033333333335,21.48936666666667,21.4927,21.496033333333333,21.499366666666667,21.5027,21.506033333333335,21.509366666666665,21.5127,21.516033333333333,21.519366666666667,21.5227,21.52603333333333,21.529366666666665,21.5327,21.536033333333332,21.53936666666667,21.5427,21.546033333333334,21.549366666666668,21.5527,21.556033333333335,21.559366666666666,21.5627,21.566033333333333,21.569366666666667,21.5727,21.57603333333333,21.579366666666665,21.5827,21.586033333333333,21.589366666666667,21.592699999999997,21.59603333333333,21.599366666666665,21.602700000000002,21.606033333333336,21.609366666666666,21.6127,21.616033333333334,21.619366666666668,21.622700000000002,21.626033333333332,21.629366666666666,21.6327,21.636033333333334,21.639366666666668,21.642699999999998,21.64603333333333,21.649366666666666,21.6527,21.656033333333333,21.659366666666664,21.662699999999997,21.666033333333335,21.66936666666667,21.672700000000003,21.676033333333333,21.679366666666667,21.6827,21.686033333333334,21.68936666666667,21.6927,21.696033333333332,21.699366666666666,21.7027,21.706033333333334,21.709366666666664,21.712699999999998,21.716033333333332,21.719366666666666,21.7227,21.72603333333333,21.729366666666667,21.7327,21.736033333333335,21.73936666666667,21.7427,21.746033333333333,21.749366666666667,21.7527,21.756033333333335,21.759366666666665,21.7627,21.766033333333333,21.769366666666667,21.7727,21.77603333333333,21.779366666666665,21.7827,21.786033333333332,21.78936666666667,21.7927,21.796033333333334,21.799366666666668,21.8027,21.806033333333335,21.809366666666666,21.8127,21.816033333333333,21.819366666666667,21.8227,21.82603333333333,21.829366666666665,21.8327,21.836033333333333,21.839366666666667,21.842699999999997,21.84603333333333,21.849366666666665,21.852700000000002,21.856033333333336,21.859366666666666,21.8627,21.866033333333334,21.869366666666668,21.872700000000002,21.876033333333332,21.879366666666666,21.8827,21.886033333333334,21.889366666666668,21.892699999999998,21.89603333333333,21.899366666666666,21.9027,21.906033333333333,21.909366666666664,21.912699999999997,21.916033333333335,21.91936666666667,21.922700000000003,21.926033333333333,21.929366666666667,21.9327,21.936033333333334,21.93936666666667,21.9427,21.946033333333332,21.949366666666666,21.9527,21.956033333333334,21.959366666666664,21.962699999999998,21.966033333333332,21.969366666666666,21.9727,21.97603333333333,21.979366666666667,21.9827,21.986033333333335,21.98936666666667,21.9927,21.996033333333333,21.999366666666667,22.0027,22.006033333333335,22.009366666666665,22.0127,22.016033333333333,22.019366666666667,22.0227,22.02603333333333,22.029366666666665,22.0327,22.036033333333332,22.03936666666667,22.0427,22.046033333333334,22.049366666666668,22.0527,22.056033333333335,22.059366666666666,22.0627,22.066033333333333,22.069366666666667,22.0727,22.07603333333333,22.079366666666665,22.0827,22.086033333333333,22.089366666666667,22.092699999999997,22.09603333333333,22.099366666666665,22.102700000000002,22.106033333333336,22.109366666666666,22.1127,22.116033333333334,22.119366666666668,22.122700000000002,22.126033333333332,22.129366666666666,22.1327,22.136033333333334,22.139366666666668,22.142699999999998,22.14603333333333,22.149366666666666,22.1527,22.156033333333333,22.159366666666664,22.162699999999997,22.166033333333335,22.16936666666667,22.172700000000003,22.176033333333333,22.179366666666667,22.1827,22.186033333333334,22.18936666666667,22.1927,22.196033333333332,22.199366666666666,22.2027,22.206033333333334,22.209366666666664,22.212699999999998,22.216033333333332,22.219366666666666,22.2227,22.22603333333333,22.229366666666667,22.2327,22.236033333333335,22.23936666666667,22.2427,22.246033333333333,22.249366666666667,22.2527,22.256033333333335,22.259366666666665,22.2627,22.266033333333333,22.269366666666667,22.2727,22.27603333333333,22.279366666666665,22.2827,22.286033333333332,22.28936666666667,22.2927,22.296033333333334,22.299366666666668,22.3027,22.306033333333335,22.309366666666666,22.3127,22.316033333333333,22.319366666666667,22.3227,22.32603333333333,22.329366666666665,22.3327,22.336033333333333,22.339366666666667,22.342699999999997,22.34603333333333,22.349366666666665,22.352700000000002,22.356033333333336,22.359366666666666,22.3627,22.366033333333334,22.369366666666668,22.372700000000002,22.376033333333332,22.379366666666666,22.3827,22.386033333333334,22.389366666666668,22.392699999999998,22.39603333333333,22.399366666666666,22.4027,22.406033333333333,22.409366666666664,22.412699999999997,22.416033333333335,22.41936666666667,22.422700000000003,22.426033333333333,22.429366666666667,22.4327,22.436033333333334,22.43936666666667,22.4427,22.446033333333332,22.449366666666666,22.4527,22.456033333333334,22.459366666666664,22.462699999999998,22.466033333333332,22.469366666666666,22.4727,22.47603333333333,22.479366666666667,22.4827,22.486033333333335,22.48936666666667,22.4927,22.496033333333333,22.499366666666667,22.5027,22.506033333333335,22.509366666666665,22.5127,22.516033333333333,22.519366666666667,22.5227,22.52603333333333,22.529366666666665,22.5327,22.536033333333332,22.53936666666667,22.5427,22.546033333333334,22.549366666666668,22.5527,22.556033333333335,22.559366666666666,22.5627,22.566033333333333,22.569366666666667,22.5727,22.57603333333333,22.579366666666665,22.5827,22.586033333333333,22.589366666666667,22.592699999999997,22.59603333333333,22.599366666666665,22.602700000000002,22.606033333333336,22.609366666666666,22.6127,22.616033333333334,22.619366666666668,22.622700000000002,22.626033333333332,22.629366666666666,22.6327,22.636033333333334,22.639366666666668,22.642699999999998,22.64603333333333,22.649366666666666,22.6527,22.656033333333333,22.659366666666664,22.662699999999997,22.666033333333335,22.66936666666667,22.672700000000003,22.676033333333333,22.679366666666667,22.6827,22.686033333333334,22.68936666666667,22.6927,22.696033333333332,22.699366666666666,22.7027,22.706033333333334,22.709366666666664,22.712699999999998,22.716033333333332,22.719366666666666,22.7227,22.72603333333333,22.729366666666667,22.7327,22.736033333333335,22.73936666666667,22.7427,22.746033333333333,22.749366666666667,22.7527,22.756033333333335,22.759366666666665,22.7627,22.766033333333333,22.769366666666667,22.7727,22.77603333333333,22.779366666666665,22.7827,22.786033333333332,22.78936666666667,22.7927,22.796033333333334,22.799366666666668,22.8027,22.806033333333335,22.809366666666666,22.8127,22.816033333333333,22.819366666666667,22.8227,22.82603333333333,22.829366666666665,22.8327,22.836033333333333,22.839366666666667,22.842699999999997,22.84603333333333,22.849366666666665,22.852700000000002,22.856033333333336,22.859366666666666,22.8627,22.866033333333334,22.869366666666668,22.872700000000002,22.876033333333332,22.879366666666666,22.8827,22.886033333333334,22.889366666666668,22.892699999999998,22.89603333333333,22.899366666666666,22.9027,22.906033333333333,22.909366666666664,22.912699999999997,22.916033333333335,22.91936666666667,22.922700000000003,22.926033333333333,22.929366666666667,22.9327,22.936033333333334,22.93936666666667,22.9427,22.946033333333332,22.949366666666666,22.9527,22.956033333333334,22.959366666666664,22.962699999999998,22.966033333333332,22.969366666666666,22.9727,22.97603333333333,22.979366666666667,22.9827,22.986033333333335,22.98936666666667,22.9927,22.996033333333333,22.999366666666667,23.0027,23.006033333333335,23.009366666666665,23.0127,23.016033333333333,23.019366666666667,23.0227,23.02603333333333,23.029366666666665,23.0327,23.036033333333332,23.03936666666667,23.0427,23.046033333333334,23.049366666666668,23.0527,23.056033333333335,23.059366666666666,23.0627,23.066033333333333,23.069366666666667,23.0727,23.07603333333333,23.079366666666665,23.0827,23.086033333333333,23.089366666666667,23.092699999999997,23.09603333333333,23.099366666666665,23.102700000000002,23.106033333333336,23.109366666666666,23.1127,23.116033333333334,23.119366666666668,23.122700000000002,23.126033333333332,23.129366666666666,23.1327,23.136033333333334,23.139366666666668,23.142699999999998,23.14603333333333,23.149366666666666,23.1527,23.156033333333333,23.159366666666664,23.162699999999997,23.166033333333335,23.16936666666667,23.172700000000003,23.176033333333333,23.179366666666667,23.1827,23.186033333333334,23.18936666666667,23.1927,23.196033333333332,23.199366666666666,23.2027,23.206033333333334,23.209366666666664,23.212699999999998,23.216033333333332,23.219366666666666,23.2227,23.22603333333333,23.229366666666667,23.2327,23.236033333333335,23.23936666666667,23.2427,23.246033333333333,23.249366666666667,23.2527,23.256033333333335,23.259366666666665,23.2627,23.266033333333333,23.269366666666667,23.2727,23.27603333333333,23.279366666666665,23.2827,23.286033333333332,23.28936666666667,23.2927,23.296033333333334,23.299366666666668,23.3027,23.306033333333335,23.309366666666666,23.3127,23.316033333333333,23.319366666666667,23.3227,23.32603333333333,23.329366666666665,23.3327,23.336033333333333,23.339366666666667,23.342699999999997,23.34603333333333,23.349366666666665,23.352700000000002,23.356033333333336,23.359366666666666,23.3627,23.366033333333334,23.369366666666668,23.372700000000002,23.376033333333332,23.379366666666666,23.3827,23.386033333333334,23.389366666666668,23.392699999999998,23.39603333333333,23.399366666666666,23.4027,23.406033333333333,23.409366666666664,23.412699999999997,23.416033333333335,23.41936666666667,23.422700000000003,23.426033333333333,23.429366666666667,23.4327,23.436033333333334,23.43936666666667,23.4427,23.446033333333332,23.449366666666666,23.4527,23.456033333333334,23.459366666666664,23.462699999999998,23.466033333333332,23.469366666666666,23.4727,23.47603333333333,23.479366666666667,23.4827,23.486033333333335,23.48936666666667,23.4927,23.496033333333333,23.499366666666667,23.5027,23.506033333333335,23.509366666666665,23.5127,23.516033333333333,23.519366666666667,23.5227,23.52603333333333,23.529366666666665,23.5327,23.536033333333332,23.53936666666667,23.5427,23.546033333333334,23.549366666666668,23.5527,23.556033333333335,23.559366666666666,23.5627,23.566033333333333,23.569366666666667,23.5727,23.57603333333333,23.579366666666665,23.5827,23.586033333333333,23.589366666666667,23.592699999999997,23.59603333333333,23.599366666666665,23.602700000000002,23.606033333333336,23.609366666666666,23.6127,23.616033333333334,23.619366666666668,23.622700000000002,23.626033333333332,23.629366666666666,23.6327,23.636033333333334,23.639366666666668,23.642699999999998,23.64603333333333,23.649366666666666,23.6527,23.656033333333333,23.659366666666664,23.662699999999997,23.666033333333335,23.66936666666667,23.672700000000003,23.676033333333333,23.679366666666667,23.6827,23.686033333333334,23.68936666666667,23.6927,23.696033333333332,23.699366666666666,23.7027,23.706033333333334,23.709366666666664,23.712699999999998,23.716033333333332,23.719366666666666,23.7227,23.72603333333333,23.729366666666667,23.7327,23.736033333333335,23.73936666666667,23.7427,23.746033333333333,23.749366666666667,23.7527,23.756033333333335,23.759366666666665,23.7627,23.766033333333333,23.769366666666667,23.7727,23.77603333333333,23.779366666666665,23.7827,23.786033333333332,23.78936666666667,23.7927,23.796033333333334,23.799366666666668,23.8027,23.806033333333335,23.809366666666666,23.8127,23.816033333333333,23.819366666666667,23.8227,23.82603333333333,23.829366666666665,23.8327,23.836033333333333,23.839366666666667,23.842699999999997,23.84603333333333,23.849366666666665,23.852700000000002,23.856033333333336,23.859366666666666,23.8627,23.866033333333334,23.869366666666668,23.872700000000002,23.876033333333332,23.879366666666666,23.8827,23.886033333333334,23.889366666666668,23.892699999999998,23.89603333333333,23.899366666666666,23.9027,23.906033333333333,23.909366666666664,23.912699999999997,23.916033333333335,23.91936666666667,23.922700000000003,23.926033333333333,23.929366666666667,23.9327,23.936033333333334,23.93936666666667,23.9427,23.946033333333332,23.949366666666666,23.9527,23.956033333333334,23.959366666666664,23.962699999999998,23.966033333333332,23.969366666666666,23.9727,23.97603333333333,23.979366666666667,23.9827,23.986033333333335,23.98936666666667,23.9927,23.996033333333333,23.999366666666667,24.0027,24.006033333333335,24.009366666666665,24.0127,24.016033333333333,24.019366666666667,24.0227,24.02603333333333,24.029366666666665,24.0327,24.036033333333332,24.03936666666667,24.0427,24.046033333333334,24.049366666666668,24.0527,24.056033333333335,24.059366666666666,24.0627,24.066033333333333,24.069366666666667,24.0727,24.07603333333333,24.079366666666665,24.0827,24.086033333333333,24.089366666666667,24.092699999999997,24.09603333333333,24.099366666666665,24.102700000000002,24.106033333333336,24.109366666666666,24.1127,24.116033333333334,24.119366666666668,24.122700000000002,24.126033333333332,24.129366666666666,24.1327,24.136033333333334,24.139366666666668,24.142699999999998,24.14603333333333,24.149366666666666,24.1527,24.156033333333333,24.159366666666664,24.162699999999997,24.166033333333335,24.16936666666667,24.172700000000003,24.176033333333333,24.179366666666667,24.1827,24.186033333333334,24.18936666666667,24.1927,24.196033333333332,24.199366666666666,24.2027,24.206033333333334,24.209366666666664,24.212699999999998,24.216033333333332,24.219366666666666,24.2227,24.22603333333333,24.229366666666667,24.2327,24.236033333333335,24.23936666666667,24.2427,24.246033333333333,24.249366666666667,24.2527,24.256033333333335,24.259366666666665,24.2627,24.266033333333333,24.269366666666667,24.2727,24.27603333333333,24.279366666666665,24.2827,24.286033333333332,24.28936666666667,24.2927,24.296033333333334,24.299366666666668,24.3027,24.306033333333335,24.309366666666666,24.3127,24.316033333333333,24.319366666666667,24.3227,24.32603333333333,24.329366666666665,24.3327,24.336033333333333,24.339366666666667,24.342699999999997,24.34603333333333,24.349366666666665,24.352700000000002,24.356033333333336,24.359366666666666,24.3627,24.366033333333334,24.369366666666668,24.372700000000002,24.376033333333332,24.379366666666666,24.3827,24.386033333333334,24.389366666666668,24.392699999999998,24.39603333333333,24.399366666666666,24.4027,24.406033333333333,24.409366666666664,24.412699999999997,24.416033333333335,24.41936666666667,24.422700000000003,24.426033333333333,24.429366666666667,24.4327,24.436033333333334,24.43936666666667,24.4427,24.446033333333332,24.449366666666666,24.4527,24.456033333333334,24.459366666666664,24.462699999999998,24.466033333333332,24.469366666666666,24.4727,24.47603333333333,24.479366666666667,24.4827,24.486033333333335,24.48936666666667,24.4927,24.496033333333333,24.499366666666667,24.5027,24.506033333333335,24.509366666666665,24.5127,24.516033333333333,24.519366666666667,24.5227,24.52603333333333,24.529366666666665,24.5327,24.536033333333332,24.53936666666667,24.5427,24.546033333333334,24.549366666666668,24.5527,24.556033333333335,24.559366666666666,24.5627,24.566033333333333,24.569366666666667,24.5727,24.57603333333333,24.579366666666665,24.5827,24.586033333333333,24.589366666666667,24.592699999999997,24.59603333333333,24.599366666666665,24.602700000000002,24.606033333333336,24.609366666666666,24.6127,24.616033333333334,24.619366666666668,24.622700000000002,24.626033333333332,24.629366666666666,24.6327,24.636033333333334,24.639366666666668,24.642699999999998,24.64603333333333,24.649366666666666,24.6527,24.656033333333333,24.659366666666664,24.662699999999997,24.666033333333335,24.66936666666667,24.672700000000003,24.676033333333333,24.679366666666667,24.6827,24.686033333333334,24.68936666666667,24.6927,24.696033333333332,24.699366666666666,24.7027,24.706033333333334,24.709366666666664,24.712699999999998,24.716033333333332,24.719366666666666,24.7227,24.72603333333333,24.729366666666667,24.7327,24.736033333333335,24.73936666666667,24.7427,24.746033333333333,24.749366666666667,24.7527,24.756033333333335,24.759366666666665,24.7627,24.766033333333333,24.769366666666667,24.7727,24.77603333333333,24.779366666666665,24.7827,24.786033333333332,24.78936666666667,24.7927,24.796033333333334,24.799366666666668,24.8027,24.806033333333335,24.809366666666666,24.8127,24.816033333333333,24.819366666666667,24.8227,24.82603333333333,24.829366666666665,24.8327,24.836033333333333,24.839366666666667,24.842699999999997,24.84603333333333,24.849366666666665,24.852700000000002,24.856033333333336,24.859366666666666,24.8627,24.866033333333334,24.869366666666668,24.872700000000002,24.876033333333332,24.879366666666666,24.8827,24.886033333333334,24.889366666666668,24.892699999999998,24.89603333333333,24.899366666666666,24.9027,24.906033333333333,24.909366666666664,24.912699999999997,24.916033333333335,24.91936666666667,24.922700000000003,24.926033333333333,24.929366666666667,24.9327,24.936033333333334,24.93936666666667,24.9427,24.946033333333332,24.949366666666666,24.9527,24.956033333333334,24.959366666666664,24.962699999999998,24.966033333333332,24.969366666666666,24.9727,24.97603333333333,24.979366666666667,24.9827,24.986033333333335,24.98936666666667,24.9927,24.996033333333333,24.999366666666667,25.0027,25.006033333333335,25.009366666666665,25.0127,25.016033333333333,25.019366666666667,25.0227,25.02603333333333,25.029366666666665,25.0327,25.036033333333332,25.03936666666667,25.0427,25.046033333333334,25.049366666666668,25.0527,25.056033333333335,25.059366666666666,25.0627,25.066033333333333,25.069366666666667,25.0727,25.07603333333333,25.079366666666665,25.0827,25.086033333333333,25.089366666666667,25.092699999999997,25.09603333333333,25.099366666666665,25.102700000000002,25.106033333333336,25.109366666666666,25.1127,25.116033333333334,25.119366666666668,25.122700000000002,25.126033333333332,25.129366666666666,25.1327,25.136033333333334,25.139366666666668,25.142699999999998,25.14603333333333,25.149366666666666,25.1527,25.156033333333333,25.159366666666664,25.162699999999997,25.166033333333335,25.16936666666667,25.172700000000003,25.176033333333333,25.179366666666667,25.1827,25.186033333333334,25.18936666666667,25.1927,25.196033333333332,25.199366666666666,25.2027,25.206033333333334,25.209366666666664,25.212699999999998,25.216033333333332,25.219366666666666,25.2227,25.22603333333333,25.229366666666667,25.2327,25.236033333333335,25.23936666666667,25.2427,25.246033333333333,25.249366666666667,25.2527,25.256033333333335,25.259366666666665,25.2627,25.266033333333333,25.269366666666667,25.2727,25.27603333333333,25.279366666666665,25.2827,25.286033333333332,25.28936666666667,25.2927,25.296033333333334,25.299366666666668,25.3027,25.306033333333335,25.309366666666666,25.3127,25.316033333333333,25.319366666666667,25.3227,25.32603333333333,25.329366666666665,25.3327,25.336033333333333,25.339366666666667,25.342699999999997,25.34603333333333,25.349366666666665,25.352700000000002,25.356033333333336,25.359366666666666,25.3627,25.366033333333334,25.369366666666668,25.372700000000002,25.376033333333332,25.379366666666666,25.3827,25.386033333333334,25.389366666666668,25.392699999999998,25.39603333333333,25.399366666666666,25.4027,25.406033333333333,25.409366666666664,25.412699999999997,25.416033333333335,25.41936666666667,25.422700000000003,25.426033333333333,25.429366666666667,25.4327,25.436033333333334,25.43936666666667,25.4427,25.446033333333332,25.449366666666666,25.4527,25.456033333333334,25.459366666666664,25.462699999999998,25.466033333333332,25.469366666666666,25.4727,25.47603333333333,25.479366666666667,25.4827,25.486033333333335,25.48936666666667,25.4927,25.496033333333333,25.499366666666667,25.5027,25.506033333333335,25.509366666666665,25.5127,25.516033333333333,25.519366666666667,25.5227,25.52603333333333,25.529366666666665,25.5327,25.536033333333332,25.53936666666667,25.5427,25.546033333333334,25.549366666666668,25.5527,25.556033333333335,25.559366666666666,25.5627,25.566033333333333,25.569366666666667,25.5727,25.57603333333333,25.579366666666665,25.5827,25.586033333333333,25.589366666666667,25.592699999999997,25.59603333333333,25.599366666666665,25.602700000000002,25.606033333333336,25.609366666666666,25.6127,25.616033333333334,25.619366666666668,25.622700000000002,25.626033333333332,25.629366666666666,25.6327,25.636033333333334,25.639366666666668,25.642699999999998,25.64603333333333,25.649366666666666,25.6527,25.656033333333333,25.659366666666664,25.662699999999997,25.666033333333335,25.66936666666667,25.672700000000003,25.676033333333333,25.679366666666667,25.6827,25.686033333333334,25.68936666666667,25.6927,25.696033333333332,25.699366666666666,25.7027,25.706033333333334,25.709366666666664,25.712699999999998,25.716033333333332,25.719366666666666,25.7227,25.72603333333333,25.729366666666667,25.7327,25.736033333333335,25.73936666666667,25.7427,25.746033333333333,25.749366666666667,25.7527,25.756033333333335,25.759366666666665,25.7627,25.766033333333333,25.769366666666667,25.7727,25.77603333333333,25.779366666666665,25.7827,25.786033333333332,25.78936666666667,25.7927,25.796033333333334,25.799366666666668,25.8027,25.806033333333335,25.809366666666666,25.8127,25.816033333333333,25.819366666666667,25.8227,25.82603333333333,25.829366666666665,25.8327,25.836033333333333,25.839366666666667,25.842699999999997,25.84603333333333,25.849366666666665,25.852700000000002,25.856033333333336,25.859366666666666,25.8627,25.866033333333334,25.869366666666668,25.872700000000002,25.876033333333332,25.879366666666666,25.8827,25.886033333333334,25.889366666666668,25.892699999999998,25.89603333333333,25.899366666666666,25.9027,25.906033333333333,25.909366666666664,25.912699999999997,25.916033333333335,25.91936666666667,25.922700000000003,25.926033333333333,25.929366666666667,25.9327,25.936033333333334,25.93936666666667,25.9427,25.946033333333332,25.949366666666666,25.9527,25.956033333333334,25.959366666666664,25.962699999999998,25.966033333333332,25.969366666666666,25.9727,25.97603333333333,25.979366666666667,25.9827,25.986033333333335,25.98936666666667,25.9927,25.996033333333333,25.999366666666667,26.0027,26.006033333333335,26.009366666666665,26.0127,26.016033333333333,26.019366666666667,26.0227,26.02603333333333,26.029366666666665,26.0327,26.036033333333332,26.03936666666667,26.0427,26.046033333333334,26.049366666666668,26.0527,26.056033333333335,26.059366666666666,26.0627,26.066033333333333,26.069366666666667,26.0727,26.07603333333333,26.079366666666665,26.0827,26.086033333333333,26.089366666666667,26.092699999999997,26.09603333333333,26.099366666666665,26.102700000000002,26.106033333333336,26.109366666666666,26.1127,26.116033333333334,26.119366666666668,26.122700000000002,26.126033333333332,26.129366666666666,26.1327,26.136033333333334,26.139366666666668,26.142699999999998,26.14603333333333,26.149366666666666,26.1527,26.156033333333333,26.159366666666664,26.162699999999997,26.166033333333335,26.16936666666667,26.172700000000003,26.176033333333333,26.179366666666667,26.1827,26.186033333333334,26.18936666666667,26.1927,26.196033333333332,26.199366666666666,26.2027,26.206033333333334,26.209366666666664,26.212699999999998,26.216033333333332,26.219366666666666,26.2227,26.22603333333333,26.229366666666667,26.2327,26.236033333333335,26.23936666666667,26.2427,26.246033333333333,26.249366666666667,26.2527,26.256033333333335,26.259366666666665,26.2627,26.266033333333333,26.269366666666667,26.2727,26.27603333333333,26.279366666666665,26.2827,26.286033333333332,26.28936666666667,26.2927,26.296033333333334,26.299366666666668,26.3027,26.306033333333335,26.309366666666666,26.3127,26.316033333333333,26.319366666666667,26.3227,26.32603333333333,26.329366666666665,26.3327,26.336033333333333,26.339366666666667,26.342699999999997,26.34603333333333,26.349366666666665,26.352700000000002,26.356033333333336,26.359366666666666,26.3627,26.366033333333334,26.369366666666668,26.372700000000002,26.376033333333332,26.379366666666666,26.3827,26.386033333333334,26.389366666666668,26.392699999999998,26.39603333333333,26.399366666666666,26.4027,26.406033333333333,26.409366666666664,26.412699999999997,26.416033333333335,26.41936666666667,26.422700000000003,26.426033333333333,26.429366666666667,26.4327,26.436033333333334,26.43936666666667,26.4427,26.446033333333332,26.449366666666666,26.4527,26.456033333333334,26.459366666666664,26.462699999999998,26.466033333333332,26.469366666666666,26.4727,26.47603333333333,26.479366666666667,26.4827,26.486033333333335,26.48936666666667,26.4927,26.496033333333333,26.499366666666667,26.5027,26.506033333333335,26.509366666666665,26.5127,26.516033333333333,26.519366666666667,26.5227,26.52603333333333,26.529366666666665,26.5327,26.536033333333332,26.53936666666667,26.5427,26.546033333333334,26.549366666666668,26.5527,26.556033333333335,26.559366666666666,26.5627,26.566033333333333,26.569366666666667,26.5727,26.57603333333333,26.579366666666665,26.5827,26.586033333333333,26.589366666666667,26.592699999999997,26.59603333333333,26.599366666666665,26.602700000000002,26.606033333333336,26.609366666666666,26.6127,26.616033333333334,26.619366666666668,26.622700000000002,26.626033333333332,26.629366666666666,26.6327,26.636033333333334,26.639366666666668,26.642699999999998,26.64603333333333,26.649366666666666,26.6527,26.656033333333333,26.659366666666664,26.662699999999997,26.666033333333335,26.66936666666667,26.672700000000003,26.676033333333333,26.679366666666667,26.6827,26.686033333333334,26.68936666666667,26.6927,26.696033333333332,26.699366666666666,26.7027,26.706033333333334,26.709366666666664,26.712699999999998,26.716033333333332,26.719366666666666,26.7227,26.72603333333333,26.729366666666667,26.7327,26.736033333333335,26.73936666666667,26.7427,26.746033333333333,26.749366666666667,26.7527,26.756033333333335,26.759366666666665,26.7627,26.766033333333333,26.769366666666667,26.7727,26.77603333333333,26.779366666666665,26.7827,26.786033333333332,26.78936666666667,26.7927,26.796033333333334,26.799366666666668,26.8027,26.806033333333335,26.809366666666666,26.8127,26.816033333333333,26.819366666666667,26.8227,26.82603333333333,26.829366666666665,26.8327,26.836033333333333,26.839366666666667,26.842699999999997,26.84603333333333,26.849366666666665,26.852700000000002,26.856033333333336,26.859366666666666,26.8627,26.866033333333334,26.869366666666668,26.872700000000002,26.876033333333332,26.879366666666666,26.8827,26.886033333333334,26.889366666666668,26.892699999999998,26.89603333333333,26.899366666666666,26.9027,26.906033333333333,26.909366666666664,26.912699999999997,26.916033333333335,26.91936666666667,26.922700000000003,26.926033333333333,26.929366666666667,26.9327,26.936033333333334,26.93936666666667,26.9427,26.946033333333332,26.949366666666666,26.9527,26.956033333333334,26.959366666666664,26.962699999999998,26.966033333333332,26.969366666666666,26.9727,26.97603333333333,26.979366666666667,26.9827,26.986033333333335,26.98936666666667,26.9927,26.996033333333333,26.999366666666667,27.0027,27.006033333333335,27.009366666666665,27.0127,27.016033333333333,27.019366666666667,27.0227,27.02603333333333,27.029366666666665,27.0327,27.036033333333332,27.03936666666667,27.0427,27.046033333333334,27.049366666666668,27.0527,27.056033333333335,27.059366666666666,27.0627,27.066033333333333,27.069366666666667,27.0727,27.07603333333333,27.079366666666665,27.0827,27.086033333333333,27.089366666666667,27.092699999999997,27.09603333333333,27.099366666666665,27.102700000000002,27.106033333333336,27.109366666666666,27.1127,27.116033333333334,27.119366666666668,27.122700000000002,27.126033333333332,27.129366666666666,27.1327,27.136033333333334,27.139366666666668,27.142699999999998,27.14603333333333,27.149366666666666,27.1527,27.156033333333333,27.159366666666664,27.162699999999997,27.166033333333335,27.16936666666667,27.172700000000003,27.176033333333333,27.179366666666667,27.1827,27.186033333333334,27.18936666666667,27.1927,27.196033333333332,27.199366666666666,27.2027,27.206033333333334,27.209366666666664,27.212699999999998,27.216033333333332,27.219366666666666,27.2227,27.22603333333333,27.229366666666667,27.2327,27.236033333333335,27.23936666666667,27.2427,27.246033333333333,27.249366666666667,27.2527,27.256033333333335,27.259366666666665,27.2627,27.266033333333333,27.269366666666667,27.2727,27.27603333333333,27.279366666666665,27.2827,27.286033333333332,27.28936666666667,27.2927,27.296033333333334,27.299366666666668,27.3027,27.306033333333335,27.309366666666666,27.3127,27.316033333333333,27.319366666666667,27.3227,27.32603333333333,27.329366666666665,27.3327,27.336033333333333,27.339366666666667,27.342699999999997,27.34603333333333,27.349366666666665,27.352700000000002,27.356033333333336,27.359366666666666,27.3627,27.366033333333334,27.369366666666668,27.372700000000002,27.376033333333332,27.379366666666666,27.3827,27.386033333333334,27.389366666666668,27.392699999999998,27.39603333333333,27.399366666666666,27.4027,27.406033333333333,27.409366666666664,27.412699999999997,27.416033333333335,27.41936666666667,27.422700000000003,27.426033333333333,27.429366666666667,27.4327,27.436033333333334,27.43936666666667,27.4427,27.446033333333332,27.449366666666666,27.4527,27.456033333333334,27.459366666666664,27.462699999999998,27.466033333333332,27.469366666666666,27.4727,27.47603333333333,27.479366666666667,27.4827,27.486033333333335,27.48936666666667,27.4927,27.496033333333333,27.499366666666667,27.5027,27.506033333333335,27.509366666666665,27.5127,27.516033333333333,27.519366666666667,27.5227,27.52603333333333,27.529366666666665,27.5327,27.536033333333332,27.53936666666667,27.5427,27.546033333333334,27.549366666666668,27.5527,27.556033333333335,27.559366666666666,27.5627,27.566033333333333,27.569366666666667,27.5727,27.57603333333333,27.579366666666665,27.5827,27.586033333333333,27.589366666666667,27.592699999999997,27.59603333333333,27.599366666666665,27.602700000000002,27.606033333333336,27.609366666666666,27.6127,27.616033333333334,27.619366666666668,27.622700000000002,27.626033333333332,27.629366666666666,27.6327,27.636033333333334,27.639366666666668,27.642699999999998,27.64603333333333,27.649366666666666,27.6527,27.656033333333333,27.659366666666664,27.662699999999997,27.666033333333335,27.66936666666667,27.672700000000003,27.676033333333333,27.679366666666667,27.6827,27.686033333333334,27.68936666666667,27.6927,27.696033333333332,27.699366666666666,27.7027,27.706033333333334,27.709366666666664,27.712699999999998,27.716033333333332,27.719366666666666,27.7227,27.72603333333333,27.729366666666667,27.7327,27.736033333333335,27.73936666666667,27.7427,27.746033333333333,27.749366666666667,27.7527,27.756033333333335,27.759366666666665,27.7627,27.766033333333333,27.769366666666667,27.7727,27.77603333333333,27.779366666666665,27.7827,27.786033333333332,27.78936666666667,27.7927,27.796033333333334,27.799366666666668,27.8027,27.806033333333335,27.809366666666666,27.8127,27.816033333333333,27.819366666666667,27.8227,27.82603333333333,27.829366666666665,27.8327,27.836033333333333,27.839366666666667,27.842699999999997,27.84603333333333,27.849366666666665,27.852700000000002,27.856033333333336,27.859366666666666,27.8627,27.866033333333334,27.869366666666668,27.872700000000002,27.876033333333332,27.879366666666666,27.8827,27.886033333333334,27.889366666666668,27.892699999999998,27.89603333333333,27.899366666666666,27.9027,27.906033333333333,27.909366666666664,27.912699999999997,27.916033333333335,27.91936666666667,27.922700000000003,27.926033333333333,27.929366666666667,27.9327,27.936033333333334,27.93936666666667,27.9427,27.946033333333332,27.949366666666666,27.9527,27.956033333333334,27.959366666666664,27.962699999999998,27.966033333333332,27.969366666666666,27.9727,27.97603333333333,27.979366666666667,27.9827,27.986033333333335,27.98936666666667,27.9927,27.996033333333333,27.999366666666667,28.0027,28.006033333333335,28.009366666666665,28.0127,28.016033333333333,28.019366666666667,28.0227,28.02603333333333,28.029366666666665,28.0327,28.036033333333332,28.03936666666667,28.0427,28.046033333333334,28.049366666666668,28.0527,28.056033333333335,28.059366666666666,28.0627,28.066033333333333,28.069366666666667,28.0727,28.07603333333333,28.079366666666665,28.0827,28.086033333333333,28.089366666666667,28.092699999999997,28.09603333333333,28.099366666666665,28.102700000000002,28.106033333333336,28.109366666666666,28.1127,28.116033333333334,28.119366666666668,28.122700000000002,28.126033333333332,28.129366666666666,28.1327,28.136033333333334,28.139366666666668,28.142699999999998,28.14603333333333,28.149366666666666,28.1527,28.156033333333333,28.159366666666664,28.162699999999997,28.166033333333335,28.16936666666667,28.172700000000003,28.176033333333333,28.179366666666667,28.1827,28.186033333333334,28.18936666666667,28.1927,28.196033333333332,28.199366666666666,28.2027,28.206033333333334,28.209366666666664,28.212699999999998,28.216033333333332,28.219366666666666,28.2227,28.22603333333333,28.229366666666667,28.2327,28.236033333333335,28.23936666666667,28.2427,28.246033333333333,28.249366666666667,28.2527,28.256033333333335,28.259366666666665,28.2627,28.266033333333333,28.269366666666667,28.2727,28.27603333333333,28.279366666666665,28.2827,28.286033333333332,28.28936666666667,28.2927,28.296033333333334,28.299366666666668,28.3027,28.306033333333335,28.309366666666666,28.3127,28.316033333333333,28.319366666666667,28.3227,28.32603333333333,28.329366666666665,28.3327,28.336033333333333,28.339366666666667,28.342699999999997,28.34603333333333,28.349366666666665,28.352700000000002,28.356033333333336,28.359366666666666,28.3627,28.366033333333334,28.369366666666668,28.372700000000002,28.376033333333332,28.379366666666666,28.3827,28.386033333333334,28.389366666666668,28.392699999999998,28.39603333333333,28.399366666666666,28.4027,28.406033333333333,28.409366666666664,28.412699999999997,28.416033333333335,28.41936666666667,28.422700000000003,28.426033333333333,28.429366666666667,28.4327,28.436033333333334,28.43936666666667,28.4427,28.446033333333332,28.449366666666666,28.4527,28.456033333333334,28.459366666666664,28.462699999999998,28.466033333333332,28.469366666666666,28.4727,28.47603333333333,28.479366666666667,28.4827,28.486033333333335,28.48936666666667,28.4927,28.496033333333333,28.499366666666667,28.5027,28.506033333333335,28.509366666666665,28.5127,28.516033333333333,28.519366666666667,28.5227,28.52603333333333,28.529366666666665,28.5327,28.536033333333332,28.53936666666667,28.5427,28.546033333333334,28.549366666666668,28.5527,28.556033333333335,28.559366666666666,28.5627,28.566033333333333,28.569366666666667,28.5727,28.57603333333333,28.579366666666665,28.5827,28.586033333333333,28.589366666666667,28.592699999999997,28.59603333333333,28.599366666666665,28.602700000000002,28.606033333333336,28.609366666666666,28.6127,28.616033333333334,28.619366666666668,28.622700000000002,28.626033333333332,28.629366666666666,28.6327,28.636033333333334,28.639366666666668,28.642699999999998,28.64603333333333,28.649366666666666,28.6527,28.656033333333333,28.659366666666664,28.662699999999997,28.666033333333335,28.66936666666667,28.672700000000003,28.676033333333333,28.679366666666667,28.6827,28.686033333333334,28.68936666666667,28.6927,28.696033333333332,28.699366666666666,28.7027,28.706033333333334,28.709366666666664,28.712699999999998,28.716033333333332,28.719366666666666,28.7227,28.72603333333333,28.729366666666667,28.7327,28.736033333333335,28.73936666666667,28.7427,28.746033333333333,28.749366666666667,28.7527,28.756033333333335,28.759366666666665,28.7627,28.766033333333333,28.769366666666667,28.7727,28.77603333333333,28.779366666666665,28.7827,28.786033333333332,28.78936666666667,28.7927,28.796033333333334,28.799366666666668,28.8027,28.806033333333335,28.809366666666666,28.8127,28.816033333333333,28.819366666666667,28.8227,28.82603333333333,28.829366666666665,28.8327,28.836033333333333,28.839366666666667,28.842699999999997,28.84603333333333,28.849366666666665,28.852700000000002,28.856033333333336,28.859366666666666,28.8627,28.866033333333334,28.869366666666668,28.872700000000002,28.876033333333332,28.879366666666666,28.8827,28.886033333333334,28.889366666666668,28.892699999999998,28.89603333333333,28.899366666666666,28.9027,28.906033333333333,28.909366666666664,28.912699999999997,28.916033333333335,28.91936666666667,28.922700000000003,28.926033333333333,28.929366666666667,28.9327,28.936033333333334,28.93936666666667,28.9427,28.946033333333332,28.949366666666666,28.9527,28.956033333333334,28.959366666666664,28.962699999999998,28.966033333333332,28.969366666666666,28.9727,28.97603333333333,28.979366666666667,28.9827,28.986033333333335,28.98936666666667,28.9927,28.996033333333333,28.999366666666667,29.0027,29.006033333333335,29.009366666666665,29.0127,29.016033333333333,29.019366666666667,29.0227,29.02603333333333,29.029366666666665,29.0327,29.036033333333332,29.03936666666667,29.0427,29.046033333333334,29.049366666666668,29.0527,29.056033333333335,29.059366666666666,29.0627,29.066033333333333,29.069366666666667,29.0727,29.07603333333333,29.079366666666665,29.0827,29.086033333333333,29.089366666666667,29.092699999999997,29.09603333333333,29.099366666666665,29.102700000000002,29.106033333333336,29.109366666666666,29.1127,29.116033333333334,29.119366666666668,29.122700000000002,29.126033333333332,29.129366666666666,29.1327,29.136033333333334,29.139366666666668,29.142699999999998,29.14603333333333,29.149366666666666,29.1527,29.156033333333333,29.159366666666664,29.162699999999997,29.166033333333335,29.16936666666667,29.172700000000003,29.176033333333333,29.179366666666667,29.1827,29.186033333333334,29.18936666666667,29.1927,29.196033333333332,29.199366666666666,29.2027,29.206033333333334,29.209366666666664,29.212699999999998,29.216033333333332,29.219366666666666,29.2227,29.22603333333333,29.229366666666667,29.2327,29.236033333333335,29.23936666666667,29.2427,29.246033333333333,29.249366666666667,29.2527,29.256033333333335,29.259366666666665,29.2627,29.266033333333333,29.269366666666667,29.2727,29.27603333333333,29.279366666666665,29.2827,29.286033333333332,29.28936666666667,29.2927,29.296033333333334,29.299366666666668,29.3027,29.306033333333335,29.309366666666666,29.3127,29.316033333333333,29.319366666666667,29.3227,29.32603333333333,29.329366666666665,29.3327,29.336033333333333,29.339366666666667,29.342699999999997,29.34603333333333,29.349366666666665,29.352700000000002,29.356033333333336,29.359366666666666,29.3627,29.366033333333334,29.369366666666668,29.372700000000002,29.376033333333332,29.379366666666666,29.3827,29.386033333333334,29.389366666666668,29.392699999999998,29.39603333333333,29.399366666666666,29.4027,29.406033333333333,29.409366666666664,29.412699999999997,29.416033333333335,29.41936666666667,29.422700000000003,29.426033333333333,29.429366666666667,29.4327,29.436033333333334,29.43936666666667,29.4427,29.446033333333332,29.449366666666666,29.4527,29.456033333333334,29.459366666666664,29.462699999999998,29.466033333333332,29.469366666666666,29.4727,29.47603333333333,29.479366666666667,29.4827,29.486033333333335,29.48936666666667,29.4927,29.496033333333333,29.499366666666667,29.5027,29.506033333333335,29.509366666666665,29.5127,29.516033333333333,29.519366666666667,29.5227,29.52603333333333,29.529366666666665,29.5327,29.536033333333332,29.53936666666667,29.5427,29.546033333333334,29.549366666666668,29.5527,29.556033333333335,29.559366666666666,29.5627,29.566033333333333,29.569366666666667,29.5727,29.57603333333333,29.579366666666665,29.5827,29.586033333333333,29.589366666666667,29.592699999999997,29.59603333333333,29.599366666666665,29.602700000000002,29.606033333333336,29.609366666666666,29.6127,29.616033333333334,29.619366666666668,29.622700000000002,29.626033333333332,29.629366666666666,29.6327,29.636033333333334,29.639366666666668,29.642699999999998,29.64603333333333,29.649366666666666,29.6527,29.656033333333333,29.659366666666664,29.662699999999997,29.666033333333335,29.66936666666667,29.672700000000003,29.676033333333333,29.679366666666667,29.6827,29.686033333333334,29.68936666666667,29.6927,29.696033333333332,29.699366666666666,29.7027,29.706033333333334,29.709366666666664,29.712699999999998,29.716033333333332,29.719366666666666,29.7227,29.72603333333333,29.729366666666667,29.7327,29.736033333333335,29.73936666666667,29.7427,29.746033333333333,29.749366666666667,29.7527,29.756033333333335,29.759366666666665,29.7627,29.766033333333333,29.769366666666667,29.7727,29.77603333333333,29.779366666666665,29.7827,29.786033333333332,29.78936666666667,29.7927,29.796033333333334,29.799366666666668,29.8027,29.806033333333335,29.809366666666666,29.8127,29.816033333333333,29.819366666666667,29.8227,29.82603333333333,29.829366666666665,29.8327,29.836033333333333,29.839366666666667,29.842699999999997,29.84603333333333,29.849366666666665,29.852700000000002,29.856033333333336,29.859366666666666,29.8627,29.866033333333334,29.869366666666668,29.872700000000002,29.876033333333332,29.879366666666666,29.8827,29.886033333333334,29.889366666666668,29.892699999999998,29.89603333333333,29.899366666666666,29.9027,29.906033333333333,29.909366666666664,29.912699999999997,29.916033333333335,29.91936666666667,29.922700000000003,29.926033333333333,29.929366666666667,29.9327,29.936033333333334,29.93936666666667,29.9427,29.946033333333332,29.949366666666666,29.9527,29.956033333333334,29.959366666666664,29.962699999999998,29.966033333333332,29.969366666666666,29.9727,29.97603333333333,29.979366666666667,29.9827,29.986033333333335,29.98936666666667,29.9927,29.996033333333333,29.999366666666667,30.0027,30.006033333333335,30.009366666666665,30.0127,30.016033333333333,30.019366666666667,30.0227,30.02603333333333,30.029366666666665,30.0327,30.036033333333332,30.03936666666667,30.0427,30.046033333333334,30.049366666666668,30.0527,30.056033333333335,30.059366666666666,30.0627,30.066033333333333,30.069366666666667,30.0727,30.07603333333333,30.079366666666665,30.0827,30.086033333333333,30.089366666666667,30.092699999999997,30.09603333333333,30.099366666666665,30.102700000000002,30.106033333333336,30.109366666666666,30.1127,30.116033333333334,30.119366666666668,30.122700000000002,30.126033333333332,30.129366666666666,30.1327,30.136033333333334,30.139366666666668,30.142699999999998,30.14603333333333,30.149366666666666,30.1527,30.156033333333333,30.159366666666664,30.162699999999997,30.166033333333335,30.16936666666667,30.172700000000003,30.176033333333333,30.179366666666667,30.1827,30.186033333333334,30.18936666666667,30.1927,30.196033333333332,30.199366666666666,30.2027,30.206033333333334,30.209366666666664,30.212699999999998,30.216033333333332,30.219366666666666,30.2227,30.22603333333333,30.229366666666667,30.2327,30.236033333333335,30.23936666666667,30.2427,30.246033333333333,30.249366666666667,30.2527,30.256033333333335,30.259366666666665,30.2627,30.266033333333333,30.269366666666667,30.2727,30.27603333333333,30.279366666666665,30.2827,30.286033333333332,30.28936666666667,30.2927,30.296033333333334,30.299366666666668,30.3027,30.306033333333335,30.309366666666666,30.3127,30.316033333333333,30.319366666666667,30.3227,30.32603333333333,30.329366666666665,30.3327,30.336033333333333,30.339366666666667,30.342699999999997,30.34603333333333,30.349366666666665,30.352700000000002,30.356033333333336,30.359366666666666,30.3627,30.366033333333334,30.369366666666668,30.372700000000002,30.376033333333332,30.379366666666666,30.3827,30.386033333333334,30.389366666666668,30.392699999999998,30.39603333333333,30.399366666666666,30.4027,30.406033333333333,30.409366666666664,30.412699999999997,30.416033333333335,30.41936666666667,30.422700000000003,30.426033333333333,30.429366666666667,30.4327,30.436033333333334,30.43936666666667,30.4427,30.446033333333332,30.449366666666666,30.4527,30.456033333333334,30.459366666666664,30.462699999999998,30.466033333333332,30.469366666666666,30.4727,30.47603333333333,30.479366666666667,30.4827,30.486033333333335,30.48936666666667,30.4927,30.496033333333333,30.499366666666667,30.5027,30.506033333333335,30.509366666666665,30.5127,30.516033333333333,30.519366666666667,30.5227,30.52603333333333,30.529366666666665,30.5327,30.536033333333332,30.53936666666667,30.5427,30.546033333333334,30.549366666666668,30.5527,30.556033333333335,30.559366666666666,30.5627,30.566033333333333,30.569366666666667,30.5727,30.57603333333333,30.579366666666665,30.5827,30.586033333333333,30.589366666666667,30.592699999999997,30.59603333333333,30.599366666666665,30.602700000000002,30.606033333333336,30.609366666666666,30.6127,30.616033333333334,30.619366666666668,30.622700000000002,30.626033333333332,30.629366666666666,30.6327,30.636033333333334,30.639366666666668,30.642699999999998,30.64603333333333,30.649366666666666,30.6527,30.656033333333333,30.659366666666664,30.662699999999997,30.666033333333335,30.66936666666667,30.672700000000003,30.676033333333333,30.679366666666667,30.6827,30.686033333333334,30.68936666666667,30.6927,30.696033333333332,30.699366666666666,30.7027,30.706033333333334,30.709366666666664,30.712699999999998,30.716033333333332,30.719366666666666,30.7227,30.72603333333333,30.729366666666667,30.7327,30.736033333333335,30.73936666666667,30.7427,30.746033333333333,30.749366666666667,30.7527,30.756033333333335,30.759366666666665,30.7627,30.766033333333333,30.769366666666667,30.7727,30.77603333333333,30.779366666666665,30.7827,30.786033333333332,30.78936666666667,30.7927,30.796033333333334,30.799366666666668,30.8027,30.806033333333335,30.809366666666666,30.8127,30.816033333333333,30.819366666666667,30.8227,30.82603333333333,30.829366666666665,30.8327,30.836033333333333,30.839366666666667,30.842699999999997,30.84603333333333,30.849366666666665,30.852700000000002,30.856033333333336,30.859366666666666,30.8627,30.866033333333334,30.869366666666668,30.872700000000002,30.876033333333332,30.879366666666666,30.8827,30.886033333333334,30.889366666666668,30.892699999999998,30.89603333333333,30.899366666666666,30.9027,30.906033333333333,30.909366666666664,30.912699999999997,30.916033333333335,30.91936666666667,30.922700000000003,30.926033333333333,30.929366666666667,30.9327,30.936033333333334,30.93936666666667,30.9427,30.946033333333332,30.949366666666666,30.9527,30.956033333333334,30.959366666666664,30.962699999999998,30.966033333333332,30.969366666666666,30.9727,30.97603333333333,30.979366666666667,30.9827,30.986033333333335,30.98936666666667,30.9927,30.996033333333333,30.999366666666667,31.0027,31.006033333333335,31.009366666666665,31.0127,31.016033333333333,31.019366666666667,31.0227,31.02603333333333,31.029366666666665,31.0327,31.036033333333332,31.03936666666667,31.0427,31.046033333333334,31.049366666666668,31.0527,31.056033333333335,31.059366666666666,31.0627,31.066033333333333,31.069366666666667,31.0727,31.07603333333333,31.079366666666665,31.0827,31.086033333333333,31.089366666666667,31.092699999999997,31.09603333333333,31.099366666666665,31.102700000000002,31.106033333333336,31.109366666666666,31.1127,31.116033333333334,31.119366666666668,31.122700000000002,31.126033333333332,31.129366666666666,31.1327,31.136033333333334,31.139366666666668,31.142699999999998,31.14603333333333,31.149366666666666,31.1527,31.156033333333333,31.159366666666664,31.162699999999997,31.166033333333335,31.16936666666667,31.172700000000003,31.176033333333333,31.179366666666667,31.1827,31.186033333333334,31.18936666666667,31.1927,31.196033333333332,31.199366666666666,31.2027,31.206033333333334,31.209366666666664,31.212699999999998,31.216033333333332,31.219366666666666,31.2227,31.22603333333333,31.229366666666667,31.2327,31.236033333333335,31.23936666666667,31.2427,31.246033333333333,31.249366666666667,31.2527,31.256033333333335,31.259366666666665,31.2627,31.266033333333333,31.269366666666667,31.2727,31.27603333333333,31.279366666666665,31.2827,31.286033333333332,31.28936666666667,31.2927,31.296033333333334,31.299366666666668,31.3027,31.306033333333335,31.309366666666666,31.3127,31.316033333333333,31.319366666666667,31.3227,31.32603333333333,31.329366666666665,31.3327,31.336033333333333,31.339366666666667,31.342699999999997,31.34603333333333,31.349366666666665,31.352700000000002,31.356033333333336,31.359366666666666,31.3627,31.366033333333334,31.369366666666668,31.372700000000002,31.376033333333332,31.379366666666666,31.3827,31.386033333333334,31.389366666666668,31.392699999999998,31.39603333333333,31.399366666666666,31.4027,31.406033333333333,31.409366666666664,31.412699999999997,31.416033333333335,31.41936666666667,31.422700000000003,31.426033333333333,31.429366666666667,31.4327,31.436033333333334,31.43936666666667,31.4427,31.446033333333332,31.449366666666666,31.4527,31.456033333333334,31.459366666666664,31.462699999999998,31.466033333333332,31.469366666666666,31.4727,31.47603333333333,31.479366666666667,31.4827,31.486033333333335,31.48936666666667,31.4927,31.496033333333333,31.499366666666667,31.5027,31.506033333333335,31.509366666666665,31.5127,31.516033333333333,31.519366666666667,31.5227,31.52603333333333,31.529366666666665,31.5327,31.536033333333332,31.53936666666667,31.5427,31.546033333333334,31.549366666666668,31.5527,31.556033333333335,31.559366666666666,31.5627,31.566033333333333,31.569366666666667,31.5727,31.57603333333333,31.579366666666665,31.5827,31.586033333333333,31.589366666666667,31.592699999999997,31.59603333333333,31.599366666666665,31.602700000000002,31.606033333333336,31.609366666666666,31.6127,31.616033333333334,31.619366666666668,31.622700000000002,31.626033333333332,31.629366666666666,31.6327,31.636033333333334,31.639366666666668,31.642699999999998,31.64603333333333,31.649366666666666,31.6527,31.656033333333333,31.659366666666664,31.662699999999997,31.666033333333335,31.66936666666667,31.672700000000003,31.676033333333333,31.679366666666667,31.6827,31.686033333333334,31.68936666666667,31.6927,31.696033333333332,31.699366666666666,31.7027,31.706033333333334,31.709366666666664,31.712699999999998,31.716033333333332,31.719366666666666,31.7227,31.72603333333333,31.729366666666667,31.7327,31.736033333333335,31.73936666666667,31.7427,31.746033333333333,31.749366666666667,31.7527,31.756033333333335,31.759366666666665,31.7627,31.766033333333333,31.769366666666667,31.7727,31.77603333333333,31.779366666666665,31.7827,31.786033333333332,31.78936666666667,31.7927,31.796033333333334,31.799366666666668,31.8027,31.806033333333335,31.809366666666666,31.8127,31.816033333333333,31.819366666666667,31.8227,31.82603333333333,31.829366666666665,31.8327,31.836033333333333,31.839366666666667,31.842699999999997,31.84603333333333,31.849366666666665,31.852700000000002,31.856033333333336,31.859366666666666,31.8627,31.866033333333334,31.869366666666668,31.872700000000002,31.876033333333332,31.879366666666666,31.8827,31.886033333333334,31.889366666666668,31.892699999999998,31.89603333333333,31.899366666666666,31.9027,31.906033333333333,31.909366666666664,31.912699999999997,31.916033333333335,31.91936666666667,31.922700000000003,31.926033333333333,31.929366666666667,31.9327,31.936033333333334,31.93936666666667,31.9427,31.946033333333332,31.949366666666666,31.9527,31.956033333333334,31.959366666666664,31.962699999999998,31.966033333333332,31.969366666666666,31.9727,31.97603333333333,31.979366666666667,31.9827,31.986033333333335,31.98936666666667,31.9927,31.996033333333333,31.999366666666667,32.0027,32.006033333333335,32.009366666666665,32.0127,32.01603333333333,32.01936666666667,32.0227,32.02603333333333,32.02936666666667,32.0327,32.036033333333336,32.039366666666666,32.042699999999996,32.046033333333334,32.049366666666664,32.0527,32.05603333333333,32.05936666666666,32.0627,32.06603333333333,32.06936666666667,32.072700000000005,32.076033333333335,32.079366666666665,32.0827,32.08603333333333,32.08936666666667,32.0927,32.09603333333333,32.09936666666667,32.1027,32.106033333333336,32.109366666666666,32.1127,32.116033333333334,32.119366666666664,32.1227,32.12603333333333,32.12936666666666,32.1327,32.13603333333334,32.13936666666667,32.1427,32.146033333333335,32.149366666666666,32.1527,32.15603333333333,32.15936666666666,32.1627,32.16603333333333,32.16936666666667,32.1727,32.17603333333333,32.17936666666667,32.1827,32.186033333333334,32.189366666666665,32.192699999999995,32.19603333333333,32.19936666666667,32.2027,32.20603333333334,32.20936666666667,32.2127,32.216033333333336,32.219366666666666,32.2227,32.22603333333333,32.229366666666664,32.2327,32.23603333333333,32.23936666666667,32.2427,32.24603333333333,32.24936666666667,32.2527,32.256033333333335,32.259366666666665,32.2627,32.26603333333333,32.26936666666667,32.2727,32.27603333333333,32.27936666666667,32.2827,32.286033333333336,32.289366666666666,32.292699999999996,32.296033333333334,32.299366666666664,32.3027,32.30603333333333,32.30936666666666,32.3127,32.31603333333333,32.31936666666667,32.322700000000005,32.326033333333335,32.329366666666665,32.3327,32.33603333333333,32.33936666666667,32.3427,32.34603333333333,32.34936666666667,32.3527,32.356033333333336,32.359366666666666,32.3627,32.366033333333334,32.369366666666664,32.3727,32.37603333333333,32.37936666666666,32.3827,32.38603333333334,32.38936666666667,32.3927,32.396033333333335,32.399366666666666,32.4027,32.40603333333333,32.40936666666666,32.4127,32.41603333333333,32.41936666666667,32.4227,32.42603333333333,32.42936666666667,32.4327,32.436033333333334,32.439366666666665,32.442699999999995,32.44603333333333,32.44936666666667,32.4527,32.45603333333334,32.45936666666667,32.4627,32.466033333333336,32.469366666666666,32.4727,32.47603333333333,32.479366666666664,32.4827,32.48603333333333,32.48936666666667,32.4927,32.49603333333333,32.49936666666667,32.5027,32.506033333333335,32.509366666666665,32.5127,32.51603333333333,32.51936666666667,32.5227,32.52603333333333,32.52936666666667,32.5327,32.536033333333336,32.539366666666666,32.542699999999996,32.546033333333334,32.549366666666664,32.5527,32.55603333333333,32.55936666666666,32.5627,32.56603333333333,32.56936666666667,32.572700000000005,32.576033333333335,32.579366666666665,32.5827,32.58603333333333,32.58936666666667,32.5927,32.59603333333333,32.59936666666667,32.6027,32.606033333333336,32.609366666666666,32.6127,32.616033333333334,32.619366666666664,32.6227,32.62603333333333,32.62936666666666,32.6327,32.63603333333334,32.63936666666667,32.6427,32.646033333333335,32.649366666666666,32.6527,32.65603333333333,32.65936666666666,32.6627,32.66603333333333,32.66936666666667,32.6727,32.67603333333333,32.67936666666667,32.6827,32.686033333333334,32.689366666666665,32.692699999999995,32.69603333333333,32.69936666666667,32.7027,32.70603333333334,32.70936666666667,32.7127,32.716033333333336,32.719366666666666,32.7227,32.72603333333333,32.729366666666664,32.7327,32.73603333333333,32.73936666666667,32.7427,32.74603333333333,32.74936666666667,32.7527,32.756033333333335,32.759366666666665,32.7627,32.76603333333333,32.76936666666667,32.7727,32.77603333333333,32.77936666666667,32.7827,32.786033333333336,32.789366666666666,32.792699999999996,32.796033333333334,32.799366666666664,32.8027,32.80603333333333,32.80936666666666,32.8127,32.81603333333333,32.81936666666667,32.822700000000005,32.826033333333335,32.829366666666665,32.8327,32.83603333333333,32.83936666666667,32.8427,32.84603333333333,32.84936666666667,32.8527,32.856033333333336,32.859366666666666,32.8627,32.866033333333334,32.869366666666664,32.8727,32.87603333333333,32.87936666666666,32.8827,32.88603333333334,32.88936666666667,32.8927,32.896033333333335,32.899366666666666,32.9027,32.90603333333333,32.90936666666666,32.9127,32.91603333333333,32.91936666666667,32.9227,32.92603333333333,32.92936666666667,32.9327,32.936033333333334,32.939366666666665,32.942699999999995,32.94603333333333,32.94936666666667,32.9527,32.95603333333334,32.95936666666667,32.9627,32.966033333333336,32.969366666666666,32.9727,32.97603333333333,32.979366666666664,32.9827,32.98603333333333,32.98936666666667,32.9927,32.99603333333333,32.99936666666667],"y":[-72072.0,-72443.0,-72819.0,-73152.0,-73409.0,-73601.0,-73761.0,-73972.0,-74221.0,-74511.0,-74842.0,-75228.0,-75697.0,-76126.0,-76483.0,-76801.0,-77162.0,-77589.0,-78007.0,-78441.0,-78894.0,-79349.0,-79775.0,-80120.0,-80390.0,-80622.0,-80891.0,-81183.0,-81441.0,-81679.0,-81969.0,-82314.0,-82642.0,-82928.0,-83229.0,-83577.0,-83925.0,-84236.0,-84497.0,-84773.0,-85090.0,-85478.0,-85920.0,-86358.0,-86790.0,-87143.0,-87414.0,-87617.0,-87799.0,-88027.0,-88270.0,-88627.0,-89047.0,-89461.0,-89864.0,-90276.0,-90760.0,-91207.0,-91607.0,-92024.0,-92424.0,-92779.0,-93085.0,-93387.0,-93731.0,-94038.0,-94291.0,-94486.0,-94625.0,-94764.0,-94928.0,-95172.0,-95490.0,-95865.0,-96298.0,-96738.0,-97161.0,-97531.0,-97877.0,-98196.0,-98456.0,-98690.0,-98903.0,-99136.0,-99372.0,-99634.0,-99970.0,-100347.0,-100740.0,-101106.0,-101431.0,-101733.0,-102042.0,-102400.0,-102768.0,-103116.0,-103457.0,-103844.0,-104279.0,-104752.0,-105244.0,-105764.0,-106315.0,-106822.0,-107222.0,-107505.0,-107805.0,-108185.0,-108613.0,-109092.0,-109685.0,-110396.0,-111082.0,-111668.0,-112214.0,-112740.0,-113189.0,-113538.0,-113869.0,-114237.0,-114619.0,-115007.0,-115439.0,-115878.0,-116312.0,-116728.0,-117169.0,-117647.0,-118119.0,-118588.0,-119015.0,-119367.0,-119625.0,-119849.0,-120081.0,-120353.0,-120678.0,-121130.0,-121701.0,-122307.0,-122935.0,-123574.0,-124209.0,-124714.0,-125065.0,-125277.0,-125382.0,-125455.0,-125571.0,-125791.0,-126099.0,-126512.0,-127006.0,-127487.0,-127910.0,-128301.0,-128688.0,-129019.0,-129336.0,-129721.0,-130182.0,-130648.0,-131102.0,-131573.0,-132001.0,-132308.0,-132529.0,-132771.0,-133050.0,-133380.0,-133769.0,-134266.0,-134771.0,-135182.0,-135504.0,-135759.0,-136022.0,-136273.0,-136553.0,-136905.0,-137340.0,-137843.0,-138332.0,-138744.0,-139110.0,-139447.0,-139765.0,-140020.0,-140244.0,-140517.0,-140865.0,-141259.0,-141672.0,-142115.0,-142557.0,-142971.0,-143294.0,-143578.0,-143856.0,-144155.0,-144476.0,-144774.0,-145078.0,-145396.0,-145723.0,-146046.0,-146351.0,-146691.0,-147095.0,-147520.0,-147904.0,-148199.0,-148417.0,-148624.0,-148851.0,-149132.0,-149514.0,-149978.0,-150467.0,-150832.0,-151098.0,-151294.0,-151459.0,-151649.0,-151899.0,-152258.0,-152627.0,-152975.0,-153244.0,-153407.0,-153472.0,-153535.0,-153691.0,-153913.0,-154172.0,-154479.0,-154883.0,-155282.0,-155548.0,-155702.0,-155894.0,-156209.0,-156614.0,-157069.0,-157600.0,-158197.0,-158759.0,-159193.0,-159482.0,-159697.0,-159932.0,-160132.0,-160290.0,-160433.0,-160611.0,-160862.0,-161094.0,-161371.0,-161632.0,-161856.0,-162043.0,-162198.0,-162395.0,-162562.0,-162787.0,-163122.0,-163623.0,-164249.0,-164948.0,-165860.0,-167017.0,-168442.0,-170140.0,-172249.0,-174938.0,-178207.0,-182159.0,-186954.0,-192754.0,-199675.0,-207800.0,-217201.0,-227890.0,-239803.0,-252833.0,-266848.0,-281569.0,-296795.0,-312346.0,-328084.0,-343797.0,-359161.0,-374108.0,-388548.0,-402345.0,-415175.0,-426757.0,-436902.0,-445303.0,-451666.0,-455703.0,-457351.0,-456656.0,-453765.0,-448994.0,-442759.0,-435490.0,-427493.0,-418964.0,-410163.0,-401274.0,-392337.0,-383355.0,-374414.0,-365704.0,-357283.0,-349168.0,-341440.0,-334109.0,-327165.0,-320517.0,-314124.0,-307939.0,-301891.0,-296039.0,-290371.0,-284892.0,-279518.0,-274157.0,-268746.0,-263311.0,-257887.0,-252514.0,-247229.0,-242079.0,-237125.0,-232261.0,-227423.0,-222541.0,-217517.0,-212143.0,-206011.0,-198480.0,-188669.0,-175251.0,-156825.0,-132202.0,-100876.0,-63255.0,-20625.0,24828.0,70527.0,114055.0,153535.0,187935.0,217045.0,241365.0,261806.0,279315.0,294805.0,308928.0,322098.0,334528.0,346365.0,357676.0,368537.0,379076.0,389538.0,400127.0,410962.0,422307.0,434587.0,448411.0,464436.0,483300.0,505425.0,530594.0,557768.0,585246.0,610904.0,632623.0,648675.0,658189.0,661304.0,658762.0,651710.0,641400.0,628966.0,615079.0,599962.0,583708.0,566403.0,548188.0,529311.0,510211.0,491476.0,473737.0,457568.0,443390.0,431438.0,421916.0,415076.0,411189.0,410598.0,413822.0,421649.0,434964.0,454764.0,482205.0,518541.0,565040.0,622802.0,692861.0,775932.0,872428.0,982352.0,1105252.0,1240146.0,1385505.0,1539387.0,1699410.0,1862731.0,2026190.0,2186500.0,2340303.0,2484184.0,2614860.0,2729434.0,2825484.0,2901048.0,2954765.0,2986004.0,2994785.0,2981652.0,2947656.0,2894442.0,2824082.0,2738885.0,2641299.0,2533872.0,2419142.0,2299534.0,2177347.0,2054770.0,1933774.0,1816108.0,1703172.0,1596011.0,1495347.0,1401637.0,1315124.0,1235766.0,1163368.0,1097709.0,1038411.0,985032.0,937096.0,894232.0,856009.0,821849.0,791257.0,763775.0,739010.0,716504.0,695906.0,676991.0,659580.0,643513.0,628558.0,614543.0,601318.0,588801.0,576836.0,565263.0,553982.0,542910.0,532044.0,521322.0,510799.0,500480.0,490369.0,480440.0,470630.0,460910.0,451132.0,441158.0,430891.0,420398.0,409741.0,398872.0,387812.0,376607.0,365302.0,353810.0,342023.0,329944.0,317622.0,305142.0,292581.0,280050.0,267676.0,255580.0,243801.0,232353.0,221263.0,210561.0,200257.0,190346.0,180832.0,171826.0,163374.0,155427.0,147971.0,141017.0,134597.0,128540.0,122749.0,117236.0,111996.0,106956.0,102099.0,97502.0,93155.0,88980.0,84920.0,81030.0,77213.0,73351.0,69337.0,65165.0,60860.0,56401.0,51845.0,47212.0,42601.0,38018.0,33526.0,29108.0,24725.0,20321.0,15918.0,11606.0,7355.0,3176.0,-898.0,-4733.0,-8361.0,-11871.0,-15299.0,-18619.0,-21779.0,-24782.0,-27599.0,-30201.0,-32570.0,-34729.0,-36760.0,-38698.0,-40482.0,-42079.0,-43516.0,-44885.0,-46224.0,-47537.0,-48869.0,-50188.0,-51493.0,-52676.0,-53668.0,-54430.0,-55064.0,-55712.0,-56353.0,-56949.0,-57459.0,-57969.0,-58442.0,-58797.0,-59039.0,-59228.0,-59393.0,-59454.0,-59373.0,-59189.0,-58946.0,-58683.0,-58408.0,-58133.0,-57853.0,-57579.0,-57318.0,-57029.0,-56685.0,-56348.0,-56087.0,-55905.0,-55734.0,-55602.0,-55557.0,-55560.0,-55520.0,-55429.0,-55337.0,-55211.0,-55042.0,-54865.0,-54722.0,-54558.0,-54336.0,-54061.0,-53736.0,-53330.0,-52861.0,-52382.0,-51907.0,-51423.0,-50932.0,-50481.0,-50087.0,-49741.0,-49434.0,-49183.0,-49019.0,-48917.0,-48858.0,-48840.0,-48891.0,-49030.0,-49234.0,-49435.0,-49609.0,-49770.0,-49976.0,-50207.0,-50374.0,-50473.0,-50475.0,-50362.0,-50062.0,-49507.0,-48649.0,-47423.0,-45832.0,-43880.0,-41577.0,-38937.0,-36042.0,-32982.0,-29846.0,-26641.0,-23341.0,-19945.0,-16548.0,-13221.0,-9932.0,-6689.0,-3557.0,-697.0,1915.0,4320.0,6528.0,8493.0,10186.0,11694.0,12988.0,14038.0,14824.0,15421.0,15863.0,16098.0,16135.0,15964.0,15609.0,15054.0,14339.0,13510.0,12583.0,11539.0,10316.0,8874.0,7258.0,5562.0,3835.0,2087.0,310.0,-1468.0,-3281.0,-5172.0,-7193.0,-9301.0,-11421.0,-13519.0,-15613.0,-17777.0,-20034.0,-22346.0,-24648.0,-26908.0,-29173.0,-31462.0,-33668.0,-35790.0,-37886.0,-39994.0,-42065.0,-44039.0,-45996.0,-47955.0,-49897.0,-51863.0,-53839.0,-55789.0,-57656.0,-59454.0,-61212.0,-62897.0,-64474.0,-65971.0,-67407.0,-68819.0,-70226.0,-71621.0,-73091.0,-74659.0,-76317.0,-77941.0,-79419.0,-80724.0,-81842.0,-82834.0,-83780.0,-84753.0,-85774.0,-86855.0,-88004.0,-89148.0,-90175.0,-91042.0,-91804.0,-92480.0,-93012.0,-93389.0,-93682.0,-93981.0,-94240.0,-94353.0,-94331.0,-94246.0,-94135.0,-93940.0,-93663.0,-93435.0,-93313.0,-93205.0,-93084.0,-93001.0,-93028.0,-93093.0,-93127.0,-93229.0,-93450.0,-93771.0,-94153.0,-94661.0,-95383.0,-96278.0,-97268.0,-98336.0,-99517.0,-100823.0,-102209.0,-103635.0,-105125.0,-106761.0,-108556.0,-110487.0,-112523.0,-114696.0,-116950.0,-119151.0,-121250.0,-123258.0,-125222.0,-127101.0,-128910.0,-130714.0,-132536.0,-134354.0,-136083.0,-137729.0,-139318.0,-140883.0,-142391.0,-143809.0,-145142.0,-146410.0,-147606.0,-148696.0,-149683.0,-150558.0,-151348.0,-152073.0,-152764.0,-153389.0,-153876.0,-154224.0,-154516.0,-154808.0,-155057.0,-155277.0,-155531.0,-155923.0,-156377.0,-156795.0,-157126.0,-157356.0,-157515.0,-157547.0,-157460.0,-157274.0,-157072.0,-156860.0,-156625.0,-156377.0,-156168.0,-156066.0,-156015.0,-155988.0,-155935.0,-155859.0,-155754.0,-155572.0,-155338.0,-155089.0,-154880.0,-154735.0,-154687.0,-154746.0,-154888.0,-155072.0,-155308.0,-155626.0,-155939.0,-156253.0,-156600.0,-157061.0,-157635.0,-158209.0,-158811.0,-159455.0,-160147.0,-160868.0,-161612.0,-162439.0,-163304.0,-164135.0,-164965.0,-165818.0,-166679.0,-167528.0,-168410.0,-169374.0,-170353.0,-171317.0,-172280.0,-173269.0,-174221.0,-175070.0,-175828.0,-176527.0,-177175.0,-177783.0,-178396.0,-179065.0,-179727.0,-180340.0,-180924.0,-181470.0,-181972.0,-182433.0,-182948.0,-183497.0,-183986.0,-184401.0,-184790.0,-185166.0,-185520.0,-185872.0,-186273.0,-186650.0,-186936.0,-187137.0,-187288.0,-187422.0,-187552.0,-187772.0,-188076.0,-188432.0,-188757.0,-189041.0,-189302.0,-189533.0,-189748.0,-189889.0,-190011.0,-190148.0,-190332.0,-190545.0,-190785.0,-191091.0,-191413.0,-191693.0,-191906.0,-192099.0,-192304.0,-192528.0,-192731.0,-192924.0,-193161.0,-193487.0,-193869.0,-194204.0,-194487.0,-194757.0,-195011.0,-195185.0,-195255.0,-195329.0,-195478.0,-195668.0,-195829.0,-195976.0,-196115.0,-196267.0,-196418.0,-196579.0,-196727.0,-196799.0,-196837.0,-196855.0,-196866.0,-196849.0,-196830.0,-196852.0,-196890.0,-196899.0,-196914.0,-196960.0,-196997.0,-196968.0,-196866.0,-196768.0,-196644.0,-196485.0,-196315.0,-196180.0,-196123.0,-196116.0,-196170.0,-196281.0,-196451.0,-196622.0,-196777.0,-196930.0,-197096.0,-197255.0,-197384.0,-197574.0,-197862.0,-198259.0,-198726.0,-199231.0,-199762.0,-200303.0,-200859.0,-201405.0,-201933.0,-202472.0,-203052.0,-203679.0,-204315.0,-204958.0,-205619.0,-206286.0,-206895.0,-207423.0,-207873.0,-208204.0,-208411.0,-208543.0,-208734.0,-208971.0,-209265.0,-209568.0,-209856.0,-210069.0,-210199.0,-210277.0,-210232.0,-210078.0,-209812.0,-209502.0,-209059.0,-208416.0,-207625.0,-206758.0,-205828.0,-204726.0,-203465.0,-202108.0,-200628.0,-198928.0,-196980.0,-194861.0,-192547.0,-189978.0,-187165.0,-184142.0,-180911.0,-177379.0,-173517.0,-169301.0,-164685.0,-159705.0,-154443.0,-148980.0,-143261.0,-137184.0,-130744.0,-123959.0,-116796.0,-109212.0,-101289.0,-93116.0,-84676.0,-75854.0,-66611.0,-57050.0,-47249.0,-37211.0,-26942.0,-16536.0,-6109.0,4379.0,14968.0,25606.0,36201.0,46769.0,57353.0,67898.0,78324.0,88557.0,98523.0,108098.0,117239.0,125988.0,134419.0,142499.0,150189.0,157453.0,164281.0,170643.0,176409.0,181556.0,186082.0,190055.0,193521.0,196454.0,198851.0,200621.0,201697.0,202074.0,201779.0,200839.0,199298.0,197264.0,194836.0,191931.0,188435.0,184381.0,179879.0,174988.0,169720.0,164181.0,158441.0,152438.0,146088.0,139444.0,132622.0,125678.0,118577.0,111314.0,103912.0,96404.0,88810.0,81099.0,73371.0,65686.0,58058.0,50414.0,42745.0,35138.0,27576.0,20066.0,12604.0,5238.0,-1999.0,-9090.0,-15985.0,-22700.0,-29252.0,-35685.0,-42081.0,-48465.0,-54807.0,-61067.0,-67202.0,-73145.0,-78800.0,-84235.0,-89609.0,-94891.0,-100002.0,-104869.0,-109547.0,-114038.0,-118301.0,-122414.0,-126445.0,-130440.0,-134375.0,-138203.0,-141892.0,-145429.0,-148821.0,-152027.0,-155066.0,-157944.0,-160719.0,-163343.0,-165807.0,-168230.0,-170670.0,-173098.0,-175383.0,-177521.0,-179559.0,-181486.0,-183290.0,-185016.0,-186696.0,-188313.0,-189825.0,-191308.0,-192809.0,-194297.0,-195741.0,-197180.0,-198585.0,-199868.0,-200950.0,-201893.0,-202767.0,-203593.0,-204428.0,-205271.0,-206143.0,-206984.0,-207800.0,-208610.0,-209445.0,-210306.0,-211147.0,-211970.0,-212764.0,-213517.0,-214170.0,-214717.0,-215207.0,-215676.0,-216157.0,-216639.0,-217102.0,-217537.0,-217935.0,-218334.0,-218706.0,-219041.0,-219347.0,-219654.0,-219960.0,-220216.0,-220392.0,-220480.0,-220516.0,-220502.0,-220468.0,-220418.0,-220360.0,-220288.0,-220171.0,-219977.0,-219678.0,-219259.0,-218725.0,-218096.0,-217353.0,-216510.0,-215589.0,-214626.0,-213624.0,-212531.0,-211332.0,-210027.0,-208616.0,-207019.0,-205188.0,-203139.0,-200968.0,-198698.0,-196304.0,-193847.0,-191363.0,-188822.0,-186075.0,-183036.0,-179749.0,-176258.0,-172619.0,-168881.0,-165101.0,-161342.0,-157595.0,-153832.0,-149984.0,-145992.0,-141836.0,-137563.0,-133190.0,-128733.0,-124233.0,-119739.0,-115313.0,-110903.0,-106523.0,-102171.0,-97825.0,-93531.0,-89314.0,-85211.0,-81179.0,-77229.0,-73459.0,-69949.0,-66697.0,-63674.0,-60878.0,-58286.0,-55814.0,-53422.0,-51171.0,-49140.0,-47358.0,-45870.0,-44700.0,-43809.0,-43145.0,-42709.0,-42523.0,-42524.0,-42768.0,-43292.0,-44123.0,-45212.0,-46523.0,-48099.0,-49905.0,-51944.0,-54193.0,-56631.0,-59267.0,-62057.0,-65005.0,-68090.0,-71330.0,-74761.0,-78336.0,-82064.0,-85909.0,-89894.0,-93953.0,-98040.0,-102196.0,-106434.0,-110732.0,-114967.0,-119149.0,-123307.0,-127409.0,-131424.0,-135350.0,-139325.0,-143392.0,-147479.0,-151494.0,-155429.0,-159299.0,-163047.0,-166615.0,-170069.0,-173530.0,-177005.0,-180437.0,-183778.0,-187001.0,-190088.0,-193011.0,-195804.0,-198559.0,-201279.0,-203967.0,-206580.0,-209126.0,-211591.0,-213949.0,-216214.0,-218399.0,-220524.0,-222617.0,-224727.0,-226812.0,-228792.0,-230661.0,-232445.0,-234190.0,-235851.0,-237466.0,-239064.0,-240634.0,-242165.0,-243633.0,-245032.0,-246342.0,-247568.0,-248761.0,-249923.0,-251014.0,-251972.0,-252828.0,-253698.0,-254597.0,-255503.0,-256291.0,-257019.0,-257727.0,-258423.0,-259057.0,-259632.0,-260255.0,-260914.0,-261494.0,-261991.0,-262511.0,-263080.0,-263633.0,-264111.0,-264614.0,-265120.0,-265549.0,-265914.0,-266255.0,-266683.0,-267133.0,-267504.0,-267770.0,-267942.0,-268110.0,-268250.0,-268421.0,-268689.0,-269005.0,-269278.0,-269439.0,-269511.0,-269507.0,-269461.0,-269469.0,-269628.0,-269956.0,-270406.0,-270860.0,-271304.0,-271757.0,-272212.0,-272624.0,-272922.0,-273199.0,-273499.0,-273827.0,-274143.0,-274457.0,-274857.0,-275329.0,-275833.0,-276304.0,-276770.0,-277251.0,-277722.0,-278181.0,-278643.0,-279166.0,-279732.0,-280274.0,-280789.0,-281301.0,-281851.0,-282358.0,-282788.0,-283204.0,-283650.0,-284085.0,-284461.0,-284833.0,-285290.0,-285810.0,-286347.0,-286846.0,-287284.0,-287643.0,-287910.0,-288111.0,-288270.0,-288411.0,-288496.0,-288520.0,-288480.0,-288380.0,-288152.0,-287773.0,-287319.0,-286827.0,-286311.0,-285770.0,-285230.0,-284686.0,-284088.0,-283410.0,-282646.0,-281767.0,-280803.0,-279792.0,-278751.0,-277662.0,-276517.0,-275297.0,-273960.0,-272506.0,-270950.0,-269282.0,-267452.0,-265483.0,-263497.0,-261534.0,-259551.0,-257523.0,-255502.0,-253535.0,-251501.0,-249337.0,-247067.0,-244769.0,-242432.0,-239970.0,-237395.0,-234769.0,-232103.0,-229308.0,-226353.0,-223334.0,-220395.0,-217539.0,-214732.0,-211943.0,-209133.0,-206294.0,-203383.0,-200406.0,-197368.0,-194329.0,-191385.0,-188526.0,-185652.0,-182715.0,-179728.0,-176715.0,-173672.0,-170633.0,-167719.0,-164963.0,-162397.0,-160015.0,-157789.0,-155617.0,-153450.0,-151323.0,-149227.0,-147192.0,-145249.0,-143496.0,-141914.0,-140497.0,-139282.0,-138207.0,-137239.0,-136345.0,-135567.0,-134904.0,-134353.0,-133977.0,-133806.0,-133858.0,-134117.0,-134545.0,-135132.0,-135908.0,-136881.0,-138037.0,-139349.0,-140826.0,-142407.0,-144027.0,-145681.0,-147464.0,-149450.0,-151617.0,-153895.0,-156285.0,-158834.0,-161526.0,-164261.0,-167034.0,-169962.0,-173056.0,-176240.0,-179382.0,-182538.0,-185719.0,-188912.0,-192129.0,-195415.0,-198785.0,-202180.0,-205574.0,-208957.0,-212326.0,-215598.0,-218771.0,-221862.0,-224922.0,-227925.0,-230814.0,-233621.0,-236387.0,-239128.0,-241806.0,-244418.0,-246939.0,-249389.0,-251755.0,-254035.0,-256192.0,-258223.0,-260243.0,-262277.0,-264292.0,-266257.0,-268196.0,-270114.0,-271925.0,-273549.0,-275005.0,-276357.0,-277647.0,-278889.0,-280121.0,-281407.0,-282729.0,-283998.0,-285147.0,-286240.0,-287299.0,-288272.0,-289160.0,-290043.0,-291032.0,-292047.0,-293011.0,-293947.0,-294905.0,-295855.0,-296726.0,-297531.0,-298360.0,-299201.0,-300003.0,-300730.0,-301415.0,-302121.0,-302837.0,-303527.0,-304162.0,-304779.0,-305382.0,-305910.0,-306358.0,-306777.0,-307250.0,-307782.0,-308358.0,-308949.0,-309500.0,-310014.0,-310482.0,-310971.0,-311481.0,-312000.0,-312525.0,-313067.0,-313664.0,-314244.0,-314794.0,-315337.0,-315943.0,-316607.0,-317271.0,-317893.0,-318425.0,-318880.0,-319253.0,-319573.0,-319863.0,-320205.0,-320661.0,-321186.0,-321724.0,-322242.0,-322752.0,-323223.0,-323631.0,-324054.0,-324549.0,-325112.0,-325682.0,-326234.0,-326755.0,-327201.0,-327571.0,-327909.0,-328275.0,-328661.0,-329067.0,-329517.0,-330016.0,-330520.0,-330957.0,-331370.0,-331815.0,-332306.0,-332818.0,-333313.0,-333834.0,-334378.0,-334911.0,-335414.0,-335876.0,-336348.0,-336803.0,-337217.0,-337544.0,-337821.0,-338134.0,-338510.0,-338903.0,-339285.0,-339711.0,-340173.0,-340578.0,-340878.0,-341131.0,-341400.0,-341690.0,-341965.0,-342288.0,-342700.0,-343185.0,-343638.0,-343968.0,-344208.0,-344391.0,-344510.0,-344596.0,-344763.0,-345084.0,-345489.0,-345862.0,-346151.0,-346363.0,-346449.0,-346449.0,-346434.0,-346445.0,-346521.0,-346609.0,-346701.0,-346742.0,-346737.0,-346747.0,-346788.0,-346851.0,-346959.0,-347122.0,-347321.0,-347500.0,-347601.0,-347647.0,-347630.0,-347570.0,-347431.0,-347225.0,-346984.0,-346779.0,-346664.0,-346602.0,-346564.0,-346512.0,-346459.0,-346392.0,-346277.0,-346108.0,-345948.0,-345862.0,-345875.0,-345889.0,-345840.0,-345753.0,-345660.0,-345557.0,-345389.0,-345197.0,-345012.0,-344869.0,-344751.0,-344660.0,-344571.0,-344462.0,-344373.0,-344245.0,-344048.0,-343740.0,-343452.0,-343265.0,-343142.0,-343088.0,-343071.0,-343094.0,-343101.0,-343063.0,-343008.0,-342940.0,-342856.0,-342762.0,-342602.0,-342394.0,-342171.0,-341941.0,-341765.0,-341619.0,-341540.0,-341457.0,-341353.0,-341279.0,-341226.0,-341233.0,-341229.0,-341207.0,-341107.0,-340886.0,-340545.0,-340043.0,-339442.0,-338779.0,-338085.0,-337332.0,-336488.0,-335589.0,-334604.0,-333520.0,-332328.0,-331064.0,-329739.0,-328342.0,-326911.0,-325434.0,-323877.0,-322207.0,-320448.0,-318598.0,-316612.0,-314490.0,-312243.0,-309855.0,-307287.0,-304558.0,-301723.0,-298828.0,-295911.0,-292941.0,-289893.0,-286731.0,-283452.0,-280066.0,-276574.0,-273009.0,-269428.0,-265872.0,-262331.0,-258724.0,-255058.0,-251325.0,-247520.0,-243616.0,-239636.0,-235691.0,-231797.0,-227997.0,-224294.0,-220674.0,-217100.0,-213504.0,-209867.0,-206185.0,-202436.0,-198670.0,-194933.0,-191322.0,-187907.0,-184712.0,-181735.0,-178880.0,-176120.0,-173402.0,-170719.0,-168068.0,-165479.0,-163076.0,-160932.0,-159064.0,-157436.0,-155986.0,-154717.0,-153617.0,-152621.0,-151673.0,-150739.0,-149917.0,-149295.0,-148880.0,-148713.0,-148843.0,-149273.0,-149899.0,-150629.0,-151468.0,-152406.0,-153421.0,-154508.0,-155770.0,-157189.0,-158774.0,-160544.0,-162531.0,-164696.0,-166964.0,-169323.0,-171774.0,-174311.0,-176988.0,-179881.0,-182964.0,-186214.0,-189559.0,-192964.0,-196358.0,-199727.0,-203098.0,-206515.0,-209994.0,-213494.0,-216995.0,-220498.0,-224059.0,-227668.0,-231284.0,-234908.0,-238548.0,-242173.0,-245739.0,-249244.0,-252699.0,-256103.0,-259464.0,-262834.0,-266194.0,-269480.0,-272685.0,-275808.0,-278827.0,-281728.0,-284559.0,-287368.0,-290130.0,-292806.0,-295402.0,-297917.0,-300335.0,-302650.0,-304895.0,-307109.0,-309284.0,-311399.0,-313425.0,-315397.0,-317305.0,-319147.0,-320876.0,-322458.0,-323929.0,-325297.0,-326647.0,-328000.0,-329384.0,-330807.0,-332232.0,-333638.0,-334969.0,-336217.0,-337415.0,-338557.0,-339619.0,-340555.0,-341350.0,-342063.0,-342732.0,-343407.0,-344105.0,-344860.0,-345693.0,-346488.0,-347159.0,-347698.0,-348205.0,-348690.0,-349127.0,-349541.0,-350039.0,-350668.0,-351311.0,-351911.0,-352417.0,-352850.0,-353162.0,-353328.0,-353460.0,-353642.0,-353917.0,-354282.0,-354683.0,-355138.0,-355573.0,-355965.0,-356360.0,-356783.0,-357275.0,-357751.0,-358141.0,-358444.0,-358666.0,-358873.0,-359014.0,-359111.0,-359249.0,-359493.0,-359831.0,-360109.0,-360383.0,-360751.0,-361224.0,-361675.0,-362043.0,-362425.0,-362816.0,-363120.0,-363337.0,-363549.0,-363812.0,-364089.0,-364360.0,-364619.0,-364816.0,-364994.0,-365192.0,-365428.0,-365673.0,-365948.0,-366286.0,-366621.0,-366905.0,-367148.0,-367386.0,-367587.0,-367758.0,-367993.0,-368293.0,-368617.0,-368892.0,-369151.0,-369393.0,-369542.0,-369591.0,-369624.0,-369744.0,-369986.0,-370283.0,-370606.0,-370935.0,-371192.0,-371347.0,-371371.0,-371339.0,-371296.0,-371289.0,-371387.0,-371602.0,-371913.0,-372270.0,-372625.0,-372944.0,-373165.0,-373301.0,-373393.0,-373477.0,-373547.0,-373601.0,-373677.0,-373770.0,-373866.0,-373973.0,-374087.0,-374239.0,-374459.0,-374728.0,-375009.0,-375243.0,-375466.0,-375689.0,-375885.0,-376072.0,-376268.0,-376470.0,-376675.0,-376838.0,-376893.0,-376817.0,-376733.0,-376750.0,-376821.0,-376841.0,-376826.0,-376881.0,-376978.0,-377110.0,-377277.0,-377512.0,-377821.0,-378114.0,-378332.0,-378446.0,-378512.0,-378603.0,-378738.0,-378917.0,-379108.0,-379265.0,-379404.0,-379537.0,-379691.0,-379811.0,-379882.0,-379923.0,-379930.0,-379971.0,-380012.0,-380099.0,-380238.0,-380436.0,-380698.0,-380906.0,-381098.0,-381267.0,-381423.0,-381533.0,-381542.0,-381499.0,-381411.0,-381293.0,-381184.0,-381125.0,-381139.0,-381162.0,-381156.0,-381162.0,-381190.0,-381224.0,-381242.0,-381305.0,-381446.0,-381607.0,-381706.0,-381754.0,-381842.0,-382006.0,-382195.0,-382403.0,-382662.0,-382945.0,-383150.0,-383193.0,-383150.0,-383074.0,-382999.0,-382946.0,-382969.0,-383153.0,-383393.0,-383638.0,-383821.0,-383968.0,-384097.0,-384197.0,-384341.0,-384503.0,-384693.0,-384916.0,-385154.0,-385372.0,-385556.0,-385756.0,-385997.0,-386227.0,-386439.0,-386649.0,-386843.0,-387016.0,-387179.0,-387374.0,-387572.0,-387772.0,-388021.0,-388298.0,-388579.0,-388857.0,-389129.0,-389386.0,-389597.0,-389833.0,-390096.0,-390400.0,-390749.0,-391112.0,-391454.0,-391748.0,-391996.0,-392148.0,-392225.0,-392345.0,-392601.0,-392953.0,-393377.0,-393913.0,-394531.0,-395126.0,-395585.0,-395901.0,-396132.0,-396295.0,-396497.0,-396755.0,-397097.0,-397523.0,-398007.0,-398539.0,-399029.0,-399465.0,-399861.0,-400262.0,-400681.0,-401091.0,-401477.0,-401862.0,-402276.0,-402652.0,-402979.0,-403295.0,-403672.0,-404109.0,-404561.0,-405063.0,-405606.0,-406140.0,-406608.0,-407000.0,-407371.0,-407738.0,-408100.0,-408484.0,-408888.0,-409292.0,-409641.0,-409925.0,-410193.0,-410446.0,-410738.0,-411109.0,-411557.0,-412013.0,-412401.0,-412761.0,-413076.0,-413323.0,-413491.0,-413685.0,-413985.0,-414320.0,-414620.0,-414841.0,-415070.0,-415298.0,-415476.0,-415630.0,-415791.0,-416011.0,-416242.0,-416514.0,-416835.0,-417151.0,-417440.0,-417718.0,-417996.0,-418247.0,-418472.0,-418690.0,-418891.0,-419068.0,-419234.0,-419371.0,-419447.0,-419521.0,-419644.0,-419808.0,-419958.0,-420058.0,-420153.0,-420192.0,-420187.0,-420143.0,-420094.0,-420082.0,-420108.0,-420219.0,-420381.0,-420559.0,-420720.0,-420869.0,-421013.0,-421116.0,-421209.0,-421331.0,-421510.0,-421683.0,-421827.0,-421983.0,-422115.0,-422190.0,-422247.0,-422339.0,-422444.0,-422531.0,-422650.0,-422817.0,-422984.0,-423161.0,-423372.0,-423614.0,-423860.0,-424087.0,-424249.0,-424306.0,-424300.0,-424308.0,-424378.0,-424516.0,-424746.0,-425041.0,-425368.0,-425678.0,-425911.0,-426104.0,-426312.0,-426595.0,-426894.0,-427127.0,-427331.0,-427527.0,-427713.0,-427845.0,-427964.0,-428134.0,-428356.0,-428626.0,-428914.0,-429218.0,-429563.0,-429928.0,-430246.0,-430436.0,-430522.0,-430587.0,-430666.0,-430753.0,-430882.0,-431083.0,-431364.0,-431646.0,-431821.0,-431906.0,-431977.0,-432067.0,-432148.0,-432219.0,-432357.0,-432568.0,-432817.0,-433101.0,-433394.0,-433647.0,-433843.0,-434014.0,-434159.0,-434256.0,-434288.0,-434321.0,-434383.0,-434472.0,-434570.0,-434690.0,-434874.0,-435084.0,-435227.0,-435259.0,-435230.0,-435200.0,-435164.0,-435141.0,-435158.0,-435200.0,-435215.0,-435163.0,-435059.0,-434918.0,-434795.0,-434719.0,-434673.0,-434595.0,-434480.0,-434367.0,-434249.0,-434109.0,-433952.0,-433810.0,-433680.0,-433546.0,-433391.0,-433203.0,-432991.0,-432798.0,-432655.0,-432496.0,-432309.0,-432145.0,-432048.0,-431954.0,-431843.0,-431720.0,-431569.0,-431357.0,-431047.0,-430714.0,-430353.0,-430006.0,-429662.0,-429311.0,-429000.0,-428735.0,-428471.0,-428145.0,-427799.0,-427490.0,-427178.0,-426776.0,-426338.0,-425920.0,-425486.0,-424947.0,-424284.0,-423597.0,-422898.0,-422204.0,-421470.0,-420724.0,-419983.0,-419210.0,-418341.0,-417282.0,-416147.0,-414980.0,-413757.0,-412367.0,-410892.0,-409836.0,-409875.0,-411614.0,-415104.0,-419945.0,-425352.0,-430287.0,-433644.0,-434665.0,-433316.0,-430146.0,-425936.0,-421316.0,-416706.0,-412298.0,-408242.0,-404539.0,-401159.0,-398042.0,-395193.0,-392585.0,-390051.0,-387586.0,-385249.0,-383182.0,-381429.0,-380057.0,-379203.0,-378921.0,-379179.0,-379944.0,-381242.0,-383023.0,-385073.0,-387212.0,-389386.0,-391572.0,-393652.0,-395540.0,-397283.0,-398953.0,-400563.0,-402092.0,-403524.0,-404904.0,-406287.0,-407624.0,-408893.0,-410019.0,-411075.0,-412065.0,-412963.0,-413793.0,-414573.0,-415378.0,-416145.0,-416846.0,-417493.0,-418111.0,-418651.0,-419093.0,-419516.0,-419993.0,-420542.0,-421087.0,-421604.0,-422054.0,-422432.0,-422746.0,-423005.0,-423205.0,-423352.0,-423443.0,-423427.0,-423298.0,-423100.0,-422970.0,-422944.0,-422999.0,-423128.0,-423318.0,-423512.0,-423641.0,-423713.0,-423772.0,-423862.0,-423948.0,-424010.0,-424028.0,-424027.0,-424060.0,-424103.0,-424147.0,-424149.0,-424098.0,-424024.0,-423961.0,-423936.0,-423915.0,-423898.0,-423924.0,-423972.0,-423976.0,-423885.0,-423746.0,-423598.0,-423466.0,-423360.0,-423309.0,-423273.0,-423223.0,-423181.0,-423155.0,-423149.0,-423087.0,-423027.0,-422966.0,-422904.0,-422783.0,-422534.0,-422208.0,-421828.0,-421452.0,-421050.0,-420578.0,-420077.0,-419552.0,-419004.0,-418364.0,-417598.0,-416755.0,-415827.0,-414762.0,-413512.0,-412090.0,-410593.0,-408991.0,-407233.0,-405312.0,-403230.0,-401047.0,-398706.0,-396236.0,-393668.0,-391038.0,-388399.0,-385730.0,-383057.0,-380421.0,-377866.0,-375357.0,-372867.0,-370438.0,-368159.0,-366021.0,-363995.0,-362144.0,-360500.0,-358990.0,-357505.0,-356051.0,-354690.0,-353393.0,-352126.0,-350873.0,-349616.0,-348308.0,-346923.0,-345468.0,-343904.0,-342210.0,-340409.0,-338537.0,-336587.0,-334581.0,-332494.0,-330427.0,-328457.0,-326703.0,-325189.0,-323893.0,-322879.0,-322177.0,-321816.0,-321752.0,-321961.0,-322442.0,-323198.0,-324198.0,-325383.0,-326730.0,-328243.0,-329884.0,-331592.0,-333296.0,-334980.0,-336649.0,-338379.0,-340264.0,-342341.0,-344597.0,-346976.0,-349435.0,-351919.0,-354421.0,-356980.0,-359603.0,-362263.0,-364921.0,-367584.0,-370229.0,-372833.0,-375357.0,-377834.0,-380261.0,-382586.0,-384749.0,-386690.0,-388470.0,-390177.0,-391871.0,-393500.0,-395051.0,-396604.0,-398167.0,-399620.0,-400898.0,-402065.0,-403211.0,-404308.0,-405339.0,-406318.0,-407221.0,-408035.0,-408746.0,-409438.0,-410134.0,-410815.0,-411453.0,-412039.0,-412548.0,-412882.0,-413065.0,-413208.0,-413438.0,-413766.0,-414147.0,-414613.0,-415139.0,-415678.0,-416144.0,-416552.0,-416904.0,-417129.0,-417210.0,-417222.0,-417302.0,-417393.0,-417470.0,-417589.0,-417811.0,-418060.0,-418178.0,-418248.0,-418374.0,-418591.0,-418847.0,-419094.0,-419352.0,-419609.0,-419855.0,-420086.0,-420249.0,-420388.0,-420588.0,-420841.0,-421076.0,-421205.0,-421319.0,-421451.0,-421539.0,-421572.0,-421595.0,-421692.0,-421814.0,-421925.0,-422032.0,-422138.0,-422229.0,-422279.0,-422310.0,-422332.0,-422334.0,-422306.0,-422288.0,-422314.0,-422413.0,-422548.0,-422724.0,-422952.0,-423217.0,-423482.0,-423683.0,-423819.0,-423906.0,-423954.0,-423934.0,-423857.0,-423796.0,-423810.0,-423890.0,-424024.0,-424229.0,-424485.0,-424668.0,-424730.0,-424710.0,-424681.0,-424635.0,-424540.0,-424417.0,-424310.0,-424158.0,-423882.0,-423475.0,-422990.0,-422482.0,-421892.0,-421279.0,-420685.0,-420117.0,-419550.0,-418932.0,-418258.0,-417508.0,-416678.0,-415786.0,-414808.0,-413805.0,-412808.0,-411784.0,-410639.0,-409357.0,-408067.0,-406797.0,-405550.0,-404264.0,-403023.0,-401829.0,-400611.0,-399301.0,-397884.0,-396461.0,-395044.0,-393605.0,-392140.0,-390720.0,-389391.0,-388106.0,-386802.0,-385466.0,-384087.0,-382669.0,-381276.0,-379958.0,-378721.0,-377582.0,-376552.0,-375607.0,-374619.0,-373584.0,-372565.0,-371629.0,-370750.0,-369904.0,-369117.0,-368390.0,-367707.0,-367036.0,-366379.0,-365760.0,-365271.0,-364970.0,-364810.0,-364757.0,-364859.0,-365148.0,-365503.0,-365806.0,-366134.0,-366604.0,-367188.0,-367773.0,-368370.0,-369063.0,-369858.0,-370692.0,-371550.0,-372465.0,-373467.0,-374564.0,-375724.0,-376905.0,-378105.0,-379380.0,-380689.0,-381950.0,-383172.0,-384406.0,-385640.0,-386757.0,-387809.0,-388843.0,-389885.0,-390845.0,-391795.0,-392849.0,-393967.0,-395053.0,-396010.0,-396906.0,-397685.0,-398335.0,-398880.0,-399391.0,-399909.0,-400401.0,-400905.0,-401354.0,-401739.0,-402084.0,-402465.0,-402907.0,-403355.0,-403851.0,-404452.0,-405109.0,-405684.0,-406098.0,-406366.0,-406491.0,-406488.0,-406427.0,-406371.0,-406303.0,-406189.0,-406011.0,-405717.0,-405283.0,-404685.0,-403995.0,-403214.0,-402286.0,-401153.0,-399814.0,-398383.0,-396873.0,-395239.0,-393473.0,-391580.0,-389487.0,-387049.0,-384159.0,-380791.0,-376938.0,-372553.0,-367548.0,-361736.0,-354880.0,-346721.0,-336993.0,-325390.0,-311640.0,-295447.0,-276544.0,-254671.0,-229583.0,-201063.0,-168897.0,-133048.0,-93526.0,-50369.0,-3635.0,46514.0,99813.0,156005.0,214690.0,275311.0,337284.0,400090.0,463274.0,526333.0,588821.0,650418.0,710839.0,769771.0,826835.0,881694.0,934071.0,983809.0,1030795.0,1074930.0,1116101.0,1154210.0,1189224.0,1220995.0,1249338.0,1274044.0,1294962.0,1311972.0,1324915.0,1333657.0,1338094.0,1338138.0,1333744.0,1324884.0,1311530.0,1293705.0,1271448.0,1244895.0,1214381.0,1180331.0,1143168.0,1103276.0,1061125.0,1017245.0,972036.0,925896.0,879299.0,832739.0,786604.0,741279.0,697133.0,654424.0,613299.0,573896.0,536348.0,500699.0,466968.0,435185.0,405359.0,377429.0,351340.0,327038.0,304412.0,283269.0,263391.0,244644.0,226941.0,210142.0,194108.0,178774.0,164055.0,149806.0,135899.0,122289.0,108948.0,95797.0,82803.0,69973.0,57291.0,44717.0,32195.0,19724.0,7399.0,-4727.0,-16668.0,-28468.0,-40078.0,-51506.0,-62795.0,-73968.0,-84957.0,-95684.0,-106137.0,-116245.0,-126001.0,-135393.0,-144431.0,-153156.0,-161596.0,-169784.0,-177700.0,-185326.0,-192685.0,-199774.0,-206655.0,-213350.0,-219865.0,-226194.0,-232347.0,-238356.0,-244149.0,-249724.0,-255122.0,-260356.0,-265441.0,-270364.0,-275140.0,-279781.0,-284245.0,-288538.0,-292653.0,-296633.0,-300536.0,-304281.0,-307841.0,-311218.0,-314470.0,-317557.0,-320424.0,-323185.0,-325954.0,-328761.0,-331489.0,-334103.0,-336657.0,-339136.0,-341528.0,-343828.0,-346098.0,-348348.0,-350552.0,-352681.0,-354682.0,-356571.0,-358392.0,-360175.0,-361890.0,-363557.0,-365258.0,-366930.0,-368546.0,-370137.0,-371776.0,-373441.0,-375119.0,-376926.0,-378846.0,-380774.0,-382639.0,-384476.0,-386240.0,-387869.0,-389384.0,-390860.0,-392245.0,-393487.0,-394602.0,-395599.0,-396428.0,-397026.0,-397427.0,-397624.0,-397592.0,-397359.0,-396983.0,-396531.0,-395976.0,-395283.0,-394394.0,-393313.0,-392068.0,-390699.0,-389249.0,-387731.0,-386135.0,-384346.0,-382308.0,-379988.0,-377355.0,-374421.0,-371200.0,-367659.0,-363668.0,-359063.0,-353761.0,-347694.0,-340769.0,-332929.0,-324100.0,-314269.0,-303395.0,-291422.0,-278373.0,-264248.0,-249142.0,-233150.0,-216459.0,-199257.0,-181659.0,-163820.0,-145872.0,-127924.0,-110053.0,-92341.0,-74905.0,-57805.0,-41119.0,-24928.0,-9185.0,6153.0,21068.0,35522.0,49537.0,63118.0,76206.0,88832.0,101057.0,112839.0,124099.0,134830.0,145059.0,154692.0,163684.0,172023.0,179765.0,186908.0,193460.0,199491.0,205056.0,210255.0,215096.0,219603.0,223754.0,227530.0,230932.0,234016.0,236875.0,239554.0,242048.0,244315.0,246302.0,247896.0,248958.0,249376.0,249155.0,248280.0,246739.0,244450.0,241388.0,237582.0,232965.0,227479.0,221056.0,213774.0,205728.0,196867.0,187115.0,176506.0,165170.0,153173.0,140474.0,127120.0,113324.0,99170.0,84643.0,69752.0,54669.0,39566.0,24428.0,9276.0,-5800.0,-20759.0,-35606.0,-50330.0,-64800.0,-78922.0,-92618.0,-105844.0,-118599.0,-130910.0,-142815.0,-154243.0,-165188.0,-175632.0,-185590.0,-195034.0,-203902.0,-212230.0,-220008.0,-227256.0,-233979.0,-240209.0,-245999.0,-251333.0,-256292.0,-260932.0,-265282.0,-269331.0,-273118.0,-276705.0,-280112.0,-283295.0,-286211.0,-288880.0,-291324.0,-293575.0,-295661.0,-297693.0,-299734.0,-301756.0,-303738.0,-305713.0,-307657.0,-309462.0,-311052.0,-312488.0,-313841.0,-315123.0,-316371.0,-317660.0,-319018.0,-320381.0,-321693.0,-322999.0,-324263.0,-325435.0,-326474.0,-327452.0,-328391.0,-329242.0,-330020.0,-330762.0,-331552.0,-332376.0,-333214.0,-334032.0,-334809.0,-335532.0,-336136.0,-336631.0,-337061.0,-337427.0,-337677.0,-337760.0,-337761.0,-337711.0,-337628.0,-337527.0,-337468.0,-337466.0,-337468.0,-337438.0,-337342.0,-337196.0,-337008.0,-336813.0,-336603.0,-336398.0,-336205.0,-336043.0,-335941.0,-335893.0,-335939.0,-336052.0,-336282.0,-336614.0,-337016.0,-337520.0,-338149.0,-338989.0,-339986.0,-341084.0,-342291.0,-343632.0,-345129.0,-346745.0,-348503.0,-350458.0,-352600.0,-354852.0,-357161.0,-359468.0,-361775.0,-364057.0,-366372.0,-368768.0,-371247.0,-373758.0,-376234.0,-378744.0,-381294.0,-383883.0,-386458.0,-389080.0,-391753.0,-394365.0,-396852.0,-399169.0,-401351.0,-403396.0,-405359.0,-407294.0,-409195.0,-411106.0,-412970.0,-414709.0,-416272.0,-417682.0,-418970.0,-420121.0,-421198.0,-422309.0,-423487.0,-424696.0,-425900.0,-427051.0,-428130.0,-429142.0,-430104.0,-431043.0,-432041.0,-433213.0,-434571.0,-436004.0,-437396.0,-438707.0,-439921.0,-441026.0,-442034.0,-442984.0,-444011.0,-445197.0,-446488.0,-447761.0,-448973.0,-450221.0,-451480.0,-452660.0,-453744.0,-454811.0,-455904.0,-456938.0,-457868.0,-458741.0,-459622.0,-460513.0,-461417.0,-462305.0,-463138.0,-463863.0,-464484.0,-465019.0,-465473.0,-465887.0,-466338.0,-466845.0,-467344.0,-467863.0,-468391.0,-468965.0,-469522.0,-470092.0,-470699.0,-471284.0,-471839.0,-472383.0,-472999.0,-473651.0,-474326.0,-475003.0,-475717.0,-476464.0,-477238.0,-478023.0,-478784.0,-479588.0,-480413.0,-481222.0,-481998.0,-482794.0,-483666.0,-484534.0,-485382.0,-486206.0,-486971.0,-487655.0,-488252.0,-488752.0,-489141.0,-489430.0,-489676.0,-489845.0,-489866.0,-489750.0,-489491.0,-489080.0,-488455.0,-487605.0,-486551.0,-485345.0,-484016.0,-482552.0,-480972.0,-479319.0,-477606.0,-475776.0,-473820.0,-471794.0,-469737.0,-467723.0,-465879.0,-464276.0,-462866.0,-461622.0,-460547.0,-459644.0,-458831.0,-458092.0,-457518.0,-457131.0,-456991.0,-457081.0,-457361.0,-457722.0,-458065.0,-458447.0,-458847.0,-459164.0,-459296.0,-459247.0,-459053.0,-458554.0,-457593.0,-456143.0,-454202.0,-451706.0,-448523.0,-444624.0,-439992.0,-434558.0,-428409.0,-421617.0,-414266.0,-406376.0,-398013.0,-389362.0,-380475.0,-371441.0,-362313.0,-353228.0,-344289.0,-335508.0,-326886.0,-318442.0,-310206.0,-302136.0,-294209.0,-286368.0,-278540.0,-270627.0,-262622.0,-254584.0,-246493.0,-238309.0,-230069.0,-221880.0,-213804.0,-205788.0,-197819.0,-190020.0,-182565.0,-175522.0,-168937.0,-162912.0,-157558.0,-152860.0,-148752.0,-145267.0,-142365.0,-139961.0,-137873.0,-135995.0,-134151.0,-132106.0,-129643.0,-126547.0,-122642.0,-117628.0,-111216.0,-103029.0,-92686.0,-79699.0,-63537.0,-43711.0,-19656.0,9233.0,43712.0,84490.0,132248.0,187631.0,251268.0,323732.0,405444.0,496684.0,597620.0,708293.0,828587.0,958198.0,1096564.0,1242901.0,1396227.0,1555539.0,1719638.0,1887143.0,2056639.0,2226797.0,2396365.0,2564019.0,2728513.0,2888698.0,3043519.0,3191979.0,3333205.0,3466481.0,3591241.0,3707071.0,3813653.0,3910790.0,3998317.0,4076103.0,4143966.0,4201706.0,4249204.0,4286398.0,4313123.0,4329143.0,4334269.0,4328374.0,4311283.0,4282730.0,4242584.0,4190853.0,4127682.0,4053365.0,3968251.0,3872816.0,3767654.0,3653512.0,3531233.0,3401660.0,3265857.0,3125017.0,2980436.0,2833413.0,2685318.0,2537526.0,2391258.0,2247654.0,2107693.0,1972286.0,1842134.0,1717789.0,1599712.0,1488253.0,1383748.0,1286294.0,1195874.0,1112380.0,1035650.0,965409.0,901229.0,842719.0,789461.0,741054.0,697109.0,657256.0,621165.0,588407.0,558550.0,531168.0,505887.0,482437.0,460507.0,439844.0,420186.0,401409.0,383381.0,365880.0,348680.0,331665.0,314819.0,298026.0,281081.0,263899.0,246496.0,228910.0,211121.0,193150.0,175037.0,156748.0,138273.0,119599.0,100764.0,81753.0,62637.0,43518.0,24501.0,5619.0,-13106.0,-31614.0,-49801.0,-67660.0,-85199.0,-102423.0,-119258.0,-135663.0,-151648.0,-167107.0,-181987.0,-196240.0,-209904.0,-222985.0,-235477.0,-247413.0,-258842.0,-269759.0,-280124.0,-289868.0,-299028.0,-307628.0,-315665.0,-323122.0,-330015.0,-336428.0,-342395.0,-347918.0,-352940.0,-357428.0,-361373.0,-364839.0,-367883.0,-370552.0,-372876.0,-374895.0,-376676.0,-378189.0,-379355.0,-380169.0,-380680.0,-380952.0,-380969.0,-380743.0,-380392.0,-379967.0,-379495.0,-378960.0,-378381.0,-377720.0,-376874.0,-375784.0,-374528.0,-373206.0,-371867.0,-370542.0,-369283.0,-368143.0,-367073.0,-366057.0,-365103.0,-364243.0,-363465.0,-362721.0,-361957.0,-361163.0,-360311.0,-359362.0,-358256.0,-357014.0,-355688.0,-354220.0,-352505.0,-350464.0,-348088.0,-345288.0,-341946.0,-337945.0,-333207.0,-327611.0,-321002.0,-313216.0,-304029.0,-293221.0,-280558.0,-265812.0,-248612.0,-228571.0,-205273.0,-178280.0,-147005.0,-110844.0,-69185.0,-21416.0,33176.0,95480.0,166423.0,246950.0,337969.0,440490.0,555476.0,683768.0,826162.0,983580.0,1156873.0,1346862.0,1554292.0,1779849.0,2023976.0,2286713.0,2567899.0,2867116.0,3183732.0,3516914.0,3865662.0,4228936.0,4605534.0,4994121.0,5393152.0,5800817.0,6215071.0,6633771.0,7054717.0,7475742.0,7894739.0,8309810.0,8719327.0,9121815.0,9515982.0,9900564.0,10274392.0,10636312.0,10985249.0,11320263.0,11640546.0,11945500.0,12234582.0,12507397.0,12763613.0,13002865.0,13224699.0,13428564.0,13614005.0,13780519.0,13927460.0,14054154.0,14159990.0,14244392.0,14306703.0,14346302.0,14362748.0,14355689.0,14324845.0,14270066.0,14191432.0,14089206.0,13963858.0,13816008.0,13646495.0,13456335.0,13246643.0,13018629.0,12773726.0,12513660.0,12240337.0,11955672.0,11661700.0,11360587.0,11054440.0,10745300.0,10434995.0,10125310.0,9817834.0,9514021.0,9215254.0,8922828.0,8637946.0,8361653.0,8094852.0,7838320.0,7592551.0,7357705.0,7133804.0,6920874.0,6718932.0,6527752.0,6347080.0,6176664.0,6016282.0,5865487.0,5723686.0,5590390.0,5465100.0,5347269.0,5236217.0,5131422.0,5032522.0,4939135.0,4850842.0,4767240.0,4688022.0,4612882.0,4541478.0,4473409.0,4408302.0,4345853.0,4285863.0,4228157.0,4172505.0,4118769.0,4066858.0,4016676.0,3967996.0,3920550.0,3874227.0,3828932.0,3784517.0,3740830.0,3697813.0,3655453.0,3613707.0,3572515.0,3531830.0,3491629.0,3451901.0,3412610.0,3373588.0,3334707.0,3295908.0,3257199.0,3218540.0,3179898.0,3141344.0,3102840.0,3064398.0,3025940.0,2987369.0,2948608.0,2909516.0,2870138.0,2830388.0,2790176.0,2749445.0,2708134.0,2666264.0,2623774.0,2580624.0,2536819.0,2492347.0,2447199.0,2401302.0,2354653.0,2307335.0,2259394.0,2210839.0,2161741.0,2112209.0,2062301.0,2012033.0,1961536.0,1911015.0,1860558.0,1810224.0,1760065.0,1710244.0,1660874.0,1612086.0,1563968.0,1516580.0,1470010.0,1424274.0,1379371.0,1335318.0,1292199.0,1250114.0,1209118.0,1169272.0,1130632.0,1093137.0,1056750.0,1021477.0,987356.0,954349.0,922436.0,891635.0,861913.0,833187.0,805369.0,778443.0,752385.0,727170.0,702801.0,679256.0,656455.0,634299.0,612735.0,591675.0,571051.0,550834.0,531078.0,511819.0,492979.0,474542.0,456425.0,438578.0,420927.0,403456.0,386162.0,369052.0,352169.0,335564.0,319237.0,303185.0,287416.0,271897.0,256597.0,241460.0,226491.0,211682.0,197012.0,182494.0,168191.0,154200.0,140544.0,127142.0,113971.0,101066.0,88450.0,76054.0,63846.0,51922.0,40338.0,29055.0,18015.0,7249.0,-3170.0,-13266.0,-23097.0,-32642.0,-41781.0,-50430.0,-58609.0,-66359.0,-73641.0,-80421.0,-86702.0,-92467.0,-97706.0,-102385.0,-106461.0,-109883.0,-112558.0,-114385.0,-115177.0,-114779.0,-113097.0,-110047.0,-105591.0,-99752.0,-92587.0,-84079.0,-74114.0,-62648.0,-49707.0,-35400.0,-19761.0,-2824.0,15324.0,34523.0,54613.0,75555.0,97217.0,119426.0,141913.0,164506.0,186988.0,209127.0,230776.0,251760.0,271956.0,291221.0,309434.0,326488.0,342214.0,356587.0,369560.0,381013.0,390829.0,398972.0,405462.0,410249.0,413276.0,414598.0,414347.0,412593.0,409399.0,404876.0,399232.0,392646.0,385248.0,377204.0,368785.0,360291.0,351982.0,344141.0,337159.0,331440.0,327326.0,325083.0,324989.0,327367.0,332522.0,340715.0,352149.0,366985.0,385362.0,407363.0,432965.0,462055.0,494505.0,530117.0,568667.0,609796.0,653107.0,698164.0,744479.0,791573.0,838881.0,885856.0,931985.0,976788.0,1019767.0,1060433.0,1098361.0,1133227.0,1164718.0,1192606.0,1216730.0,1236986.0,1253305.0,1265600.0,1273850.0,1278031.0,1278170.0,1274319.0,1266540.0,1255007.0,1239870.0,1221263.0,1199274.0,1174071.0,1145890.0,1114918.0,1081390.0,1045579.0,1007771.0,968200.0,927066.0,884637.0,841182.0,796997.0,752388.0,707682.0,663282.0,619525.0,576738.0,535212.0,495225.0,457052.0,420898.0,386988.0,355530.0,326703.0,300704.0,277664.0,257770.0,241176.0,228032.0,218468.0,212649.0,210791.0,213148.0,220066.0,232080.0,249953.0,274770.0,308175.0,352488.0,411016.0,488374.0,590959.0,727363.0,908894.0,1150365.0,1470857.0,1894612.0,2452035.0,3180844.0,4127126.0,5346121.0,6903256.0,8874518.0,11345738.0,14410534.0,18167584.0,22717556.0,28159126.0,34584704.0,42075956.0,50699348.0,60502224.0,71509984.0,83722672.0,97110848.0,111611088.0,127125520.0,143524736.0,160652880.0,178334672.0,196382848.0,214604384.0,232808256.0,250808576.0,268429232.0,285500096.0,301856352.0,317360192.0,331895456.0,345383936.0,357765696.0,369021888.0,379168768.0,388221280.0,396228896.0,403241504.0,409337600.0,414606944.0,419116352.0,422952736.0,426126080.0,428675232.0,430622592.0,431983968.0,432803648.0,433087712.0,432896896.0,432223360.0,431067552.0,429398336.0,427174848.0,424384512.0,420999648.0,417003360.0,412366560.0,407089088.0,401169440.0,394588480.0,387338336.0,379443200.0,370942144.0,361862624.0,352243552.0,342151552.0,331672608.0,320889024.0,309879360.0,298728224.0,287516704.0,276324928.0,265226016.0,254294000.0,243594720.0,233186912.0,223120096.0,213433472.0,204155072.0,195302976.0,186887904.0,178913648.0,171379920.0,164283488.0,157618112.0,151374320.0,145540144.0,140101280.0,135039968.0,130335360.0,125964256.0,121902400.0,118125408.0,114610000.0,111334528.0,108278432.0,105421976.0,102746376.0,100234232.0,97868512.0,95632600.0,93510728.0,91488592.0,89553304.0,87693264.0,85898472.0,84160232.0,82470904.0,80823720.0,79212952.0,77633544.0,76080928.0,74551024.0,73040216.0,71545520.0,70064664.0,68596016.0,67138256.0,65690236.0,64251400.0,62821672.0,61401176.0,59990016.0,58588448.0,57196768.0,55815248.0,54444368.0,53084784.0,51737076.0,50401712.0,49079600.0,47772004.0,46480088.0,45204724.0,43946824.0,42707340.0,41487116.0,40286936.0,39107672.0,37950092.0,36814912.0,35703112.0,34615928.0,33554640.0,32520336.0,31514184.0,30537324.0,29590880.0,28676040.0,27793872.0,26945312.0,26131146.0,25352420.0,24610236.0,23905394.0,23238452.0,22609714.0,22019324.0,21467128.0,20952624.0,20474964.0,20032804.0,19624570.0,19248520.0,18902660.0,18584740.0,18292242.0,18022616.0,17773228.0,17541362.0,17324264.0,17119066.0,16922902.0,16732965.0,16546700.0,16361741.0,16175989.0,15987578.0,15794947.0,15596734.0,15391731.0,15178898.0,14957237.0,14725905.0,14484237.0,14231855.0,13968519.0,13694112.0,13408624.0,13112079.0,12804710.0,12486843.0,12159033.0,11821935.0,11476447.0,11123728.0,10764988.0,10401523.0,10034645.0,9665785.0,9296428.0,8928023.0,8561954.0,8199669.0,7842711.0,7492614.0,7150710.0,6818211.0,6496306.0,6185986.0,5887933.0,5602565.0,5330188.0,5071032.0,4825119.0,4592374.0,4372593.0,4165526.0,3970844.0,3788103.0,3616800.0,3456321.0,3306079.0,3165475.0,3033868.0,2910653.0,2795222.0,2687015.0,2585445.0,2489928.0,2399979.0,2315157.0,2235084.0,2159411.0,2087789.0,2020002.0,1955867.0,1895245.0,1837940.0,1783775.0,1732726.0,1684782.0,1639933.0,1598095.0,1559241.0,1523356.0,1490273.0,1459755.0,1431627.0,1405722.0,1381849.0,1359712.0,1339131.0,1319934.0,1301834.0,1284440.0,1267372.0,1250436.0,1233439.0,1216147.0,1198245.0,1179564.0,1160036.0,1139611.0,1118194.0,1095711.0,1072192.0,1047712.0,1022317.0,995999.0,968768.0,940656.0,911697.0,881872.0,851163.0,819580.0,787125.0,753797.0,719646.0,684682.0,648930.0,612367.0,575026.0,536989.0,498301.0,459150.0,419677.0,380084.0,340558.0,301277.0,262463.0,224287.0,187037.0,150911.0,116002.0,82368.0,50133.0,19414.0,-9790.0,-37476.0,-63632.0,-88257.0,-111422.0,-133199.0,-153629.0,-172795.0,-190716.0,-207448.0,-223065.0,-237730.0,-251570.0,-264601.0,-276888.0,-288439.0,-299278.0,-309356.0,-318706.0,-327469.0,-335711.0,-343460.0,-350638.0,-357289.0,-363422.0,-368963.0,-373822.0,-378008.0,-381591.0,-384473.0,-386521.0,-387677.0,-387973.0,-387381.0,-385875.0,-383447.0,-380158.0,-375995.0,-370919.0,-364985.0,-358296.0,-350995.0,-343114.0,-334752.0,-326117.0,-317331.0,-308435.0,-299448.0,-290550.0,-281938.0,-273618.0,-265586.0,-257894.0,-250784.0,-244341.0,-238534.0,-233331.0,-228809.0,-225084.0,-222109.0,-219894.0,-218443.0,-217801.0,-217997.0,-219017.0,-220794.0,-223203.0,-226239.0,-229964.0,-234356.0,-239362.0,-245009.0,-251371.0,-258419.0,-266053.0,-274197.0,-282818.0,-291804.0,-301054.0,-310491.0,-320050.0,-329701.0,-339338.0,-348926.0,-358355.0,-367497.0,-376289.0,-384636.0,-392547.0,-399986.0,-406964.0,-413482.0,-419519.0,-425072.0,-430121.0,-434661.0,-438739.0,-442377.0,-445594.0,-448369.0,-450793.0,-452983.0,-454947.0,-456705.0,-458307.0,-459884.0,-461404.0,-462805.0,-464160.0,-465608.0,-467166.0,-468787.0,-470507.0,-472389.0,-474415.0,-476531.0,-478802.0,-481269.0,-483867.0,-486505.0,-489150.0,-491835.0,-494608.0,-497496.0,-500514.0,-503672.0,-506996.0,-510475.0,-514040.0,-517621.0,-521242.0,-524854.0,-528395.0,-531807.0,-535112.0,-538383.0,-541533.0,-544563.0,-547401.0,-550037.0,-552321.0,-554079.0,-555269.0,-555851.0,-555791.0,-554957.0,-553254.0,-550576.0,-546809.0,-541911.0,-535856.0,-528564.0,-519969.0,-510080.0,-498956.0,-486615.0,-473090.0,-458494.0,-442948.0,-426547.0,-409454.0,-391921.0,-374158.0,-356337.0,-338650.0,-321378.0,-304672.0,-288569.0,-273199.0,-258725.0,-245230.0,-232702.0,-221235.0,-210989.0,-201978.0,-194187.0,-187688.0,-182614.0,-178914.0,-176441.0,-175184.0,-175159.0,-176343.0,-178641.0,-182060.0,-186630.0,-192290.0,-198962.0,-206541.0,-214944.0,-224067.0,-233799.0,-244008.0,-254491.0,-265075.0,-275615.0,-285963.0,-295903.0,-305134.0,-313373.0,-320322.0,-325623.0,-328861.0,-329638.0,-327601.0,-322301.0,-313175.0,-299556.0,-280637.0,-255566.0,-223307.0,-182686.0,-132152.0,-69828.0,6496.0,99570.0,212789.0,350320.0,517097.0,719068.0,963420.0,1258777.0,1615271.0,2044728.0,2560639.0,3178341.0,3914963.0,4789513.0,5822761.0,7037055.0,8456271.0,10105582.0,12011349.0,14200406.0,16698990.0,19531316.0,22718656.0,26278628.0,30224568.0,34564832.0,39302368.0,44434700.0,49953904.0,55846524.0,62092600.0,68664248.0,75524832.0,82629728.0,89927824.0,97362952.0,104875704.0,112405968.0,119895064.0,127287400.0,134530544.0,141575232.0,148375168.0,154887232.0,161073456.0,166901568.0,172346320.0,177389024.0,182017584.0,186225744.0,190011568.0,193375984.0,196320064.0,198844096.0,200948192.0,202632752.0,203896912.0,204738176.0,205153056.0,205137744.0,204687104.0,203794496.0,202454080.0,200660864.0,198412448.0,195710016.0,192561056.0,188978384.0,184979232.0,180586160.0,175827264.0,170735792.0,165348080.0,159704304.0,153848864.0,147831024.0,141703344.0,135519696.0,129333504.0,123196824.0,117158904.0,111263984.0,105549824.0,100047616.0,94782808.0,89775504.0,85040832.0,80589088.0,76425904.0,72552368.0,68965440.0,65658464.0,62621192.0,59840348.0,57300408.0,54984576.0,52875596.0,50956204.0,49209688.0,47619896.0,46171352.0,44849480.0,43640600.0,42531840.0,41510912.0,40566464.0,39688204.0,38867092.0,38095092.0,37365200.0,36671268.0,36007876.0,35370372.0,34754520.0,34156568.0,33573000.0,33000736.0,32436952.0,31879088.0,31324958.0,30772732.0,30220724.0,29667328.0,29111296.0,28551704.0,27987808.0,27418820.0,26844088.0,26263130.0,25675712.0,25081824.0,24481744.0,23875896.0,23264780.0,22649208.0,22030130.0,21408532.0,20785258.0,20161282.0,19537746.0,18915772.0,18296492.0,17681080.0,17070624.0,16466124.0,15868628.0,15279232.0,14698981.0,14128694.0,13569154.0,13021030.0,12484868.0,11961163.0,11450278.0,10952565.0,10468307.0,9997887.0,9541619.0,9099645.0,8672031.0,8258743.0,7859727.0,7474813.0,7103855.0,6746692.0,6403091.0,6072802.0,5755610.0,5451308.0,5159616.0,4880215.0,4612748.0,4356817.0,4112068.0,3878215.0,3654948.0,3441870.0,3238669.0,3045142.0,2861051.0,2686069.0,2519876.0,2362268.0,2213030.0,2071883.0,1938580.0,1812902.0,1694683.0,1583706.0,1479789.0,1382828.0,1292726.0,1209326.0,1132471.0,1061977.0,997723.0,939537.0,887261.0,840758.0,799853.0,764419.0,734322.0,709471.0,689748.0,675024.0,665167.0,660132.0,659822.0,664056.0,672547.0,685080.0,701493.0,721460.0,744543.0,770325.0,798477.0,828638.0,860295.0,892935.0,926088.0,959287.0,992057.0,1023849.0,1054158.0,1082479.0,1108380.0,1131487.0,1151454.0,1168018.0,1180943.0,1190183.0,1195669.0,1197314.0,1195068.0,1188898.0,1178907.0,1165093.0,1147534.0,1126417.0,1101926.0,1074289.0,1043634.0,1010170.0,974133.0,935740.0,895197.0,852690.0,808454.0,762672.0,715502.0,667058.0,617600.0,567418.0,516847.0,466190.0,415724.0,365725.0,316390.0,267944.0,220550.0,174419.0,129753.0,86755.0,45532.0,6099.0,-31486.0,-67145.0,-100822.0,-132485.0,-162152.0,-189835.0,-215579.0,-239439.0,-261468.0,-281803.0,-300521.0,-317625.0,-333089.0,-346893.0,-359024.0,-369448.0,-378159.0,-385217.0,-390555.0,-394048.0,-395574.0,-394981.0,-392146.0,-386809.0,-378829.0,-368104.0,-354621.0,-338313.0,-318993.0,-296542.0,-270945.0,-242265.0,-210451.0,-175532.0,-137728.0,-97353.0,-54678.0,-9843.0,36863.0,85155.0,134756.0,185397.0,236756.0,288334.0,339724.0,390496.0,440251.0,488506.0,534850.0,578914.0,620324.0,658706.0,693770.0,725296.0,753079.0,776894.0,796543.0,811909.0,822938.0,829592.0,831772.0,829495.0,822909.0,812217.0,797554.0,779126.0,757276.0,732340.0,704529.0,674013.0,641102.0,606128.0,569384.0,531096.0,491596.0,451340.0,410725.0,370094.0,329719.0,289934.0,251034.0,213214.0,176600.0,141391.0,107847.0,76164.0,46440.0,18742.0,-6835.0,-30252.0,-51534.0,-70661.0,-87583.0,-102258.0,-114681.0,-124892.0,-132903.0,-138720.0,-142309.0,-143685.0,-142856.0,-139773.0,-134310.0,-126364.0,-115840.0,-102628.0,-86581.0,-67571.0,-45499.0,-20232.0,8386.0,40513.0,76264.0,115695.0,158814.0,205614.0,256034.0,309878.0,366861.0,426710.0,489137.0,553703.0,619881.0,687233.0,755304.0,823568.0,891441.0,958363.0,1023762.0,1087075.0,1147862.0,1205759.0,1260324.0,1311175.0,1358025.0,1400669.0,1438857.0,1472344.0,1501019.0,1524787.0,1543551.0,1557231.0,1565846.0,1569472.0,1568187.0,1562089.0,1551320.0,1535960.0,1516038.0,1491545.0,1462465.0,1428870.0,1390840.0,1348572.0,1302242.0,1252103.0,1198459.0,1141615.0,1081860.0,1019456.0,954739.0,888075.0,819882.0,750615.0,680784.0,610865.0,541368.0,472752.0,405405.0,339596.0,275614.0,213784.0,154358.0,97475.0,43315.0,-7912.0,-56076.0,-101191.0,-143313.0,-182498.0,-218844.0,-252524.0,-283715.0,-312601.0,-339342.0,-364032.0,-386773.0,-407653.0,-426808.0,-444330.0,-460376.0,-475072.0,-488561.0,-500991.0,-512484.0,-523085.0,-532812.0,-541730.0,-549895.0,-557338.0,-564080.0,-570208.0,-575722.0,-580659.0,-585063.0,-588996.0,-592451.0,-595425.0,-598010.0,-600289.0,-602317.0,-604050.0,-605534.0,-606815.0,-607996.0,-609101.0,-610107.0,-611038.0,-611970.0,-612976.0,-614041.0,-615107.0,-616238.0,-617489.0,-618841.0,-620333.0,-621929.0,-623679.0,-625569.0,-627704.0,-630160.0,-632890.0,-635895.0,-639145.0,-642662.0,-646407.0,-650354.0,-654492.0,-658814.0,-663388.0,-668193.0,-673209.0,-678384.0,-683773.0,-689418.0,-695265.0,-701283.0,-707431.0,-713710.0,-720005.0,-726247.0,-732438.0,-738614.0,-744805.0,-750982.0,-757195.0,-763452.0,-769732.0,-775997.0,-782176.0,-788286.0,-794288.0,-800213.0,-806047.0,-811799.0,-817475.0,-823082.0,-828667.0,-834182.0,-839641.0,-845019.0,-850344.0,-855562.0,-860605.0,-865475.0,-870177.0,-874699.0,-879040.0,-883237.0,-887309.0,-891260.0,-895062.0,-898744.0,-902281.0,-905627.0,-908792.0,-911788.0,-914695.0,-917546.0,-920324.0,-923046.0,-925706.0,-928349.0,-930852.0,-933202.0,-935406.0,-937474.0,-939364.0,-941024.0,-942539.0,-943919.0,-945230.0,-946490.0,-947731.0,-948943.0,-950136.0,-951297.0,-952338.0,-953300.0,-954223.0,-955181.0,-956181.0,-957224.0,-958380.0,-959596.0,-960871.0,-962158.0,-963389.0,-964564.0,-965727.0,-966955.0,-968236.0,-969536.0,-970907.0,-972395.0,-973949.0,-975462.0,-976933.0,-978411.0,-979866.0,-981235.0,-982510.0,-983765.0,-984988.0,-986160.0,-987290.0,-988395.0,-989484.0,-990571.0,-991699.0,-992842.0,-993949.0,-994960.0,-995902.0,-996770.0,-997510.0,-998094.0,-998529.0,-998922.0,-999259.0,-999534.0,-999768.0,-999981.0,-1000201.0,-1000358.0,-1000407.0,-1000338.0,-1000158.0,-999914.0,-999599.0,-999241.0,-998906.0,-998585.0,-998210.0,-997735.0,-997148.0,-996448.0,-995594.0,-994586.0,-993538.0,-992487.0,-991430.0,-990301.0,-989115.0,-987911.0,-986603.0,-985138.0,-983596.0,-982057.0,-980495.0,-978844.0,-977141.0,-975449.0,-973665.0,-971789.0,-969852.0,-967868.0,-965886.0,-963902.0,-961955.0,-959965.0,-957933.0,-955944.0,-953979.0,-952030.0,-950069.0,-948148.0,-946270.0,-944455.0,-942738.0,-941094.0,-939524.0,-938031.0,-936637.0,-935254.0,-933843.0,-932424.0,-931037.0,-929733.0,-928454.0,-927225.0,-926009.0,-924810.0,-923586.0,-922287.0,-920903.0,-919369.0,-917632.0,-915636.0,-913432.0,-910975.0,-908223.0,-905166.0,-901867.0,-898356.0,-894546.0,-890441.0,-886095.0,-881492.0,-876635.0,-871546.0,-866325.0,-861037.0,-855704.0,-850411.0,-845142.0,-839919.0,-834756.0,-829681.0,-824757.0,-820033.0,-815537.0,-811281.0,-807330.0,-803747.0,-800548.0,-797653.0,-795076.0,-792901.0,-791154.0,-789763.0,-788621.0,-787781.0,-787387.0,-787435.0,-787925.0,-788871.0,-790312.0,-792220.0,-794520.0,-797192.0,-800214.0,-803603.0,-807385.0,-811572.0,-816082.0,-820825.0,-825735.0,-830840.0,-836183.0,-841729.0,-847437.0,-853268.0,-859211.0,-865153.0,-870980.0,-876644.0,-882094.0,-887362.0,-892375.0,-897177.0,-901768.0,-906187.0,-910465.0,-914545.0,-918418.0,-921993.0,-925227.0,-928158.0,-930849.0,-933372.0,-935706.0,-937856.0,-939806.0,-941538.0,-943050.0,-944344.0,-945460.0,-946414.0,-947249.0,-947936.0,-948464.0,-948840.0,-949123.0,-949304.0,-949388.0,-949371.0,-949250.0,-949010.0,-948604.0,-948103.0,-947538.0,-946923.0,-946238.0,-945447.0,-944621.0,-943795.0,-942994.0,-942185.0,-941335.0,-940474.0,-939611.0,-938726.0,-937779.0,-936800.0,-935881.0,-935065.0,-934266.0,-933415.0,-932573.0,-931805.0,-931060.0,-930257.0,-929422.0,-928594.0,-927690.0,-926605.0,-925283.0,-923694.0,-921784.0,-919541.0,-916940.0,-913897.0,-910324.0,-906129.0,-901231.0,-895475.0,-888738.0,-880935.0,-872046.0,-862043.0,-850874.0,-838417.0,-824614.0,-809528.0,-793223.0,-775652.0,-756746.0,-736645.0,-715593.0,-693782.0,-671267.0,-648208.0,-624864.0,-601491.0,-578164.0,-554971.0,-532174.0,-510087.0,-488905.0,-468730.0,-449737.0,-432052.0,-415717.0,-400781.0,-387290.0,-375259.0,-364658.0,-355550.0,-347984.0,-341933.0,-337376.0,-334404.0,-333063.0,-333293.0,-335006.0,-338223.0,-342997.0,-349257.0,-356960.0,-366122.0,-376881.0,-389206.0,-403038.0,-418264.0,-434790.0,-452435.0,-470975.0,-490287.0,-510217.0,-530670.0,-551509.0,-572581.0,-593730.0,-614764.0,-635537.0,-655869.0,-675652.0,-694864.0,-713354.0,-730963.0,-747576.0,-763213.0,-777848.0,-791366.0,-803747.0,-815043.0,-825319.0,-834560.0,-842724.0,-849876.0,-856106.0,-861452.0,-865950.0,-869621.0,-872555.0,-874747.0,-876204.0,-876984.0,-877131.0,-876752.0,-875843.0,-874495.0,-872746.0,-870633.0,-868195.0,-865509.0,-862703.0,-859760.0,-856687.0,-853489.0,-850235.0,-846914.0,-843506.0,-840034.0,-836541.0,-833082.0,-829617.0,-826147.0,-822740.0,-819476.0,-816383.0,-813338.0,-810283.0,-807205.0,-804088.0,-800924.0,-797701.0,-794473.0,-791231.0,-787925.0,-784505.0,-780965.0,-777321.0,-773619.0,-769897.0,-766103.0,-762188.0,-758148.0,-754041.0,-749894.0,-745725.0,-741623.0,-737626.0,-733695.0,-729834.0,-726084.0,-722441.0,-718915.0,-715563.0,-712488.0,-709684.0,-707104.0,-704804.0,-702739.0,-700866.0,-699137.0,-697560.0,-696128.0,-694801.0,-693665.0,-692751.0,-692040.0,-691440.0,-690971.0,-690638.0,-690388.0,-690168.0,-689922.0,-689660.0,-689347.0,-688937.0,-688438.0,-687816.0,-687077.0,-686142.0,-684870.0,-683155.0,-680897.0,-678077.0,-674593.0,-670299.0,-665084.0,-658868.0,-651529.0,-642881.0,-632795.0,-621174.0,-607917.0,-592781.0,-575579.0,-556182.0,-534468.0,-510354.0,-483776.0,-454672.0,-422956.0,-388486.0,-351167.0,-310925.0,-267683.0,-221437.0,-172162.0,-119884.0,-64651.0,-6535.0,54356.0,117927.0,184057.0,252623.0,323546.0,396727.0,472127.0,549580.0,628914.0,709895.0,792348.0,876111.0,960858.0,1046376.0,1132459.0,1219032.0,1305898.0,1392876.0,1479870.0,1566722.0,1653244.0,1739159.0,1824257.0,1908328.0,1991262.0,2072966.0,2153346.0,2232288.0,2309750.0,2385663.0,2459864.0,2532119.0,2602306.0,2670360.0,2736152.0,2799545.0,2860393.0,2918661.0,2974248.0,3027048.0,3076958.0,3123886.0,3167763.0,3208460.0,3245839.0,3279805.0,3310257.0,3337110.0,3360283.0,3379762.0,3395480.0,3407316.0,3415238.0,3419192.0,3419156.0,3415132.0,3407220.0,3395483.0,3379857.0,3360404.0,3337172.0,3310224.0,3279611.0,3245506.0,3208071.0,3167403.0,3123628.0,3076899.0,3027368.0,2975117.0,2920284.0,2863028.0,2803508.0,2741905.0,2678381.0,2613177.0,2546568.0,2478765.0,2409934.0,2340180.0,2269707.0,2198628.0,2127001.0,2054960.0,1982734.0,1910525.0,1838407.0,1766564.0,1695250.0,1624625.0,1554722.0,1485616.0,1417455.0,1350336.0,1284340.0,1219605.0,1156303.0,1094524.0,1034343.0,975813.0,919015.0,864016.0,810892.0,759722.0,710508.0,663214.0,617788.0,574205.0,532522.0,492746.0,454909.0,418984.0,384967.0,352829.0,322383.0,293505.0,266169.0,240472.0,216377.0,193778.0,172659.0,152986.0,134631.0,117435.0,101339.0,86303.0,72260.0,59154.0,46983.0,35687.0,25196.0,15458.0,6425.0,-1961.0,-9759.0,-17008.0,-23793.0,-30197.0,-36265.0,-41951.0,-47272.0,-52325.0,-57142.0,-61660.0,-65850.0,-69811.0,-73716.0,-77520.0,-81226.0,-84910.0,-88635.0,-92360.0,-95989.0,-99559.0,-103085.0,-106514.0,-109882.0,-113273.0,-116695.0,-120105.0,-123479.0,-126877.0,-130270.0,-133665.0,-137032.0,-140398.0,-143710.0,-147047.0,-150425.0,-153751.0,-156983.0,-160174.0,-163533.0,-167053.0,-170731.0,-174609.0,-178763.0,-183117.0,-187494.0,-191838.0,-196212.0,-200687.0,-205319.0,-210140.0,-215161.0,-220307.0,-225501.0,-230695.0,-235828.0,-240868.0,-245804.0,-250712.0,-255648.0,-260582.0,-265458.0,-270274.0,-275066.0,-279837.0,-284538.0,-289139.0,-293627.0,-297992.0,-302260.0,-306387.0,-310333.0,-314132.0,-317865.0,-321528.0,-325074.0,-328519.0,-331927.0,-335339.0,-338767.0,-342251.0,-345738.0,-349136.0,-352433.0,-355588.0,-358583.0,-361399.0,-364097.0,-366774.0,-369384.0,-371919.0,-374314.0,-376547.0,-378608.0,-380501.0,-382302.0,-384012.0,-385628.0,-387082.0,-388290.0,-389237.0,-389877.0,-390184.0,-390133.0,-389771.0,-389162.0,-388228.0,-386922.0,-385249.0,-383228.0,-380867.0,-378200.0,-375324.0,-372275.0,-369066.0,-365697.0,-362218.0,-358661.0,-355069.0,-351480.0,-347880.0,-344384.0,-341115.0,-338106.0,-335267.0,-332634.0,-330371.0,-328559.0,-327146.0,-326165.0,-325769.0,-325993.0,-326775.0,-328005.0,-329723.0,-331946.0,-334621.0,-337730.0,-341346.0,-345566.0,-350321.0,-355541.0,-361225.0,-367323.0,-373737.0,-380368.0,-387193.0,-394181.0,-401248.0,-408370.0,-415418.0,-422275.0,-428912.0,-435295.0,-441301.0,-446760.0,-451606.0,-455788.0,-459164.0,-461581.0,-463018.0,-463434.0,-462788.0,-461000.0,-458037.0,-453937.0,-448722.0,-442497.0,-435350.0,-427403.0,-418783.0,-409542.0,-399845.0,-389784.0,-379455.0,-368957.0,-358439.0,-348083.0,-337924.0,-328064.0,-318642.0,-309802.0,-301547.0,-293849.0,-286704.0,-280216.0,-274421.0,-269267.0,-264753.0,-260971.0,-258058.0,-255998.0,-254805.0,-254483.0,-255031.0,-256403.0,-258541.0,-261413.0,-264967.0,-269270.0,-274366.0,-280173.0,-286585.0,-293511.0,-300921.0,-308684.0,-316689.0,-324883.0,-333232.0,-341703.0,-350217.0,-358674.0,-366911.0,-374835.0,-382418.0,-389656.0,-396488.0,-402904.0,-408972.0,-414704.0,-420056.0,-424976.0,-429469.0,-433568.0,-437287.0,-440671.0,-443762.0,-446590.0,-449152.0,-451411.0,-453361.0,-455102.0,-456696.0,-458123.0,-459400.0,-460557.0,-461616.0,-462525.0,-463272.0,-463886.0,-464392.0,-464856.0,-465331.0,-465786.0,-466156.0,-466464.0,-466769.0,-467096.0,-467405.0,-467745.0,-468183.0,-468695.0,-469206.0,-469672.0,-470170.0,-470715.0,-471275.0,-471832.0,-472428.0,-473074.0,-473734.0,-474406.0,-475120.0,-475866.0,-476542.0,-477074.0,-477468.0,-477756.0,-477980.0,-478115.0,-478227.0,-478350.0,-478502.0,-478617.0,-478618.0,-478573.0,-478456.0,-478223.0,-477721.0,-476962.0,-476019.0,-474877.0,-473568.0,-472100.0,-470558.0,-468925.0,-467148.0,-465249.0,-463231.0,-461143.0,-458949.0,-456649.0,-454235.0,-451675.0,-448990.0,-446181.0,-443273.0,-440261.0,-437171.0,-434044.0,-430878.0,-427657.0,-424403.0,-421139.0,-417856.0,-414522.0,-411122.0,-407705.0,-404344.0,-401062.0,-397819.0,-394546.0,-391257.0,-387937.0,-384533.0,-381034.0,-377471.0,-373877.0,-370168.0,-366310.0,-362263.0,-357964.0,-353368.0,-348409.0,-343007.0,-336943.0,-329987.0,-321915.0,-312438.0,-301195.0,-287798.0,-271732.0,-252327.0,-228773.0,-200217.0,-165723.0,-124195.0,-74587.0,-15901.0,52853.0,132677.0,224430.0,328674.0,445718.0,575661.0,718224.0,872655.0,1037768.0,1212027.0,1393616.0,1580352.0,1769842.0,1959638.0,2147434.0,2331091.0,2508578.0,2678038.0,2837966.0,2987270.0,3125065.0,3250676.0,3363757.0,3464364.0,3552632.0,3628681.0,3692690.0,3744926.0,3785622.0,3814853.0,3832715.0,3839303.0,3834710.0,3819013.0,3792365.0,3755172.0,3708022.0,3651694.0,3587141.0,3515503.0,3438084.0,3356282.0,3271568.0,3185515.0,3099768.0,3015927.0,2935519.0,2859927.0,2790487.0,2728386.0,2674675.0,2630422.0,2596736.0,2574797.0,2565825.0,2571203.0,2592504.0,2631425.0,2689666.0,2768966.0,2871034.0,2997402.0,3149222.0,3327176.0,3531423.0,3761457.0,4015945.0,4292746.0,4588997.0,4901177.0,5225133.0,5556206.0,5889523.0,6220140.0,6543208.0,6854139.0,7148995.0,7424503.0,7678103.0,7907897.0,8112783.0,8292317.0,8446460.0,8575527.0,8680013.0,8760598.0,8817933.0,8852605.0,8865061.0,8855615.0,8824504.0,8771888.0,8697892.0,8602759.0,8486915.0,8351029.0,8196066.0,8023344.0,7834619.0,7631969.0,7417658.0,7194204.0,6964367.0,6731018.0,6496857.0,6264389.0,6036106.0,5814297.0,5600890.0,5397370.0,5204880.0,5024256.0,4855952.0,4700062.0,4556397.0,4424598.0,4304245.0,4194739.0,4095329.0,4005235.0,3923710.0,3850072.0,3783619.0,3723741.0,3669929.0,3621807.0,3579045.0,3541341.0,3508381.0,3479950.0,3455887.0,3436051.0,3420265.0,3408388.0,3400358.0,3396169.0,3395798.0,3399140.0,3406113.0,3416553.0,3430298.0,3447137.0,3466873.0,3489211.0,3513798.0,3540412.0,3568912.0,3599131.0,3630885.0,3664167.0,3699140.0,3735919.0,3774589.0,3815301.0,3858290.0,3903786.0,3952024.0,4003282.0,4057803.0,4115750.0,4177220.0,4242311.0,4311047.0,4383416.0,4459389.0,4539001.0,4622350.0,4709571.0,4800784.0,4896053.0,4995469.0,5099118.0,5207017.0,5319021.0,5434998.0,5554824.0,5678300.0,5805129.0,5934955.0,6067439.0,6202028.0,6338138.0,6475159.0,6612458.0,6749247.0,6884660.0,7017940.0,7148307.0,7274941.0,7397041.0,7513898.0,7624880.0,7729407.0,7826926.0,7916906.0,7998792.0,8072262.0,8137062.0,8192966.0,8239774.0,8277443.0,8306039.0,8325586.0,8336055.0,8337364.0,8329491.0,8312517.0,8286548.0,8251556.0,8207564.0,8154748.0,8093251.0,8023012.0,7943999.0,7856342.0,7760225.0,7655706.0,7542852.0,7421785.0,7292633.0,7155542.0,7010610.0,6858061.0,6698190.0,6531401.0,6358120.0,6178787.0,5994000.0,5804389.0,5610673.0,5413533.0,5213734.0,5012085.0,4809464.0,4606727.0,4404703.0,4204250.0,4006182.0,3811288.0,3620212.0,3433592.0,3252044.0,3076148.0,2906404.0,2743165.0,2586694.0,2437169.0,2294649.0,2159100.0,2030495.0,1908773.0,1793778.0,1685296.0,1583160.0,1487145.0,1396917.0,1312116.0,1232467.0,1157690.0,1087417.0,1021367.0,959266.0,900841.0,845768.0,793755.0,744573.0,697918.0,653465.0,610980.0,570254.0,531153.0,493473.0,457061.0,421809.0,387587.0,354297.0,321789.0,290018.0,258887.0,228367.0,198391.0,168896.0,139803.0,110977.0,82428.0,54075.0,25893.0,-2103.0,-29837.0,-57252.0,-84361.0,-111066.0,-137247.0,-162844.0,-187832.0,-212063.0,-235336.0,-257417.0,-278143.0,-297313.0,-314664.0,-329965.0,-343087.0,-354033.0,-362761.0,-369323.0,-373943.0,-377022.0,-378986.0,-380312.0,-381611.0,-383513.0,-386532.0,-391082.0,-397521.0,-406027.0,-416585.0,-429050.0,-443325.0,-459170.0,-476289.0,-494437.0,-513513.0,-533465.0,-554119.0,-575380.0,-597228.0,-619752.0,-642929.0,-666668.0,-690916.0,-715687.0,-740933.0,-766476.0,-792084.0,-817573.0,-842780.0,-867578.0,-891881.0,-915572.0,-938574.0,-960852.0,-982381.0,-1003090.0,-1022866.0,-1041666.0,-1059511.0,-1076432.0,-1092487.0,-1107711.0,-1122175.0,-1135949.0,-1149094.0,-1161616.0,-1173515.0,-1184791.0,-1195463.0,-1205536.0,-1214961.0,-1223748.0,-1231933.0,-1239522.0,-1246502.0,-1252899.0,-1258771.0,-1264089.0,-1268759.0,-1272840.0,-1276435.0,-1279573.0,-1282280.0,-1284617.0,-1286721.0,-1288570.0,-1290112.0,-1291327.0,-1292241.0,-1292897.0,-1293275.0,-1293380.0,-1293195.0,-1292744.0,-1292070.0,-1291204.0,-1290192.0,-1289021.0,-1287721.0,-1286272.0,-1284698.0,-1283004.0,-1281221.0,-1279462.0,-1277791.0,-1276254.0,-1274830.0,-1273485.0,-1272182.0,-1270873.0,-1269546.0,-1268182.0,-1266712.0,-1265182.0,-1263561.0,-1261821.0,-1259860.0,-1257664.0,-1255253.0,-1252628.0,-1249831.0,-1246883.0,-1243818.0,-1240617.0,-1237312.0,-1233866.0,-1230335.0,-1226746.0,-1223161.0,-1219651.0,-1216213.0,-1212867.0,-1209501.0,-1206143.0,-1202786.0,-1199406.0,-1195992.0,-1192520.0,-1189074.0,-1185631.0,-1182201.0,-1178752.0,-1175261.0,-1171762.0,-1168230.0,-1164623.0,-1160918.0,-1157136.0,-1153310.0,-1149454.0,-1145567.0,-1141652.0,-1137717.0,-1133797.0,-1129931.0,-1126111.0,-1122330.0,-1118607.0,-1114903.0,-1111171.0,-1107384.0,-1103548.0,-1099650.0,-1095671.0,-1091691.0,-1087756.0,-1083867.0,-1080005.0,-1076136.0,-1072260.0,-1068302.0,-1064272.0,-1060201.0,-1056070.0,-1051874.0,-1047572.0,-1043161.0,-1038622.0,-1033903.0,-1029040.0,-1024148.0,-1019356.0,-1014768.0,-1010318.0,-1005990.0,-1001739.0,-997523.0,-993277.0,-988929.0,-984538.0,-980099.0,-975629.0,-971075.0,-966416.0,-961662.0,-956754.0,-951629.0,-946258.0,-940669.0,-934864.0,-928775.0,-922450.0,-915971.0,-909331.0,-902422.0,-895269.0,-887930.0,-880427.0,-872794.0,-865107.0,-857519.0,-850004.0,-842635.0,-835439.0,-828421.0,-821551.0,-814763.0,-808086.0,-801425.0,-794680.0,-787720.0,-780515.0,-773054.0,-765230.0,-756883.0,-747946.0,-738487.0,-728539.0,-718003.0,-706846.0,-695194.0,-683134.0,-670656.0,-657757.0,-644633.0,-631515.0,-618502.0,-605730.0,-593385.0,-581595.0,-570398.0,-559782.0,-549843.0,-540638.0,-532132.0,-524353.0,-517374.0,-511261.0,-505983.0,-501471.0,-497739.0,-494723.0,-492291.0,-490320.0,-488776.0,-487673.0,-486895.0,-486378.0,-486106.0,-486097.0,-486323.0,-486687.0,-487150.0,-487678.0,-488273.0,-488929.0,-489550.0,-490076.0,-490539.0,-491005.0,-491459.0,-491798.0,-492095.0,-492461.0,-492933.0,-493487.0,-494104.0,-494889.0,-495873.0,-497016.0,-498333.0,-499839.0,-501553.0,-503444.0,-505492.0,-507758.0,-510241.0,-512933.0,-515853.0,-519017.0,-522385.0,-525898.0,-529576.0,-533474.0,-537604.0,-541899.0,-546329.0,-550872.0,-555402.0,-559831.0,-564145.0,-568463.0,-572829.0,-577218.0,-581660.0,-586097.0,-590491.0,-594703.0,-598716.0,-602552.0,-606244.0,-609847.0,-613367.0,-616852.0,-620301.0,-623688.0,-626952.0,-630095.0,-633124.0,-636051.0,-638817.0,-641427.0,-643937.0,-646427.0,-648905.0,-651300.0,-653647.0,-655943.0,-658205.0,-660345.0,-662292.0,-664115.0,-665863.0,-667586.0,-669225.0,-670728.0,-672183.0,-673606.0,-674985.0,-676292.0,-677544.0,-678841.0,-680113.0,-681315.0,-682494.0,-683724.0,-685034.0,-686299.0,-687519.0,-688726.0,-689874.0,-690850.0,-691560.0,-692116.0,-692602.0,-693020.0,-693337.0,-693574.0,-693846.0,-694124.0,-694289.0,-694326.0,-694269.0,-694165.0,-693924.0,-693570.0,-693198.0,-692813.0,-692403.0,-691926.0,-691452.0,-690925.0,-690327.0,-689626.0,-688827.0,-688021.0,-687218.0,-686430.0,-685574.0,-684630.0,-683686.0,-682681.0,-681609.0,-680400.0,-679114.0,-677833.0,-676444.0,-674971.0,-673401.0,-671829.0,-670245.0,-668603.0,-666933.0,-665198.0,-663366.0,-661436.0,-659461.0,-657479.0,-655510.0,-653552.0,-651694.0,-649989.0,-648414.0,-646901.0,-645411.0,-643980.0,-642612.0,-641286.0,-639993.0,-638740.0,-637534.0,-636369.0,-635229.0,-634080.0,-632869.0,-631598.0,-630280.0,-628930.0,-627510.0,-625978.0,-624372.0,-622680.0,-620896.0,-619036.0,-617149.0,-615277.0,-613386.0,-611458.0,-609546.0,-607656.0,-605786.0,-603958.0,-602253.0,-600759.0,-599419.0,-598213.0,-597125.0,-596204.0,-595468.0,-594955.0,-594689.0,-594634.0,-594765.0,-595060.0,-595532.0,-596114.0,-596768.0,-597526.0,-598445.0,-599521.0,-600729.0,-602065.0,-603501.0,-604997.0,-606568.0,-608247.0,-610011.0,-611920.0,-614040.0,-616398.0,-618831.0,-621251.0,-623705.0,-626181.0,-628656.0,-631066.0,-633442.0,-635795.0,-638088.0,-640323.0,-642477.0,-644567.0,-646656.0,-648719.0,-650705.0,-652539.0,-654284.0,-655957.0,-657515.0,-658881.0,-660035.0,-660972.0,-661699.0,-662254.0,-662599.0,-662760.0,-662673.0,-662378.0,-661810.0,-660840.0,-659347.0,-657216.0,-654488.0,-651098.0,-646926.0,-641845.0,-635792.0,-628722.0,-620475.0,-610854.0,-599759.0,-587197.0,-573205.0,-557723.0,-540722.0,-522198.0,-502175.0,-480738.0,-458012.0,-434178.0,-409411.0,-383951.0,-358054.0,-331904.0,-305659.0,-279580.0,-253916.0,-228877.0,-204644.0,-181388.0,-159305.0,-138525.0,-119222.0,-101524.0,-85492.0,-71123.0,-58446.0,-47461.0,-38108.0,-30299.0,-23978.0,-19159.0,-15739.0,-13692.0,-12959.0,-13532.0,-15367.0,-18438.0,-22771.0,-28298.0,-34985.0,-42806.0,-51745.0,-61733.0,-72730.0,-84682.0,-97487.0,-111002.0,-125129.0,-139753.0,-154709.0,-169970.0,-185488.0,-201216.0,-217030.0,-232823.0,-248545.0,-264004.0,-279086.0,-293642.0,-307620.0,-321033.0,-333861.0,-346140.0,-357896.0,-369147.0,-379881.0,-390079.0,-399740.0,-408870.0,-417444.0,-425505.0,-433103.0,-440213.0,-446880.0,-453155.0,-459124.0,-464819.0,-470205.0,-475354.0,-480254.0,-484915.0,-489328.0,-493551.0,-497685.0,-501703.0,-505639.0,-509508.0,-513327.0,-517025.0,-520601.0,-524158.0,-527711.0,-531228.0,-534706.0,-538179.0,-541604.0,-544897.0,-548068.0,-551135.0,-554103.0,-556983.0,-559806.0,-562589.0,-565307.0,-567948.0,-570501.0,-572935.0,-575239.0,-577479.0,-579654.0,-581767.0,-583750.0,-585640.0,-587508.0,-589315.0,-591009.0,-592595.0,-594196.0,-595889.0,-597604.0,-599260.0,-600910.0,-602622.0,-604414.0,-606212.0,-608011.0,-609884.0,-611831.0,-613753.0,-615553.0,-617265.0,-618965.0,-620660.0,-622357.0,-624106.0,-625935.0,-627777.0,-629566.0,-631354.0,-633171.0,-634968.0,-636688.0,-638324.0,-639934.0,-641539.0,-643106.0,-644587.0,-645995.0,-647412.0,-648873.0,-650313.0,-651679.0,-653006.0,-654296.0,-655514.0,-656569.0,-657475.0,-658294.0,-659050.0,-659772.0,-660411.0,-661012.0,-661600.0,-662139.0,-662622.0,-663074.0,-663552.0,-663973.0,-664269.0,-664489.0,-664697.0,-664881.0,-665014.0,-665178.0,-665412.0,-665667.0,-665872.0,-666022.0,-666135.0,-666172.0,-666112.0,-665977.0,-665793.0,-665532.0,-665173.0,-664775.0,-664384.0,-663992.0,-663522.0,-662973.0,-662361.0,-661684.0,-660921.0,-660109.0,-659300.0,-658519.0,-657741.0,-656952.0,-656167.0,-655313.0,-654367.0,-653311.0,-652264.0,-651248.0,-650246.0,-649270.0,-648369.0,-647591.0,-646887.0,-646227.0,-645557.0,-644894.0,-644227.0,-643551.0,-642833.0,-642096.0,-641387.0,-640677.0,-639952.0,-639203.0,-638475.0,-637768.0,-637105.0,-636478.0,-635906.0,-635443.0,-635041.0,-634613.0,-634124.0,-633706.0,-633391.0,-633068.0,-632706.0,-632363.0,-632085.0,-631823.0,-631579.0,-631422.0,-631344.0,-631314.0,-631320.0,-631401.0,-631576.0,-631812.0,-632114.0,-632488.0,-632929.0,-633393.0,-633880.0,-634399.0,-634947.0,-635500.0,-636075.0,-636685.0,-637258.0,-637813.0,-638449.0,-639224.0,-640057.0,-640842.0,-641653.0,-642519.0,-643380.0,-644178.0,-644957.0,-645801.0,-646677.0,-647514.0,-648292.0,-649050.0,-649835.0,-650645.0,-651447.0,-652273.0,-653173.0,-654121.0,-655091.0,-656066.0,-657103.0,-658179.0,-659233.0,-660227.0,-661148.0,-661994.0,-662761.0,-663478.0,-664195.0,-664962.0,-665735.0,-666473.0,-667181.0,-667853.0,-668447.0,-668945.0,-669432.0,-669941.0,-670388.0,-670751.0,-671046.0,-671326.0,-671546.0,-671692.0,-671765.0,-671743.0,-671618.0,-671324.0,-670939.0,-670525.0,-670096.0,-669565.0,-668863.0,-668042.0,-667044.0,-665805.0,-664308.0,-662630.0,-660788.0,-658746.0,-656457.0,-653918.0,-651070.0,-647875.0,-644381.0,-640629.0,-636650.0,-632411.0,-627944.0,-623269.0,-618346.0,-613108.0,-607565.0,-601765.0,-595811.0,-589764.0,-583676.0,-577567.0,-571444.0,-565350.0,-559276.0,-553253.0,-547297.0,-541440.0,-535688.0,-530063.0,-524580.0,-519253.0,-514139.0,-509318.0,-504820.0,-500583.0,-496597.0,-492846.0,-489361.0,-486096.0,-483065.0,-480321.0,-477858.0,-475673.0,-473714.0,-471999.0,-470495.0,-469170.0,-468105.0,-467353.0,-466861.0,-466532.0,-466359.0,-466384.0,-466576.0,-466908.0,-467392.0,-468101.0,-469071.0,-470313.0,-471760.0,-473331.0,-475027.0,-476823.0,-478719.0,-480679.0,-482774.0,-485097.0,-487643.0,-490364.0,-493208.0,-496190.0,-499286.0,-502386.0,-505467.0,-508489.0,-511447.0,-514324.0,-517132.0,-520003.0,-522980.0,-526121.0,-529361.0,-532583.0,-535714.0,-538652.0,-541373.0,-543893.0,-546307.0,-548751.0,-551205.0,-553626.0,-555998.0,-558332.0,-560605.0,-562692.0,-564584.0,-566335.0,-567983.0,-569556.0,-571066.0,-572594.0,-574161.0,-575791.0,-577464.0,-579119.0,-580719.0,-582200.0,-583579.0,-584840.0,-586041.0,-587265.0,-588538.0,-589843.0,-591087.0,-592258.0,-593329.0,-594289.0,-595117.0,-595882.0,-596706.0,-597576.0,-598452.0,-599267.0,-600086.0,-600914.0,-601655.0,-602297.0,-602795.0,-603184.0,-603462.0,-603662.0,-603892.0,-604151.0,-604435.0,-604725.0,-605020.0,-605295.0,-605508.0,-605648.0,-605786.0,-605946.0,-606105.0,-606212.0,-606198.0,-606095.0,-605947.0,-605784.0,-605605.0,-605427.0,-605372.0,-605485.0,-605674.0,-605853.0,-605991.0,-606112.0,-606165.0,-606102.0,-606016.0,-605978.0,-605998.0,-606085.0,-606261.0,-606560.0,-606925.0,-607320.0,-607741.0,-608188.0,-608622.0,-608989.0,-609283.0,-609572.0,-609952.0,-610396.0,-610855.0,-611379.0,-612009.0,-612748.0,-613473.0,-614189.0,-614953.0,-615742.0,-616543.0,-617279.0,-617974.0,-618622.0,-619285.0,-619973.0,-620656.0,-621360.0,-622146.0,-623028.0,-623923.0,-624838.0,-625799.0,-626772.0,-627652.0,-628434.0,-629171.0,-629884.0,-630575.0,-631236.0,-631920.0,-632607.0,-633274.0,-633873.0,-634390.0,-634864.0,-635293.0,-635737.0,-636205.0,-636739.0,-637319.0,-637874.0,-638376.0,-638781.0,-639171.0,-639530.0,-639850.0,-640157.0,-640488.0,-640855.0,-641200.0,-641512.0,-641807.0,-642090.0,-642366.0,-642647.0,-642928.0,-643193.0,-643471.0,-643779.0,-644060.0,-644276.0,-644441.0,-644635.0,-644853.0,-645049.0,-645220.0,-645332.0,-645397.0,-645416.0,-645440.0,-645541.0,-645709.0,-645924.0,-646121.0,-646279.0,-646362.0,-646336.0,-646237.0,-646163.0,-646115.0,-646020.0,-645852.0,-645693.0,-645616.0,-645571.0,-645518.0,-645471.0,-645400.0,-645250.0,-644977.0,-644659.0,-644382.0,-644148.0,-643932.0,-643728.0,-643580.0,-643447.0,-643236.0,-642914.0,-642525.0,-642114.0,-641659.0,-641181.0,-640762.0,-640458.0,-640271.0,-640113.0,-639898.0,-639607.0,-639272.0,-638903.0,-638460.0,-637930.0,-637344.0,-636715.0,-636053.0,-635420.0,-634824.0,-634268.0,-633751.0,-633287.0,-632805.0,-632198.0,-631537.0,-630924.0,-630411.0,-629939.0,-629432.0,-628887.0,-628270.0,-627584.0,-626842.0,-626060.0,-625322.0,-624676.0,-624124.0,-623617.0,-623098.0,-622523.0,-621864.0,-621100.0,-620264.0,-619410.0,-618559.0,-617798.0,-617144.0,-616608.0,-616131.0,-615663.0,-615193.0,-614677.0,-614119.0,-613559.0,-613039.0,-612554.0,-612156.0,-611874.0,-611681.0,-611450.0,-611157.0,-610890.0,-610669.0,-610461.0,-610266.0,-610143.0,-610097.0,-610045.0,-609932.0,-609791.0,-609689.0,-609673.0,-609743.0,-609818.0,-609917.0,-610081.0,-610323.0,-610582.0,-610785.0,-611010.0,-611234.0,-611405.0,-611479.0,-611496.0,-611519.0,-611546.0,-611604.0,-611729.0,-611912.0,-612127.0,-612369.0,-612639.0,-612898.0,-613064.0,-613137.0,-613164.0,-613173.0,-613166.0,-613126.0,-613121.0,-613179.0,-613234.0,-613207.0,-613026.0,-612753.0,-612410.0,-611990.0,-611492.0,-610945.0,-610385.0,-609843.0,-609231.0,-608489.0,-607613.0,-606688.0,-605762.0,-604740.0,-603662.0,-602596.0,-601585.0,-600516.0,-599317.0,-598011.0,-596653.0,-595215.0,-593646.0,-592018.0,-590439.0,-588940.0,-587414.0,-585824.0,-584260.0,-582732.0,-581202.0,-579610.0,-578006.0,-576437.0,-574858.0,-573268.0,-571661.0,-570129.0,-568697.0,-567369.0,-566119.0,-564907.0,-563704.0,-562476.0,-561211.0,-559955.0,-558712.0,-557501.0,-556311.0,-555165.0,-554098.0,-553020.0,-551900.0,-550772.0,-549718.0,-548817.0,-548026.0,-547368.0,-546819.0,-546317.0,-545814.0,-545220.0,-544578.0,-543892.0,-543258.0,-542713.0,-542309.0,-542044.0,-541859.0,-541696.0,-541533.0,-541378.0,-541226.0,-541063.0,-540878.0,-540741.0,-540655.0,-540627.0,-540605.0,-540592.0,-540661.0,-540798.0,-541008.0,-541271.0,-541617.0,-542036.0,-542486.0,-542949.0,-543427.0,-543926.0,-544448.0,-544983.0,-545479.0,-545992.0,-546563.0,-547209.0,-547836.0,-548403.0,-548983.0,-549561.0,-550088.0,-550520.0,-550928.0,-551385.0,-551843.0,-552262.0,-552646.0,-553051.0,-553459.0,-553842.0,-554216.0,-554608.0,-555035.0,-555469.0,-555940.0,-556439.0,-556914.0,-557370.0,-557805.0,-558301.0,-558869.0,-559458.0,-560050.0,-560616.0,-561158.0,-561614.0,-561968.0,-562317.0,-562700.0,-563109.0,-563507.0,-563834.0,-564060.0,-564148.0,-564171.0,-564213.0,-564356.0,-564634.0,-565033.0,-565481.0,-565889.0,-566199.0,-566371.0,-566426.0,-566391.0,-566321.0,-566265.0,-566244.0,-566263.0,-566296.0,-566338.0,-566397.0,-566435.0,-566411.0,-566332.0,-566273.0,-566247.0,-566212.0,-566170.0,-566196.0,-566312.0,-566415.0,-566443.0,-566412.0,-566360.0,-566261.0,-566038.0,-565735.0,-565423.0,-565149.0,-564906.0,-564685.0,-564541.0,-564469.0,-564465.0,-564505.0,-564547.0,-564577.0,-564579.0,-564529.0,-564489.0,-564487.0,-564573.0,-564655.0,-564688.0,-564717.0,-564747.0,-564773.0,-564781.0,-564808.0,-564899.0,-565055.0,-565206.0,-565352.0,-565490.0,-565685.0,-565881.0,-566068.0,-566316.0,-566632.0,-566972.0,-567268.0,-567557.0,-567820.0,-568022.0,-568210.0,-568444.0,-568727.0,-569041.0,-569414.0,-569791.0,-570054.0,-570200.0,-570327.0,-570520.0,-570719.0,-570956.0,-571253.0,-571585.0,-571908.0,-572199.0,-572546.0,-572918.0,-573306.0,-573681.0,-574076.0,-574475.0,-574854.0,-575220.0,-575623.0,-576033.0,-576388.0,-576681.0,-576944.0,-577249.0,-577576.0,-577958.0,-578339.0,-578695.0,-578996.0,-579223.0,-579414.0,-579599.0,-579860.0,-580175.0,-580458.0,-580669.0,-580855.0,-581009.0,-581095.0,-581128.0,-581162.0,-581210.0,-581185.0,-581151.0,-581156.0,-581195.0,-581264.0,-581350.0,-581446.0,-581495.0,-581495.0,-581491.0,-581417.0,-581280.0,-581095.0,-580899.0,-580674.0,-580397.0,-580124.0,-579849.0,-579596.0,-579330.0,-579010.0,-578640.0,-578216.0,-577767.0,-577291.0,-576790.0,-576283.0,-575711.0,-575045.0,-574284.0,-573439.0,-572593.0,-571688.0,-570730.0,-569735.0,-568699.0,-567591.0,-566341.0,-565071.0,-563837.0,-562629.0,-561374.0,-560102.0,-558825.0,-557470.0,-555995.0,-554440.0,-552904.0,-551339.0,-549715.0,-548038.0,-546366.0,-544691.0,-543009.0,-541322.0,-539658.0,-538074.0,-536540.0,-535010.0,-533420.0,-531823.0,-530233.0,-528625.0,-527001.0,-525374.0,-523751.0,-522119.0,-520519.0,-518982.0,-517517.0,-516128.0,-514804.0,-513515.0,-512227.0,-510936.0,-509651.0,-508379.0,-507143.0,-505984.0,-504912.0,-503892.0,-502875.0,-501911.0,-501017.0,-500160.0,-499277.0,-498398.0,-497637.0,-496988.0,-496428.0,-495952.0,-495589.0,-495326.0,-495052.0,-494754.0,-494488.0,-494320.0,-494236.0,-494161.0,-494103.0,-494073.0,-494074.0,-494060.0,-494082.0,-494235.0,-494578.0,-495070.0,-495639.0,-496275.0,-496934.0,-497588.0,-498212.0,-498883.0,-499618.0,-500407.0,-501230.0,-502111.0,-503062.0,-504026.0,-504996.0,-505956.0,-506912.0,-507880.0,-508893.0,-509915.0,-510924.0,-511935.0,-513015.0,-514103.0,-515114.0,-516081.0,-517092.0,-518182.0,-519255.0,-520285.0,-521334.0,-522444.0,-523540.0,-524538.0,-525475.0,-526431.0,-527375.0,-528258.0,-529104.0,-529979.0,-530885.0,-531749.0,-532549.0,-533332.0,-534134.0,-534970.0,-535810.0,-536624.0,-537441.0,-538242.0,-539038.0,-539758.0,-540384.0,-540972.0,-541551.0,-542091.0,-542523.0,-542900.0,-543307.0,-543764.0,-544220.0,-544698.0,-545234.0,-545817.0,-546389.0,-546904.0,-547384.0,-547848.0,-548269.0,-548646.0,-548975.0,-549322.0,-549689.0,-550070.0,-550466.0,-550883.0,-551330.0,-551784.0,-552244.0,-552706.0,-553212.0,-553735.0,-554249.0,-554746.0,-555308.0,-555988.0,-556755.0,-557550.0,-558380.0,-559295.0,-560259.0,-561168.0,-562011.0,-562895.0,-563896.0,-564982.0,-566099.0,-567280.0,-568585.0,-570006.0,-571490.0,-573010.0,-574609.0,-576322.0,-578065.0,-579807.0,-581611.0,-583528.0,-585521.0,-587534.0,-589589.0,-591765.0,-594061.0,-596464.0,-598945.0,-601517.0,-604181.0,-606852.0,-609528.0,-612278.0,-615186.0,-618210.0,-621328.0,-624569.0,-627932.0,-631329.0,-634725.0,-638146.0,-641641.0,-645240.0,-648882.0,-652542.0,-656212.0,-660007.0,-663942.0,-667971.0,-672090.0,-676340.0,-680733.0,-685177.0,-689650.0,-694125.0,-698631.0,-703120.0,-707630.0,-712175.0,-716791.0,-721508.0,-726320.0,-731284.0,-736346.0,-741467.0,-746593.0,-751764.0,-757017.0,-762268.0,-767467.0,-772674.0,-777968.0,-783333.0,-788655.0,-793904.0,-799196.0,-804568.0,-809997.0,-815381.0,-820756.0,-826233.0,-831753.0,-837217.0,-842555.0,-847892.0,-853315.0,-858800.0,-864297.0,-869838.0,-875467.0,-881130.0,-886766.0,-892320.0,-897815.0,-903241.0,-908596.0,-913941.0,-919307.0,-924721.0,-930130.0,-935502.0,-940861.0,-946203.0,-951523.0,-956785.0,-962028.0,-967288.0,-972507.0,-977663.0,-982745.0,-987804.0,-992838.0,-997835.0,-1002835.0,-1007845.0,-1012863.0,-1017863.0,-1022845.0,-1027815.0,-1032735.0,-1037535.0,-1042242.0,-1046878.0,-1051500.0,-1056085.0,-1060628.0,-1065173.0,-1069688.0,-1074174.0,-1078601.0,-1083007.0,-1087394.0,-1091720.0,-1095998.0,-1100217.0,-1104355.0,-1108380.0,-1112331.0,-1116231.0,-1120086.0,-1123899.0,-1127716.0,-1131578.0,-1135416.0,-1139229.0,-1142987.0,-1146726.0,-1150452.0,-1154126.0,-1157739.0,-1161224.0,-1164582.0,-1167836.0,-1171019.0,-1174156.0,-1177256.0,-1180357.0,-1183485.0,-1186630.0,-1189720.0,-1192754.0,-1195724.0,-1198611.0,-1201407.0,-1204149.0,-1206879.0,-1209593.0,-1212238.0,-1214831.0,-1217357.0,-1219772.0,-1222052.0,-1224186.0,-1226275.0,-1228346.0,-1230410.0,-1232439.0,-1234459.0,-1236472.0,-1238422.0,-1240277.0,-1242061.0,-1243801.0,-1245472.0,-1247086.0,-1248687.0,-1250299.0,-1251901.0,-1253456.0,-1254909.0,-1256213.0,-1257336.0,-1258326.0,-1259191.0,-1259979.0,-1260718.0,-1261446.0,-1262186.0,-1262953.0,-1263734.0,-1264472.0,-1265178.0,-1265876.0,-1266579.0,-1267189.0,-1267723.0,-1268222.0,-1268751.0,-1269314.0,-1269916.0,-1270592.0,-1271298.0,-1272017.0,-1272677.0,-1273257.0,-1273725.0,-1274131.0,-1274537.0,-1274968.0,-1275424.0,-1275933.0,-1276481.0,-1276991.0,-1277414.0,-1277718.0,-1277936.0,-1278048.0,-1278144.0,-1278264.0,-1278432.0,-1278649.0,-1278879.0,-1279099.0,-1279220.0,-1279293.0,-1279338.0,-1279357.0,-1279323.0,-1279251.0,-1279230.0,-1279200.0,-1279123.0,-1279036.0,-1279041.0,-1279099.0,-1279092.0,-1279039.0,-1279015.0,-1278994.0,-1278834.0,-1278592.0,-1278384.0,-1278228.0,-1278007.0,-1277723.0,-1277476.0,-1277224.0,-1276893.0,-1276497.0,-1276112.0,-1275751.0,-1275393.0,-1275061.0,-1274725.0,-1274333.0,-1273894.0,-1273405.0,-1272861.0,-1272284.0,-1271760.0,-1271346.0,-1270965.0,-1270541.0,-1270089.0,-1269622.0,-1269125.0,-1268540.0,-1267890.0,-1267268.0,-1266681.0,-1266152.0,-1265610.0,-1265056.0,-1264509.0,-1263948.0,-1263332.0,-1262569.0,-1261720.0,-1260833.0,-1259926.0,-1259020.0,-1258151.0,-1257390.0,-1256662.0,-1255913.0,-1255153.0,-1254399.0,-1253637.0,-1252841.0,-1252084.0,-1251383.0,-1250691.0,-1249867.0,-1248911.0,-1247823.0,-1246661.0,-1245498.0,-1244373.0,-1243344.0,-1242370.0,-1241447.0,-1240500.0,-1239475.0,-1238380.0,-1237294.0,-1236275.0,-1235288.0,-1234294.0,-1233262.0,-1232214.0,-1231136.0,-1230036.0,-1228934.0,-1227844.0,-1226756.0,-1225655.0,-1224528.0,-1223359.0,-1222179.0,-1221024.0,-1219904.0,-1218745.0,-1217517.0,-1216203.0,-1214804.0,-1213356.0,-1211923.0,-1210529.0,-1209132.0,-1207733.0,-1206383.0,-1205036.0,-1203647.0,-1202218.0,-1200807.0,-1199417.0,-1197979.0,-1196523.0,-1195065.0,-1193622.0,-1192186.0,-1190778.0,-1189427.0,-1188093.0,-1186772.0,-1185439.0,-1184100.0,-1182712.0,-1181250.0,-1179697.0,-1178020.0,-1176305.0,-1174580.0,-1172880.0,-1171194.0,-1169531.0,-1167936.0,-1166381.0,-1164861.0,-1163353.0,-1161799.0,-1160189.0,-1158552.0,-1156873.0,-1155133.0,-1153313.0,-1151501.0,-1149743.0,-1148031.0,-1146360.0,-1144697.0,-1143030.0,-1141398.0,-1139767.0,-1138097.0,-1136346.0,-1134565.0,-1132789.0,-1130977.0,-1129197.0,-1127419.0,-1125626.0,-1123816.0,-1122016.0,-1120235.0,-1118374.0,-1116468.0,-1114588.0,-1112743.0,-1110916.0,-1109070.0,-1107236.0,-1105406.0,-1103536.0,-1101576.0,-1099570.0,-1097586.0,-1095626.0,-1093638.0,-1091635.0,-1089687.0,-1087748.0,-1085729.0,-1083671.0,-1081659.0,-1079660.0,-1077590.0,-1075469.0,-1073348.0,-1071190.0,-1068955.0,-1066711.0,-1064476.0,-1062244.0,-1060007.0,-1057793.0,-1055587.0,-1053395.0,-1051305.0,-1049271.0,-1047227.0,-1045147.0,-1043093.0,-1041071.0,-1038944.0,-1036756.0,-1034658.0,-1032665.0,-1030694.0,-1028605.0,-1026449.0,-1024218.0,-1021879.0,-1019422.0,-1016880.0,-1014353.0,-1011886.0,-1009559.0,-1007303.0,-1005098.0,-1002958.0,-1000840.0,-998677.0,-996384.0,-994028.0,-991665.0,-989230.0,-986724.0,-984237.0,-981823.0,-979437.0,-976985.0,-974530.0,-972134.0,-969768.0,-967346.0,-964929.0,-962562.0,-960201.0,-957766.0,-955257.0,-952747.0,-950165.0,-947562.0,-944980.0,-942483.0,-940033.0,-937598.0,-935195.0,-932756.0,-930298.0,-927808.0,-925333.0,-922834.0,-920301.0,-917761.0,-915208.0,-912650.0,-910026.0,-907388.0,-904777.0,-902193.0,-899597.0,-896983.0,-894441.0,-891971.0,-889483.0,-886980.0,-884477.0,-881983.0,-879418.0,-876756.0,-874054.0,-871301.0,-868494.0,-865696.0,-862971.0,-860301.0,-857620.0,-854936.0,-852289.0,-849614.0,-846879.0,-844133.0,-841443.0,-838759.0,-836064.0,-833374.0,-830668.0,-827884.0,-824984.0,-822083.0,-819206.0,-816391.0,-813614.0,-810847.0,-808112.0,-805378.0,-802663.0,-799892.0,-797100.0,-794329.0,-791566.0,-788786.0,-785950.0,-783046.0,-780099.0,-777189.0,-774381.0,-771630.0,-768856.0,-766060.0,-763250.0,-760387.0,-757470.0,-754558.0,-751674.0,-748797.0,-745897.0,-742980.0,-740040.0,-737035.0,-733961.0,-730844.0,-727715.0,-724578.0,-721418.0,-718228.0,-715043.0,-711919.0,-708864.0,-705862.0,-702834.0,-699787.0,-696737.0,-693694.0,-690651.0,-687579.0,-684491.0,-681389.0,-678276.0,-675110.0,-671848.0,-668517.0,-665172.0,-661883.0,-658620.0,-655394.0,-652214.0,-649062.0,-645883.0,-642590.0,-639254.0,-635904.0,-632574.0,-629244.0,-625959.0,-622764.0,-619579.0,-616371.0,-613129.0,-609900.0,-606667.0,-603387.0,-600084.0,-596755.0,-593413.0,-590053.0,-586672.0,-583296.0,-579962.0,-576712.0,-573488.0,-570242.0,-566985.0,-563752.0,-560480.0,-557136.0,-553770.0,-550409.0,-547034.0,-543608.0,-540208.0,-536821.0,-533410.0,-529933.0,-526446.0,-523015.0,-519585.0,-516113.0,-512613.0,-509205.0,-505843.0,-502405.0,-498861.0,-495352.0,-491915.0,-488453.0,-484911.0,-481345.0,-477853.0,-474339.0,-470764.0,-467128.0,-463571.0,-460084.0,-456587.0,-453064.0,-449485.0,-445922.0,-442281.0,-438634.0,-435003.0,-431406.0,-427836.0,-424219.0,-420574.0,-416889.0,-413149.0,-409360.0,-405560.0,-401777.0,-398008.0,-394183.0,-390316.0,-386424.0,-382530.0,-378649.0,-374737.0,-370802.0,-366851.0,-362910.0,-358941.0,-354911.0,-350883.0,-346892.0,-342953.0,-338966.0,-334902.0,-330803.0,-326681.0,-322547.0,-318368.0,-314176.0,-310009.0,-305865.0,-301791.0,-297769.0,-293768.0,-289736.0,-285687.0,-281633.0,-277536.0,-273387.0,-269246.0,-265187.0,-261141.0,-257017.0,-252803.0,-248570.0,-244344.0,-240114.0,-235922.0,-231802.0,-227697.0,-223562.0,-219382.0,-215201.0,-211001.0,-206782.0,-202614.0,-198498.0,-194415.0,-190304.0,-186216.0,-182192.0,-178225.0,-174280.0,-170382.0,-166543.0,-162706.0,-158846.0,-154970.0,-151127.0,-147264.0,-143394.0,-139568.0,-135730.0,-131832.0,-127891.0,-124009.0,-120213.0,-116444.0,-112716.0,-109012.0,-105287.0,-101485.0,-97629.0,-93815.0,-90100.0,-86486.0,-82903.0,-79322.0,-75721.0,-72057.0,-68315.0,-64550.0,-60890.0,-57368.0,-53983.0,-50731.0,-47617.0,-44557.0,-41439.0,-38226.0,-34965.0,-31656.0,-28273.0,-24861.0,-21513.0,-18267.0,-15012.0,-11715.0,-8436.0,-5248.0,-2132.0,946.0,3928.0,6788.0,9599.0,12485.0,15472.0,18515.0,21551.0,24550.0,27485.0,30330.0,33119.0,35893.0,38657.0,41428.0,44215.0,47059.0,49917.0,52715.0,55424.0,58083.0,60753.0,63414.0,66030.0,68600.0,71222.0,73904.0,76593.0,79201.0,81791.0,84451.0,87206.0,89998.0,92778.0,95577.0,98435.0,101368.0,104287.0,107164.0,110040.0,112934.0,115794.0,118571.0,121327.0,124095.0,126859.0,129649.0,132474.0,135363.0,138311.0,141308.0,144331.0,147328.0,150285.0,153200.0,156103.0,159052.0,162030.0,165008.0,167992.0,171049.0,174157.0,177240.0,180263.0,183251.0,186213.0,189077.0,191869.0,194640.0,197457.0,200329.0,203219.0,206170.0,209187.0,212221.0,215216.0,218176.0,221205.0,224266.0,227313.0,230331.0,233390.0,236459.0,239447.0,242369.0,245304.0,248324.0,251384.0,254471.0,257591.0,260682.0,263676.0,266582.0,269478.0,272355.0,275159.0,277904.0,280605.0,283267.0,285865.0,288449.0,291075.0,293746.0,296449.0,299125.0,301790.0,304493.0,307214.0,309912.0,312556.0,315171.0,317732.0,320177.0,322500.0,324735.0,326927.0,329144.0,331391.0,333646.0,335886.0,338106.0,340285.0,342415.0,344505.0,346593.0,348725.0,350929.0,353215.0,355477.0,357659.0,359774.0,361847.0,363884.0,365881.0,367865.0,369848.0,371819.0,373777.0,375740.0,377676.0,379628.0,381601.0,383599.0,385563.0,387445.0,389312.0,391183.0,393081.0,394960.0,396816.0,398692.0,400582.0,402453.0,404256.0,405999.0,407721.0,409429.0,411107.0,412736.0,414390.0,416101.0,417859.0,419598.0,421287.0,422983.0,424629.0,426202.0,427689.0,429105.0,430527.0,431939.0,433373.0,434807.0,436232.0,437666.0,439053.0,440375.0,441634.0,442872.0,444136.0,445432.0,446793.0,448202.0,449636.0,451042.0,452336.0,453481.0,454508.0,455475.0,456398.0,457259.0,458076.0,458860.0,459584.0,460256.0,460896.0,461541.0,462191.0,462862.0,463535.0,464157.0,464675.0,465102.0,465498.0,465886.0,466241.0,466503.0,466656.0,466756.0,466835.0,466873.0,466852.0,466825.0,466850.0,466919.0,466967.0,467010.0,467076.0,467196.0,467359.0,467545.0,467761.0,467949.0,468121.0,468287.0,468435.0,468505.0,468480.0,468464.0,468480.0,468450.0,468314.0,468181.0,468125.0,468093.0,467997.0,467854.0,467767.0,467759.0,467801.0,467822.0,467790.0,467729.0,467610.0,467392.0,467122.0,466870.0,466665.0,466438.0,466239.0,466127.0,466062.0,465969.0,465874.0,465849.0,465857.0,465779.0,465581.0,465334.0,465100.0,464840.0,464490.0,464087.0,463691.0,463365.0,463037.0,462708.0,462430.0,462240.0,462098.0,461870.0,461587.0,461332.0,461117.0,460893.0,460607.0,460307.0,459997.0,459649.0,459239.0,458779.0,458294.0,457829.0,457418.0,457059.0,456716.0,456348.0,455927.0,455433.0,454823.0,454081.0,453272.0,452450.0,451694.0,450963.0,450267.0,449590.0,448924.0,448260.0,447534.0,446753.0,445906.0,445031.0,444133.0,443240.0,442378.0,441557.0,440778.0,440046.0,439337.0,438613.0,437862.0,437113.0,436360.0,435585.0,434792.0,434011.0,433253.0,432482.0,431738.0,431009.0,430282.0,429515.0,428723.0,427957.0,427194.0,426449.0,425726.0,425012.0,424317.0,423604.0,422856.0,422014.0,421078.0,420103.0,419118.0,418167.0,417264.0,416428.0,415672.0,414947.0,414177.0,413322.0,412441.0,411620.0,410817.0,409991.0,409174.0,408432.0,407712.0,406888.0,405960.0,405009.0,404091.0,403169.0,402237.0,401340.0,400513.0,399722.0,398920.0,398058.0,397168.0,396294.0,395485.0,394738.0,393994.0,393258.0,392533.0,391806.0,391018.0,390156.0,389280.0,388450.0,387645.0,386819.0,385941.0,385067.0,384236.0,383428.0,382612.0,381792.0,381001.0,380200.0,379357.0,378473.0,377608.0,376797.0,376025.0,375260.0,374489.0,373690.0,372855.0,371966.0,371027.0,370078.0,369104.0,368121.0,367160.0,366302.0,365525.0,364782.0,364097.0,363460.0,362792.0,361996.0,361163.0,360347.0,359456.0,358454.0,357448.0,356517.0,355613.0,354665.0,353751.0,352919.0,352072.0,351144.0,350114.0,349123.0,348195.0,347295.0,346388.0,345504.0,344697.0,343872.0,342934.0,341871.0,340781.0,339739.0,338731.0,337693.0,336663.0,335718.0,334862.0,334027.0,333133.0,332229.0,331305.0,330284.0,329165.0,327980.0,326831.0,325718.0,324657.0,323693.0,322791.0,321891.0,320896.0,319842.0,318777.0,317683.0,316557.0,315437.0,314373.0,313310.0,312190.0,311070.0,310025.0,309041.0,308066.0,307095.0,306169.0,305259.0,304302.0,303275.0,302224.0,301182.0,300165.0,299184.0,298237.0,297305.0,296352.0,295395.0,294408.0,293370.0,292264.0,291120.0,289984.0,288894.0,287892.0,286937.0,286021.0,285114.0,284229.0,283335.0,282385.0,281391.0,280377.0,279402.0,278445.0,277473.0,276475.0,275520.0,274618.0,273771.0,272918.0,272065.0,271210.0,270263.0,269187.0,267977.0,266764.0,265610.0,264544.0,263601.0,262784.0,262068.0,261384.0,260647.0,259793.0,258837.0,257833.0,256799.0,255701.0,254557.0,253442.0,252412.0,251438.0,250460.0,249470.0,248530.0,247711.0,246935.0,246132.0,245291.0,244470.0,243663.0,242840.0,241992.0,241155.0,240330.0,239502.0,238681.0,237810.0,236876.0,235856.0,234784.0,233725.0,232668.0,231626.0,230627.0,229747.0,228992.0,228280.0,227545.0,226745.0,225850.0,224861.0,223811.0,222776.0,221776.0,220811.0,219883.0,218973.0,218128.0,217313.0,216494.0,215661.0,214790.0,213906.0,212975.0,211963.0,210935.0,209959.0,209140.0,208389.0,207578.0,206666.0,205681.0,204658.0,203611.0,202587.0,201660.0,200860.0,200155.0,199456.0,198693.0,197878.0,197061.0,196282.0,195503.0,194751.0,193999.0,193213.0,192358.0,191456.0,190564.0,189676.0,188775.0,187838.0,186904.0,185990.0,185064.0,184044.0,182977.0,181942.0,180919.0,179897.0,178956.0,178249.0,177681.0,177130.0,176584.0,176054.0,175462.0,174652.0,173712.0,172776.0,171959.0,171186.0,170411.0,169652.0,168902.0,168170.0,167338.0,166429.0,165508.0,164638.0,163823.0,162973.0,162115.0,161309.0,160540.0,159796.0,159060.0,158331.0,157589.0,156756.0,155868.0,154940.0,153993.0,153057.0,152162.0,151345.0,150506.0,149648.0,148808.0,148054.0,147356.0,146660.0,145997.0,145340.0,144664.0,143896.0,143043.0,142151.0,141264.0,140400.0,139551.0,138756.0,138027.0,137295.0,136557.0,135867.0,135210.0,134520.0,133743.0,133004.0,132315.0,131578.0,130756.0,129886.0,129105.0,128338.0,127560.0,126759.0,126030.0,125374.0,124662.0,123854.0,122959.0,122093.0,121244.0,120425.0,119659.0,118951.0,118240.0,117460.0,116633.0,115815.0,114995.0,114195.0,113410.0,112639.0,111845.0,111035.0,110225.0,109437.0,108744.0,108195.0,107700.0,107117.0,106417.0,105649.0,104840.0,103988.0,103139.0,102344.0,101632.0,100982.0,100335.0,99657.0,98915.0,98154.0,97394.0,96657.0,95956.0,95256.0,94576.0,93929.0,93321.0,92661.0,91883.0,90995.0,90091.0,89219.0,88375.0,87563.0,86799.0,86135.0,85534.0,84927.0,84271.0,83604.0,82979.0,82380.0,81812.0,81240.0,80608.0,79883.0,79123.0,78410.0,77687.0,76901.0,76116.0,75451.0,74885.0,74280.0,73635.0,73035.0,72493.0,71920.0,71242.0,70500.0,69728.0,68942.0,68160.0,67361.0,66558.0,65804.0,65113.0,64444.0,63732.0,63016.0,62328.0,61644.0,60975.0,60307.0,59709.0,59105.0,58496.0,57836.0,57096.0,56332.0,55557.0,54854.0,54206.0,53625.0,53105.0,52617.0,52090.0,51474.0,50774.0,50038.0,49327.0,48638.0,47967.0,47308.0,46693.0,46116.0,45498.0,44862.0,44270.0,43738.0,43131.0,42423.0,41687.0,40961.0,40203.0,39410.0,38708.0,38097.0,37507.0,36881.0,36255.0,35651.0,35012.0,34390.0,33825.0,33331.0,32815.0,32262.0,31711.0,31062.0,30298.0,29433.0,28623.0,27897.0,27213.0,26583.0,26005.0,25457.0,24868.0,24196.0,23506.0,22843.0,22232.0,21658.0,21121.0,20635.0,20153.0,19674.0,19144.0,18520.0,17807.0,17048.0,16316.0,15585.0,14869.0,14209.0,13628.0,13100.0,12554.0,11935.0,11275.0,10635.0,10021.0,9439.0,8888.0,8414.0,7959.0,7435.0,6829.0,6155.0,5445.0,4723.0,4021.0,3382.0,2780.0,2167.0,1518.0,871.0,228.0,-416.0,-1097.0,-1723.0,-2262.0,-2787.0,-3338.0,-3902.0,-4388.0,-4878.0,-5408.0,-5962.0,-6499.0,-6974.0,-7422.0,-7836.0,-8238.0,-8606.0,-8968.0,-9396.0,-9956.0,-10639.0,-11375.0,-12136.0,-12864.0,-13578.0,-14241.0,-14827.0,-15391.0,-15921.0,-16425.0,-16896.0,-17385.0,-17934.0,-18474.0,-19025.0,-19617.0,-20199.0,-20688.0,-21129.0,-21667.0,-22314.0,-22934.0,-23509.0,-24128.0,-24793.0,-25394.0,-25888.0,-26385.0,-26892.0,-27352.0,-27728.0,-28113.0,-28544.0,-28966.0,-29376.0,-29832.0,-30386.0,-30987.0,-31603.0,-32250.0,-32955.0,-33706.0,-34445.0,-35087.0,-35618.0,-36137.0,-36723.0,-37331.0,-37883.0,-38410.0,-38962.0,-39493.0,-39952.0,-40381.0,-40861.0,-41428.0,-42053.0,-42706.0,-43356.0,-43941.0,-44491.0,-45027.0,-45580.0,-46133.0,-46664.0,-47209.0,-47715.0,-48183.0,-48615.0,-49037.0,-49487.0,-49981.0,-50551.0,-51160.0,-51746.0,-52318.0,-52905.0,-53481.0,-54009.0,-54488.0,-54958.0,-55433.0,-55874.0,-56286.0,-56693.0,-57090.0,-57502.0,-57941.0,-58424.0,-58896.0,-59322.0,-59738.0,-60187.0,-60637.0,-61066.0,-61494.0,-61955.0,-62445.0,-62939.0,-63431.0,-63914.0,-64406.0,-64888.0,-65341.0,-65744.0,-66149.0,-66615.0,-67105.0,-67580.0,-68051.0,-68579.0,-69141.0,-69671.0,-70186.0,-70777.0,-71410.0,-72013.0,-72583.0,-73168.0,-73783.0,-74347.0,-74904.0,-75456.0,-75960.0,-76387.0,-76769.0,-77150.0,-77511.0,-77926.0,-78467.0,-79118.0,-79759.0,-80369.0,-80984.0,-81546.0,-82000.0,-82350.0,-82668.0,-82976.0,-83279.0,-83613.0,-84006.0,-84403.0,-84814.0,-85258.0,-85750.0,-86229.0,-86646.0,-87076.0,-87558.0,-88101.0,-88610.0,-89061.0,-89476.0,-89896.0,-90326.0,-90757.0,-91216.0,-91708.0,-92242.0,-92752.0,-93264.0,-93774.0,-94297.0,-94817.0,-95327.0,-95850.0,-96310.0,-96683.0,-96964.0,-97233.0,-97498.0,-97759.0,-98069.0,-98446.0,-98893.0,-99370.0,-99896.0,-100495.0,-101119.0,-101740.0,-102336.0,-102934.0,-103488.0,-103984.0,-104469.0,-104982.0,-105518.0,-105984.0,-106409.0,-106794.0,-107132.0,-107390.0,-107593.0,-107857.0,-108251.0,-108755.0,-109300.0,-109846.0,-110412.0,-110967.0,-111431.0,-111840.0,-112231.0,-112636.0,-113026.0,-113444.0,-113947.0,-114460.0,-114993.0,-115556.0,-116139.0,-116648.0,-117040.0,-117403.0,-117750.0,-118046.0,-118272.0,-118489.0,-118753.0,-119076.0,-119479.0,-119955.0,-120522.0,-121071.0,-121548.0,-121884.0,-122100.0],"type":"scatter"},{"customdata":[[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63],[88315362378.0,12.63]],"fill":"tozeroy","fillcolor":"rgb(66, 59, 130)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME1","line":{"color":"rgb(66, 59, 130)","width":1},"mode":"lines","name":"DHBAL","visible":true,"x":[12.449366666666666,12.458423905723905,12.467481144781145,12.476538383838383,12.485595622895623,12.494652861952861,12.5037101010101,12.51276734006734,12.521824579124578,12.530881818181818,12.539939057239057,12.548996296296297,12.558053535353535,12.567110774410773,12.576168013468013,12.585225252525252,12.594282491582492,12.60333973063973,12.612396969696968,12.621454208754209,12.630511447811447,12.639568686868687,12.648625925925925,12.657683164983165,12.666740404040404,12.675797643097642,12.684854882154882,12.69391212121212,12.70296936026936,12.712026599326599,12.721083838383837,12.730141077441077,12.739198316498316,12.748255555555556,12.757312794612794,12.766370033670032,12.775427272727272,12.78448451178451,12.79354175084175,12.80259898989899,12.81165622895623,12.820713468013468,12.829770707070706,12.838827946127946,12.847885185185184,12.856942424242424,12.865999663299663,12.875056902356901,12.884114141414141,12.89317138047138,12.90222861952862,12.911285858585858,12.920343097643098,12.929400336700336,12.938457575757575,12.947514814814815,12.956572053872053,12.965629292929293,12.974686531986531,12.98374377104377,12.99280101010101,13.001858249158248,13.010915488215488,13.019972727272727,13.029029966329965,13.038087205387205,13.047144444444443,13.056201683501683,13.065258922558922,13.074316161616162,13.0833734006734,13.092430639730638,13.101487878787879,13.110545117845117,13.119602356902357,13.128659595959595,13.137716835016835,13.146774074074074,13.155831313131312,13.164888552188552,13.17394579124579,13.18300303030303,13.192060269360269,13.201117508417507,13.210174747474747,13.219231986531986,13.228289225589226,13.237346464646464,13.246403703703702,13.255460942760942,13.26451818181818,13.27357542087542,13.28263265993266,13.291689898989898,13.300747138047138,13.309804377104376,13.318861616161616,13.327918855218854,13.336976094276094,13.346033333333333],"y":[340669.9572020279,472097.2021909998,643302.2451167047,861955.3254524039,1135639.5189961968,1471235.8084274011,1874174.9374665848,2347599.535749257,2891505.0403404236,3501950.008752736,4170440.9880359797,4883599.809936315,5623208.745597984,6366700.098930442,7088112.960079347,7759485.337890352,8352591.719262772,8840882.924822673,9201445.8649003,9416782.963383188,9476219.161183279,9376779.02272213,9123433.61046625,8728688.609735291,8211561.215243372,7596062.312425979,6909352.537188736,6179768.91800198,5434920.161856834,4700024.8217007695,3996623.006245489,3341736.992358929,2747498.0836330485,2221204.679907168,1765736.1612021374,1380222.4663167787,1060860.8513920472,801777.3873119614,595847.654093111,435414.3256822266,312864.46821545705,221052.69947136127,153575.32813846198,104913.92397529668,70474.31435121228,46549.458955443355,30233.224258894774,19308.135733921936,12125.01461065936,7487.041626375365,4545.946020926714,2714.090663820158,1593.3474049917352,919.7772287147759,522.0845953371386,291.39705247360024,159.92467604030654,86.30418475685515,45.79670992848971,23.895864851895848,12.260192166211873,6.185258447476654,3.0683470142964686,1.4967082332876496,0.7178866390982274,0.33857948740901506,0.15701873184054427,0.07160252498352948,0.032106373914705576,0.01415598946280926,0.0061372703113231775,0.0026163529028387354,0.001096739394288226,0.00045206055480987914,0.0001832212466335003,7.301987808452654e-05,2.861491254909044e-05,1.1026299688567457e-05,4.177853539336378e-06,1.5565485804617008e-06,5.702406828374469e-07,2.054186005242558e-07,7.27624617367203e-08,2.5343176687649015e-08,8.679621134288659e-09,2.922984655927795e-09,9.679175227459735e-10,3.1516372042337637e-10,1.0090673047999713e-10,3.1768016560286215e-11,9.834360312139938e-12,2.9935614754491103e-12,8.960170961441601e-13,2.6371234511537523e-13,7.631864923817338e-14,2.171785550398595e-14,6.077000234630697e-15,1.6720436723439982e-15,4.523681604724917e-16,1.2034345975483709e-16],"type":"scatter"},{"customdata":[[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94],[2737325228859.0,13.94]],"fill":"tozeroy","fillcolor":"rgb(60, 77, 138)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME1","line":{"color":"rgb(60, 77, 138)","width":1},"mode":"lines","name":"N6-benzyl-ATP","visible":true,"x":[13.749366666666667,13.755124242424243,13.760881818181819,13.766639393939395,13.77239696969697,13.778154545454546,13.783912121212122,13.789669696969698,13.795427272727274,13.80118484848485,13.806942424242424,13.8127,13.818457575757575,13.824215151515151,13.829972727272727,13.835730303030303,13.841487878787879,13.847245454545455,13.85300303030303,13.858760606060606,13.864518181818182,13.870275757575758,13.876033333333334,13.88179090909091,13.887548484848486,13.893306060606061,13.899063636363637,13.904821212121213,13.910578787878789,13.916336363636365,13.922093939393939,13.927851515151515,13.93360909090909,13.939366666666666,13.945124242424242,13.950881818181818,13.956639393939394,13.96239696969697,13.968154545454546,13.973912121212122,13.979669696969697,13.985427272727273,13.99118484848485,13.996942424242425,14.0027,14.008457575757577,14.014215151515153,14.019972727272728,14.025730303030304,14.03148787878788,14.037245454545456,14.04300303030303,14.048760606060606,14.054518181818182,14.060275757575758,14.066033333333333,14.07179090909091,14.077548484848485,14.083306060606061,14.089063636363637,14.094821212121213,14.100578787878788,14.106336363636364,14.11209393939394,14.117851515151516,14.123609090909092,14.129366666666668,14.135124242424244,14.14088181818182,14.146639393939395,14.15239696969697,14.158154545454545,14.163912121212121,14.169669696969697,14.175427272727273,14.181184848484849,14.186942424242424,14.1927,14.198457575757576,14.204215151515152,14.209972727272728,14.215730303030304,14.22148787878788,14.227245454545455,14.233003030303031,14.238760606060607,14.244518181818183,14.250275757575759,14.256033333333335,14.261790909090909,14.267548484848486,14.27330606060606,14.279063636363636,14.284821212121212,14.290578787878788,14.296336363636364,14.30209393939394,14.307851515151516,14.313609090909091,14.319366666666667],"y":[1372123.3892276278,1914280.8309667532,2643908.3461367497,3615059.1143086855,4893422.034245993,6557498.5807049135,8699454.070842165,11425469.521657707,14855400.84581827,19121543.948196467,24366311.911607083,30738658.130385343,38389130.234661646,47463515.55491473,58095138.97004012,70395994.62326525,84447027.3103591,100288017.26820439,117907650.78700535,137234463.86722097,158129411.90018383,180380831.16386056,203702507.01214123,227735443.177766,252053737.26425397,276174717.3450399,299573199.24405044,321699405.91937786,341999776.7911952,359939615.64963543,375026310.01919997,386831727.5204747,395012373.6005111,399325988.02725524,399643461.61790544,395955255.31253153,388371876.27603453,377118377.87161684,362523265.4680173,345002571.1698434,325040174.4294539,303165666.0652407,279931164.2742059,255888487.82979944,231567980.12812817,207460074.43841052,184000419.6586196,161559075.7224943,140433968.45677137,120848493.10069269,102952897.18143229,86828873.75888933,72496664.49154952,59923910.31757965,49035490.90584359,39723652.29669719,31857821.782496687,25293635.005299017,19880837.629220523,15469859.58227448,11916983.204617659,9088130.300666688,6861372.93593451,5128327.684306026,3794624.1996328263,2779649.511829703,2015763.4575242165,1447162.696498515,1028545.273340379,723698.593403908,504104.18924180965,347625.11603563325,237317.764867166,160390.12067146372,107313.22365996387,71081.58944141958,46611.0924576661,30258.66029455618,19446.362253501113,12372.438676440646,7792.925248605597,4859.302921403916,2999.685322755622,1833.1824267573277,1109.0827097596723,664.2788827504482,393.8811711109636,231.2108747162317,134.36295766598167,77.2999327145886,44.025767812944046,24.823500515187764,13.856302994945706,7.657023520690962,4.188908298279143,2.26866299548384,1.2163747146423325,0.6456438853584,0.33927117529240985,0.17649367508877145],"type":"scatter"},{"customdata":[[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69],[1253534679351.0,15.69]],"fill":"tozeroy","fillcolor":"rgb(47, 109, 142)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME1","line":{"color":"rgb(47, 109, 142)","width":1},"mode":"lines","name":"ortho-nitrobenzyl-DL-homocysteine","visible":true,"x":[15.489366666666665,15.496336363636363,15.503306060606059,15.510275757575757,15.517245454545453,15.52421515151515,15.531184848484846,15.538154545454544,15.545124242424242,15.552093939393938,15.559063636363636,15.566033333333332,15.57300303030303,15.579972727272725,15.586942424242423,15.59391212121212,15.600881818181817,15.607851515151514,15.61482121212121,15.621790909090908,15.628760606060606,15.635730303030302,15.6427,15.649669696969696,15.656639393939393,15.66360909090909,15.670578787878787,15.677548484848485,15.68451818181818,15.691487878787878,15.698457575757574,15.705427272727272,15.712396969696968,15.719366666666666,15.726336363636364,15.73330606060606,15.740275757575757,15.747245454545453,15.754215151515151,15.761184848484847,15.768154545454545,15.775124242424242,15.782093939393938,15.789063636363636,15.796033333333332,15.80300303030303,15.809972727272726,15.816942424242423,15.823912121212121,15.830881818181817,15.837851515151515,15.84482121212121,15.851790909090909,15.858760606060606,15.865730303030302,15.8727,15.879669696969696,15.886639393939394,15.89360909090909,15.900578787878787,15.907548484848485,15.914518181818181,15.921487878787879,15.928457575757575,15.935427272727273,15.942396969696969,15.949366666666666,15.956336363636364,15.96330606060606,15.970275757575758,15.977245454545454,15.984215151515151,15.991184848484847,15.998154545454545,16.00512424242424,16.01209393939394,16.019063636363637,16.026033333333334,16.03300303030303,16.039972727272726,16.046942424242424,16.05391212121212,16.06088181818182,16.067851515151514,16.07482121212121,16.08179090909091,16.088760606060607,16.095730303030304,16.1027,16.109669696969696,16.116639393939394,16.123609090909092,16.130578787878786,16.137548484848484,16.14451818181818,16.15148787878788,16.158457575757577,16.16542727272727,16.17239696969697,16.179366666666667],"y":[273900.6136098157,431300.4358791277,668117.1120010789,1018148.4385057389,1526354.4956038408,2251051.997862785,3265889.2270034086,4661258.405965941,6544714.637560799,9039908.967081327,12283530.40750841,16419811.218805801,21592300.731348045,27932865.309555307,35548220.09381935,44504716.597199045,54812552.351254195,66410969.057420254,79156287.20941672,92814711.71144354,107061674.26999244,121489025.28706816,135620665.4226919,148936279.3671979,160901812.42155954,171004357.8580193,178788354.06977075,183889563.0066199,186063309.50519812,185203934.4160637,181353307.9608054,174697448.15703,165551624.59786806,154335608.6316495,141541774.88446343,127699424.9919112,113338915.43912928,98958925.14506617,84999562.97115551,71823112.6127464,59703192.9638315,48822127.45245272,39275493.29423856,31082246.688995592,24198528.84580347,18533239.191740334,13963667.66714054,10349836.370156359,7546633.680599139,5413259.685172662,3819884.7494214606,2651718.7806588938,1810883.3486037462,1216576.1337783032,804033.0775108915,522750.36577249167,334349.42543706053,210374.27065360706,130217.83535904392,79292.86797635097,47498.903830166884,27991.028362677924,16227.06320243065,9254.36889697659,5192.057497047194,2865.6159471271217,1555.9021601405507,831.0600167485976,436.6850251603551,225.7303819714408,114.78827774620528,57.42365999734179,28.259859965648044,13.681538839290958,6.516069324117781,3.0529679899107802,1.4071636625501682,0.6380471585217666,0.28460776993938613,0.12488967403222849,0.05391282858033269,0.02289515089904162,0.009564906053001537,0.003931006061085614,0.0015893243030253774,0.0006321310768507392,0.00024733613223234147,9.520369292624399e-05,3.605004663567257e-05,1.3428999978294321e-05,4.921158145005438e-06,1.7740946098033215e-06,6.29175839699481e-07,2.1950939090107383e-07,7.53390219998869e-08,2.5437396409388294e-08,8.44911349625232e-09,2.760803114885412e-09,8.87453353424228e-10,2.8063474512235137e-10],"type":"scatter"},{"customdata":[[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21],[1360608965.0,23.21]],"fill":"tozeroy","fillcolor":"rgb(253, 231, 37)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME1","line":{"color":"rgb(253, 231, 37)","width":1},"mode":"lines","name":"DHBAL O3","visible":true,"x":[23.1527,23.21495589225589,23.277211784511785,23.339467676767676,23.40172356902357,23.46397946127946,23.526235353535352,23.588491245791246,23.650747138047137,23.713003030303028,23.775258922558923,23.837514814814813,23.899770707070708,23.9620265993266,24.02428249158249,24.086538383838384,24.148794276094275,24.21105016835017,24.27330606060606,24.33556195286195,24.397817845117846,24.460073737373737,24.522329629629628,24.584585521885522,24.646841414141413,24.709097306397307,24.7713531986532,24.83360909090909,24.895864983164984,24.958120875420875,25.02037676767677,25.08263265993266,25.14488855218855,25.207144444444445,25.269400336700336,25.331656228956227,25.39391212121212,25.456168013468012,25.518423905723907,25.580679797979798,25.64293569023569,25.705191582491583,25.767447474747474,25.82970336700337,25.89195925925926,25.95421515151515,26.016471043771045,26.078726936026936,26.14098282828283,26.20323872053872,26.265494612794612,26.327750505050506,26.390006397306397,26.452262289562288,26.514518181818183,26.576774074074073,26.639029966329964,26.70128585858586,26.76354175084175,26.825797643097644,26.888053535353535,26.950309427609426,27.01256531986532,27.07482121212121,27.137077104377106,27.199332996632997,27.261588888888888,27.323844781144782,27.386100673400673,27.448356565656567,27.51061245791246,27.57286835016835,27.635124242424244,27.697380134680134,27.75963602693603,27.82189191919192,27.88414781144781,27.946403703703705,28.008659595959596,28.07091548821549,28.13317138047138,28.195427272727272,28.257683164983163,28.319939057239058,28.38219494949495,28.444450841750843,28.506706734006734,28.568962626262625,28.63121851851852,28.69347441077441,28.755730303030305,28.817986195286196,28.880242087542086,28.94249797979798,29.004753872053872,29.067009764309766,29.129265656565657,29.191521548821548,29.253777441077442,29.316033333333333],"y":[24194.394266345975,537861.7437725681,6225.067647788296,0.0375089591355785,1.1766396201235367e-10,1.9216285431125816e-22,1.6338528185710379e-37,7.232258492252785e-56,1.6666809300558936e-77,1.9996247809900754e-102,1.2489989461292161e-130,4.0615626004123656e-162,6.876093104186966e-197,6.0604917368949854e-235,2.7809392137724365e-276,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"type":"scatter"},{"hovertext":"N6BENZYLADOONB_RNCOMT_TIME1","line":{"color":"white","dash":"solid","width":1},"mode":"lines","name":"Signal","visible":true,"x":[0.0027,0.006033333333333333,0.009366666666666667,0.0127,0.016033333333333333,0.019366666666666664,0.0227,0.026033333333333335,0.029366666666666666,0.0327,0.036033333333333334,0.03936666666666667,0.042699999999999995,0.046033333333333336,0.04936666666666667,0.0527,0.05603333333333334,0.059366666666666665,0.0627,0.06603333333333333,0.06936666666666666,0.0727,0.07603333333333334,0.07936666666666665,0.0827,0.08603333333333334,0.08936666666666666,0.0927,0.09603333333333333,0.09936666666666666,0.1027,0.10603333333333334,0.10936666666666667,0.1127,0.11603333333333334,0.11936666666666666,0.1227,0.12603333333333333,0.12936666666666666,0.13269999999999998,0.13603333333333334,0.13936666666666667,0.1427,0.14603333333333335,0.14936666666666668,0.1527,0.15603333333333333,0.15936666666666666,0.1627,0.16603333333333334,0.1693666666666667,0.1727,0.17603333333333332,0.17936666666666667,0.1827,0.18603333333333336,0.18936666666666666,0.19269999999999998,0.19603333333333334,0.19936666666666666,0.20270000000000002,0.20603333333333335,0.20936666666666665,0.2127,0.21603333333333333,0.21936666666666668,0.2227,0.22603333333333334,0.22936666666666666,0.2327,0.23603333333333334,0.23936666666666667,0.2427,0.24603333333333335,0.24936666666666665,0.25270000000000004,0.25603333333333333,0.25936666666666663,0.2627,0.26603333333333334,0.26936666666666664,0.2727,0.27603333333333335,0.27936666666666665,0.2827,0.2860333333333333,0.28936666666666666,0.2927,0.2960333333333333,0.29936666666666667,0.30269999999999997,0.3060333333333333,0.3093666666666667,0.31270000000000003,0.31603333333333333,0.31936666666666663,0.3227,0.32603333333333334,0.3293666666666667,0.3327,0.3360333333333333,0.33936666666666665,0.3427,0.34603333333333336,0.34936666666666666,0.35269999999999996,0.3560333333333333,0.35936666666666667,0.3627,0.3660333333333333,0.3693666666666667,0.3727,0.37603333333333333,0.3793666666666667,0.3827,0.38603333333333334,0.38936666666666664,0.3927,0.39603333333333335,0.39936666666666665,0.4027,0.4060333333333333,0.4093666666666667,0.4127,0.4160333333333333,0.41936666666666667,0.42269999999999996,0.4260333333333334,0.4293666666666667,0.4327,0.43603333333333333,0.4393666666666666,0.44270000000000004,0.44603333333333334,0.44936666666666664,0.4527,0.4560333333333333,0.4593666666666667,0.4627,0.46603333333333335,0.46936666666666665,0.47269999999999995,0.47603333333333336,0.47936666666666666,0.4827,0.4860333333333333,0.4893666666666666,0.4927,0.4960333333333333,0.4993666666666667,0.5027,0.5060333333333333,0.5093666666666666,0.5127,0.5160333333333333,0.5193666666666666,0.5226999999999999,0.5260333333333334,0.5293666666666667,0.5327,0.5360333333333334,0.5393666666666667,0.5427,0.5460333333333334,0.5493666666666667,0.5527,0.5560333333333334,0.5593666666666667,0.5627,0.5660333333333334,0.5693666666666667,0.5727,0.5760333333333333,0.5793666666666667,0.5827000000000001,0.5860333333333333,0.5893666666666667,0.5927,0.5960333333333333,0.5993666666666667,0.6027,0.6060333333333333,0.6093666666666666,0.6127,0.6160333333333334,0.6193666666666666,0.6227,0.6260333333333333,0.6293666666666666,0.6327,0.6360333333333333,0.6393666666666667,0.6426999999999999,0.6460333333333333,0.6493666666666668,0.6527,0.6560333333333334,0.6593666666666667,0.6627,0.6660333333333334,0.6693666666666667,0.6727000000000001,0.6760333333333333,0.6793666666666667,0.6827000000000001,0.6860333333333333,0.6893666666666667,0.6927,0.6960333333333334,0.6993666666666667,0.7027,0.7060333333333334,0.7093666666666666,0.7127,0.7160333333333334,0.7193666666666666,0.7227,0.7260333333333333,0.7293666666666667,0.7327,0.7360333333333333,0.7393666666666667,0.7426999999999999,0.7460333333333333,0.7493666666666667,0.7527,0.7560333333333333,0.7593666666666666,0.7627,0.7660333333333333,0.7693666666666666,0.7727,0.7760333333333332,0.7793666666666667,0.7827000000000001,0.7860333333333334,0.7893666666666667,0.7927,0.7960333333333334,0.7993666666666667,0.8027,0.8060333333333334,0.8093666666666667,0.8127,0.8160333333333334,0.8193666666666667,0.8227,0.8260333333333333,0.8293666666666667,0.8327000000000001,0.8360333333333333,0.8393666666666667,0.8427,0.8460333333333333,0.8493666666666667,0.8527,0.8560333333333333,0.8593666666666666,0.8627,0.8660333333333334,0.8693666666666666,0.8727,0.8760333333333333,0.8793666666666666,0.8827,0.8860333333333333,0.8893666666666667,0.8926999999999999,0.8960333333333333,0.8993666666666668,0.9027,0.9060333333333334,0.9093666666666667,0.9127,0.9160333333333334,0.9193666666666667,0.9227000000000001,0.9260333333333333,0.9293666666666667,0.9327000000000001,0.9360333333333333,0.9393666666666667,0.9427,0.9460333333333334,0.9493666666666667,0.9527,0.9560333333333334,0.9593666666666666,0.9627,0.9660333333333334,0.9693666666666666,0.9727,0.9760333333333333,0.9793666666666667,0.9827,0.9860333333333333,0.9893666666666667,0.9926999999999999,0.9960333333333333,0.9993666666666667,1.0027,1.0060333333333333,1.0093666666666665,1.0127,1.0160333333333333,1.0193666666666668,1.0227,1.0260333333333334,1.0293666666666668,1.0327,1.0360333333333334,1.0393666666666668,1.0427,1.0460333333333334,1.0493666666666668,1.0527,1.0560333333333334,1.0593666666666666,1.0627,1.0660333333333334,1.0693666666666668,1.0727,1.0760333333333334,1.0793666666666666,1.0827,1.0860333333333334,1.0893666666666666,1.0927,1.0960333333333334,1.0993666666666668,1.1027,1.1060333333333332,1.1093666666666666,1.1127,1.1160333333333334,1.1193666666666668,1.1226999999999998,1.1260333333333332,1.1293666666666666,1.1327,1.1360333333333335,1.1393666666666666,1.1427,1.1460333333333332,1.1493666666666666,1.1527,1.1560333333333332,1.1593666666666667,1.1627,1.1660333333333335,1.1693666666666667,1.1726999999999999,1.1760333333333333,1.1793666666666667,1.1827,1.1860333333333335,1.1893666666666667,1.1926999999999999,1.1960333333333333,1.1993666666666667,1.2027,1.2060333333333333,1.2093666666666667,1.2127000000000001,1.2160333333333333,1.2193666666666667,1.2227,1.2260333333333333,1.2293666666666667,1.2327000000000001,1.2360333333333335,1.2393666666666665,1.2427,1.2460333333333333,1.2493666666666667,1.2527000000000001,1.2560333333333333,1.2593666666666665,1.2627,1.2660333333333333,1.2693666666666668,1.2727,1.2760333333333334,1.2793666666666668,1.2827,1.2860333333333334,1.2893666666666665,1.2927,1.2960333333333334,1.2993666666666668,1.3027000000000002,1.3060333333333332,1.3093666666666666,1.3127,1.3160333333333334,1.3193666666666668,1.3227,1.3260333333333334,1.3293666666666666,1.3327,1.3360333333333334,1.3393666666666666,1.3427,1.3460333333333334,1.3493666666666668,1.3527,1.3560333333333332,1.3593666666666666,1.3627,1.3660333333333334,1.3693666666666668,1.3726999999999998,1.3760333333333332,1.3793666666666666,1.3827,1.3860333333333335,1.3893666666666666,1.3927,1.3960333333333332,1.3993666666666666,1.4027,1.4060333333333332,1.4093666666666667,1.4127,1.4160333333333335,1.4193666666666667,1.4226999999999999,1.4260333333333333,1.4293666666666667,1.4327,1.4360333333333335,1.4393666666666667,1.4426999999999999,1.4460333333333333,1.4493666666666667,1.4527,1.4560333333333333,1.4593666666666667,1.4627000000000001,1.4660333333333333,1.4693666666666667,1.4727,1.4760333333333333,1.4793666666666667,1.4827000000000001,1.4860333333333335,1.4893666666666665,1.4927,1.4960333333333333,1.4993666666666667,1.5027000000000001,1.5060333333333333,1.5093666666666665,1.5127,1.5160333333333333,1.5193666666666668,1.5227,1.5260333333333334,1.5293666666666668,1.5327,1.5360333333333334,1.5393666666666665,1.5427,1.5460333333333334,1.5493666666666668,1.5527000000000002,1.5560333333333332,1.5593666666666666,1.5627,1.5660333333333334,1.5693666666666668,1.5727,1.5760333333333334,1.5793666666666666,1.5827,1.5860333333333334,1.5893666666666666,1.5927,1.5960333333333334,1.5993666666666668,1.6027,1.6060333333333332,1.6093666666666666,1.6127,1.6160333333333334,1.6193666666666668,1.6226999999999998,1.6260333333333332,1.6293666666666666,1.6327,1.6360333333333335,1.6393666666666666,1.6427,1.6460333333333332,1.6493666666666666,1.6527,1.6560333333333332,1.6593666666666667,1.6627,1.6660333333333335,1.6693666666666667,1.6726999999999999,1.6760333333333333,1.6793666666666667,1.6827,1.6860333333333335,1.6893666666666667,1.6926999999999999,1.6960333333333333,1.6993666666666667,1.7027,1.7060333333333333,1.7093666666666667,1.7127000000000001,1.7160333333333333,1.7193666666666667,1.7227,1.7260333333333333,1.7293666666666667,1.7327000000000001,1.7360333333333335,1.7393666666666665,1.7427,1.7460333333333333,1.7493666666666667,1.7527000000000001,1.7560333333333333,1.7593666666666665,1.7627,1.7660333333333333,1.7693666666666668,1.7727,1.7760333333333334,1.7793666666666668,1.7827,1.7860333333333334,1.7893666666666665,1.7927,1.7960333333333334,1.7993666666666668,1.8027000000000002,1.8060333333333332,1.8093666666666666,1.8127,1.8160333333333334,1.8193666666666668,1.8227,1.8260333333333334,1.8293666666666666,1.8327,1.8360333333333334,1.8393666666666666,1.8427,1.8460333333333334,1.8493666666666668,1.8527,1.8560333333333332,1.8593666666666666,1.8627,1.8660333333333334,1.8693666666666668,1.8726999999999998,1.8760333333333332,1.8793666666666666,1.8827,1.8860333333333335,1.8893666666666666,1.8927,1.8960333333333332,1.8993666666666666,1.9027,1.9060333333333332,1.9093666666666667,1.9127,1.9160333333333335,1.9193666666666667,1.9226999999999999,1.9260333333333333,1.9293666666666667,1.9327,1.9360333333333335,1.9393666666666667,1.9426999999999999,1.9460333333333333,1.9493666666666667,1.9527,1.9560333333333333,1.9593666666666667,1.9627000000000001,1.9660333333333333,1.9693666666666667,1.9727,1.9760333333333333,1.9793666666666667,1.9827000000000001,1.9860333333333335,1.9893666666666665,1.9927,1.9960333333333333,1.9993666666666667,2.0027,2.0060333333333333,2.0093666666666667,2.0127,2.0160333333333336,2.019366666666667,2.0227,2.0260333333333334,2.0293666666666668,2.0327,2.0360333333333336,2.0393666666666665,2.0427,2.0460333333333334,2.049366666666667,2.0527,2.056033333333333,2.0593666666666666,2.0627,2.0660333333333334,2.069366666666667,2.0726999999999998,2.076033333333333,2.0793666666666666,2.0827,2.0860333333333334,2.0893666666666664,2.0927,2.096033333333333,2.0993666666666666,2.1027,2.1060333333333334,2.109366666666667,2.1127,2.116033333333333,2.1193666666666666,2.1227,2.1260333333333334,2.129366666666667,2.1327000000000003,2.1360333333333332,2.1393666666666666,2.1427,2.1460333333333335,2.1493666666666664,2.1527000000000003,2.1560333333333332,2.1593666666666667,2.1627,2.166033333333333,2.169366666666667,2.1727,2.1760333333333337,2.1793666666666667,2.1826999999999996,2.1860333333333335,2.1893666666666665,2.1927000000000003,2.1960333333333333,2.1993666666666667,2.2027,2.206033333333333,2.209366666666667,2.2127,2.2160333333333333,2.2193666666666667,2.2227,2.2260333333333335,2.2293666666666665,2.2327,2.2360333333333333,2.2393666666666667,2.2427,2.2460333333333335,2.2493666666666665,2.2527,2.2560333333333333,2.2593666666666667,2.2627,2.266033333333333,2.269366666666667,2.2727,2.2760333333333334,2.2793666666666668,2.2826999999999997,2.2860333333333336,2.2893666666666665,2.2927000000000004,2.2960333333333334,2.2993666666666663,2.3027,2.306033333333333,2.309366666666667,2.3127,2.316033333333333,2.319366666666667,2.3226999999999998,2.3260333333333336,2.3293666666666666,2.3327,2.3360333333333334,2.3393666666666664,2.3427000000000002,2.346033333333333,2.3493666666666666,2.3527,2.3560333333333334,2.359366666666667,2.3627,2.366033333333333,2.3693666666666666,2.3727,2.3760333333333334,2.379366666666667,2.3827,2.3860333333333332,2.3893666666666666,2.3927,2.3960333333333335,2.3993666666666664,2.4027000000000003,2.4060333333333332,2.4093666666666667,2.4127,2.416033333333333,2.419366666666667,2.4227,2.4260333333333337,2.4293666666666667,2.4326999999999996,2.4360333333333335,2.4393666666666665,2.4427000000000003,2.4460333333333333,2.4493666666666667,2.4527,2.456033333333333,2.459366666666667,2.4627,2.4660333333333333,2.4693666666666667,2.4727,2.4760333333333335,2.4793666666666665,2.4827,2.4860333333333333,2.4893666666666667,2.4927,2.4960333333333335,2.4993666666666665,2.5027,2.5060333333333333,2.5093666666666667,2.5127,2.516033333333333,2.519366666666667,2.5227,2.5260333333333334,2.5293666666666668,2.5326999999999997,2.5360333333333336,2.5393666666666665,2.5427000000000004,2.5460333333333334,2.5493666666666663,2.5527,2.556033333333333,2.559366666666667,2.5627,2.566033333333333,2.569366666666667,2.5726999999999998,2.5760333333333336,2.5793666666666666,2.5827,2.5860333333333334,2.5893666666666664,2.5927000000000002,2.596033333333333,2.5993666666666666,2.6027,2.6060333333333334,2.609366666666667,2.6127,2.616033333333333,2.6193666666666666,2.6227,2.6260333333333334,2.629366666666667,2.6327,2.6360333333333332,2.6393666666666666,2.6427,2.6460333333333335,2.6493666666666664,2.6527000000000003,2.6560333333333332,2.6593666666666667,2.6627,2.666033333333333,2.669366666666667,2.6727,2.6760333333333337,2.6793666666666667,2.6826999999999996,2.6860333333333335,2.6893666666666665,2.6927000000000003,2.6960333333333333,2.6993666666666667,2.7027,2.706033333333333,2.709366666666667,2.7127,2.7160333333333333,2.7193666666666667,2.7227,2.7260333333333335,2.7293666666666665,2.7327,2.7360333333333333,2.7393666666666667,2.7427,2.7460333333333335,2.7493666666666665,2.7527,2.7560333333333333,2.7593666666666667,2.7627,2.766033333333333,2.769366666666667,2.7727,2.7760333333333334,2.7793666666666668,2.7826999999999997,2.7860333333333336,2.7893666666666665,2.7927000000000004,2.7960333333333334,2.7993666666666663,2.8027,2.806033333333333,2.809366666666667,2.8127,2.816033333333333,2.819366666666667,2.8226999999999998,2.8260333333333336,2.8293666666666666,2.8327,2.8360333333333334,2.8393666666666664,2.8427000000000002,2.846033333333333,2.8493666666666666,2.8527,2.8560333333333334,2.859366666666667,2.8627,2.866033333333333,2.8693666666666666,2.8727,2.8760333333333334,2.879366666666667,2.8827,2.8860333333333332,2.8893666666666666,2.8927,2.8960333333333335,2.8993666666666664,2.9027000000000003,2.9060333333333332,2.9093666666666667,2.9127,2.916033333333333,2.919366666666667,2.9227,2.9260333333333337,2.9293666666666667,2.9326999999999996,2.9360333333333335,2.9393666666666665,2.9427000000000003,2.9460333333333333,2.9493666666666667,2.9527,2.956033333333333,2.959366666666667,2.9627,2.9660333333333333,2.9693666666666667,2.9727,2.9760333333333335,2.9793666666666665,2.9827,2.9860333333333333,2.9893666666666667,2.9927,2.9960333333333335,2.9993666666666665,3.0027,3.0060333333333333,3.0093666666666667,3.0127,3.016033333333333,3.019366666666667,3.0227,3.0260333333333334,3.0293666666666668,3.0326999999999997,3.0360333333333336,3.0393666666666665,3.0427000000000004,3.0460333333333334,3.0493666666666663,3.0527,3.056033333333333,3.059366666666667,3.0627,3.066033333333333,3.069366666666667,3.0726999999999998,3.0760333333333336,3.0793666666666666,3.0827,3.0860333333333334,3.0893666666666664,3.0927000000000002,3.096033333333333,3.0993666666666666,3.1027,3.1060333333333334,3.109366666666667,3.1127,3.116033333333333,3.1193666666666666,3.1227,3.1260333333333334,3.129366666666667,3.1327,3.1360333333333332,3.1393666666666666,3.1427,3.1460333333333335,3.1493666666666664,3.1527000000000003,3.1560333333333332,3.1593666666666667,3.1627,3.166033333333333,3.169366666666667,3.1727,3.1760333333333337,3.1793666666666667,3.1826999999999996,3.1860333333333335,3.1893666666666665,3.1927000000000003,3.1960333333333333,3.1993666666666667,3.2027,3.206033333333333,3.209366666666667,3.2127,3.2160333333333333,3.2193666666666667,3.2227,3.2260333333333335,3.2293666666666665,3.2327,3.2360333333333333,3.2393666666666667,3.2427,3.2460333333333335,3.2493666666666665,3.2527,3.2560333333333333,3.2593666666666667,3.2627,3.266033333333333,3.269366666666667,3.2727,3.2760333333333334,3.2793666666666668,3.2826999999999997,3.2860333333333336,3.2893666666666665,3.2927000000000004,3.2960333333333334,3.2993666666666663,3.3027,3.306033333333333,3.309366666666667,3.3127,3.316033333333333,3.319366666666667,3.3226999999999998,3.3260333333333336,3.3293666666666666,3.3327,3.3360333333333334,3.3393666666666664,3.3427000000000002,3.346033333333333,3.3493666666666666,3.3527,3.3560333333333334,3.359366666666667,3.3627,3.366033333333333,3.3693666666666666,3.3727,3.3760333333333334,3.379366666666667,3.3827,3.3860333333333332,3.3893666666666666,3.3927,3.3960333333333335,3.3993666666666664,3.4027000000000003,3.4060333333333332,3.4093666666666667,3.4127,3.416033333333333,3.419366666666667,3.4227,3.4260333333333337,3.4293666666666667,3.4326999999999996,3.4360333333333335,3.4393666666666665,3.4427000000000003,3.4460333333333333,3.4493666666666667,3.4527,3.456033333333333,3.459366666666667,3.4627,3.4660333333333333,3.4693666666666667,3.4727,3.4760333333333335,3.4793666666666665,3.4827,3.4860333333333333,3.4893666666666667,3.4927,3.4960333333333335,3.4993666666666665,3.5027,3.5060333333333333,3.5093666666666667,3.5127,3.516033333333333,3.519366666666667,3.5227,3.5260333333333334,3.5293666666666668,3.5326999999999997,3.5360333333333336,3.5393666666666665,3.5427000000000004,3.5460333333333334,3.5493666666666663,3.5527,3.556033333333333,3.559366666666667,3.5627,3.566033333333333,3.569366666666667,3.5726999999999998,3.5760333333333336,3.5793666666666666,3.5827,3.5860333333333334,3.5893666666666664,3.5927000000000002,3.596033333333333,3.5993666666666666,3.6027,3.6060333333333334,3.609366666666667,3.6127,3.616033333333333,3.6193666666666666,3.6227,3.6260333333333334,3.629366666666667,3.6327,3.6360333333333332,3.6393666666666666,3.6427,3.6460333333333335,3.6493666666666664,3.6527000000000003,3.6560333333333332,3.6593666666666667,3.6627,3.666033333333333,3.669366666666667,3.6727,3.6760333333333337,3.6793666666666667,3.6826999999999996,3.6860333333333335,3.6893666666666665,3.6927000000000003,3.6960333333333333,3.6993666666666667,3.7027,3.706033333333333,3.709366666666667,3.7127,3.7160333333333333,3.7193666666666667,3.7227,3.7260333333333335,3.7293666666666665,3.7327,3.7360333333333333,3.7393666666666667,3.7427,3.7460333333333335,3.7493666666666665,3.7527,3.7560333333333333,3.7593666666666667,3.7627,3.766033333333333,3.769366666666667,3.7727,3.7760333333333334,3.7793666666666668,3.7826999999999997,3.7860333333333336,3.7893666666666665,3.7927000000000004,3.7960333333333334,3.7993666666666663,3.8027,3.806033333333333,3.809366666666667,3.8127,3.816033333333333,3.819366666666667,3.8226999999999998,3.8260333333333336,3.8293666666666666,3.8327,3.8360333333333334,3.8393666666666664,3.8427000000000002,3.846033333333333,3.8493666666666666,3.8527,3.8560333333333334,3.859366666666667,3.8627,3.866033333333333,3.8693666666666666,3.8727,3.8760333333333334,3.879366666666667,3.8827,3.8860333333333332,3.8893666666666666,3.8927,3.8960333333333335,3.8993666666666664,3.9027000000000003,3.9060333333333332,3.9093666666666667,3.9127,3.916033333333333,3.919366666666667,3.9227,3.9260333333333337,3.9293666666666667,3.9326999999999996,3.9360333333333335,3.9393666666666665,3.9427000000000003,3.9460333333333333,3.9493666666666667,3.9527,3.956033333333333,3.959366666666667,3.9627,3.9660333333333333,3.9693666666666667,3.9727,3.9760333333333335,3.9793666666666665,3.9827,3.9860333333333333,3.9893666666666667,3.9927,3.9960333333333335,3.9993666666666665,4.0027,4.006033333333333,4.009366666666667,4.0127,4.016033333333334,4.0193666666666665,4.0226999999999995,4.026033333333333,4.029366666666666,4.0327,4.036033333333333,4.039366666666667,4.0427,4.046033333333333,4.049366666666667,4.0527,4.056033333333334,4.059366666666667,4.0627,4.066033333333333,4.069366666666666,4.0727,4.076033333333333,4.079366666666667,4.0827,4.086033333333334,4.089366666666667,4.0927,4.096033333333334,4.099366666666667,4.1027000000000005,4.106033333333333,4.109366666666667,4.1127,4.116033333333333,4.119366666666667,4.1227,4.126033333333334,4.129366666666667,4.1327,4.136033333333334,4.139366666666667,4.1427000000000005,4.1460333333333335,4.149366666666666,4.1527,4.156033333333333,4.159366666666667,4.1627,4.166033333333333,4.169366666666667,4.1727,4.176033333333334,4.179366666666667,4.1827,4.1860333333333335,4.1893666666666665,4.1927,4.196033333333333,4.199366666666666,4.2027,4.206033333333333,4.209366666666667,4.2127,4.216033333333333,4.219366666666667,4.2227,4.2260333333333335,4.2293666666666665,4.2326999999999995,4.236033333333333,4.239366666666666,4.2427,4.246033333333333,4.249366666666666,4.2527,4.256033333333333,4.259366666666667,4.2627,4.266033333333334,4.2693666666666665,4.2727,4.276033333333333,4.279366666666666,4.2827,4.286033333333333,4.289366666666667,4.2927,4.296033333333333,4.299366666666667,4.3027,4.306033333333334,4.309366666666667,4.3127,4.316033333333333,4.319366666666666,4.3227,4.326033333333333,4.329366666666667,4.3327,4.336033333333333,4.339366666666667,4.3427,4.346033333333334,4.349366666666667,4.3527,4.356033333333333,4.359366666666667,4.3627,4.366033333333333,4.369366666666666,4.3727,4.376033333333334,4.379366666666667,4.3827,4.386033333333333,4.389366666666667,4.3927000000000005,4.3960333333333335,4.399366666666666,4.402699999999999,4.406033333333334,4.409366666666667,4.4127,4.416033333333333,4.419366666666666,4.422700000000001,4.426033333333334,4.429366666666667,4.4327,4.436033333333333,4.439366666666667,4.4427,4.446033333333333,4.449366666666666,4.452699999999999,4.456033333333334,4.459366666666667,4.4627,4.466033333333333,4.469366666666667,4.472700000000001,4.4760333333333335,4.4793666666666665,4.4826999999999995,4.486033333333333,4.489366666666667,4.4927,4.496033333333333,4.499366666666666,4.5027,4.506033333333334,4.509366666666667,4.5127,4.516033333333334,4.5193666666666665,4.5227,4.526033333333333,4.529366666666666,4.5327,4.536033333333333,4.539366666666667,4.5427,4.546033333333333,4.549366666666667,4.5527,4.556033333333334,4.559366666666667,4.5627,4.566033333333333,4.569366666666666,4.5727,4.576033333333333,4.579366666666667,4.5827,4.586033333333333,4.589366666666667,4.5927,4.596033333333334,4.599366666666667,4.6027,4.606033333333333,4.609366666666667,4.6127,4.616033333333333,4.619366666666666,4.6227,4.626033333333334,4.629366666666667,4.6327,4.636033333333333,4.639366666666667,4.6427000000000005,4.6460333333333335,4.649366666666666,4.652699999999999,4.656033333333334,4.659366666666667,4.6627,4.666033333333333,4.669366666666666,4.672700000000001,4.676033333333334,4.679366666666667,4.6827,4.686033333333333,4.689366666666667,4.6927,4.696033333333333,4.699366666666666,4.702699999999999,4.706033333333334,4.709366666666667,4.7127,4.716033333333333,4.719366666666667,4.722700000000001,4.7260333333333335,4.7293666666666665,4.7326999999999995,4.736033333333333,4.739366666666667,4.7427,4.746033333333333,4.749366666666666,4.7527,4.756033333333334,4.759366666666667,4.7627,4.766033333333334,4.7693666666666665,4.7727,4.776033333333333,4.779366666666666,4.7827,4.786033333333333,4.789366666666667,4.7927,4.796033333333333,4.799366666666667,4.8027,4.806033333333334,4.809366666666667,4.8127,4.816033333333333,4.819366666666666,4.8227,4.826033333333333,4.829366666666667,4.8327,4.836033333333333,4.839366666666667,4.8427,4.846033333333334,4.849366666666667,4.8527,4.856033333333333,4.859366666666667,4.8627,4.866033333333333,4.869366666666666,4.8727,4.876033333333334,4.879366666666667,4.8827,4.886033333333333,4.889366666666667,4.8927000000000005,4.8960333333333335,4.899366666666666,4.902699999999999,4.906033333333334,4.909366666666667,4.9127,4.916033333333333,4.919366666666666,4.922700000000001,4.926033333333334,4.929366666666667,4.9327,4.936033333333333,4.939366666666667,4.9427,4.946033333333333,4.949366666666666,4.952699999999999,4.956033333333334,4.959366666666667,4.9627,4.966033333333333,4.969366666666667,4.972700000000001,4.9760333333333335,4.9793666666666665,4.9826999999999995,4.986033333333333,4.989366666666667,4.9927,4.996033333333333,4.999366666666666,5.0027,5.006033333333334,5.009366666666667,5.0127,5.016033333333334,5.0193666666666665,5.0227,5.026033333333333,5.029366666666666,5.0327,5.036033333333333,5.039366666666667,5.0427,5.046033333333333,5.049366666666667,5.0527,5.056033333333334,5.059366666666667,5.0627,5.066033333333333,5.069366666666666,5.0727,5.076033333333333,5.079366666666667,5.0827,5.086033333333333,5.089366666666667,5.0927,5.096033333333334,5.099366666666667,5.1027,5.106033333333333,5.109366666666667,5.1127,5.116033333333333,5.119366666666666,5.1227,5.126033333333334,5.129366666666667,5.1327,5.136033333333333,5.139366666666667,5.1427000000000005,5.1460333333333335,5.149366666666666,5.152699999999999,5.156033333333334,5.159366666666667,5.1627,5.166033333333333,5.169366666666666,5.172700000000001,5.176033333333334,5.179366666666667,5.1827,5.186033333333333,5.189366666666667,5.1927,5.196033333333333,5.199366666666666,5.202699999999999,5.206033333333334,5.209366666666667,5.2127,5.216033333333333,5.219366666666667,5.222700000000001,5.2260333333333335,5.2293666666666665,5.2326999999999995,5.236033333333333,5.239366666666667,5.2427,5.246033333333333,5.249366666666666,5.2527,5.256033333333334,5.259366666666667,5.2627,5.266033333333334,5.2693666666666665,5.2727,5.276033333333333,5.279366666666666,5.2827,5.286033333333333,5.289366666666667,5.2927,5.296033333333333,5.299366666666667,5.3027,5.306033333333334,5.309366666666667,5.3127,5.316033333333333,5.319366666666666,5.3227,5.326033333333333,5.329366666666667,5.3327,5.336033333333333,5.339366666666667,5.3427,5.346033333333334,5.349366666666667,5.3527,5.356033333333333,5.359366666666667,5.3627,5.366033333333333,5.369366666666666,5.3727,5.376033333333334,5.379366666666667,5.3827,5.386033333333333,5.389366666666667,5.3927000000000005,5.3960333333333335,5.399366666666666,5.402699999999999,5.406033333333334,5.409366666666667,5.4127,5.416033333333333,5.419366666666666,5.422700000000001,5.426033333333334,5.429366666666667,5.4327,5.436033333333333,5.439366666666667,5.4427,5.446033333333333,5.449366666666666,5.452699999999999,5.456033333333334,5.459366666666667,5.4627,5.466033333333333,5.469366666666667,5.472700000000001,5.4760333333333335,5.4793666666666665,5.4826999999999995,5.486033333333333,5.489366666666667,5.4927,5.496033333333333,5.499366666666666,5.5027,5.506033333333334,5.509366666666667,5.5127,5.516033333333334,5.5193666666666665,5.5227,5.526033333333333,5.529366666666666,5.5327,5.536033333333333,5.539366666666667,5.5427,5.546033333333333,5.549366666666667,5.5527,5.556033333333334,5.559366666666667,5.5627,5.566033333333333,5.569366666666666,5.5727,5.576033333333333,5.579366666666667,5.5827,5.586033333333333,5.589366666666667,5.5927,5.596033333333334,5.599366666666667,5.6027,5.606033333333333,5.609366666666667,5.6127,5.616033333333333,5.619366666666666,5.6227,5.626033333333334,5.629366666666667,5.6327,5.636033333333333,5.639366666666667,5.6427000000000005,5.6460333333333335,5.649366666666666,5.652699999999999,5.656033333333334,5.659366666666667,5.6627,5.666033333333333,5.669366666666666,5.672700000000001,5.676033333333334,5.679366666666667,5.6827,5.686033333333333,5.689366666666667,5.6927,5.696033333333333,5.699366666666666,5.702699999999999,5.706033333333334,5.709366666666667,5.7127,5.716033333333333,5.719366666666667,5.722700000000001,5.7260333333333335,5.7293666666666665,5.7326999999999995,5.736033333333333,5.739366666666667,5.7427,5.746033333333333,5.749366666666666,5.7527,5.756033333333334,5.759366666666667,5.7627,5.766033333333334,5.7693666666666665,5.7727,5.776033333333333,5.779366666666666,5.7827,5.786033333333333,5.789366666666667,5.7927,5.796033333333333,5.799366666666667,5.8027,5.806033333333334,5.809366666666667,5.8127,5.816033333333333,5.819366666666666,5.8227,5.826033333333333,5.829366666666667,5.8327,5.836033333333333,5.839366666666667,5.8427,5.846033333333334,5.849366666666667,5.8527,5.856033333333333,5.859366666666667,5.8627,5.866033333333333,5.869366666666666,5.8727,5.876033333333334,5.879366666666667,5.8827,5.886033333333333,5.889366666666667,5.8927000000000005,5.8960333333333335,5.899366666666666,5.902699999999999,5.906033333333334,5.909366666666667,5.9127,5.916033333333333,5.919366666666666,5.922700000000001,5.926033333333334,5.929366666666667,5.9327,5.936033333333333,5.939366666666667,5.9427,5.946033333333333,5.949366666666666,5.952699999999999,5.956033333333334,5.959366666666667,5.9627,5.966033333333333,5.969366666666667,5.972700000000001,5.9760333333333335,5.9793666666666665,5.9826999999999995,5.986033333333333,5.989366666666667,5.9927,5.996033333333333,5.999366666666666,6.0027,6.006033333333334,6.009366666666667,6.0127,6.016033333333334,6.0193666666666665,6.0227,6.026033333333333,6.029366666666666,6.0327,6.036033333333333,6.039366666666667,6.0427,6.046033333333333,6.049366666666667,6.0527,6.056033333333334,6.059366666666667,6.0627,6.066033333333333,6.069366666666666,6.0727,6.076033333333333,6.079366666666667,6.0827,6.086033333333333,6.089366666666667,6.0927,6.096033333333334,6.099366666666667,6.1027,6.106033333333333,6.109366666666667,6.1127,6.116033333333333,6.119366666666666,6.1227,6.126033333333334,6.129366666666667,6.1327,6.136033333333333,6.139366666666667,6.1427000000000005,6.1460333333333335,6.149366666666666,6.152699999999999,6.156033333333334,6.159366666666667,6.1627,6.166033333333333,6.169366666666666,6.172700000000001,6.176033333333334,6.179366666666667,6.1827,6.186033333333333,6.189366666666667,6.1927,6.196033333333333,6.199366666666666,6.202699999999999,6.206033333333334,6.209366666666667,6.2127,6.216033333333333,6.219366666666667,6.222700000000001,6.2260333333333335,6.2293666666666665,6.2326999999999995,6.236033333333333,6.239366666666667,6.2427,6.246033333333333,6.249366666666666,6.2527,6.256033333333334,6.259366666666667,6.2627,6.266033333333334,6.2693666666666665,6.2727,6.276033333333333,6.279366666666666,6.2827,6.286033333333333,6.289366666666667,6.2927,6.296033333333333,6.299366666666667,6.3027,6.306033333333334,6.309366666666667,6.3127,6.316033333333333,6.319366666666666,6.3227,6.326033333333333,6.329366666666667,6.3327,6.336033333333333,6.339366666666667,6.3427,6.346033333333334,6.349366666666667,6.3527,6.356033333333333,6.359366666666667,6.3627,6.366033333333333,6.369366666666666,6.3727,6.376033333333334,6.379366666666667,6.3827,6.386033333333333,6.389366666666667,6.3927000000000005,6.3960333333333335,6.399366666666666,6.402699999999999,6.406033333333334,6.409366666666667,6.4127,6.416033333333333,6.419366666666666,6.422700000000001,6.426033333333334,6.429366666666667,6.4327,6.436033333333333,6.439366666666667,6.4427,6.446033333333333,6.449366666666666,6.452699999999999,6.456033333333334,6.459366666666667,6.4627,6.466033333333333,6.469366666666667,6.472700000000001,6.4760333333333335,6.4793666666666665,6.4826999999999995,6.486033333333333,6.489366666666667,6.4927,6.496033333333333,6.499366666666666,6.5027,6.506033333333334,6.509366666666667,6.5127,6.516033333333334,6.5193666666666665,6.5227,6.526033333333333,6.529366666666666,6.5327,6.536033333333333,6.539366666666667,6.5427,6.546033333333333,6.549366666666667,6.5527,6.556033333333334,6.559366666666667,6.5627,6.566033333333333,6.569366666666666,6.5727,6.576033333333333,6.579366666666667,6.5827,6.586033333333333,6.589366666666667,6.5927,6.596033333333334,6.599366666666667,6.6027,6.606033333333333,6.609366666666667,6.6127,6.616033333333333,6.619366666666666,6.6227,6.626033333333334,6.629366666666667,6.6327,6.636033333333333,6.639366666666667,6.6427000000000005,6.6460333333333335,6.649366666666666,6.652699999999999,6.656033333333334,6.659366666666667,6.6627,6.666033333333333,6.669366666666666,6.672700000000001,6.676033333333334,6.679366666666667,6.6827,6.686033333333333,6.689366666666667,6.6927,6.696033333333333,6.699366666666666,6.702699999999999,6.706033333333334,6.709366666666667,6.7127,6.716033333333333,6.719366666666667,6.722700000000001,6.7260333333333335,6.7293666666666665,6.7326999999999995,6.736033333333333,6.739366666666667,6.7427,6.746033333333333,6.749366666666666,6.7527,6.756033333333334,6.759366666666667,6.7627,6.766033333333334,6.7693666666666665,6.7727,6.776033333333333,6.779366666666666,6.7827,6.786033333333333,6.789366666666667,6.7927,6.796033333333333,6.799366666666667,6.8027,6.806033333333334,6.809366666666667,6.8127,6.816033333333333,6.819366666666666,6.8227,6.826033333333333,6.829366666666667,6.8327,6.836033333333333,6.839366666666667,6.8427,6.846033333333334,6.849366666666667,6.8527,6.856033333333333,6.859366666666667,6.8627,6.866033333333333,6.869366666666666,6.8727,6.876033333333334,6.879366666666667,6.8827,6.886033333333333,6.889366666666667,6.8927000000000005,6.8960333333333335,6.899366666666666,6.902699999999999,6.906033333333334,6.909366666666667,6.9127,6.916033333333333,6.919366666666666,6.922700000000001,6.926033333333334,6.929366666666667,6.9327,6.936033333333333,6.939366666666667,6.9427,6.946033333333333,6.949366666666666,6.952699999999999,6.956033333333334,6.959366666666667,6.9627,6.966033333333333,6.969366666666667,6.972700000000001,6.9760333333333335,6.9793666666666665,6.9826999999999995,6.986033333333333,6.989366666666667,6.9927,6.996033333333333,6.999366666666666,7.0027,7.006033333333334,7.009366666666667,7.0127,7.016033333333334,7.0193666666666665,7.0227,7.026033333333333,7.029366666666666,7.0327,7.036033333333333,7.039366666666667,7.0427,7.046033333333333,7.049366666666667,7.0527,7.056033333333334,7.059366666666667,7.0627,7.066033333333333,7.069366666666666,7.0727,7.076033333333333,7.079366666666667,7.0827,7.086033333333333,7.089366666666667,7.0927,7.096033333333334,7.099366666666667,7.1027,7.106033333333333,7.109366666666667,7.1127,7.116033333333333,7.119366666666666,7.1227,7.126033333333334,7.129366666666667,7.1327,7.136033333333333,7.139366666666667,7.1427000000000005,7.1460333333333335,7.149366666666666,7.152699999999999,7.156033333333334,7.159366666666667,7.1627,7.166033333333333,7.169366666666666,7.172700000000001,7.176033333333334,7.179366666666667,7.1827,7.186033333333333,7.189366666666667,7.1927,7.196033333333333,7.199366666666666,7.202699999999999,7.206033333333334,7.209366666666667,7.2127,7.216033333333333,7.219366666666667,7.222700000000001,7.2260333333333335,7.2293666666666665,7.2326999999999995,7.236033333333333,7.239366666666667,7.2427,7.246033333333333,7.249366666666666,7.2527,7.256033333333334,7.259366666666667,7.2627,7.266033333333334,7.2693666666666665,7.2727,7.276033333333333,7.279366666666666,7.2827,7.286033333333333,7.289366666666667,7.2927,7.296033333333333,7.299366666666667,7.3027,7.306033333333334,7.309366666666667,7.3127,7.316033333333333,7.319366666666666,7.3227,7.326033333333333,7.329366666666667,7.3327,7.336033333333333,7.339366666666667,7.3427,7.346033333333334,7.349366666666667,7.3527,7.356033333333333,7.359366666666667,7.3627,7.366033333333333,7.369366666666666,7.3727,7.376033333333334,7.379366666666667,7.3827,7.386033333333333,7.389366666666667,7.3927000000000005,7.3960333333333335,7.399366666666666,7.402699999999999,7.406033333333334,7.409366666666667,7.4127,7.416033333333333,7.419366666666666,7.422700000000001,7.426033333333334,7.429366666666667,7.4327,7.436033333333333,7.439366666666667,7.4427,7.446033333333333,7.449366666666666,7.452699999999999,7.456033333333334,7.459366666666667,7.4627,7.466033333333333,7.469366666666667,7.472700000000001,7.4760333333333335,7.4793666666666665,7.4826999999999995,7.486033333333333,7.489366666666667,7.4927,7.496033333333333,7.499366666666666,7.5027,7.506033333333334,7.509366666666667,7.5127,7.516033333333334,7.5193666666666665,7.5227,7.526033333333333,7.529366666666666,7.5327,7.536033333333333,7.539366666666667,7.5427,7.546033333333333,7.549366666666667,7.5527,7.556033333333334,7.559366666666667,7.5627,7.566033333333333,7.569366666666666,7.5727,7.576033333333333,7.579366666666667,7.5827,7.586033333333333,7.589366666666667,7.5927,7.596033333333334,7.599366666666667,7.6027,7.606033333333333,7.609366666666667,7.6127,7.616033333333333,7.619366666666666,7.6227,7.626033333333334,7.629366666666667,7.6327,7.636033333333333,7.639366666666667,7.6427000000000005,7.6460333333333335,7.649366666666666,7.652699999999999,7.656033333333334,7.659366666666667,7.6627,7.666033333333333,7.669366666666666,7.672700000000001,7.676033333333334,7.679366666666667,7.6827,7.686033333333333,7.689366666666667,7.6927,7.696033333333333,7.699366666666666,7.702699999999999,7.706033333333334,7.709366666666667,7.7127,7.716033333333333,7.719366666666667,7.722700000000001,7.7260333333333335,7.7293666666666665,7.7326999999999995,7.736033333333333,7.739366666666667,7.7427,7.746033333333333,7.749366666666666,7.7527,7.756033333333334,7.759366666666667,7.7627,7.766033333333334,7.7693666666666665,7.7727,7.776033333333333,7.779366666666666,7.7827,7.786033333333333,7.789366666666667,7.7927,7.796033333333333,7.799366666666667,7.8027,7.806033333333334,7.809366666666667,7.8127,7.816033333333333,7.819366666666666,7.8227,7.826033333333333,7.829366666666667,7.8327,7.836033333333333,7.839366666666667,7.8427,7.846033333333334,7.849366666666667,7.8527,7.856033333333333,7.859366666666667,7.8627,7.866033333333333,7.869366666666666,7.8727,7.876033333333334,7.879366666666667,7.8827,7.886033333333333,7.889366666666667,7.8927000000000005,7.8960333333333335,7.899366666666666,7.902699999999999,7.906033333333334,7.909366666666667,7.9127,7.916033333333333,7.919366666666666,7.922700000000001,7.926033333333334,7.929366666666667,7.9327,7.936033333333333,7.939366666666667,7.9427,7.946033333333333,7.949366666666666,7.952699999999999,7.956033333333334,7.959366666666667,7.9627,7.966033333333333,7.969366666666667,7.972700000000001,7.9760333333333335,7.9793666666666665,7.9826999999999995,7.986033333333333,7.989366666666667,7.9927,7.996033333333333,7.999366666666666,8.002699999999999,8.006033333333333,8.009366666666667,8.0127,8.016033333333333,8.019366666666667,8.0227,8.026033333333334,8.029366666666666,8.0327,8.036033333333332,8.039366666666668,8.0427,8.046033333333334,8.049366666666666,8.0527,8.056033333333334,8.059366666666667,8.0627,8.066033333333333,8.069366666666665,8.072700000000001,8.076033333333333,8.079366666666667,8.082699999999999,8.086033333333333,8.089366666666667,8.0927,8.096033333333333,8.099366666666667,8.1027,8.106033333333334,8.109366666666666,8.1127,8.116033333333332,8.119366666666666,8.1227,8.126033333333334,8.129366666666666,8.1327,8.136033333333334,8.139366666666668,8.1427,8.146033333333333,8.149366666666667,8.1527,8.156033333333333,8.159366666666667,8.1627,8.166033333333333,8.169366666666667,8.1727,8.176033333333333,8.179366666666667,8.1827,8.186033333333333,8.189366666666666,8.1927,8.196033333333334,8.199366666666666,8.2027,8.206033333333334,8.209366666666666,8.2127,8.216033333333334,8.219366666666666,8.2227,8.226033333333334,8.229366666666667,8.2327,8.236033333333333,8.239366666666667,8.242700000000001,8.246033333333333,8.249366666666667,8.252699999999999,8.256033333333333,8.259366666666667,8.2627,8.266033333333333,8.269366666666667,8.2727,8.276033333333334,8.279366666666666,8.2827,8.286033333333332,8.289366666666668,8.2927,8.296033333333334,8.299366666666666,8.3027,8.306033333333334,8.309366666666667,8.3127,8.316033333333333,8.319366666666665,8.322700000000001,8.326033333333333,8.329366666666667,8.332699999999999,8.336033333333333,8.339366666666667,8.3427,8.346033333333333,8.349366666666667,8.3527,8.356033333333334,8.359366666666666,8.3627,8.366033333333332,8.369366666666666,8.3727,8.376033333333334,8.379366666666666,8.3827,8.386033333333334,8.389366666666668,8.3927,8.396033333333333,8.399366666666667,8.4027,8.406033333333333,8.409366666666667,8.4127,8.416033333333333,8.419366666666667,8.4227,8.426033333333333,8.429366666666667,8.4327,8.436033333333333,8.439366666666666,8.4427,8.446033333333334,8.449366666666666,8.4527,8.456033333333334,8.459366666666666,8.4627,8.466033333333334,8.469366666666666,8.4727,8.476033333333334,8.479366666666667,8.4827,8.486033333333333,8.489366666666667,8.492700000000001,8.496033333333333,8.499366666666667,8.502699999999999,8.506033333333333,8.509366666666667,8.5127,8.516033333333333,8.519366666666667,8.5227,8.526033333333334,8.529366666666666,8.5327,8.536033333333334,8.539366666666666,8.5427,8.546033333333332,8.549366666666666,8.5527,8.556033333333334,8.559366666666667,8.5627,8.566033333333333,8.569366666666667,8.5727,8.576033333333333,8.579366666666665,8.582699999999999,8.586033333333335,8.589366666666667,8.5927,8.596033333333333,8.599366666666667,8.6027,8.606033333333333,8.609366666666666,8.612699999999998,8.616033333333332,8.619366666666668,8.6227,8.626033333333334,8.629366666666666,8.6327,8.636033333333334,8.639366666666666,8.6427,8.646033333333332,8.649366666666667,8.652700000000001,8.656033333333333,8.659366666666667,8.6627,8.666033333333333,8.669366666666667,8.672699999999999,8.676033333333333,8.679366666666665,8.6827,8.686033333333334,8.689366666666666,8.6927,8.696033333333332,8.699366666666666,8.7027,8.706033333333332,8.709366666666666,8.7127,8.716033333333334,8.719366666666668,8.7227,8.726033333333334,8.729366666666666,8.7327,8.736033333333333,8.739366666666665,8.742700000000001,8.746033333333333,8.749366666666667,8.7527,8.756033333333333,8.759366666666667,8.762699999999999,8.766033333333333,8.769366666666667,8.772699999999999,8.776033333333334,8.779366666666666,8.7827,8.786033333333334,8.789366666666666,8.7927,8.796033333333332,8.799366666666666,8.8027,8.806033333333334,8.809366666666667,8.8127,8.816033333333333,8.819366666666667,8.8227,8.826033333333333,8.829366666666665,8.832699999999999,8.836033333333335,8.839366666666667,8.8427,8.846033333333333,8.849366666666667,8.8527,8.856033333333333,8.859366666666666,8.862699999999998,8.866033333333332,8.869366666666668,8.8727,8.876033333333334,8.879366666666666,8.8827,8.886033333333334,8.889366666666666,8.8927,8.896033333333332,8.899366666666667,8.902700000000001,8.906033333333333,8.909366666666667,8.9127,8.916033333333333,8.919366666666667,8.922699999999999,8.926033333333333,8.929366666666665,8.9327,8.936033333333334,8.939366666666666,8.9427,8.946033333333332,8.949366666666666,8.9527,8.956033333333332,8.959366666666666,8.9627,8.966033333333334,8.969366666666668,8.9727,8.976033333333334,8.979366666666666,8.9827,8.986033333333333,8.989366666666665,8.992700000000001,8.996033333333333,8.999366666666667,9.0027,9.006033333333333,9.009366666666667,9.012699999999999,9.016033333333333,9.019366666666667,9.022699999999999,9.026033333333334,9.029366666666666,9.0327,9.036033333333334,9.039366666666666,9.0427,9.046033333333332,9.049366666666666,9.0527,9.056033333333334,9.059366666666667,9.0627,9.066033333333333,9.069366666666667,9.0727,9.076033333333333,9.079366666666665,9.082699999999999,9.086033333333335,9.089366666666667,9.0927,9.096033333333333,9.099366666666667,9.1027,9.106033333333333,9.109366666666666,9.112699999999998,9.116033333333332,9.119366666666668,9.1227,9.126033333333334,9.129366666666666,9.1327,9.136033333333334,9.139366666666666,9.1427,9.146033333333332,9.149366666666667,9.152700000000001,9.156033333333333,9.159366666666667,9.1627,9.166033333333333,9.169366666666667,9.172699999999999,9.176033333333333,9.179366666666665,9.1827,9.186033333333334,9.189366666666666,9.1927,9.196033333333332,9.199366666666666,9.2027,9.206033333333332,9.209366666666666,9.2127,9.216033333333334,9.219366666666668,9.2227,9.226033333333334,9.229366666666666,9.2327,9.236033333333333,9.239366666666665,9.242700000000001,9.246033333333333,9.249366666666667,9.2527,9.256033333333333,9.259366666666667,9.262699999999999,9.266033333333333,9.269366666666667,9.272699999999999,9.276033333333334,9.279366666666666,9.2827,9.286033333333334,9.289366666666666,9.2927,9.296033333333332,9.299366666666666,9.3027,9.306033333333334,9.309366666666667,9.3127,9.316033333333333,9.319366666666667,9.3227,9.326033333333333,9.329366666666665,9.332699999999999,9.336033333333335,9.339366666666667,9.3427,9.346033333333333,9.349366666666667,9.3527,9.356033333333333,9.359366666666666,9.362699999999998,9.366033333333332,9.369366666666668,9.3727,9.376033333333334,9.379366666666666,9.3827,9.386033333333334,9.389366666666666,9.3927,9.396033333333332,9.399366666666667,9.402700000000001,9.406033333333333,9.409366666666667,9.4127,9.416033333333333,9.419366666666667,9.422699999999999,9.426033333333333,9.429366666666665,9.4327,9.436033333333334,9.439366666666666,9.4427,9.446033333333332,9.449366666666666,9.4527,9.456033333333332,9.459366666666666,9.4627,9.466033333333334,9.469366666666668,9.4727,9.476033333333334,9.479366666666666,9.4827,9.486033333333333,9.489366666666665,9.492700000000001,9.496033333333333,9.499366666666667,9.5027,9.506033333333333,9.509366666666667,9.512699999999999,9.516033333333333,9.519366666666667,9.522699999999999,9.526033333333334,9.529366666666666,9.5327,9.536033333333334,9.539366666666666,9.5427,9.546033333333332,9.549366666666666,9.5527,9.556033333333334,9.559366666666667,9.5627,9.566033333333333,9.569366666666667,9.5727,9.576033333333333,9.579366666666665,9.582699999999999,9.586033333333335,9.589366666666667,9.5927,9.596033333333333,9.599366666666667,9.6027,9.606033333333333,9.609366666666666,9.612699999999998,9.616033333333332,9.619366666666668,9.6227,9.626033333333334,9.629366666666666,9.6327,9.636033333333334,9.639366666666666,9.6427,9.646033333333332,9.649366666666667,9.652700000000001,9.656033333333333,9.659366666666667,9.6627,9.666033333333333,9.669366666666667,9.672699999999999,9.676033333333333,9.679366666666665,9.6827,9.686033333333334,9.689366666666666,9.6927,9.696033333333332,9.699366666666666,9.7027,9.706033333333332,9.709366666666666,9.7127,9.716033333333334,9.719366666666668,9.7227,9.726033333333334,9.729366666666666,9.7327,9.736033333333333,9.739366666666665,9.742700000000001,9.746033333333333,9.749366666666667,9.7527,9.756033333333333,9.759366666666667,9.762699999999999,9.766033333333333,9.769366666666667,9.772699999999999,9.776033333333334,9.779366666666666,9.7827,9.786033333333334,9.789366666666666,9.7927,9.796033333333332,9.799366666666666,9.8027,9.806033333333334,9.809366666666667,9.8127,9.816033333333333,9.819366666666667,9.8227,9.826033333333333,9.829366666666665,9.832699999999999,9.836033333333335,9.839366666666667,9.8427,9.846033333333333,9.849366666666667,9.8527,9.856033333333333,9.859366666666666,9.862699999999998,9.866033333333332,9.869366666666668,9.8727,9.876033333333334,9.879366666666666,9.8827,9.886033333333334,9.889366666666666,9.8927,9.896033333333332,9.899366666666667,9.902700000000001,9.906033333333333,9.909366666666667,9.9127,9.916033333333333,9.919366666666667,9.922699999999999,9.926033333333333,9.929366666666665,9.9327,9.936033333333334,9.939366666666666,9.9427,9.946033333333332,9.949366666666666,9.9527,9.956033333333332,9.959366666666666,9.9627,9.966033333333334,9.969366666666668,9.9727,9.976033333333334,9.979366666666666,9.9827,9.986033333333333,9.989366666666665,9.992700000000001,9.996033333333333,9.999366666666667,10.0027,10.006033333333333,10.009366666666667,10.012699999999999,10.016033333333333,10.019366666666667,10.022699999999999,10.026033333333334,10.029366666666666,10.0327,10.036033333333334,10.039366666666666,10.0427,10.046033333333332,10.049366666666666,10.0527,10.056033333333334,10.059366666666667,10.0627,10.066033333333333,10.069366666666667,10.0727,10.076033333333333,10.079366666666665,10.082699999999999,10.086033333333335,10.089366666666667,10.0927,10.096033333333333,10.099366666666667,10.1027,10.106033333333333,10.109366666666666,10.112699999999998,10.116033333333332,10.119366666666668,10.1227,10.126033333333334,10.129366666666666,10.1327,10.136033333333334,10.139366666666666,10.1427,10.146033333333332,10.149366666666667,10.152700000000001,10.156033333333333,10.159366666666667,10.1627,10.166033333333333,10.169366666666667,10.172699999999999,10.176033333333333,10.179366666666665,10.1827,10.186033333333334,10.189366666666666,10.1927,10.196033333333332,10.199366666666666,10.2027,10.206033333333332,10.209366666666666,10.2127,10.216033333333334,10.219366666666668,10.2227,10.226033333333334,10.229366666666666,10.2327,10.236033333333333,10.239366666666665,10.242700000000001,10.246033333333333,10.249366666666667,10.2527,10.256033333333333,10.259366666666667,10.262699999999999,10.266033333333333,10.269366666666667,10.272699999999999,10.276033333333334,10.279366666666666,10.2827,10.286033333333334,10.289366666666666,10.2927,10.296033333333332,10.299366666666666,10.3027,10.306033333333334,10.309366666666667,10.3127,10.316033333333333,10.319366666666667,10.3227,10.326033333333333,10.329366666666665,10.332699999999999,10.336033333333335,10.339366666666667,10.3427,10.346033333333333,10.349366666666667,10.3527,10.356033333333333,10.359366666666666,10.362699999999998,10.366033333333332,10.369366666666668,10.3727,10.376033333333334,10.379366666666666,10.3827,10.386033333333334,10.389366666666666,10.3927,10.396033333333332,10.399366666666667,10.402700000000001,10.406033333333333,10.409366666666667,10.4127,10.416033333333333,10.419366666666667,10.422699999999999,10.426033333333333,10.429366666666665,10.4327,10.436033333333334,10.439366666666666,10.4427,10.446033333333332,10.449366666666666,10.4527,10.456033333333332,10.459366666666666,10.4627,10.466033333333334,10.469366666666668,10.4727,10.476033333333334,10.479366666666666,10.4827,10.486033333333333,10.489366666666665,10.492700000000001,10.496033333333333,10.499366666666667,10.5027,10.506033333333333,10.509366666666667,10.512699999999999,10.516033333333333,10.519366666666667,10.522699999999999,10.526033333333334,10.529366666666666,10.5327,10.536033333333334,10.539366666666666,10.5427,10.546033333333332,10.549366666666666,10.5527,10.556033333333334,10.559366666666667,10.5627,10.566033333333333,10.569366666666667,10.5727,10.576033333333333,10.579366666666665,10.582699999999999,10.586033333333335,10.589366666666667,10.5927,10.596033333333333,10.599366666666667,10.6027,10.606033333333333,10.609366666666666,10.612699999999998,10.616033333333332,10.619366666666668,10.6227,10.626033333333334,10.629366666666666,10.6327,10.636033333333334,10.639366666666666,10.6427,10.646033333333332,10.649366666666667,10.652700000000001,10.656033333333333,10.659366666666667,10.6627,10.666033333333333,10.669366666666667,10.672699999999999,10.676033333333333,10.679366666666665,10.6827,10.686033333333334,10.689366666666666,10.6927,10.696033333333332,10.699366666666666,10.7027,10.706033333333332,10.709366666666666,10.7127,10.716033333333334,10.719366666666668,10.7227,10.726033333333334,10.729366666666666,10.7327,10.736033333333333,10.739366666666665,10.742700000000001,10.746033333333333,10.749366666666667,10.7527,10.756033333333333,10.759366666666667,10.762699999999999,10.766033333333333,10.769366666666667,10.772699999999999,10.776033333333334,10.779366666666666,10.7827,10.786033333333334,10.789366666666666,10.7927,10.796033333333332,10.799366666666666,10.8027,10.806033333333334,10.809366666666667,10.8127,10.816033333333333,10.819366666666667,10.8227,10.826033333333333,10.829366666666665,10.832699999999999,10.836033333333335,10.839366666666667,10.8427,10.846033333333333,10.849366666666667,10.8527,10.856033333333333,10.859366666666666,10.862699999999998,10.866033333333332,10.869366666666668,10.8727,10.876033333333334,10.879366666666666,10.8827,10.886033333333334,10.889366666666666,10.8927,10.896033333333332,10.899366666666667,10.902700000000001,10.906033333333333,10.909366666666667,10.9127,10.916033333333333,10.919366666666667,10.922699999999999,10.926033333333333,10.929366666666665,10.9327,10.936033333333334,10.939366666666666,10.9427,10.946033333333332,10.949366666666666,10.9527,10.956033333333332,10.959366666666666,10.9627,10.966033333333334,10.969366666666668,10.9727,10.976033333333334,10.979366666666666,10.9827,10.986033333333333,10.989366666666665,10.992700000000001,10.996033333333333,10.999366666666667,11.0027,11.006033333333333,11.009366666666667,11.012699999999999,11.016033333333333,11.019366666666667,11.022699999999999,11.026033333333334,11.029366666666666,11.0327,11.036033333333334,11.039366666666666,11.0427,11.046033333333332,11.049366666666666,11.0527,11.056033333333334,11.059366666666667,11.0627,11.066033333333333,11.069366666666667,11.0727,11.076033333333333,11.079366666666665,11.082699999999999,11.086033333333335,11.089366666666667,11.0927,11.096033333333333,11.099366666666667,11.1027,11.106033333333333,11.109366666666666,11.112699999999998,11.116033333333332,11.119366666666668,11.1227,11.126033333333334,11.129366666666666,11.1327,11.136033333333334,11.139366666666666,11.1427,11.146033333333332,11.149366666666667,11.152700000000001,11.156033333333333,11.159366666666667,11.1627,11.166033333333333,11.169366666666667,11.172699999999999,11.176033333333333,11.179366666666665,11.1827,11.186033333333334,11.189366666666666,11.1927,11.196033333333332,11.199366666666666,11.2027,11.206033333333332,11.209366666666666,11.2127,11.216033333333334,11.219366666666668,11.2227,11.226033333333334,11.229366666666666,11.2327,11.236033333333333,11.239366666666665,11.242700000000001,11.246033333333333,11.249366666666667,11.2527,11.256033333333333,11.259366666666667,11.262699999999999,11.266033333333333,11.269366666666667,11.272699999999999,11.276033333333334,11.279366666666666,11.2827,11.286033333333334,11.289366666666666,11.2927,11.296033333333332,11.299366666666666,11.3027,11.306033333333334,11.309366666666667,11.3127,11.316033333333333,11.319366666666667,11.3227,11.326033333333333,11.329366666666665,11.332699999999999,11.336033333333335,11.339366666666667,11.3427,11.346033333333333,11.349366666666667,11.3527,11.356033333333333,11.359366666666666,11.362699999999998,11.366033333333332,11.369366666666668,11.3727,11.376033333333334,11.379366666666666,11.3827,11.386033333333334,11.389366666666666,11.3927,11.396033333333332,11.399366666666667,11.402700000000001,11.406033333333333,11.409366666666667,11.4127,11.416033333333333,11.419366666666667,11.422699999999999,11.426033333333333,11.429366666666665,11.4327,11.436033333333334,11.439366666666666,11.4427,11.446033333333332,11.449366666666666,11.4527,11.456033333333332,11.459366666666666,11.4627,11.466033333333334,11.469366666666668,11.4727,11.476033333333334,11.479366666666666,11.4827,11.486033333333333,11.489366666666665,11.492700000000001,11.496033333333333,11.499366666666667,11.5027,11.506033333333333,11.509366666666667,11.512699999999999,11.516033333333333,11.519366666666667,11.522699999999999,11.526033333333334,11.529366666666666,11.5327,11.536033333333334,11.539366666666666,11.5427,11.546033333333332,11.549366666666666,11.5527,11.556033333333334,11.559366666666667,11.5627,11.566033333333333,11.569366666666667,11.5727,11.576033333333333,11.579366666666665,11.582699999999999,11.586033333333335,11.589366666666667,11.5927,11.596033333333333,11.599366666666667,11.6027,11.606033333333333,11.609366666666666,11.612699999999998,11.616033333333332,11.619366666666668,11.6227,11.626033333333334,11.629366666666666,11.6327,11.636033333333334,11.639366666666666,11.6427,11.646033333333332,11.649366666666667,11.652700000000001,11.656033333333333,11.659366666666667,11.6627,11.666033333333333,11.669366666666667,11.672699999999999,11.676033333333333,11.679366666666665,11.6827,11.686033333333334,11.689366666666666,11.6927,11.696033333333332,11.699366666666666,11.7027,11.706033333333332,11.709366666666666,11.7127,11.716033333333334,11.719366666666668,11.7227,11.726033333333334,11.729366666666666,11.7327,11.736033333333333,11.739366666666665,11.742700000000001,11.746033333333333,11.749366666666667,11.7527,11.756033333333333,11.759366666666667,11.762699999999999,11.766033333333333,11.769366666666667,11.772699999999999,11.776033333333334,11.779366666666666,11.7827,11.786033333333334,11.789366666666666,11.7927,11.796033333333332,11.799366666666666,11.8027,11.806033333333334,11.809366666666667,11.8127,11.816033333333333,11.819366666666667,11.8227,11.826033333333333,11.829366666666665,11.832699999999999,11.836033333333335,11.839366666666667,11.8427,11.846033333333333,11.849366666666667,11.8527,11.856033333333333,11.859366666666666,11.862699999999998,11.866033333333332,11.869366666666668,11.8727,11.876033333333334,11.879366666666666,11.8827,11.886033333333334,11.889366666666666,11.8927,11.896033333333332,11.899366666666667,11.902700000000001,11.906033333333333,11.909366666666667,11.9127,11.916033333333333,11.919366666666667,11.922699999999999,11.926033333333333,11.929366666666665,11.9327,11.936033333333334,11.939366666666666,11.9427,11.946033333333332,11.949366666666666,11.9527,11.956033333333332,11.959366666666666,11.9627,11.966033333333334,11.969366666666668,11.9727,11.976033333333334,11.979366666666666,11.9827,11.986033333333333,11.989366666666665,11.992700000000001,11.996033333333333,11.999366666666667,12.0027,12.006033333333333,12.009366666666667,12.012699999999999,12.016033333333333,12.019366666666667,12.022699999999999,12.026033333333334,12.029366666666666,12.0327,12.036033333333334,12.039366666666666,12.0427,12.046033333333332,12.049366666666666,12.0527,12.056033333333334,12.059366666666667,12.0627,12.066033333333333,12.069366666666667,12.0727,12.076033333333333,12.079366666666665,12.082699999999999,12.086033333333335,12.089366666666667,12.0927,12.096033333333333,12.099366666666667,12.1027,12.106033333333333,12.109366666666666,12.112699999999998,12.116033333333332,12.119366666666668,12.1227,12.126033333333334,12.129366666666666,12.1327,12.136033333333334,12.139366666666666,12.1427,12.146033333333332,12.149366666666667,12.152700000000001,12.156033333333333,12.159366666666667,12.1627,12.166033333333333,12.169366666666667,12.172699999999999,12.176033333333333,12.179366666666665,12.1827,12.186033333333334,12.189366666666666,12.1927,12.196033333333332,12.199366666666666,12.2027,12.206033333333332,12.209366666666666,12.2127,12.216033333333334,12.219366666666668,12.2227,12.226033333333334,12.229366666666666,12.2327,12.236033333333333,12.239366666666665,12.242700000000001,12.246033333333333,12.249366666666667,12.2527,12.256033333333333,12.259366666666667,12.262699999999999,12.266033333333333,12.269366666666667,12.272699999999999,12.276033333333334,12.279366666666666,12.2827,12.286033333333334,12.289366666666666,12.2927,12.296033333333332,12.299366666666666,12.3027,12.306033333333334,12.309366666666667,12.3127,12.316033333333333,12.319366666666667,12.3227,12.326033333333333,12.329366666666665,12.332699999999999,12.336033333333335,12.339366666666667,12.3427,12.346033333333333,12.349366666666667,12.3527,12.356033333333333,12.359366666666666,12.362699999999998,12.366033333333332,12.369366666666668,12.3727,12.376033333333334,12.379366666666666,12.3827,12.386033333333334,12.389366666666666,12.3927,12.396033333333332,12.399366666666667,12.402700000000001,12.406033333333333,12.409366666666667,12.4127,12.416033333333333,12.419366666666667,12.422699999999999,12.426033333333333,12.429366666666665,12.4327,12.436033333333334,12.439366666666666,12.4427,12.446033333333332,12.449366666666666,12.4527,12.456033333333332,12.459366666666666,12.4627,12.466033333333334,12.469366666666668,12.4727,12.476033333333334,12.479366666666666,12.4827,12.486033333333333,12.489366666666665,12.492700000000001,12.496033333333333,12.499366666666667,12.5027,12.506033333333333,12.509366666666667,12.512699999999999,12.516033333333333,12.519366666666667,12.522699999999999,12.526033333333334,12.529366666666666,12.5327,12.536033333333334,12.539366666666666,12.5427,12.546033333333332,12.549366666666666,12.5527,12.556033333333334,12.559366666666667,12.5627,12.566033333333333,12.569366666666667,12.5727,12.576033333333333,12.579366666666665,12.582699999999999,12.586033333333335,12.589366666666667,12.5927,12.596033333333333,12.599366666666667,12.6027,12.606033333333333,12.609366666666666,12.612699999999998,12.616033333333332,12.619366666666668,12.6227,12.626033333333334,12.629366666666666,12.6327,12.636033333333334,12.639366666666666,12.6427,12.646033333333332,12.649366666666667,12.652700000000001,12.656033333333333,12.659366666666667,12.6627,12.666033333333333,12.669366666666667,12.672699999999999,12.676033333333333,12.679366666666665,12.6827,12.686033333333334,12.689366666666666,12.6927,12.696033333333332,12.699366666666666,12.7027,12.706033333333332,12.709366666666666,12.7127,12.716033333333334,12.719366666666668,12.7227,12.726033333333334,12.729366666666666,12.7327,12.736033333333333,12.739366666666665,12.742700000000001,12.746033333333333,12.749366666666667,12.7527,12.756033333333333,12.759366666666667,12.762699999999999,12.766033333333333,12.769366666666667,12.772699999999999,12.776033333333334,12.779366666666666,12.7827,12.786033333333334,12.789366666666666,12.7927,12.796033333333332,12.799366666666666,12.8027,12.806033333333334,12.809366666666667,12.8127,12.816033333333333,12.819366666666667,12.8227,12.826033333333333,12.829366666666665,12.832699999999999,12.836033333333335,12.839366666666667,12.8427,12.846033333333333,12.849366666666667,12.8527,12.856033333333333,12.859366666666666,12.862699999999998,12.866033333333332,12.869366666666668,12.8727,12.876033333333334,12.879366666666666,12.8827,12.886033333333334,12.889366666666666,12.8927,12.896033333333332,12.899366666666667,12.902700000000001,12.906033333333333,12.909366666666667,12.9127,12.916033333333333,12.919366666666667,12.922699999999999,12.926033333333333,12.929366666666665,12.9327,12.936033333333334,12.939366666666666,12.9427,12.946033333333332,12.949366666666666,12.9527,12.956033333333332,12.959366666666666,12.9627,12.966033333333334,12.969366666666668,12.9727,12.976033333333334,12.979366666666666,12.9827,12.986033333333333,12.989366666666665,12.992700000000001,12.996033333333333,12.999366666666667,13.0027,13.006033333333333,13.009366666666667,13.012699999999999,13.016033333333333,13.019366666666667,13.022699999999999,13.026033333333334,13.029366666666666,13.0327,13.036033333333334,13.039366666666666,13.0427,13.046033333333332,13.049366666666666,13.0527,13.056033333333334,13.059366666666667,13.0627,13.066033333333333,13.069366666666667,13.0727,13.076033333333333,13.079366666666665,13.082699999999999,13.086033333333335,13.089366666666667,13.0927,13.096033333333333,13.099366666666667,13.1027,13.106033333333333,13.109366666666666,13.112699999999998,13.116033333333332,13.119366666666668,13.1227,13.126033333333334,13.129366666666666,13.1327,13.136033333333334,13.139366666666666,13.1427,13.146033333333332,13.149366666666667,13.152700000000001,13.156033333333333,13.159366666666667,13.1627,13.166033333333333,13.169366666666667,13.172699999999999,13.176033333333333,13.179366666666665,13.1827,13.186033333333334,13.189366666666666,13.1927,13.196033333333332,13.199366666666666,13.2027,13.206033333333332,13.209366666666666,13.2127,13.216033333333334,13.219366666666668,13.2227,13.226033333333334,13.229366666666666,13.2327,13.236033333333333,13.239366666666665,13.242700000000001,13.246033333333333,13.249366666666667,13.2527,13.256033333333333,13.259366666666667,13.262699999999999,13.266033333333333,13.269366666666667,13.272699999999999,13.276033333333334,13.279366666666666,13.2827,13.286033333333334,13.289366666666666,13.2927,13.296033333333332,13.299366666666666,13.3027,13.306033333333334,13.309366666666667,13.3127,13.316033333333333,13.319366666666667,13.3227,13.326033333333333,13.329366666666665,13.332699999999999,13.336033333333335,13.339366666666667,13.3427,13.346033333333333,13.349366666666667,13.3527,13.356033333333333,13.359366666666666,13.362699999999998,13.366033333333332,13.369366666666668,13.3727,13.376033333333334,13.379366666666666,13.3827,13.386033333333334,13.389366666666666,13.3927,13.396033333333332,13.399366666666667,13.402700000000001,13.406033333333333,13.409366666666667,13.4127,13.416033333333333,13.419366666666667,13.422699999999999,13.426033333333333,13.429366666666665,13.4327,13.436033333333334,13.439366666666666,13.4427,13.446033333333332,13.449366666666666,13.4527,13.456033333333332,13.459366666666666,13.4627,13.466033333333334,13.469366666666668,13.4727,13.476033333333334,13.479366666666666,13.4827,13.486033333333333,13.489366666666665,13.492700000000001,13.496033333333333,13.499366666666667,13.5027,13.506033333333333,13.509366666666667,13.512699999999999,13.516033333333333,13.519366666666667,13.522699999999999,13.526033333333334,13.529366666666666,13.5327,13.536033333333334,13.539366666666666,13.5427,13.546033333333332,13.549366666666666,13.5527,13.556033333333334,13.559366666666667,13.5627,13.566033333333333,13.569366666666667,13.5727,13.576033333333333,13.579366666666665,13.582699999999999,13.586033333333335,13.589366666666667,13.5927,13.596033333333333,13.599366666666667,13.6027,13.606033333333333,13.609366666666666,13.612699999999998,13.616033333333332,13.619366666666668,13.6227,13.626033333333334,13.629366666666666,13.6327,13.636033333333334,13.639366666666666,13.6427,13.646033333333332,13.649366666666667,13.652700000000001,13.656033333333333,13.659366666666667,13.6627,13.666033333333333,13.669366666666667,13.672699999999999,13.676033333333333,13.679366666666665,13.6827,13.686033333333334,13.689366666666666,13.6927,13.696033333333332,13.699366666666666,13.7027,13.706033333333332,13.709366666666666,13.7127,13.716033333333334,13.719366666666668,13.7227,13.726033333333334,13.729366666666666,13.7327,13.736033333333333,13.739366666666665,13.742700000000001,13.746033333333333,13.749366666666667,13.7527,13.756033333333333,13.759366666666667,13.762699999999999,13.766033333333333,13.769366666666667,13.772699999999999,13.776033333333334,13.779366666666666,13.7827,13.786033333333334,13.789366666666666,13.7927,13.796033333333332,13.799366666666666,13.8027,13.806033333333334,13.809366666666667,13.8127,13.816033333333333,13.819366666666667,13.8227,13.826033333333333,13.829366666666665,13.832699999999999,13.836033333333335,13.839366666666667,13.8427,13.846033333333333,13.849366666666667,13.8527,13.856033333333333,13.859366666666666,13.862699999999998,13.866033333333332,13.869366666666668,13.8727,13.876033333333334,13.879366666666666,13.8827,13.886033333333334,13.889366666666666,13.8927,13.896033333333332,13.899366666666667,13.902700000000001,13.906033333333333,13.909366666666667,13.9127,13.916033333333333,13.919366666666667,13.922699999999999,13.926033333333333,13.929366666666665,13.9327,13.936033333333334,13.939366666666666,13.9427,13.946033333333332,13.949366666666666,13.9527,13.956033333333332,13.959366666666666,13.9627,13.966033333333334,13.969366666666668,13.9727,13.976033333333334,13.979366666666666,13.9827,13.986033333333333,13.989366666666665,13.992700000000001,13.996033333333333,13.999366666666667,14.0027,14.006033333333333,14.009366666666667,14.012699999999999,14.016033333333333,14.019366666666667,14.022699999999999,14.026033333333334,14.029366666666666,14.0327,14.036033333333334,14.039366666666666,14.0427,14.046033333333332,14.049366666666666,14.0527,14.056033333333334,14.059366666666667,14.0627,14.066033333333333,14.069366666666667,14.0727,14.076033333333333,14.079366666666665,14.082699999999999,14.086033333333335,14.089366666666667,14.0927,14.096033333333333,14.099366666666667,14.1027,14.106033333333333,14.109366666666666,14.112699999999998,14.116033333333332,14.119366666666668,14.1227,14.126033333333334,14.129366666666666,14.1327,14.136033333333334,14.139366666666666,14.1427,14.146033333333332,14.149366666666667,14.152700000000001,14.156033333333333,14.159366666666667,14.1627,14.166033333333333,14.169366666666667,14.172699999999999,14.176033333333333,14.179366666666665,14.1827,14.186033333333334,14.189366666666666,14.1927,14.196033333333332,14.199366666666666,14.2027,14.206033333333332,14.209366666666666,14.2127,14.216033333333334,14.219366666666668,14.2227,14.226033333333334,14.229366666666666,14.2327,14.236033333333333,14.239366666666665,14.242700000000001,14.246033333333333,14.249366666666667,14.2527,14.256033333333333,14.259366666666667,14.262699999999999,14.266033333333333,14.269366666666667,14.272699999999999,14.276033333333334,14.279366666666666,14.2827,14.286033333333334,14.289366666666666,14.2927,14.296033333333332,14.299366666666666,14.3027,14.306033333333334,14.309366666666667,14.3127,14.316033333333333,14.319366666666667,14.3227,14.326033333333333,14.329366666666665,14.332699999999999,14.336033333333335,14.339366666666667,14.3427,14.346033333333333,14.349366666666667,14.3527,14.356033333333333,14.359366666666666,14.362699999999998,14.366033333333332,14.369366666666668,14.3727,14.376033333333334,14.379366666666666,14.3827,14.386033333333334,14.389366666666666,14.3927,14.396033333333332,14.399366666666667,14.402700000000001,14.406033333333333,14.409366666666667,14.4127,14.416033333333333,14.419366666666667,14.422699999999999,14.426033333333333,14.429366666666665,14.4327,14.436033333333334,14.439366666666666,14.4427,14.446033333333332,14.449366666666666,14.4527,14.456033333333332,14.459366666666666,14.4627,14.466033333333334,14.469366666666668,14.4727,14.476033333333334,14.479366666666666,14.4827,14.486033333333333,14.489366666666665,14.492700000000001,14.496033333333333,14.499366666666667,14.5027,14.506033333333333,14.509366666666667,14.512699999999999,14.516033333333333,14.519366666666667,14.522699999999999,14.526033333333334,14.529366666666666,14.5327,14.536033333333334,14.539366666666666,14.5427,14.546033333333332,14.549366666666666,14.5527,14.556033333333334,14.559366666666667,14.5627,14.566033333333333,14.569366666666667,14.5727,14.576033333333333,14.579366666666665,14.582699999999999,14.586033333333335,14.589366666666667,14.5927,14.596033333333333,14.599366666666667,14.6027,14.606033333333333,14.609366666666666,14.612699999999998,14.616033333333332,14.619366666666668,14.6227,14.626033333333334,14.629366666666666,14.6327,14.636033333333334,14.639366666666666,14.6427,14.646033333333332,14.649366666666667,14.652700000000001,14.656033333333333,14.659366666666667,14.6627,14.666033333333333,14.669366666666667,14.672699999999999,14.676033333333333,14.679366666666665,14.6827,14.686033333333334,14.689366666666666,14.6927,14.696033333333332,14.699366666666666,14.7027,14.706033333333332,14.709366666666666,14.7127,14.716033333333334,14.719366666666668,14.7227,14.726033333333334,14.729366666666666,14.7327,14.736033333333333,14.739366666666665,14.742700000000001,14.746033333333333,14.749366666666667,14.7527,14.756033333333333,14.759366666666667,14.762699999999999,14.766033333333333,14.769366666666667,14.772699999999999,14.776033333333334,14.779366666666666,14.7827,14.786033333333334,14.789366666666666,14.7927,14.796033333333332,14.799366666666666,14.8027,14.806033333333334,14.809366666666667,14.8127,14.816033333333333,14.819366666666667,14.8227,14.826033333333333,14.829366666666665,14.832699999999999,14.836033333333335,14.839366666666667,14.8427,14.846033333333333,14.849366666666667,14.8527,14.856033333333333,14.859366666666666,14.862699999999998,14.866033333333332,14.869366666666668,14.8727,14.876033333333334,14.879366666666666,14.8827,14.886033333333334,14.889366666666666,14.8927,14.896033333333332,14.899366666666667,14.902700000000001,14.906033333333333,14.909366666666667,14.9127,14.916033333333333,14.919366666666667,14.922699999999999,14.926033333333333,14.929366666666665,14.9327,14.936033333333334,14.939366666666666,14.9427,14.946033333333332,14.949366666666666,14.9527,14.956033333333332,14.959366666666666,14.9627,14.966033333333334,14.969366666666668,14.9727,14.976033333333334,14.979366666666666,14.9827,14.986033333333333,14.989366666666665,14.992700000000001,14.996033333333333,14.999366666666667,15.0027,15.006033333333333,15.009366666666667,15.012699999999999,15.016033333333333,15.019366666666667,15.022699999999999,15.026033333333334,15.029366666666666,15.0327,15.036033333333334,15.039366666666666,15.0427,15.046033333333332,15.049366666666666,15.0527,15.056033333333334,15.059366666666667,15.0627,15.066033333333333,15.069366666666667,15.0727,15.076033333333333,15.079366666666665,15.082699999999999,15.086033333333335,15.089366666666667,15.0927,15.096033333333333,15.099366666666667,15.1027,15.106033333333333,15.109366666666666,15.112699999999998,15.116033333333332,15.119366666666668,15.1227,15.126033333333334,15.129366666666666,15.1327,15.136033333333334,15.139366666666666,15.1427,15.146033333333332,15.149366666666667,15.152700000000001,15.156033333333333,15.159366666666667,15.1627,15.166033333333333,15.169366666666667,15.172699999999999,15.176033333333333,15.179366666666665,15.1827,15.186033333333334,15.189366666666666,15.1927,15.196033333333332,15.199366666666666,15.2027,15.206033333333332,15.209366666666666,15.2127,15.216033333333334,15.219366666666668,15.2227,15.226033333333334,15.229366666666666,15.2327,15.236033333333333,15.239366666666665,15.242700000000001,15.246033333333333,15.249366666666667,15.2527,15.256033333333333,15.259366666666667,15.262699999999999,15.266033333333333,15.269366666666667,15.272699999999999,15.276033333333334,15.279366666666666,15.2827,15.286033333333334,15.289366666666666,15.2927,15.296033333333332,15.299366666666666,15.3027,15.306033333333334,15.309366666666667,15.3127,15.316033333333333,15.319366666666667,15.3227,15.326033333333333,15.329366666666665,15.332699999999999,15.336033333333335,15.339366666666667,15.3427,15.346033333333333,15.349366666666667,15.3527,15.356033333333333,15.359366666666666,15.362699999999998,15.366033333333332,15.369366666666668,15.3727,15.376033333333334,15.379366666666666,15.3827,15.386033333333334,15.389366666666666,15.3927,15.396033333333332,15.399366666666667,15.402700000000001,15.406033333333333,15.409366666666667,15.4127,15.416033333333333,15.419366666666667,15.422699999999999,15.426033333333333,15.429366666666665,15.4327,15.436033333333334,15.439366666666666,15.4427,15.446033333333332,15.449366666666666,15.4527,15.456033333333332,15.459366666666666,15.4627,15.466033333333334,15.469366666666668,15.4727,15.476033333333334,15.479366666666666,15.4827,15.486033333333333,15.489366666666665,15.492700000000001,15.496033333333333,15.499366666666667,15.5027,15.506033333333333,15.509366666666667,15.512699999999999,15.516033333333333,15.519366666666667,15.522699999999999,15.526033333333334,15.529366666666666,15.5327,15.536033333333334,15.539366666666666,15.5427,15.546033333333332,15.549366666666666,15.5527,15.556033333333334,15.559366666666667,15.5627,15.566033333333333,15.569366666666667,15.5727,15.576033333333333,15.579366666666665,15.582699999999999,15.586033333333335,15.589366666666667,15.5927,15.596033333333333,15.599366666666667,15.6027,15.606033333333333,15.609366666666666,15.612699999999998,15.616033333333332,15.619366666666668,15.6227,15.626033333333334,15.629366666666666,15.6327,15.636033333333334,15.639366666666666,15.6427,15.646033333333332,15.649366666666667,15.652700000000001,15.656033333333333,15.659366666666667,15.6627,15.666033333333333,15.669366666666667,15.672699999999999,15.676033333333333,15.679366666666665,15.6827,15.686033333333334,15.689366666666666,15.6927,15.696033333333332,15.699366666666666,15.7027,15.706033333333332,15.709366666666666,15.7127,15.716033333333334,15.719366666666668,15.7227,15.726033333333334,15.729366666666666,15.7327,15.736033333333333,15.739366666666665,15.742700000000001,15.746033333333333,15.749366666666667,15.7527,15.756033333333333,15.759366666666667,15.762699999999999,15.766033333333333,15.769366666666667,15.772699999999999,15.776033333333334,15.779366666666666,15.7827,15.786033333333334,15.789366666666666,15.7927,15.796033333333332,15.799366666666666,15.8027,15.806033333333334,15.809366666666667,15.8127,15.816033333333333,15.819366666666667,15.8227,15.826033333333333,15.829366666666665,15.832699999999999,15.836033333333335,15.839366666666667,15.8427,15.846033333333333,15.849366666666667,15.8527,15.856033333333333,15.859366666666666,15.862699999999998,15.866033333333332,15.869366666666668,15.8727,15.876033333333334,15.879366666666666,15.8827,15.886033333333334,15.889366666666666,15.8927,15.896033333333332,15.899366666666667,15.902700000000001,15.906033333333333,15.909366666666667,15.9127,15.916033333333333,15.919366666666667,15.922699999999999,15.926033333333333,15.929366666666665,15.9327,15.936033333333334,15.939366666666666,15.9427,15.946033333333332,15.949366666666666,15.9527,15.956033333333332,15.959366666666666,15.9627,15.966033333333334,15.969366666666668,15.9727,15.976033333333334,15.979366666666666,15.9827,15.986033333333333,15.989366666666665,15.992700000000001,15.996033333333333,15.999366666666667,16.0027,16.00603333333333,16.00936666666667,16.0127,16.016033333333333,16.019366666666667,16.0227,16.026033333333334,16.029366666666665,16.0327,16.036033333333332,16.039366666666666,16.0427,16.046033333333334,16.049366666666668,16.0527,16.056033333333332,16.059366666666666,16.0627,16.066033333333333,16.069366666666667,16.0727,16.076033333333335,16.079366666666665,16.0827,16.086033333333333,16.089366666666667,16.0927,16.09603333333333,16.099366666666665,16.102700000000002,16.106033333333333,16.109366666666666,16.1127,16.116033333333334,16.119366666666668,16.1227,16.126033333333332,16.129366666666666,16.1327,16.136033333333334,16.139366666666668,16.1427,16.14603333333333,16.149366666666666,16.1527,16.156033333333333,16.159366666666667,16.162699999999997,16.166033333333335,16.16936666666667,16.1727,16.176033333333333,16.179366666666667,16.1827,16.186033333333334,16.189366666666665,16.1927,16.196033333333332,16.199366666666666,16.2027,16.206033333333334,16.209366666666668,16.212699999999998,16.216033333333332,16.219366666666666,16.2227,16.226033333333334,16.229366666666667,16.2327,16.236033333333335,16.239366666666665,16.2427,16.246033333333333,16.249366666666667,16.2527,16.25603333333333,16.25936666666667,16.2627,16.266033333333333,16.269366666666667,16.2727,16.276033333333334,16.279366666666665,16.2827,16.286033333333332,16.289366666666666,16.2927,16.296033333333334,16.299366666666668,16.3027,16.306033333333332,16.309366666666666,16.3127,16.316033333333333,16.319366666666667,16.3227,16.326033333333335,16.329366666666665,16.3327,16.336033333333333,16.339366666666667,16.3427,16.34603333333333,16.349366666666665,16.352700000000002,16.356033333333333,16.359366666666666,16.3627,16.366033333333334,16.369366666666668,16.3727,16.376033333333332,16.379366666666666,16.3827,16.386033333333334,16.389366666666668,16.3927,16.39603333333333,16.399366666666666,16.4027,16.406033333333333,16.409366666666667,16.412699999999997,16.416033333333335,16.41936666666667,16.4227,16.426033333333333,16.429366666666667,16.4327,16.436033333333334,16.439366666666665,16.4427,16.446033333333332,16.449366666666666,16.4527,16.456033333333334,16.459366666666668,16.462699999999998,16.466033333333332,16.469366666666666,16.4727,16.476033333333334,16.479366666666667,16.4827,16.486033333333335,16.489366666666665,16.4927,16.496033333333333,16.499366666666667,16.5027,16.50603333333333,16.50936666666667,16.5127,16.516033333333333,16.519366666666667,16.5227,16.526033333333334,16.529366666666665,16.5327,16.536033333333332,16.539366666666666,16.5427,16.546033333333334,16.549366666666668,16.5527,16.556033333333332,16.559366666666666,16.5627,16.566033333333333,16.569366666666667,16.5727,16.576033333333335,16.579366666666665,16.5827,16.586033333333333,16.589366666666667,16.5927,16.59603333333333,16.599366666666665,16.602700000000002,16.606033333333333,16.609366666666666,16.6127,16.616033333333334,16.619366666666668,16.6227,16.626033333333332,16.629366666666666,16.6327,16.636033333333334,16.639366666666668,16.6427,16.64603333333333,16.649366666666666,16.6527,16.656033333333333,16.659366666666667,16.662699999999997,16.666033333333335,16.66936666666667,16.6727,16.676033333333333,16.679366666666667,16.6827,16.686033333333334,16.689366666666665,16.6927,16.696033333333332,16.699366666666666,16.7027,16.706033333333334,16.709366666666668,16.712699999999998,16.716033333333332,16.719366666666666,16.7227,16.726033333333334,16.729366666666667,16.7327,16.736033333333335,16.739366666666665,16.7427,16.746033333333333,16.749366666666667,16.7527,16.75603333333333,16.75936666666667,16.7627,16.766033333333333,16.769366666666667,16.7727,16.776033333333334,16.779366666666665,16.7827,16.786033333333332,16.789366666666666,16.7927,16.796033333333334,16.799366666666668,16.8027,16.806033333333332,16.809366666666666,16.8127,16.816033333333333,16.819366666666667,16.8227,16.826033333333335,16.829366666666665,16.8327,16.836033333333333,16.839366666666667,16.8427,16.84603333333333,16.849366666666665,16.852700000000002,16.856033333333333,16.859366666666666,16.8627,16.866033333333334,16.869366666666668,16.8727,16.876033333333332,16.879366666666666,16.8827,16.886033333333334,16.889366666666668,16.8927,16.89603333333333,16.899366666666666,16.9027,16.906033333333333,16.909366666666667,16.912699999999997,16.916033333333335,16.91936666666667,16.9227,16.926033333333333,16.929366666666667,16.9327,16.936033333333334,16.939366666666665,16.9427,16.946033333333332,16.949366666666666,16.9527,16.956033333333334,16.959366666666668,16.962699999999998,16.966033333333332,16.969366666666666,16.9727,16.976033333333334,16.979366666666667,16.9827,16.986033333333335,16.989366666666665,16.9927,16.996033333333333,16.999366666666667,17.0027,17.00603333333333,17.00936666666667,17.0127,17.016033333333333,17.019366666666667,17.0227,17.026033333333334,17.029366666666665,17.0327,17.036033333333332,17.039366666666666,17.0427,17.046033333333334,17.049366666666668,17.0527,17.056033333333332,17.059366666666666,17.0627,17.066033333333333,17.069366666666667,17.0727,17.07603333333333,17.079366666666665,17.0827,17.086033333333333,17.089366666666667,17.092699999999997,17.09603333333333,17.099366666666665,17.102700000000002,17.106033333333336,17.109366666666666,17.1127,17.116033333333334,17.119366666666668,17.122700000000002,17.126033333333332,17.129366666666666,17.1327,17.136033333333334,17.139366666666668,17.142699999999998,17.14603333333333,17.149366666666666,17.1527,17.156033333333333,17.159366666666664,17.162699999999997,17.166033333333335,17.16936666666667,17.172700000000003,17.176033333333333,17.179366666666667,17.1827,17.186033333333334,17.18936666666667,17.1927,17.196033333333332,17.199366666666666,17.2027,17.206033333333334,17.209366666666664,17.212699999999998,17.216033333333332,17.219366666666666,17.2227,17.22603333333333,17.229366666666667,17.2327,17.236033333333335,17.23936666666667,17.2427,17.246033333333333,17.249366666666667,17.2527,17.256033333333335,17.259366666666665,17.2627,17.266033333333333,17.269366666666667,17.2727,17.27603333333333,17.279366666666665,17.2827,17.286033333333332,17.28936666666667,17.2927,17.296033333333334,17.299366666666668,17.3027,17.306033333333335,17.309366666666666,17.3127,17.316033333333333,17.319366666666667,17.3227,17.32603333333333,17.329366666666665,17.3327,17.336033333333333,17.339366666666667,17.342699999999997,17.34603333333333,17.349366666666665,17.352700000000002,17.356033333333336,17.359366666666666,17.3627,17.366033333333334,17.369366666666668,17.372700000000002,17.376033333333332,17.379366666666666,17.3827,17.386033333333334,17.389366666666668,17.392699999999998,17.39603333333333,17.399366666666666,17.4027,17.406033333333333,17.409366666666664,17.412699999999997,17.416033333333335,17.41936666666667,17.422700000000003,17.426033333333333,17.429366666666667,17.4327,17.436033333333334,17.43936666666667,17.4427,17.446033333333332,17.449366666666666,17.4527,17.456033333333334,17.459366666666664,17.462699999999998,17.466033333333332,17.469366666666666,17.4727,17.47603333333333,17.479366666666667,17.4827,17.486033333333335,17.48936666666667,17.4927,17.496033333333333,17.499366666666667,17.5027,17.506033333333335,17.509366666666665,17.5127,17.516033333333333,17.519366666666667,17.5227,17.52603333333333,17.529366666666665,17.5327,17.536033333333332,17.53936666666667,17.5427,17.546033333333334,17.549366666666668,17.5527,17.556033333333335,17.559366666666666,17.5627,17.566033333333333,17.569366666666667,17.5727,17.57603333333333,17.579366666666665,17.5827,17.586033333333333,17.589366666666667,17.592699999999997,17.59603333333333,17.599366666666665,17.602700000000002,17.606033333333336,17.609366666666666,17.6127,17.616033333333334,17.619366666666668,17.622700000000002,17.626033333333332,17.629366666666666,17.6327,17.636033333333334,17.639366666666668,17.642699999999998,17.64603333333333,17.649366666666666,17.6527,17.656033333333333,17.659366666666664,17.662699999999997,17.666033333333335,17.66936666666667,17.672700000000003,17.676033333333333,17.679366666666667,17.6827,17.686033333333334,17.68936666666667,17.6927,17.696033333333332,17.699366666666666,17.7027,17.706033333333334,17.709366666666664,17.712699999999998,17.716033333333332,17.719366666666666,17.7227,17.72603333333333,17.729366666666667,17.7327,17.736033333333335,17.73936666666667,17.7427,17.746033333333333,17.749366666666667,17.7527,17.756033333333335,17.759366666666665,17.7627,17.766033333333333,17.769366666666667,17.7727,17.77603333333333,17.779366666666665,17.7827,17.786033333333332,17.78936666666667,17.7927,17.796033333333334,17.799366666666668,17.8027,17.806033333333335,17.809366666666666,17.8127,17.816033333333333,17.819366666666667,17.8227,17.82603333333333,17.829366666666665,17.8327,17.836033333333333,17.839366666666667,17.842699999999997,17.84603333333333,17.849366666666665,17.852700000000002,17.856033333333336,17.859366666666666,17.8627,17.866033333333334,17.869366666666668,17.872700000000002,17.876033333333332,17.879366666666666,17.8827,17.886033333333334,17.889366666666668,17.892699999999998,17.89603333333333,17.899366666666666,17.9027,17.906033333333333,17.909366666666664,17.912699999999997,17.916033333333335,17.91936666666667,17.922700000000003,17.926033333333333,17.929366666666667,17.9327,17.936033333333334,17.93936666666667,17.9427,17.946033333333332,17.949366666666666,17.9527,17.956033333333334,17.959366666666664,17.962699999999998,17.966033333333332,17.969366666666666,17.9727,17.97603333333333,17.979366666666667,17.9827,17.986033333333335,17.98936666666667,17.9927,17.996033333333333,17.999366666666667,18.0027,18.006033333333335,18.009366666666665,18.0127,18.016033333333333,18.019366666666667,18.0227,18.02603333333333,18.029366666666665,18.0327,18.036033333333332,18.03936666666667,18.0427,18.046033333333334,18.049366666666668,18.0527,18.056033333333335,18.059366666666666,18.0627,18.066033333333333,18.069366666666667,18.0727,18.07603333333333,18.079366666666665,18.0827,18.086033333333333,18.089366666666667,18.092699999999997,18.09603333333333,18.099366666666665,18.102700000000002,18.106033333333336,18.109366666666666,18.1127,18.116033333333334,18.119366666666668,18.122700000000002,18.126033333333332,18.129366666666666,18.1327,18.136033333333334,18.139366666666668,18.142699999999998,18.14603333333333,18.149366666666666,18.1527,18.156033333333333,18.159366666666664,18.162699999999997,18.166033333333335,18.16936666666667,18.172700000000003,18.176033333333333,18.179366666666667,18.1827,18.186033333333334,18.18936666666667,18.1927,18.196033333333332,18.199366666666666,18.2027,18.206033333333334,18.209366666666664,18.212699999999998,18.216033333333332,18.219366666666666,18.2227,18.22603333333333,18.229366666666667,18.2327,18.236033333333335,18.23936666666667,18.2427,18.246033333333333,18.249366666666667,18.2527,18.256033333333335,18.259366666666665,18.2627,18.266033333333333,18.269366666666667,18.2727,18.27603333333333,18.279366666666665,18.2827,18.286033333333332,18.28936666666667,18.2927,18.296033333333334,18.299366666666668,18.3027,18.306033333333335,18.309366666666666,18.3127,18.316033333333333,18.319366666666667,18.3227,18.32603333333333,18.329366666666665,18.3327,18.336033333333333,18.339366666666667,18.342699999999997,18.34603333333333,18.349366666666665,18.352700000000002,18.356033333333336,18.359366666666666,18.3627,18.366033333333334,18.369366666666668,18.372700000000002,18.376033333333332,18.379366666666666,18.3827,18.386033333333334,18.389366666666668,18.392699999999998,18.39603333333333,18.399366666666666,18.4027,18.406033333333333,18.409366666666664,18.412699999999997,18.416033333333335,18.41936666666667,18.422700000000003,18.426033333333333,18.429366666666667,18.4327,18.436033333333334,18.43936666666667,18.4427,18.446033333333332,18.449366666666666,18.4527,18.456033333333334,18.459366666666664,18.462699999999998,18.466033333333332,18.469366666666666,18.4727,18.47603333333333,18.479366666666667,18.4827,18.486033333333335,18.48936666666667,18.4927,18.496033333333333,18.499366666666667,18.5027,18.506033333333335,18.509366666666665,18.5127,18.516033333333333,18.519366666666667,18.5227,18.52603333333333,18.529366666666665,18.5327,18.536033333333332,18.53936666666667,18.5427,18.546033333333334,18.549366666666668,18.5527,18.556033333333335,18.559366666666666,18.5627,18.566033333333333,18.569366666666667,18.5727,18.57603333333333,18.579366666666665,18.5827,18.586033333333333,18.589366666666667,18.592699999999997,18.59603333333333,18.599366666666665,18.602700000000002,18.606033333333336,18.609366666666666,18.6127,18.616033333333334,18.619366666666668,18.622700000000002,18.626033333333332,18.629366666666666,18.6327,18.636033333333334,18.639366666666668,18.642699999999998,18.64603333333333,18.649366666666666,18.6527,18.656033333333333,18.659366666666664,18.662699999999997,18.666033333333335,18.66936666666667,18.672700000000003,18.676033333333333,18.679366666666667,18.6827,18.686033333333334,18.68936666666667,18.6927,18.696033333333332,18.699366666666666,18.7027,18.706033333333334,18.709366666666664,18.712699999999998,18.716033333333332,18.719366666666666,18.7227,18.72603333333333,18.729366666666667,18.7327,18.736033333333335,18.73936666666667,18.7427,18.746033333333333,18.749366666666667,18.7527,18.756033333333335,18.759366666666665,18.7627,18.766033333333333,18.769366666666667,18.7727,18.77603333333333,18.779366666666665,18.7827,18.786033333333332,18.78936666666667,18.7927,18.796033333333334,18.799366666666668,18.8027,18.806033333333335,18.809366666666666,18.8127,18.816033333333333,18.819366666666667,18.8227,18.82603333333333,18.829366666666665,18.8327,18.836033333333333,18.839366666666667,18.842699999999997,18.84603333333333,18.849366666666665,18.852700000000002,18.856033333333336,18.859366666666666,18.8627,18.866033333333334,18.869366666666668,18.872700000000002,18.876033333333332,18.879366666666666,18.8827,18.886033333333334,18.889366666666668,18.892699999999998,18.89603333333333,18.899366666666666,18.9027,18.906033333333333,18.909366666666664,18.912699999999997,18.916033333333335,18.91936666666667,18.922700000000003,18.926033333333333,18.929366666666667,18.9327,18.936033333333334,18.93936666666667,18.9427,18.946033333333332,18.949366666666666,18.9527,18.956033333333334,18.959366666666664,18.962699999999998,18.966033333333332,18.969366666666666,18.9727,18.97603333333333,18.979366666666667,18.9827,18.986033333333335,18.98936666666667,18.9927,18.996033333333333,18.999366666666667,19.0027,19.006033333333335,19.009366666666665,19.0127,19.016033333333333,19.019366666666667,19.0227,19.02603333333333,19.029366666666665,19.0327,19.036033333333332,19.03936666666667,19.0427,19.046033333333334,19.049366666666668,19.0527,19.056033333333335,19.059366666666666,19.0627,19.066033333333333,19.069366666666667,19.0727,19.07603333333333,19.079366666666665,19.0827,19.086033333333333,19.089366666666667,19.092699999999997,19.09603333333333,19.099366666666665,19.102700000000002,19.106033333333336,19.109366666666666,19.1127,19.116033333333334,19.119366666666668,19.122700000000002,19.126033333333332,19.129366666666666,19.1327,19.136033333333334,19.139366666666668,19.142699999999998,19.14603333333333,19.149366666666666,19.1527,19.156033333333333,19.159366666666664,19.162699999999997,19.166033333333335,19.16936666666667,19.172700000000003,19.176033333333333,19.179366666666667,19.1827,19.186033333333334,19.18936666666667,19.1927,19.196033333333332,19.199366666666666,19.2027,19.206033333333334,19.209366666666664,19.212699999999998,19.216033333333332,19.219366666666666,19.2227,19.22603333333333,19.229366666666667,19.2327,19.236033333333335,19.23936666666667,19.2427,19.246033333333333,19.249366666666667,19.2527,19.256033333333335,19.259366666666665,19.2627,19.266033333333333,19.269366666666667,19.2727,19.27603333333333,19.279366666666665,19.2827,19.286033333333332,19.28936666666667,19.2927,19.296033333333334,19.299366666666668,19.3027,19.306033333333335,19.309366666666666,19.3127,19.316033333333333,19.319366666666667,19.3227,19.32603333333333,19.329366666666665,19.3327,19.336033333333333,19.339366666666667,19.342699999999997,19.34603333333333,19.349366666666665,19.352700000000002,19.356033333333336,19.359366666666666,19.3627,19.366033333333334,19.369366666666668,19.372700000000002,19.376033333333332,19.379366666666666,19.3827,19.386033333333334,19.389366666666668,19.392699999999998,19.39603333333333,19.399366666666666,19.4027,19.406033333333333,19.409366666666664,19.412699999999997,19.416033333333335,19.41936666666667,19.422700000000003,19.426033333333333,19.429366666666667,19.4327,19.436033333333334,19.43936666666667,19.4427,19.446033333333332,19.449366666666666,19.4527,19.456033333333334,19.459366666666664,19.462699999999998,19.466033333333332,19.469366666666666,19.4727,19.47603333333333,19.479366666666667,19.4827,19.486033333333335,19.48936666666667,19.4927,19.496033333333333,19.499366666666667,19.5027,19.506033333333335,19.509366666666665,19.5127,19.516033333333333,19.519366666666667,19.5227,19.52603333333333,19.529366666666665,19.5327,19.536033333333332,19.53936666666667,19.5427,19.546033333333334,19.549366666666668,19.5527,19.556033333333335,19.559366666666666,19.5627,19.566033333333333,19.569366666666667,19.5727,19.57603333333333,19.579366666666665,19.5827,19.586033333333333,19.589366666666667,19.592699999999997,19.59603333333333,19.599366666666665,19.602700000000002,19.606033333333336,19.609366666666666,19.6127,19.616033333333334,19.619366666666668,19.622700000000002,19.626033333333332,19.629366666666666,19.6327,19.636033333333334,19.639366666666668,19.642699999999998,19.64603333333333,19.649366666666666,19.6527,19.656033333333333,19.659366666666664,19.662699999999997,19.666033333333335,19.66936666666667,19.672700000000003,19.676033333333333,19.679366666666667,19.6827,19.686033333333334,19.68936666666667,19.6927,19.696033333333332,19.699366666666666,19.7027,19.706033333333334,19.709366666666664,19.712699999999998,19.716033333333332,19.719366666666666,19.7227,19.72603333333333,19.729366666666667,19.7327,19.736033333333335,19.73936666666667,19.7427,19.746033333333333,19.749366666666667,19.7527,19.756033333333335,19.759366666666665,19.7627,19.766033333333333,19.769366666666667,19.7727,19.77603333333333,19.779366666666665,19.7827,19.786033333333332,19.78936666666667,19.7927,19.796033333333334,19.799366666666668,19.8027,19.806033333333335,19.809366666666666,19.8127,19.816033333333333,19.819366666666667,19.8227,19.82603333333333,19.829366666666665,19.8327,19.836033333333333,19.839366666666667,19.842699999999997,19.84603333333333,19.849366666666665,19.852700000000002,19.856033333333336,19.859366666666666,19.8627,19.866033333333334,19.869366666666668,19.872700000000002,19.876033333333332,19.879366666666666,19.8827,19.886033333333334,19.889366666666668,19.892699999999998,19.89603333333333,19.899366666666666,19.9027,19.906033333333333,19.909366666666664,19.912699999999997,19.916033333333335,19.91936666666667,19.922700000000003,19.926033333333333,19.929366666666667,19.9327,19.936033333333334,19.93936666666667,19.9427,19.946033333333332,19.949366666666666,19.9527,19.956033333333334,19.959366666666664,19.962699999999998,19.966033333333332,19.969366666666666,19.9727,19.97603333333333,19.979366666666667,19.9827,19.986033333333335,19.98936666666667,19.9927,19.996033333333333,19.999366666666667,20.0027,20.006033333333335,20.009366666666665,20.0127,20.016033333333333,20.019366666666667,20.0227,20.02603333333333,20.029366666666665,20.0327,20.036033333333332,20.03936666666667,20.0427,20.046033333333334,20.049366666666668,20.0527,20.056033333333335,20.059366666666666,20.0627,20.066033333333333,20.069366666666667,20.0727,20.07603333333333,20.079366666666665,20.0827,20.086033333333333,20.089366666666667,20.092699999999997,20.09603333333333,20.099366666666665,20.102700000000002,20.106033333333336,20.109366666666666,20.1127,20.116033333333334,20.119366666666668,20.122700000000002,20.126033333333332,20.129366666666666,20.1327,20.136033333333334,20.139366666666668,20.142699999999998,20.14603333333333,20.149366666666666,20.1527,20.156033333333333,20.159366666666664,20.162699999999997,20.166033333333335,20.16936666666667,20.172700000000003,20.176033333333333,20.179366666666667,20.1827,20.186033333333334,20.18936666666667,20.1927,20.196033333333332,20.199366666666666,20.2027,20.206033333333334,20.209366666666664,20.212699999999998,20.216033333333332,20.219366666666666,20.2227,20.22603333333333,20.229366666666667,20.2327,20.236033333333335,20.23936666666667,20.2427,20.246033333333333,20.249366666666667,20.2527,20.256033333333335,20.259366666666665,20.2627,20.266033333333333,20.269366666666667,20.2727,20.27603333333333,20.279366666666665,20.2827,20.286033333333332,20.28936666666667,20.2927,20.296033333333334,20.299366666666668,20.3027,20.306033333333335,20.309366666666666,20.3127,20.316033333333333,20.319366666666667,20.3227,20.32603333333333,20.329366666666665,20.3327,20.336033333333333,20.339366666666667,20.342699999999997,20.34603333333333,20.349366666666665,20.352700000000002,20.356033333333336,20.359366666666666,20.3627,20.366033333333334,20.369366666666668,20.372700000000002,20.376033333333332,20.379366666666666,20.3827,20.386033333333334,20.389366666666668,20.392699999999998,20.39603333333333,20.399366666666666,20.4027,20.406033333333333,20.409366666666664,20.412699999999997,20.416033333333335,20.41936666666667,20.422700000000003,20.426033333333333,20.429366666666667,20.4327,20.436033333333334,20.43936666666667,20.4427,20.446033333333332,20.449366666666666,20.4527,20.456033333333334,20.459366666666664,20.462699999999998,20.466033333333332,20.469366666666666,20.4727,20.47603333333333,20.479366666666667,20.4827,20.486033333333335,20.48936666666667,20.4927,20.496033333333333,20.499366666666667,20.5027,20.506033333333335,20.509366666666665,20.5127,20.516033333333333,20.519366666666667,20.5227,20.52603333333333,20.529366666666665,20.5327,20.536033333333332,20.53936666666667,20.5427,20.546033333333334,20.549366666666668,20.5527,20.556033333333335,20.559366666666666,20.5627,20.566033333333333,20.569366666666667,20.5727,20.57603333333333,20.579366666666665,20.5827,20.586033333333333,20.589366666666667,20.592699999999997,20.59603333333333,20.599366666666665,20.602700000000002,20.606033333333336,20.609366666666666,20.6127,20.616033333333334,20.619366666666668,20.622700000000002,20.626033333333332,20.629366666666666,20.6327,20.636033333333334,20.639366666666668,20.642699999999998,20.64603333333333,20.649366666666666,20.6527,20.656033333333333,20.659366666666664,20.662699999999997,20.666033333333335,20.66936666666667,20.672700000000003,20.676033333333333,20.679366666666667,20.6827,20.686033333333334,20.68936666666667,20.6927,20.696033333333332,20.699366666666666,20.7027,20.706033333333334,20.709366666666664,20.712699999999998,20.716033333333332,20.719366666666666,20.7227,20.72603333333333,20.729366666666667,20.7327,20.736033333333335,20.73936666666667,20.7427,20.746033333333333,20.749366666666667,20.7527,20.756033333333335,20.759366666666665,20.7627,20.766033333333333,20.769366666666667,20.7727,20.77603333333333,20.779366666666665,20.7827,20.786033333333332,20.78936666666667,20.7927,20.796033333333334,20.799366666666668,20.8027,20.806033333333335,20.809366666666666,20.8127,20.816033333333333,20.819366666666667,20.8227,20.82603333333333,20.829366666666665,20.8327,20.836033333333333,20.839366666666667,20.842699999999997,20.84603333333333,20.849366666666665,20.852700000000002,20.856033333333336,20.859366666666666,20.8627,20.866033333333334,20.869366666666668,20.872700000000002,20.876033333333332,20.879366666666666,20.8827,20.886033333333334,20.889366666666668,20.892699999999998,20.89603333333333,20.899366666666666,20.9027,20.906033333333333,20.909366666666664,20.912699999999997,20.916033333333335,20.91936666666667,20.922700000000003,20.926033333333333,20.929366666666667,20.9327,20.936033333333334,20.93936666666667,20.9427,20.946033333333332,20.949366666666666,20.9527,20.956033333333334,20.959366666666664,20.962699999999998,20.966033333333332,20.969366666666666,20.9727,20.97603333333333,20.979366666666667,20.9827,20.986033333333335,20.98936666666667,20.9927,20.996033333333333,20.999366666666667,21.0027,21.006033333333335,21.009366666666665,21.0127,21.016033333333333,21.019366666666667,21.0227,21.02603333333333,21.029366666666665,21.0327,21.036033333333332,21.03936666666667,21.0427,21.046033333333334,21.049366666666668,21.0527,21.056033333333335,21.059366666666666,21.0627,21.066033333333333,21.069366666666667,21.0727,21.07603333333333,21.079366666666665,21.0827,21.086033333333333,21.089366666666667,21.092699999999997,21.09603333333333,21.099366666666665,21.102700000000002,21.106033333333336,21.109366666666666,21.1127,21.116033333333334,21.119366666666668,21.122700000000002,21.126033333333332,21.129366666666666,21.1327,21.136033333333334,21.139366666666668,21.142699999999998,21.14603333333333,21.149366666666666,21.1527,21.156033333333333,21.159366666666664,21.162699999999997,21.166033333333335,21.16936666666667,21.172700000000003,21.176033333333333,21.179366666666667,21.1827,21.186033333333334,21.18936666666667,21.1927,21.196033333333332,21.199366666666666,21.2027,21.206033333333334,21.209366666666664,21.212699999999998,21.216033333333332,21.219366666666666,21.2227,21.22603333333333,21.229366666666667,21.2327,21.236033333333335,21.23936666666667,21.2427,21.246033333333333,21.249366666666667,21.2527,21.256033333333335,21.259366666666665,21.2627,21.266033333333333,21.269366666666667,21.2727,21.27603333333333,21.279366666666665,21.2827,21.286033333333332,21.28936666666667,21.2927,21.296033333333334,21.299366666666668,21.3027,21.306033333333335,21.309366666666666,21.3127,21.316033333333333,21.319366666666667,21.3227,21.32603333333333,21.329366666666665,21.3327,21.336033333333333,21.339366666666667,21.342699999999997,21.34603333333333,21.349366666666665,21.352700000000002,21.356033333333336,21.359366666666666,21.3627,21.366033333333334,21.369366666666668,21.372700000000002,21.376033333333332,21.379366666666666,21.3827,21.386033333333334,21.389366666666668,21.392699999999998,21.39603333333333,21.399366666666666,21.4027,21.406033333333333,21.409366666666664,21.412699999999997,21.416033333333335,21.41936666666667,21.422700000000003,21.426033333333333,21.429366666666667,21.4327,21.436033333333334,21.43936666666667,21.4427,21.446033333333332,21.449366666666666,21.4527,21.456033333333334,21.459366666666664,21.462699999999998,21.466033333333332,21.469366666666666,21.4727,21.47603333333333,21.479366666666667,21.4827,21.486033333333335,21.48936666666667,21.4927,21.496033333333333,21.499366666666667,21.5027,21.506033333333335,21.509366666666665,21.5127,21.516033333333333,21.519366666666667,21.5227,21.52603333333333,21.529366666666665,21.5327,21.536033333333332,21.53936666666667,21.5427,21.546033333333334,21.549366666666668,21.5527,21.556033333333335,21.559366666666666,21.5627,21.566033333333333,21.569366666666667,21.5727,21.57603333333333,21.579366666666665,21.5827,21.586033333333333,21.589366666666667,21.592699999999997,21.59603333333333,21.599366666666665,21.602700000000002,21.606033333333336,21.609366666666666,21.6127,21.616033333333334,21.619366666666668,21.622700000000002,21.626033333333332,21.629366666666666,21.6327,21.636033333333334,21.639366666666668,21.642699999999998,21.64603333333333,21.649366666666666,21.6527,21.656033333333333,21.659366666666664,21.662699999999997,21.666033333333335,21.66936666666667,21.672700000000003,21.676033333333333,21.679366666666667,21.6827,21.686033333333334,21.68936666666667,21.6927,21.696033333333332,21.699366666666666,21.7027,21.706033333333334,21.709366666666664,21.712699999999998,21.716033333333332,21.719366666666666,21.7227,21.72603333333333,21.729366666666667,21.7327,21.736033333333335,21.73936666666667,21.7427,21.746033333333333,21.749366666666667,21.7527,21.756033333333335,21.759366666666665,21.7627,21.766033333333333,21.769366666666667,21.7727,21.77603333333333,21.779366666666665,21.7827,21.786033333333332,21.78936666666667,21.7927,21.796033333333334,21.799366666666668,21.8027,21.806033333333335,21.809366666666666,21.8127,21.816033333333333,21.819366666666667,21.8227,21.82603333333333,21.829366666666665,21.8327,21.836033333333333,21.839366666666667,21.842699999999997,21.84603333333333,21.849366666666665,21.852700000000002,21.856033333333336,21.859366666666666,21.8627,21.866033333333334,21.869366666666668,21.872700000000002,21.876033333333332,21.879366666666666,21.8827,21.886033333333334,21.889366666666668,21.892699999999998,21.89603333333333,21.899366666666666,21.9027,21.906033333333333,21.909366666666664,21.912699999999997,21.916033333333335,21.91936666666667,21.922700000000003,21.926033333333333,21.929366666666667,21.9327,21.936033333333334,21.93936666666667,21.9427,21.946033333333332,21.949366666666666,21.9527,21.956033333333334,21.959366666666664,21.962699999999998,21.966033333333332,21.969366666666666,21.9727,21.97603333333333,21.979366666666667,21.9827,21.986033333333335,21.98936666666667,21.9927,21.996033333333333,21.999366666666667,22.0027,22.006033333333335,22.009366666666665,22.0127,22.016033333333333,22.019366666666667,22.0227,22.02603333333333,22.029366666666665,22.0327,22.036033333333332,22.03936666666667,22.0427,22.046033333333334,22.049366666666668,22.0527,22.056033333333335,22.059366666666666,22.0627,22.066033333333333,22.069366666666667,22.0727,22.07603333333333,22.079366666666665,22.0827,22.086033333333333,22.089366666666667,22.092699999999997,22.09603333333333,22.099366666666665,22.102700000000002,22.106033333333336,22.109366666666666,22.1127,22.116033333333334,22.119366666666668,22.122700000000002,22.126033333333332,22.129366666666666,22.1327,22.136033333333334,22.139366666666668,22.142699999999998,22.14603333333333,22.149366666666666,22.1527,22.156033333333333,22.159366666666664,22.162699999999997,22.166033333333335,22.16936666666667,22.172700000000003,22.176033333333333,22.179366666666667,22.1827,22.186033333333334,22.18936666666667,22.1927,22.196033333333332,22.199366666666666,22.2027,22.206033333333334,22.209366666666664,22.212699999999998,22.216033333333332,22.219366666666666,22.2227,22.22603333333333,22.229366666666667,22.2327,22.236033333333335,22.23936666666667,22.2427,22.246033333333333,22.249366666666667,22.2527,22.256033333333335,22.259366666666665,22.2627,22.266033333333333,22.269366666666667,22.2727,22.27603333333333,22.279366666666665,22.2827,22.286033333333332,22.28936666666667,22.2927,22.296033333333334,22.299366666666668,22.3027,22.306033333333335,22.309366666666666,22.3127,22.316033333333333,22.319366666666667,22.3227,22.32603333333333,22.329366666666665,22.3327,22.336033333333333,22.339366666666667,22.342699999999997,22.34603333333333,22.349366666666665,22.352700000000002,22.356033333333336,22.359366666666666,22.3627,22.366033333333334,22.369366666666668,22.372700000000002,22.376033333333332,22.379366666666666,22.3827,22.386033333333334,22.389366666666668,22.392699999999998,22.39603333333333,22.399366666666666,22.4027,22.406033333333333,22.409366666666664,22.412699999999997,22.416033333333335,22.41936666666667,22.422700000000003,22.426033333333333,22.429366666666667,22.4327,22.436033333333334,22.43936666666667,22.4427,22.446033333333332,22.449366666666666,22.4527,22.456033333333334,22.459366666666664,22.462699999999998,22.466033333333332,22.469366666666666,22.4727,22.47603333333333,22.479366666666667,22.4827,22.486033333333335,22.48936666666667,22.4927,22.496033333333333,22.499366666666667,22.5027,22.506033333333335,22.509366666666665,22.5127,22.516033333333333,22.519366666666667,22.5227,22.52603333333333,22.529366666666665,22.5327,22.536033333333332,22.53936666666667,22.5427,22.546033333333334,22.549366666666668,22.5527,22.556033333333335,22.559366666666666,22.5627,22.566033333333333,22.569366666666667,22.5727,22.57603333333333,22.579366666666665,22.5827,22.586033333333333,22.589366666666667,22.592699999999997,22.59603333333333,22.599366666666665,22.602700000000002,22.606033333333336,22.609366666666666,22.6127,22.616033333333334,22.619366666666668,22.622700000000002,22.626033333333332,22.629366666666666,22.6327,22.636033333333334,22.639366666666668,22.642699999999998,22.64603333333333,22.649366666666666,22.6527,22.656033333333333,22.659366666666664,22.662699999999997,22.666033333333335,22.66936666666667,22.672700000000003,22.676033333333333,22.679366666666667,22.6827,22.686033333333334,22.68936666666667,22.6927,22.696033333333332,22.699366666666666,22.7027,22.706033333333334,22.709366666666664,22.712699999999998,22.716033333333332,22.719366666666666,22.7227,22.72603333333333,22.729366666666667,22.7327,22.736033333333335,22.73936666666667,22.7427,22.746033333333333,22.749366666666667,22.7527,22.756033333333335,22.759366666666665,22.7627,22.766033333333333,22.769366666666667,22.7727,22.77603333333333,22.779366666666665,22.7827,22.786033333333332,22.78936666666667,22.7927,22.796033333333334,22.799366666666668,22.8027,22.806033333333335,22.809366666666666,22.8127,22.816033333333333,22.819366666666667,22.8227,22.82603333333333,22.829366666666665,22.8327,22.836033333333333,22.839366666666667,22.842699999999997,22.84603333333333,22.849366666666665,22.852700000000002,22.856033333333336,22.859366666666666,22.8627,22.866033333333334,22.869366666666668,22.872700000000002,22.876033333333332,22.879366666666666,22.8827,22.886033333333334,22.889366666666668,22.892699999999998,22.89603333333333,22.899366666666666,22.9027,22.906033333333333,22.909366666666664,22.912699999999997,22.916033333333335,22.91936666666667,22.922700000000003,22.926033333333333,22.929366666666667,22.9327,22.936033333333334,22.93936666666667,22.9427,22.946033333333332,22.949366666666666,22.9527,22.956033333333334,22.959366666666664,22.962699999999998,22.966033333333332,22.969366666666666,22.9727,22.97603333333333,22.979366666666667,22.9827,22.986033333333335,22.98936666666667,22.9927,22.996033333333333,22.999366666666667,23.0027,23.006033333333335,23.009366666666665,23.0127,23.016033333333333,23.019366666666667,23.0227,23.02603333333333,23.029366666666665,23.0327,23.036033333333332,23.03936666666667,23.0427,23.046033333333334,23.049366666666668,23.0527,23.056033333333335,23.059366666666666,23.0627,23.066033333333333,23.069366666666667,23.0727,23.07603333333333,23.079366666666665,23.0827,23.086033333333333,23.089366666666667,23.092699999999997,23.09603333333333,23.099366666666665,23.102700000000002,23.106033333333336,23.109366666666666,23.1127,23.116033333333334,23.119366666666668,23.122700000000002,23.126033333333332,23.129366666666666,23.1327,23.136033333333334,23.139366666666668,23.142699999999998,23.14603333333333,23.149366666666666,23.1527,23.156033333333333,23.159366666666664,23.162699999999997,23.166033333333335,23.16936666666667,23.172700000000003,23.176033333333333,23.179366666666667,23.1827,23.186033333333334,23.18936666666667,23.1927,23.196033333333332,23.199366666666666,23.2027,23.206033333333334,23.209366666666664,23.212699999999998,23.216033333333332,23.219366666666666,23.2227,23.22603333333333,23.229366666666667,23.2327,23.236033333333335,23.23936666666667,23.2427,23.246033333333333,23.249366666666667,23.2527,23.256033333333335,23.259366666666665,23.2627,23.266033333333333,23.269366666666667,23.2727,23.27603333333333,23.279366666666665,23.2827,23.286033333333332,23.28936666666667,23.2927,23.296033333333334,23.299366666666668,23.3027,23.306033333333335,23.309366666666666,23.3127,23.316033333333333,23.319366666666667,23.3227,23.32603333333333,23.329366666666665,23.3327,23.336033333333333,23.339366666666667,23.342699999999997,23.34603333333333,23.349366666666665,23.352700000000002,23.356033333333336,23.359366666666666,23.3627,23.366033333333334,23.369366666666668,23.372700000000002,23.376033333333332,23.379366666666666,23.3827,23.386033333333334,23.389366666666668,23.392699999999998,23.39603333333333,23.399366666666666,23.4027,23.406033333333333,23.409366666666664,23.412699999999997,23.416033333333335,23.41936666666667,23.422700000000003,23.426033333333333,23.429366666666667,23.4327,23.436033333333334,23.43936666666667,23.4427,23.446033333333332,23.449366666666666,23.4527,23.456033333333334,23.459366666666664,23.462699999999998,23.466033333333332,23.469366666666666,23.4727,23.47603333333333,23.479366666666667,23.4827,23.486033333333335,23.48936666666667,23.4927,23.496033333333333,23.499366666666667,23.5027,23.506033333333335,23.509366666666665,23.5127,23.516033333333333,23.519366666666667,23.5227,23.52603333333333,23.529366666666665,23.5327,23.536033333333332,23.53936666666667,23.5427,23.546033333333334,23.549366666666668,23.5527,23.556033333333335,23.559366666666666,23.5627,23.566033333333333,23.569366666666667,23.5727,23.57603333333333,23.579366666666665,23.5827,23.586033333333333,23.589366666666667,23.592699999999997,23.59603333333333,23.599366666666665,23.602700000000002,23.606033333333336,23.609366666666666,23.6127,23.616033333333334,23.619366666666668,23.622700000000002,23.626033333333332,23.629366666666666,23.6327,23.636033333333334,23.639366666666668,23.642699999999998,23.64603333333333,23.649366666666666,23.6527,23.656033333333333,23.659366666666664,23.662699999999997,23.666033333333335,23.66936666666667,23.672700000000003,23.676033333333333,23.679366666666667,23.6827,23.686033333333334,23.68936666666667,23.6927,23.696033333333332,23.699366666666666,23.7027,23.706033333333334,23.709366666666664,23.712699999999998,23.716033333333332,23.719366666666666,23.7227,23.72603333333333,23.729366666666667,23.7327,23.736033333333335,23.73936666666667,23.7427,23.746033333333333,23.749366666666667,23.7527,23.756033333333335,23.759366666666665,23.7627,23.766033333333333,23.769366666666667,23.7727,23.77603333333333,23.779366666666665,23.7827,23.786033333333332,23.78936666666667,23.7927,23.796033333333334,23.799366666666668,23.8027,23.806033333333335,23.809366666666666,23.8127,23.816033333333333,23.819366666666667,23.8227,23.82603333333333,23.829366666666665,23.8327,23.836033333333333,23.839366666666667,23.842699999999997,23.84603333333333,23.849366666666665,23.852700000000002,23.856033333333336,23.859366666666666,23.8627,23.866033333333334,23.869366666666668,23.872700000000002,23.876033333333332,23.879366666666666,23.8827,23.886033333333334,23.889366666666668,23.892699999999998,23.89603333333333,23.899366666666666,23.9027,23.906033333333333,23.909366666666664,23.912699999999997,23.916033333333335,23.91936666666667,23.922700000000003,23.926033333333333,23.929366666666667,23.9327,23.936033333333334,23.93936666666667,23.9427,23.946033333333332,23.949366666666666,23.9527,23.956033333333334,23.959366666666664,23.962699999999998,23.966033333333332,23.969366666666666,23.9727,23.97603333333333,23.979366666666667,23.9827,23.986033333333335,23.98936666666667,23.9927,23.996033333333333,23.999366666666667,24.0027,24.006033333333335,24.009366666666665,24.0127,24.016033333333333,24.019366666666667,24.0227,24.02603333333333,24.029366666666665,24.0327,24.036033333333332,24.03936666666667,24.0427,24.046033333333334,24.049366666666668,24.0527,24.056033333333335,24.059366666666666,24.0627,24.066033333333333,24.069366666666667,24.0727,24.07603333333333,24.079366666666665,24.0827,24.086033333333333,24.089366666666667,24.092699999999997,24.09603333333333,24.099366666666665,24.102700000000002,24.106033333333336,24.109366666666666,24.1127,24.116033333333334,24.119366666666668,24.122700000000002,24.126033333333332,24.129366666666666,24.1327,24.136033333333334,24.139366666666668,24.142699999999998,24.14603333333333,24.149366666666666,24.1527,24.156033333333333,24.159366666666664,24.162699999999997,24.166033333333335,24.16936666666667,24.172700000000003,24.176033333333333,24.179366666666667,24.1827,24.186033333333334,24.18936666666667,24.1927,24.196033333333332,24.199366666666666,24.2027,24.206033333333334,24.209366666666664,24.212699999999998,24.216033333333332,24.219366666666666,24.2227,24.22603333333333,24.229366666666667,24.2327,24.236033333333335,24.23936666666667,24.2427,24.246033333333333,24.249366666666667,24.2527,24.256033333333335,24.259366666666665,24.2627,24.266033333333333,24.269366666666667,24.2727,24.27603333333333,24.279366666666665,24.2827,24.286033333333332,24.28936666666667,24.2927,24.296033333333334,24.299366666666668,24.3027,24.306033333333335,24.309366666666666,24.3127,24.316033333333333,24.319366666666667,24.3227,24.32603333333333,24.329366666666665,24.3327,24.336033333333333,24.339366666666667,24.342699999999997,24.34603333333333,24.349366666666665,24.352700000000002,24.356033333333336,24.359366666666666,24.3627,24.366033333333334,24.369366666666668,24.372700000000002,24.376033333333332,24.379366666666666,24.3827,24.386033333333334,24.389366666666668,24.392699999999998,24.39603333333333,24.399366666666666,24.4027,24.406033333333333,24.409366666666664,24.412699999999997,24.416033333333335,24.41936666666667,24.422700000000003,24.426033333333333,24.429366666666667,24.4327,24.436033333333334,24.43936666666667,24.4427,24.446033333333332,24.449366666666666,24.4527,24.456033333333334,24.459366666666664,24.462699999999998,24.466033333333332,24.469366666666666,24.4727,24.47603333333333,24.479366666666667,24.4827,24.486033333333335,24.48936666666667,24.4927,24.496033333333333,24.499366666666667,24.5027,24.506033333333335,24.509366666666665,24.5127,24.516033333333333,24.519366666666667,24.5227,24.52603333333333,24.529366666666665,24.5327,24.536033333333332,24.53936666666667,24.5427,24.546033333333334,24.549366666666668,24.5527,24.556033333333335,24.559366666666666,24.5627,24.566033333333333,24.569366666666667,24.5727,24.57603333333333,24.579366666666665,24.5827,24.586033333333333,24.589366666666667,24.592699999999997,24.59603333333333,24.599366666666665,24.602700000000002,24.606033333333336,24.609366666666666,24.6127,24.616033333333334,24.619366666666668,24.622700000000002,24.626033333333332,24.629366666666666,24.6327,24.636033333333334,24.639366666666668,24.642699999999998,24.64603333333333,24.649366666666666,24.6527,24.656033333333333,24.659366666666664,24.662699999999997,24.666033333333335,24.66936666666667,24.672700000000003,24.676033333333333,24.679366666666667,24.6827,24.686033333333334,24.68936666666667,24.6927,24.696033333333332,24.699366666666666,24.7027,24.706033333333334,24.709366666666664,24.712699999999998,24.716033333333332,24.719366666666666,24.7227,24.72603333333333,24.729366666666667,24.7327,24.736033333333335,24.73936666666667,24.7427,24.746033333333333,24.749366666666667,24.7527,24.756033333333335,24.759366666666665,24.7627,24.766033333333333,24.769366666666667,24.7727,24.77603333333333,24.779366666666665,24.7827,24.786033333333332,24.78936666666667,24.7927,24.796033333333334,24.799366666666668,24.8027,24.806033333333335,24.809366666666666,24.8127,24.816033333333333,24.819366666666667,24.8227,24.82603333333333,24.829366666666665,24.8327,24.836033333333333,24.839366666666667,24.842699999999997,24.84603333333333,24.849366666666665,24.852700000000002,24.856033333333336,24.859366666666666,24.8627,24.866033333333334,24.869366666666668,24.872700000000002,24.876033333333332,24.879366666666666,24.8827,24.886033333333334,24.889366666666668,24.892699999999998,24.89603333333333,24.899366666666666,24.9027,24.906033333333333,24.909366666666664,24.912699999999997,24.916033333333335,24.91936666666667,24.922700000000003,24.926033333333333,24.929366666666667,24.9327,24.936033333333334,24.93936666666667,24.9427,24.946033333333332,24.949366666666666,24.9527,24.956033333333334,24.959366666666664,24.962699999999998,24.966033333333332,24.969366666666666,24.9727,24.97603333333333,24.979366666666667,24.9827,24.986033333333335,24.98936666666667,24.9927,24.996033333333333,24.999366666666667,25.0027,25.006033333333335,25.009366666666665,25.0127,25.016033333333333,25.019366666666667,25.0227,25.02603333333333,25.029366666666665,25.0327,25.036033333333332,25.03936666666667,25.0427,25.046033333333334,25.049366666666668,25.0527,25.056033333333335,25.059366666666666,25.0627,25.066033333333333,25.069366666666667,25.0727,25.07603333333333,25.079366666666665,25.0827,25.086033333333333,25.089366666666667,25.092699999999997,25.09603333333333,25.099366666666665,25.102700000000002,25.106033333333336,25.109366666666666,25.1127,25.116033333333334,25.119366666666668,25.122700000000002,25.126033333333332,25.129366666666666,25.1327,25.136033333333334,25.139366666666668,25.142699999999998,25.14603333333333,25.149366666666666,25.1527,25.156033333333333,25.159366666666664,25.162699999999997,25.166033333333335,25.16936666666667,25.172700000000003,25.176033333333333,25.179366666666667,25.1827,25.186033333333334,25.18936666666667,25.1927,25.196033333333332,25.199366666666666,25.2027,25.206033333333334,25.209366666666664,25.212699999999998,25.216033333333332,25.219366666666666,25.2227,25.22603333333333,25.229366666666667,25.2327,25.236033333333335,25.23936666666667,25.2427,25.246033333333333,25.249366666666667,25.2527,25.256033333333335,25.259366666666665,25.2627,25.266033333333333,25.269366666666667,25.2727,25.27603333333333,25.279366666666665,25.2827,25.286033333333332,25.28936666666667,25.2927,25.296033333333334,25.299366666666668,25.3027,25.306033333333335,25.309366666666666,25.3127,25.316033333333333,25.319366666666667,25.3227,25.32603333333333,25.329366666666665,25.3327,25.336033333333333,25.339366666666667,25.342699999999997,25.34603333333333,25.349366666666665,25.352700000000002,25.356033333333336,25.359366666666666,25.3627,25.366033333333334,25.369366666666668,25.372700000000002,25.376033333333332,25.379366666666666,25.3827,25.386033333333334,25.389366666666668,25.392699999999998,25.39603333333333,25.399366666666666,25.4027,25.406033333333333,25.409366666666664,25.412699999999997,25.416033333333335,25.41936666666667,25.422700000000003,25.426033333333333,25.429366666666667,25.4327,25.436033333333334,25.43936666666667,25.4427,25.446033333333332,25.449366666666666,25.4527,25.456033333333334,25.459366666666664,25.462699999999998,25.466033333333332,25.469366666666666,25.4727,25.47603333333333,25.479366666666667,25.4827,25.486033333333335,25.48936666666667,25.4927,25.496033333333333,25.499366666666667,25.5027,25.506033333333335,25.509366666666665,25.5127,25.516033333333333,25.519366666666667,25.5227,25.52603333333333,25.529366666666665,25.5327,25.536033333333332,25.53936666666667,25.5427,25.546033333333334,25.549366666666668,25.5527,25.556033333333335,25.559366666666666,25.5627,25.566033333333333,25.569366666666667,25.5727,25.57603333333333,25.579366666666665,25.5827,25.586033333333333,25.589366666666667,25.592699999999997,25.59603333333333,25.599366666666665,25.602700000000002,25.606033333333336,25.609366666666666,25.6127,25.616033333333334,25.619366666666668,25.622700000000002,25.626033333333332,25.629366666666666,25.6327,25.636033333333334,25.639366666666668,25.642699999999998,25.64603333333333,25.649366666666666,25.6527,25.656033333333333,25.659366666666664,25.662699999999997,25.666033333333335,25.66936666666667,25.672700000000003,25.676033333333333,25.679366666666667,25.6827,25.686033333333334,25.68936666666667,25.6927,25.696033333333332,25.699366666666666,25.7027,25.706033333333334,25.709366666666664,25.712699999999998,25.716033333333332,25.719366666666666,25.7227,25.72603333333333,25.729366666666667,25.7327,25.736033333333335,25.73936666666667,25.7427,25.746033333333333,25.749366666666667,25.7527,25.756033333333335,25.759366666666665,25.7627,25.766033333333333,25.769366666666667,25.7727,25.77603333333333,25.779366666666665,25.7827,25.786033333333332,25.78936666666667,25.7927,25.796033333333334,25.799366666666668,25.8027,25.806033333333335,25.809366666666666,25.8127,25.816033333333333,25.819366666666667,25.8227,25.82603333333333,25.829366666666665,25.8327,25.836033333333333,25.839366666666667,25.842699999999997,25.84603333333333,25.849366666666665,25.852700000000002,25.856033333333336,25.859366666666666,25.8627,25.866033333333334,25.869366666666668,25.872700000000002,25.876033333333332,25.879366666666666,25.8827,25.886033333333334,25.889366666666668,25.892699999999998,25.89603333333333,25.899366666666666,25.9027,25.906033333333333,25.909366666666664,25.912699999999997,25.916033333333335,25.91936666666667,25.922700000000003,25.926033333333333,25.929366666666667,25.9327,25.936033333333334,25.93936666666667,25.9427,25.946033333333332,25.949366666666666,25.9527,25.956033333333334,25.959366666666664,25.962699999999998,25.966033333333332,25.969366666666666,25.9727,25.97603333333333,25.979366666666667,25.9827,25.986033333333335,25.98936666666667,25.9927,25.996033333333333,25.999366666666667,26.0027,26.006033333333335,26.009366666666665,26.0127,26.016033333333333,26.019366666666667,26.0227,26.02603333333333,26.029366666666665,26.0327,26.036033333333332,26.03936666666667,26.0427,26.046033333333334,26.049366666666668,26.0527,26.056033333333335,26.059366666666666,26.0627,26.066033333333333,26.069366666666667,26.0727,26.07603333333333,26.079366666666665,26.0827,26.086033333333333,26.089366666666667,26.092699999999997,26.09603333333333,26.099366666666665,26.102700000000002,26.106033333333336,26.109366666666666,26.1127,26.116033333333334,26.119366666666668,26.122700000000002,26.126033333333332,26.129366666666666,26.1327,26.136033333333334,26.139366666666668,26.142699999999998,26.14603333333333,26.149366666666666,26.1527,26.156033333333333,26.159366666666664,26.162699999999997,26.166033333333335,26.16936666666667,26.172700000000003,26.176033333333333,26.179366666666667,26.1827,26.186033333333334,26.18936666666667,26.1927,26.196033333333332,26.199366666666666,26.2027,26.206033333333334,26.209366666666664,26.212699999999998,26.216033333333332,26.219366666666666,26.2227,26.22603333333333,26.229366666666667,26.2327,26.236033333333335,26.23936666666667,26.2427,26.246033333333333,26.249366666666667,26.2527,26.256033333333335,26.259366666666665,26.2627,26.266033333333333,26.269366666666667,26.2727,26.27603333333333,26.279366666666665,26.2827,26.286033333333332,26.28936666666667,26.2927,26.296033333333334,26.299366666666668,26.3027,26.306033333333335,26.309366666666666,26.3127,26.316033333333333,26.319366666666667,26.3227,26.32603333333333,26.329366666666665,26.3327,26.336033333333333,26.339366666666667,26.342699999999997,26.34603333333333,26.349366666666665,26.352700000000002,26.356033333333336,26.359366666666666,26.3627,26.366033333333334,26.369366666666668,26.372700000000002,26.376033333333332,26.379366666666666,26.3827,26.386033333333334,26.389366666666668,26.392699999999998,26.39603333333333,26.399366666666666,26.4027,26.406033333333333,26.409366666666664,26.412699999999997,26.416033333333335,26.41936666666667,26.422700000000003,26.426033333333333,26.429366666666667,26.4327,26.436033333333334,26.43936666666667,26.4427,26.446033333333332,26.449366666666666,26.4527,26.456033333333334,26.459366666666664,26.462699999999998,26.466033333333332,26.469366666666666,26.4727,26.47603333333333,26.479366666666667,26.4827,26.486033333333335,26.48936666666667,26.4927,26.496033333333333,26.499366666666667,26.5027,26.506033333333335,26.509366666666665,26.5127,26.516033333333333,26.519366666666667,26.5227,26.52603333333333,26.529366666666665,26.5327,26.536033333333332,26.53936666666667,26.5427,26.546033333333334,26.549366666666668,26.5527,26.556033333333335,26.559366666666666,26.5627,26.566033333333333,26.569366666666667,26.5727,26.57603333333333,26.579366666666665,26.5827,26.586033333333333,26.589366666666667,26.592699999999997,26.59603333333333,26.599366666666665,26.602700000000002,26.606033333333336,26.609366666666666,26.6127,26.616033333333334,26.619366666666668,26.622700000000002,26.626033333333332,26.629366666666666,26.6327,26.636033333333334,26.639366666666668,26.642699999999998,26.64603333333333,26.649366666666666,26.6527,26.656033333333333,26.659366666666664,26.662699999999997,26.666033333333335,26.66936666666667,26.672700000000003,26.676033333333333,26.679366666666667,26.6827,26.686033333333334,26.68936666666667,26.6927,26.696033333333332,26.699366666666666,26.7027,26.706033333333334,26.709366666666664,26.712699999999998,26.716033333333332,26.719366666666666,26.7227,26.72603333333333,26.729366666666667,26.7327,26.736033333333335,26.73936666666667,26.7427,26.746033333333333,26.749366666666667,26.7527,26.756033333333335,26.759366666666665,26.7627,26.766033333333333,26.769366666666667,26.7727,26.77603333333333,26.779366666666665,26.7827,26.786033333333332,26.78936666666667,26.7927,26.796033333333334,26.799366666666668,26.8027,26.806033333333335,26.809366666666666,26.8127,26.816033333333333,26.819366666666667,26.8227,26.82603333333333,26.829366666666665,26.8327,26.836033333333333,26.839366666666667,26.842699999999997,26.84603333333333,26.849366666666665,26.852700000000002,26.856033333333336,26.859366666666666,26.8627,26.866033333333334,26.869366666666668,26.872700000000002,26.876033333333332,26.879366666666666,26.8827,26.886033333333334,26.889366666666668,26.892699999999998,26.89603333333333,26.899366666666666,26.9027,26.906033333333333,26.909366666666664,26.912699999999997,26.916033333333335,26.91936666666667,26.922700000000003,26.926033333333333,26.929366666666667,26.9327,26.936033333333334,26.93936666666667,26.9427,26.946033333333332,26.949366666666666,26.9527,26.956033333333334,26.959366666666664,26.962699999999998,26.966033333333332,26.969366666666666,26.9727,26.97603333333333,26.979366666666667,26.9827,26.986033333333335,26.98936666666667,26.9927,26.996033333333333,26.999366666666667,27.0027,27.006033333333335,27.009366666666665,27.0127,27.016033333333333,27.019366666666667,27.0227,27.02603333333333,27.029366666666665,27.0327,27.036033333333332,27.03936666666667,27.0427,27.046033333333334,27.049366666666668,27.0527,27.056033333333335,27.059366666666666,27.0627,27.066033333333333,27.069366666666667,27.0727,27.07603333333333,27.079366666666665,27.0827,27.086033333333333,27.089366666666667,27.092699999999997,27.09603333333333,27.099366666666665,27.102700000000002,27.106033333333336,27.109366666666666,27.1127,27.116033333333334,27.119366666666668,27.122700000000002,27.126033333333332,27.129366666666666,27.1327,27.136033333333334,27.139366666666668,27.142699999999998,27.14603333333333,27.149366666666666,27.1527,27.156033333333333,27.159366666666664,27.162699999999997,27.166033333333335,27.16936666666667,27.172700000000003,27.176033333333333,27.179366666666667,27.1827,27.186033333333334,27.18936666666667,27.1927,27.196033333333332,27.199366666666666,27.2027,27.206033333333334,27.209366666666664,27.212699999999998,27.216033333333332,27.219366666666666,27.2227,27.22603333333333,27.229366666666667,27.2327,27.236033333333335,27.23936666666667,27.2427,27.246033333333333,27.249366666666667,27.2527,27.256033333333335,27.259366666666665,27.2627,27.266033333333333,27.269366666666667,27.2727,27.27603333333333,27.279366666666665,27.2827,27.286033333333332,27.28936666666667,27.2927,27.296033333333334,27.299366666666668,27.3027,27.306033333333335,27.309366666666666,27.3127,27.316033333333333,27.319366666666667,27.3227,27.32603333333333,27.329366666666665,27.3327,27.336033333333333,27.339366666666667,27.342699999999997,27.34603333333333,27.349366666666665,27.352700000000002,27.356033333333336,27.359366666666666,27.3627,27.366033333333334,27.369366666666668,27.372700000000002,27.376033333333332,27.379366666666666,27.3827,27.386033333333334,27.389366666666668,27.392699999999998,27.39603333333333,27.399366666666666,27.4027,27.406033333333333,27.409366666666664,27.412699999999997,27.416033333333335,27.41936666666667,27.422700000000003,27.426033333333333,27.429366666666667,27.4327,27.436033333333334,27.43936666666667,27.4427,27.446033333333332,27.449366666666666,27.4527,27.456033333333334,27.459366666666664,27.462699999999998,27.466033333333332,27.469366666666666,27.4727,27.47603333333333,27.479366666666667,27.4827,27.486033333333335,27.48936666666667,27.4927,27.496033333333333,27.499366666666667,27.5027,27.506033333333335,27.509366666666665,27.5127,27.516033333333333,27.519366666666667,27.5227,27.52603333333333,27.529366666666665,27.5327,27.536033333333332,27.53936666666667,27.5427,27.546033333333334,27.549366666666668,27.5527,27.556033333333335,27.559366666666666,27.5627,27.566033333333333,27.569366666666667,27.5727,27.57603333333333,27.579366666666665,27.5827,27.586033333333333,27.589366666666667,27.592699999999997,27.59603333333333,27.599366666666665,27.602700000000002,27.606033333333336,27.609366666666666,27.6127,27.616033333333334,27.619366666666668,27.622700000000002,27.626033333333332,27.629366666666666,27.6327,27.636033333333334,27.639366666666668,27.642699999999998,27.64603333333333,27.649366666666666,27.6527,27.656033333333333,27.659366666666664,27.662699999999997,27.666033333333335,27.66936666666667,27.672700000000003,27.676033333333333,27.679366666666667,27.6827,27.686033333333334,27.68936666666667,27.6927,27.696033333333332,27.699366666666666,27.7027,27.706033333333334,27.709366666666664,27.712699999999998,27.716033333333332,27.719366666666666,27.7227,27.72603333333333,27.729366666666667,27.7327,27.736033333333335,27.73936666666667,27.7427,27.746033333333333,27.749366666666667,27.7527,27.756033333333335,27.759366666666665,27.7627,27.766033333333333,27.769366666666667,27.7727,27.77603333333333,27.779366666666665,27.7827,27.786033333333332,27.78936666666667,27.7927,27.796033333333334,27.799366666666668,27.8027,27.806033333333335,27.809366666666666,27.8127,27.816033333333333,27.819366666666667,27.8227,27.82603333333333,27.829366666666665,27.8327,27.836033333333333,27.839366666666667,27.842699999999997,27.84603333333333,27.849366666666665,27.852700000000002,27.856033333333336,27.859366666666666,27.8627,27.866033333333334,27.869366666666668,27.872700000000002,27.876033333333332,27.879366666666666,27.8827,27.886033333333334,27.889366666666668,27.892699999999998,27.89603333333333,27.899366666666666,27.9027,27.906033333333333,27.909366666666664,27.912699999999997,27.916033333333335,27.91936666666667,27.922700000000003,27.926033333333333,27.929366666666667,27.9327,27.936033333333334,27.93936666666667,27.9427,27.946033333333332,27.949366666666666,27.9527,27.956033333333334,27.959366666666664,27.962699999999998,27.966033333333332,27.969366666666666,27.9727,27.97603333333333,27.979366666666667,27.9827,27.986033333333335,27.98936666666667,27.9927,27.996033333333333,27.999366666666667,28.0027,28.006033333333335,28.009366666666665,28.0127,28.016033333333333,28.019366666666667,28.0227,28.02603333333333,28.029366666666665,28.0327,28.036033333333332,28.03936666666667,28.0427,28.046033333333334,28.049366666666668,28.0527,28.056033333333335,28.059366666666666,28.0627,28.066033333333333,28.069366666666667,28.0727,28.07603333333333,28.079366666666665,28.0827,28.086033333333333,28.089366666666667,28.092699999999997,28.09603333333333,28.099366666666665,28.102700000000002,28.106033333333336,28.109366666666666,28.1127,28.116033333333334,28.119366666666668,28.122700000000002,28.126033333333332,28.129366666666666,28.1327,28.136033333333334,28.139366666666668,28.142699999999998,28.14603333333333,28.149366666666666,28.1527,28.156033333333333,28.159366666666664,28.162699999999997,28.166033333333335,28.16936666666667,28.172700000000003,28.176033333333333,28.179366666666667,28.1827,28.186033333333334,28.18936666666667,28.1927,28.196033333333332,28.199366666666666,28.2027,28.206033333333334,28.209366666666664,28.212699999999998,28.216033333333332,28.219366666666666,28.2227,28.22603333333333,28.229366666666667,28.2327,28.236033333333335,28.23936666666667,28.2427,28.246033333333333,28.249366666666667,28.2527,28.256033333333335,28.259366666666665,28.2627,28.266033333333333,28.269366666666667,28.2727,28.27603333333333,28.279366666666665,28.2827,28.286033333333332,28.28936666666667,28.2927,28.296033333333334,28.299366666666668,28.3027,28.306033333333335,28.309366666666666,28.3127,28.316033333333333,28.319366666666667,28.3227,28.32603333333333,28.329366666666665,28.3327,28.336033333333333,28.339366666666667,28.342699999999997,28.34603333333333,28.349366666666665,28.352700000000002,28.356033333333336,28.359366666666666,28.3627,28.366033333333334,28.369366666666668,28.372700000000002,28.376033333333332,28.379366666666666,28.3827,28.386033333333334,28.389366666666668,28.392699999999998,28.39603333333333,28.399366666666666,28.4027,28.406033333333333,28.409366666666664,28.412699999999997,28.416033333333335,28.41936666666667,28.422700000000003,28.426033333333333,28.429366666666667,28.4327,28.436033333333334,28.43936666666667,28.4427,28.446033333333332,28.449366666666666,28.4527,28.456033333333334,28.459366666666664,28.462699999999998,28.466033333333332,28.469366666666666,28.4727,28.47603333333333,28.479366666666667,28.4827,28.486033333333335,28.48936666666667,28.4927,28.496033333333333,28.499366666666667,28.5027,28.506033333333335,28.509366666666665,28.5127,28.516033333333333,28.519366666666667,28.5227,28.52603333333333,28.529366666666665,28.5327,28.536033333333332,28.53936666666667,28.5427,28.546033333333334,28.549366666666668,28.5527,28.556033333333335,28.559366666666666,28.5627,28.566033333333333,28.569366666666667,28.5727,28.57603333333333,28.579366666666665,28.5827,28.586033333333333,28.589366666666667,28.592699999999997,28.59603333333333,28.599366666666665,28.602700000000002,28.606033333333336,28.609366666666666,28.6127,28.616033333333334,28.619366666666668,28.622700000000002,28.626033333333332,28.629366666666666,28.6327,28.636033333333334,28.639366666666668,28.642699999999998,28.64603333333333,28.649366666666666,28.6527,28.656033333333333,28.659366666666664,28.662699999999997,28.666033333333335,28.66936666666667,28.672700000000003,28.676033333333333,28.679366666666667,28.6827,28.686033333333334,28.68936666666667,28.6927,28.696033333333332,28.699366666666666,28.7027,28.706033333333334,28.709366666666664,28.712699999999998,28.716033333333332,28.719366666666666,28.7227,28.72603333333333,28.729366666666667,28.7327,28.736033333333335,28.73936666666667,28.7427,28.746033333333333,28.749366666666667,28.7527,28.756033333333335,28.759366666666665,28.7627,28.766033333333333,28.769366666666667,28.7727,28.77603333333333,28.779366666666665,28.7827,28.786033333333332,28.78936666666667,28.7927,28.796033333333334,28.799366666666668,28.8027,28.806033333333335,28.809366666666666,28.8127,28.816033333333333,28.819366666666667,28.8227,28.82603333333333,28.829366666666665,28.8327,28.836033333333333,28.839366666666667,28.842699999999997,28.84603333333333,28.849366666666665,28.852700000000002,28.856033333333336,28.859366666666666,28.8627,28.866033333333334,28.869366666666668,28.872700000000002,28.876033333333332,28.879366666666666,28.8827,28.886033333333334,28.889366666666668,28.892699999999998,28.89603333333333,28.899366666666666,28.9027,28.906033333333333,28.909366666666664,28.912699999999997,28.916033333333335,28.91936666666667,28.922700000000003,28.926033333333333,28.929366666666667,28.9327,28.936033333333334,28.93936666666667,28.9427,28.946033333333332,28.949366666666666,28.9527,28.956033333333334,28.959366666666664,28.962699999999998,28.966033333333332,28.969366666666666,28.9727,28.97603333333333,28.979366666666667,28.9827,28.986033333333335,28.98936666666667,28.9927,28.996033333333333,28.999366666666667,29.0027,29.006033333333335,29.009366666666665,29.0127,29.016033333333333,29.019366666666667,29.0227,29.02603333333333,29.029366666666665,29.0327,29.036033333333332,29.03936666666667,29.0427,29.046033333333334,29.049366666666668,29.0527,29.056033333333335,29.059366666666666,29.0627,29.066033333333333,29.069366666666667,29.0727,29.07603333333333,29.079366666666665,29.0827,29.086033333333333,29.089366666666667,29.092699999999997,29.09603333333333,29.099366666666665,29.102700000000002,29.106033333333336,29.109366666666666,29.1127,29.116033333333334,29.119366666666668,29.122700000000002,29.126033333333332,29.129366666666666,29.1327,29.136033333333334,29.139366666666668,29.142699999999998,29.14603333333333,29.149366666666666,29.1527,29.156033333333333,29.159366666666664,29.162699999999997,29.166033333333335,29.16936666666667,29.172700000000003,29.176033333333333,29.179366666666667,29.1827,29.186033333333334,29.18936666666667,29.1927,29.196033333333332,29.199366666666666,29.2027,29.206033333333334,29.209366666666664,29.212699999999998,29.216033333333332,29.219366666666666,29.2227,29.22603333333333,29.229366666666667,29.2327,29.236033333333335,29.23936666666667,29.2427,29.246033333333333,29.249366666666667,29.2527,29.256033333333335,29.259366666666665,29.2627,29.266033333333333,29.269366666666667,29.2727,29.27603333333333,29.279366666666665,29.2827,29.286033333333332,29.28936666666667,29.2927,29.296033333333334,29.299366666666668,29.3027,29.306033333333335,29.309366666666666,29.3127,29.316033333333333,29.319366666666667,29.3227,29.32603333333333,29.329366666666665,29.3327,29.336033333333333,29.339366666666667,29.342699999999997,29.34603333333333,29.349366666666665,29.352700000000002,29.356033333333336,29.359366666666666,29.3627,29.366033333333334,29.369366666666668,29.372700000000002,29.376033333333332,29.379366666666666,29.3827,29.386033333333334,29.389366666666668,29.392699999999998,29.39603333333333,29.399366666666666,29.4027,29.406033333333333,29.409366666666664,29.412699999999997,29.416033333333335,29.41936666666667,29.422700000000003,29.426033333333333,29.429366666666667,29.4327,29.436033333333334,29.43936666666667,29.4427,29.446033333333332,29.449366666666666,29.4527,29.456033333333334,29.459366666666664,29.462699999999998,29.466033333333332,29.469366666666666,29.4727,29.47603333333333,29.479366666666667,29.4827,29.486033333333335,29.48936666666667,29.4927,29.496033333333333,29.499366666666667,29.5027,29.506033333333335,29.509366666666665,29.5127,29.516033333333333,29.519366666666667,29.5227,29.52603333333333,29.529366666666665,29.5327,29.536033333333332,29.53936666666667,29.5427,29.546033333333334,29.549366666666668,29.5527,29.556033333333335,29.559366666666666,29.5627,29.566033333333333,29.569366666666667,29.5727,29.57603333333333,29.579366666666665,29.5827,29.586033333333333,29.589366666666667,29.592699999999997,29.59603333333333,29.599366666666665,29.602700000000002,29.606033333333336,29.609366666666666,29.6127,29.616033333333334,29.619366666666668,29.622700000000002,29.626033333333332,29.629366666666666,29.6327,29.636033333333334,29.639366666666668,29.642699999999998,29.64603333333333,29.649366666666666,29.6527,29.656033333333333,29.659366666666664,29.662699999999997,29.666033333333335,29.66936666666667,29.672700000000003,29.676033333333333,29.679366666666667,29.6827,29.686033333333334,29.68936666666667,29.6927,29.696033333333332,29.699366666666666,29.7027,29.706033333333334,29.709366666666664,29.712699999999998,29.716033333333332,29.719366666666666,29.7227,29.72603333333333,29.729366666666667,29.7327,29.736033333333335,29.73936666666667,29.7427,29.746033333333333,29.749366666666667,29.7527,29.756033333333335,29.759366666666665,29.7627,29.766033333333333,29.769366666666667,29.7727,29.77603333333333,29.779366666666665,29.7827,29.786033333333332,29.78936666666667,29.7927,29.796033333333334,29.799366666666668,29.8027,29.806033333333335,29.809366666666666,29.8127,29.816033333333333,29.819366666666667,29.8227,29.82603333333333,29.829366666666665,29.8327,29.836033333333333,29.839366666666667,29.842699999999997,29.84603333333333,29.849366666666665,29.852700000000002,29.856033333333336,29.859366666666666,29.8627,29.866033333333334,29.869366666666668,29.872700000000002,29.876033333333332,29.879366666666666,29.8827,29.886033333333334,29.889366666666668,29.892699999999998,29.89603333333333,29.899366666666666,29.9027,29.906033333333333,29.909366666666664,29.912699999999997,29.916033333333335,29.91936666666667,29.922700000000003,29.926033333333333,29.929366666666667,29.9327,29.936033333333334,29.93936666666667,29.9427,29.946033333333332,29.949366666666666,29.9527,29.956033333333334,29.959366666666664,29.962699999999998,29.966033333333332,29.969366666666666,29.9727,29.97603333333333,29.979366666666667,29.9827,29.986033333333335,29.98936666666667,29.9927,29.996033333333333,29.999366666666667,30.0027,30.006033333333335,30.009366666666665,30.0127,30.016033333333333,30.019366666666667,30.0227,30.02603333333333,30.029366666666665,30.0327,30.036033333333332,30.03936666666667,30.0427,30.046033333333334,30.049366666666668,30.0527,30.056033333333335,30.059366666666666,30.0627,30.066033333333333,30.069366666666667,30.0727,30.07603333333333,30.079366666666665,30.0827,30.086033333333333,30.089366666666667,30.092699999999997,30.09603333333333,30.099366666666665,30.102700000000002,30.106033333333336,30.109366666666666,30.1127,30.116033333333334,30.119366666666668,30.122700000000002,30.126033333333332,30.129366666666666,30.1327,30.136033333333334,30.139366666666668,30.142699999999998,30.14603333333333,30.149366666666666,30.1527,30.156033333333333,30.159366666666664,30.162699999999997,30.166033333333335,30.16936666666667,30.172700000000003,30.176033333333333,30.179366666666667,30.1827,30.186033333333334,30.18936666666667,30.1927,30.196033333333332,30.199366666666666,30.2027,30.206033333333334,30.209366666666664,30.212699999999998,30.216033333333332,30.219366666666666,30.2227,30.22603333333333,30.229366666666667,30.2327,30.236033333333335,30.23936666666667,30.2427,30.246033333333333,30.249366666666667,30.2527,30.256033333333335,30.259366666666665,30.2627,30.266033333333333,30.269366666666667,30.2727,30.27603333333333,30.279366666666665,30.2827,30.286033333333332,30.28936666666667,30.2927,30.296033333333334,30.299366666666668,30.3027,30.306033333333335,30.309366666666666,30.3127,30.316033333333333,30.319366666666667,30.3227,30.32603333333333,30.329366666666665,30.3327,30.336033333333333,30.339366666666667,30.342699999999997,30.34603333333333,30.349366666666665,30.352700000000002,30.356033333333336,30.359366666666666,30.3627,30.366033333333334,30.369366666666668,30.372700000000002,30.376033333333332,30.379366666666666,30.3827,30.386033333333334,30.389366666666668,30.392699999999998,30.39603333333333,30.399366666666666,30.4027,30.406033333333333,30.409366666666664,30.412699999999997,30.416033333333335,30.41936666666667,30.422700000000003,30.426033333333333,30.429366666666667,30.4327,30.436033333333334,30.43936666666667,30.4427,30.446033333333332,30.449366666666666,30.4527,30.456033333333334,30.459366666666664,30.462699999999998,30.466033333333332,30.469366666666666,30.4727,30.47603333333333,30.479366666666667,30.4827,30.486033333333335,30.48936666666667,30.4927,30.496033333333333,30.499366666666667,30.5027,30.506033333333335,30.509366666666665,30.5127,30.516033333333333,30.519366666666667,30.5227,30.52603333333333,30.529366666666665,30.5327,30.536033333333332,30.53936666666667,30.5427,30.546033333333334,30.549366666666668,30.5527,30.556033333333335,30.559366666666666,30.5627,30.566033333333333,30.569366666666667,30.5727,30.57603333333333,30.579366666666665,30.5827,30.586033333333333,30.589366666666667,30.592699999999997,30.59603333333333,30.599366666666665,30.602700000000002,30.606033333333336,30.609366666666666,30.6127,30.616033333333334,30.619366666666668,30.622700000000002,30.626033333333332,30.629366666666666,30.6327,30.636033333333334,30.639366666666668,30.642699999999998,30.64603333333333,30.649366666666666,30.6527,30.656033333333333,30.659366666666664,30.662699999999997,30.666033333333335,30.66936666666667,30.672700000000003,30.676033333333333,30.679366666666667,30.6827,30.686033333333334,30.68936666666667,30.6927,30.696033333333332,30.699366666666666,30.7027,30.706033333333334,30.709366666666664,30.712699999999998,30.716033333333332,30.719366666666666,30.7227,30.72603333333333,30.729366666666667,30.7327,30.736033333333335,30.73936666666667,30.7427,30.746033333333333,30.749366666666667,30.7527,30.756033333333335,30.759366666666665,30.7627,30.766033333333333,30.769366666666667,30.7727,30.77603333333333,30.779366666666665,30.7827,30.786033333333332,30.78936666666667,30.7927,30.796033333333334,30.799366666666668,30.8027,30.806033333333335,30.809366666666666,30.8127,30.816033333333333,30.819366666666667,30.8227,30.82603333333333,30.829366666666665,30.8327,30.836033333333333,30.839366666666667,30.842699999999997,30.84603333333333,30.849366666666665,30.852700000000002,30.856033333333336,30.859366666666666,30.8627,30.866033333333334,30.869366666666668,30.872700000000002,30.876033333333332,30.879366666666666,30.8827,30.886033333333334,30.889366666666668,30.892699999999998,30.89603333333333,30.899366666666666,30.9027,30.906033333333333,30.909366666666664,30.912699999999997,30.916033333333335,30.91936666666667,30.922700000000003,30.926033333333333,30.929366666666667,30.9327,30.936033333333334,30.93936666666667,30.9427,30.946033333333332,30.949366666666666,30.9527,30.956033333333334,30.959366666666664,30.962699999999998,30.966033333333332,30.969366666666666,30.9727,30.97603333333333,30.979366666666667,30.9827,30.986033333333335,30.98936666666667,30.9927,30.996033333333333,30.999366666666667,31.0027,31.006033333333335,31.009366666666665,31.0127,31.016033333333333,31.019366666666667,31.0227,31.02603333333333,31.029366666666665,31.0327,31.036033333333332,31.03936666666667,31.0427,31.046033333333334,31.049366666666668,31.0527,31.056033333333335,31.059366666666666,31.0627,31.066033333333333,31.069366666666667,31.0727,31.07603333333333,31.079366666666665,31.0827,31.086033333333333,31.089366666666667,31.092699999999997,31.09603333333333,31.099366666666665,31.102700000000002,31.106033333333336,31.109366666666666,31.1127,31.116033333333334,31.119366666666668,31.122700000000002,31.126033333333332,31.129366666666666,31.1327,31.136033333333334,31.139366666666668,31.142699999999998,31.14603333333333,31.149366666666666,31.1527,31.156033333333333,31.159366666666664,31.162699999999997,31.166033333333335,31.16936666666667,31.172700000000003,31.176033333333333,31.179366666666667,31.1827,31.186033333333334,31.18936666666667,31.1927,31.196033333333332,31.199366666666666,31.2027,31.206033333333334,31.209366666666664,31.212699999999998,31.216033333333332,31.219366666666666,31.2227,31.22603333333333,31.229366666666667,31.2327,31.236033333333335,31.23936666666667,31.2427,31.246033333333333,31.249366666666667,31.2527,31.256033333333335,31.259366666666665,31.2627,31.266033333333333,31.269366666666667,31.2727,31.27603333333333,31.279366666666665,31.2827,31.286033333333332,31.28936666666667,31.2927,31.296033333333334,31.299366666666668,31.3027,31.306033333333335,31.309366666666666,31.3127,31.316033333333333,31.319366666666667,31.3227,31.32603333333333,31.329366666666665,31.3327,31.336033333333333,31.339366666666667,31.342699999999997,31.34603333333333,31.349366666666665,31.352700000000002,31.356033333333336,31.359366666666666,31.3627,31.366033333333334,31.369366666666668,31.372700000000002,31.376033333333332,31.379366666666666,31.3827,31.386033333333334,31.389366666666668,31.392699999999998,31.39603333333333,31.399366666666666,31.4027,31.406033333333333,31.409366666666664,31.412699999999997,31.416033333333335,31.41936666666667,31.422700000000003,31.426033333333333,31.429366666666667,31.4327,31.436033333333334,31.43936666666667,31.4427,31.446033333333332,31.449366666666666,31.4527,31.456033333333334,31.459366666666664,31.462699999999998,31.466033333333332,31.469366666666666,31.4727,31.47603333333333,31.479366666666667,31.4827,31.486033333333335,31.48936666666667,31.4927,31.496033333333333,31.499366666666667,31.5027,31.506033333333335,31.509366666666665,31.5127,31.516033333333333,31.519366666666667,31.5227,31.52603333333333,31.529366666666665,31.5327,31.536033333333332,31.53936666666667,31.5427,31.546033333333334,31.549366666666668,31.5527,31.556033333333335,31.559366666666666,31.5627,31.566033333333333,31.569366666666667,31.5727,31.57603333333333,31.579366666666665,31.5827,31.586033333333333,31.589366666666667,31.592699999999997,31.59603333333333,31.599366666666665,31.602700000000002,31.606033333333336,31.609366666666666,31.6127,31.616033333333334,31.619366666666668,31.622700000000002,31.626033333333332,31.629366666666666,31.6327,31.636033333333334,31.639366666666668,31.642699999999998,31.64603333333333,31.649366666666666,31.6527,31.656033333333333,31.659366666666664,31.662699999999997,31.666033333333335,31.66936666666667,31.672700000000003,31.676033333333333,31.679366666666667,31.6827,31.686033333333334,31.68936666666667,31.6927,31.696033333333332,31.699366666666666,31.7027,31.706033333333334,31.709366666666664,31.712699999999998,31.716033333333332,31.719366666666666,31.7227,31.72603333333333,31.729366666666667,31.7327,31.736033333333335,31.73936666666667,31.7427,31.746033333333333,31.749366666666667,31.7527,31.756033333333335,31.759366666666665,31.7627,31.766033333333333,31.769366666666667,31.7727,31.77603333333333,31.779366666666665,31.7827,31.786033333333332,31.78936666666667,31.7927,31.796033333333334,31.799366666666668,31.8027,31.806033333333335,31.809366666666666,31.8127,31.816033333333333,31.819366666666667,31.8227,31.82603333333333,31.829366666666665,31.8327,31.836033333333333,31.839366666666667,31.842699999999997,31.84603333333333,31.849366666666665,31.852700000000002,31.856033333333336,31.859366666666666,31.8627,31.866033333333334,31.869366666666668,31.872700000000002,31.876033333333332,31.879366666666666,31.8827,31.886033333333334,31.889366666666668,31.892699999999998,31.89603333333333,31.899366666666666,31.9027,31.906033333333333,31.909366666666664,31.912699999999997,31.916033333333335,31.91936666666667,31.922700000000003,31.926033333333333,31.929366666666667,31.9327,31.936033333333334,31.93936666666667,31.9427,31.946033333333332,31.949366666666666,31.9527,31.956033333333334,31.959366666666664,31.962699999999998,31.966033333333332,31.969366666666666,31.9727,31.97603333333333,31.979366666666667,31.9827,31.986033333333335,31.98936666666667,31.9927,31.996033333333333,31.999366666666667,32.0027,32.006033333333335,32.009366666666665,32.0127,32.01603333333333,32.01936666666667,32.0227,32.02603333333333,32.02936666666667,32.0327,32.036033333333336,32.039366666666666,32.042699999999996,32.046033333333334,32.049366666666664,32.0527,32.05603333333333,32.05936666666666,32.0627,32.06603333333333,32.06936666666667,32.072700000000005,32.076033333333335,32.079366666666665,32.0827,32.08603333333333,32.08936666666667,32.0927,32.09603333333333,32.09936666666667,32.1027,32.106033333333336,32.109366666666666,32.1127,32.116033333333334,32.119366666666664,32.1227,32.12603333333333,32.12936666666666,32.1327,32.13603333333334,32.13936666666667,32.1427,32.146033333333335,32.149366666666666,32.1527,32.15603333333333,32.15936666666666,32.1627,32.16603333333333,32.16936666666667,32.1727,32.17603333333333,32.17936666666667,32.1827,32.186033333333334,32.189366666666665,32.192699999999995,32.19603333333333,32.19936666666667,32.2027,32.20603333333334,32.20936666666667,32.2127,32.216033333333336,32.219366666666666,32.2227,32.22603333333333,32.229366666666664,32.2327,32.23603333333333,32.23936666666667,32.2427,32.24603333333333,32.24936666666667,32.2527,32.256033333333335,32.259366666666665,32.2627,32.26603333333333,32.26936666666667,32.2727,32.27603333333333,32.27936666666667,32.2827,32.286033333333336,32.289366666666666,32.292699999999996,32.296033333333334,32.299366666666664,32.3027,32.30603333333333,32.30936666666666,32.3127,32.31603333333333,32.31936666666667,32.322700000000005,32.326033333333335,32.329366666666665,32.3327,32.33603333333333,32.33936666666667,32.3427,32.34603333333333,32.34936666666667,32.3527,32.356033333333336,32.359366666666666,32.3627,32.366033333333334,32.369366666666664,32.3727,32.37603333333333,32.37936666666666,32.3827,32.38603333333334,32.38936666666667,32.3927,32.396033333333335,32.399366666666666,32.4027,32.40603333333333,32.40936666666666,32.4127,32.41603333333333,32.41936666666667,32.4227,32.42603333333333,32.42936666666667,32.4327,32.436033333333334,32.439366666666665,32.442699999999995,32.44603333333333,32.44936666666667,32.4527,32.45603333333334,32.45936666666667,32.4627,32.466033333333336,32.469366666666666,32.4727,32.47603333333333,32.479366666666664,32.4827,32.48603333333333,32.48936666666667,32.4927,32.49603333333333,32.49936666666667,32.5027,32.506033333333335,32.509366666666665,32.5127,32.51603333333333,32.51936666666667,32.5227,32.52603333333333,32.52936666666667,32.5327,32.536033333333336,32.539366666666666,32.542699999999996,32.546033333333334,32.549366666666664,32.5527,32.55603333333333,32.55936666666666,32.5627,32.56603333333333,32.56936666666667,32.572700000000005,32.576033333333335,32.579366666666665,32.5827,32.58603333333333,32.58936666666667,32.5927,32.59603333333333,32.59936666666667,32.6027,32.606033333333336,32.609366666666666,32.6127,32.616033333333334,32.619366666666664,32.6227,32.62603333333333,32.62936666666666,32.6327,32.63603333333334,32.63936666666667,32.6427,32.646033333333335,32.649366666666666,32.6527,32.65603333333333,32.65936666666666,32.6627,32.66603333333333,32.66936666666667,32.6727,32.67603333333333,32.67936666666667,32.6827,32.686033333333334,32.689366666666665,32.692699999999995,32.69603333333333,32.69936666666667,32.7027,32.70603333333334,32.70936666666667,32.7127,32.716033333333336,32.719366666666666,32.7227,32.72603333333333,32.729366666666664,32.7327,32.73603333333333,32.73936666666667,32.7427,32.74603333333333,32.74936666666667,32.7527,32.756033333333335,32.759366666666665,32.7627,32.76603333333333,32.76936666666667,32.7727,32.77603333333333,32.77936666666667,32.7827,32.786033333333336,32.789366666666666,32.792699999999996,32.796033333333334,32.799366666666664,32.8027,32.80603333333333,32.80936666666666,32.8127,32.81603333333333,32.81936666666667,32.822700000000005,32.826033333333335,32.829366666666665,32.8327,32.83603333333333,32.83936666666667,32.8427,32.84603333333333,32.84936666666667,32.8527,32.856033333333336,32.859366666666666,32.8627,32.866033333333334,32.869366666666664,32.8727,32.87603333333333,32.87936666666666,32.8827,32.88603333333334,32.88936666666667,32.8927,32.896033333333335,32.899366666666666,32.9027,32.90603333333333,32.90936666666666,32.9127,32.91603333333333,32.91936666666667,32.9227,32.92603333333333,32.92936666666667,32.9327,32.936033333333334,32.939366666666665,32.942699999999995,32.94603333333333,32.94936666666667,32.9527,32.95603333333334,32.95936666666667,32.9627,32.966033333333336,32.969366666666666,32.9727,32.97603333333333,32.979366666666664,32.9827,32.98603333333333,32.98936666666667,32.9927,32.99603333333333,32.99936666666667],"y":[-64022.0,-64413.0,-64788.0,-65072.0,-65305.0,-65519.0,-65708.0,-65847.0,-65952.0,-66091.0,-66274.0,-66500.0,-66736.0,-67015.0,-67308.0,-67558.0,-67797.0,-68107.0,-68463.0,-68774.0,-69057.0,-69404.0,-69803.0,-70143.0,-70432.0,-70759.0,-71194.0,-71629.0,-71989.0,-72280.0,-72573.0,-72872.0,-73095.0,-73292.0,-73505.0,-73755.0,-74041.0,-74346.0,-74696.0,-75075.0,-75466.0,-75863.0,-76184.0,-76438.0,-76690.0,-76954.0,-77266.0,-77618.0,-78049.0,-78496.0,-78871.0,-79194.0,-79470.0,-79673.0,-79840.0,-80083.0,-80409.0,-80758.0,-81072.0,-81416.0,-81783.0,-82091.0,-82367.0,-82637.0,-82968.0,-83334.0,-83708.0,-84123.0,-84597.0,-85091.0,-85509.0,-85842.0,-86162.0,-86472.0,-86675.0,-86780.0,-86928.0,-87206.0,-87504.0,-87728.0,-87974.0,-88310.0,-88658.0,-88923.0,-89143.0,-89438.0,-89747.0,-90013.0,-90225.0,-90431.0,-90696.0,-90957.0,-91215.0,-91468.0,-91790.0,-92163.0,-92492.0,-92748.0,-92970.0,-93219.0,-93452.0,-93641.0,-93796.0,-94016.0,-94330.0,-94712.0,-95102.0,-95476.0,-95846.0,-96182.0,-96467.0,-96682.0,-96905.0,-97198.0,-97589.0,-98054.0,-98587.0,-99200.0,-99804.0,-100362.0,-100857.0,-101310.0,-101726.0,-102113.0,-102552.0,-103044.0,-103547.0,-104024.0,-104464.0,-104850.0,-105162.0,-105409.0,-105674.0,-106039.0,-106520.0,-107075.0,-107586.0,-108043.0,-108460.0,-108799.0,-109024.0,-109181.0,-109418.0,-109754.0,-110126.0,-110496.0,-110872.0,-111251.0,-111576.0,-111857.0,-112110.0,-112384.0,-112670.0,-112952.0,-113214.0,-113496.0,-113833.0,-114206.0,-114584.0,-114975.0,-115428.0,-115889.0,-116286.0,-116569.0,-116818.0,-117109.0,-117448.0,-117799.0,-118186.0,-118621.0,-119045.0,-119369.0,-119623.0,-119866.0,-120091.0,-120304.0,-120560.0,-120906.0,-121296.0,-121689.0,-122096.0,-122522.0,-122939.0,-123338.0,-123712.0,-124061.0,-124432.0,-124821.0,-125213.0,-125578.0,-125931.0,-126246.0,-126447.0,-126542.0,-126597.0,-126689.0,-126846.0,-127112.0,-127496.0,-127936.0,-128376.0,-128784.0,-129106.0,-129375.0,-129602.0,-129869.0,-130160.0,-130461.0,-130771.0,-131029.0,-131253.0,-131462.0,-131658.0,-131878.0,-132160.0,-132503.0,-132788.0,-132989.0,-133214.0,-133485.0,-133753.0,-134029.0,-134428.0,-134925.0,-135444.0,-135914.0,-136340.0,-136701.0,-137013.0,-137266.0,-137443.0,-137579.0,-137735.0,-137977.0,-138266.0,-138612.0,-138972.0,-139350.0,-139711.0,-140026.0,-140303.0,-140596.0,-140946.0,-141312.0,-141682.0,-142109.0,-142594.0,-143029.0,-143405.0,-143761.0,-144106.0,-144370.0,-144547.0,-144728.0,-144935.0,-145151.0,-145375.0,-145586.0,-145765.0,-145910.0,-146050.0,-146198.0,-146350.0,-146545.0,-146783.0,-147056.0,-147379.0,-147804.0,-148348.0,-149037.0,-149973.0,-151211.0,-152752.0,-154615.0,-156879.0,-159663.0,-163035.0,-167140.0,-172084.0,-177926.0,-184677.0,-192351.0,-200983.0,-210517.0,-220878.0,-231992.0,-243795.0,-256146.0,-268800.0,-281631.0,-294586.0,-307547.0,-320329.0,-332746.0,-344725.0,-356059.0,-366469.0,-375625.0,-383243.0,-389026.0,-392742.0,-394255.0,-393633.0,-391092.0,-386943.0,-381558.0,-375293.0,-368444.0,-361118.0,-353464.0,-345615.0,-337706.0,-329783.0,-321951.0,-314395.0,-307148.0,-300199.0,-293539.0,-287161.0,-280997.0,-274931.0,-268936.0,-263025.0,-257166.0,-251370.0,-245647.0,-240003.0,-234417.0,-228837.0,-223232.0,-217530.0,-211629.0,-205530.0,-199310.0,-193102.0,-187011.0,-181128.0,-175548.0,-170229.0,-165013.0,-159652.0,-153789.0,-146885.0,-138097.0,-126186.0,-109768.0,-87413.0,-58226.0,-22098.0,19981.0,65927.0,113110.0,158766.0,200704.0,237484.0,268673.0,294665.0,316391.0,334889.0,351094.0,365840.0,379666.0,392849.0,405505.0,417814.0,429935.0,441868.0,453741.0,465953.0,479010.0,493413.0,509857.0,529254.0,552242.0,578716.0,607693.0,637437.0,665540.0,689474.0,707145.0,717375.0,720135.0,716348.0,707550.0,695263.0,680772.0,664988.0,648371.0,631029.0,612867.0,593854.0,574097.0,553868.0,533638.0,514047.0,495742.0,479189.0,464687.0,452400.0,442418.0,434710.0,429355.0,426690.0,427252.0,431664.0,440632.0,455083.0,476160.0,505074.0,543000.0,591113.0,650538.0,722221.0,806784.0,904569.0,1015591.0,1139435.0,1275132.0,1421158.0,1575475.0,1735570.0,1898551.0,2061226.0,2220152.0,2371912.0,2513190.0,2640911.0,2752229.0,2844744.0,2916725.0,2967042.0,2995172.0,3001139.0,2985587.0,2949657.0,2894922.0,2823298.0,2737068.0,2638704.0,2530817.0,2415992.0,2296810.0,2175657.0,2054600.0,1935397.0,1819511.0,1708212.0,1602458.0,1503008.0,1410396.0,1324935.0,1246687.0,1175574.0,1111349.0,1053595.0,1001756.0,955267.0,913657.0,876451.0,843196.0,813452.0,786821.0,762980.0,741537.0,722102.0,704302.0,687921.0,672726.0,658469.0,644949.0,632099.0,619885.0,608184.0,596907.0,586019.0,575532.0,565371.0,555402.0,545477.0,535514.0,525485.0,515396.0,505232.0,495006.0,484665.0,474205.0,463597.0,452814.0,441820.0,430543.0,419071.0,407423.0,395610.0,383590.0,371358.0,359024.0,346624.0,334175.0,321708.0,309303.0,297043.0,284918.0,272944.0,261251.0,249940.0,239051.0,228593.0,218632.0,209211.0,200284.0,191823.0,183825.0,176280.0,169193.0,162581.0,156489.0,150831.0,145559.0,140598.0,135888.0,131379.0,126971.0,122689.0,118507.0,114436.0,110410.0,106362.0,102304.0,98226.0,94069.0,89778.0,85386.0,81004.0,76661.0,72331.0,68002.0,63706.0,59501.0,55364.0,51251.0,47146.0,43131.0,39230.0,35410.0,31635.0,27961.0,24441.0,21037.0,17737.0,14563.0,11553.0,8710.0,6002.0,3409.0,935.0,-1399.0,-3606.0,-5745.0,-7838.0,-9838.0,-11706.0,-13503.0,-15300.0,-17081.0,-18774.0,-20334.0,-21807.0,-23232.0,-24592.0,-25847.0,-26988.0,-28042.0,-28988.0,-29770.0,-30391.0,-30918.0,-31372.0,-31780.0,-32135.0,-32447.0,-32651.0,-32689.0,-32604.0,-32390.0,-32079.0,-31631.0,-31115.0,-30679.0,-30339.0,-30040.0,-29639.0,-29212.0,-28859.0,-28509.0,-28093.0,-27643.0,-27303.0,-27081.0,-26879.0,-26634.0,-26390.0,-26196.0,-26070.0,-25926.0,-25687.0,-25403.0,-25135.0,-24898.0,-24645.0,-24391.0,-24193.0,-24006.0,-23767.0,-23452.0,-23080.0,-22716.0,-22391.0,-22151.0,-21964.0,-21792.0,-21635.0,-21489.0,-21349.0,-21222.0,-21149.0,-21159.0,-21226.0,-21343.0,-21554.0,-21872.0,-22249.0,-22602.0,-22966.0,-23363.0,-23747.0,-24040.0,-24181.0,-24171.0,-23931.0,-23399.0,-22532.0,-21320.0,-19825.0,-18085.0,-16085.0,-13785.0,-11189.0,-8323.0,-5218.0,-1915.0,1470.0,4897.0,8384.0,11835.0,15161.0,18343.0,21417.0,24328.0,26961.0,29377.0,31638.0,33699.0,35473.0,36993.0,38368.0,39541.0,40448.0,41115.0,41658.0,41998.0,42031.0,41801.0,41444.0,41040.0,40541.0,39950.0,39263.0,38479.0,37583.0,36532.0,35268.0,33883.0,32496.0,31117.0,29729.0,28319.0,26950.0,25536.0,24019.0,22451.0,20823.0,19142.0,17445.0,15808.0,14232.0,12599.0,10870.0,9054.0,7186.0,5276.0,3315.0,1330.0,-665.0,-2633.0,-4638.0,-6704.0,-8803.0,-10908.0,-12972.0,-15040.0,-17070.0,-19052.0,-21003.0,-22913.0,-24785.0,-26564.0,-28236.0,-29789.0,-31247.0,-32661.0,-34011.0,-35263.0,-36422.0,-37563.0,-38693.0,-39751.0,-40732.0,-41711.0,-42742.0,-43775.0,-44712.0,-45556.0,-46379.0,-47227.0,-48041.0,-48702.0,-49226.0,-49691.0,-50167.0,-50586.0,-50932.0,-51250.0,-51614.0,-51953.0,-52172.0,-52265.0,-52280.0,-52293.0,-52264.0,-52229.0,-52200.0,-52181.0,-52146.0,-52103.0,-52100.0,-52127.0,-52181.0,-52288.0,-52507.0,-52854.0,-53327.0,-53967.0,-54759.0,-55687.0,-56750.0,-57932.0,-59206.0,-60472.0,-61774.0,-63141.0,-64590.0,-66127.0,-67776.0,-69596.0,-71570.0,-73655.0,-75760.0,-77797.0,-79798.0,-81806.0,-83862.0,-85907.0,-87963.0,-90074.0,-92199.0,-94240.0,-96087.0,-97802.0,-99415.0,-100941.0,-102351.0,-103685.0,-105003.0,-106341.0,-107695.0,-108988.0,-110231.0,-111407.0,-112503.0,-113429.0,-114163.0,-114809.0,-115438.0,-116056.0,-116620.0,-117127.0,-117594.0,-118003.0,-118315.0,-118554.0,-118751.0,-118950.0,-119111.0,-119235.0,-119343.0,-119422.0,-119477.0,-119544.0,-119714.0,-119960.0,-120171.0,-120289.0,-120321.0,-120284.0,-120146.0,-119963.0,-119787.0,-119645.0,-119519.0,-119398.0,-119311.0,-119207.0,-119103.0,-119063.0,-119131.0,-119296.0,-119462.0,-119638.0,-119861.0,-120133.0,-120442.0,-120743.0,-121107.0,-121550.0,-122044.0,-122527.0,-123043.0,-123655.0,-124352.0,-125110.0,-125878.0,-126673.0,-127429.0,-128228.0,-129100.0,-130004.0,-130929.0,-131901.0,-132961.0,-133957.0,-134821.0,-135573.0,-136270.0,-136929.0,-137569.0,-138245.0,-138949.0,-139744.0,-140639.0,-141562.0,-142407.0,-143111.0,-143741.0,-144281.0,-144766.0,-145238.0,-145710.0,-146187.0,-146649.0,-147143.0,-147659.0,-148161.0,-148629.0,-149058.0,-149447.0,-149780.0,-150077.0,-150330.0,-150520.0,-150676.0,-150870.0,-151112.0,-151338.0,-151529.0,-151749.0,-152025.0,-152322.0,-152624.0,-152924.0,-153192.0,-153436.0,-153676.0,-153899.0,-154071.0,-154170.0,-154262.0,-154388.0,-154575.0,-154801.0,-155047.0,-155319.0,-155617.0,-155904.0,-156145.0,-156377.0,-156638.0,-156924.0,-157168.0,-157335.0,-157455.0,-157575.0,-157698.0,-157751.0,-157769.0,-157822.0,-157986.0,-158192.0,-158400.0,-158646.0,-158902.0,-159108.0,-159182.0,-159196.0,-159152.0,-159113.0,-159160.0,-159310.0,-159526.0,-159667.0,-159716.0,-159656.0,-159452.0,-159164.0,-158828.0,-158560.0,-158406.0,-158376.0,-158442.0,-158563.0,-158707.0,-158827.0,-158885.0,-158841.0,-158766.0,-158696.0,-158690.0,-158764.0,-158908.0,-159157.0,-159442.0,-159723.0,-160001.0,-160268.0,-160501.0,-160630.0,-160728.0,-160907.0,-161186.0,-161510.0,-161878.0,-162366.0,-162970.0,-163638.0,-164268.0,-164910.0,-165631.0,-166429.0,-167234.0,-167937.0,-168585.0,-169160.0,-169670.0,-170151.0,-170640.0,-171157.0,-171659.0,-172168.0,-172710.0,-173272.0,-173834.0,-174385.0,-174913.0,-175422.0,-175880.0,-176234.0,-176478.0,-176626.0,-176711.0,-176710.0,-176593.0,-176401.0,-176171.0,-175899.0,-175603.0,-175275.0,-174914.0,-174473.0,-173949.0,-173368.0,-172704.0,-171895.0,-170937.0,-169856.0,-168619.0,-167226.0,-165689.0,-164078.0,-162324.0,-160359.0,-158214.0,-155930.0,-153478.0,-150801.0,-147891.0,-144792.0,-141477.0,-137879.0,-133992.0,-129847.0,-125536.0,-121043.0,-116346.0,-111454.0,-106434.0,-101274.0,-95903.0,-90315.0,-84554.0,-78663.0,-72599.0,-66391.0,-60114.0,-53806.0,-47446.0,-41048.0,-34657.0,-28324.0,-22012.0,-15703.0,-9441.0,-3264.0,2803.0,8790.0,14656.0,20314.0,25689.0,30808.0,35657.0,40183.0,44319.0,48101.0,51592.0,54800.0,57694.0,60263.0,62495.0,64365.0,65889.0,67114.0,68109.0,68809.0,69155.0,69084.0,68640.0,67800.0,66542.0,64979.0,63255.0,61423.0,59323.0,56890.0,54147.0,51078.0,47673.0,43976.0,40126.0,36180.0,32170.0,28108.0,23975.0,19737.0,15396.0,10990.0,6519.0,1978.0,-2622.0,-7207.0,-11781.0,-16390.0,-21060.0,-25728.0,-30348.0,-34977.0,-39629.0,-44267.0,-48829.0,-53305.0,-57712.0,-62058.0,-66353.0,-70579.0,-74707.0,-78731.0,-82685.0,-86565.0,-90395.0,-94188.0,-97955.0,-101681.0,-105323.0,-108809.0,-112117.0,-115296.0,-118419.0,-121505.0,-124547.0,-127564.0,-130513.0,-133314.0,-135949.0,-138478.0,-140962.0,-143417.0,-145822.0,-148110.0,-150278.0,-152355.0,-154360.0,-156237.0,-157984.0,-159692.0,-161380.0,-163017.0,-164556.0,-166015.0,-167411.0,-168749.0,-170033.0,-171252.0,-172420.0,-173555.0,-174647.0,-175699.0,-176719.0,-177687.0,-178585.0,-179441.0,-180292.0,-181129.0,-181948.0,-182747.0,-183525.0,-184296.0,-185068.0,-185805.0,-186438.0,-187011.0,-187558.0,-188069.0,-188541.0,-189044.0,-189565.0,-190056.0,-190482.0,-190859.0,-191197.0,-191481.0,-191770.0,-192069.0,-192347.0,-192618.0,-192856.0,-193074.0,-193256.0,-193411.0,-193603.0,-193774.0,-193920.0,-193969.0,-193946.0,-193881.0,-193773.0,-193617.0,-193425.0,-193243.0,-193097.0,-192950.0,-192764.0,-192589.0,-192459.0,-192383.0,-192330.0,-192296.0,-192277.0,-192240.0,-192189.0,-192118.0,-192001.0,-191836.0,-191643.0,-191450.0,-191242.0,-191069.0,-190949.0,-190887.0,-190883.0,-190935.0,-191018.0,-191035.0,-190954.0,-190804.0,-190628.0,-190451.0,-190299.0,-190206.0,-190211.0,-190303.0,-190448.0,-190593.0,-190709.0,-190806.0,-190906.0,-191021.0,-191141.0,-191271.0,-191439.0,-191636.0,-191851.0,-192077.0,-192343.0,-192666.0,-193063.0,-193507.0,-193920.0,-194272.0,-194556.0,-194836.0,-195128.0,-195462.0,-195871.0,-196333.0,-196857.0,-197432.0,-198028.0,-198594.0,-199118.0,-199643.0,-200184.0,-200705.0,-201202.0,-201724.0,-202329.0,-203037.0,-203770.0,-204477.0,-205132.0,-205792.0,-206448.0,-207038.0,-207592.0,-208166.0,-208772.0,-209333.0,-209827.0,-210372.0,-210978.0,-211599.0,-212154.0,-212686.0,-213208.0,-213684.0,-214145.0,-214634.0,-215197.0,-215762.0,-216338.0,-216952.0,-217572.0,-218123.0,-218614.0,-219148.0,-219730.0,-220302.0,-220844.0,-221448.0,-222103.0,-222662.0,-223119.0,-223491.0,-223874.0,-224202.0,-224514.0,-224908.0,-225357.0,-225820.0,-226260.0,-226740.0,-227237.0,-227728.0,-228235.0,-228822.0,-229415.0,-229949.0,-230435.0,-230926.0,-231451.0,-231933.0,-232390.0,-232853.0,-233324.0,-233803.0,-234242.0,-234611.0,-234947.0,-235278.0,-235679.0,-236089.0,-236497.0,-236958.0,-237433.0,-237942.0,-238415.0,-238869.0,-239288.0,-239689.0,-240135.0,-240628.0,-241146.0,-241681.0,-242218.0,-242763.0,-243273.0,-243718.0,-244075.0,-244377.0,-244688.0,-244980.0,-245240.0,-245435.0,-245617.0,-245775.0,-245907.0,-246058.0,-246235.0,-246431.0,-246612.0,-246788.0,-247003.0,-247215.0,-247445.0,-247711.0,-248001.0,-248278.0,-248473.0,-248580.0,-248540.0,-248372.0,-248138.0,-247885.0,-247625.0,-247368.0,-247196.0,-247126.0,-247124.0,-247087.0,-246973.0,-246795.0,-246592.0,-246352.0,-246048.0,-245743.0,-245476.0,-245274.0,-245092.0,-244938.0,-244829.0,-244758.0,-244723.0,-244729.0,-244760.0,-244779.0,-244774.0,-244804.0,-244888.0,-245004.0,-245072.0,-245110.0,-245167.0,-245216.0,-245256.0,-245246.0,-245236.0,-245216.0,-245236.0,-245371.0,-245562.0,-245767.0,-245956.0,-246199.0,-246474.0,-246725.0,-247001.0,-247333.0,-247747.0,-248182.0,-248599.0,-248949.0,-249232.0,-249478.0,-249729.0,-249954.0,-250142.0,-250324.0,-250513.0,-250736.0,-250951.0,-251196.0,-251420.0,-251623.0,-251807.0,-251955.0,-252062.0,-252051.0,-251947.0,-251773.0,-251546.0,-251287.0,-251022.0,-250810.0,-250611.0,-250334.0,-249964.0,-249539.0,-249070.0,-248509.0,-247850.0,-247160.0,-246449.0,-245641.0,-244681.0,-243607.0,-242514.0,-241416.0,-240283.0,-239120.0,-237898.0,-236595.0,-235156.0,-233613.0,-231996.0,-230320.0,-228667.0,-227038.0,-225418.0,-223671.0,-221725.0,-219641.0,-217419.0,-215113.0,-212726.0,-210345.0,-207963.0,-205525.0,-203034.0,-200516.0,-197982.0,-195429.0,-192878.0,-190286.0,-187575.0,-184737.0,-181864.0,-178921.0,-175886.0,-172769.0,-169676.0,-166599.0,-163472.0,-160348.0,-157271.0,-154275.0,-151296.0,-148297.0,-145307.0,-142323.0,-139356.0,-136417.0,-133529.0,-130701.0,-127889.0,-125115.0,-122422.0,-119856.0,-117433.0,-115172.0,-113099.0,-111201.0,-109468.0,-107829.0,-106198.0,-104588.0,-103086.0,-101751.0,-100555.0,-99534.0,-98753.0,-98175.0,-97682.0,-97234.0,-96900.0,-96728.0,-96737.0,-96939.0,-97370.0,-98029.0,-98888.0,-99941.0,-101198.0,-102636.0,-104229.0,-105968.0,-107859.0,-109852.0,-111961.0,-114210.0,-116628.0,-119158.0,-121720.0,-124310.0,-126938.0,-129685.0,-132515.0,-135448.0,-138487.0,-141669.0,-144929.0,-148171.0,-151413.0,-154644.0,-157874.0,-161019.0,-164113.0,-167192.0,-170261.0,-173364.0,-176538.0,-179796.0,-183033.0,-186161.0,-189161.0,-192022.0,-194786.0,-197493.0,-200132.0,-202662.0,-205106.0,-207506.0,-209826.0,-212009.0,-214111.0,-216211.0,-218301.0,-220380.0,-222408.0,-224401.0,-226322.0,-228158.0,-229903.0,-231521.0,-233081.0,-234623.0,-236136.0,-237577.0,-238916.0,-240154.0,-241316.0,-242409.0,-243463.0,-244507.0,-245571.0,-246641.0,-247597.0,-248386.0,-249108.0,-249839.0,-250592.0,-251340.0,-252090.0,-252895.0,-253698.0,-254468.0,-255186.0,-255904.0,-256682.0,-257455.0,-258146.0,-258736.0,-259329.0,-259941.0,-260512.0,-260977.0,-261435.0,-262014.0,-262674.0,-263275.0,-263741.0,-264176.0,-264654.0,-265134.0,-265566.0,-265989.0,-266489.0,-267073.0,-267715.0,-268336.0,-268871.0,-269343.0,-269820.0,-270306.0,-270662.0,-270873.0,-271133.0,-271572.0,-272099.0,-272602.0,-273116.0,-273748.0,-274404.0,-275008.0,-275563.0,-276095.0,-276586.0,-276965.0,-277296.0,-277562.0,-277787.0,-278014.0,-278349.0,-278816.0,-279283.0,-279736.0,-280172.0,-280678.0,-281174.0,-281654.0,-282170.0,-282735.0,-283336.0,-283882.0,-284335.0,-284660.0,-284914.0,-285165.0,-285470.0,-285800.0,-286169.0,-286559.0,-286928.0,-287272.0,-287562.0,-287829.0,-288097.0,-288457.0,-288905.0,-289360.0,-289808.0,-290230.0,-290639.0,-290994.0,-291342.0,-291705.0,-292050.0,-292408.0,-292794.0,-293224.0,-293681.0,-294118.0,-294542.0,-294974.0,-295486.0,-296046.0,-296525.0,-296919.0,-297270.0,-297620.0,-297901.0,-298078.0,-298271.0,-298547.0,-298878.0,-299109.0,-299214.0,-299350.0,-299536.0,-299736.0,-299913.0,-300197.0,-300608.0,-301018.0,-301301.0,-301452.0,-301600.0,-301780.0,-301985.0,-302171.0,-302419.0,-302747.0,-303068.0,-303271.0,-303364.0,-303414.0,-303418.0,-303390.0,-303396.0,-303470.0,-303560.0,-303621.0,-303674.0,-303738.0,-303752.0,-303748.0,-303782.0,-303886.0,-304001.0,-304037.0,-304018.0,-303959.0,-303857.0,-303701.0,-303530.0,-303413.0,-303382.0,-303408.0,-303470.0,-303537.0,-303616.0,-303699.0,-303731.0,-303664.0,-303503.0,-303366.0,-303262.0,-303163.0,-303044.0,-303005.0,-303075.0,-303147.0,-303109.0,-302980.0,-302890.0,-302828.0,-302746.0,-302588.0,-302418.0,-302281.0,-302172.0,-302057.0,-301890.0,-301685.0,-301475.0,-301297.0,-301086.0,-300793.0,-300462.0,-300182.0,-299961.0,-299725.0,-299437.0,-299083.0,-298668.0,-298214.0,-297742.0,-297249.0,-296743.0,-296290.0,-295886.0,-295470.0,-294987.0,-294421.0,-293778.0,-293052.0,-292247.0,-291330.0,-290250.0,-289050.0,-287765.0,-286418.0,-284965.0,-283461.0,-281971.0,-280444.0,-278817.0,-276961.0,-274860.0,-272557.0,-270142.0,-267653.0,-265061.0,-262445.0,-259889.0,-257364.0,-254695.0,-251857.0,-248895.0,-245825.0,-242634.0,-239305.0,-235901.0,-232380.0,-228760.0,-225066.0,-221280.0,-217425.0,-213501.0,-209587.0,-205679.0,-201729.0,-197714.0,-193606.0,-189461.0,-185252.0,-180982.0,-176679.0,-172392.0,-168153.0,-163922.0,-159740.0,-155661.0,-151718.0,-147883.0,-144153.0,-140551.0,-137029.0,-133526.0,-129980.0,-126427.0,-122908.0,-119464.0,-116165.0,-113002.0,-110027.0,-107238.0,-104675.0,-102266.0,-99931.0,-97700.0,-95646.0,-93752.0,-91965.0,-90280.0,-88788.0,-87519.0,-86449.0,-85598.0,-84948.0,-84492.0,-84180.0,-84022.0,-84038.0,-84241.0,-84634.0,-85224.0,-86004.0,-86987.0,-88163.0,-89536.0,-91016.0,-92596.0,-94315.0,-96240.0,-98349.0,-100568.0,-102931.0,-105427.0,-108053.0,-110771.0,-113564.0,-116488.0,-119574.0,-122848.0,-126290.0,-129797.0,-133291.0,-136741.0,-140178.0,-143704.0,-147298.0,-150982.0,-154737.0,-158519.0,-162298.0,-165998.0,-169660.0,-173260.0,-176890.0,-180571.0,-184285.0,-187986.0,-191636.0,-195251.0,-198762.0,-202201.0,-205604.0,-208998.0,-212336.0,-215569.0,-218745.0,-221912.0,-225083.0,-228186.0,-231176.0,-234061.0,-236832.0,-239443.0,-241857.0,-244135.0,-246373.0,-248625.0,-250869.0,-253087.0,-255241.0,-257288.0,-259238.0,-261114.0,-262957.0,-264725.0,-266423.0,-268066.0,-269627.0,-271108.0,-272536.0,-273956.0,-275343.0,-276653.0,-277896.0,-279053.0,-280126.0,-281139.0,-282128.0,-283117.0,-284132.0,-285205.0,-286312.0,-287366.0,-288332.0,-289212.0,-289998.0,-290633.0,-291125.0,-291560.0,-292033.0,-292554.0,-293084.0,-293625.0,-294168.0,-294722.0,-295247.0,-295755.0,-296230.0,-296689.0,-297137.0,-297535.0,-297896.0,-298239.0,-298648.0,-299107.0,-299539.0,-299924.0,-300292.0,-300656.0,-300964.0,-301206.0,-301437.0,-301705.0,-301988.0,-302296.0,-302643.0,-302982.0,-303276.0,-303523.0,-303738.0,-303913.0,-304045.0,-304209.0,-304408.0,-304611.0,-304822.0,-305057.0,-305300.0,-305525.0,-305781.0,-306088.0,-306415.0,-306697.0,-306936.0,-307117.0,-307282.0,-307504.0,-307758.0,-308001.0,-308215.0,-308472.0,-308716.0,-308881.0,-308980.0,-309130.0,-309342.0,-309551.0,-309739.0,-309894.0,-310057.0,-310207.0,-310386.0,-310603.0,-310818.0,-311040.0,-311252.0,-311482.0,-311676.0,-311828.0,-311977.0,-312126.0,-312259.0,-312330.0,-312383.0,-312438.0,-312468.0,-312489.0,-312586.0,-312782.0,-313001.0,-313171.0,-313365.0,-313594.0,-313788.0,-313921.0,-314037.0,-314208.0,-314353.0,-314472.0,-314604.0,-314772.0,-314988.0,-315208.0,-315493.0,-315796.0,-316067.0,-316255.0,-316378.0,-316551.0,-316776.0,-317022.0,-317216.0,-317441.0,-317687.0,-317909.0,-318068.0,-318263.0,-318571.0,-318917.0,-319209.0,-319391.0,-319497.0,-319524.0,-319510.0,-319497.0,-319582.0,-319779.0,-320064.0,-320368.0,-320673.0,-320981.0,-321282.0,-321558.0,-321800.0,-322033.0,-322259.0,-322452.0,-322589.0,-322700.0,-322778.0,-322848.0,-322904.0,-323037.0,-323275.0,-323564.0,-323870.0,-324147.0,-324428.0,-324660.0,-324845.0,-324982.0,-325088.0,-325169.0,-325223.0,-325264.0,-325310.0,-325398.0,-325551.0,-325739.0,-325902.0,-326028.0,-326089.0,-326126.0,-326140.0,-326156.0,-326174.0,-326197.0,-326283.0,-326379.0,-326442.0,-326516.0,-326628.0,-326784.0,-326919.0,-327076.0,-327310.0,-327549.0,-327746.0,-327896.0,-328053.0,-328211.0,-328333.0,-328423.0,-328496.0,-328482.0,-328396.0,-328247.0,-328096.0,-327953.0,-327825.0,-327811.0,-327876.0,-328020.0,-328247.0,-328561.0,-328944.0,-329301.0,-329599.0,-329837.0,-329967.0,-330007.0,-329975.0,-329958.0,-330004.0,-330125.0,-330309.0,-330518.0,-330740.0,-330975.0,-331253.0,-331518.0,-331794.0,-332090.0,-332436.0,-332788.0,-333099.0,-333410.0,-333724.0,-334007.0,-334241.0,-334433.0,-334595.0,-334743.0,-334933.0,-335219.0,-335578.0,-335954.0,-336290.0,-336569.0,-336817.0,-337117.0,-337458.0,-337875.0,-338384.0,-338982.0,-339556.0,-339985.0,-340334.0,-340645.0,-340978.0,-341335.0,-341803.0,-342416.0,-343076.0,-343710.0,-344262.0,-344769.0,-345216.0,-345629.0,-346015.0,-346384.0,-346759.0,-347145.0,-347516.0,-347833.0,-348201.0,-348666.0,-349199.0,-349698.0,-350151.0,-350624.0,-351062.0,-351461.0,-351833.0,-352278.0,-352813.0,-353356.0,-353879.0,-354392.0,-354884.0,-355348.0,-355773.0,-356181.0,-356574.0,-356939.0,-357343.0,-357770.0,-358254.0,-358796.0,-359388.0,-359969.0,-360463.0,-360848.0,-361121.0,-361324.0,-361516.0,-361757.0,-362079.0,-362465.0,-362899.0,-363314.0,-363653.0,-363903.0,-364076.0,-364223.0,-364344.0,-364501.0,-364726.0,-365043.0,-365415.0,-365797.0,-366160.0,-366516.0,-366873.0,-367195.0,-367453.0,-367633.0,-367817.0,-368011.0,-368215.0,-368390.0,-368531.0,-368709.0,-368877.0,-369010.0,-369082.0,-369153.0,-369287.0,-369410.0,-369501.0,-369570.0,-369697.0,-369896.0,-370140.0,-370387.0,-370618.0,-370867.0,-371090.0,-371289.0,-371448.0,-371663.0,-371894.0,-372021.0,-372055.0,-372118.0,-372207.0,-372217.0,-372217.0,-372345.0,-372604.0,-372791.0,-372867.0,-372931.0,-373016.0,-373135.0,-373219.0,-373304.0,-373421.0,-373575.0,-373742.0,-373864.0,-373964.0,-374091.0,-374264.0,-374446.0,-374602.0,-374735.0,-374898.0,-375057.0,-375159.0,-375186.0,-375231.0,-375336.0,-375480.0,-375645.0,-375861.0,-376165.0,-376498.0,-376800.0,-377004.0,-377107.0,-377196.0,-377336.0,-377527.0,-377718.0,-377922.0,-378183.0,-378458.0,-378688.0,-378837.0,-378914.0,-378935.0,-378943.0,-378993.0,-379094.0,-379231.0,-379406.0,-379666.0,-379994.0,-380308.0,-380529.0,-380721.0,-380907.0,-381044.0,-381112.0,-381213.0,-381380.0,-381520.0,-381582.0,-381615.0,-381630.0,-381558.0,-381425.0,-381338.0,-381371.0,-381481.0,-381614.0,-381783.0,-381997.0,-382184.0,-382307.0,-382403.0,-382497.0,-382531.0,-382468.0,-382355.0,-382264.0,-382199.0,-382183.0,-382190.0,-382224.0,-382288.0,-382350.0,-382373.0,-382335.0,-382293.0,-382257.0,-382178.0,-382040.0,-381860.0,-381681.0,-381559.0,-381508.0,-381525.0,-381554.0,-381562.0,-381519.0,-381421.0,-381280.0,-381091.0,-380864.0,-380713.0,-380650.0,-380566.0,-380411.0,-380255.0,-380185.0,-380063.0,-379836.0,-379549.0,-379235.0,-378880.0,-378496.0,-378136.0,-377789.0,-377440.0,-377104.0,-376807.0,-376470.0,-376020.0,-375510.0,-375018.0,-374558.0,-374076.0,-373567.0,-373170.0,-372859.0,-372538.0,-372111.0,-371588.0,-371054.0,-370421.0,-369700.0,-368952.0,-368264.0,-367624.0,-366964.0,-366330.0,-365666.0,-364933.0,-364058.0,-363104.0,-362088.0,-360954.0,-359683.0,-358367.0,-357364.0,-357236.0,-358552.0,-361448.0,-365600.0,-370349.0,-374910.0,-378356.0,-379906.0,-379399.0,-377242.0,-374077.0,-370426.0,-366648.0,-362980.0,-359547.0,-356325.0,-353308.0,-350463.0,-347803.0,-345289.0,-342866.0,-340558.0,-338372.0,-336315.0,-334393.0,-332686.0,-331259.0,-330194.0,-329570.0,-329421.0,-329702.0,-330309.0,-331160.0,-332189.0,-333311.0,-334479.0,-335653.0,-336819.0,-337963.0,-339021.0,-339957.0,-340795.0,-341602.0,-342394.0,-343153.0,-343887.0,-344604.0,-345267.0,-345832.0,-346359.0,-346851.0,-347284.0,-347620.0,-347887.0,-348131.0,-348346.0,-348577.0,-348845.0,-349148.0,-349521.0,-349962.0,-350416.0,-350773.0,-351055.0,-351374.0,-351715.0,-352024.0,-352309.0,-352616.0,-352959.0,-353251.0,-353463.0,-353614.0,-353738.0,-353898.0,-354047.0,-354128.0,-354103.0,-354016.0,-353935.0,-353882.0,-353841.0,-353863.0,-353980.0,-354150.0,-354266.0,-354286.0,-354279.0,-354272.0,-354275.0,-354311.0,-354337.0,-354345.0,-354362.0,-354471.0,-354636.0,-354736.0,-354809.0,-354904.0,-354998.0,-355006.0,-354952.0,-354907.0,-354852.0,-354739.0,-354613.0,-354531.0,-354501.0,-354488.0,-354545.0,-354655.0,-354765.0,-354765.0,-354691.0,-354607.0,-354462.0,-354274.0,-354069.0,-353930.0,-353763.0,-353516.0,-353245.0,-352984.0,-352694.0,-352324.0,-351896.0,-351461.0,-351001.0,-350455.0,-349809.0,-349040.0,-348098.0,-346956.0,-345626.0,-344189.0,-342625.0,-340911.0,-339099.0,-337189.0,-335208.0,-333102.0,-330883.0,-328575.0,-326175.0,-323704.0,-321138.0,-318494.0,-315783.0,-313047.0,-310353.0,-307718.0,-305184.0,-302763.0,-300455.0,-298227.0,-296027.0,-293924.0,-291974.0,-290217.0,-288652.0,-287218.0,-285910.0,-284676.0,-283466.0,-282215.0,-280926.0,-279668.0,-278406.0,-277036.0,-275478.0,-273718.0,-271734.0,-269546.0,-267232.0,-264911.0,-262619.0,-260383.0,-258280.0,-256373.0,-254680.0,-253203.0,-252033.0,-251262.0,-250907.0,-250928.0,-251266.0,-251930.0,-252864.0,-253979.0,-255238.0,-256614.0,-258132.0,-259686.0,-261256.0,-262890.0,-264562.0,-266277.0,-268038.0,-269921.0,-271943.0,-274076.0,-276347.0,-278723.0,-281172.0,-283702.0,-286310.0,-288951.0,-291592.0,-294273.0,-297014.0,-299748.0,-302386.0,-304899.0,-307286.0,-309565.0,-311743.0,-313785.0,-315723.0,-317614.0,-319499.0,-321318.0,-323046.0,-324703.0,-326315.0,-327868.0,-329358.0,-330803.0,-332158.0,-333382.0,-334447.0,-335405.0,-336279.0,-337067.0,-337759.0,-338435.0,-339140.0,-339853.0,-340516.0,-341107.0,-341675.0,-342208.0,-342679.0,-343059.0,-343353.0,-343602.0,-343830.0,-344084.0,-344403.0,-344771.0,-345183.0,-345610.0,-346033.0,-346382.0,-346624.0,-346750.0,-346764.0,-346699.0,-346620.0,-346633.0,-346756.0,-346977.0,-347252.0,-347582.0,-347933.0,-348268.0,-348516.0,-348699.0,-348888.0,-349074.0,-349211.0,-349230.0,-349202.0,-349178.0,-349128.0,-349076.0,-349060.0,-349139.0,-349304.0,-349437.0,-349528.0,-349552.0,-349507.0,-349413.0,-349230.0,-349077.0,-348983.0,-348944.0,-348964.0,-348983.0,-349067.0,-349161.0,-349267.0,-349396.0,-349523.0,-349632.0,-349694.0,-349717.0,-349725.0,-349715.0,-349650.0,-349559.0,-349445.0,-349377.0,-349351.0,-349380.0,-349488.0,-349666.0,-349899.0,-350107.0,-350259.0,-350342.0,-350377.0,-350383.0,-350352.0,-350280.0,-350191.0,-350146.0,-350132.0,-350090.0,-350000.0,-349879.0,-349732.0,-349511.0,-349211.0,-348854.0,-348466.0,-348027.0,-347501.0,-346852.0,-346116.0,-345326.0,-344510.0,-343692.0,-342905.0,-342186.0,-341477.0,-340713.0,-339829.0,-338834.0,-337744.0,-336587.0,-335386.0,-334159.0,-332916.0,-331620.0,-330260.0,-328848.0,-327421.0,-326041.0,-324706.0,-323441.0,-322245.0,-321080.0,-319877.0,-318585.0,-317236.0,-315832.0,-314377.0,-312862.0,-311333.0,-309815.0,-308373.0,-307041.0,-305763.0,-304500.0,-303291.0,-302191.0,-301122.0,-300027.0,-298888.0,-297765.0,-296622.0,-295467.0,-294316.0,-293207.0,-292227.0,-291385.0,-290715.0,-290156.0,-289675.0,-289194.0,-288696.0,-288217.0,-287778.0,-287411.0,-287195.0,-287257.0,-287573.0,-288042.0,-288562.0,-289129.0,-289710.0,-290226.0,-290705.0,-291206.0,-291803.0,-292533.0,-293398.0,-294396.0,-295455.0,-296517.0,-297626.0,-298797.0,-299999.0,-301195.0,-302445.0,-303844.0,-305261.0,-306547.0,-307728.0,-308880.0,-309973.0,-310918.0,-311800.0,-312731.0,-313682.0,-314633.0,-315591.0,-316548.0,-317453.0,-318284.0,-319113.0,-319941.0,-320759.0,-321541.0,-322288.0,-323021.0,-323684.0,-324222.0,-324643.0,-325065.0,-325530.0,-325992.0,-326406.0,-326869.0,-327402.0,-327938.0,-328392.0,-328793.0,-329223.0,-329611.0,-329918.0,-330099.0,-330199.0,-330235.0,-330210.0,-330104.0,-329859.0,-329468.0,-328946.0,-328257.0,-327337.0,-326259.0,-325080.0,-323845.0,-322527.0,-321130.0,-319621.0,-317887.0,-315847.0,-313485.0,-310747.0,-307539.0,-303734.0,-299208.0,-293856.0,-287450.0,-279785.0,-270595.0,-259614.0,-246512.0,-230907.0,-212459.0,-190728.0,-165293.0,-135793.0,-101927.0,-63414.0,-19962.0,28520.0,82008.0,140394.0,203483.0,270874.0,342074.0,416576.0,493892.0,573451.0,654587.0,736659.0,819049.0,901114.0,982204.0,1061749.0,1139287.0,1214459.0,1286929.0,1356422.0,1422691.0,1485511.0,1544724.0,1600214.0,1651849.0,1699559.0,1743229.0,1782696.0,1817771.0,1848255.0,1873979.0,1894747.0,1910352.0,1920657.0,1925495.0,1924736.0,1918248.0,1905915.0,1887761.0,1863869.0,1834429.0,1799678.0,1759962.0,1715698.0,1667356.0,1615505.0,1560774.0,1503809.0,1445216.0,1385598.0,1325601.0,1265771.0,1206555.0,1148346.0,1091522.0,1036487.0,983459.0,932637.0,884193.0,838306.0,795099.0,754504.0,716440.0,680800.0,647509.0,616381.0,587168.0,559673.0,533750.0,509295.0,486151.0,464150.0,443172.0,423134.0,403953.0,385434.0,367343.0,349571.0,332086.0,314841.0,297741.0,280704.0,263730.0,246797.0,229945.0,213216.0,196619.0,180138.0,163781.0,147622.0,131668.0,115905.0,100375.0,85190.0,70402.0,55983.0,41928.0,28276.0,15021.0,2163.0,-10265.0,-22224.0,-33783.0,-45023.0,-55923.0,-66428.0,-76537.0,-86282.0,-95647.0,-104610.0,-113187.0,-121465.0,-129465.0,-137215.0,-144711.0,-151893.0,-158710.0,-165161.0,-171360.0,-177344.0,-183072.0,-188544.0,-193794.0,-198878.0,-203722.0,-208272.0,-212568.0,-216676.0,-220653.0,-224425.0,-227986.0,-231360.0,-234621.0,-237816.0,-240907.0,-243887.0,-246784.0,-249635.0,-252423.0,-255110.0,-257696.0,-260180.0,-262514.0,-264666.0,-266637.0,-268466.0,-270208.0,-271892.0,-273575.0,-275286.0,-277069.0,-278922.0,-280797.0,-282706.0,-284616.0,-286532.0,-288455.0,-290427.0,-292490.0,-294597.0,-296710.0,-298771.0,-300745.0,-302609.0,-304356.0,-305995.0,-307513.0,-308954.0,-310296.0,-311538.0,-312649.0,-313609.0,-314433.0,-315060.0,-315495.0,-315749.0,-315814.0,-315716.0,-315472.0,-315138.0,-314709.0,-314079.0,-313192.0,-312093.0,-310866.0,-309575.0,-308189.0,-306750.0,-305326.0,-303884.0,-302371.0,-300695.0,-298863.0,-296853.0,-294643.0,-292275.0,-289750.0,-287044.0,-284124.0,-281003.0,-277721.0,-274255.0,-270537.0,-266556.0,-262305.0,-257775.0,-252907.0,-247647.0,-241995.0,-235968.0,-229610.0,-222886.0,-215695.0,-207999.0,-199839.0,-191268.0,-182272.0,-172853.0,-163015.0,-152690.0,-141857.0,-130511.0,-118649.0,-106331.0,-93664.0,-80796.0,-67738.0,-54488.0,-41075.0,-27470.0,-13683.0,216.0,14119.0,27998.0,41855.0,55614.0,69202.0,82608.0,95798.0,108735.0,121354.0,133628.0,145507.0,156979.0,168121.0,178956.0,189411.0,199401.0,208933.0,218033.0,226624.0,234621.0,241975.0,248689.0,254740.0,260064.0,264662.0,268546.0,271779.0,274308.0,276041.0,276888.0,276841.0,275829.0,273765.0,270640.0,266532.0,261587.0,255748.0,249002.0,241385.0,232982.0,223863.0,213954.0,203277.0,191898.0,179868.0,167248.0,154050.0,140384.0,126351.0,112038.0,97570.0,82963.0,68269.0,53562.0,38963.0,24589.0,10447.0,-3378.0,-16868.0,-30000.0,-42748.0,-55053.0,-66872.0,-78234.0,-89126.0,-99567.0,-109558.0,-119139.0,-128271.0,-136895.0,-144994.0,-152518.0,-159482.0,-165947.0,-171976.0,-177617.0,-182843.0,-187723.0,-192309.0,-196534.0,-200372.0,-203814.0,-206900.0,-209661.0,-212095.0,-214242.0,-216098.0,-217637.0,-218837.0,-219634.0,-220024.0,-220067.0,-219800.0,-219229.0,-218312.0,-217027.0,-215361.0,-213223.0,-210624.0,-207630.0,-204358.0,-200869.0,-197184.0,-193426.0,-189597.0,-185659.0,-181559.0,-177403.0,-173313.0,-169327.0,-165431.0,-161718.0,-158328.0,-155303.0,-152555.0,-149998.0,-147708.0,-145731.0,-144020.0,-142509.0,-141198.0,-140211.0,-139591.0,-139303.0,-139360.0,-139747.0,-140507.0,-141568.0,-142876.0,-144451.0,-146273.0,-148351.0,-150663.0,-153183.0,-155844.0,-158564.0,-161376.0,-164343.0,-167474.0,-170743.0,-174142.0,-177647.0,-181192.0,-184675.0,-188059.0,-191398.0,-194744.0,-198140.0,-201559.0,-205004.0,-208480.0,-211999.0,-215569.0,-219145.0,-222738.0,-226362.0,-230057.0,-233744.0,-237368.0,-240965.0,-244597.0,-248233.0,-251852.0,-255459.0,-259087.0,-262731.0,-266396.0,-270133.0,-273872.0,-277555.0,-281157.0,-284713.0,-288246.0,-291709.0,-295153.0,-298586.0,-301975.0,-305255.0,-308390.0,-311370.0,-314173.0,-316864.0,-319458.0,-321958.0,-324282.0,-326418.0,-328347.0,-330103.0,-331758.0,-333361.0,-334897.0,-336331.0,-337683.0,-338988.0,-340251.0,-341459.0,-342651.0,-343849.0,-345026.0,-346123.0,-347102.0,-347993.0,-348886.0,-349854.0,-350911.0,-352008.0,-353117.0,-354210.0,-355247.0,-356263.0,-357270.0,-358350.0,-359548.0,-360821.0,-362120.0,-363345.0,-364571.0,-365766.0,-366888.0,-367981.0,-369053.0,-370145.0,-371120.0,-371968.0,-372722.0,-373412.0,-374091.0,-374735.0,-375441.0,-376185.0,-376904.0,-377534.0,-378074.0,-378542.0,-378875.0,-379100.0,-379321.0,-379616.0,-379989.0,-380419.0,-380909.0,-381470.0,-382021.0,-382487.0,-382803.0,-383083.0,-383379.0,-383739.0,-384234.0,-384918.0,-385777.0,-386694.0,-387656.0,-388580.0,-389404.0,-390117.0,-390817.0,-391555.0,-392279.0,-392998.0,-393718.0,-394438.0,-395118.0,-395727.0,-396367.0,-397085.0,-397879.0,-398669.0,-399389.0,-400033.0,-400545.0,-400931.0,-401192.0,-401340.0,-401382.0,-401339.0,-401224.0,-400973.0,-400556.0,-399986.0,-399277.0,-398408.0,-397320.0,-396034.0,-394577.0,-393000.0,-391372.0,-389707.0,-388005.0,-386235.0,-384442.0,-382699.0,-381033.0,-379447.0,-378023.0,-376869.0,-375991.0,-375292.0,-374709.0,-374281.0,-373984.0,-373757.0,-373622.0,-373661.0,-373845.0,-374083.0,-374309.0,-374536.0,-374700.0,-374714.0,-374560.0,-374181.0,-373530.0,-372510.0,-371033.0,-368993.0,-366266.0,-362820.0,-358623.0,-353674.0,-347948.0,-341423.0,-334177.0,-326350.0,-318022.0,-309225.0,-300070.0,-290740.0,-281314.0,-271737.0,-262087.0,-252485.0,-243024.0,-233710.0,-224554.0,-215647.0,-207006.0,-198600.0,-190315.0,-182089.0,-173915.0,-165775.0,-157625.0,-149394.0,-141061.0,-132601.0,-124008.0,-115295.0,-106519.0,-97849.0,-89449.0,-81422.0,-73890.0,-66912.0,-60554.0,-54841.0,-49826.0,-45564.0,-41970.0,-39025.0,-36648.0,-34692.0,-32980.0,-31384.0,-29823.0,-28097.0,-25984.0,-23232.0,-19570.0,-14670.0,-8176.0,316.0,11273.0,25197.0,42606.0,64072.0,90161.0,121471.0,158676.0,202441.0,253445.0,312360.0,379894.0,456571.0,542675.0,638397.0,743877.0,858997.0,983339.0,1116365.0,1257507.0,1405979.0,1560739.0,1720710.0,1884770.0,2051643.0,2219862.0,2387945.0,2554487.0,2718035.0,2877293.0,3031189.0,3178862.0,3319575.0,3452639.0,3577527.0,3693764.0,3801029.0,3899062.0,3987636.0,4066571.0,4135819.0,4195367.0,4245060.0,4284678.0,4314033.0,4333043.0,4341569.0,4339442.0,4326430.0,4302420.0,4267364.0,4221244.0,4164016.0,4095762.0,4016677.0,3927110.0,3827546.0,3718665.0,3601290.0,3476331.0,3344925.0,3208236.0,3067488.0,2923881.0,2778714.0,2633206.0,2488514.0,2345746.0,2205963.0,2070070.0,1938845.0,1813051.0,1693295.0,1580007.0,1473433.0,1373791.0,1281116.0,1195267.0,1116060.0,1043282.0,976678.0,915835.0,860393.0,810005.0,764305.0,722848.0,685182.0,650919.0,619698.0,591205.0,565086.0,541050.0,518826.0,498172.0,478795.0,460396.0,442733.0,425643.0,408996.0,392637.0,376459.0,360396.0,344418.0,328451.0,312398.0,296199.0,279848.0,263322.0,246577.0,229566.0,212275.0,194752.0,176979.0,159028.0,140996.0,122954.0,104963.0,87068.0,69328.0,51738.0,34268.0,16997.0,-21.0,-16762.0,-33193.0,-49281.0,-64993.0,-80321.0,-95191.0,-109586.0,-123465.0,-136804.0,-149527.0,-161660.0,-173218.0,-184186.0,-194604.0,-204534.0,-214028.0,-222988.0,-231347.0,-239062.0,-246158.0,-252675.0,-258638.0,-264074.0,-269037.0,-273563.0,-277678.0,-281327.0,-284479.0,-287181.0,-289508.0,-291565.0,-293327.0,-294801.0,-296016.0,-297019.0,-297810.0,-298298.0,-298468.0,-298335.0,-298026.0,-297606.0,-297066.0,-296441.0,-295801.0,-295194.0,-294551.0,-293824.0,-293080.0,-292337.0,-291544.0,-290747.0,-290000.0,-289357.0,-288782.0,-288291.0,-287967.0,-287778.0,-287662.0,-287627.0,-287744.0,-288030.0,-288341.0,-288612.0,-288928.0,-289320.0,-289700.0,-289951.0,-290055.0,-290016.0,-289808.0,-289345.0,-288630.0,-287631.0,-286326.0,-284636.0,-282405.0,-279508.0,-275770.0,-271110.0,-265434.0,-258550.0,-250193.0,-240082.0,-227992.0,-213659.0,-196729.0,-176798.0,-153442.0,-126206.0,-94603.0,-58068.0,-16035.0,32067.0,86814.0,148841.0,218834.0,297484.0,385471.0,483410.0,591880.0,711344.0,842228.0,984907.0,1139662.0,1306686.0,1486004.0,1677622.0,1881368.0,2096920.0,2323726.0,2561088.0,2808167.0,3063923.0,3327150.0,3596526.0,3870735.0,4148446.0,4428433.0,4709444.0,4990236.0,5269448.0,5545758.0,5817955.0,6084872.0,6345431.0,6598712.0,6844059.0,7080978.0,7308954.0,7527535.0,7736407.0,7935233.0,8123666.0,8301400.0,8468245.0,8624000.0,8768299.0,8900810.0,9021220.0,9129205.0,9224351.0,9306158.0,9374274.0,9428365.0,9468132.0,9493165.0,9503124.0,9497798.0,9477007.0,9440614.0,9388524.0,9320816.0,9237693.0,9139529.0,9026897.0,8900576.0,8761464.0,8610572.0,8449018.0,8277961.0,8098554.0,7911922.0,7719338.0,7522134.0,7321637.0,7119169.0,6916043.0,6713609.0,6512996.0,6315281.0,6121448.0,5932373.0,5748736.0,5570997.0,5399657.0,5235096.0,5077574.0,4927208.0,4784095.0,4648385.0,4520036.0,4398881.0,4284639.0,4177039.0,4075757.0,3980413.0,3890676.0,3806250.0,3726863.0,3652193.0,3581913.0,3515701.0,3453264.0,3394306.0,3338491.0,3285461.0,3234995.0,3186922.0,3141057.0,3097188.0,3055168.0,3014970.0,2976427.0,2939372.0,2903647.0,2869117.0,2835636.0,2803089.0,2771449.0,2740621.0,2710488.0,2681024.0,2652278.0,2624168.0,2596527.0,2569225.0,2542255.0,2515571.0,2489043.0,2462650.0,2436485.0,2410606.0,2384918.0,2359344.0,2333943.0,2308700.0,2283512.0,2258298.0,2233065.0,2207787.0,2182374.0,2156786.0,2131036.0,2105040.0,2078716.0,2052011.0,2024924.0,1997421.0,1969385.0,1940749.0,1911461.0,1881441.0,1850577.0,1818783.0,1786086.0,1752563.0,1718232.0,1683129.0,1647254.0,1610736.0,1573654.0,1536057.0,1497974.0,1459458.0,1420622.0,1381513.0,1342232.0,1302935.0,1263821.0,1225024.0,1186644.0,1148666.0,1111082.0,1073936.0,1037296.0,1001243.0,965873.0,931308.0,897621.0,864777.0,832781.0,801671.0,771441.0,742078.0,713605.0,686111.0,659630.0,634124.0,609547.0,585889.0,563138.0,541208.0,520017.0,499501.0,479606.0,460318.0,441627.0,423574.0,406111.0,389252.0,372980.0,357216.0,341868.0,326877.0,312253.0,297924.0,283826.0,269979.0,256407.0,243064.0,229878.0,216806.0,203838.0,190968.0,178185.0,165521.0,152992.0,140676.0,128600.0,116760.0,105063.0,93494.0,82091.0,70865.0,59825.0,48955.0,38366.0,28038.0,17888.0,7868.0,-1987.0,-11641.0,-21163.0,-30478.0,-39434.0,-48082.0,-56533.0,-64827.0,-72843.0,-80572.0,-88132.0,-95503.0,-102613.0,-109425.0,-115933.0,-122172.0,-128131.0,-133781.0,-139092.0,-144027.0,-148558.0,-152658.0,-156230.0,-159189.0,-161379.0,-162710.0,-163206.0,-162837.0,-161536.0,-159152.0,-155674.0,-151098.0,-145316.0,-138216.0,-129710.0,-119830.0,-108514.0,-95682.0,-81369.0,-65615.0,-48529.0,-30180.0,-10689.0,9830.0,31301.0,53542.0,76318.0,99427.0,122708.0,146007.0,169064.0,191695.0,213783.0,235237.0,255905.0,275610.0,294246.0,311736.0,327980.0,342854.0,356224.0,367990.0,378046.0,386331.0,392852.0,397640.0,400795.0,402355.0,402410.0,401013.0,398240.0,394152.0,388797.0,382379.0,375146.0,367417.0,359412.0,351334.0,343451.0,335999.0,329246.0,323393.0,318780.0,315786.0,314761.0,315982.0,319697.0,326126.0,335491.0,347906.0,363397.0,381969.0,403632.0,428380.0,456019.0,486375.0,519276.0,554509.0,591707.0,630455.0,670353.0,710934.0,751695.0,792158.0,831893.0,870482.0,907526.0,942648.0,975525.0,1005791.0,1033154.0,1057366.0,1078217.0,1095588.0,1109360.0,1119508.0,1125997.0,1128879.0,1128251.0,1124162.0,1116723.0,1106075.0,1092412.0,1075822.0,1056371.0,1034238.0,1009613.0,982674.0,953489.0,922242.0,889198.0,854594.0,818641.0,781554.0,743694.0,705359.0,666796.0,628259.0,590017.0,552338.0,515375.0,479389.0,444618.0,411356.0,379796.0,350167.0,322710.0,297616.0,275102.0,255289.0,238355.0,224382.0,213475.0,205674.0,201073.0,199799.0,202032.0,207978.0,217986.0,232627.0,252628.0,279034.0,313420.0,358195.0,416605.0,492988.0,593214.0,725208.0,899458.0,1129651.0,1433520.0,1833712.0,2358763.0,3043724.0,3930824.0,5069934.0,6519163.0,8345054.0,10622041.0,13431597.0,16860684.0,21000176.0,25941926.0,31774094.0,38574988.0,46407068.0,55312772.0,65311116.0,76395376.0,88532544.0,101664640.0,115710928.0,130570584.0,146125136.0,162238528.0,178757072.0,195512336.0,212328176.0,229027072.0,245439376.0,261408768.0,276796480.0,291488096.0,305389376.0,318426752.0,330541472.0,341692992.0,351868608.0,361068384.0,369314176.0,376637024.0,383072448.0,388670432.0,393464256.0,397496544.0,400802304.0,403420864.0,405388000.0,406722208.0,407467104.0,407632512.0,407215168.0,406208768.0,404625600.0,402472288.0,399707712.0,396320672.0,392309792.0,387673984.0,382388096.0,376439328.0,369847040.0,362635488.0,354833056.0,346466080.0,337580352.0,328228640.0,318473152.0,308374688.0,298005792.0,287448736.0,276785536.0,266096304.0,255456928.0,244938416.0,234600912.0,224497312.0,214672656.0,205163568.0,195998768.0,187203104.0,178797904.0,170798688.0,163215808.0,156054512.0,149314976.0,142991312.0,137072352.0,131543088.0,126385840.0,121582120.0,117113256.0,112960344.0,109104152.0,105525248.0,102204272.0,99121680.0,96257488.0,93591680.0,91104736.0,88778336.0,86595512.0,84540944.0,82600520.0,80761280.0,79011456.0,77340536.0,75738920.0,74197536.0,72708024.0,71262824.0,69855208.0,68479368.0,67130568.0,65804760.0,64498472.0,63208872.0,61933780.0,60671336.0,59419912.0,58178240.0,56945184.0,55719744.0,54501472.0,53290348.0,52086360.0,50889336.0,49699628.0,48518116.0,47345556.0,46182520.0,45029680.0,43887904.0,42757968.0,41640656.0,40536964.0,39447896.0,38374376.0,37317520.0,36278844.0,35259916.0,34262192.0,33287202.0,32336700.0,31412604.0,30516884.0,29651676.0,28819216.0,28021880.0,27262282.0,26543280.0,25867686.0,25238220.0,24657556.0,24128260.0,23652600.0,23232548.0,22869628.0,22564688.0,22317804.0,22128464.0,21995600.0,21917412.0,21891464.0,21914764.0,21983768.0,22094252.0,22241334.0,22419498.0,22622558.0,22843970.0,23077266.0,23316144.0,23554568.0,23786652.0,24007088.0,24211108.0,24394312.0,24552652.0,24682314.0,24779984.0,24842816.0,24868440.0,24854950.0,24800836.0,24705152.0,24567398.0,24387280.0,24164602.0,23899386.0,23592108.0,23243652.0,22855204.0,22428360.0,21965168.0,21468012.0,20939422.0,20382032.0,19798720.0,19192580.0,18567036.0,17925852.0,17273118.0,16613020.0,15949758.0,15287514.0,14630259.0,13981633.0,13344751.0,12722432.0,12117141.0,11531104.0,10966285.0,10424354.0,9906683.0,9414246.0,8947634.0,8507098.0,8092502.0,7703329.0,7338787.0,6997902.0,6679671.0,6382970.0,6106603.0,5849311.0,5609887.0,5387169.0,5179952.0,4986969.0,4806968.0,4638826.0,4481489.0,4333951.0,4195290.0,4064720.0,3941562.0,3825187.0,3715003.0,3610526.0,3511341.0,3417084.0,3327389.0,3241958.0,3160563.0,3082986.0,3008962.0,2938262.0,2870756.0,2806269.0,2744536.0,2685284.0,2628306.0,2573406.0,2520258.0,2468530.0,2417981.0,2368387.0,2319481.0,2270948.0,2222543.0,2174086.0,2125383.0,2076315.0,2026860.0,1977032.0,1926817.0,1876139.0,1825042.0,1773567.0,1721724.0,1669513.0,1616995.0,1564345.0,1511622.0,1458814.0,1405873.0,1352801.0,1299607.0,1246232.0,1192658.0,1138926.0,1085159.0,1031415.0,977745.0,924212.0,870885.0,817860.0,765209.0,713097.0,661640.0,611010.0,561393.0,512949.0,465847.0,420150.0,376029.0,333529.0,292750.0,253731.0,216486.0,181045.0,147395.0,115599.0,85540.0,57132.0,30329.0,5087.0,-18706.0,-41224.0,-62453.0,-82387.0,-101126.0,-118810.0,-135529.0,-151270.0,-166163.0,-180297.0,-193697.0,-206306.0,-218101.0,-229146.0,-239409.0,-248887.0,-257589.0,-265553.0,-272727.0,-279037.0,-284456.0,-288995.0,-292646.0,-295340.0,-297105.0,-297925.0,-297747.0,-296524.0,-294264.0,-291017.0,-286748.0,-281485.0,-275382.0,-268556.0,-261010.0,-252771.0,-243983.0,-234803.0,-225278.0,-215490.0,-205669.0,-196025.0,-186660.0,-177650.0,-169119.0,-161147.0,-153729.0,-146884.0,-140660.0,-135110.0,-130254.0,-126133.0,-122812.0,-120323.0,-118651.0,-117783.0,-117700.0,-118402.0,-119851.0,-121988.0,-124820.0,-128294.0,-132411.0,-137173.0,-142587.0,-148598.0,-155128.0,-162194.0,-169752.0,-177653.0,-185741.0,-193976.0,-202354.0,-210753.0,-219101.0,-227331.0,-235374.0,-243113.0,-250448.0,-257296.0,-263598.0,-269348.0,-274577.0,-279262.0,-283331.0,-286803.0,-289711.0,-292073.0,-293854.0,-295077.0,-295824.0,-296192.0,-296231.0,-295957.0,-295422.0,-294733.0,-293986.0,-293216.0,-292410.0,-291544.0,-290683.0,-289882.0,-289197.0,-288649.0,-288292.0,-288218.0,-288449.0,-288936.0,-289679.0,-290673.0,-291983.0,-293668.0,-295708.0,-298072.0,-300723.0,-303703.0,-306950.0,-310396.0,-314069.0,-318089.0,-322427.0,-327026.0,-331820.0,-336815.0,-341984.0,-347240.0,-352570.0,-357875.0,-363128.0,-368221.0,-373132.0,-377853.0,-382298.0,-386417.0,-390097.0,-393240.0,-395721.0,-397388.0,-398140.0,-397849.0,-396454.0,-393999.0,-390453.0,-385751.0,-379815.0,-372607.0,-364127.0,-354337.0,-343253.0,-330974.0,-317631.0,-303422.0,-288550.0,-273181.0,-257465.0,-241519.0,-225534.0,-209720.0,-194258.0,-179312.0,-165008.0,-151567.0,-139090.0,-127604.0,-117121.0,-107666.0,-99349.0,-92182.0,-86230.0,-81566.0,-78213.0,-76153.0,-75314.0,-75684.0,-77247.0,-79889.0,-83545.0,-88223.0,-93965.0,-100721.0,-108343.0,-116803.0,-126075.0,-136061.0,-146584.0,-157482.0,-168684.0,-180013.0,-191264.0,-202170.0,-212496.0,-222006.0,-230497.0,-237750.0,-243464.0,-247347.0,-249070.0,-248303.0,-244506.0,-237077.0,-225397.0,-208815.0,-186563.0,-157598.0,-120729.0,-74514.0,-17114.0,53822.0,141216.0,248623.0,380382.0,541793.0,739148.0,979963.0,1273139.0,1629124.0,2060024.0,2579674.0,3203859.0,3950419.0,4839220.0,5891849.0,7131188.0,8580891.0,10264975.0,12207259.0,14430837.0,16957572.0,19807590.0,22998708.0,26546064.0,30461134.0,34750224.0,39412736.0,44440276.0,49816964.0,55519344.0,61517068.0,67774016.0,74249536.0,80899504.0,87676984.0,94532872.0,101415560.0,108270832.0,115043176.0,121678512.0,128126000.0,134339344.0,140278480.0,145910848.0,151212320.0,156165248.0,160756960.0,164978144.0,168822144.0,172285168.0,175365664.0,178064080.0,180381696.0,182320496.0,183882464.0,185068560.0,185877744.0,186306432.0,186349072.0,185999792.0,185253376.0,184106048.0,182555264.0,180600192.0,178242384.0,175486128.0,172339120.0,168812368.0,164921360.0,160687408.0,156138896.0,151310672.0,146242096.0,140976368.0,135559696.0,130039920.0,124464064.0,118877216.0,113321904.0,107838336.0,102464320.0,97235224.0,92182696.0,87333800.0,82710784.0,78330768.0,74205080.0,70339112.0,66733352.0,63384276.0,60285188.0,57427144.0,54799708.0,52391172.0,50188648.0,48178512.0,46346908.0,44679656.0,43162328.0,41780520.0,40520408.0,39369000.0,38314312.0,37345432.0,36452476.0,35626560.0,34859696.0,34144664.0,33474880.0,32844294.0,32247304.0,31678768.0,31134146.0,30609572.0,30101664.0,29607384.0,29123920.0,28648858.0,28180080.0,27715562.0,27253348.0,26791600.0,26328790.0,25863548.0,25394666.0,24921180.0,24442340.0,23957596.0,23466588.0,22969130.0,22465268.0,21955180.0,21439100.0,20917364.0,20390376.0,19858834.0,19323580.0,18785420.0,18245208.0,17703976.0,17162960.0,16623244.0,16085825.0,15551706.0,15021889.0,14497242.0,13978459.0,13466396.0,12961858.0,12465607.0,11978376.0,11500916.0,11033925.0,10577811.0,10132902.0,9699448.0,9277644.0,8867698.0,8469778.0,8084018.0,7710421.0,7349096.0,7000142.0,6663501.0,6339033.0,6026508.0,5725794.0,5436636.0,5158767.0,4891934.0,4635885.0,4390452.0,4155358.0,3930315.0,3715027.0,3509275.0,3312815.0,3125325.0,2946525.0,2776199.0,2614163.0,2460184.0,2313994.0,2175410.0,2044227.0,1920272.0,1803360.0,1693362.0,1590182.0,1493657.0,1403685.0,1320128.0,1242861.0,1171660.0,1106398.0,1047004.0,993396.0,945490.0,903154.0,866290.0,834723.0,808344.0,787063.0,770710.0,759109.0,752147.0,749837.0,752063.0,758609.0,769304.0,784017.0,802508.0,824384.0,849310.0,876934.0,906833.0,938483.0,971435.0,1005258.0,1039393.0,1073291.0,1106483.0,1138504.0,1168816.0,1196878.0,1222321.0,1244778.0,1263873.0,1279316.0,1290976.0,1298720.0,1302413.0,1302015.0,1297573.0,1289110.0,1276657.0,1260404.0,1240529.0,1217208.0,1190580.0,1160915.0,1128421.0,1093221.0,1055412.0,1015181.0,972763.0,928382.0,882226.0,834565.0,785706.0,735934.0,685466.0,634501.0,583312.0,532134.0,481236.0,430850.0,381252.0,332679.0,285341.0,239415.0,195037.0,152360.0,111502.0,72521.0,35461.0,389.0,-32657.0,-63724.0,-92848.0,-119985.0,-145125.0,-168320.0,-189672.0,-209198.0,-226969.0,-243050.0,-257478.0,-270216.0,-281175.0,-290363.0,-297687.0,-303075.0,-306401.0,-307614.0,-306556.0,-303030.0,-296925.0,-288147.0,-276575.0,-262030.0,-244443.0,-223827.0,-200111.0,-173247.0,-143308.0,-110418.0,-74691.0,-36181.0,4900.0,48297.0,93758.0,140962.0,189575.0,239225.0,289573.0,340193.0,390657.0,440590.0,489591.0,537257.0,583175.0,627044.0,668543.0,707304.0,742972.0,775175.0,803643.0,828150.0,848572.0,864803.0,876738.0,884347.0,887630.0,886644.0,881462.0,872230.0,859104.0,842250.0,821885.0,798216.0,771442.0,741787.0,709532.0,675101.0,638840.0,601066.0,562070.0,522178.0,481730.0,440971.0,400192.0,359676.0,319741.0,280676.0,242803.0,206345.0,171464.0,138347.0,107160.0,78063.0,51151.0,26541.0,4370.0,-15287.0,-32317.0,-46628.0,-58111.0,-66553.0,-71681.0,-73185.0,-70781.0,-64068.0,-52497.0,-35440.0,-12167.0,18329.0,57283.0,106089.0,166329.0,239863.0,328900.0,435805.0,563145.0,713741.0,890712.0,1097328.0,1336785.0,1612248.0,1926880.0,2283585.0,2684787.0,3132495.0,3628314.0,4173311.0,4767845.0,5411609.0,6103509.0,6841248.0,7621352.0,8439269.0,9289513.0,10165775.0,11061095.0,11968262.0,12879983.0,13788932.0,14687818.0,15569379.0,16426488.0,17252212.0,18040008.0,18784072.0,19479348.0,20121596.0,20707374.0,21234184.0,21700228.0,22104134.0,22444882.0,22721862.0,22934930.0,23084300.0,23170432.0,23193972.0,23155730.0,23056628.0,22897676.0,22680012.0,22404996.0,22074308.0,21690148.0,21255316.0,20773108.0,20247242.0,19681924.0,19081752.0,18451500.0,17796026.0,17120372.0,16429732.0,15729284.0,15024334.0,14320282.0,13622402.0,12935679.0,12264600.0,11613176.0,10984665.0,10381665.0,9806112.0,9259360.0,8742344.0,8255637.0,7799497.0,7373730.0,6977808.0,6610868.0,6271723.0,5958924.0,5670824.0,5405744.0,5161921.0,4937693.0,4731455.0,4541657.0,4366713.0,4205121.0,4055553.0,3916789.0,3787676.0,3667105.0,3554173.0,3448023.0,3347852.0,3252846.0,3162341.0,3075773.0,2992642.0,2912490.0,2834908.0,2759516.0,2685932.0,2613825.0,2542929.0,2473029.0,2403899.0,2335356.0,2267247.0,2199467.0,2131835.0,2064215.0,1996529.0,1928775.0,1860975.0,1793077.0,1725124.0,1657127.0,1589177.0,1521362.0,1453747.0,1386419.0,1319477.0,1253058.0,1187218.0,1121979.0,1057383.0,993541.0,930546.0,868439.0,807270.0,747119.0,688088.0,630179.0,573426.0,517943.0,463853.0,411120.0,359655.0,309514.0,260798.0,213487.0,167552.0,123050.0,80079.0,38643.0,-1337.0,-39887.0,-77085.0,-112952.0,-147453.0,-180568.0,-212317.0,-242797.0,-272053.0,-300100.0,-327022.0,-352853.0,-377646.0,-401338.0,-423931.0,-445490.0,-466048.0,-485703.0,-504453.0,-522361.0,-539428.0,-555665.0,-571121.0,-585780.0,-599701.0,-612946.0,-625567.0,-637542.0,-648876.0,-659627.0,-669846.0,-679565.0,-688805.0,-697594.0,-705948.0,-713912.0,-721568.0,-728849.0,-735704.0,-742181.0,-748348.0,-754218.0,-759686.0,-764837.0,-769690.0,-774277.0,-778588.0,-782620.0,-786402.0,-789910.0,-793210.0,-796290.0,-799202.0,-801984.0,-804684.0,-807312.0,-809853.0,-812331.0,-814717.0,-816990.0,-819114.0,-821088.0,-822925.0,-824705.0,-826459.0,-828228.0,-830015.0,-831829.0,-833699.0,-835648.0,-837726.0,-839871.0,-842022.0,-844160.0,-846302.0,-848351.0,-850160.0,-851752.0,-853279.0,-854831.0,-856283.0,-857565.0,-858711.0,-859738.0,-860588.0,-861174.0,-861513.0,-861516.0,-861135.0,-860343.0,-859072.0,-857149.0,-854402.0,-850762.0,-846093.0,-840064.0,-832214.0,-822195.0,-809589.0,-793823.0,-774011.0,-749211.0,-718472.0,-680636.0,-634299.0,-577877.0,-509663.0,-427739.0,-329873.0,-213626.0,-76470.0,84332.0,271620.0,488294.0,737079.0,1020564.0,1341119.0,1700764.0,2101096.0,2543304.0,3028071.0,3555490.0,4125128.0,4735956.0,5386204.0,6073150.0,6793353.0,7542713.0,8316531.0,9109636.0,9916666.0,10732262.0,11551082.0,12367875.0,13177458.0,13974702.0,14754498.0,15511920.0,16242369.0,16941658.0,17606156.0,18232776.0,18818984.0,19362776.0,19862530.0,20316892.0,20724636.0,21084716.0,21396340.0,21658900.0,21871956.0,22035290.0,22148864.0,22212868.0,22227536.0,22193228.0,22110590.0,21980548.0,21804384.0,21583720.0,21320488.0,21016992.0,20675776.0,20299572.0,19891276.0,19453808.0,18990396.0,18504412.0,17999400.0,17479040.0,16947148.0,16407591.0,15864075.0,15320141.0,14779019.0,14243552.0,13716100.0,13198820.0,12693635.0,12202253.0,11726165.0,11266598.0,10824667.0,10401132.0,9996448.0,9610767.0,9243981.0,8895766.0,8565602.0,8252834.0,7956834.0,7676896.0,7412319.0,7162434.0,6926527.0,6703900.0,6493706.0,6295092.0,6107163.0,5929015.0,5759824.0,5598766.0,5445266.0,5298698.0,5158503.0,5024144.0,4895168.0,4771162.0,4651616.0,4536187.0,4424462.0,4316069.0,4210640.0,4107939.0,4007704.0,3909664.0,3813629.0,3719483.0,3627135.0,3536471.0,3447368.0,3359676.0,3273310.0,3188245.0,3104432.0,3021720.0,2940034.0,2859404.0,2779854.0,2701349.0,2623889.0,2547515.0,2472201.0,2397880.0,2324512.0,2252110.0,2180628.0,2110081.0,2040524.0,1972004.0,1904581.0,1838273.0,1773099.0,1709003.0,1645970.0,1584027.0,1523179.0,1463448.0,1404827.0,1347336.0,1290999.0,1235835.0,1181877.0,1129137.0,1077629.0,1027367.0,978332.0,930503.0,883883.0,838384.0,793975.0,750651.0,708463.0,667424.0,627477.0,588648.0,550959.0,514360.0,478801.0,444230.0,410625.0,377927.0,346088.0,315196.0,285273.0,256277.0,228135.0,200885.0,174593.0,149254.0,124830.0,101361.0,78941.0,57625.0,37399.0,18247.0,219.0,-16536.0,-31882.0,-45727.0,-57960.0,-68377.0,-76745.0,-82932.0,-86862.0,-88343.0,-87125.0,-83041.0,-75971.0,-65762.0,-52158.0,-34996.0,-14175.0,10344.0,38560.0,70424.0,105817.0,144589.0,186572.0,231620.0,279600.0,330284.0,383329.0,438378.0,495063.0,553025.0,611906.0,671426.0,731284.0,791118.0,850578.0,909369.0,967194.0,1023668.0,1078498.0,1131467.0,1182372.0,1230910.0,1276736.0,1319641.0,1359507.0,1396212.0,1429558.0,1459302.0,1485334.0,1507537.0,1525761.0,1539853.0,1549763.0,1555545.0,1557135.0,1554556.0,1547804.0,1536988.0,1522234.0,1503696.0,1481641.0,1456266.0,1427813.0,1396541.0,1362717.0,1326629.0,1288505.0,1248656.0,1207413.0,1165051.0,1121783.0,1077873.0,1033633.0,989338.0,945185.0,901390.0,858222.0,815881.0,774515.0,734183.0,694942.0,656860.0,620026.0,584487.0,550247.0,517370.0,485929.0,455954.0,427380.0,400152.0,374285.0,349751.0,326479.0,304362.0,283304.0,263287.0,244187.0,225905.0,208379.0,191584.0,175532.0,160100.0,145263.0,130941.0,117086.0,103676.0,90607.0,77848.0,65359.0,53217.0,41435.0,29891.0,18586.0,7537.0,-3196.0,-13671.0,-23928.0,-33898.0,-43555.0,-52865.0,-61879.0,-70644.0,-79160.0,-87399.0,-95312.0,-102953.0,-110359.0,-117471.0,-124252.0,-130733.0,-136964.0,-142934.0,-148639.0,-154196.0,-159684.0,-165162.0,-170637.0,-176117.0,-181637.0,-187153.0,-192674.0,-198128.0,-203585.0,-209120.0,-214711.0,-220328.0,-225967.0,-231716.0,-237573.0,-243471.0,-249354.0,-255235.0,-261144.0,-267087.0,-272962.0,-278745.0,-284471.0,-290182.0,-295798.0,-301248.0,-306574.0,-311796.0,-316899.0,-321868.0,-326701.0,-331343.0,-335654.0,-339538.0,-342922.0,-345715.0,-347818.0,-349112.0,-349511.0,-348875.0,-347092.0,-343978.0,-339367.0,-333133.0,-325165.0,-315369.0,-303568.0,-289593.0,-273283.0,-254500.0,-233119.0,-209019.0,-182105.0,-152246.0,-119322.0,-83194.0,-43804.0,-1122.0,44884.0,94189.0,146727.0,202374.0,261124.0,322995.0,387974.0,455921.0,526720.0,600267.0,676398.0,754898.0,835500.0,917987.0,1002154.0,1087876.0,1175023.0,1263406.0,1352875.0,1443381.0,1534867.0,1627131.0,1719961.0,1813332.0,1907350.0,2002095.0,2097628.0,2194123.0,2291881.0,2391291.0,2492760.0,2596709.0,2703600.0,2813984.0,2928451.0,3047607.0,3172060.0,3302570.0,3439956.0,3585070.0,3738678.0,3901464.0,4073993.0,4256695.0,4449936.0,4653889.0,4868542.0,5093675.0,5328970.0,5573933.0,5827841.0,6089772.0,6358676.0,6633296.0,6912141.0,7193489.0,7475548.0,7756470.0,8034402.0,8307514.0,8574146.0,8832768.0,9081924.0,9320229.0,9546424.0,9759387.0,9958114.0,10141705.0,10309434.0,10460792.0,10595450.0,10713258.0,10814082.0,10897879.0,10964665.0,11014527.0,11047544.0,11063747.0,11063152.0,11045818.0,11011854.0,10961283.0,10894046.0,10810075.0,10709388.0,10592086.0,10458294.0,10308272.0,10142391.0,9961135.0,9765094.0,9554905.0,9331330.0,9095195.0,8847511.0,8589434.0,8322263.0,8047448.0,7766558.0,7481300.0,7193418.0,6904597.0,6616440.0,6330495.0,6048180.0,5770784.0,5499454.0,5235332.0,4979486.0,4732824.0,4496056.0,4269771.0,4054392.0,3850207.0,3657280.0,3475575.0,3305002.0,3145319.0,2996198.0,2857296.0,2728280.0,2608699.0,2498010.0,2395704.0,2301351.0,2214370.0,2134155.0,2060197.0,1992055.0,1929276.0,1871328.0,1817783.0,1768278.0,1722492.0,1680039.0,1640598.0,1603910.0,1569768.0,1537890.0,1507900.0,1479568.0,1452704.0,1427187.0,1402806.0,1379457.0,1357073.0,1335549.0,1314722.0,1294419.0,1274562.0,1255017.0,1235651.0,1216406.0,1197281.0,1178226.0,1159173.0,1140056.0,1120915.0,1101723.0,1082406.0,1062897.0,1043150.0,1023189.0,1002964.0,982416.0,961509.0,940283.0,918766.0,896975.0,874975.0,852820.0,830567.0,808197.0,785702.0,763023.0,740091.0,716952.0,693648.0,670210.0,646627.0,623003.0,599448.0,575954.0,552549.0,529201.0,505945.0,482716.0,459523.0,436442.0,413469.0,390660.0,368043.0,345721.0,323766.0,302199.0,281012.0,260174.0,239745.0,219728.0,200058.0,180684.0,161654.0,143085.0,124923.0,107148.0,89797.0,72940.0,56560.0,40609.0,25082.0,9968.0,-4753.0,-19094.0,-33069.0,-46695.0,-59902.0,-72586.0,-84801.0,-96630.0,-108066.0,-119049.0,-129590.0,-139752.0,-149466.0,-158738.0,-167620.0,-176152.0,-184234.0,-191810.0,-198954.0,-205592.0,-211679.0,-217167.0,-222147.0,-226650.0,-230586.0,-233916.0,-236587.0,-238657.0,-240163.0,-241100.0,-241484.0,-241364.0,-240780.0,-239753.0,-238290.0,-236437.0,-234208.0,-231616.0,-228715.0,-225529.0,-222088.0,-218444.0,-214712.0,-211010.0,-207403.0,-203894.0,-200549.0,-197449.0,-194674.0,-192247.0,-190186.0,-188572.0,-187454.0,-186874.0,-186806.0,-187287.0,-188408.0,-190207.0,-192700.0,-195795.0,-199486.0,-203732.0,-208519.0,-213831.0,-219584.0,-225757.0,-232332.0,-239387.0,-246859.0,-254694.0,-262837.0,-271258.0,-279894.0,-288596.0,-297286.0,-305809.0,-314080.0,-322055.0,-329704.0,-337035.0,-343941.0,-350377.0,-356284.0,-361583.0,-366140.0,-369734.0,-372295.0,-373892.0,-374631.0,-374558.0,-373729.0,-372289.0,-370373.0,-367978.0,-365020.0,-361540.0,-357674.0,-353534.0,-349093.0,-344423.0,-339703.0,-335048.0,-330434.0,-325830.0,-321366.0,-317123.0,-313114.0,-309280.0,-305671.0,-302366.0,-299395.0,-296770.0,-294503.0,-292689.0,-291350.0,-290455.0,-289947.0,-289797.0,-289988.0,-290527.0,-291421.0,-292700.0,-294404.0,-296626.0,-299379.0,-302551.0,-306001.0,-309669.0,-313517.0,-317440.0,-321354.0,-325248.0,-329169.0,-333089.0,-336941.0,-340679.0,-344286.0,-347677.0,-350812.0,-353671.0,-356295.0,-358634.0,-360664.0,-362471.0,-364142.0,-365689.0,-367070.0,-368302.0,-369375.0,-370264.0,-370928.0,-371449.0,-371840.0,-372161.0,-372408.0,-372640.0,-372877.0,-373049.0,-373165.0,-373223.0,-373341.0,-373475.0,-373585.0,-373657.0,-373699.0,-373720.0,-373690.0,-373675.0,-373678.0,-373684.0,-373719.0,-373821.0,-373971.0,-374127.0,-374363.0,-374758.0,-375297.0,-375885.0,-376563.0,-377367.0,-378264.0,-379146.0,-379974.0,-380811.0,-381676.0,-382589.0,-383531.0,-384542.0,-385624.0,-386689.0,-387634.0,-388453.0,-389170.0,-389782.0,-390259.0,-390616.0,-390873.0,-390990.0,-390957.0,-390781.0,-390463.0,-390074.0,-389613.0,-389014.0,-388213.0,-387227.0,-386157.0,-385011.0,-383791.0,-382510.0,-381143.0,-379655.0,-377956.0,-376010.0,-373825.0,-371462.0,-368995.0,-366432.0,-363793.0,-361035.0,-358155.0,-355136.0,-351998.0,-348788.0,-345536.0,-342296.0,-339072.0,-335852.0,-332631.0,-329399.0,-326136.0,-322799.0,-319388.0,-315929.0,-312444.0,-308866.0,-305214.0,-301567.0,-297937.0,-294299.0,-290533.0,-286663.0,-282652.0,-278446.0,-274008.0,-269326.0,-264415.0,-259202.0,-253468.0,-247013.0,-239592.0,-230967.0,-220791.0,-208653.0,-194119.0,-176614.0,-155446.0,-129771.0,-98692.0,-61255.0,-16469.0,36698.0,99228.0,172127.0,256279.0,352376.0,460868.0,581945.0,715560.0,861155.0,1017815.0,1184316.0,1359090.0,1540172.0,1725332.0,1912354.0,2098998.0,2283015.0,2462254.0,2634892.0,2799307.0,2954120.0,3098200.0,3230825.0,3351540.0,3460127.0,3556607.0,3641078.0,3713748.0,3774735.0,3824302.0,3862614.0,3889769.0,3905848.0,3910943.0,3905165.0,3888587.0,3861361.0,3823825.0,3776504.0,3720077.0,3655424.0,3583630.0,3506020.0,3424037.0,3339202.0,3253046.0,3167147.0,3082969.0,3001852.0,2924953.0,2853386.0,2788138.0,2730088.0,2680036.0,2638816.0,2607238.0,2586077.0,2576169.0,2578354.0,2593603.0,2622969.0,2667652.0,2728818.0,2807448.0,2904502.0,3020754.0,3156622.0,3312005.0,3486325.0,3678626.0,3887407.0,4110579.0,4345554.0,4589268.0,4838388.0,5089337.0,5338456.0,5582159.0,5817036.0,6040209.0,6249202.0,6442155.0,6617615.0,6774661.0,6912845.0,7032006.0,7132360.0,7214224.0,7278151.0,7324626.0,7354091.0,7366928.0,7363313.0,7343391.0,7307183.0,7254759.0,7186205.0,7101753.0,7001860.0,6887181.0,6758588.0,6617326.0,6464862.0,6302823.0,6132998.0,5957340.0,5777943.0,5596792.0,5415868.0,5237126.0,5062413.0,4893328.0,4731161.0,4576932.0,4431409.0,4295089.0,4168157.0,4050560.0,3942156.0,3842709.0,3751830.0,3668970.0,3593669.0,3525529.0,3464073.0,3408796.0,3359264.0,3315140.0,3276074.0,3241709.0,3211751.0,3185955.0,3164203.0,3146389.0,3132399.0,3122129.0,3115532.0,3112632.0,3113362.0,3117654.0,3125424.0,3136571.0,3150912.0,3168221.0,3188309.0,3210996.0,3236070.0,3263269.0,3292349.0,3323080.0,3355260.0,3388709.0,3423326.0,3459080.0,3496002.0,3534264.0,3574060.0,3615600.0,3659016.0,3704576.0,3752625.0,3803400.0,3857009.0,3913452.0,3972856.0,4035267.0,4100724.0,4169288.0,4241079.0,4316266.0,4394945.0,4477278.0,4563350.0,4653204.0,4746886.0,4844473.0,4946007.0,5051492.0,5160884.0,5274169.0,5391218.0,5511833.0,5635834.0,5762893.0,5892564.0,6024252.0,6157397.0,6291457.0,6425723.0,6559430.0,6691804.0,6822116.0,6949628.0,7073563.0,7193231.0,7307946.0,7417058.0,7519946.0,7616035.0,7704746.0,7785622.0,7858335.0,7922707.0,7978568.0,8025793.0,8064356.0,8094205.0,8115357.0,8127774.0,8131420.0,8126335.0,8112602.0,8090299.0,8059404.0,8019946.0,7972009.0,7915602.0,7850703.0,7777357.0,7695681.0,7605767.0,7507703.0,7401585.0,7287478.0,7165470.0,7035688.0,6898301.0,6753498.0,6601547.0,6442820.0,6277693.0,6106614.0,5930053.0,5748578.0,5562857.0,5373586.0,5181519.0,4987350.0,4791892.0,4595978.0,4400411.0,4206029.0,4013617.0,3824042.0,3638044.0,3456280.0,3279292.0,3107536.0,2941498.0,2781563.0,2628026.0,2481040.0,2340748.0,2207190.0,2080392.0,1960235.0,1846593.0,1739317.0,1638216.0,1543151.0,1453800.0,1369886.0,1291064.0,1217109.0,1147761.0,1082670.0,1021538.0,964073.0,910013.0,858995.0,810752.0,765050.0,721687.0,680418.0,641019.0,603389.0,567359.0,532769.0,499415.0,467183.0,435951.0,405508.0,375752.0,346665.0,318226.0,290297.0,262832.0,235873.0,209368.0,183114.0,157025.0,131179.0,105588.0,80153.0,54874.0,29883.0,5248.0,-19075.0,-43074.0,-66606.0,-89495.0,-111579.0,-132579.0,-152161.0,-170007.0,-185882.0,-199657.0,-211207.0,-220488.0,-227495.0,-232300.0,-235074.0,-236063.0,-235735.0,-234638.0,-233394.0,-232617.0,-232903.0,-234764.0,-238501.0,-244276.0,-252138.0,-262013.0,-273692.0,-286915.0,-301488.0,-317292.0,-334176.0,-351994.0,-370626.0,-390094.0,-410337.0,-431265.0,-452815.0,-474990.0,-497829.0,-521219.0,-545041.0,-569157.0,-593445.0,-617803.0,-642089.0,-666129.0,-689761.0,-712909.0,-735483.0,-757334.0,-778387.0,-798687.0,-818289.0,-837139.0,-855210.0,-872559.0,-889156.0,-904928.0,-919864.0,-934057.0,-947654.0,-960683.0,-973159.0,-985050.0,-996334.0,-1007021.0,-1017068.0,-1026420.0,-1035042.0,-1042998.0,-1050346.0,-1057080.0,-1063179.0,-1068687.0,-1073643.0,-1078103.0,-1082096.0,-1085651.0,-1088796.0,-1091600.0,-1094179.0,-1096539.0,-1098638.0,-1100495.0,-1102084.0,-1103332.0,-1104188.0,-1104686.0,-1104848.0,-1104634.0,-1104100.0,-1103346.0,-1102375.0,-1101157.0,-1099723.0,-1098124.0,-1096371.0,-1094448.0,-1092443.0,-1090443.0,-1088517.0,-1086616.0,-1084734.0,-1082906.0,-1081174.0,-1079501.0,-1077811.0,-1076134.0,-1074455.0,-1072701.0,-1070782.0,-1068715.0,-1066547.0,-1064294.0,-1061928.0,-1059459.0,-1056857.0,-1054136.0,-1051295.0,-1048330.0,-1045249.0,-1042059.0,-1038795.0,-1035399.0,-1031873.0,-1028289.0,-1024719.0,-1021201.0,-1017697.0,-1014253.0,-1010848.0,-1007437.0,-1004001.0,-1000513.0,-997004.0,-993443.0,-989841.0,-986181.0,-982474.0,-978741.0,-974927.0,-970993.0,-966933.0,-962805.0,-958606.0,-954338.0,-950065.0,-945808.0,-941575.0,-937364.0,-933182.0,-928998.0,-924791.0,-920585.0,-916426.0,-912284.0,-908130.0,-903999.0,-899874.0,-895764.0,-891630.0,-887498.0,-883369.0,-879185.0,-874981.0,-870700.0,-866319.0,-861817.0,-857237.0,-852561.0,-847737.0,-842790.0,-837742.0,-832549.0,-827214.0,-821853.0,-816596.0,-811472.0,-806450.0,-801553.0,-796748.0,-792009.0,-787269.0,-782525.0,-777809.0,-773135.0,-768461.0,-763669.0,-758720.0,-753627.0,-748395.0,-742905.0,-737094.0,-731039.0,-724758.0,-718163.0,-711125.0,-703661.0,-695809.0,-687525.0,-678770.0,-669604.0,-660127.0,-650420.0,-640486.0,-630320.0,-620024.0,-609669.0,-599283.0,-588845.0,-578407.0,-567997.0,-557506.0,-546760.0,-535591.0,-523764.0,-510980.0,-496904.0,-481216.0,-463606.0,-443822.0,-421608.0,-396608.0,-368501.0,-337014.0,-302008.0,-263311.0,-220944.0,-175137.0,-126297.0,-74838.0,-21214.0,33994.0,90181.0,146675.0,202861.0,258021.0,311555.0,362936.0,411658.0,457319.0,499561.0,538236.0,573281.0,604703.0,632537.0,656851.0,677841.0,695698.0,710575.0,722620.0,732018.0,738932.0,743510.0,745909.0,746261.0,744564.0,740823.0,735127.0,727582.0,718126.0,706642.0,693103.0,677555.0,660034.0,640440.0,618816.0,595276.0,570024.0,543212.0,514990.0,485617.0,455334.0,424356.0,392870.0,361126.0,329416.0,297971.0,267005.0,236771.0,207429.0,179067.0,151718.0,125495.0,100439.0,76583.0,54002.0,32726.0,12738.0,-6068.0,-23702.0,-40268.0,-55906.0,-70707.0,-84706.0,-97928.0,-110446.0,-122312.0,-133511.0,-144041.0,-153993.0,-163486.0,-172575.0,-181225.0,-189441.0,-197310.0,-204867.0,-212150.0,-219187.0,-226016.0,-232665.0,-239115.0,-245394.0,-251441.0,-257262.0,-262865.0,-268317.0,-273644.0,-278838.0,-283933.0,-288920.0,-293843.0,-298669.0,-303385.0,-307921.0,-312272.0,-316462.0,-320532.0,-324554.0,-328564.0,-332629.0,-336758.0,-340944.0,-345111.0,-349214.0,-353239.0,-357224.0,-361156.0,-365084.0,-369056.0,-373117.0,-377200.0,-381182.0,-385015.0,-388692.0,-392251.0,-395660.0,-398930.0,-402114.0,-405238.0,-408264.0,-411123.0,-413770.0,-416200.0,-418430.0,-420500.0,-422403.0,-424133.0,-425725.0,-427253.0,-428667.0,-429882.0,-430882.0,-431749.0,-432525.0,-433185.0,-433736.0,-434261.0,-434760.0,-435155.0,-435373.0,-435429.0,-435391.0,-435272.0,-435104.0,-434819.0,-434414.0,-433858.0,-433191.0,-432391.0,-431442.0,-430365.0,-429133.0,-427758.0,-426230.0,-424554.0,-422695.0,-420643.0,-418447.0,-416146.0,-413772.0,-411342.0,-408921.0,-406581.0,-404358.0,-402205.0,-400049.0,-397876.0,-395677.0,-393480.0,-391297.0,-389185.0,-387199.0,-385361.0,-383651.0,-382045.0,-380543.0,-379125.0,-377695.0,-376187.0,-374607.0,-372987.0,-371331.0,-369626.0,-367903.0,-366192.0,-364469.0,-362688.0,-360833.0,-358918.0,-356953.0,-354933.0,-352862.0,-350781.0,-348712.0,-346678.0,-344674.0,-342718.0,-340832.0,-338932.0,-336901.0,-334634.0,-332099.0,-329154.0,-325529.0,-320909.0,-314987.0,-307367.0,-297499.0,-284771.0,-268462.0,-247726.0,-221496.0,-188458.0,-147132.0,-95934.0,-33181.0,43036.0,134763.0,243970.0,372592.0,522466.0,695292.0,892372.0,1114706.0,1362882.0,1636975.0,1936468.0,2260188.0,2606377.0,2972578.0,3355732.0,3752326.0,4158523.0,4570187.0,4983068.0,5392831.0,5795297.0,6186439.0,6562546.0,6920302.0,7256802.0,7569776.0,7857519.0,8118832.0,8352934.0,8559584.0,8739039.0,8891802.0,9018570.0,9120301.0,9198161.0,9253304.0,9286694.0,9299256.0,9291888.0,9265379.0,9220324.0,9157232.0,9076604.0,8978839.0,8864264.0,8733231.0,8586268.0,8424022.0,8247224.0,8056879.0,7854235.0,7640742.0,7417832.0,7186977.0,6949936.0,6708553.0,6464680.0,6220033.0,5976395.0,5735617.0,5499355.0,5269102.0,5046193.0,4831820.0,4627020.0,4432570.0,4249099.0,4077072.0,3916853.0,3768792.0,3633103.0,3509942.0,3399369.0,3301331.0,3215734.0,3142414.0,3081166.0,3031656.0,2993475.0,2966198.0,2949338.0,2942300.0,2944439.0,2955046.0,2973396.0,2998669.0,3029945.0,3066238.0,3106557.0,3149968.0,3195473.0,3242086.0,3288894.0,3335120.0,3380017.0,3422804.0,3462799.0,3499442.0,3532282.0,3560898.0,3584970.0,3604311.0,3618815.0,3628392.0,3632960.0,3632497.0,3626996.0,3616494.0,3601029.0,3580651.0,3555430.0,3525411.0,3490705.0,3451404.0,3407605.0,3359411.0,3306927.0,3250366.0,3189910.0,3125794.0,3058239.0,2987524.0,2913998.0,2837968.0,2759713.0,2679476.0,2597584.0,2514418.0,2430337.0,2345652.0,2260701.0,2175883.0,2091540.0,2007881.0,1925058.0,1843288.0,1762833.0,1683936.0,1606762.0,1531485.0,1458251.0,1387141.0,1318240.0,1251577.0,1187187.0,1125091.0,1065332.0,1008026.0,953170.0,900725.0,850628.0,802853.0,757433.0,714274.0,673225.0,634166.0,597098.0,562020.0,528749.0,497093.0,467040.0,438618.0,411717.0,386210.0,362014.0,339107.0,317352.0,296638.0,276912.0,258035.0,239939.0,222567.0,205922.0,189916.0,174480.0,159637.0,145396.0,131700.0,118442.0,105561.0,93030.0,80872.0,69119.0,57787.0,46839.0,36247.0,25975.0,15965.0,6108.0,-3640.0,-13213.0,-22559.0,-31678.0,-40637.0,-49420.0,-58016.0,-66482.0,-74882.0,-83191.0,-91325.0,-99249.0,-106979.0,-114549.0,-121935.0,-129149.0,-136253.0,-143339.0,-150395.0,-157256.0,-163931.0,-170490.0,-176958.0,-183224.0,-189263.0,-195221.0,-201112.0,-206921.0,-212609.0,-218206.0,-223720.0,-229110.0,-234330.0,-239357.0,-244214.0,-248960.0,-253677.0,-258371.0,-263025.0,-267587.0,-272022.0,-276323.0,-280461.0,-284436.0,-288258.0,-291954.0,-295538.0,-298987.0,-302228.0,-305251.0,-308098.0,-310797.0,-313390.0,-315894.0,-318344.0,-320685.0,-322926.0,-325072.0,-327093.0,-328956.0,-330681.0,-332349.0,-333903.0,-335362.0,-336729.0,-338062.0,-339337.0,-340533.0,-341707.0,-342880.0,-344039.0,-345133.0,-346159.0,-347202.0,-348271.0,-349303.0,-350288.0,-351256.0,-352265.0,-353255.0,-354232.0,-355226.0,-356237.0,-357224.0,-358144.0,-358975.0,-359745.0,-360473.0,-361189.0,-361926.0,-362711.0,-363570.0,-364467.0,-365359.0,-366236.0,-367126.0,-368061.0,-369030.0,-369959.0,-370865.0,-371809.0,-372829.0,-373880.0,-374917.0,-376032.0,-377262.0,-378558.0,-379849.0,-381159.0,-382538.0,-383915.0,-385277.0,-386641.0,-388055.0,-389474.0,-390893.0,-392346.0,-393826.0,-395329.0,-396823.0,-398301.0,-399726.0,-401120.0,-402501.0,-403889.0,-405255.0,-406615.0,-407951.0,-409309.0,-410678.0,-412033.0,-413358.0,-414646.0,-415980.0,-417301.0,-418615.0,-419914.0,-421241.0,-422596.0,-423914.0,-425206.0,-426475.0,-427707.0,-428858.0,-429957.0,-431010.0,-432047.0,-433046.0,-434038.0,-435020.0,-435931.0,-436797.0,-437587.0,-438301.0,-438902.0,-439429.0,-439950.0,-440478.0,-441025.0,-441552.0,-442049.0,-442512.0,-442920.0,-443296.0,-443567.0,-443716.0,-443683.0,-443496.0,-443175.0,-442658.0,-441965.0,-441178.0,-440336.0,-439335.0,-438052.0,-436494.0,-434707.0,-432637.0,-430305.0,-427747.0,-425056.0,-422201.0,-419092.0,-415639.0,-411791.0,-407593.0,-403053.0,-398192.0,-393024.0,-387626.0,-382044.0,-376271.0,-370298.0,-364117.0,-357793.0,-351360.0,-344875.0,-338356.0,-331839.0,-325389.0,-319021.0,-312753.0,-306566.0,-300508.0,-294582.0,-288779.0,-283132.0,-277717.0,-272656.0,-267931.0,-263488.0,-259304.0,-255406.0,-251779.0,-248370.0,-245221.0,-242410.0,-239968.0,-237876.0,-236090.0,-234579.0,-233277.0,-232120.0,-231138.0,-230399.0,-229954.0,-229694.0,-229593.0,-229705.0,-230045.0,-230526.0,-231103.0,-231855.0,-232786.0,-233907.0,-235292.0,-236976.0,-238880.0,-240922.0,-243148.0,-245563.0,-248035.0,-250518.0,-253090.0,-255848.0,-258766.0,-261778.0,-264881.0,-268097.0,-271380.0,-274673.0,-277933.0,-281182.0,-284458.0,-287765.0,-291105.0,-294486.0,-297859.0,-301164.0,-304399.0,-307547.0,-310571.0,-313446.0,-316287.0,-319101.0,-321828.0,-324418.0,-326927.0,-329394.0,-331787.0,-334151.0,-336474.0,-338708.0,-340822.0,-342847.0,-344797.0,-346619.0,-348296.0,-349925.0,-351556.0,-353129.0,-354608.0,-356012.0,-357384.0,-358697.0,-359909.0,-361087.0,-362310.0,-363597.0,-364887.0,-366098.0,-367235.0,-368264.0,-369156.0,-369917.0,-370660.0,-371470.0,-372314.0,-373108.0,-373792.0,-374407.0,-374960.0,-375419.0,-375786.0,-376191.0,-376710.0,-377272.0,-377741.0,-378103.0,-378421.0,-378681.0,-378916.0,-379131.0,-379367.0,-379624.0,-379868.0,-380091.0,-380252.0,-380374.0,-380476.0,-380633.0,-380867.0,-381137.0,-381362.0,-381574.0,-381831.0,-382106.0,-382344.0,-382555.0,-382775.0,-382963.0,-383093.0,-383236.0,-383473.0,-383741.0,-384060.0,-384471.0,-385001.0,-385522.0,-385990.0,-386526.0,-387179.0,-387919.0,-388690.0,-389524.0,-390397.0,-391272.0,-392110.0,-392905.0,-393673.0,-394430.0,-395248.0,-396162.0,-397167.0,-398191.0,-399213.0,-400277.0,-401407.0,-402524.0,-403557.0,-404551.0,-405558.0,-406582.0,-407551.0,-408479.0,-409405.0,-410422.0,-411526.0,-412607.0,-413606.0,-414529.0,-415475.0,-416376.0,-417156.0,-417876.0,-418597.0,-419379.0,-420174.0,-420962.0,-421777.0,-422593.0,-423414.0,-424207.0,-424964.0,-425717.0,-426450.0,-427146.0,-427784.0,-428342.0,-428832.0,-429278.0,-429690.0,-430086.0,-430469.0,-430882.0,-431313.0,-431710.0,-432120.0,-432537.0,-432943.0,-433255.0,-433508.0,-433759.0,-434003.0,-434246.0,-434521.0,-434862.0,-435234.0,-435564.0,-435851.0,-436118.0,-436383.0,-436617.0,-436763.0,-436861.0,-436913.0,-436938.0,-436933.0,-436948.0,-436993.0,-437028.0,-437060.0,-437072.0,-437016.0,-436878.0,-436735.0,-436638.0,-436533.0,-436401.0,-436286.0,-436209.0,-436164.0,-436143.0,-436144.0,-436092.0,-435999.0,-435895.0,-435765.0,-435564.0,-435328.0,-435153.0,-435008.0,-434844.0,-434629.0,-434372.0,-434051.0,-433662.0,-433296.0,-432931.0,-432576.0,-432249.0,-431974.0,-431719.0,-431374.0,-430995.0,-430629.0,-430258.0,-429844.0,-429416.0,-429033.0,-428680.0,-428319.0,-427964.0,-427610.0,-427205.0,-426736.0,-426211.0,-425619.0,-424982.0,-424380.0,-423885.0,-423480.0,-423108.0,-422747.0,-422368.0,-421906.0,-421353.0,-420761.0,-420222.0,-419744.0,-419277.0,-418770.0,-418203.0,-417582.0,-416891.0,-416183.0,-415496.0,-414870.0,-414343.0,-413896.0,-413524.0,-413166.0,-412850.0,-412604.0,-412394.0,-412166.0,-411852.0,-411449.0,-411012.0,-410602.0,-410228.0,-409880.0,-409556.0,-409259.0,-408963.0,-408641.0,-408324.0,-408024.0,-407773.0,-407612.0,-407526.0,-407482.0,-407421.0,-407330.0,-407238.0,-407185.0,-407214.0,-407311.0,-407450.0,-407688.0,-407990.0,-408313.0,-408596.0,-408834.0,-409052.0,-409209.0,-409325.0,-409404.0,-409520.0,-409743.0,-410043.0,-410358.0,-410640.0,-410935.0,-411231.0,-411482.0,-411694.0,-411892.0,-412107.0,-412282.0,-412377.0,-412423.0,-412436.0,-412459.0,-412498.0,-412570.0,-412622.0,-412632.0,-412613.0,-412596.0,-412540.0,-412424.0,-412269.0,-412013.0,-411648.0,-411174.0,-410685.0,-410184.0,-409710.0,-409305.0,-408970.0,-408674.0,-408319.0,-407875.0,-407324.0,-406700.0,-405983.0,-405160.0,-404289.0,-403418.0,-402512.0,-401527.0,-400525.0,-399559.0,-398591.0,-397562.0,-396504.0,-395439.0,-394379.0,-393274.0,-392115.0,-390942.0,-389762.0,-388625.0,-387485.0,-386369.0,-385297.0,-384265.0,-383296.0,-382314.0,-381297.0,-380281.0,-379315.0,-378422.0,-377521.0,-376575.0,-375625.0,-374654.0,-373628.0,-372578.0,-371566.0,-370650.0,-369754.0,-368865.0,-368033.0,-367264.0,-366550.0,-365878.0,-365304.0,-364806.0,-364290.0,-363643.0,-362890.0,-362072.0,-361223.0,-360351.0,-359529.0,-358867.0,-358358.0,-357976.0,-357633.0,-357318.0,-357003.0,-356688.0,-356393.0,-356117.0,-355883.0,-355719.0,-355623.0,-355524.0,-355402.0,-355267.0,-355170.0,-355102.0,-355055.0,-355045.0,-355083.0,-355157.0,-355253.0,-355354.0,-355448.0,-355517.0,-355536.0,-355530.0,-355558.0,-355633.0,-355744.0,-355917.0,-356142.0,-356406.0,-356655.0,-356905.0,-357189.0,-357446.0,-357719.0,-358040.0,-358438.0,-358835.0,-359162.0,-359464.0,-359748.0,-360011.0,-360263.0,-360587.0,-361039.0,-361541.0,-362050.0,-362514.0,-362918.0,-363197.0,-363302.0,-363339.0,-363370.0,-363430.0,-363504.0,-363600.0,-363797.0,-364041.0,-364272.0,-364455.0,-364581.0,-364741.0,-364949.0,-365215.0,-365495.0,-365742.0,-365952.0,-366086.0,-366102.0,-366023.0,-365885.0,-365737.0,-365586.0,-365378.0,-365119.0,-364800.0,-364512.0,-364314.0,-364196.0,-364104.0,-364000.0,-363863.0,-363675.0,-363432.0,-363178.0,-362919.0,-362589.0,-362235.0,-361889.0,-361552.0,-361159.0,-360771.0,-360481.0,-360284.0,-360089.0,-359854.0,-359594.0,-359295.0,-358956.0,-358561.0,-358178.0,-357846.0,-357583.0,-357370.0,-357164.0,-356970.0,-356773.0,-356601.0,-356461.0,-356373.0,-356360.0,-356399.0,-356449.0,-356458.0,-356403.0,-356315.0,-356213.0,-356115.0,-356016.0,-355908.0,-355852.0,-355871.0,-355954.0,-356089.0,-356233.0,-356422.0,-356611.0,-356797.0,-357054.0,-357396.0,-357836.0,-358275.0,-358690.0,-359087.0,-359435.0,-359804.0,-360185.0,-360580.0,-360939.0,-361298.0,-361714.0,-362115.0,-362486.0,-362857.0,-363353.0,-363932.0,-364511.0,-365076.0,-365634.0,-366203.0,-366713.0,-367164.0,-367584.0,-367969.0,-368379.0,-368805.0,-369276.0,-369777.0,-370309.0,-370898.0,-371501.0,-372099.0,-372652.0,-373118.0,-373488.0,-373827.0,-374203.0,-374597.0,-374970.0,-375384.0,-375866.0,-376369.0,-376804.0,-377184.0,-377528.0,-377824.0,-378024.0,-378184.0,-378378.0,-378626.0,-378895.0,-379161.0,-379453.0,-379715.0,-379896.0,-379918.0,-379904.0,-379916.0,-379989.0,-380056.0,-380095.0,-380195.0,-380302.0,-380354.0,-380307.0,-380227.0,-380147.0,-380023.0,-379856.0,-379662.0,-379430.0,-379124.0,-378738.0,-378296.0,-377786.0,-377210.0,-376562.0,-375855.0,-375101.0,-374348.0,-373649.0,-373004.0,-372375.0,-371733.0,-371060.0,-370322.0,-369499.0,-368602.0,-367644.0,-366600.0,-365451.0,-364197.0,-362859.0,-361450.0,-360036.0,-358648.0,-357302.0,-355956.0,-354574.0,-353099.0,-351496.0,-349810.0,-348079.0,-346357.0,-344661.0,-343032.0,-341456.0,-339903.0,-338351.0,-336776.0,-335158.0,-333514.0,-331859.0,-330211.0,-328571.0,-326996.0,-325516.0,-324093.0,-322716.0,-321336.0,-319937.0,-318495.0,-317034.0,-315603.0,-314210.0,-312891.0,-311681.0,-310545.0,-309449.0,-308382.0,-307357.0,-306324.0,-305220.0,-304095.0,-302993.0,-301938.0,-300929.0,-300000.0,-299184.0,-298513.0,-297970.0,-297512.0,-297052.0,-296619.0,-296275.0,-296004.0,-295759.0,-295477.0,-295219.0,-294999.0,-294865.0,-294829.0,-294884.0,-295029.0,-295251.0,-295601.0,-295999.0,-296397.0,-296806.0,-297345.0,-298046.0,-298801.0,-299570.0,-300377.0,-301250.0,-302122.0,-302990.0,-303861.0,-304779.0,-305712.0,-306621.0,-307486.0,-308296.0,-309134.0,-310005.0,-310901.0,-311850.0,-312898.0,-314036.0,-315197.0,-316350.0,-317513.0,-318613.0,-319598.0,-320516.0,-321457.0,-322479.0,-323539.0,-324665.0,-325857.0,-327109.0,-328372.0,-329597.0,-330783.0,-331958.0,-333138.0,-334317.0,-335421.0,-336453.0,-337430.0,-338354.0,-339253.0,-340091.0,-340936.0,-341771.0,-342605.0,-343465.0,-344369.0,-345314.0,-346217.0,-347031.0,-347777.0,-348434.0,-348989.0,-349465.0,-349960.0,-350540.0,-351187.0,-351875.0,-352557.0,-353188.0,-353722.0,-354160.0,-354534.0,-354895.0,-355283.0,-355712.0,-356159.0,-356602.0,-357014.0,-357411.0,-357834.0,-358277.0,-358720.0,-359145.0,-359595.0,-360078.0,-360536.0,-360974.0,-361443.0,-362007.0,-362634.0,-363250.0,-363876.0,-364572.0,-365330.0,-366112.0,-366914.0,-367776.0,-368693.0,-369651.0,-370675.0,-371824.0,-373079.0,-374400.0,-375697.0,-376946.0,-378217.0,-379530.0,-380916.0,-382350.0,-383924.0,-385684.0,-387542.0,-389387.0,-391215.0,-393116.0,-395115.0,-397136.0,-399227.0,-401506.0,-403967.0,-406533.0,-409172.0,-411919.0,-414754.0,-417588.0,-420426.0,-423320.0,-426302.0,-429426.0,-432682.0,-436061.0,-439514.0,-443007.0,-446587.0,-450298.0,-454189.0,-458230.0,-462414.0,-466753.0,-471158.0,-475540.0,-479912.0,-484379.0,-488988.0,-493695.0,-498482.0,-503296.0,-508129.0,-512953.0,-517808.0,-522702.0,-527692.0,-532816.0,-538009.0,-543231.0,-548489.0,-553862.0,-559349.0,-564950.0,-570638.0,-576411.0,-582206.0,-588009.0,-593830.0,-599644.0,-605478.0,-611397.0,-617441.0,-623528.0,-629556.0,-635566.0,-641644.0,-647753.0,-653857.0,-659993.0,-666195.0,-672431.0,-678617.0,-684768.0,-690895.0,-696988.0,-703146.0,-709415.0,-715771.0,-722111.0,-728371.0,-734602.0,-740814.0,-747006.0,-753198.0,-759417.0,-765689.0,-771973.0,-778211.0,-784405.0,-790521.0,-796549.0,-802507.0,-808486.0,-814500.0,-820495.0,-826395.0,-832222.0,-838036.0,-843859.0,-849681.0,-855489.0,-861307.0,-867161.0,-873034.0,-878824.0,-884483.0,-890037.0,-895579.0,-901090.0,-906518.0,-911889.0,-917231.0,-922543.0,-927784.0,-933009.0,-938219.0,-943372.0,-948454.0,-953487.0,-958489.0,-963395.0,-968238.0,-973085.0,-977984.0,-982868.0,-987659.0,-992409.0,-997126.0,-1001771.0,-1006246.0,-1010595.0,-1014982.0,-1019419.0,-1023891.0,-1028355.0,-1032800.0,-1037177.0,-1041435.0,-1045611.0,-1049671.0,-1053581.0,-1057424.0,-1061328.0,-1065193.0,-1068872.0,-1072404.0,-1075949.0,-1079508.0,-1082981.0,-1086420.0,-1089864.0,-1093266.0,-1096506.0,-1099572.0,-1102581.0,-1105562.0,-1108561.0,-1111559.0,-1114587.0,-1117622.0,-1120549.0,-1123373.0,-1126097.0,-1128765.0,-1131347.0,-1133855.0,-1136318.0,-1138667.0,-1140920.0,-1143105.0,-1145270.0,-1147372.0,-1149385.0,-1151424.0,-1153497.0,-1155517.0,-1157460.0,-1159362.0,-1161273.0,-1163089.0,-1164742.0,-1166301.0,-1167794.0,-1169210.0,-1170494.0,-1171681.0,-1172835.0,-1173930.0,-1174940.0,-1175935.0,-1176949.0,-1177953.0,-1178936.0,-1179986.0,-1181083.0,-1182092.0,-1183007.0,-1183926.0,-1184858.0,-1185709.0,-1186474.0,-1187285.0,-1188188.0,-1189095.0,-1189965.0,-1190810.0,-1191648.0,-1192449.0,-1193191.0,-1193892.0,-1194533.0,-1195146.0,-1195762.0,-1196340.0,-1196843.0,-1197284.0,-1197764.0,-1198221.0,-1198599.0,-1198882.0,-1199113.0,-1199339.0,-1199571.0,-1199848.0,-1200186.0,-1200574.0,-1200947.0,-1201276.0,-1201500.0,-1201644.0,-1201755.0,-1201937.0,-1202233.0,-1202542.0,-1202756.0,-1202870.0,-1202927.0,-1202943.0,-1202891.0,-1202777.0,-1202698.0,-1202637.0,-1202551.0,-1202403.0,-1202241.0,-1202139.0,-1202086.0,-1202099.0,-1202173.0,-1202258.0,-1202278.0,-1202200.0,-1202039.0,-1201783.0,-1201375.0,-1200835.0,-1200276.0,-1199811.0,-1199437.0,-1199131.0,-1198915.0,-1198774.0,-1198629.0,-1198371.0,-1198013.0,-1197529.0,-1196982.0,-1196410.0,-1195868.0,-1195365.0,-1194886.0,-1194481.0,-1194102.0,-1193709.0,-1193253.0,-1192740.0,-1192183.0,-1191586.0,-1190964.0,-1190375.0,-1189813.0,-1189295.0,-1188780.0,-1188215.0,-1187596.0,-1186861.0,-1186118.0,-1185354.0,-1184613.0,-1183928.0,-1183247.0,-1182566.0,-1181819.0,-1181073.0,-1180297.0,-1179419.0,-1178517.0,-1177677.0,-1176863.0,-1175984.0,-1175027.0,-1174127.0,-1173216.0,-1172223.0,-1171136.0,-1170042.0,-1169008.0,-1167998.0,-1167002.0,-1166013.0,-1165050.0,-1164039.0,-1162938.0,-1161765.0,-1160633.0,-1159530.0,-1158456.0,-1157427.0,-1156428.0,-1155407.0,-1154278.0,-1153137.0,-1152020.0,-1150972.0,-1149974.0,-1148929.0,-1147783.0,-1146529.0,-1145268.0,-1143983.0,-1142649.0,-1141354.0,-1140202.0,-1139121.0,-1137924.0,-1136600.0,-1135243.0,-1133870.0,-1132431.0,-1130962.0,-1129565.0,-1128275.0,-1127010.0,-1125738.0,-1124452.0,-1123173.0,-1121886.0,-1120495.0,-1119028.0,-1117561.0,-1116196.0,-1114897.0,-1113564.0,-1112147.0,-1110651.0,-1109107.0,-1107506.0,-1105874.0,-1104269.0,-1102805.0,-1101464.0,-1100181.0,-1098839.0,-1097398.0,-1095869.0,-1094253.0,-1092599.0,-1090923.0,-1089311.0,-1087784.0,-1086313.0,-1084884.0,-1083455.0,-1081945.0,-1080320.0,-1078597.0,-1076835.0,-1075024.0,-1073173.0,-1071370.0,-1069597.0,-1067824.0,-1066041.0,-1064277.0,-1062534.0,-1060786.0,-1059040.0,-1057336.0,-1055630.0,-1053881.0,-1052076.0,-1050288.0,-1048534.0,-1046771.0,-1044979.0,-1043205.0,-1041489.0,-1039728.0,-1037919.0,-1036096.0,-1034310.0,-1032544.0,-1030742.0,-1028932.0,-1027123.0,-1025301.0,-1023443.0,-1021487.0,-1019521.0,-1017570.0,-1015597.0,-1013580.0,-1011560.0,-1009597.0,-1007603.0,-1005579.0,-1003538.0,-1001488.0,-999423.0,-997399.0,-995456.0,-993529.0,-991620.0,-989738.0,-987856.0,-985900.0,-983831.0,-981731.0,-979616.0,-977503.0,-975405.0,-973314.0,-971255.0,-969190.0,-967123.0,-965052.0,-962965.0,-960858.0,-958696.0,-956486.0,-954246.0,-951929.0,-949508.0,-947032.0,-944601.0,-942208.0,-939830.0,-937516.0,-935315.0,-933187.0,-931033.0,-928836.0,-926585.0,-924260.0,-921837.0,-919378.0,-916957.0,-914572.0,-912202.0,-909844.0,-907534.0,-905232.0,-902850.0,-900455.0,-898066.0,-895691.0,-893242.0,-890724.0,-888219.0,-885699.0,-883214.0,-880773.0,-878431.0,-876170.0,-873924.0,-871635.0,-869283.0,-866903.0,-864534.0,-862107.0,-859635.0,-857147.0,-854650.0,-852160.0,-849612.0,-847053.0,-844448.0,-841831.0,-839260.0,-836646.0,-834006.0,-831341.0,-828754.0,-826286.0,-823829.0,-821347.0,-818761.0,-816126.0,-813511.0,-810931.0,-808409.0,-805949.0,-803586.0,-801221.0,-798751.0,-796145.0,-793429.0,-790633.0,-787817.0,-785077.0,-782442.0,-779842.0,-777268.0,-774710.0,-772133.0,-769513.0,-766840.0,-764153.0,-761422.0,-758667.0,-755919.0,-753199.0,-750510.0,-747843.0,-745191.0,-742576.0,-739961.0,-737321.0,-734579.0,-731721.0,-728831.0,-725970.0,-723168.0,-720407.0,-717693.0,-715067.0,-712433.0,-709665.0,-706747.0,-703735.0,-700724.0,-697683.0,-694631.0,-691671.0,-688809.0,-686016.0,-683263.0,-680542.0,-677850.0,-675062.0,-672179.0,-669268.0,-666332.0,-663351.0,-660271.0,-657181.0,-654113.0,-651004.0,-647859.0,-644740.0,-641703.0,-638728.0,-635789.0,-632879.0,-629923.0,-626891.0,-623816.0,-620733.0,-617650.0,-614589.0,-611601.0,-608665.0,-605710.0,-602712.0,-599663.0,-596521.0,-593286.0,-589998.0,-586716.0,-583448.0,-580185.0,-576955.0,-573739.0,-570534.0,-567345.0,-564190.0,-561079.0,-558019.0,-554946.0,-551801.0,-548590.0,-545315.0,-541994.0,-538621.0,-535268.0,-531955.0,-528650.0,-525367.0,-522110.0,-518860.0,-515557.0,-512231.0,-508887.0,-505567.0,-502211.0,-498811.0,-495429.0,-492106.0,-488876.0,-485629.0,-482361.0,-479096.0,-475824.0,-472520.0,-469185.0,-465887.0,-462622.0,-459343.0,-456060.0,-452745.0,-449368.0,-445906.0,-442476.0,-439095.0,-435692.0,-432234.0,-428758.0,-425303.0,-421823.0,-418345.0,-414931.0,-411582.0,-408260.0,-404905.0,-401452.0,-397904.0,-394317.0,-390741.0,-387147.0,-383498.0,-379841.0,-376215.0,-372581.0,-368999.0,-365464.0,-361927.0,-358295.0,-354536.0,-350699.0,-346742.0,-342728.0,-338757.0,-334868.0,-331053.0,-327275.0,-323510.0,-319723.0,-315877.0,-311991.0,-308084.0,-304116.0,-300115.0,-296080.0,-292105.0,-288201.0,-284318.0,-280435.0,-276505.0,-272555.0,-268551.0,-264540.0,-260536.0,-256486.0,-252369.0,-248255.0,-244164.0,-240065.0,-235916.0,-231840.0,-227876.0,-223912.0,-219900.0,-215838.0,-211817.0,-207820.0,-203819.0,-199785.0,-195724.0,-191691.0,-187709.0,-183734.0,-179758.0,-175807.0,-171903.0,-168011.0,-164063.0,-160086.0,-156083.0,-152126.0,-148231.0,-144420.0,-140703.0,-137046.0,-133434.0,-129829.0,-126222.0,-122563.0,-118821.0,-115006.0,-111159.0,-107341.0,-103566.0,-99797.0,-96045.0,-92333.0,-88737.0,-85187.0,-81648.0,-78184.0,-74802.0,-71456.0,-68055.0,-64601.0,-61148.0,-57626.0,-54068.0,-50570.0,-47170.0,-43870.0,-40537.0,-37236.0,-33968.0,-30726.0,-27494.0,-24231.0,-21004.0,-17835.0,-14726.0,-11661.0,-8599.0,-5558.0,-2521.0,560.0,3691.0,6884.0,10063.0,13144.0,16111.0,19004.0,21861.0,24675.0,27465.0,30290.0,33154.0,35925.0,38558.0,41072.0,43552.0,46050.0,48582.0,51229.0,53961.0,56731.0,59467.0,62174.0,64859.0,67515.0,70131.0,72701.0,75244.0,77725.0,80193.0,82669.0,85235.0,87906.0,90665.0,93506.0,96353.0,99170.0,101854.0,104454.0,107047.0,109656.0,112260.0,114854.0,117570.0,120401.0,123266.0,126099.0,128874.0,131662.0,134412.0,137132.0,139807.0,142485.0,145248.0,148041.0,150869.0,153720.0,156605.0,159511.0,162436.0,165431.0,168478.0,171524.0,174556.0,177549.0,180431.0,183170.0,185811.0,188482.0,191264.0,194106.0,196986.0,199888.0,202812.0,205677.0,208458.0,211272.0,214177.0,217112.0,220033.0,222949.0,225877.0,228761.0,231649.0,234581.0,237538.0,240475.0,243384.0,246304.0,249172.0,252004.0,254808.0,257608.0,260371.0,263071.0,265730.0,268330.0,270929.0,273538.0,276188.0,278844.0,281491.0,284157.0,286800.0,289375.0,291858.0,294265.0,296627.0,298947.0,301273.0,303622.0,305937.0,308188.0,310413.0,312710.0,315064.0,317457.0,319857.0,322278.0,324588.0,326659.0,328481.0,330174.0,331906.0,333721.0,335675.0,337743.0,339903.0,342043.0,344063.0,345976.0,347831.0,349699.0,351555.0,353433.0,355381.0,357417.0,359521.0,361591.0,363634.0,365670.0,367671.0,369591.0,371416.0,373293.0,375246.0,377213.0,379154.0,381039.0,382896.0,384690.0,386429.0,388181.0,389953.0,391798.0,393714.0,395601.0,397385.0,399042.0,400686.0,402334.0,403901.0,405431.0,407035.0,408715.0,410353.0,411876.0,413402.0,414994.0,416595.0,418166.0,419722.0,421271.0,422780.0,424194.0,425499.0,426726.0,427924.0,429176.0,430503.0,431918.0,433409.0,434916.0,436419.0,437897.0,439306.0,440643.0,441888.0,443048.0,444113.0,445100.0,446053.0,446952.0,447849.0,448737.0,449624.0,450458.0,451267.0,452075.0,452822.0,453500.0,454089.0,454655.0,455184.0,455702.0,456191.0,456623.0,457054.0,457470.0,457841.0,458088.0,458250.0,458425.0,458595.0,458723.0,458810.0,458924.0,459111.0,459316.0,459523.0,459726.0,459910.0,460074.0,460231.0,460407.0,460560.0,460656.0,460700.0,460706.0,460670.0,460622.0,460596.0,460645.0,460756.0,460914.0,461086.0,461236.0,461392.0,461506.0,461582.0,461607.0,461637.0,461725.0,461810.0,461907.0,461986.0,462026.0,461962.0,461818.0,461708.0,461631.0,461528.0,461407.0,461341.0,461291.0,461182.0,460984.0,460779.0,460553.0,460327.0,460114.0,459936.0,459802.0,459706.0,459681.0,459654.0,459588.0,459458.0,459296.0,459112.0,458902.0,458649.0,458397.0,458155.0,457917.0,457690.0,457514.0,457409.0,457306.0,457155.0,456967.0,456697.0,456356.0,455984.0,455647.0,455329.0,455002.0,454713.0,454429.0,454036.0,453480.0,452875.0,452298.0,451727.0,451084.0,450436.0,449839.0,449249.0,448623.0,447984.0,447375.0,446763.0,446083.0,445358.0,444613.0,443836.0,443035.0,442249.0,441476.0,440703.0,439926.0,439166.0,438427.0,437705.0,437051.0,436396.0,435692.0,434935.0,434160.0,433395.0,432615.0,431888.0,431218.0,430587.0,429946.0,429244.0,428491.0,427731.0,427021.0,426361.0,425719.0,425075.0,424391.0,423638.0,422810.0,421954.0,421098.0,420289.0,419576.0,418954.0,418358.0,417701.0,416998.0,416296.0,415614.0,414864.0,414022.0,413115.0,412218.0,411308.0,410315.0,409224.0,408158.0,407241.0,406465.0,405724.0,404988.0,404366.0,403813.0,403173.0,402312.0,401334.0,400402.0,399477.0,398451.0,397352.0,396312.0,395408.0,394580.0,393796.0,393100.0,392491.0,391964.0,391452.0,390918.0,390332.0,389717.0,389071.0,388342.0,387517.0,386644.0,385792.0,384994.0,384250.0,383566.0,382919.0,382230.0,381431.0,380512.0,379588.0,378694.0,377801.0,376926.0,376163.0,375562.0,375000.0,374369.0,373682.0,372987.0,372257.0,371423.0,370539.0,369709.0,368971.0,368304.0,367642.0,366938.0,366142.0,365274.0,364343.0,363347.0,362359.0,361490.0,360781.0,360112.0,359417.0,358760.0,358128.0,357452.0,356654.0,355795.0,354940.0,353999.0,352988.0,351975.0,351033.0,350103.0,349129.0,348164.0,347210.0,346234.0,345232.0,344279.0,343431.0,342668.0,341959.0,341287.0,340594.0,339823.0,338940.0,338003.0,337058.0,336094.0,335143.0,334232.0,333363.0,332470.0,331519.0,330503.0,329426.0,328302.0,327190.0,326134.0,325151.0,324237.0,323343.0,322424.0,321466.0,320460.0,319400.0,318317.0,317289.0,316364.0,315494.0,314649.0,313807.0,312988.0,312172.0,311344.0,310473.0,309545.0,308578.0,307604.0,306699.0,305869.0,305077.0,304266.0,303413.0,302519.0,301537.0,300457.0,299320.0,298247.0,297274.0,296341.0,295393.0,294462.0,293602.0,292768.0,291908.0,290995.0,290068.0,289125.0,288168.0,287215.0,286307.0,285480.0,284684.0,283828.0,282894.0,281899.0,280867.0,279771.0,278683.0,277728.0,276889.0,276076.0,275252.0,274447.0,273641.0,272764.0,271852.0,270947.0,270037.0,269110.0,268185.0,267296.0,266443.0,265648.0,264937.0,264268.0,263544.0,262713.0,261782.0,260792.0,259791.0,258830.0,257964.0,257177.0,256468.0,255749.0,254956.0,254073.0,253182.0,252337.0,251482.0,250635.0,249793.0,248983.0,248134.0,247247.0,246377.0,245530.0,244720.0,243917.0,243126.0,242344.0,241541.0,240748.0,239927.0,239080.0,238187.0,237297.0,236437.0,235573.0,234685.0,233788.0,232972.0,232208.0,231444.0,230616.0,229779.0,228969.0,228146.0,227269.0,226374.0,225526.0,224704.0,223834.0,222918.0,222028.0,221211.0,220470.0,219781.0,219115.0,218430.0,217698.0,216906.0,216039.0,215079.0,214086.0,213112.0,212214.0,211376.0,210602.0,209908.0,209273.0,208661.0,207941.0,207103.0,206209.0,205340.0,204481.0,203586.0,202718.0,201892.0,201097.0,200276.0,199467.0,198732.0,198073.0,197451.0,196780.0,196066.0,195346.0,194591.0,193754.0,192836.0,191917.0,191052.0,190205.0,189388.0,188591.0,187823.0,187093.0,186376.0,185645.0,184869.0,184125.0,183400.0,182633.0,181777.0,180880.0,180023.0,179191.0,178412.0,177686.0,176981.0,176294.0,175631.0,175007.0,174394.0,173743.0,173120.0,172480.0,171771.0,170989.0,170169.0,169404.0,168639.0,167844.0,166987.0,166117.0,165289.0,164454.0,163620.0,162811.0,162090.0,161375.0,160556.0,159686.0,158869.0,158167.0,157449.0,156650.0,155888.0,155210.0,154516.0,153745.0,153031.0,152421.0,151821.0,151170.0,150550.0,149976.0,149344.0,148680.0,147985.0,147209.0,146340.0,145473.0,144729.0,144033.0,143321.0,142669.0,142084.0,141501.0,140829.0,140126.0,139453.0,138747.0,137999.0,137263.0,136543.0,135806.0,135043.0,134295.0,133537.0,132740.0,131934.0,131153.0,130373.0,129632.0,128957.0,128331.0,127716.0,127075.0,126425.0,125709.0,124900.0,124014.0,123152.0,122381.0,121705.0,121102.0,120573.0,120051.0,119438.0,118723.0,117994.0,117296.0,116528.0,115719.0,114907.0,114175.0,113455.0,112716.0,112047.0,111411.0,110789.0,110065.0,109301.0,108521.0,107750.0,107048.0,106484.0,106051.0,105672.0,105285.0,104822.0,104244.0,103533.0,102774.0,102023.0,101298.0,100604.0,99917.0,99231.0,98544.0,97843.0,97171.0,96551.0,95972.0,95392.0,94778.0,94142.0,93507.0,92879.0,92290.0,91753.0,91238.0,90737.0,90152.0,89494.0,88743.0,87909.0,87041.0,86208.0,85484.0,84801.0,84175.0,83637.0,83177.0,82648.0,81996.0,81312.0,80658.0,80025.0,79358.0,78705.0,78119.0,77603.0,77101.0,76577.0,76048.0,75533.0,75006.0,74426.0,73814.0,73178.0,72514.0,71788.0,71042.0,70304.0,69605.0,68981.0,68411.0,67867.0,67325.0,66801.0,66271.0,65681.0,65032.0,64387.0,63758.0,63123.0,62453.0,61768.0,61110.0,60483.0,59877.0,59291.0,58728.0,58213.0,57722.0,57217.0,56641.0,56005.0,55319.0,54599.0,53849.0,53111.0,52454.0,51852.0,51303.0,50747.0,50227.0,49714.0,49174.0,48564.0,47875.0,47172.0,46480.0,45789.0,45104.0,44485.0,43968.0,43527.0,43055.0,42556.0,42064.0,41569.0,41028.0,40404.0,39758.0,39120.0,38495.0,37909.0,37381.0,36876.0,36375.0,35864.0,35351.0,34785.0,34186.0,33622.0,33074.0,32516.0,31933.0,31398.0,30869.0,30320.0,29789.0,29307.0,28846.0,28327.0,27757.0,27131.0,26440.0,25709.0,24991.0,24272.0,23569.0,22924.0,22387.0,21899.0,21362.0,20827.0,20303.0,19797.0,19274.0,18754.0,18265.0,17768.0,17297.0,16855.0,16372.0,15798.0,15177.0,14588.0,14020.0,13438.0,12890.0,12414.0,11978.0,11538.0,11055.0,10539.0,10016.0,9511.0,9032.0,8563.0,8105.0,7619.0,7064.0,6479.0,5907.0,5378.0,4893.0,4458.0,4062.0,3638.0,3187.0,2699.0,2149.0,1516.0,841.0,209.0,-359.0,-891.0,-1413.0,-1916.0,-2418.0,-2999.0,-3658.0,-4294.0,-4832.0,-5311.0,-5788.0,-6188.0,-6510.0,-6838.0,-7229.0,-7671.0,-8103.0,-8572.0,-9136.0,-9801.0,-10491.0,-11083.0,-11605.0,-12094.0,-12565.0,-12994.0,-13446.0,-13971.0,-14503.0,-15003.0,-15454.0,-15903.0,-16321.0,-16746.0,-17223.0,-17772.0,-18350.0,-18908.0,-19416.0,-19885.0,-20348.0,-20788.0,-21234.0,-21703.0,-22237.0,-22822.0,-23414.0,-24006.0,-24593.0,-25134.0,-25611.0,-26026.0,-26431.0,-26824.0,-27166.0,-27505.0,-27886.0,-28306.0,-28711.0,-29121.0,-29574.0,-30097.0,-30701.0,-31352.0,-31986.0,-32565.0,-33116.0,-33662.0,-34138.0,-34588.0,-35052.0,-35565.0,-36065.0,-36534.0,-36990.0,-37412.0,-37802.0,-38177.0,-38594.0,-39004.0,-39394.0,-39765.0,-40143.0,-40517.0,-40871.0,-41246.0,-41632.0,-42035.0,-42485.0,-43000.0,-43549.0,-44076.0,-44582.0,-45078.0,-45568.0,-46070.0,-46569.0,-47032.0,-47507.0,-48024.0,-48535.0,-48937.0,-49263.0,-49624.0,-50034.0,-50454.0,-50874.0,-51299.0,-51759.0,-52216.0,-52638.0,-52968.0,-53257.0,-53609.0,-54061.0,-54604.0,-55204.0,-55871.0,-56569.0,-57228.0,-57817.0,-58332.0,-58776.0,-59213.0,-59669.0,-60176.0,-60668.0,-61147.0,-61645.0,-62136.0,-62575.0,-62950.0,-63269.0,-63558.0,-63831.0,-64099.0,-64370.0,-64636.0,-64916.0,-65243.0,-65617.0,-66031.0,-66460.0,-66907.0,-67390.0,-67874.0,-68308.0,-68683.0,-69103.0,-69562.0,-70015.0,-70418.0,-70806.0,-71200.0,-71551.0,-71925.0,-72371.0,-72928.0,-73516.0,-74059.0,-74522.0,-74948.0,-75392.0,-75857.0,-76355.0,-76925.0,-77582.0,-78201.0,-78702.0,-79052.0,-79370.0,-79652.0,-79868.0,-80054.0,-80294.0,-80627.0,-80972.0,-81362.0,-81877.0,-82473.0,-82974.0,-83315.0,-83553.0,-83761.0,-83908.0,-84048.0,-84299.0,-84722.0,-85272.0,-85858.0,-86437.0,-86968.0,-87389.0,-87714.0,-87998.0,-88261.0],"type":"scatter"},{"customdata":[[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64],[30852231934.0,12.64]],"fill":"tozeroy","fillcolor":"rgb(67, 56, 128)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME2","line":{"color":"rgb(67, 56, 128)","width":1},"mode":"lines","name":"DHBAL","visible":true,"x":[12.483116666666666,12.492039225589224,12.500961784511784,12.509884343434342,12.518806902356902,12.52772946127946,12.53665202020202,12.545574579124578,12.554497138047138,12.563419696969696,12.572342255892256,12.581264814814814,12.590187373737372,12.599109932659932,12.60803249158249,12.61695505050505,12.625877609427608,12.634800168350168,12.643722727272726,12.652645286195286,12.661567845117844,12.670490404040404,12.679412962962962,12.68833552188552,12.69725808080808,12.706180639730638,12.715103198653198,12.724025757575756,12.732948316498316,12.741870875420874,12.750793434343434,12.759715993265992,12.768638552188552,12.77756111111111,12.786483670033668,12.795406228956228,12.804328787878786,12.813251346801346,12.822173905723904,12.831096464646464,12.840019023569022,12.848941582491582,12.85786414141414,12.8667867003367,12.875709259259258,12.884631818181816,12.893554377104376,12.902476936026934,12.911399494949494,12.920322053872052,12.929244612794612,12.93816717171717,12.94708973063973,12.956012289562288,12.964934848484848,12.973857407407406,12.982779966329964,12.991702525252524,13.000625084175082,13.009547643097642,13.0184702020202,13.02739276094276,13.036315319865318,13.045237878787878,13.054160437710436,13.063082996632996,13.072005555555554,13.080928114478112,13.089850673400672,13.09877323232323,13.10769579124579,13.116618350168348,13.125540909090908,13.134463468013466,13.143386026936026,13.152308585858584,13.161231144781144,13.170153703703702,13.17907626262626,13.18799882154882,13.196921380471379,13.205843939393938,13.214766498316497,13.223689057239056,13.232611616161615,13.241534175084174,13.250456734006733,13.259379292929292,13.26830185185185,13.277224410774409,13.286146969696969,13.295069528619527,13.303992087542087,13.312914646464645,13.321837205387205,13.330759764309763,13.339682323232323,13.34860488215488,13.35752744107744,13.366449999999999],"y":[253010.89888241983,335050.4699073365,436446.5545369678,559244.5282372115,704891.4680824174,873962.1019967834,1065890.9708512286,1278741.6248254273,1509046.6218581789,1751750.8981677357,2000284.9916394327,2246783.5741480445,2482449.6007781513,2698046.785377237,2884485.42339569,3033451.510398564,3138019.2390088863,3193184.2818121705,3196260.737133806,3147097.9007990877,3048092.503230569,2903995.028325681,2721531.907680443,2508885.4249170525,2275087.282720904,2029388.2117369722,1780664.2519054653,1536911.2263512968,1304864.3379616528,1089762.2943020258,895257.6252365423,723459.3209686395,575082.3520153387,449671.9527969321,345868.80755614466,261683.79478812375,194756.56122644444,142579.5378053845,102676.75708652652,72733.90765399947,50681.74205732441,34738.893711935,23422.339394102528,15534.396708096177,10134.640548742975,6503.874378614552,4105.686408118259,2549.4661009643114,1557.2650786025995,935.6764177791516,553.0172258719589,321.5151714028009,183.87137284191192,103.4371635042223,57.2385894567578,31.15667320928958,16.682574452168392,8.786681826137064,4.5523596513545925,2.3200538569697806,1.163079507592837,0.5735490667743436,0.2782156699893521,0.1327524158283746,0.06230933485555756,0.02876826254684609,0.013065438441293434,0.005836925884187956,0.0025650403760524723,0.001108802174029934,0.00047148053545951335,0.0001972074436947152,8.113956503797384e-05,3.2839148164303494e-05,1.3073772614437883e-05,5.119880299730649e-06,1.972279787536315e-06,7.473552275479045e-07,2.7857071924401087e-07,1.0213949130290038e-07,3.683848419271573e-08,1.30695203483794e-08,4.561076777866054e-09,1.5657591299002381e-09,5.287280592938579e-10,1.7562631984007622e-10,5.7384774507899956e-11,1.844393546883254e-11,5.83123232717822e-12,1.8134973774890109e-12,5.547832687729316e-13,1.669473825670024e-13,4.9418062019349674e-14,1.4389365426098078e-14,4.121425082905025e-15,1.1611892699787774e-15,3.2181660907527007e-16,8.773315168223019e-17,2.3527124127104673e-17,6.206171787871401e-18],"type":"scatter"},{"customdata":[[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95],[1951469950511.0,13.95]],"fill":"tozeroy","fillcolor":"rgb(62, 73, 137)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME2","line":{"color":"rgb(62, 73, 137)","width":1},"mode":"lines","name":"N6-benzyl-ATP","visible":true,"x":[13.749783333333333,13.75520420875421,13.760625084175084,13.76604595959596,13.771466835016835,13.77688771043771,13.782308585858585,13.787729461279461,13.793150336700336,13.798571212121212,13.803992087542088,13.809412962962963,13.814833838383839,13.820254713804713,13.82567558922559,13.831096464646464,13.83651734006734,13.841938215488215,13.847359090909091,13.852779966329967,13.858200841750842,13.863621717171718,13.869042592592592,13.874463468013468,13.879884343434343,13.885305218855219,13.890726094276094,13.89614696969697,13.901567845117846,13.90698872053872,13.912409595959597,13.917830471380471,13.923251346801347,13.928672222222222,13.934093097643098,13.939513973063972,13.944934848484849,13.950355723905725,13.9557765993266,13.961197474747475,13.96661835016835,13.972039225589226,13.9774601010101,13.982880976430977,13.988301851851851,13.993722727272727,13.999143602693604,14.004564478114478,14.009985353535354,14.015406228956229,14.020827104377105,14.02624797979798,14.031668855218856,14.03708973063973,14.042510606060606,14.047931481481482,14.053352356902357,14.058773232323233,14.064194107744107,14.069614983164984,14.075035858585858,14.080456734006734,14.085877609427609,14.091298484848485,14.096719360269361,14.102140235690236,14.107561111111112,14.112981986531986,14.118402861952863,14.123823737373737,14.129244612794613,14.134665488215488,14.140086363636364,14.14550723905724,14.150928114478114,14.15634898989899,14.161769865319865,14.167190740740741,14.172611616161616,14.178032491582492,14.183453367003366,14.188874242424243,14.194295117845119,14.199715993265993,14.20513686868687,14.210557744107744,14.21597861952862,14.221399494949495,14.22682037037037,14.232241245791245,14.237662121212121,14.243082996632998,14.248503872053872,14.253924747474748,14.259345622895623,14.264766498316499,14.270187373737373,14.27560824915825,14.281029124579124,14.28645],"y":[496639.00248272147,704632.6135667638,990007.7579774483,1377426.377184482,1897807.3869089098,2589344.3511442333,3498496.3691746695,4680874.366271739,6201924.604027174,8137292.356955249,10572733.782287145,13603435.89194442,17332606.26845917,21869208.688543476,27324750.565236017,33809074.579315424,41425170.12805766,50263098.55685471,60393215.764262185,71858970.73859014,84669650.98033763,98793526.18161964,114151899.84415093,130614604.90178479,147997465.55305284,166062187.8170756,184519034.05024594,203032484.69915852,221229901.82213917,238712996.10180473,255071678.89518517,269899672.6156516,282811076.417696,293456958.3408319,301540984.7569292,306833112.65954363,309180462.672499,308514655.7607268,304855122.3173815,298308160.15906805,289061805.15935785,277376859.92339236,263574677.77138707,248022500.20741537,231117280.15027195,213268981.45199427,194884326.09129032,176351869.69512507,158029135.84473884,140232346.79302153,123229072.23860535,107233898.61177075,92407017.28161643,78855456.27722196,66636547.18362347,55763132.51425185,46209979.84632367,37920873.77127455,30815898.31869082,24798491.826168124,19761943.154154148,15595092.760554092,12187095.62805985,9431188.290685365,7227474.233645399,5484797.887245796,4121816.4215015476,3067401.3309741975,2260510.3414372997,1649667.1817520743,1192175.2766412264,853174.4234484109,604629.710815964,424321.5419124591,294886.3140262779,202940.2043656294,138304.24486639473,93337.65083572669,62378.10291093597,41282.0636285173,27054.815414121436,17558.268727054558,11284.251262478743,7181.54265249765,4526.022206596757,2824.6819627893005,1745.7271771693077,1068.4079949946183,647.5179699090435,388.61580705266044,230.96333284351272,135.93132619483646,79.22276761315523,45.722967213201045,26.132005596197466,14.789892544334403,8.289173592600946,4.600567328029997,2.5285147239902024,1.3761745530793004],"type":"scatter"},{"customdata":[[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68],[1013646058488.0,15.68]],"fill":"tozeroy","fillcolor":"rgb(49, 104, 142)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME2","line":{"color":"rgb(49, 104, 142)","width":1},"mode":"lines","name":"ortho-nitrobenzyl-DL-homocysteine","visible":true,"x":[15.489783333333332,15.496685690235688,15.503588047138045,15.510490404040402,15.517392760942759,15.524295117845115,15.531197474747474,15.53809983164983,15.545002188552187,15.551904545454544,15.558806902356901,15.565709259259258,15.572611616161614,15.579513973063971,15.586416329966328,15.593318686868685,15.600221043771041,15.6071234006734,15.614025757575757,15.620928114478113,15.62783047138047,15.634732828282827,15.641635185185184,15.64853754208754,15.655439898989897,15.662342255892254,15.66924461279461,15.676146969696967,15.683049326599326,15.689951683501683,15.69685404040404,15.703756397306396,15.710658754208753,15.71756111111111,15.724463468013466,15.731365824915823,15.73826818181818,15.745170538720537,15.752072895622893,15.758975252525252,15.765877609427609,15.772779966329965,15.779682323232322,15.786584680134679,15.793487037037035,15.800389393939392,15.807291750841749,15.814194107744106,15.821096464646462,15.82799882154882,15.834901178451178,15.841803535353534,15.848705892255891,15.855608249158248,15.862510606060605,15.869412962962961,15.876315319865318,15.883217676767675,15.890120033670032,15.897022390572388,15.903924747474745,15.910827104377104,15.91772946127946,15.924631818181817,15.931534175084174,15.93843653198653,15.945338888888887,15.952241245791244,15.9591436026936,15.966045959595958,15.972948316498314,15.979850673400671,15.98675303030303,15.993655387205386,16.00055774410774,16.0074601010101,16.014362457912455,16.021264814814813,16.028167171717172,16.035069528619527,16.041971885521885,16.04887424242424,16.0557765993266,16.062678956228954,16.069581313131312,16.076483670033667,16.083386026936026,16.09028838383838,16.09719074074074,16.104093097643098,16.110995454545453,16.11789781144781,16.124800168350166,16.131702525252525,16.13860488215488,16.14550723905724,16.152409595959593,16.15931195286195,16.166214309764307,16.173116666666665],"y":[288984.54587675387,447954.6584248073,683398.1355858155,1026109.7527964202,1516331.4220850172,2205335.9008717905,3156717.0331971017,4447099.569874331,6165926.54289561,8413953.99566874,11300098.086234564,14936353.611866286,19430646.637818154,24877699.312629588,31348262.038041085,38877382.351722024,47452692.182860926,57003955.338308625,67395270.23164684,78421318.59726283,89808854.11421432,101224225.72377187,112287151.61725868,122590258.40470055,131723162.55643547,139299202.9212301,144982440.84531614,148512317.82207897,149723454.46869195,148558496.2859694,145072616.6285842,139429184.535055,131887071.14131325,122780968.2220249,112496802.13030961,101444754.18619223,90032498.92397031,78641050.88147412,67605122.74846525,57199231.83967613,47630054.74814784,39034826.955372944,31485002.320424315,24993984.3942046,19527540.73678567,15015503.657070784,11363511.326904127,8463801.857874407,6204384.722503863,4476228.471599105,3178381.7931432715,2221161.7025219635,1527687.7023681924,1034116.0580723286,688944.5594719831,451730.65284107375,291511.1300844512,185144.58489742232,115730.32722857561,71197.31918593949,43108.250218752466,25688.422895952972,15065.88967488203,8696.258021330128,4940.266126951314,2762.158307106454,1519.9422249223778,823.1630888171019,438.7579408484894,230.1677034996359,118.83491858659578,60.38430260383155,30.198427595773335,14.86363045064593,7.200219917744065,3.4327874766723805,1.6107508396506134,0.7438581216664668,0.3380898597945088,0.15123575369018438,0.06658204012350032,0.02884961452845432,0.012302779061309726,0.005163530282686149,0.0021329001530935475,0.0008671108408229433,0.0003469436953241309,0.0001366229559199608,5.295032721432054e-05,2.0197327732528466e-05,7.582273930992494e-06,2.8014657793657487e-06,1.0187121046726513e-06,3.6458425138039277e-07,1.2841762588087808e-07,4.4517591689894956e-08,1.51886432153656e-08,5.100192786992847e-09,1.6855222829219405e-09,5.482298741846041e-10],"type":"scatter"},{"customdata":[[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22],[70673425065.0,23.22]],"fill":"tozeroy","fillcolor":"rgb(253, 231, 37)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME2","line":{"color":"rgb(253, 231, 37)","width":1},"mode":"lines","name":"DHBAL O3","visible":true,"x":[23.08645,23.149379292929293,23.212308585858587,23.275237878787877,23.33816717171717,23.401096464646464,23.464025757575758,23.526955050505048,23.589884343434342,23.652813636363636,23.71574292929293,23.778672222222223,23.841601515151513,23.904530808080807,23.9674601010101,24.030389393939394,24.093318686868685,24.15624797979798,24.219177272727272,24.282106565656566,24.34503585858586,24.40796515151515,24.470894444444443,24.533823737373737,24.59675303030303,24.65968232323232,24.722611616161615,24.78554090909091,24.848470202020202,24.911399494949496,24.974328787878786,25.03725808080808,25.100187373737374,25.163116666666667,25.226045959595957,25.28897525252525,25.351904545454545,25.41483383838384,25.477763131313132,25.540692424242422,25.603621717171716,25.66655101010101,25.729480303030304,25.792409595959594,25.855338888888888,25.91826818181818,25.981197474747475,26.044126767676765,26.10705606060606,26.169985353535353,26.232914646464646,26.29584393939394,26.35877323232323,26.421702525252524,26.484631818181818,26.54756111111111,26.610490404040405,26.673419696969695,26.73634898989899,26.799278282828283,26.862207575757576,26.925136868686867,26.98806616161616,27.050995454545454,27.113924747474748,27.176854040404038,27.23978333333333,27.302712626262625,27.36564191919192,27.428571212121213,27.491500505050503,27.554429797979797,27.61735909090909,27.680288383838384,27.743217676767678,27.806146969696968,27.869076262626262,27.932005555555556,27.99493484848485,28.057864141414143,28.120793434343433,28.183722727272727,28.24665202020202,28.30958131313131,28.372510606060604,28.435439898989898,28.498369191919192,28.561298484848486,28.624227777777776,28.68715707070707,28.750086363636363,28.813015656565657,28.87594494949495,28.93887424242424,29.001803535353535,29.06473282828283,29.12766212121212,29.190591414141416,29.253520707070706,29.31645],"y":[387021.5484684945,5359028.503655488,13852138.335003244,6683860.933846211,602029.5695643967,10122.506692199971,31.77153184547714,0.018615215527245068,2.036000195522173e-06,4.15687910583883e-11,1.5842977490171262e-16,1.1271612458987076e-22,1.4969769868424124e-29,3.7112826533362584e-37,1.7175633790400296e-45,1.4838204218929345e-54,2.3929286449370112e-64,7.203739263063257e-75,4.048238159509644e-86,4.246723208105901e-98,8.316138030315074e-111,3.0399696995025207e-124,2.0744198182582219e-138,2.6424323838930015e-153,6.283345570797167e-169,2.789059892382623e-185,2.311024594845514e-202,3.57463025395304e-220,1.0321374071580003e-238,5.563188069601288e-258,5.597444523994473e-278,1.0513218394920492e-298,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0],"type":"scatter"},{"hovertext":"N6BENZYLADOONB_RNCOMT_TIME2","line":{"color":"white","dash":"solid","width":1},"mode":"lines","name":"Signal","visible":true,"x":[0.0031166666666666665,0.00645,0.009783333333333333,0.013116666666666667,0.01645,0.019783333333333333,0.023116666666666667,0.026449999999999998,0.029783333333333332,0.03311666666666667,0.036449999999999996,0.03978333333333333,0.04311666666666667,0.04645,0.04978333333333333,0.053116666666666666,0.05645,0.059783333333333334,0.06311666666666667,0.06645,0.06978333333333334,0.07311666666666666,0.07644999999999999,0.07978333333333333,0.08311666666666667,0.08645,0.08978333333333333,0.09311666666666667,0.09645,0.09978333333333333,0.10311666666666668,0.10644999999999999,0.10978333333333333,0.11311666666666667,0.11645,0.11978333333333334,0.12311666666666667,0.12645,0.12978333333333333,0.13311666666666666,0.13645,0.13978333333333334,0.14311666666666667,0.14645000000000002,0.14978333333333332,0.15311666666666665,0.15645,0.15978333333333333,0.1631166666666667,0.16645000000000001,0.16978333333333331,0.17311666666666667,0.17645,0.17978333333333335,0.18311666666666668,0.18644999999999998,0.18978333333333333,0.19311666666666666,0.19645,0.19978333333333334,0.20311666666666667,0.20645,0.20978333333333332,0.21311666666666668,0.21645,0.21978333333333333,0.22311666666666669,0.22644999999999998,0.22978333333333334,0.23311666666666667,0.23645,0.23978333333333335,0.24311666666666668,0.24645,0.24978333333333333,0.25311666666666666,0.25645,0.2597833333333333,0.26311666666666667,0.26645,0.2697833333333334,0.2731166666666667,0.27645,0.27978333333333333,0.2831166666666666,0.28645000000000004,0.28978333333333334,0.29311666666666664,0.29645,0.2997833333333333,0.3031166666666667,0.30645,0.30978333333333335,0.31311666666666665,0.31644999999999995,0.31978333333333336,0.32311666666666666,0.32645,0.3297833333333333,0.3331166666666666,0.33645,0.3397833333333333,0.3431166666666667,0.34645,0.3497833333333333,0.3531166666666667,0.35645,0.35978333333333334,0.36311666666666664,0.36645,0.36978333333333335,0.37311666666666665,0.37645,0.3797833333333333,0.38311666666666666,0.38645,0.3897833333333333,0.39311666666666667,0.39644999999999997,0.3997833333333333,0.4031166666666667,0.40645000000000003,0.40978333333333333,0.41311666666666663,0.41645,0.41978333333333334,0.4231166666666667,0.42645,0.4297833333333333,0.43311666666666665,0.43645,0.43978333333333336,0.44311666666666666,0.44644999999999996,0.4497833333333333,0.45311666666666667,0.45645,0.4597833333333333,0.4631166666666667,0.46645,0.46978333333333333,0.4731166666666667,0.47645,0.47978333333333334,0.48311666666666664,0.48645,0.48978333333333335,0.49311666666666665,0.49645,0.4997833333333333,0.5031166666666667,0.50645,0.5097833333333334,0.5131166666666667,0.51645,0.5197833333333334,0.5231166666666667,0.52645,0.5297833333333333,0.5331166666666667,0.53645,0.5397833333333334,0.5431166666666667,0.54645,0.5497833333333334,0.5531166666666666,0.55645,0.5597833333333334,0.5631166666666666,0.56645,0.5697833333333333,0.5731166666666667,0.57645,0.5797833333333333,0.5831166666666667,0.5864499999999999,0.5897833333333333,0.5931166666666667,0.59645,0.5997833333333333,0.6031166666666666,0.60645,0.6097833333333333,0.6131166666666666,0.61645,0.6197833333333332,0.6231166666666667,0.6264500000000001,0.6297833333333334,0.6331166666666667,0.63645,0.6397833333333334,0.6431166666666667,0.64645,0.6497833333333334,0.6531166666666667,0.65645,0.6597833333333334,0.6631166666666667,0.66645,0.6697833333333333,0.6731166666666667,0.6764500000000001,0.6797833333333333,0.6831166666666667,0.68645,0.6897833333333333,0.6931166666666667,0.69645,0.6997833333333333,0.7031166666666666,0.70645,0.7097833333333334,0.7131166666666666,0.71645,0.7197833333333333,0.7231166666666666,0.72645,0.7297833333333333,0.7331166666666667,0.7364499999999999,0.7397833333333333,0.7431166666666668,0.74645,0.7497833333333334,0.7531166666666667,0.75645,0.7597833333333334,0.7631166666666667,0.7664500000000001,0.7697833333333333,0.7731166666666667,0.7764500000000001,0.7797833333333333,0.7831166666666667,0.78645,0.7897833333333334,0.7931166666666667,0.79645,0.7997833333333334,0.8031166666666666,0.80645,0.8097833333333334,0.8131166666666666,0.81645,0.8197833333333333,0.8231166666666667,0.82645,0.8297833333333333,0.8331166666666667,0.8364499999999999,0.8397833333333333,0.8431166666666667,0.84645,0.8497833333333333,0.8531166666666666,0.85645,0.8597833333333333,0.8631166666666666,0.86645,0.8697833333333332,0.8731166666666667,0.8764500000000001,0.8797833333333334,0.8831166666666667,0.88645,0.8897833333333334,0.8931166666666667,0.89645,0.8997833333333334,0.9031166666666667,0.90645,0.9097833333333334,0.9131166666666667,0.91645,0.9197833333333333,0.9231166666666667,0.9264500000000001,0.9297833333333333,0.9331166666666667,0.93645,0.9397833333333333,0.9431166666666667,0.94645,0.9497833333333333,0.9531166666666666,0.95645,0.9597833333333334,0.9631166666666666,0.96645,0.9697833333333333,0.9731166666666666,0.97645,0.9797833333333333,0.9831166666666667,0.9864499999999999,0.9897833333333333,0.9931166666666668,0.99645,0.9997833333333334,1.0031166666666667,1.00645,1.0097833333333335,1.0131166666666667,1.01645,1.0197833333333333,1.0231166666666667,1.02645,1.0297833333333333,1.0331166666666667,1.0364499999999999,1.0397833333333333,1.0431166666666667,1.0464499999999999,1.0497833333333333,1.0531166666666667,1.0564500000000001,1.0597833333333333,1.0631166666666667,1.0664500000000001,1.0697833333333333,1.0731166666666667,1.0764500000000001,1.0797833333333335,1.0831166666666665,1.08645,1.0897833333333333,1.0931166666666667,1.0964500000000001,1.0997833333333333,1.1031166666666665,1.10645,1.1097833333333333,1.1131166666666668,1.11645,1.1197833333333334,1.1231166666666668,1.12645,1.1297833333333334,1.1331166666666665,1.13645,1.1397833333333334,1.1431166666666668,1.1464500000000002,1.1497833333333332,1.1531166666666666,1.15645,1.1597833333333334,1.1631166666666668,1.16645,1.1697833333333334,1.1731166666666666,1.17645,1.1797833333333334,1.1831166666666666,1.18645,1.1897833333333334,1.1931166666666668,1.19645,1.1997833333333332,1.2031166666666666,1.20645,1.2097833333333334,1.2131166666666668,1.2164499999999998,1.2197833333333332,1.2231166666666666,1.22645,1.2297833333333335,1.2331166666666666,1.23645,1.2397833333333332,1.2431166666666666,1.24645,1.2497833333333332,1.2531166666666667,1.25645,1.2597833333333335,1.2631166666666667,1.2664499999999999,1.2697833333333333,1.2731166666666667,1.27645,1.2797833333333335,1.2831166666666667,1.2864499999999999,1.2897833333333333,1.2931166666666667,1.29645,1.2997833333333333,1.3031166666666667,1.3064500000000001,1.3097833333333333,1.3131166666666667,1.31645,1.3197833333333333,1.3231166666666667,1.3264500000000001,1.3297833333333335,1.3331166666666665,1.33645,1.3397833333333333,1.3431166666666667,1.3464500000000001,1.3497833333333333,1.3531166666666665,1.35645,1.3597833333333333,1.3631166666666668,1.36645,1.3697833333333334,1.3731166666666668,1.37645,1.3797833333333334,1.3831166666666665,1.38645,1.3897833333333334,1.3931166666666668,1.3964500000000002,1.3997833333333332,1.4031166666666666,1.40645,1.4097833333333334,1.4131166666666668,1.41645,1.4197833333333334,1.4231166666666666,1.42645,1.4297833333333334,1.4331166666666666,1.43645,1.4397833333333334,1.4431166666666668,1.44645,1.4497833333333332,1.4531166666666666,1.45645,1.4597833333333334,1.4631166666666668,1.4664499999999998,1.4697833333333332,1.4731166666666666,1.47645,1.4797833333333335,1.4831166666666666,1.48645,1.4897833333333332,1.4931166666666666,1.49645,1.4997833333333332,1.5031166666666667,1.50645,1.5097833333333335,1.5131166666666667,1.5164499999999999,1.5197833333333333,1.5231166666666667,1.52645,1.5297833333333335,1.5331166666666667,1.5364499999999999,1.5397833333333333,1.5431166666666667,1.54645,1.5497833333333333,1.5531166666666667,1.5564500000000001,1.5597833333333333,1.5631166666666667,1.56645,1.5697833333333333,1.5731166666666667,1.5764500000000001,1.5797833333333335,1.5831166666666665,1.58645,1.5897833333333333,1.5931166666666667,1.5964500000000001,1.5997833333333333,1.6031166666666665,1.60645,1.6097833333333333,1.6131166666666668,1.61645,1.6197833333333334,1.6231166666666668,1.62645,1.6297833333333334,1.6331166666666665,1.63645,1.6397833333333334,1.6431166666666668,1.6464500000000002,1.6497833333333332,1.6531166666666666,1.65645,1.6597833333333334,1.6631166666666668,1.66645,1.6697833333333334,1.6731166666666666,1.67645,1.6797833333333334,1.6831166666666666,1.68645,1.6897833333333334,1.6931166666666668,1.69645,1.6997833333333332,1.7031166666666666,1.70645,1.7097833333333334,1.7131166666666668,1.7164499999999998,1.7197833333333332,1.7231166666666666,1.72645,1.7297833333333335,1.7331166666666666,1.73645,1.7397833333333332,1.7431166666666666,1.74645,1.7497833333333332,1.7531166666666667,1.75645,1.7597833333333335,1.7631166666666667,1.7664499999999999,1.7697833333333333,1.7731166666666667,1.77645,1.7797833333333335,1.7831166666666667,1.7864499999999999,1.7897833333333333,1.7931166666666667,1.79645,1.7997833333333333,1.8031166666666667,1.8064500000000001,1.8097833333333333,1.8131166666666667,1.81645,1.8197833333333333,1.8231166666666667,1.8264500000000001,1.8297833333333335,1.8331166666666665,1.83645,1.8397833333333333,1.8431166666666667,1.8464500000000001,1.8497833333333333,1.8531166666666665,1.85645,1.8597833333333333,1.8631166666666668,1.86645,1.8697833333333334,1.8731166666666668,1.87645,1.8797833333333334,1.8831166666666665,1.88645,1.8897833333333334,1.8931166666666668,1.8964500000000002,1.8997833333333332,1.9031166666666666,1.90645,1.9097833333333334,1.9131166666666668,1.91645,1.9197833333333334,1.9231166666666666,1.92645,1.9297833333333334,1.9331166666666666,1.93645,1.9397833333333334,1.9431166666666668,1.94645,1.9497833333333332,1.9531166666666666,1.95645,1.9597833333333334,1.9631166666666668,1.9664499999999998,1.9697833333333332,1.9731166666666666,1.97645,1.9797833333333335,1.9831166666666666,1.98645,1.9897833333333332,1.9931166666666666,1.99645,1.9997833333333332,2.0031166666666667,2.00645,2.0097833333333335,2.013116666666667,2.01645,2.0197833333333333,2.0231166666666667,2.02645,2.0297833333333335,2.0331166666666665,2.03645,2.0397833333333333,2.0431166666666667,2.04645,2.049783333333333,2.0531166666666665,2.05645,2.0597833333333333,2.0631166666666667,2.06645,2.069783333333333,2.0731166666666665,2.07645,2.0797833333333333,2.0831166666666667,2.08645,2.0897833333333335,2.0931166666666665,2.09645,2.0997833333333333,2.1031166666666667,2.10645,2.1097833333333336,2.113116666666667,2.11645,2.1197833333333334,2.1231166666666668,2.12645,2.1297833333333336,2.1331166666666665,2.1364500000000004,2.1397833333333334,2.1431166666666663,2.14645,2.149783333333333,2.153116666666667,2.15645,2.159783333333333,2.163116666666667,2.1664499999999998,2.1697833333333336,2.1731166666666666,2.17645,2.1797833333333334,2.1831166666666664,2.1864500000000002,2.189783333333333,2.1931166666666666,2.19645,2.1997833333333334,2.203116666666667,2.20645,2.209783333333333,2.2131166666666666,2.21645,2.2197833333333334,2.223116666666667,2.22645,2.2297833333333332,2.2331166666666666,2.23645,2.2397833333333335,2.2431166666666664,2.2464500000000003,2.2497833333333332,2.2531166666666667,2.25645,2.259783333333333,2.263116666666667,2.26645,2.2697833333333337,2.2731166666666667,2.2764499999999996,2.2797833333333335,2.2831166666666665,2.2864500000000003,2.2897833333333333,2.2931166666666667,2.29645,2.299783333333333,2.303116666666667,2.30645,2.3097833333333333,2.3131166666666667,2.31645,2.3197833333333335,2.3231166666666665,2.32645,2.3297833333333333,2.3331166666666667,2.33645,2.3397833333333335,2.3431166666666665,2.34645,2.3497833333333333,2.3531166666666667,2.35645,2.359783333333333,2.363116666666667,2.36645,2.3697833333333334,2.3731166666666668,2.3764499999999997,2.3797833333333336,2.3831166666666665,2.3864500000000004,2.3897833333333334,2.3931166666666663,2.39645,2.399783333333333,2.403116666666667,2.40645,2.409783333333333,2.413116666666667,2.4164499999999998,2.4197833333333336,2.4231166666666666,2.42645,2.4297833333333334,2.4331166666666664,2.4364500000000002,2.439783333333333,2.4431166666666666,2.44645,2.4497833333333334,2.453116666666667,2.45645,2.459783333333333,2.4631166666666666,2.46645,2.4697833333333334,2.473116666666667,2.47645,2.4797833333333332,2.4831166666666666,2.48645,2.4897833333333335,2.4931166666666664,2.4964500000000003,2.4997833333333332,2.5031166666666667,2.50645,2.509783333333333,2.513116666666667,2.51645,2.5197833333333337,2.5231166666666667,2.5264499999999996,2.5297833333333335,2.5331166666666665,2.5364500000000003,2.5397833333333333,2.5431166666666667,2.54645,2.549783333333333,2.553116666666667,2.55645,2.5597833333333333,2.5631166666666667,2.56645,2.5697833333333335,2.5731166666666665,2.57645,2.5797833333333333,2.5831166666666667,2.58645,2.5897833333333335,2.5931166666666665,2.59645,2.5997833333333333,2.6031166666666667,2.60645,2.609783333333333,2.613116666666667,2.61645,2.6197833333333334,2.6231166666666668,2.6264499999999997,2.6297833333333336,2.6331166666666665,2.6364500000000004,2.6397833333333334,2.6431166666666663,2.64645,2.649783333333333,2.653116666666667,2.65645,2.659783333333333,2.663116666666667,2.6664499999999998,2.6697833333333336,2.6731166666666666,2.67645,2.6797833333333334,2.6831166666666664,2.6864500000000002,2.689783333333333,2.6931166666666666,2.69645,2.6997833333333334,2.703116666666667,2.70645,2.709783333333333,2.7131166666666666,2.71645,2.7197833333333334,2.723116666666667,2.72645,2.7297833333333332,2.7331166666666666,2.73645,2.7397833333333335,2.7431166666666664,2.7464500000000003,2.7497833333333332,2.7531166666666667,2.75645,2.759783333333333,2.763116666666667,2.76645,2.7697833333333337,2.7731166666666667,2.7764499999999996,2.7797833333333335,2.7831166666666665,2.7864500000000003,2.7897833333333333,2.7931166666666667,2.79645,2.799783333333333,2.803116666666667,2.80645,2.8097833333333333,2.8131166666666667,2.81645,2.8197833333333335,2.8231166666666665,2.82645,2.8297833333333333,2.8331166666666667,2.83645,2.8397833333333335,2.8431166666666665,2.84645,2.8497833333333333,2.8531166666666667,2.85645,2.859783333333333,2.863116666666667,2.86645,2.8697833333333334,2.8731166666666668,2.8764499999999997,2.8797833333333336,2.8831166666666665,2.8864500000000004,2.8897833333333334,2.8931166666666663,2.89645,2.899783333333333,2.903116666666667,2.90645,2.909783333333333,2.913116666666667,2.9164499999999998,2.9197833333333336,2.9231166666666666,2.92645,2.9297833333333334,2.9331166666666664,2.9364500000000002,2.939783333333333,2.9431166666666666,2.94645,2.9497833333333334,2.953116666666667,2.95645,2.959783333333333,2.9631166666666666,2.96645,2.9697833333333334,2.973116666666667,2.97645,2.9797833333333332,2.9831166666666666,2.98645,2.9897833333333335,2.9931166666666664,2.9964500000000003,2.9997833333333332,3.0031166666666667,3.00645,3.009783333333333,3.013116666666667,3.01645,3.0197833333333337,3.0231166666666667,3.0264499999999996,3.0297833333333335,3.0331166666666665,3.0364500000000003,3.0397833333333333,3.0431166666666667,3.04645,3.049783333333333,3.053116666666667,3.05645,3.0597833333333333,3.0631166666666667,3.06645,3.0697833333333335,3.0731166666666665,3.07645,3.0797833333333333,3.0831166666666667,3.08645,3.0897833333333335,3.0931166666666665,3.09645,3.0997833333333333,3.1031166666666667,3.10645,3.109783333333333,3.113116666666667,3.11645,3.1197833333333334,3.1231166666666668,3.1264499999999997,3.1297833333333336,3.1331166666666665,3.1364500000000004,3.1397833333333334,3.1431166666666663,3.14645,3.149783333333333,3.153116666666667,3.15645,3.159783333333333,3.163116666666667,3.1664499999999998,3.1697833333333336,3.1731166666666666,3.17645,3.1797833333333334,3.1831166666666664,3.1864500000000002,3.189783333333333,3.1931166666666666,3.19645,3.1997833333333334,3.203116666666667,3.20645,3.209783333333333,3.2131166666666666,3.21645,3.2197833333333334,3.223116666666667,3.22645,3.2297833333333332,3.2331166666666666,3.23645,3.2397833333333335,3.2431166666666664,3.2464500000000003,3.2497833333333332,3.2531166666666667,3.25645,3.259783333333333,3.263116666666667,3.26645,3.2697833333333337,3.2731166666666667,3.2764499999999996,3.2797833333333335,3.2831166666666665,3.2864500000000003,3.2897833333333333,3.2931166666666667,3.29645,3.299783333333333,3.303116666666667,3.30645,3.3097833333333333,3.3131166666666667,3.31645,3.3197833333333335,3.3231166666666665,3.32645,3.3297833333333333,3.3331166666666667,3.33645,3.3397833333333335,3.3431166666666665,3.34645,3.3497833333333333,3.3531166666666667,3.35645,3.359783333333333,3.363116666666667,3.36645,3.3697833333333334,3.3731166666666668,3.3764499999999997,3.3797833333333336,3.3831166666666665,3.3864500000000004,3.3897833333333334,3.3931166666666663,3.39645,3.399783333333333,3.403116666666667,3.40645,3.409783333333333,3.413116666666667,3.4164499999999998,3.4197833333333336,3.4231166666666666,3.42645,3.4297833333333334,3.4331166666666664,3.4364500000000002,3.439783333333333,3.4431166666666666,3.44645,3.4497833333333334,3.453116666666667,3.45645,3.459783333333333,3.4631166666666666,3.46645,3.4697833333333334,3.473116666666667,3.47645,3.4797833333333332,3.4831166666666666,3.48645,3.4897833333333335,3.4931166666666664,3.4964500000000003,3.4997833333333332,3.5031166666666667,3.50645,3.509783333333333,3.513116666666667,3.51645,3.5197833333333337,3.5231166666666667,3.5264499999999996,3.5297833333333335,3.5331166666666665,3.5364500000000003,3.5397833333333333,3.5431166666666667,3.54645,3.549783333333333,3.553116666666667,3.55645,3.5597833333333333,3.5631166666666667,3.56645,3.5697833333333335,3.5731166666666665,3.57645,3.5797833333333333,3.5831166666666667,3.58645,3.5897833333333335,3.5931166666666665,3.59645,3.5997833333333333,3.6031166666666667,3.60645,3.609783333333333,3.613116666666667,3.61645,3.6197833333333334,3.6231166666666668,3.6264499999999997,3.6297833333333336,3.6331166666666665,3.6364500000000004,3.6397833333333334,3.6431166666666663,3.64645,3.649783333333333,3.653116666666667,3.65645,3.659783333333333,3.663116666666667,3.6664499999999998,3.6697833333333336,3.6731166666666666,3.67645,3.6797833333333334,3.6831166666666664,3.6864500000000002,3.689783333333333,3.6931166666666666,3.69645,3.6997833333333334,3.703116666666667,3.70645,3.709783333333333,3.7131166666666666,3.71645,3.7197833333333334,3.723116666666667,3.72645,3.7297833333333332,3.7331166666666666,3.73645,3.7397833333333335,3.7431166666666664,3.7464500000000003,3.7497833333333332,3.7531166666666667,3.75645,3.759783333333333,3.763116666666667,3.76645,3.7697833333333337,3.7731166666666667,3.7764499999999996,3.7797833333333335,3.7831166666666665,3.7864500000000003,3.7897833333333333,3.7931166666666667,3.79645,3.799783333333333,3.803116666666667,3.80645,3.8097833333333333,3.8131166666666667,3.81645,3.8197833333333335,3.8231166666666665,3.82645,3.8297833333333333,3.8331166666666667,3.83645,3.8397833333333335,3.8431166666666665,3.84645,3.8497833333333333,3.8531166666666667,3.85645,3.859783333333333,3.863116666666667,3.86645,3.8697833333333334,3.8731166666666668,3.8764499999999997,3.8797833333333336,3.8831166666666665,3.8864500000000004,3.8897833333333334,3.8931166666666663,3.89645,3.899783333333333,3.903116666666667,3.90645,3.909783333333333,3.913116666666667,3.9164499999999998,3.9197833333333336,3.9231166666666666,3.92645,3.9297833333333334,3.9331166666666664,3.9364500000000002,3.939783333333333,3.9431166666666666,3.94645,3.9497833333333334,3.953116666666667,3.95645,3.959783333333333,3.9631166666666666,3.96645,3.9697833333333334,3.973116666666667,3.97645,3.9797833333333332,3.9831166666666666,3.98645,3.9897833333333335,3.9931166666666664,3.9964500000000003,3.9997833333333332,4.003116666666667,4.00645,4.009783333333333,4.013116666666667,4.01645,4.019783333333334,4.023116666666667,4.02645,4.0297833333333335,4.0331166666666665,4.03645,4.039783333333333,4.043116666666666,4.04645,4.049783333333333,4.053116666666667,4.05645,4.059783333333333,4.063116666666667,4.06645,4.0697833333333335,4.0731166666666665,4.0764499999999995,4.079783333333333,4.083116666666666,4.08645,4.089783333333333,4.093116666666666,4.09645,4.099783333333333,4.103116666666667,4.10645,4.109783333333334,4.1131166666666665,4.1164499999999995,4.119783333333333,4.123116666666666,4.12645,4.129783333333333,4.133116666666667,4.13645,4.139783333333333,4.143116666666667,4.14645,4.149783333333334,4.153116666666667,4.15645,4.159783333333333,4.163116666666666,4.16645,4.169783333333333,4.173116666666667,4.17645,4.179783333333334,4.183116666666667,4.18645,4.189783333333334,4.193116666666667,4.1964500000000005,4.199783333333333,4.203116666666667,4.20645,4.209783333333333,4.213116666666667,4.21645,4.219783333333334,4.223116666666667,4.22645,4.229783333333334,4.233116666666667,4.2364500000000005,4.2397833333333335,4.243116666666666,4.24645,4.249783333333333,4.253116666666667,4.25645,4.259783333333333,4.263116666666667,4.26645,4.269783333333334,4.273116666666667,4.27645,4.279783333333333,4.283116666666667,4.28645,4.289783333333333,4.293116666666666,4.296449999999999,4.299783333333334,4.303116666666667,4.30645,4.309783333333333,4.313116666666667,4.316450000000001,4.3197833333333335,4.3231166666666665,4.3264499999999995,4.329783333333333,4.333116666666667,4.33645,4.339783333333333,4.343116666666666,4.34645,4.349783333333334,4.353116666666667,4.35645,4.359783333333334,4.3631166666666665,4.36645,4.369783333333333,4.373116666666666,4.37645,4.379783333333333,4.383116666666667,4.38645,4.389783333333333,4.393116666666667,4.39645,4.399783333333334,4.403116666666667,4.40645,4.409783333333333,4.413116666666666,4.41645,4.419783333333333,4.423116666666667,4.42645,4.429783333333333,4.433116666666667,4.43645,4.439783333333334,4.443116666666667,4.44645,4.449783333333333,4.453116666666667,4.45645,4.459783333333333,4.463116666666666,4.46645,4.469783333333334,4.473116666666667,4.47645,4.479783333333333,4.483116666666667,4.4864500000000005,4.4897833333333335,4.493116666666666,4.496449999999999,4.499783333333334,4.503116666666667,4.50645,4.509783333333333,4.513116666666666,4.516450000000001,4.519783333333334,4.523116666666667,4.52645,4.529783333333333,4.533116666666667,4.53645,4.539783333333333,4.543116666666666,4.546449999999999,4.549783333333334,4.553116666666667,4.55645,4.559783333333333,4.563116666666667,4.566450000000001,4.5697833333333335,4.5731166666666665,4.5764499999999995,4.579783333333333,4.583116666666667,4.58645,4.589783333333333,4.593116666666666,4.59645,4.599783333333334,4.603116666666667,4.60645,4.609783333333334,4.6131166666666665,4.61645,4.619783333333333,4.623116666666666,4.62645,4.629783333333333,4.633116666666667,4.63645,4.639783333333333,4.643116666666667,4.64645,4.649783333333334,4.653116666666667,4.65645,4.659783333333333,4.663116666666666,4.66645,4.669783333333333,4.673116666666667,4.67645,4.679783333333333,4.683116666666667,4.68645,4.689783333333334,4.693116666666667,4.69645,4.699783333333333,4.703116666666667,4.70645,4.709783333333333,4.713116666666666,4.71645,4.719783333333334,4.723116666666667,4.72645,4.729783333333333,4.733116666666667,4.7364500000000005,4.7397833333333335,4.743116666666666,4.746449999999999,4.749783333333334,4.753116666666667,4.75645,4.759783333333333,4.763116666666666,4.766450000000001,4.769783333333334,4.773116666666667,4.77645,4.779783333333333,4.783116666666667,4.78645,4.789783333333333,4.793116666666666,4.796449999999999,4.799783333333334,4.803116666666667,4.80645,4.809783333333333,4.813116666666667,4.816450000000001,4.8197833333333335,4.8231166666666665,4.8264499999999995,4.829783333333333,4.833116666666667,4.83645,4.839783333333333,4.843116666666666,4.84645,4.849783333333334,4.853116666666667,4.85645,4.859783333333334,4.8631166666666665,4.86645,4.869783333333333,4.873116666666666,4.87645,4.879783333333333,4.883116666666667,4.88645,4.889783333333333,4.893116666666667,4.89645,4.899783333333334,4.903116666666667,4.90645,4.909783333333333,4.913116666666666,4.91645,4.919783333333333,4.923116666666667,4.92645,4.929783333333333,4.933116666666667,4.93645,4.939783333333334,4.943116666666667,4.94645,4.949783333333333,4.953116666666667,4.95645,4.959783333333333,4.963116666666666,4.96645,4.969783333333334,4.973116666666667,4.97645,4.979783333333333,4.983116666666667,4.9864500000000005,4.9897833333333335,4.993116666666666,4.996449999999999,4.999783333333334,5.003116666666667,5.00645,5.009783333333333,5.013116666666666,5.016450000000001,5.019783333333334,5.023116666666667,5.02645,5.029783333333333,5.033116666666667,5.03645,5.039783333333333,5.043116666666666,5.046449999999999,5.049783333333334,5.053116666666667,5.05645,5.059783333333333,5.063116666666667,5.066450000000001,5.0697833333333335,5.0731166666666665,5.0764499999999995,5.079783333333333,5.083116666666667,5.08645,5.089783333333333,5.093116666666666,5.09645,5.099783333333334,5.103116666666667,5.10645,5.109783333333334,5.1131166666666665,5.11645,5.119783333333333,5.123116666666666,5.12645,5.129783333333333,5.133116666666667,5.13645,5.139783333333333,5.143116666666667,5.14645,5.149783333333334,5.153116666666667,5.15645,5.159783333333333,5.163116666666666,5.16645,5.169783333333333,5.173116666666667,5.17645,5.179783333333333,5.183116666666667,5.18645,5.189783333333334,5.193116666666667,5.19645,5.199783333333333,5.203116666666667,5.20645,5.209783333333333,5.213116666666666,5.21645,5.219783333333334,5.223116666666667,5.22645,5.229783333333333,5.233116666666667,5.2364500000000005,5.2397833333333335,5.243116666666666,5.246449999999999,5.249783333333334,5.253116666666667,5.25645,5.259783333333333,5.263116666666666,5.266450000000001,5.269783333333334,5.273116666666667,5.27645,5.279783333333333,5.283116666666667,5.28645,5.289783333333333,5.293116666666666,5.296449999999999,5.299783333333334,5.303116666666667,5.30645,5.309783333333333,5.313116666666667,5.316450000000001,5.3197833333333335,5.3231166666666665,5.3264499999999995,5.329783333333333,5.333116666666667,5.33645,5.339783333333333,5.343116666666666,5.34645,5.349783333333334,5.353116666666667,5.35645,5.359783333333334,5.3631166666666665,5.36645,5.369783333333333,5.373116666666666,5.37645,5.379783333333333,5.383116666666667,5.38645,5.389783333333333,5.393116666666667,5.39645,5.399783333333334,5.403116666666667,5.40645,5.409783333333333,5.413116666666666,5.41645,5.419783333333333,5.423116666666667,5.42645,5.429783333333333,5.433116666666667,5.43645,5.439783333333334,5.443116666666667,5.44645,5.449783333333333,5.453116666666667,5.45645,5.459783333333333,5.463116666666666,5.46645,5.469783333333334,5.473116666666667,5.47645,5.479783333333333,5.483116666666667,5.4864500000000005,5.4897833333333335,5.493116666666666,5.496449999999999,5.499783333333334,5.503116666666667,5.50645,5.509783333333333,5.513116666666666,5.516450000000001,5.519783333333334,5.523116666666667,5.52645,5.529783333333333,5.533116666666667,5.53645,5.539783333333333,5.543116666666666,5.546449999999999,5.549783333333334,5.553116666666667,5.55645,5.559783333333333,5.563116666666667,5.566450000000001,5.5697833333333335,5.5731166666666665,5.5764499999999995,5.579783333333333,5.583116666666667,5.58645,5.589783333333333,5.593116666666666,5.59645,5.599783333333334,5.603116666666667,5.60645,5.609783333333334,5.6131166666666665,5.61645,5.619783333333333,5.623116666666666,5.62645,5.629783333333333,5.633116666666667,5.63645,5.639783333333333,5.643116666666667,5.64645,5.649783333333334,5.653116666666667,5.65645,5.659783333333333,5.663116666666666,5.66645,5.669783333333333,5.673116666666667,5.67645,5.679783333333333,5.683116666666667,5.68645,5.689783333333334,5.693116666666667,5.69645,5.699783333333333,5.703116666666667,5.70645,5.709783333333333,5.713116666666666,5.71645,5.719783333333334,5.723116666666667,5.72645,5.729783333333333,5.733116666666667,5.7364500000000005,5.7397833333333335,5.743116666666666,5.746449999999999,5.749783333333334,5.753116666666667,5.75645,5.759783333333333,5.763116666666666,5.766450000000001,5.769783333333334,5.773116666666667,5.77645,5.779783333333333,5.783116666666667,5.78645,5.789783333333333,5.793116666666666,5.796449999999999,5.799783333333334,5.803116666666667,5.80645,5.809783333333333,5.813116666666667,5.816450000000001,5.8197833333333335,5.8231166666666665,5.8264499999999995,5.829783333333333,5.833116666666667,5.83645,5.839783333333333,5.843116666666666,5.84645,5.849783333333334,5.853116666666667,5.85645,5.859783333333334,5.8631166666666665,5.86645,5.869783333333333,5.873116666666666,5.87645,5.879783333333333,5.883116666666667,5.88645,5.889783333333333,5.893116666666667,5.89645,5.899783333333334,5.903116666666667,5.90645,5.909783333333333,5.913116666666666,5.91645,5.919783333333333,5.923116666666667,5.92645,5.929783333333333,5.933116666666667,5.93645,5.939783333333334,5.943116666666667,5.94645,5.949783333333333,5.953116666666667,5.95645,5.959783333333333,5.963116666666666,5.96645,5.969783333333334,5.973116666666667,5.97645,5.979783333333333,5.983116666666667,5.9864500000000005,5.9897833333333335,5.993116666666666,5.996449999999999,5.999783333333334,6.003116666666667,6.00645,6.009783333333333,6.013116666666666,6.016450000000001,6.019783333333334,6.023116666666667,6.02645,6.029783333333333,6.033116666666667,6.03645,6.039783333333333,6.043116666666666,6.046449999999999,6.049783333333334,6.053116666666667,6.05645,6.059783333333333,6.063116666666667,6.066450000000001,6.0697833333333335,6.0731166666666665,6.0764499999999995,6.079783333333333,6.083116666666667,6.08645,6.089783333333333,6.093116666666666,6.09645,6.099783333333334,6.103116666666667,6.10645,6.109783333333334,6.1131166666666665,6.11645,6.119783333333333,6.123116666666666,6.12645,6.129783333333333,6.133116666666667,6.13645,6.139783333333333,6.143116666666667,6.14645,6.149783333333334,6.153116666666667,6.15645,6.159783333333333,6.163116666666666,6.16645,6.169783333333333,6.173116666666667,6.17645,6.179783333333333,6.183116666666667,6.18645,6.189783333333334,6.193116666666667,6.19645,6.199783333333333,6.203116666666667,6.20645,6.209783333333333,6.213116666666666,6.21645,6.219783333333334,6.223116666666667,6.22645,6.229783333333333,6.233116666666667,6.2364500000000005,6.2397833333333335,6.243116666666666,6.246449999999999,6.249783333333334,6.253116666666667,6.25645,6.259783333333333,6.263116666666666,6.266450000000001,6.269783333333334,6.273116666666667,6.27645,6.279783333333333,6.283116666666667,6.28645,6.289783333333333,6.293116666666666,6.296449999999999,6.299783333333334,6.303116666666667,6.30645,6.309783333333333,6.313116666666667,6.316450000000001,6.3197833333333335,6.3231166666666665,6.3264499999999995,6.329783333333333,6.333116666666667,6.33645,6.339783333333333,6.343116666666666,6.34645,6.349783333333334,6.353116666666667,6.35645,6.359783333333334,6.3631166666666665,6.36645,6.369783333333333,6.373116666666666,6.37645,6.379783333333333,6.383116666666667,6.38645,6.389783333333333,6.393116666666667,6.39645,6.399783333333334,6.403116666666667,6.40645,6.409783333333333,6.413116666666666,6.41645,6.419783333333333,6.423116666666667,6.42645,6.429783333333333,6.433116666666667,6.43645,6.439783333333334,6.443116666666667,6.44645,6.449783333333333,6.453116666666667,6.45645,6.459783333333333,6.463116666666666,6.46645,6.469783333333334,6.473116666666667,6.47645,6.479783333333333,6.483116666666667,6.4864500000000005,6.4897833333333335,6.493116666666666,6.496449999999999,6.499783333333334,6.503116666666667,6.50645,6.509783333333333,6.513116666666666,6.516450000000001,6.519783333333334,6.523116666666667,6.52645,6.529783333333333,6.533116666666667,6.53645,6.539783333333333,6.543116666666666,6.546449999999999,6.549783333333334,6.553116666666667,6.55645,6.559783333333333,6.563116666666667,6.566450000000001,6.5697833333333335,6.5731166666666665,6.5764499999999995,6.579783333333333,6.583116666666667,6.58645,6.589783333333333,6.593116666666666,6.59645,6.599783333333334,6.603116666666667,6.60645,6.609783333333334,6.6131166666666665,6.61645,6.619783333333333,6.623116666666666,6.62645,6.629783333333333,6.633116666666667,6.63645,6.639783333333333,6.643116666666667,6.64645,6.649783333333334,6.653116666666667,6.65645,6.659783333333333,6.663116666666666,6.66645,6.669783333333333,6.673116666666667,6.67645,6.679783333333333,6.683116666666667,6.68645,6.689783333333334,6.693116666666667,6.69645,6.699783333333333,6.703116666666667,6.70645,6.709783333333333,6.713116666666666,6.71645,6.719783333333334,6.723116666666667,6.72645,6.729783333333333,6.733116666666667,6.7364500000000005,6.7397833333333335,6.743116666666666,6.746449999999999,6.749783333333334,6.753116666666667,6.75645,6.759783333333333,6.763116666666666,6.766450000000001,6.769783333333334,6.773116666666667,6.77645,6.779783333333333,6.783116666666667,6.78645,6.789783333333333,6.793116666666666,6.796449999999999,6.799783333333334,6.803116666666667,6.80645,6.809783333333333,6.813116666666667,6.816450000000001,6.8197833333333335,6.8231166666666665,6.8264499999999995,6.829783333333333,6.833116666666667,6.83645,6.839783333333333,6.843116666666666,6.84645,6.849783333333334,6.853116666666667,6.85645,6.859783333333334,6.8631166666666665,6.86645,6.869783333333333,6.873116666666666,6.87645,6.879783333333333,6.883116666666667,6.88645,6.889783333333333,6.893116666666667,6.89645,6.899783333333334,6.903116666666667,6.90645,6.909783333333333,6.913116666666666,6.91645,6.919783333333333,6.923116666666667,6.92645,6.929783333333333,6.933116666666667,6.93645,6.939783333333334,6.943116666666667,6.94645,6.949783333333333,6.953116666666667,6.95645,6.959783333333333,6.963116666666666,6.96645,6.969783333333334,6.973116666666667,6.97645,6.979783333333333,6.983116666666667,6.9864500000000005,6.9897833333333335,6.993116666666666,6.996449999999999,6.999783333333334,7.003116666666667,7.00645,7.009783333333333,7.013116666666666,7.016450000000001,7.019783333333334,7.023116666666667,7.02645,7.029783333333333,7.033116666666667,7.03645,7.039783333333333,7.043116666666666,7.046449999999999,7.049783333333334,7.053116666666667,7.05645,7.059783333333333,7.063116666666667,7.066450000000001,7.0697833333333335,7.0731166666666665,7.0764499999999995,7.079783333333333,7.083116666666667,7.08645,7.089783333333333,7.093116666666666,7.09645,7.099783333333334,7.103116666666667,7.10645,7.109783333333334,7.1131166666666665,7.11645,7.119783333333333,7.123116666666666,7.12645,7.129783333333333,7.133116666666667,7.13645,7.139783333333333,7.143116666666667,7.14645,7.149783333333334,7.153116666666667,7.15645,7.159783333333333,7.163116666666666,7.16645,7.169783333333333,7.173116666666667,7.17645,7.179783333333333,7.183116666666667,7.18645,7.189783333333334,7.193116666666667,7.19645,7.199783333333333,7.203116666666667,7.20645,7.209783333333333,7.213116666666666,7.21645,7.219783333333334,7.223116666666667,7.22645,7.229783333333333,7.233116666666667,7.2364500000000005,7.2397833333333335,7.243116666666666,7.246449999999999,7.249783333333334,7.253116666666667,7.25645,7.259783333333333,7.263116666666666,7.266450000000001,7.269783333333334,7.273116666666667,7.27645,7.279783333333333,7.283116666666667,7.28645,7.289783333333333,7.293116666666666,7.296449999999999,7.299783333333334,7.303116666666667,7.30645,7.309783333333333,7.313116666666667,7.316450000000001,7.3197833333333335,7.3231166666666665,7.3264499999999995,7.329783333333333,7.333116666666667,7.33645,7.339783333333333,7.343116666666666,7.34645,7.349783333333334,7.353116666666667,7.35645,7.359783333333334,7.3631166666666665,7.36645,7.369783333333333,7.373116666666666,7.37645,7.379783333333333,7.383116666666667,7.38645,7.389783333333333,7.393116666666667,7.39645,7.399783333333334,7.403116666666667,7.40645,7.409783333333333,7.413116666666666,7.41645,7.419783333333333,7.423116666666667,7.42645,7.429783333333333,7.433116666666667,7.43645,7.439783333333334,7.443116666666667,7.44645,7.449783333333333,7.453116666666667,7.45645,7.459783333333333,7.463116666666666,7.46645,7.469783333333334,7.473116666666667,7.47645,7.479783333333333,7.483116666666667,7.4864500000000005,7.4897833333333335,7.493116666666666,7.496449999999999,7.499783333333334,7.503116666666667,7.50645,7.509783333333333,7.513116666666666,7.516450000000001,7.519783333333334,7.523116666666667,7.52645,7.529783333333333,7.533116666666667,7.53645,7.539783333333333,7.543116666666666,7.546449999999999,7.549783333333334,7.553116666666667,7.55645,7.559783333333333,7.563116666666667,7.566450000000001,7.5697833333333335,7.5731166666666665,7.5764499999999995,7.579783333333333,7.583116666666667,7.58645,7.589783333333333,7.593116666666666,7.59645,7.599783333333334,7.603116666666667,7.60645,7.609783333333334,7.6131166666666665,7.61645,7.619783333333333,7.623116666666666,7.62645,7.629783333333333,7.633116666666667,7.63645,7.639783333333333,7.643116666666667,7.64645,7.649783333333334,7.653116666666667,7.65645,7.659783333333333,7.663116666666666,7.66645,7.669783333333333,7.673116666666667,7.67645,7.679783333333333,7.683116666666667,7.68645,7.689783333333334,7.693116666666667,7.69645,7.699783333333333,7.703116666666667,7.70645,7.709783333333333,7.713116666666666,7.71645,7.719783333333334,7.723116666666667,7.72645,7.729783333333333,7.733116666666667,7.7364500000000005,7.7397833333333335,7.743116666666666,7.746449999999999,7.749783333333334,7.753116666666667,7.75645,7.759783333333333,7.763116666666666,7.766450000000001,7.769783333333334,7.773116666666667,7.77645,7.779783333333333,7.783116666666667,7.78645,7.789783333333333,7.793116666666666,7.796449999999999,7.799783333333334,7.803116666666667,7.80645,7.809783333333333,7.813116666666667,7.816450000000001,7.8197833333333335,7.8231166666666665,7.8264499999999995,7.829783333333333,7.833116666666667,7.83645,7.839783333333333,7.843116666666666,7.84645,7.849783333333334,7.853116666666667,7.85645,7.859783333333334,7.8631166666666665,7.86645,7.869783333333333,7.873116666666666,7.87645,7.879783333333333,7.883116666666667,7.88645,7.889783333333333,7.893116666666667,7.89645,7.899783333333334,7.903116666666667,7.90645,7.909783333333333,7.913116666666666,7.91645,7.919783333333333,7.923116666666667,7.92645,7.929783333333333,7.933116666666667,7.93645,7.939783333333334,7.943116666666667,7.94645,7.949783333333333,7.953116666666667,7.95645,7.959783333333333,7.963116666666666,7.96645,7.969783333333334,7.973116666666667,7.97645,7.979783333333333,7.983116666666667,7.9864500000000005,7.9897833333333335,7.993116666666666,7.996449999999999,7.999783333333334,8.003116666666667,8.00645,8.009783333333333,8.013116666666667,8.01645,8.019783333333333,8.023116666666667,8.02645,8.029783333333333,8.033116666666666,8.03645,8.039783333333334,8.043116666666666,8.04645,8.049783333333334,8.053116666666666,8.05645,8.059783333333334,8.063116666666666,8.06645,8.069783333333334,8.073116666666667,8.07645,8.079783333333333,8.083116666666667,8.086450000000001,8.089783333333333,8.093116666666667,8.096449999999999,8.099783333333333,8.103116666666667,8.10645,8.109783333333333,8.113116666666667,8.11645,8.119783333333334,8.123116666666666,8.12645,8.129783333333332,8.133116666666668,8.13645,8.139783333333334,8.143116666666666,8.14645,8.149783333333334,8.153116666666667,8.15645,8.159783333333333,8.163116666666665,8.166450000000001,8.169783333333333,8.173116666666667,8.176449999999999,8.179783333333333,8.183116666666667,8.18645,8.189783333333333,8.193116666666667,8.19645,8.199783333333334,8.203116666666666,8.20645,8.209783333333332,8.213116666666666,8.21645,8.219783333333334,8.223116666666666,8.22645,8.229783333333334,8.233116666666668,8.23645,8.239783333333333,8.243116666666667,8.24645,8.249783333333333,8.253116666666667,8.25645,8.259783333333333,8.263116666666667,8.26645,8.269783333333333,8.273116666666667,8.27645,8.279783333333333,8.283116666666666,8.28645,8.289783333333334,8.293116666666666,8.29645,8.299783333333334,8.303116666666666,8.30645,8.309783333333334,8.313116666666666,8.31645,8.319783333333334,8.323116666666667,8.32645,8.329783333333333,8.333116666666667,8.336450000000001,8.339783333333333,8.343116666666667,8.346449999999999,8.349783333333333,8.353116666666667,8.35645,8.359783333333333,8.363116666666667,8.36645,8.369783333333334,8.373116666666666,8.37645,8.379783333333332,8.383116666666668,8.38645,8.389783333333334,8.393116666666666,8.39645,8.399783333333334,8.403116666666667,8.40645,8.409783333333333,8.413116666666665,8.416450000000001,8.419783333333333,8.423116666666667,8.426449999999999,8.429783333333333,8.433116666666667,8.43645,8.439783333333333,8.443116666666667,8.44645,8.449783333333334,8.453116666666666,8.45645,8.459783333333332,8.463116666666666,8.46645,8.469783333333334,8.473116666666666,8.47645,8.479783333333334,8.483116666666668,8.48645,8.489783333333333,8.493116666666667,8.49645,8.499783333333333,8.503116666666667,8.50645,8.509783333333333,8.513116666666667,8.51645,8.519783333333333,8.523116666666667,8.52645,8.529783333333333,8.533116666666666,8.53645,8.539783333333332,8.543116666666666,8.54645,8.549783333333332,8.553116666666666,8.55645,8.559783333333334,8.563116666666668,8.56645,8.569783333333334,8.573116666666666,8.57645,8.579783333333333,8.583116666666665,8.586450000000001,8.589783333333333,8.593116666666667,8.59645,8.599783333333333,8.603116666666667,8.606449999999999,8.609783333333333,8.613116666666667,8.616449999999999,8.619783333333334,8.623116666666666,8.62645,8.629783333333334,8.633116666666666,8.63645,8.639783333333332,8.643116666666666,8.64645,8.649783333333334,8.653116666666667,8.65645,8.659783333333333,8.663116666666667,8.66645,8.669783333333333,8.673116666666665,8.676449999999999,8.679783333333335,8.683116666666667,8.68645,8.689783333333333,8.693116666666667,8.69645,8.699783333333333,8.703116666666666,8.706449999999998,8.709783333333332,8.713116666666668,8.71645,8.719783333333334,8.723116666666666,8.72645,8.729783333333334,8.733116666666666,8.73645,8.739783333333332,8.743116666666667,8.746450000000001,8.749783333333333,8.753116666666667,8.75645,8.759783333333333,8.763116666666667,8.766449999999999,8.769783333333333,8.773116666666665,8.77645,8.779783333333334,8.783116666666666,8.78645,8.789783333333332,8.793116666666666,8.79645,8.799783333333332,8.803116666666666,8.80645,8.809783333333334,8.813116666666668,8.81645,8.819783333333334,8.823116666666666,8.82645,8.829783333333333,8.833116666666665,8.836450000000001,8.839783333333333,8.843116666666667,8.84645,8.849783333333333,8.853116666666667,8.856449999999999,8.859783333333333,8.863116666666667,8.866449999999999,8.869783333333334,8.873116666666666,8.87645,8.879783333333334,8.883116666666666,8.88645,8.889783333333332,8.893116666666666,8.89645,8.899783333333334,8.903116666666667,8.90645,8.909783333333333,8.913116666666667,8.91645,8.919783333333333,8.923116666666665,8.926449999999999,8.929783333333335,8.933116666666667,8.93645,8.939783333333333,8.943116666666667,8.94645,8.949783333333333,8.953116666666666,8.956449999999998,8.959783333333332,8.963116666666668,8.96645,8.969783333333334,8.973116666666666,8.97645,8.979783333333334,8.983116666666666,8.98645,8.989783333333332,8.993116666666667,8.996450000000001,8.999783333333333,9.003116666666667,9.00645,9.009783333333333,9.013116666666667,9.016449999999999,9.019783333333333,9.023116666666665,9.02645,9.029783333333334,9.033116666666666,9.03645,9.039783333333332,9.043116666666666,9.04645,9.049783333333332,9.053116666666666,9.05645,9.059783333333334,9.063116666666668,9.06645,9.069783333333334,9.073116666666666,9.07645,9.079783333333333,9.083116666666665,9.086450000000001,9.089783333333333,9.093116666666667,9.09645,9.099783333333333,9.103116666666667,9.106449999999999,9.109783333333333,9.113116666666667,9.116449999999999,9.119783333333334,9.123116666666666,9.12645,9.129783333333334,9.133116666666666,9.13645,9.139783333333332,9.143116666666666,9.14645,9.149783333333334,9.153116666666667,9.15645,9.159783333333333,9.163116666666667,9.16645,9.169783333333333,9.173116666666665,9.176449999999999,9.179783333333335,9.183116666666667,9.18645,9.189783333333333,9.193116666666667,9.19645,9.199783333333333,9.203116666666666,9.206449999999998,9.209783333333332,9.213116666666668,9.21645,9.219783333333334,9.223116666666666,9.22645,9.229783333333334,9.233116666666666,9.23645,9.239783333333332,9.243116666666667,9.246450000000001,9.249783333333333,9.253116666666667,9.25645,9.259783333333333,9.263116666666667,9.266449999999999,9.269783333333333,9.273116666666665,9.27645,9.279783333333334,9.283116666666666,9.28645,9.289783333333332,9.293116666666666,9.29645,9.299783333333332,9.303116666666666,9.30645,9.309783333333334,9.313116666666668,9.31645,9.319783333333334,9.323116666666666,9.32645,9.329783333333333,9.333116666666665,9.336450000000001,9.339783333333333,9.343116666666667,9.34645,9.349783333333333,9.353116666666667,9.356449999999999,9.359783333333333,9.363116666666667,9.366449999999999,9.369783333333334,9.373116666666666,9.37645,9.379783333333334,9.383116666666666,9.38645,9.389783333333332,9.393116666666666,9.39645,9.399783333333334,9.403116666666667,9.40645,9.409783333333333,9.413116666666667,9.41645,9.419783333333333,9.423116666666665,9.426449999999999,9.429783333333335,9.433116666666667,9.43645,9.439783333333333,9.443116666666667,9.44645,9.449783333333333,9.453116666666666,9.456449999999998,9.459783333333332,9.463116666666668,9.46645,9.469783333333334,9.473116666666666,9.47645,9.479783333333334,9.483116666666666,9.48645,9.489783333333332,9.493116666666667,9.496450000000001,9.499783333333333,9.503116666666667,9.50645,9.509783333333333,9.513116666666667,9.516449999999999,9.519783333333333,9.523116666666665,9.52645,9.529783333333334,9.533116666666666,9.53645,9.539783333333332,9.543116666666666,9.54645,9.549783333333332,9.553116666666666,9.55645,9.559783333333334,9.563116666666668,9.56645,9.569783333333334,9.573116666666666,9.57645,9.579783333333333,9.583116666666665,9.586450000000001,9.589783333333333,9.593116666666667,9.59645,9.599783333333333,9.603116666666667,9.606449999999999,9.609783333333333,9.613116666666667,9.616449999999999,9.619783333333334,9.623116666666666,9.62645,9.629783333333334,9.633116666666666,9.63645,9.639783333333332,9.643116666666666,9.64645,9.649783333333334,9.653116666666667,9.65645,9.659783333333333,9.663116666666667,9.66645,9.669783333333333,9.673116666666665,9.676449999999999,9.679783333333335,9.683116666666667,9.68645,9.689783333333333,9.693116666666667,9.69645,9.699783333333333,9.703116666666666,9.706449999999998,9.709783333333332,9.713116666666668,9.71645,9.719783333333334,9.723116666666666,9.72645,9.729783333333334,9.733116666666666,9.73645,9.739783333333332,9.743116666666667,9.746450000000001,9.749783333333333,9.753116666666667,9.75645,9.759783333333333,9.763116666666667,9.766449999999999,9.769783333333333,9.773116666666665,9.77645,9.779783333333334,9.783116666666666,9.78645,9.789783333333332,9.793116666666666,9.79645,9.799783333333332,9.803116666666666,9.80645,9.809783333333334,9.813116666666668,9.81645,9.819783333333334,9.823116666666666,9.82645,9.829783333333333,9.833116666666665,9.836450000000001,9.839783333333333,9.843116666666667,9.84645,9.849783333333333,9.853116666666667,9.856449999999999,9.859783333333333,9.863116666666667,9.866449999999999,9.869783333333334,9.873116666666666,9.87645,9.879783333333334,9.883116666666666,9.88645,9.889783333333332,9.893116666666666,9.89645,9.899783333333334,9.903116666666667,9.90645,9.909783333333333,9.913116666666667,9.91645,9.919783333333333,9.923116666666665,9.926449999999999,9.929783333333335,9.933116666666667,9.93645,9.939783333333333,9.943116666666667,9.94645,9.949783333333333,9.953116666666666,9.956449999999998,9.959783333333332,9.963116666666668,9.96645,9.969783333333334,9.973116666666666,9.97645,9.979783333333334,9.983116666666666,9.98645,9.989783333333332,9.993116666666667,9.996450000000001,9.999783333333333,10.003116666666667,10.00645,10.009783333333333,10.013116666666667,10.016449999999999,10.019783333333333,10.023116666666665,10.02645,10.029783333333334,10.033116666666666,10.03645,10.039783333333332,10.043116666666666,10.04645,10.049783333333332,10.053116666666666,10.05645,10.059783333333334,10.063116666666668,10.06645,10.069783333333334,10.073116666666666,10.07645,10.079783333333333,10.083116666666665,10.086450000000001,10.089783333333333,10.093116666666667,10.09645,10.099783333333333,10.103116666666667,10.106449999999999,10.109783333333333,10.113116666666667,10.116449999999999,10.119783333333334,10.123116666666666,10.12645,10.129783333333334,10.133116666666666,10.13645,10.139783333333332,10.143116666666666,10.14645,10.149783333333334,10.153116666666667,10.15645,10.159783333333333,10.163116666666667,10.16645,10.169783333333333,10.173116666666665,10.176449999999999,10.179783333333335,10.183116666666667,10.18645,10.189783333333333,10.193116666666667,10.19645,10.199783333333333,10.203116666666666,10.206449999999998,10.209783333333332,10.213116666666668,10.21645,10.219783333333334,10.223116666666666,10.22645,10.229783333333334,10.233116666666666,10.23645,10.239783333333332,10.243116666666667,10.246450000000001,10.249783333333333,10.253116666666667,10.25645,10.259783333333333,10.263116666666667,10.266449999999999,10.269783333333333,10.273116666666665,10.27645,10.279783333333334,10.283116666666666,10.28645,10.289783333333332,10.293116666666666,10.29645,10.299783333333332,10.303116666666666,10.30645,10.309783333333334,10.313116666666668,10.31645,10.319783333333334,10.323116666666666,10.32645,10.329783333333333,10.333116666666665,10.336450000000001,10.339783333333333,10.343116666666667,10.34645,10.349783333333333,10.353116666666667,10.356449999999999,10.359783333333333,10.363116666666667,10.366449999999999,10.369783333333334,10.373116666666666,10.37645,10.379783333333334,10.383116666666666,10.38645,10.389783333333332,10.393116666666666,10.39645,10.399783333333334,10.403116666666667,10.40645,10.409783333333333,10.413116666666667,10.41645,10.419783333333333,10.423116666666665,10.426449999999999,10.429783333333335,10.433116666666667,10.43645,10.439783333333333,10.443116666666667,10.44645,10.449783333333333,10.453116666666666,10.456449999999998,10.459783333333332,10.463116666666668,10.46645,10.469783333333334,10.473116666666666,10.47645,10.479783333333334,10.483116666666666,10.48645,10.489783333333332,10.493116666666667,10.496450000000001,10.499783333333333,10.503116666666667,10.50645,10.509783333333333,10.513116666666667,10.516449999999999,10.519783333333333,10.523116666666665,10.52645,10.529783333333334,10.533116666666666,10.53645,10.539783333333332,10.543116666666666,10.54645,10.549783333333332,10.553116666666666,10.55645,10.559783333333334,10.563116666666668,10.56645,10.569783333333334,10.573116666666666,10.57645,10.579783333333333,10.583116666666665,10.586450000000001,10.589783333333333,10.593116666666667,10.59645,10.599783333333333,10.603116666666667,10.606449999999999,10.609783333333333,10.613116666666667,10.616449999999999,10.619783333333334,10.623116666666666,10.62645,10.629783333333334,10.633116666666666,10.63645,10.639783333333332,10.643116666666666,10.64645,10.649783333333334,10.653116666666667,10.65645,10.659783333333333,10.663116666666667,10.66645,10.669783333333333,10.673116666666665,10.676449999999999,10.679783333333335,10.683116666666667,10.68645,10.689783333333333,10.693116666666667,10.69645,10.699783333333333,10.703116666666666,10.706449999999998,10.709783333333332,10.713116666666668,10.71645,10.719783333333334,10.723116666666666,10.72645,10.729783333333334,10.733116666666666,10.73645,10.739783333333332,10.743116666666667,10.746450000000001,10.749783333333333,10.753116666666667,10.75645,10.759783333333333,10.763116666666667,10.766449999999999,10.769783333333333,10.773116666666665,10.77645,10.779783333333334,10.783116666666666,10.78645,10.789783333333332,10.793116666666666,10.79645,10.799783333333332,10.803116666666666,10.80645,10.809783333333334,10.813116666666668,10.81645,10.819783333333334,10.823116666666666,10.82645,10.829783333333333,10.833116666666665,10.836450000000001,10.839783333333333,10.843116666666667,10.84645,10.849783333333333,10.853116666666667,10.856449999999999,10.859783333333333,10.863116666666667,10.866449999999999,10.869783333333334,10.873116666666666,10.87645,10.879783333333334,10.883116666666666,10.88645,10.889783333333332,10.893116666666666,10.89645,10.899783333333334,10.903116666666667,10.90645,10.909783333333333,10.913116666666667,10.91645,10.919783333333333,10.923116666666665,10.926449999999999,10.929783333333335,10.933116666666667,10.93645,10.939783333333333,10.943116666666667,10.94645,10.949783333333333,10.953116666666666,10.956449999999998,10.959783333333332,10.963116666666668,10.96645,10.969783333333334,10.973116666666666,10.97645,10.979783333333334,10.983116666666666,10.98645,10.989783333333332,10.993116666666667,10.996450000000001,10.999783333333333,11.003116666666667,11.00645,11.009783333333333,11.013116666666667,11.016449999999999,11.019783333333333,11.023116666666665,11.02645,11.029783333333334,11.033116666666666,11.03645,11.039783333333332,11.043116666666666,11.04645,11.049783333333332,11.053116666666666,11.05645,11.059783333333334,11.063116666666668,11.06645,11.069783333333334,11.073116666666666,11.07645,11.079783333333333,11.083116666666665,11.086450000000001,11.089783333333333,11.093116666666667,11.09645,11.099783333333333,11.103116666666667,11.106449999999999,11.109783333333333,11.113116666666667,11.116449999999999,11.119783333333334,11.123116666666666,11.12645,11.129783333333334,11.133116666666666,11.13645,11.139783333333332,11.143116666666666,11.14645,11.149783333333334,11.153116666666667,11.15645,11.159783333333333,11.163116666666667,11.16645,11.169783333333333,11.173116666666665,11.176449999999999,11.179783333333335,11.183116666666667,11.18645,11.189783333333333,11.193116666666667,11.19645,11.199783333333333,11.203116666666666,11.206449999999998,11.209783333333332,11.213116666666668,11.21645,11.219783333333334,11.223116666666666,11.22645,11.229783333333334,11.233116666666666,11.23645,11.239783333333332,11.243116666666667,11.246450000000001,11.249783333333333,11.253116666666667,11.25645,11.259783333333333,11.263116666666667,11.266449999999999,11.269783333333333,11.273116666666665,11.27645,11.279783333333334,11.283116666666666,11.28645,11.289783333333332,11.293116666666666,11.29645,11.299783333333332,11.303116666666666,11.30645,11.309783333333334,11.313116666666668,11.31645,11.319783333333334,11.323116666666666,11.32645,11.329783333333333,11.333116666666665,11.336450000000001,11.339783333333333,11.343116666666667,11.34645,11.349783333333333,11.353116666666667,11.356449999999999,11.359783333333333,11.363116666666667,11.366449999999999,11.369783333333334,11.373116666666666,11.37645,11.379783333333334,11.383116666666666,11.38645,11.389783333333332,11.393116666666666,11.39645,11.399783333333334,11.403116666666667,11.40645,11.409783333333333,11.413116666666667,11.41645,11.419783333333333,11.423116666666665,11.426449999999999,11.429783333333335,11.433116666666667,11.43645,11.439783333333333,11.443116666666667,11.44645,11.449783333333333,11.453116666666666,11.456449999999998,11.459783333333332,11.463116666666668,11.46645,11.469783333333334,11.473116666666666,11.47645,11.479783333333334,11.483116666666666,11.48645,11.489783333333332,11.493116666666667,11.496450000000001,11.499783333333333,11.503116666666667,11.50645,11.509783333333333,11.513116666666667,11.516449999999999,11.519783333333333,11.523116666666665,11.52645,11.529783333333334,11.533116666666666,11.53645,11.539783333333332,11.543116666666666,11.54645,11.549783333333332,11.553116666666666,11.55645,11.559783333333334,11.563116666666668,11.56645,11.569783333333334,11.573116666666666,11.57645,11.579783333333333,11.583116666666665,11.586450000000001,11.589783333333333,11.593116666666667,11.59645,11.599783333333333,11.603116666666667,11.606449999999999,11.609783333333333,11.613116666666667,11.616449999999999,11.619783333333334,11.623116666666666,11.62645,11.629783333333334,11.633116666666666,11.63645,11.639783333333332,11.643116666666666,11.64645,11.649783333333334,11.653116666666667,11.65645,11.659783333333333,11.663116666666667,11.66645,11.669783333333333,11.673116666666665,11.676449999999999,11.679783333333335,11.683116666666667,11.68645,11.689783333333333,11.693116666666667,11.69645,11.699783333333333,11.703116666666666,11.706449999999998,11.709783333333332,11.713116666666668,11.71645,11.719783333333334,11.723116666666666,11.72645,11.729783333333334,11.733116666666666,11.73645,11.739783333333332,11.743116666666667,11.746450000000001,11.749783333333333,11.753116666666667,11.75645,11.759783333333333,11.763116666666667,11.766449999999999,11.769783333333333,11.773116666666665,11.77645,11.779783333333334,11.783116666666666,11.78645,11.789783333333332,11.793116666666666,11.79645,11.799783333333332,11.803116666666666,11.80645,11.809783333333334,11.813116666666668,11.81645,11.819783333333334,11.823116666666666,11.82645,11.829783333333333,11.833116666666665,11.836450000000001,11.839783333333333,11.843116666666667,11.84645,11.849783333333333,11.853116666666667,11.856449999999999,11.859783333333333,11.863116666666667,11.866449999999999,11.869783333333334,11.873116666666666,11.87645,11.879783333333334,11.883116666666666,11.88645,11.889783333333332,11.893116666666666,11.89645,11.899783333333334,11.903116666666667,11.90645,11.909783333333333,11.913116666666667,11.91645,11.919783333333333,11.923116666666665,11.926449999999999,11.929783333333335,11.933116666666667,11.93645,11.939783333333333,11.943116666666667,11.94645,11.949783333333333,11.953116666666666,11.956449999999998,11.959783333333332,11.963116666666668,11.96645,11.969783333333334,11.973116666666666,11.97645,11.979783333333334,11.983116666666666,11.98645,11.989783333333332,11.993116666666667,11.996450000000001,11.999783333333333,12.003116666666667,12.00645,12.009783333333333,12.013116666666667,12.016449999999999,12.019783333333333,12.023116666666665,12.02645,12.029783333333334,12.033116666666666,12.03645,12.039783333333332,12.043116666666666,12.04645,12.049783333333332,12.053116666666666,12.05645,12.059783333333334,12.063116666666668,12.06645,12.069783333333334,12.073116666666666,12.07645,12.079783333333333,12.083116666666665,12.086450000000001,12.089783333333333,12.093116666666667,12.09645,12.099783333333333,12.103116666666667,12.106449999999999,12.109783333333333,12.113116666666667,12.116449999999999,12.119783333333334,12.123116666666666,12.12645,12.129783333333334,12.133116666666666,12.13645,12.139783333333332,12.143116666666666,12.14645,12.149783333333334,12.153116666666667,12.15645,12.159783333333333,12.163116666666667,12.16645,12.169783333333333,12.173116666666665,12.176449999999999,12.179783333333335,12.183116666666667,12.18645,12.189783333333333,12.193116666666667,12.19645,12.199783333333333,12.203116666666666,12.206449999999998,12.209783333333332,12.213116666666668,12.21645,12.219783333333334,12.223116666666666,12.22645,12.229783333333334,12.233116666666666,12.23645,12.239783333333332,12.243116666666667,12.246450000000001,12.249783333333333,12.253116666666667,12.25645,12.259783333333333,12.263116666666667,12.266449999999999,12.269783333333333,12.273116666666665,12.27645,12.279783333333334,12.283116666666666,12.28645,12.289783333333332,12.293116666666666,12.29645,12.299783333333332,12.303116666666666,12.30645,12.309783333333334,12.313116666666668,12.31645,12.319783333333334,12.323116666666666,12.32645,12.329783333333333,12.333116666666665,12.336450000000001,12.339783333333333,12.343116666666667,12.34645,12.349783333333333,12.353116666666667,12.356449999999999,12.359783333333333,12.363116666666667,12.366449999999999,12.369783333333334,12.373116666666666,12.37645,12.379783333333334,12.383116666666666,12.38645,12.389783333333332,12.393116666666666,12.39645,12.399783333333334,12.403116666666667,12.40645,12.409783333333333,12.413116666666667,12.41645,12.419783333333333,12.423116666666665,12.426449999999999,12.429783333333335,12.433116666666667,12.43645,12.439783333333333,12.443116666666667,12.44645,12.449783333333333,12.453116666666666,12.456449999999998,12.459783333333332,12.463116666666668,12.46645,12.469783333333334,12.473116666666666,12.47645,12.479783333333334,12.483116666666666,12.48645,12.489783333333332,12.493116666666667,12.496450000000001,12.499783333333333,12.503116666666667,12.50645,12.509783333333333,12.513116666666667,12.516449999999999,12.519783333333333,12.523116666666665,12.52645,12.529783333333334,12.533116666666666,12.53645,12.539783333333332,12.543116666666666,12.54645,12.549783333333332,12.553116666666666,12.55645,12.559783333333334,12.563116666666668,12.56645,12.569783333333334,12.573116666666666,12.57645,12.579783333333333,12.583116666666665,12.586450000000001,12.589783333333333,12.593116666666667,12.59645,12.599783333333333,12.603116666666667,12.606449999999999,12.609783333333333,12.613116666666667,12.616449999999999,12.619783333333334,12.623116666666666,12.62645,12.629783333333334,12.633116666666666,12.63645,12.639783333333332,12.643116666666666,12.64645,12.649783333333334,12.653116666666667,12.65645,12.659783333333333,12.663116666666667,12.66645,12.669783333333333,12.673116666666665,12.676449999999999,12.679783333333335,12.683116666666667,12.68645,12.689783333333333,12.693116666666667,12.69645,12.699783333333333,12.703116666666666,12.706449999999998,12.709783333333332,12.713116666666668,12.71645,12.719783333333334,12.723116666666666,12.72645,12.729783333333334,12.733116666666666,12.73645,12.739783333333332,12.743116666666667,12.746450000000001,12.749783333333333,12.753116666666667,12.75645,12.759783333333333,12.763116666666667,12.766449999999999,12.769783333333333,12.773116666666665,12.77645,12.779783333333334,12.783116666666666,12.78645,12.789783333333332,12.793116666666666,12.79645,12.799783333333332,12.803116666666666,12.80645,12.809783333333334,12.813116666666668,12.81645,12.819783333333334,12.823116666666666,12.82645,12.829783333333333,12.833116666666665,12.836450000000001,12.839783333333333,12.843116666666667,12.84645,12.849783333333333,12.853116666666667,12.856449999999999,12.859783333333333,12.863116666666667,12.866449999999999,12.869783333333334,12.873116666666666,12.87645,12.879783333333334,12.883116666666666,12.88645,12.889783333333332,12.893116666666666,12.89645,12.899783333333334,12.903116666666667,12.90645,12.909783333333333,12.913116666666667,12.91645,12.919783333333333,12.923116666666665,12.926449999999999,12.929783333333335,12.933116666666667,12.93645,12.939783333333333,12.943116666666667,12.94645,12.949783333333333,12.953116666666666,12.956449999999998,12.959783333333332,12.963116666666668,12.96645,12.969783333333334,12.973116666666666,12.97645,12.979783333333334,12.983116666666666,12.98645,12.989783333333332,12.993116666666667,12.996450000000001,12.999783333333333,13.003116666666667,13.00645,13.009783333333333,13.013116666666667,13.016449999999999,13.019783333333333,13.023116666666665,13.02645,13.029783333333334,13.033116666666666,13.03645,13.039783333333332,13.043116666666666,13.04645,13.049783333333332,13.053116666666666,13.05645,13.059783333333334,13.063116666666668,13.06645,13.069783333333334,13.073116666666666,13.07645,13.079783333333333,13.083116666666665,13.086450000000001,13.089783333333333,13.093116666666667,13.09645,13.099783333333333,13.103116666666667,13.106449999999999,13.109783333333333,13.113116666666667,13.116449999999999,13.119783333333334,13.123116666666666,13.12645,13.129783333333334,13.133116666666666,13.13645,13.139783333333332,13.143116666666666,13.14645,13.149783333333334,13.153116666666667,13.15645,13.159783333333333,13.163116666666667,13.16645,13.169783333333333,13.173116666666665,13.176449999999999,13.179783333333335,13.183116666666667,13.18645,13.189783333333333,13.193116666666667,13.19645,13.199783333333333,13.203116666666666,13.206449999999998,13.209783333333332,13.213116666666668,13.21645,13.219783333333334,13.223116666666666,13.22645,13.229783333333334,13.233116666666666,13.23645,13.239783333333332,13.243116666666667,13.246450000000001,13.249783333333333,13.253116666666667,13.25645,13.259783333333333,13.263116666666667,13.266449999999999,13.269783333333333,13.273116666666665,13.27645,13.279783333333334,13.283116666666666,13.28645,13.289783333333332,13.293116666666666,13.29645,13.299783333333332,13.303116666666666,13.30645,13.309783333333334,13.313116666666668,13.31645,13.319783333333334,13.323116666666666,13.32645,13.329783333333333,13.333116666666665,13.336450000000001,13.339783333333333,13.343116666666667,13.34645,13.349783333333333,13.353116666666667,13.356449999999999,13.359783333333333,13.363116666666667,13.366449999999999,13.369783333333334,13.373116666666666,13.37645,13.379783333333334,13.383116666666666,13.38645,13.389783333333332,13.393116666666666,13.39645,13.399783333333334,13.403116666666667,13.40645,13.409783333333333,13.413116666666667,13.41645,13.419783333333333,13.423116666666665,13.426449999999999,13.429783333333335,13.433116666666667,13.43645,13.439783333333333,13.443116666666667,13.44645,13.449783333333333,13.453116666666666,13.456449999999998,13.459783333333332,13.463116666666668,13.46645,13.469783333333334,13.473116666666666,13.47645,13.479783333333334,13.483116666666666,13.48645,13.489783333333332,13.493116666666667,13.496450000000001,13.499783333333333,13.503116666666667,13.50645,13.509783333333333,13.513116666666667,13.516449999999999,13.519783333333333,13.523116666666665,13.52645,13.529783333333334,13.533116666666666,13.53645,13.539783333333332,13.543116666666666,13.54645,13.549783333333332,13.553116666666666,13.55645,13.559783333333334,13.563116666666668,13.56645,13.569783333333334,13.573116666666666,13.57645,13.579783333333333,13.583116666666665,13.586450000000001,13.589783333333333,13.593116666666667,13.59645,13.599783333333333,13.603116666666667,13.606449999999999,13.609783333333333,13.613116666666667,13.616449999999999,13.619783333333334,13.623116666666666,13.62645,13.629783333333334,13.633116666666666,13.63645,13.639783333333332,13.643116666666666,13.64645,13.649783333333334,13.653116666666667,13.65645,13.659783333333333,13.663116666666667,13.66645,13.669783333333333,13.673116666666665,13.676449999999999,13.679783333333335,13.683116666666667,13.68645,13.689783333333333,13.693116666666667,13.69645,13.699783333333333,13.703116666666666,13.706449999999998,13.709783333333332,13.713116666666668,13.71645,13.719783333333334,13.723116666666666,13.72645,13.729783333333334,13.733116666666666,13.73645,13.739783333333332,13.743116666666667,13.746450000000001,13.749783333333333,13.753116666666667,13.75645,13.759783333333333,13.763116666666667,13.766449999999999,13.769783333333333,13.773116666666665,13.77645,13.779783333333334,13.783116666666666,13.78645,13.789783333333332,13.793116666666666,13.79645,13.799783333333332,13.803116666666666,13.80645,13.809783333333334,13.813116666666668,13.81645,13.819783333333334,13.823116666666666,13.82645,13.829783333333333,13.833116666666665,13.836450000000001,13.839783333333333,13.843116666666667,13.84645,13.849783333333333,13.853116666666667,13.856449999999999,13.859783333333333,13.863116666666667,13.866449999999999,13.869783333333334,13.873116666666666,13.87645,13.879783333333334,13.883116666666666,13.88645,13.889783333333332,13.893116666666666,13.89645,13.899783333333334,13.903116666666667,13.90645,13.909783333333333,13.913116666666667,13.91645,13.919783333333333,13.923116666666665,13.926449999999999,13.929783333333335,13.933116666666667,13.93645,13.939783333333333,13.943116666666667,13.94645,13.949783333333333,13.953116666666666,13.956449999999998,13.959783333333332,13.963116666666668,13.96645,13.969783333333334,13.973116666666666,13.97645,13.979783333333334,13.983116666666666,13.98645,13.989783333333332,13.993116666666667,13.996450000000001,13.999783333333333,14.003116666666667,14.00645,14.009783333333333,14.013116666666667,14.016449999999999,14.019783333333333,14.023116666666665,14.02645,14.029783333333334,14.033116666666666,14.03645,14.039783333333332,14.043116666666666,14.04645,14.049783333333332,14.053116666666666,14.05645,14.059783333333334,14.063116666666668,14.06645,14.069783333333334,14.073116666666666,14.07645,14.079783333333333,14.083116666666665,14.086450000000001,14.089783333333333,14.093116666666667,14.09645,14.099783333333333,14.103116666666667,14.106449999999999,14.109783333333333,14.113116666666667,14.116449999999999,14.119783333333334,14.123116666666666,14.12645,14.129783333333334,14.133116666666666,14.13645,14.139783333333332,14.143116666666666,14.14645,14.149783333333334,14.153116666666667,14.15645,14.159783333333333,14.163116666666667,14.16645,14.169783333333333,14.173116666666665,14.176449999999999,14.179783333333335,14.183116666666667,14.18645,14.189783333333333,14.193116666666667,14.19645,14.199783333333333,14.203116666666666,14.206449999999998,14.209783333333332,14.213116666666668,14.21645,14.219783333333334,14.223116666666666,14.22645,14.229783333333334,14.233116666666666,14.23645,14.239783333333332,14.243116666666667,14.246450000000001,14.249783333333333,14.253116666666667,14.25645,14.259783333333333,14.263116666666667,14.266449999999999,14.269783333333333,14.273116666666665,14.27645,14.279783333333334,14.283116666666666,14.28645,14.289783333333332,14.293116666666666,14.29645,14.299783333333332,14.303116666666666,14.30645,14.309783333333334,14.313116666666668,14.31645,14.319783333333334,14.323116666666666,14.32645,14.329783333333333,14.333116666666665,14.336450000000001,14.339783333333333,14.343116666666667,14.34645,14.349783333333333,14.353116666666667,14.356449999999999,14.359783333333333,14.363116666666667,14.366449999999999,14.369783333333334,14.373116666666666,14.37645,14.379783333333334,14.383116666666666,14.38645,14.389783333333332,14.393116666666666,14.39645,14.399783333333334,14.403116666666667,14.40645,14.409783333333333,14.413116666666667,14.41645,14.419783333333333,14.423116666666665,14.426449999999999,14.429783333333335,14.433116666666667,14.43645,14.439783333333333,14.443116666666667,14.44645,14.449783333333333,14.453116666666666,14.456449999999998,14.459783333333332,14.463116666666668,14.46645,14.469783333333334,14.473116666666666,14.47645,14.479783333333334,14.483116666666666,14.48645,14.489783333333332,14.493116666666667,14.496450000000001,14.499783333333333,14.503116666666667,14.50645,14.509783333333333,14.513116666666667,14.516449999999999,14.519783333333333,14.523116666666665,14.52645,14.529783333333334,14.533116666666666,14.53645,14.539783333333332,14.543116666666666,14.54645,14.549783333333332,14.553116666666666,14.55645,14.559783333333334,14.563116666666668,14.56645,14.569783333333334,14.573116666666666,14.57645,14.579783333333333,14.583116666666665,14.586450000000001,14.589783333333333,14.593116666666667,14.59645,14.599783333333333,14.603116666666667,14.606449999999999,14.609783333333333,14.613116666666667,14.616449999999999,14.619783333333334,14.623116666666666,14.62645,14.629783333333334,14.633116666666666,14.63645,14.639783333333332,14.643116666666666,14.64645,14.649783333333334,14.653116666666667,14.65645,14.659783333333333,14.663116666666667,14.66645,14.669783333333333,14.673116666666665,14.676449999999999,14.679783333333335,14.683116666666667,14.68645,14.689783333333333,14.693116666666667,14.69645,14.699783333333333,14.703116666666666,14.706449999999998,14.709783333333332,14.713116666666668,14.71645,14.719783333333334,14.723116666666666,14.72645,14.729783333333334,14.733116666666666,14.73645,14.739783333333332,14.743116666666667,14.746450000000001,14.749783333333333,14.753116666666667,14.75645,14.759783333333333,14.763116666666667,14.766449999999999,14.769783333333333,14.773116666666665,14.77645,14.779783333333334,14.783116666666666,14.78645,14.789783333333332,14.793116666666666,14.79645,14.799783333333332,14.803116666666666,14.80645,14.809783333333334,14.813116666666668,14.81645,14.819783333333334,14.823116666666666,14.82645,14.829783333333333,14.833116666666665,14.836450000000001,14.839783333333333,14.843116666666667,14.84645,14.849783333333333,14.853116666666667,14.856449999999999,14.859783333333333,14.863116666666667,14.866449999999999,14.869783333333334,14.873116666666666,14.87645,14.879783333333334,14.883116666666666,14.88645,14.889783333333332,14.893116666666666,14.89645,14.899783333333334,14.903116666666667,14.90645,14.909783333333333,14.913116666666667,14.91645,14.919783333333333,14.923116666666665,14.926449999999999,14.929783333333335,14.933116666666667,14.93645,14.939783333333333,14.943116666666667,14.94645,14.949783333333333,14.953116666666666,14.956449999999998,14.959783333333332,14.963116666666668,14.96645,14.969783333333334,14.973116666666666,14.97645,14.979783333333334,14.983116666666666,14.98645,14.989783333333332,14.993116666666667,14.996450000000001,14.999783333333333,15.003116666666667,15.00645,15.009783333333333,15.013116666666667,15.016449999999999,15.019783333333333,15.023116666666665,15.02645,15.029783333333334,15.033116666666666,15.03645,15.039783333333332,15.043116666666666,15.04645,15.049783333333332,15.053116666666666,15.05645,15.059783333333334,15.063116666666668,15.06645,15.069783333333334,15.073116666666666,15.07645,15.079783333333333,15.083116666666665,15.086450000000001,15.089783333333333,15.093116666666667,15.09645,15.099783333333333,15.103116666666667,15.106449999999999,15.109783333333333,15.113116666666667,15.116449999999999,15.119783333333334,15.123116666666666,15.12645,15.129783333333334,15.133116666666666,15.13645,15.139783333333332,15.143116666666666,15.14645,15.149783333333334,15.153116666666667,15.15645,15.159783333333333,15.163116666666667,15.16645,15.169783333333333,15.173116666666665,15.176449999999999,15.179783333333335,15.183116666666667,15.18645,15.189783333333333,15.193116666666667,15.19645,15.199783333333333,15.203116666666666,15.206449999999998,15.209783333333332,15.213116666666668,15.21645,15.219783333333334,15.223116666666666,15.22645,15.229783333333334,15.233116666666666,15.23645,15.239783333333332,15.243116666666667,15.246450000000001,15.249783333333333,15.253116666666667,15.25645,15.259783333333333,15.263116666666667,15.266449999999999,15.269783333333333,15.273116666666665,15.27645,15.279783333333334,15.283116666666666,15.28645,15.289783333333332,15.293116666666666,15.29645,15.299783333333332,15.303116666666666,15.30645,15.309783333333334,15.313116666666668,15.31645,15.319783333333334,15.323116666666666,15.32645,15.329783333333333,15.333116666666665,15.336450000000001,15.339783333333333,15.343116666666667,15.34645,15.349783333333333,15.353116666666667,15.356449999999999,15.359783333333333,15.363116666666667,15.366449999999999,15.369783333333334,15.373116666666666,15.37645,15.379783333333334,15.383116666666666,15.38645,15.389783333333332,15.393116666666666,15.39645,15.399783333333334,15.403116666666667,15.40645,15.409783333333333,15.413116666666667,15.41645,15.419783333333333,15.423116666666665,15.426449999999999,15.429783333333335,15.433116666666667,15.43645,15.439783333333333,15.443116666666667,15.44645,15.449783333333333,15.453116666666666,15.456449999999998,15.459783333333332,15.463116666666668,15.46645,15.469783333333334,15.473116666666666,15.47645,15.479783333333334,15.483116666666666,15.48645,15.489783333333332,15.493116666666667,15.496450000000001,15.499783333333333,15.503116666666667,15.50645,15.509783333333333,15.513116666666667,15.516449999999999,15.519783333333333,15.523116666666665,15.52645,15.529783333333334,15.533116666666666,15.53645,15.539783333333332,15.543116666666666,15.54645,15.549783333333332,15.553116666666666,15.55645,15.559783333333334,15.563116666666668,15.56645,15.569783333333334,15.573116666666666,15.57645,15.579783333333333,15.583116666666665,15.586450000000001,15.589783333333333,15.593116666666667,15.59645,15.599783333333333,15.603116666666667,15.606449999999999,15.609783333333333,15.613116666666667,15.616449999999999,15.619783333333334,15.623116666666666,15.62645,15.629783333333334,15.633116666666666,15.63645,15.639783333333332,15.643116666666666,15.64645,15.649783333333334,15.653116666666667,15.65645,15.659783333333333,15.663116666666667,15.66645,15.669783333333333,15.673116666666665,15.676449999999999,15.679783333333335,15.683116666666667,15.68645,15.689783333333333,15.693116666666667,15.69645,15.699783333333333,15.703116666666666,15.706449999999998,15.709783333333332,15.713116666666668,15.71645,15.719783333333334,15.723116666666666,15.72645,15.729783333333334,15.733116666666666,15.73645,15.739783333333332,15.743116666666667,15.746450000000001,15.749783333333333,15.753116666666667,15.75645,15.759783333333333,15.763116666666667,15.766449999999999,15.769783333333333,15.773116666666665,15.77645,15.779783333333334,15.783116666666666,15.78645,15.789783333333332,15.793116666666666,15.79645,15.799783333333332,15.803116666666666,15.80645,15.809783333333334,15.813116666666668,15.81645,15.819783333333334,15.823116666666666,15.82645,15.829783333333333,15.833116666666665,15.836450000000001,15.839783333333333,15.843116666666667,15.84645,15.849783333333333,15.853116666666667,15.856449999999999,15.859783333333333,15.863116666666667,15.866449999999999,15.869783333333334,15.873116666666666,15.87645,15.879783333333334,15.883116666666666,15.88645,15.889783333333332,15.893116666666666,15.89645,15.899783333333334,15.903116666666667,15.90645,15.909783333333333,15.913116666666667,15.91645,15.919783333333333,15.923116666666665,15.926449999999999,15.929783333333335,15.933116666666667,15.93645,15.939783333333333,15.943116666666667,15.94645,15.949783333333333,15.953116666666666,15.956449999999998,15.959783333333332,15.963116666666668,15.96645,15.969783333333334,15.973116666666666,15.97645,15.979783333333334,15.983116666666666,15.98645,15.989783333333332,15.993116666666667,15.996450000000001,15.999783333333333,16.003116666666667,16.006449999999997,16.009783333333335,16.01311666666667,16.01645,16.019783333333333,16.023116666666667,16.02645,16.029783333333334,16.033116666666665,16.03645,16.039783333333332,16.043116666666666,16.04645,16.049783333333334,16.053116666666668,16.056449999999998,16.059783333333332,16.063116666666666,16.06645,16.069783333333334,16.073116666666667,16.07645,16.079783333333335,16.083116666666665,16.08645,16.089783333333333,16.093116666666667,16.09645,16.09978333333333,16.10311666666667,16.10645,16.109783333333333,16.113116666666667,16.11645,16.119783333333334,16.123116666666665,16.12645,16.129783333333332,16.133116666666666,16.13645,16.139783333333334,16.143116666666668,16.14645,16.149783333333332,16.153116666666666,16.15645,16.159783333333333,16.163116666666667,16.16645,16.169783333333335,16.173116666666665,16.17645,16.179783333333333,16.183116666666667,16.18645,16.18978333333333,16.193116666666665,16.196450000000002,16.199783333333333,16.203116666666666,16.20645,16.209783333333334,16.213116666666668,16.21645,16.219783333333332,16.223116666666666,16.22645,16.229783333333334,16.233116666666668,16.23645,16.23978333333333,16.243116666666666,16.24645,16.249783333333333,16.253116666666667,16.256449999999997,16.259783333333335,16.26311666666667,16.26645,16.269783333333333,16.273116666666667,16.27645,16.279783333333334,16.283116666666665,16.28645,16.289783333333332,16.293116666666666,16.29645,16.299783333333334,16.303116666666668,16.306449999999998,16.309783333333332,16.313116666666666,16.31645,16.319783333333334,16.323116666666667,16.32645,16.329783333333335,16.333116666666665,16.33645,16.339783333333333,16.343116666666667,16.34645,16.34978333333333,16.35311666666667,16.35645,16.359783333333333,16.363116666666667,16.36645,16.369783333333334,16.373116666666665,16.37645,16.379783333333332,16.383116666666666,16.38645,16.389783333333334,16.393116666666668,16.39645,16.399783333333332,16.403116666666666,16.40645,16.409783333333333,16.413116666666667,16.41645,16.419783333333335,16.423116666666665,16.42645,16.429783333333333,16.433116666666667,16.43645,16.43978333333333,16.443116666666665,16.446450000000002,16.449783333333333,16.453116666666666,16.45645,16.459783333333334,16.463116666666668,16.46645,16.469783333333332,16.473116666666666,16.47645,16.479783333333334,16.483116666666668,16.48645,16.48978333333333,16.493116666666666,16.49645,16.499783333333333,16.503116666666667,16.506449999999997,16.509783333333335,16.51311666666667,16.51645,16.519783333333333,16.523116666666667,16.52645,16.529783333333334,16.533116666666665,16.53645,16.539783333333332,16.543116666666666,16.54645,16.549783333333334,16.553116666666668,16.556449999999998,16.559783333333332,16.563116666666666,16.56645,16.569783333333334,16.573116666666667,16.57645,16.579783333333335,16.583116666666665,16.58645,16.589783333333333,16.593116666666667,16.59645,16.59978333333333,16.60311666666667,16.60645,16.609783333333333,16.613116666666667,16.61645,16.619783333333334,16.623116666666665,16.62645,16.629783333333332,16.633116666666666,16.63645,16.639783333333334,16.643116666666668,16.64645,16.649783333333332,16.653116666666666,16.65645,16.659783333333333,16.663116666666667,16.66645,16.669783333333335,16.673116666666665,16.67645,16.679783333333333,16.683116666666667,16.68645,16.68978333333333,16.693116666666665,16.696450000000002,16.699783333333333,16.703116666666666,16.70645,16.709783333333334,16.713116666666668,16.71645,16.719783333333332,16.723116666666666,16.72645,16.729783333333334,16.733116666666668,16.73645,16.73978333333333,16.743116666666666,16.74645,16.749783333333333,16.753116666666667,16.756449999999997,16.759783333333335,16.76311666666667,16.76645,16.769783333333333,16.773116666666667,16.77645,16.779783333333334,16.783116666666665,16.78645,16.789783333333332,16.793116666666666,16.79645,16.799783333333334,16.803116666666668,16.806449999999998,16.809783333333332,16.813116666666666,16.81645,16.819783333333334,16.823116666666667,16.82645,16.829783333333335,16.833116666666665,16.83645,16.839783333333333,16.843116666666667,16.84645,16.84978333333333,16.85311666666667,16.85645,16.859783333333333,16.863116666666667,16.86645,16.869783333333334,16.873116666666665,16.87645,16.879783333333332,16.883116666666666,16.88645,16.889783333333334,16.893116666666668,16.89645,16.899783333333332,16.903116666666666,16.90645,16.909783333333333,16.913116666666667,16.91645,16.919783333333335,16.923116666666665,16.92645,16.929783333333333,16.933116666666667,16.93645,16.93978333333333,16.943116666666665,16.946450000000002,16.949783333333333,16.953116666666666,16.95645,16.959783333333334,16.963116666666668,16.96645,16.969783333333332,16.973116666666666,16.97645,16.979783333333334,16.983116666666668,16.98645,16.98978333333333,16.993116666666666,16.99645,16.999783333333333,17.003116666666667,17.006449999999997,17.009783333333335,17.01311666666667,17.01645,17.019783333333333,17.023116666666667,17.02645,17.029783333333334,17.033116666666665,17.03645,17.039783333333332,17.043116666666666,17.04645,17.049783333333334,17.053116666666668,17.056449999999998,17.059783333333332,17.063116666666666,17.06645,17.06978333333333,17.073116666666667,17.07645,17.079783333333335,17.08311666666667,17.08645,17.089783333333333,17.093116666666667,17.09645,17.099783333333335,17.103116666666665,17.10645,17.109783333333333,17.113116666666667,17.11645,17.11978333333333,17.123116666666665,17.12645,17.129783333333332,17.13311666666667,17.13645,17.139783333333334,17.143116666666668,17.14645,17.149783333333335,17.153116666666666,17.15645,17.159783333333333,17.163116666666667,17.16645,17.16978333333333,17.173116666666665,17.17645,17.179783333333333,17.183116666666667,17.186449999999997,17.18978333333333,17.193116666666665,17.196450000000002,17.199783333333336,17.203116666666666,17.20645,17.209783333333334,17.213116666666668,17.216450000000002,17.219783333333332,17.223116666666666,17.22645,17.229783333333334,17.233116666666668,17.236449999999998,17.23978333333333,17.243116666666666,17.24645,17.249783333333333,17.253116666666664,17.256449999999997,17.259783333333335,17.26311666666667,17.266450000000003,17.269783333333333,17.273116666666667,17.27645,17.279783333333334,17.28311666666667,17.28645,17.289783333333332,17.293116666666666,17.29645,17.299783333333334,17.303116666666664,17.306449999999998,17.309783333333332,17.313116666666666,17.31645,17.31978333333333,17.323116666666667,17.32645,17.329783333333335,17.33311666666667,17.33645,17.339783333333333,17.343116666666667,17.34645,17.349783333333335,17.353116666666665,17.35645,17.359783333333333,17.363116666666667,17.36645,17.36978333333333,17.373116666666665,17.37645,17.379783333333332,17.38311666666667,17.38645,17.389783333333334,17.393116666666668,17.39645,17.399783333333335,17.403116666666666,17.40645,17.409783333333333,17.413116666666667,17.41645,17.41978333333333,17.423116666666665,17.42645,17.429783333333333,17.433116666666667,17.436449999999997,17.43978333333333,17.443116666666665,17.446450000000002,17.449783333333336,17.453116666666666,17.45645,17.459783333333334,17.463116666666668,17.466450000000002,17.469783333333332,17.473116666666666,17.47645,17.479783333333334,17.483116666666668,17.486449999999998,17.48978333333333,17.493116666666666,17.49645,17.499783333333333,17.503116666666664,17.506449999999997,17.509783333333335,17.51311666666667,17.516450000000003,17.519783333333333,17.523116666666667,17.52645,17.529783333333334,17.53311666666667,17.53645,17.539783333333332,17.543116666666666,17.54645,17.549783333333334,17.553116666666664,17.556449999999998,17.559783333333332,17.563116666666666,17.56645,17.56978333333333,17.573116666666667,17.57645,17.579783333333335,17.58311666666667,17.58645,17.589783333333333,17.593116666666667,17.59645,17.599783333333335,17.603116666666665,17.60645,17.609783333333333,17.613116666666667,17.61645,17.61978333333333,17.623116666666665,17.62645,17.629783333333332,17.63311666666667,17.63645,17.639783333333334,17.643116666666668,17.64645,17.649783333333335,17.653116666666666,17.65645,17.659783333333333,17.663116666666667,17.66645,17.66978333333333,17.673116666666665,17.67645,17.679783333333333,17.683116666666667,17.686449999999997,17.68978333333333,17.693116666666665,17.696450000000002,17.699783333333336,17.703116666666666,17.70645,17.709783333333334,17.713116666666668,17.716450000000002,17.719783333333332,17.723116666666666,17.72645,17.729783333333334,17.733116666666668,17.736449999999998,17.73978333333333,17.743116666666666,17.74645,17.749783333333333,17.753116666666664,17.756449999999997,17.759783333333335,17.76311666666667,17.766450000000003,17.769783333333333,17.773116666666667,17.77645,17.779783333333334,17.78311666666667,17.78645,17.789783333333332,17.793116666666666,17.79645,17.799783333333334,17.803116666666664,17.806449999999998,17.809783333333332,17.813116666666666,17.81645,17.81978333333333,17.823116666666667,17.82645,17.829783333333335,17.83311666666667,17.83645,17.839783333333333,17.843116666666667,17.84645,17.849783333333335,17.853116666666665,17.85645,17.859783333333333,17.863116666666667,17.86645,17.86978333333333,17.873116666666665,17.87645,17.879783333333332,17.88311666666667,17.88645,17.889783333333334,17.893116666666668,17.89645,17.899783333333335,17.903116666666666,17.90645,17.909783333333333,17.913116666666667,17.91645,17.91978333333333,17.923116666666665,17.92645,17.929783333333333,17.933116666666667,17.936449999999997,17.93978333333333,17.943116666666665,17.946450000000002,17.949783333333336,17.953116666666666,17.95645,17.959783333333334,17.963116666666668,17.966450000000002,17.969783333333332,17.973116666666666,17.97645,17.979783333333334,17.983116666666668,17.986449999999998,17.98978333333333,17.993116666666666,17.99645,17.999783333333333,18.003116666666664,18.006449999999997,18.009783333333335,18.01311666666667,18.016450000000003,18.019783333333333,18.023116666666667,18.02645,18.029783333333334,18.03311666666667,18.03645,18.039783333333332,18.043116666666666,18.04645,18.049783333333334,18.053116666666664,18.056449999999998,18.059783333333332,18.063116666666666,18.06645,18.06978333333333,18.073116666666667,18.07645,18.079783333333335,18.08311666666667,18.08645,18.089783333333333,18.093116666666667,18.09645,18.099783333333335,18.103116666666665,18.10645,18.109783333333333,18.113116666666667,18.11645,18.11978333333333,18.123116666666665,18.12645,18.129783333333332,18.13311666666667,18.13645,18.139783333333334,18.143116666666668,18.14645,18.149783333333335,18.153116666666666,18.15645,18.159783333333333,18.163116666666667,18.16645,18.16978333333333,18.173116666666665,18.17645,18.179783333333333,18.183116666666667,18.186449999999997,18.18978333333333,18.193116666666665,18.196450000000002,18.199783333333336,18.203116666666666,18.20645,18.209783333333334,18.213116666666668,18.216450000000002,18.219783333333332,18.223116666666666,18.22645,18.229783333333334,18.233116666666668,18.236449999999998,18.23978333333333,18.243116666666666,18.24645,18.249783333333333,18.253116666666664,18.256449999999997,18.259783333333335,18.26311666666667,18.266450000000003,18.269783333333333,18.273116666666667,18.27645,18.279783333333334,18.28311666666667,18.28645,18.289783333333332,18.293116666666666,18.29645,18.299783333333334,18.303116666666664,18.306449999999998,18.309783333333332,18.313116666666666,18.31645,18.31978333333333,18.323116666666667,18.32645,18.329783333333335,18.33311666666667,18.33645,18.339783333333333,18.343116666666667,18.34645,18.349783333333335,18.353116666666665,18.35645,18.359783333333333,18.363116666666667,18.36645,18.36978333333333,18.373116666666665,18.37645,18.379783333333332,18.38311666666667,18.38645,18.389783333333334,18.393116666666668,18.39645,18.399783333333335,18.403116666666666,18.40645,18.409783333333333,18.413116666666667,18.41645,18.41978333333333,18.423116666666665,18.42645,18.429783333333333,18.433116666666667,18.436449999999997,18.43978333333333,18.443116666666665,18.446450000000002,18.449783333333336,18.453116666666666,18.45645,18.459783333333334,18.463116666666668,18.466450000000002,18.469783333333332,18.473116666666666,18.47645,18.479783333333334,18.483116666666668,18.486449999999998,18.48978333333333,18.493116666666666,18.49645,18.499783333333333,18.503116666666664,18.506449999999997,18.509783333333335,18.51311666666667,18.516450000000003,18.519783333333333,18.523116666666667,18.52645,18.529783333333334,18.53311666666667,18.53645,18.539783333333332,18.543116666666666,18.54645,18.549783333333334,18.553116666666664,18.556449999999998,18.559783333333332,18.563116666666666,18.56645,18.56978333333333,18.573116666666667,18.57645,18.579783333333335,18.58311666666667,18.58645,18.589783333333333,18.593116666666667,18.59645,18.599783333333335,18.603116666666665,18.60645,18.609783333333333,18.613116666666667,18.61645,18.61978333333333,18.623116666666665,18.62645,18.629783333333332,18.63311666666667,18.63645,18.639783333333334,18.643116666666668,18.64645,18.649783333333335,18.653116666666666,18.65645,18.659783333333333,18.663116666666667,18.66645,18.66978333333333,18.673116666666665,18.67645,18.679783333333333,18.683116666666667,18.686449999999997,18.68978333333333,18.693116666666665,18.696450000000002,18.699783333333336,18.703116666666666,18.70645,18.709783333333334,18.713116666666668,18.716450000000002,18.719783333333332,18.723116666666666,18.72645,18.729783333333334,18.733116666666668,18.736449999999998,18.73978333333333,18.743116666666666,18.74645,18.749783333333333,18.753116666666664,18.756449999999997,18.759783333333335,18.76311666666667,18.766450000000003,18.769783333333333,18.773116666666667,18.77645,18.779783333333334,18.78311666666667,18.78645,18.789783333333332,18.793116666666666,18.79645,18.799783333333334,18.803116666666664,18.806449999999998,18.809783333333332,18.813116666666666,18.81645,18.81978333333333,18.823116666666667,18.82645,18.829783333333335,18.83311666666667,18.83645,18.839783333333333,18.843116666666667,18.84645,18.849783333333335,18.853116666666665,18.85645,18.859783333333333,18.863116666666667,18.86645,18.86978333333333,18.873116666666665,18.87645,18.879783333333332,18.88311666666667,18.88645,18.889783333333334,18.893116666666668,18.89645,18.899783333333335,18.903116666666666,18.90645,18.909783333333333,18.913116666666667,18.91645,18.91978333333333,18.923116666666665,18.92645,18.929783333333333,18.933116666666667,18.936449999999997,18.93978333333333,18.943116666666665,18.946450000000002,18.949783333333336,18.953116666666666,18.95645,18.959783333333334,18.963116666666668,18.966450000000002,18.969783333333332,18.973116666666666,18.97645,18.979783333333334,18.983116666666668,18.986449999999998,18.98978333333333,18.993116666666666,18.99645,18.999783333333333,19.003116666666664,19.006449999999997,19.009783333333335,19.01311666666667,19.016450000000003,19.019783333333333,19.023116666666667,19.02645,19.029783333333334,19.03311666666667,19.03645,19.039783333333332,19.043116666666666,19.04645,19.049783333333334,19.053116666666664,19.056449999999998,19.059783333333332,19.063116666666666,19.06645,19.06978333333333,19.073116666666667,19.07645,19.079783333333335,19.08311666666667,19.08645,19.089783333333333,19.093116666666667,19.09645,19.099783333333335,19.103116666666665,19.10645,19.109783333333333,19.113116666666667,19.11645,19.11978333333333,19.123116666666665,19.12645,19.129783333333332,19.13311666666667,19.13645,19.139783333333334,19.143116666666668,19.14645,19.149783333333335,19.153116666666666,19.15645,19.159783333333333,19.163116666666667,19.16645,19.16978333333333,19.173116666666665,19.17645,19.179783333333333,19.183116666666667,19.186449999999997,19.18978333333333,19.193116666666665,19.196450000000002,19.199783333333336,19.203116666666666,19.20645,19.209783333333334,19.213116666666668,19.216450000000002,19.219783333333332,19.223116666666666,19.22645,19.229783333333334,19.233116666666668,19.236449999999998,19.23978333333333,19.243116666666666,19.24645,19.249783333333333,19.253116666666664,19.256449999999997,19.259783333333335,19.26311666666667,19.266450000000003,19.269783333333333,19.273116666666667,19.27645,19.279783333333334,19.28311666666667,19.28645,19.289783333333332,19.293116666666666,19.29645,19.299783333333334,19.303116666666664,19.306449999999998,19.309783333333332,19.313116666666666,19.31645,19.31978333333333,19.323116666666667,19.32645,19.329783333333335,19.33311666666667,19.33645,19.339783333333333,19.343116666666667,19.34645,19.349783333333335,19.353116666666665,19.35645,19.359783333333333,19.363116666666667,19.36645,19.36978333333333,19.373116666666665,19.37645,19.379783333333332,19.38311666666667,19.38645,19.389783333333334,19.393116666666668,19.39645,19.399783333333335,19.403116666666666,19.40645,19.409783333333333,19.413116666666667,19.41645,19.41978333333333,19.423116666666665,19.42645,19.429783333333333,19.433116666666667,19.436449999999997,19.43978333333333,19.443116666666665,19.446450000000002,19.449783333333336,19.453116666666666,19.45645,19.459783333333334,19.463116666666668,19.466450000000002,19.469783333333332,19.473116666666666,19.47645,19.479783333333334,19.483116666666668,19.486449999999998,19.48978333333333,19.493116666666666,19.49645,19.499783333333333,19.503116666666664,19.506449999999997,19.509783333333335,19.51311666666667,19.516450000000003,19.519783333333333,19.523116666666667,19.52645,19.529783333333334,19.53311666666667,19.53645,19.539783333333332,19.543116666666666,19.54645,19.549783333333334,19.553116666666664,19.556449999999998,19.559783333333332,19.563116666666666,19.56645,19.56978333333333,19.573116666666667,19.57645,19.579783333333335,19.58311666666667,19.58645,19.589783333333333,19.593116666666667,19.59645,19.599783333333335,19.603116666666665,19.60645,19.609783333333333,19.613116666666667,19.61645,19.61978333333333,19.623116666666665,19.62645,19.629783333333332,19.63311666666667,19.63645,19.639783333333334,19.643116666666668,19.64645,19.649783333333335,19.653116666666666,19.65645,19.659783333333333,19.663116666666667,19.66645,19.66978333333333,19.673116666666665,19.67645,19.679783333333333,19.683116666666667,19.686449999999997,19.68978333333333,19.693116666666665,19.696450000000002,19.699783333333336,19.703116666666666,19.70645,19.709783333333334,19.713116666666668,19.716450000000002,19.719783333333332,19.723116666666666,19.72645,19.729783333333334,19.733116666666668,19.736449999999998,19.73978333333333,19.743116666666666,19.74645,19.749783333333333,19.753116666666664,19.756449999999997,19.759783333333335,19.76311666666667,19.766450000000003,19.769783333333333,19.773116666666667,19.77645,19.779783333333334,19.78311666666667,19.78645,19.789783333333332,19.793116666666666,19.79645,19.799783333333334,19.803116666666664,19.806449999999998,19.809783333333332,19.813116666666666,19.81645,19.81978333333333,19.823116666666667,19.82645,19.829783333333335,19.83311666666667,19.83645,19.839783333333333,19.843116666666667,19.84645,19.849783333333335,19.853116666666665,19.85645,19.859783333333333,19.863116666666667,19.86645,19.86978333333333,19.873116666666665,19.87645,19.879783333333332,19.88311666666667,19.88645,19.889783333333334,19.893116666666668,19.89645,19.899783333333335,19.903116666666666,19.90645,19.909783333333333,19.913116666666667,19.91645,19.91978333333333,19.923116666666665,19.92645,19.929783333333333,19.933116666666667,19.936449999999997,19.93978333333333,19.943116666666665,19.946450000000002,19.949783333333336,19.953116666666666,19.95645,19.959783333333334,19.963116666666668,19.966450000000002,19.969783333333332,19.973116666666666,19.97645,19.979783333333334,19.983116666666668,19.986449999999998,19.98978333333333,19.993116666666666,19.99645,19.999783333333333,20.003116666666664,20.006449999999997,20.009783333333335,20.01311666666667,20.016450000000003,20.019783333333333,20.023116666666667,20.02645,20.029783333333334,20.03311666666667,20.03645,20.039783333333332,20.043116666666666,20.04645,20.049783333333334,20.053116666666664,20.056449999999998,20.059783333333332,20.063116666666666,20.06645,20.06978333333333,20.073116666666667,20.07645,20.079783333333335,20.08311666666667,20.08645,20.089783333333333,20.093116666666667,20.09645,20.099783333333335,20.103116666666665,20.10645,20.109783333333333,20.113116666666667,20.11645,20.11978333333333,20.123116666666665,20.12645,20.129783333333332,20.13311666666667,20.13645,20.139783333333334,20.143116666666668,20.14645,20.149783333333335,20.153116666666666,20.15645,20.159783333333333,20.163116666666667,20.16645,20.16978333333333,20.173116666666665,20.17645,20.179783333333333,20.183116666666667,20.186449999999997,20.18978333333333,20.193116666666665,20.196450000000002,20.199783333333336,20.203116666666666,20.20645,20.209783333333334,20.213116666666668,20.216450000000002,20.219783333333332,20.223116666666666,20.22645,20.229783333333334,20.233116666666668,20.236449999999998,20.23978333333333,20.243116666666666,20.24645,20.249783333333333,20.253116666666664,20.256449999999997,20.259783333333335,20.26311666666667,20.266450000000003,20.269783333333333,20.273116666666667,20.27645,20.279783333333334,20.28311666666667,20.28645,20.289783333333332,20.293116666666666,20.29645,20.299783333333334,20.303116666666664,20.306449999999998,20.309783333333332,20.313116666666666,20.31645,20.31978333333333,20.323116666666667,20.32645,20.329783333333335,20.33311666666667,20.33645,20.339783333333333,20.343116666666667,20.34645,20.349783333333335,20.353116666666665,20.35645,20.359783333333333,20.363116666666667,20.36645,20.36978333333333,20.373116666666665,20.37645,20.379783333333332,20.38311666666667,20.38645,20.389783333333334,20.393116666666668,20.39645,20.399783333333335,20.403116666666666,20.40645,20.409783333333333,20.413116666666667,20.41645,20.41978333333333,20.423116666666665,20.42645,20.429783333333333,20.433116666666667,20.436449999999997,20.43978333333333,20.443116666666665,20.446450000000002,20.449783333333336,20.453116666666666,20.45645,20.459783333333334,20.463116666666668,20.466450000000002,20.469783333333332,20.473116666666666,20.47645,20.479783333333334,20.483116666666668,20.486449999999998,20.48978333333333,20.493116666666666,20.49645,20.499783333333333,20.503116666666664,20.506449999999997,20.509783333333335,20.51311666666667,20.516450000000003,20.519783333333333,20.523116666666667,20.52645,20.529783333333334,20.53311666666667,20.53645,20.539783333333332,20.543116666666666,20.54645,20.549783333333334,20.553116666666664,20.556449999999998,20.559783333333332,20.563116666666666,20.56645,20.56978333333333,20.573116666666667,20.57645,20.579783333333335,20.58311666666667,20.58645,20.589783333333333,20.593116666666667,20.59645,20.599783333333335,20.603116666666665,20.60645,20.609783333333333,20.613116666666667,20.61645,20.61978333333333,20.623116666666665,20.62645,20.629783333333332,20.63311666666667,20.63645,20.639783333333334,20.643116666666668,20.64645,20.649783333333335,20.653116666666666,20.65645,20.659783333333333,20.663116666666667,20.66645,20.66978333333333,20.673116666666665,20.67645,20.679783333333333,20.683116666666667,20.686449999999997,20.68978333333333,20.693116666666665,20.696450000000002,20.699783333333336,20.703116666666666,20.70645,20.709783333333334,20.713116666666668,20.716450000000002,20.719783333333332,20.723116666666666,20.72645,20.729783333333334,20.733116666666668,20.736449999999998,20.73978333333333,20.743116666666666,20.74645,20.749783333333333,20.753116666666664,20.756449999999997,20.759783333333335,20.76311666666667,20.766450000000003,20.769783333333333,20.773116666666667,20.77645,20.779783333333334,20.78311666666667,20.78645,20.789783333333332,20.793116666666666,20.79645,20.799783333333334,20.803116666666664,20.806449999999998,20.809783333333332,20.813116666666666,20.81645,20.81978333333333,20.823116666666667,20.82645,20.829783333333335,20.83311666666667,20.83645,20.839783333333333,20.843116666666667,20.84645,20.849783333333335,20.853116666666665,20.85645,20.859783333333333,20.863116666666667,20.86645,20.86978333333333,20.873116666666665,20.87645,20.879783333333332,20.88311666666667,20.88645,20.889783333333334,20.893116666666668,20.89645,20.899783333333335,20.903116666666666,20.90645,20.909783333333333,20.913116666666667,20.91645,20.91978333333333,20.923116666666665,20.92645,20.929783333333333,20.933116666666667,20.936449999999997,20.93978333333333,20.943116666666665,20.946450000000002,20.949783333333336,20.953116666666666,20.95645,20.959783333333334,20.963116666666668,20.966450000000002,20.969783333333332,20.973116666666666,20.97645,20.979783333333334,20.983116666666668,20.986449999999998,20.98978333333333,20.993116666666666,20.99645,20.999783333333333,21.003116666666664,21.006449999999997,21.009783333333335,21.01311666666667,21.016450000000003,21.019783333333333,21.023116666666667,21.02645,21.029783333333334,21.03311666666667,21.03645,21.039783333333332,21.043116666666666,21.04645,21.049783333333334,21.053116666666664,21.056449999999998,21.059783333333332,21.063116666666666,21.06645,21.06978333333333,21.073116666666667,21.07645,21.079783333333335,21.08311666666667,21.08645,21.089783333333333,21.093116666666667,21.09645,21.099783333333335,21.103116666666665,21.10645,21.109783333333333,21.113116666666667,21.11645,21.11978333333333,21.123116666666665,21.12645,21.129783333333332,21.13311666666667,21.13645,21.139783333333334,21.143116666666668,21.14645,21.149783333333335,21.153116666666666,21.15645,21.159783333333333,21.163116666666667,21.16645,21.16978333333333,21.173116666666665,21.17645,21.179783333333333,21.183116666666667,21.186449999999997,21.18978333333333,21.193116666666665,21.196450000000002,21.199783333333336,21.203116666666666,21.20645,21.209783333333334,21.213116666666668,21.216450000000002,21.219783333333332,21.223116666666666,21.22645,21.229783333333334,21.233116666666668,21.236449999999998,21.23978333333333,21.243116666666666,21.24645,21.249783333333333,21.253116666666664,21.256449999999997,21.259783333333335,21.26311666666667,21.266450000000003,21.269783333333333,21.273116666666667,21.27645,21.279783333333334,21.28311666666667,21.28645,21.289783333333332,21.293116666666666,21.29645,21.299783333333334,21.303116666666664,21.306449999999998,21.309783333333332,21.313116666666666,21.31645,21.31978333333333,21.323116666666667,21.32645,21.329783333333335,21.33311666666667,21.33645,21.339783333333333,21.343116666666667,21.34645,21.349783333333335,21.353116666666665,21.35645,21.359783333333333,21.363116666666667,21.36645,21.36978333333333,21.373116666666665,21.37645,21.379783333333332,21.38311666666667,21.38645,21.389783333333334,21.393116666666668,21.39645,21.399783333333335,21.403116666666666,21.40645,21.409783333333333,21.413116666666667,21.41645,21.41978333333333,21.423116666666665,21.42645,21.429783333333333,21.433116666666667,21.436449999999997,21.43978333333333,21.443116666666665,21.446450000000002,21.449783333333336,21.453116666666666,21.45645,21.459783333333334,21.463116666666668,21.466450000000002,21.469783333333332,21.473116666666666,21.47645,21.479783333333334,21.483116666666668,21.486449999999998,21.48978333333333,21.493116666666666,21.49645,21.499783333333333,21.503116666666664,21.506449999999997,21.509783333333335,21.51311666666667,21.516450000000003,21.519783333333333,21.523116666666667,21.52645,21.529783333333334,21.53311666666667,21.53645,21.539783333333332,21.543116666666666,21.54645,21.549783333333334,21.553116666666664,21.556449999999998,21.559783333333332,21.563116666666666,21.56645,21.56978333333333,21.573116666666667,21.57645,21.579783333333335,21.58311666666667,21.58645,21.589783333333333,21.593116666666667,21.59645,21.599783333333335,21.603116666666665,21.60645,21.609783333333333,21.613116666666667,21.61645,21.61978333333333,21.623116666666665,21.62645,21.629783333333332,21.63311666666667,21.63645,21.639783333333334,21.643116666666668,21.64645,21.649783333333335,21.653116666666666,21.65645,21.659783333333333,21.663116666666667,21.66645,21.66978333333333,21.673116666666665,21.67645,21.679783333333333,21.683116666666667,21.686449999999997,21.68978333333333,21.693116666666665,21.696450000000002,21.699783333333336,21.703116666666666,21.70645,21.709783333333334,21.713116666666668,21.716450000000002,21.719783333333332,21.723116666666666,21.72645,21.729783333333334,21.733116666666668,21.736449999999998,21.73978333333333,21.743116666666666,21.74645,21.749783333333333,21.753116666666664,21.756449999999997,21.759783333333335,21.76311666666667,21.766450000000003,21.769783333333333,21.773116666666667,21.77645,21.779783333333334,21.78311666666667,21.78645,21.789783333333332,21.793116666666666,21.79645,21.799783333333334,21.803116666666664,21.806449999999998,21.809783333333332,21.813116666666666,21.81645,21.81978333333333,21.823116666666667,21.82645,21.829783333333335,21.83311666666667,21.83645,21.839783333333333,21.843116666666667,21.84645,21.849783333333335,21.853116666666665,21.85645,21.859783333333333,21.863116666666667,21.86645,21.86978333333333,21.873116666666665,21.87645,21.879783333333332,21.88311666666667,21.88645,21.889783333333334,21.893116666666668,21.89645,21.899783333333335,21.903116666666666,21.90645,21.909783333333333,21.913116666666667,21.91645,21.91978333333333,21.923116666666665,21.92645,21.929783333333333,21.933116666666667,21.936449999999997,21.93978333333333,21.943116666666665,21.946450000000002,21.949783333333336,21.953116666666666,21.95645,21.959783333333334,21.963116666666668,21.966450000000002,21.969783333333332,21.973116666666666,21.97645,21.979783333333334,21.983116666666668,21.986449999999998,21.98978333333333,21.993116666666666,21.99645,21.999783333333333,22.003116666666664,22.006449999999997,22.009783333333335,22.01311666666667,22.016450000000003,22.019783333333333,22.023116666666667,22.02645,22.029783333333334,22.03311666666667,22.03645,22.039783333333332,22.043116666666666,22.04645,22.049783333333334,22.053116666666664,22.056449999999998,22.059783333333332,22.063116666666666,22.06645,22.06978333333333,22.073116666666667,22.07645,22.079783333333335,22.08311666666667,22.08645,22.089783333333333,22.093116666666667,22.09645,22.099783333333335,22.103116666666665,22.10645,22.109783333333333,22.113116666666667,22.11645,22.11978333333333,22.123116666666665,22.12645,22.129783333333332,22.13311666666667,22.13645,22.139783333333334,22.143116666666668,22.14645,22.149783333333335,22.153116666666666,22.15645,22.159783333333333,22.163116666666667,22.16645,22.16978333333333,22.173116666666665,22.17645,22.179783333333333,22.183116666666667,22.186449999999997,22.18978333333333,22.193116666666665,22.196450000000002,22.199783333333336,22.203116666666666,22.20645,22.209783333333334,22.213116666666668,22.216450000000002,22.219783333333332,22.223116666666666,22.22645,22.229783333333334,22.233116666666668,22.236449999999998,22.23978333333333,22.243116666666666,22.24645,22.249783333333333,22.253116666666664,22.256449999999997,22.259783333333335,22.26311666666667,22.266450000000003,22.269783333333333,22.273116666666667,22.27645,22.279783333333334,22.28311666666667,22.28645,22.289783333333332,22.293116666666666,22.29645,22.299783333333334,22.303116666666664,22.306449999999998,22.309783333333332,22.313116666666666,22.31645,22.31978333333333,22.323116666666667,22.32645,22.329783333333335,22.33311666666667,22.33645,22.339783333333333,22.343116666666667,22.34645,22.349783333333335,22.353116666666665,22.35645,22.359783333333333,22.363116666666667,22.36645,22.36978333333333,22.373116666666665,22.37645,22.379783333333332,22.38311666666667,22.38645,22.389783333333334,22.393116666666668,22.39645,22.399783333333335,22.403116666666666,22.40645,22.409783333333333,22.413116666666667,22.41645,22.41978333333333,22.423116666666665,22.42645,22.429783333333333,22.433116666666667,22.436449999999997,22.43978333333333,22.443116666666665,22.446450000000002,22.449783333333336,22.453116666666666,22.45645,22.459783333333334,22.463116666666668,22.466450000000002,22.469783333333332,22.473116666666666,22.47645,22.479783333333334,22.483116666666668,22.486449999999998,22.48978333333333,22.493116666666666,22.49645,22.499783333333333,22.503116666666664,22.506449999999997,22.509783333333335,22.51311666666667,22.516450000000003,22.519783333333333,22.523116666666667,22.52645,22.529783333333334,22.53311666666667,22.53645,22.539783333333332,22.543116666666666,22.54645,22.549783333333334,22.553116666666664,22.556449999999998,22.559783333333332,22.563116666666666,22.56645,22.56978333333333,22.573116666666667,22.57645,22.579783333333335,22.58311666666667,22.58645,22.589783333333333,22.593116666666667,22.59645,22.599783333333335,22.603116666666665,22.60645,22.609783333333333,22.613116666666667,22.61645,22.61978333333333,22.623116666666665,22.62645,22.629783333333332,22.63311666666667,22.63645,22.639783333333334,22.643116666666668,22.64645,22.649783333333335,22.653116666666666,22.65645,22.659783333333333,22.663116666666667,22.66645,22.66978333333333,22.673116666666665,22.67645,22.679783333333333,22.683116666666667,22.686449999999997,22.68978333333333,22.693116666666665,22.696450000000002,22.699783333333336,22.703116666666666,22.70645,22.709783333333334,22.713116666666668,22.716450000000002,22.719783333333332,22.723116666666666,22.72645,22.729783333333334,22.733116666666668,22.736449999999998,22.73978333333333,22.743116666666666,22.74645,22.749783333333333,22.753116666666664,22.756449999999997,22.759783333333335,22.76311666666667,22.766450000000003,22.769783333333333,22.773116666666667,22.77645,22.779783333333334,22.78311666666667,22.78645,22.789783333333332,22.793116666666666,22.79645,22.799783333333334,22.803116666666664,22.806449999999998,22.809783333333332,22.813116666666666,22.81645,22.81978333333333,22.823116666666667,22.82645,22.829783333333335,22.83311666666667,22.83645,22.839783333333333,22.843116666666667,22.84645,22.849783333333335,22.853116666666665,22.85645,22.859783333333333,22.863116666666667,22.86645,22.86978333333333,22.873116666666665,22.87645,22.879783333333332,22.88311666666667,22.88645,22.889783333333334,22.893116666666668,22.89645,22.899783333333335,22.903116666666666,22.90645,22.909783333333333,22.913116666666667,22.91645,22.91978333333333,22.923116666666665,22.92645,22.929783333333333,22.933116666666667,22.936449999999997,22.93978333333333,22.943116666666665,22.946450000000002,22.949783333333336,22.953116666666666,22.95645,22.959783333333334,22.963116666666668,22.966450000000002,22.969783333333332,22.973116666666666,22.97645,22.979783333333334,22.983116666666668,22.986449999999998,22.98978333333333,22.993116666666666,22.99645,22.999783333333333,23.003116666666664,23.006449999999997,23.009783333333335,23.01311666666667,23.016450000000003,23.019783333333333,23.023116666666667,23.02645,23.029783333333334,23.03311666666667,23.03645,23.039783333333332,23.043116666666666,23.04645,23.049783333333334,23.053116666666664,23.056449999999998,23.059783333333332,23.063116666666666,23.06645,23.06978333333333,23.073116666666667,23.07645,23.079783333333335,23.08311666666667,23.08645,23.089783333333333,23.093116666666667,23.09645,23.099783333333335,23.103116666666665,23.10645,23.109783333333333,23.113116666666667,23.11645,23.11978333333333,23.123116666666665,23.12645,23.129783333333332,23.13311666666667,23.13645,23.139783333333334,23.143116666666668,23.14645,23.149783333333335,23.153116666666666,23.15645,23.159783333333333,23.163116666666667,23.16645,23.16978333333333,23.173116666666665,23.17645,23.179783333333333,23.183116666666667,23.186449999999997,23.18978333333333,23.193116666666665,23.196450000000002,23.199783333333336,23.203116666666666,23.20645,23.209783333333334,23.213116666666668,23.216450000000002,23.219783333333332,23.223116666666666,23.22645,23.229783333333334,23.233116666666668,23.236449999999998,23.23978333333333,23.243116666666666,23.24645,23.249783333333333,23.253116666666664,23.256449999999997,23.259783333333335,23.26311666666667,23.266450000000003,23.269783333333333,23.273116666666667,23.27645,23.279783333333334,23.28311666666667,23.28645,23.289783333333332,23.293116666666666,23.29645,23.299783333333334,23.303116666666664,23.306449999999998,23.309783333333332,23.313116666666666,23.31645,23.31978333333333,23.323116666666667,23.32645,23.329783333333335,23.33311666666667,23.33645,23.339783333333333,23.343116666666667,23.34645,23.349783333333335,23.353116666666665,23.35645,23.359783333333333,23.363116666666667,23.36645,23.36978333333333,23.373116666666665,23.37645,23.379783333333332,23.38311666666667,23.38645,23.389783333333334,23.393116666666668,23.39645,23.399783333333335,23.403116666666666,23.40645,23.409783333333333,23.413116666666667,23.41645,23.41978333333333,23.423116666666665,23.42645,23.429783333333333,23.433116666666667,23.436449999999997,23.43978333333333,23.443116666666665,23.446450000000002,23.449783333333336,23.453116666666666,23.45645,23.459783333333334,23.463116666666668,23.466450000000002,23.469783333333332,23.473116666666666,23.47645,23.479783333333334,23.483116666666668,23.486449999999998,23.48978333333333,23.493116666666666,23.49645,23.499783333333333,23.503116666666664,23.506449999999997,23.509783333333335,23.51311666666667,23.516450000000003,23.519783333333333,23.523116666666667,23.52645,23.529783333333334,23.53311666666667,23.53645,23.539783333333332,23.543116666666666,23.54645,23.549783333333334,23.553116666666664,23.556449999999998,23.559783333333332,23.563116666666666,23.56645,23.56978333333333,23.573116666666667,23.57645,23.579783333333335,23.58311666666667,23.58645,23.589783333333333,23.593116666666667,23.59645,23.599783333333335,23.603116666666665,23.60645,23.609783333333333,23.613116666666667,23.61645,23.61978333333333,23.623116666666665,23.62645,23.629783333333332,23.63311666666667,23.63645,23.639783333333334,23.643116666666668,23.64645,23.649783333333335,23.653116666666666,23.65645,23.659783333333333,23.663116666666667,23.66645,23.66978333333333,23.673116666666665,23.67645,23.679783333333333,23.683116666666667,23.686449999999997,23.68978333333333,23.693116666666665,23.696450000000002,23.699783333333336,23.703116666666666,23.70645,23.709783333333334,23.713116666666668,23.716450000000002,23.719783333333332,23.723116666666666,23.72645,23.729783333333334,23.733116666666668,23.736449999999998,23.73978333333333,23.743116666666666,23.74645,23.749783333333333,23.753116666666664,23.756449999999997,23.759783333333335,23.76311666666667,23.766450000000003,23.769783333333333,23.773116666666667,23.77645,23.779783333333334,23.78311666666667,23.78645,23.789783333333332,23.793116666666666,23.79645,23.799783333333334,23.803116666666664,23.806449999999998,23.809783333333332,23.813116666666666,23.81645,23.81978333333333,23.823116666666667,23.82645,23.829783333333335,23.83311666666667,23.83645,23.839783333333333,23.843116666666667,23.84645,23.849783333333335,23.853116666666665,23.85645,23.859783333333333,23.863116666666667,23.86645,23.86978333333333,23.873116666666665,23.87645,23.879783333333332,23.88311666666667,23.88645,23.889783333333334,23.893116666666668,23.89645,23.899783333333335,23.903116666666666,23.90645,23.909783333333333,23.913116666666667,23.91645,23.91978333333333,23.923116666666665,23.92645,23.929783333333333,23.933116666666667,23.936449999999997,23.93978333333333,23.943116666666665,23.946450000000002,23.949783333333336,23.953116666666666,23.95645,23.959783333333334,23.963116666666668,23.966450000000002,23.969783333333332,23.973116666666666,23.97645,23.979783333333334,23.983116666666668,23.986449999999998,23.98978333333333,23.993116666666666,23.99645,23.999783333333333,24.003116666666664,24.006449999999997,24.009783333333335,24.01311666666667,24.016450000000003,24.019783333333333,24.023116666666667,24.02645,24.029783333333334,24.03311666666667,24.03645,24.039783333333332,24.043116666666666,24.04645,24.049783333333334,24.053116666666664,24.056449999999998,24.059783333333332,24.063116666666666,24.06645,24.06978333333333,24.073116666666667,24.07645,24.079783333333335,24.08311666666667,24.08645,24.089783333333333,24.093116666666667,24.09645,24.099783333333335,24.103116666666665,24.10645,24.109783333333333,24.113116666666667,24.11645,24.11978333333333,24.123116666666665,24.12645,24.129783333333332,24.13311666666667,24.13645,24.139783333333334,24.143116666666668,24.14645,24.149783333333335,24.153116666666666,24.15645,24.159783333333333,24.163116666666667,24.16645,24.16978333333333,24.173116666666665,24.17645,24.179783333333333,24.183116666666667,24.186449999999997,24.18978333333333,24.193116666666665,24.196450000000002,24.199783333333336,24.203116666666666,24.20645,24.209783333333334,24.213116666666668,24.216450000000002,24.219783333333332,24.223116666666666,24.22645,24.229783333333334,24.233116666666668,24.236449999999998,24.23978333333333,24.243116666666666,24.24645,24.249783333333333,24.253116666666664,24.256449999999997,24.259783333333335,24.26311666666667,24.266450000000003,24.269783333333333,24.273116666666667,24.27645,24.279783333333334,24.28311666666667,24.28645,24.289783333333332,24.293116666666666,24.29645,24.299783333333334,24.303116666666664,24.306449999999998,24.309783333333332,24.313116666666666,24.31645,24.31978333333333,24.323116666666667,24.32645,24.329783333333335,24.33311666666667,24.33645,24.339783333333333,24.343116666666667,24.34645,24.349783333333335,24.353116666666665,24.35645,24.359783333333333,24.363116666666667,24.36645,24.36978333333333,24.373116666666665,24.37645,24.379783333333332,24.38311666666667,24.38645,24.389783333333334,24.393116666666668,24.39645,24.399783333333335,24.403116666666666,24.40645,24.409783333333333,24.413116666666667,24.41645,24.41978333333333,24.423116666666665,24.42645,24.429783333333333,24.433116666666667,24.436449999999997,24.43978333333333,24.443116666666665,24.446450000000002,24.449783333333336,24.453116666666666,24.45645,24.459783333333334,24.463116666666668,24.466450000000002,24.469783333333332,24.473116666666666,24.47645,24.479783333333334,24.483116666666668,24.486449999999998,24.48978333333333,24.493116666666666,24.49645,24.499783333333333,24.503116666666664,24.506449999999997,24.509783333333335,24.51311666666667,24.516450000000003,24.519783333333333,24.523116666666667,24.52645,24.529783333333334,24.53311666666667,24.53645,24.539783333333332,24.543116666666666,24.54645,24.549783333333334,24.553116666666664,24.556449999999998,24.559783333333332,24.563116666666666,24.56645,24.56978333333333,24.573116666666667,24.57645,24.579783333333335,24.58311666666667,24.58645,24.589783333333333,24.593116666666667,24.59645,24.599783333333335,24.603116666666665,24.60645,24.609783333333333,24.613116666666667,24.61645,24.61978333333333,24.623116666666665,24.62645,24.629783333333332,24.63311666666667,24.63645,24.639783333333334,24.643116666666668,24.64645,24.649783333333335,24.653116666666666,24.65645,24.659783333333333,24.663116666666667,24.66645,24.66978333333333,24.673116666666665,24.67645,24.679783333333333,24.683116666666667,24.686449999999997,24.68978333333333,24.693116666666665,24.696450000000002,24.699783333333336,24.703116666666666,24.70645,24.709783333333334,24.713116666666668,24.716450000000002,24.719783333333332,24.723116666666666,24.72645,24.729783333333334,24.733116666666668,24.736449999999998,24.73978333333333,24.743116666666666,24.74645,24.749783333333333,24.753116666666664,24.756449999999997,24.759783333333335,24.76311666666667,24.766450000000003,24.769783333333333,24.773116666666667,24.77645,24.779783333333334,24.78311666666667,24.78645,24.789783333333332,24.793116666666666,24.79645,24.799783333333334,24.803116666666664,24.806449999999998,24.809783333333332,24.813116666666666,24.81645,24.81978333333333,24.823116666666667,24.82645,24.829783333333335,24.83311666666667,24.83645,24.839783333333333,24.843116666666667,24.84645,24.849783333333335,24.853116666666665,24.85645,24.859783333333333,24.863116666666667,24.86645,24.86978333333333,24.873116666666665,24.87645,24.879783333333332,24.88311666666667,24.88645,24.889783333333334,24.893116666666668,24.89645,24.899783333333335,24.903116666666666,24.90645,24.909783333333333,24.913116666666667,24.91645,24.91978333333333,24.923116666666665,24.92645,24.929783333333333,24.933116666666667,24.936449999999997,24.93978333333333,24.943116666666665,24.946450000000002,24.949783333333336,24.953116666666666,24.95645,24.959783333333334,24.963116666666668,24.966450000000002,24.969783333333332,24.973116666666666,24.97645,24.979783333333334,24.983116666666668,24.986449999999998,24.98978333333333,24.993116666666666,24.99645,24.999783333333333,25.003116666666664,25.006449999999997,25.009783333333335,25.01311666666667,25.016450000000003,25.019783333333333,25.023116666666667,25.02645,25.029783333333334,25.03311666666667,25.03645,25.039783333333332,25.043116666666666,25.04645,25.049783333333334,25.053116666666664,25.056449999999998,25.059783333333332,25.063116666666666,25.06645,25.06978333333333,25.073116666666667,25.07645,25.079783333333335,25.08311666666667,25.08645,25.089783333333333,25.093116666666667,25.09645,25.099783333333335,25.103116666666665,25.10645,25.109783333333333,25.113116666666667,25.11645,25.11978333333333,25.123116666666665,25.12645,25.129783333333332,25.13311666666667,25.13645,25.139783333333334,25.143116666666668,25.14645,25.149783333333335,25.153116666666666,25.15645,25.159783333333333,25.163116666666667,25.16645,25.16978333333333,25.173116666666665,25.17645,25.179783333333333,25.183116666666667,25.186449999999997,25.18978333333333,25.193116666666665,25.196450000000002,25.199783333333336,25.203116666666666,25.20645,25.209783333333334,25.213116666666668,25.216450000000002,25.219783333333332,25.223116666666666,25.22645,25.229783333333334,25.233116666666668,25.236449999999998,25.23978333333333,25.243116666666666,25.24645,25.249783333333333,25.253116666666664,25.256449999999997,25.259783333333335,25.26311666666667,25.266450000000003,25.269783333333333,25.273116666666667,25.27645,25.279783333333334,25.28311666666667,25.28645,25.289783333333332,25.293116666666666,25.29645,25.299783333333334,25.303116666666664,25.306449999999998,25.309783333333332,25.313116666666666,25.31645,25.31978333333333,25.323116666666667,25.32645,25.329783333333335,25.33311666666667,25.33645,25.339783333333333,25.343116666666667,25.34645,25.349783333333335,25.353116666666665,25.35645,25.359783333333333,25.363116666666667,25.36645,25.36978333333333,25.373116666666665,25.37645,25.379783333333332,25.38311666666667,25.38645,25.389783333333334,25.393116666666668,25.39645,25.399783333333335,25.403116666666666,25.40645,25.409783333333333,25.413116666666667,25.41645,25.41978333333333,25.423116666666665,25.42645,25.429783333333333,25.433116666666667,25.436449999999997,25.43978333333333,25.443116666666665,25.446450000000002,25.449783333333336,25.453116666666666,25.45645,25.459783333333334,25.463116666666668,25.466450000000002,25.469783333333332,25.473116666666666,25.47645,25.479783333333334,25.483116666666668,25.486449999999998,25.48978333333333,25.493116666666666,25.49645,25.499783333333333,25.503116666666664,25.506449999999997,25.509783333333335,25.51311666666667,25.516450000000003,25.519783333333333,25.523116666666667,25.52645,25.529783333333334,25.53311666666667,25.53645,25.539783333333332,25.543116666666666,25.54645,25.549783333333334,25.553116666666664,25.556449999999998,25.559783333333332,25.563116666666666,25.56645,25.56978333333333,25.573116666666667,25.57645,25.579783333333335,25.58311666666667,25.58645,25.589783333333333,25.593116666666667,25.59645,25.599783333333335,25.603116666666665,25.60645,25.609783333333333,25.613116666666667,25.61645,25.61978333333333,25.623116666666665,25.62645,25.629783333333332,25.63311666666667,25.63645,25.639783333333334,25.643116666666668,25.64645,25.649783333333335,25.653116666666666,25.65645,25.659783333333333,25.663116666666667,25.66645,25.66978333333333,25.673116666666665,25.67645,25.679783333333333,25.683116666666667,25.686449999999997,25.68978333333333,25.693116666666665,25.696450000000002,25.699783333333336,25.703116666666666,25.70645,25.709783333333334,25.713116666666668,25.716450000000002,25.719783333333332,25.723116666666666,25.72645,25.729783333333334,25.733116666666668,25.736449999999998,25.73978333333333,25.743116666666666,25.74645,25.749783333333333,25.753116666666664,25.756449999999997,25.759783333333335,25.76311666666667,25.766450000000003,25.769783333333333,25.773116666666667,25.77645,25.779783333333334,25.78311666666667,25.78645,25.789783333333332,25.793116666666666,25.79645,25.799783333333334,25.803116666666664,25.806449999999998,25.809783333333332,25.813116666666666,25.81645,25.81978333333333,25.823116666666667,25.82645,25.829783333333335,25.83311666666667,25.83645,25.839783333333333,25.843116666666667,25.84645,25.849783333333335,25.853116666666665,25.85645,25.859783333333333,25.863116666666667,25.86645,25.86978333333333,25.873116666666665,25.87645,25.879783333333332,25.88311666666667,25.88645,25.889783333333334,25.893116666666668,25.89645,25.899783333333335,25.903116666666666,25.90645,25.909783333333333,25.913116666666667,25.91645,25.91978333333333,25.923116666666665,25.92645,25.929783333333333,25.933116666666667,25.936449999999997,25.93978333333333,25.943116666666665,25.946450000000002,25.949783333333336,25.953116666666666,25.95645,25.959783333333334,25.963116666666668,25.966450000000002,25.969783333333332,25.973116666666666,25.97645,25.979783333333334,25.983116666666668,25.986449999999998,25.98978333333333,25.993116666666666,25.99645,25.999783333333333,26.003116666666664,26.006449999999997,26.009783333333335,26.01311666666667,26.016450000000003,26.019783333333333,26.023116666666667,26.02645,26.029783333333334,26.03311666666667,26.03645,26.039783333333332,26.043116666666666,26.04645,26.049783333333334,26.053116666666664,26.056449999999998,26.059783333333332,26.063116666666666,26.06645,26.06978333333333,26.073116666666667,26.07645,26.079783333333335,26.08311666666667,26.08645,26.089783333333333,26.093116666666667,26.09645,26.099783333333335,26.103116666666665,26.10645,26.109783333333333,26.113116666666667,26.11645,26.11978333333333,26.123116666666665,26.12645,26.129783333333332,26.13311666666667,26.13645,26.139783333333334,26.143116666666668,26.14645,26.149783333333335,26.153116666666666,26.15645,26.159783333333333,26.163116666666667,26.16645,26.16978333333333,26.173116666666665,26.17645,26.179783333333333,26.183116666666667,26.186449999999997,26.18978333333333,26.193116666666665,26.196450000000002,26.199783333333336,26.203116666666666,26.20645,26.209783333333334,26.213116666666668,26.216450000000002,26.219783333333332,26.223116666666666,26.22645,26.229783333333334,26.233116666666668,26.236449999999998,26.23978333333333,26.243116666666666,26.24645,26.249783333333333,26.253116666666664,26.256449999999997,26.259783333333335,26.26311666666667,26.266450000000003,26.269783333333333,26.273116666666667,26.27645,26.279783333333334,26.28311666666667,26.28645,26.289783333333332,26.293116666666666,26.29645,26.299783333333334,26.303116666666664,26.306449999999998,26.309783333333332,26.313116666666666,26.31645,26.31978333333333,26.323116666666667,26.32645,26.329783333333335,26.33311666666667,26.33645,26.339783333333333,26.343116666666667,26.34645,26.349783333333335,26.353116666666665,26.35645,26.359783333333333,26.363116666666667,26.36645,26.36978333333333,26.373116666666665,26.37645,26.379783333333332,26.38311666666667,26.38645,26.389783333333334,26.393116666666668,26.39645,26.399783333333335,26.403116666666666,26.40645,26.409783333333333,26.413116666666667,26.41645,26.41978333333333,26.423116666666665,26.42645,26.429783333333333,26.433116666666667,26.436449999999997,26.43978333333333,26.443116666666665,26.446450000000002,26.449783333333336,26.453116666666666,26.45645,26.459783333333334,26.463116666666668,26.466450000000002,26.469783333333332,26.473116666666666,26.47645,26.479783333333334,26.483116666666668,26.486449999999998,26.48978333333333,26.493116666666666,26.49645,26.499783333333333,26.503116666666664,26.506449999999997,26.509783333333335,26.51311666666667,26.516450000000003,26.519783333333333,26.523116666666667,26.52645,26.529783333333334,26.53311666666667,26.53645,26.539783333333332,26.543116666666666,26.54645,26.549783333333334,26.553116666666664,26.556449999999998,26.559783333333332,26.563116666666666,26.56645,26.56978333333333,26.573116666666667,26.57645,26.579783333333335,26.58311666666667,26.58645,26.589783333333333,26.593116666666667,26.59645,26.599783333333335,26.603116666666665,26.60645,26.609783333333333,26.613116666666667,26.61645,26.61978333333333,26.623116666666665,26.62645,26.629783333333332,26.63311666666667,26.63645,26.639783333333334,26.643116666666668,26.64645,26.649783333333335,26.653116666666666,26.65645,26.659783333333333,26.663116666666667,26.66645,26.66978333333333,26.673116666666665,26.67645,26.679783333333333,26.683116666666667,26.686449999999997,26.68978333333333,26.693116666666665,26.696450000000002,26.699783333333336,26.703116666666666,26.70645,26.709783333333334,26.713116666666668,26.716450000000002,26.719783333333332,26.723116666666666,26.72645,26.729783333333334,26.733116666666668,26.736449999999998,26.73978333333333,26.743116666666666,26.74645,26.749783333333333,26.753116666666664,26.756449999999997,26.759783333333335,26.76311666666667,26.766450000000003,26.769783333333333,26.773116666666667,26.77645,26.779783333333334,26.78311666666667,26.78645,26.789783333333332,26.793116666666666,26.79645,26.799783333333334,26.803116666666664,26.806449999999998,26.809783333333332,26.813116666666666,26.81645,26.81978333333333,26.823116666666667,26.82645,26.829783333333335,26.83311666666667,26.83645,26.839783333333333,26.843116666666667,26.84645,26.849783333333335,26.853116666666665,26.85645,26.859783333333333,26.863116666666667,26.86645,26.86978333333333,26.873116666666665,26.87645,26.879783333333332,26.88311666666667,26.88645,26.889783333333334,26.893116666666668,26.89645,26.899783333333335,26.903116666666666,26.90645,26.909783333333333,26.913116666666667,26.91645,26.91978333333333,26.923116666666665,26.92645,26.929783333333333,26.933116666666667,26.936449999999997,26.93978333333333,26.943116666666665,26.946450000000002,26.949783333333336,26.953116666666666,26.95645,26.959783333333334,26.963116666666668,26.966450000000002,26.969783333333332,26.973116666666666,26.97645,26.979783333333334,26.983116666666668,26.986449999999998,26.98978333333333,26.993116666666666,26.99645,26.999783333333333,27.003116666666664,27.006449999999997,27.009783333333335,27.01311666666667,27.016450000000003,27.019783333333333,27.023116666666667,27.02645,27.029783333333334,27.03311666666667,27.03645,27.039783333333332,27.043116666666666,27.04645,27.049783333333334,27.053116666666664,27.056449999999998,27.059783333333332,27.063116666666666,27.06645,27.06978333333333,27.073116666666667,27.07645,27.079783333333335,27.08311666666667,27.08645,27.089783333333333,27.093116666666667,27.09645,27.099783333333335,27.103116666666665,27.10645,27.109783333333333,27.113116666666667,27.11645,27.11978333333333,27.123116666666665,27.12645,27.129783333333332,27.13311666666667,27.13645,27.139783333333334,27.143116666666668,27.14645,27.149783333333335,27.153116666666666,27.15645,27.159783333333333,27.163116666666667,27.16645,27.16978333333333,27.173116666666665,27.17645,27.179783333333333,27.183116666666667,27.186449999999997,27.18978333333333,27.193116666666665,27.196450000000002,27.199783333333336,27.203116666666666,27.20645,27.209783333333334,27.213116666666668,27.216450000000002,27.219783333333332,27.223116666666666,27.22645,27.229783333333334,27.233116666666668,27.236449999999998,27.23978333333333,27.243116666666666,27.24645,27.249783333333333,27.253116666666664,27.256449999999997,27.259783333333335,27.26311666666667,27.266450000000003,27.269783333333333,27.273116666666667,27.27645,27.279783333333334,27.28311666666667,27.28645,27.289783333333332,27.293116666666666,27.29645,27.299783333333334,27.303116666666664,27.306449999999998,27.309783333333332,27.313116666666666,27.31645,27.31978333333333,27.323116666666667,27.32645,27.329783333333335,27.33311666666667,27.33645,27.339783333333333,27.343116666666667,27.34645,27.349783333333335,27.353116666666665,27.35645,27.359783333333333,27.363116666666667,27.36645,27.36978333333333,27.373116666666665,27.37645,27.379783333333332,27.38311666666667,27.38645,27.389783333333334,27.393116666666668,27.39645,27.399783333333335,27.403116666666666,27.40645,27.409783333333333,27.413116666666667,27.41645,27.41978333333333,27.423116666666665,27.42645,27.429783333333333,27.433116666666667,27.436449999999997,27.43978333333333,27.443116666666665,27.446450000000002,27.449783333333336,27.453116666666666,27.45645,27.459783333333334,27.463116666666668,27.466450000000002,27.469783333333332,27.473116666666666,27.47645,27.479783333333334,27.483116666666668,27.486449999999998,27.48978333333333,27.493116666666666,27.49645,27.499783333333333,27.503116666666664,27.506449999999997,27.509783333333335,27.51311666666667,27.516450000000003,27.519783333333333,27.523116666666667,27.52645,27.529783333333334,27.53311666666667,27.53645,27.539783333333332,27.543116666666666,27.54645,27.549783333333334,27.553116666666664,27.556449999999998,27.559783333333332,27.563116666666666,27.56645,27.56978333333333,27.573116666666667,27.57645,27.579783333333335,27.58311666666667,27.58645,27.589783333333333,27.593116666666667,27.59645,27.599783333333335,27.603116666666665,27.60645,27.609783333333333,27.613116666666667,27.61645,27.61978333333333,27.623116666666665,27.62645,27.629783333333332,27.63311666666667,27.63645,27.639783333333334,27.643116666666668,27.64645,27.649783333333335,27.653116666666666,27.65645,27.659783333333333,27.663116666666667,27.66645,27.66978333333333,27.673116666666665,27.67645,27.679783333333333,27.683116666666667,27.686449999999997,27.68978333333333,27.693116666666665,27.696450000000002,27.699783333333336,27.703116666666666,27.70645,27.709783333333334,27.713116666666668,27.716450000000002,27.719783333333332,27.723116666666666,27.72645,27.729783333333334,27.733116666666668,27.736449999999998,27.73978333333333,27.743116666666666,27.74645,27.749783333333333,27.753116666666664,27.756449999999997,27.759783333333335,27.76311666666667,27.766450000000003,27.769783333333333,27.773116666666667,27.77645,27.779783333333334,27.78311666666667,27.78645,27.789783333333332,27.793116666666666,27.79645,27.799783333333334,27.803116666666664,27.806449999999998,27.809783333333332,27.813116666666666,27.81645,27.81978333333333,27.823116666666667,27.82645,27.829783333333335,27.83311666666667,27.83645,27.839783333333333,27.843116666666667,27.84645,27.849783333333335,27.853116666666665,27.85645,27.859783333333333,27.863116666666667,27.86645,27.86978333333333,27.873116666666665,27.87645,27.879783333333332,27.88311666666667,27.88645,27.889783333333334,27.893116666666668,27.89645,27.899783333333335,27.903116666666666,27.90645,27.909783333333333,27.913116666666667,27.91645,27.91978333333333,27.923116666666665,27.92645,27.929783333333333,27.933116666666667,27.936449999999997,27.93978333333333,27.943116666666665,27.946450000000002,27.949783333333336,27.953116666666666,27.95645,27.959783333333334,27.963116666666668,27.966450000000002,27.969783333333332,27.973116666666666,27.97645,27.979783333333334,27.983116666666668,27.986449999999998,27.98978333333333,27.993116666666666,27.99645,27.999783333333333,28.003116666666664,28.006449999999997,28.009783333333335,28.01311666666667,28.016450000000003,28.019783333333333,28.023116666666667,28.02645,28.029783333333334,28.03311666666667,28.03645,28.039783333333332,28.043116666666666,28.04645,28.049783333333334,28.053116666666664,28.056449999999998,28.059783333333332,28.063116666666666,28.06645,28.06978333333333,28.073116666666667,28.07645,28.079783333333335,28.08311666666667,28.08645,28.089783333333333,28.093116666666667,28.09645,28.099783333333335,28.103116666666665,28.10645,28.109783333333333,28.113116666666667,28.11645,28.11978333333333,28.123116666666665,28.12645,28.129783333333332,28.13311666666667,28.13645,28.139783333333334,28.143116666666668,28.14645,28.149783333333335,28.153116666666666,28.15645,28.159783333333333,28.163116666666667,28.16645,28.16978333333333,28.173116666666665,28.17645,28.179783333333333,28.183116666666667,28.186449999999997,28.18978333333333,28.193116666666665,28.196450000000002,28.199783333333336,28.203116666666666,28.20645,28.209783333333334,28.213116666666668,28.216450000000002,28.219783333333332,28.223116666666666,28.22645,28.229783333333334,28.233116666666668,28.236449999999998,28.23978333333333,28.243116666666666,28.24645,28.249783333333333,28.253116666666664,28.256449999999997,28.259783333333335,28.26311666666667,28.266450000000003,28.269783333333333,28.273116666666667,28.27645,28.279783333333334,28.28311666666667,28.28645,28.289783333333332,28.293116666666666,28.29645,28.299783333333334,28.303116666666664,28.306449999999998,28.309783333333332,28.313116666666666,28.31645,28.31978333333333,28.323116666666667,28.32645,28.329783333333335,28.33311666666667,28.33645,28.339783333333333,28.343116666666667,28.34645,28.349783333333335,28.353116666666665,28.35645,28.359783333333333,28.363116666666667,28.36645,28.36978333333333,28.373116666666665,28.37645,28.379783333333332,28.38311666666667,28.38645,28.389783333333334,28.393116666666668,28.39645,28.399783333333335,28.403116666666666,28.40645,28.409783333333333,28.413116666666667,28.41645,28.41978333333333,28.423116666666665,28.42645,28.429783333333333,28.433116666666667,28.436449999999997,28.43978333333333,28.443116666666665,28.446450000000002,28.449783333333336,28.453116666666666,28.45645,28.459783333333334,28.463116666666668,28.466450000000002,28.469783333333332,28.473116666666666,28.47645,28.479783333333334,28.483116666666668,28.486449999999998,28.48978333333333,28.493116666666666,28.49645,28.499783333333333,28.503116666666664,28.506449999999997,28.509783333333335,28.51311666666667,28.516450000000003,28.519783333333333,28.523116666666667,28.52645,28.529783333333334,28.53311666666667,28.53645,28.539783333333332,28.543116666666666,28.54645,28.549783333333334,28.553116666666664,28.556449999999998,28.559783333333332,28.563116666666666,28.56645,28.56978333333333,28.573116666666667,28.57645,28.579783333333335,28.58311666666667,28.58645,28.589783333333333,28.593116666666667,28.59645,28.599783333333335,28.603116666666665,28.60645,28.609783333333333,28.613116666666667,28.61645,28.61978333333333,28.623116666666665,28.62645,28.629783333333332,28.63311666666667,28.63645,28.639783333333334,28.643116666666668,28.64645,28.649783333333335,28.653116666666666,28.65645,28.659783333333333,28.663116666666667,28.66645,28.66978333333333,28.673116666666665,28.67645,28.679783333333333,28.683116666666667,28.686449999999997,28.68978333333333,28.693116666666665,28.696450000000002,28.699783333333336,28.703116666666666,28.70645,28.709783333333334,28.713116666666668,28.716450000000002,28.719783333333332,28.723116666666666,28.72645,28.729783333333334,28.733116666666668,28.736449999999998,28.73978333333333,28.743116666666666,28.74645,28.749783333333333,28.753116666666664,28.756449999999997,28.759783333333335,28.76311666666667,28.766450000000003,28.769783333333333,28.773116666666667,28.77645,28.779783333333334,28.78311666666667,28.78645,28.789783333333332,28.793116666666666,28.79645,28.799783333333334,28.803116666666664,28.806449999999998,28.809783333333332,28.813116666666666,28.81645,28.81978333333333,28.823116666666667,28.82645,28.829783333333335,28.83311666666667,28.83645,28.839783333333333,28.843116666666667,28.84645,28.849783333333335,28.853116666666665,28.85645,28.859783333333333,28.863116666666667,28.86645,28.86978333333333,28.873116666666665,28.87645,28.879783333333332,28.88311666666667,28.88645,28.889783333333334,28.893116666666668,28.89645,28.899783333333335,28.903116666666666,28.90645,28.909783333333333,28.913116666666667,28.91645,28.91978333333333,28.923116666666665,28.92645,28.929783333333333,28.933116666666667,28.936449999999997,28.93978333333333,28.943116666666665,28.946450000000002,28.949783333333336,28.953116666666666,28.95645,28.959783333333334,28.963116666666668,28.966450000000002,28.969783333333332,28.973116666666666,28.97645,28.979783333333334,28.983116666666668,28.986449999999998,28.98978333333333,28.993116666666666,28.99645,28.999783333333333,29.003116666666664,29.006449999999997,29.009783333333335,29.01311666666667,29.016450000000003,29.019783333333333,29.023116666666667,29.02645,29.029783333333334,29.03311666666667,29.03645,29.039783333333332,29.043116666666666,29.04645,29.049783333333334,29.053116666666664,29.056449999999998,29.059783333333332,29.063116666666666,29.06645,29.06978333333333,29.073116666666667,29.07645,29.079783333333335,29.08311666666667,29.08645,29.089783333333333,29.093116666666667,29.09645,29.099783333333335,29.103116666666665,29.10645,29.109783333333333,29.113116666666667,29.11645,29.11978333333333,29.123116666666665,29.12645,29.129783333333332,29.13311666666667,29.13645,29.139783333333334,29.143116666666668,29.14645,29.149783333333335,29.153116666666666,29.15645,29.159783333333333,29.163116666666667,29.16645,29.16978333333333,29.173116666666665,29.17645,29.179783333333333,29.183116666666667,29.186449999999997,29.18978333333333,29.193116666666665,29.196450000000002,29.199783333333336,29.203116666666666,29.20645,29.209783333333334,29.213116666666668,29.216450000000002,29.219783333333332,29.223116666666666,29.22645,29.229783333333334,29.233116666666668,29.236449999999998,29.23978333333333,29.243116666666666,29.24645,29.249783333333333,29.253116666666664,29.256449999999997,29.259783333333335,29.26311666666667,29.266450000000003,29.269783333333333,29.273116666666667,29.27645,29.279783333333334,29.28311666666667,29.28645,29.289783333333332,29.293116666666666,29.29645,29.299783333333334,29.303116666666664,29.306449999999998,29.309783333333332,29.313116666666666,29.31645,29.31978333333333,29.323116666666667,29.32645,29.329783333333335,29.33311666666667,29.33645,29.339783333333333,29.343116666666667,29.34645,29.349783333333335,29.353116666666665,29.35645,29.359783333333333,29.363116666666667,29.36645,29.36978333333333,29.373116666666665,29.37645,29.379783333333332,29.38311666666667,29.38645,29.389783333333334,29.393116666666668,29.39645,29.399783333333335,29.403116666666666,29.40645,29.409783333333333,29.413116666666667,29.41645,29.41978333333333,29.423116666666665,29.42645,29.429783333333333,29.433116666666667,29.436449999999997,29.43978333333333,29.443116666666665,29.446450000000002,29.449783333333336,29.453116666666666,29.45645,29.459783333333334,29.463116666666668,29.466450000000002,29.469783333333332,29.473116666666666,29.47645,29.479783333333334,29.483116666666668,29.486449999999998,29.48978333333333,29.493116666666666,29.49645,29.499783333333333,29.503116666666664,29.506449999999997,29.509783333333335,29.51311666666667,29.516450000000003,29.519783333333333,29.523116666666667,29.52645,29.529783333333334,29.53311666666667,29.53645,29.539783333333332,29.543116666666666,29.54645,29.549783333333334,29.553116666666664,29.556449999999998,29.559783333333332,29.563116666666666,29.56645,29.56978333333333,29.573116666666667,29.57645,29.579783333333335,29.58311666666667,29.58645,29.589783333333333,29.593116666666667,29.59645,29.599783333333335,29.603116666666665,29.60645,29.609783333333333,29.613116666666667,29.61645,29.61978333333333,29.623116666666665,29.62645,29.629783333333332,29.63311666666667,29.63645,29.639783333333334,29.643116666666668,29.64645,29.649783333333335,29.653116666666666,29.65645,29.659783333333333,29.663116666666667,29.66645,29.66978333333333,29.673116666666665,29.67645,29.679783333333333,29.683116666666667,29.686449999999997,29.68978333333333,29.693116666666665,29.696450000000002,29.699783333333336,29.703116666666666,29.70645,29.709783333333334,29.713116666666668,29.716450000000002,29.719783333333332,29.723116666666666,29.72645,29.729783333333334,29.733116666666668,29.736449999999998,29.73978333333333,29.743116666666666,29.74645,29.749783333333333,29.753116666666664,29.756449999999997,29.759783333333335,29.76311666666667,29.766450000000003,29.769783333333333,29.773116666666667,29.77645,29.779783333333334,29.78311666666667,29.78645,29.789783333333332,29.793116666666666,29.79645,29.799783333333334,29.803116666666664,29.806449999999998,29.809783333333332,29.813116666666666,29.81645,29.81978333333333,29.823116666666667,29.82645,29.829783333333335,29.83311666666667,29.83645,29.839783333333333,29.843116666666667,29.84645,29.849783333333335,29.853116666666665,29.85645,29.859783333333333,29.863116666666667,29.86645,29.86978333333333,29.873116666666665,29.87645,29.879783333333332,29.88311666666667,29.88645,29.889783333333334,29.893116666666668,29.89645,29.899783333333335,29.903116666666666,29.90645,29.909783333333333,29.913116666666667,29.91645,29.91978333333333,29.923116666666665,29.92645,29.929783333333333,29.933116666666667,29.936449999999997,29.93978333333333,29.943116666666665,29.946450000000002,29.949783333333336,29.953116666666666,29.95645,29.959783333333334,29.963116666666668,29.966450000000002,29.969783333333332,29.973116666666666,29.97645,29.979783333333334,29.983116666666668,29.986449999999998,29.98978333333333,29.993116666666666,29.99645,29.999783333333333,30.003116666666664,30.006449999999997,30.009783333333335,30.01311666666667,30.016450000000003,30.019783333333333,30.023116666666667,30.02645,30.029783333333334,30.03311666666667,30.03645,30.039783333333332,30.043116666666666,30.04645,30.049783333333334,30.053116666666664,30.056449999999998,30.059783333333332,30.063116666666666,30.06645,30.06978333333333,30.073116666666667,30.07645,30.079783333333335,30.08311666666667,30.08645,30.089783333333333,30.093116666666667,30.09645,30.099783333333335,30.103116666666665,30.10645,30.109783333333333,30.113116666666667,30.11645,30.11978333333333,30.123116666666665,30.12645,30.129783333333332,30.13311666666667,30.13645,30.139783333333334,30.143116666666668,30.14645,30.149783333333335,30.153116666666666,30.15645,30.159783333333333,30.163116666666667,30.16645,30.16978333333333,30.173116666666665,30.17645,30.179783333333333,30.183116666666667,30.186449999999997,30.18978333333333,30.193116666666665,30.196450000000002,30.199783333333336,30.203116666666666,30.20645,30.209783333333334,30.213116666666668,30.216450000000002,30.219783333333332,30.223116666666666,30.22645,30.229783333333334,30.233116666666668,30.236449999999998,30.23978333333333,30.243116666666666,30.24645,30.249783333333333,30.253116666666664,30.256449999999997,30.259783333333335,30.26311666666667,30.266450000000003,30.269783333333333,30.273116666666667,30.27645,30.279783333333334,30.28311666666667,30.28645,30.289783333333332,30.293116666666666,30.29645,30.299783333333334,30.303116666666664,30.306449999999998,30.309783333333332,30.313116666666666,30.31645,30.31978333333333,30.323116666666667,30.32645,30.329783333333335,30.33311666666667,30.33645,30.339783333333333,30.343116666666667,30.34645,30.349783333333335,30.353116666666665,30.35645,30.359783333333333,30.363116666666667,30.36645,30.36978333333333,30.373116666666665,30.37645,30.379783333333332,30.38311666666667,30.38645,30.389783333333334,30.393116666666668,30.39645,30.399783333333335,30.403116666666666,30.40645,30.409783333333333,30.413116666666667,30.41645,30.41978333333333,30.423116666666665,30.42645,30.429783333333333,30.433116666666667,30.436449999999997,30.43978333333333,30.443116666666665,30.446450000000002,30.449783333333336,30.453116666666666,30.45645,30.459783333333334,30.463116666666668,30.466450000000002,30.469783333333332,30.473116666666666,30.47645,30.479783333333334,30.483116666666668,30.486449999999998,30.48978333333333,30.493116666666666,30.49645,30.499783333333333,30.503116666666664,30.506449999999997,30.509783333333335,30.51311666666667,30.516450000000003,30.519783333333333,30.523116666666667,30.52645,30.529783333333334,30.53311666666667,30.53645,30.539783333333332,30.543116666666666,30.54645,30.549783333333334,30.553116666666664,30.556449999999998,30.559783333333332,30.563116666666666,30.56645,30.56978333333333,30.573116666666667,30.57645,30.579783333333335,30.58311666666667,30.58645,30.589783333333333,30.593116666666667,30.59645,30.599783333333335,30.603116666666665,30.60645,30.609783333333333,30.613116666666667,30.61645,30.61978333333333,30.623116666666665,30.62645,30.629783333333332,30.63311666666667,30.63645,30.639783333333334,30.643116666666668,30.64645,30.649783333333335,30.653116666666666,30.65645,30.659783333333333,30.663116666666667,30.66645,30.66978333333333,30.673116666666665,30.67645,30.679783333333333,30.683116666666667,30.686449999999997,30.68978333333333,30.693116666666665,30.696450000000002,30.699783333333336,30.703116666666666,30.70645,30.709783333333334,30.713116666666668,30.716450000000002,30.719783333333332,30.723116666666666,30.72645,30.729783333333334,30.733116666666668,30.736449999999998,30.73978333333333,30.743116666666666,30.74645,30.749783333333333,30.753116666666664,30.756449999999997,30.759783333333335,30.76311666666667,30.766450000000003,30.769783333333333,30.773116666666667,30.77645,30.779783333333334,30.78311666666667,30.78645,30.789783333333332,30.793116666666666,30.79645,30.799783333333334,30.803116666666664,30.806449999999998,30.809783333333332,30.813116666666666,30.81645,30.81978333333333,30.823116666666667,30.82645,30.829783333333335,30.83311666666667,30.83645,30.839783333333333,30.843116666666667,30.84645,30.849783333333335,30.853116666666665,30.85645,30.859783333333333,30.863116666666667,30.86645,30.86978333333333,30.873116666666665,30.87645,30.879783333333332,30.88311666666667,30.88645,30.889783333333334,30.893116666666668,30.89645,30.899783333333335,30.903116666666666,30.90645,30.909783333333333,30.913116666666667,30.91645,30.91978333333333,30.923116666666665,30.92645,30.929783333333333,30.933116666666667,30.936449999999997,30.93978333333333,30.943116666666665,30.946450000000002,30.949783333333336,30.953116666666666,30.95645,30.959783333333334,30.963116666666668,30.966450000000002,30.969783333333332,30.973116666666666,30.97645,30.979783333333334,30.983116666666668,30.986449999999998,30.98978333333333,30.993116666666666,30.99645,30.999783333333333,31.003116666666664,31.006449999999997,31.009783333333335,31.01311666666667,31.016450000000003,31.019783333333333,31.023116666666667,31.02645,31.029783333333334,31.03311666666667,31.03645,31.039783333333332,31.043116666666666,31.04645,31.049783333333334,31.053116666666664,31.056449999999998,31.059783333333332,31.063116666666666,31.06645,31.06978333333333,31.073116666666667,31.07645,31.079783333333335,31.08311666666667,31.08645,31.089783333333333,31.093116666666667,31.09645,31.099783333333335,31.103116666666665,31.10645,31.109783333333333,31.113116666666667,31.11645,31.11978333333333,31.123116666666665,31.12645,31.129783333333332,31.13311666666667,31.13645,31.139783333333334,31.143116666666668,31.14645,31.149783333333335,31.153116666666666,31.15645,31.159783333333333,31.163116666666667,31.16645,31.16978333333333,31.173116666666665,31.17645,31.179783333333333,31.183116666666667,31.186449999999997,31.18978333333333,31.193116666666665,31.196450000000002,31.199783333333336,31.203116666666666,31.20645,31.209783333333334,31.213116666666668,31.216450000000002,31.219783333333332,31.223116666666666,31.22645,31.229783333333334,31.233116666666668,31.236449999999998,31.23978333333333,31.243116666666666,31.24645,31.249783333333333,31.253116666666664,31.256449999999997,31.259783333333335,31.26311666666667,31.266450000000003,31.269783333333333,31.273116666666667,31.27645,31.279783333333334,31.28311666666667,31.28645,31.289783333333332,31.293116666666666,31.29645,31.299783333333334,31.303116666666664,31.306449999999998,31.309783333333332,31.313116666666666,31.31645,31.31978333333333,31.323116666666667,31.32645,31.329783333333335,31.33311666666667,31.33645,31.339783333333333,31.343116666666667,31.34645,31.349783333333335,31.353116666666665,31.35645,31.359783333333333,31.363116666666667,31.36645,31.36978333333333,31.373116666666665,31.37645,31.379783333333332,31.38311666666667,31.38645,31.389783333333334,31.393116666666668,31.39645,31.399783333333335,31.403116666666666,31.40645,31.409783333333333,31.413116666666667,31.41645,31.41978333333333,31.423116666666665,31.42645,31.429783333333333,31.433116666666667,31.436449999999997,31.43978333333333,31.443116666666665,31.446450000000002,31.449783333333336,31.453116666666666,31.45645,31.459783333333334,31.463116666666668,31.466450000000002,31.469783333333332,31.473116666666666,31.47645,31.479783333333334,31.483116666666668,31.486449999999998,31.48978333333333,31.493116666666666,31.49645,31.499783333333333,31.503116666666664,31.506449999999997,31.509783333333335,31.51311666666667,31.516450000000003,31.519783333333333,31.523116666666667,31.52645,31.529783333333334,31.53311666666667,31.53645,31.539783333333332,31.543116666666666,31.54645,31.549783333333334,31.553116666666664,31.556449999999998,31.559783333333332,31.563116666666666,31.56645,31.56978333333333,31.573116666666667,31.57645,31.579783333333335,31.58311666666667,31.58645,31.589783333333333,31.593116666666667,31.59645,31.599783333333335,31.603116666666665,31.60645,31.609783333333333,31.613116666666667,31.61645,31.61978333333333,31.623116666666665,31.62645,31.629783333333332,31.63311666666667,31.63645,31.639783333333334,31.643116666666668,31.64645,31.649783333333335,31.653116666666666,31.65645,31.659783333333333,31.663116666666667,31.66645,31.66978333333333,31.673116666666665,31.67645,31.679783333333333,31.683116666666667,31.686449999999997,31.68978333333333,31.693116666666665,31.696450000000002,31.699783333333336,31.703116666666666,31.70645,31.709783333333334,31.713116666666668,31.716450000000002,31.719783333333332,31.723116666666666,31.72645,31.729783333333334,31.733116666666668,31.736449999999998,31.73978333333333,31.743116666666666,31.74645,31.749783333333333,31.753116666666664,31.756449999999997,31.759783333333335,31.76311666666667,31.766450000000003,31.769783333333333,31.773116666666667,31.77645,31.779783333333334,31.78311666666667,31.78645,31.789783333333332,31.793116666666666,31.79645,31.799783333333334,31.803116666666664,31.806449999999998,31.809783333333332,31.813116666666666,31.81645,31.81978333333333,31.823116666666667,31.82645,31.829783333333335,31.83311666666667,31.83645,31.839783333333333,31.843116666666667,31.84645,31.849783333333335,31.853116666666665,31.85645,31.859783333333333,31.863116666666667,31.86645,31.86978333333333,31.873116666666665,31.87645,31.879783333333332,31.88311666666667,31.88645,31.889783333333334,31.893116666666668,31.89645,31.899783333333335,31.903116666666666,31.90645,31.909783333333333,31.913116666666667,31.91645,31.91978333333333,31.923116666666665,31.92645,31.929783333333333,31.933116666666667,31.936449999999997,31.93978333333333,31.943116666666665,31.946450000000002,31.949783333333336,31.953116666666666,31.95645,31.959783333333334,31.963116666666668,31.966450000000002,31.969783333333332,31.973116666666666,31.97645,31.979783333333334,31.983116666666668,31.986449999999998,31.98978333333333,31.993116666666666,31.99645,31.999783333333333,32.00311666666666,32.00645,32.00978333333333,32.01311666666667,32.01645,32.01978333333333,32.02311666666667,32.02645,32.029783333333334,32.033116666666665,32.036449999999995,32.03978333333333,32.04311666666667,32.04645,32.04978333333334,32.05311666666667,32.05645,32.059783333333336,32.063116666666666,32.06645,32.06978333333333,32.073116666666664,32.07645,32.07978333333333,32.08311666666667,32.08645,32.08978333333333,32.09311666666667,32.09645,32.099783333333335,32.103116666666665,32.10645,32.10978333333333,32.11311666666667,32.11645,32.11978333333333,32.12311666666667,32.12645,32.129783333333336,32.133116666666666,32.136449999999996,32.139783333333334,32.143116666666664,32.14645,32.14978333333333,32.15311666666666,32.15645,32.15978333333333,32.16311666666667,32.166450000000005,32.169783333333335,32.173116666666665,32.17645,32.17978333333333,32.18311666666667,32.18645,32.18978333333333,32.19311666666667,32.19645,32.199783333333336,32.203116666666666,32.20645,32.209783333333334,32.213116666666664,32.21645,32.21978333333333,32.22311666666666,32.22645,32.22978333333334,32.23311666666667,32.23645,32.239783333333335,32.243116666666666,32.24645,32.24978333333333,32.25311666666666,32.25645,32.25978333333333,32.26311666666667,32.26645,32.26978333333333,32.27311666666667,32.27645,32.279783333333334,32.283116666666665,32.286449999999995,32.28978333333333,32.29311666666667,32.29645,32.29978333333334,32.30311666666667,32.30645,32.309783333333336,32.313116666666666,32.31645,32.31978333333333,32.323116666666664,32.32645,32.32978333333333,32.33311666666667,32.33645,32.33978333333333,32.34311666666667,32.34645,32.349783333333335,32.353116666666665,32.35645,32.35978333333333,32.36311666666667,32.36645,32.36978333333333,32.37311666666667,32.37645,32.379783333333336,32.383116666666666,32.386449999999996,32.389783333333334,32.393116666666664,32.39645,32.39978333333333,32.40311666666666,32.40645,32.40978333333333,32.41311666666667,32.416450000000005,32.419783333333335,32.423116666666665,32.42645,32.42978333333333,32.43311666666667,32.43645,32.43978333333333,32.44311666666667,32.44645,32.449783333333336,32.453116666666666,32.45645,32.459783333333334,32.463116666666664,32.46645,32.46978333333333,32.47311666666666,32.47645,32.47978333333334,32.48311666666667,32.48645,32.489783333333335,32.493116666666666,32.49645,32.49978333333333,32.50311666666666,32.50645,32.50978333333333,32.51311666666667,32.51645,32.51978333333333,32.52311666666667,32.52645,32.529783333333334,32.533116666666665,32.536449999999995,32.53978333333333,32.54311666666667,32.54645,32.54978333333334,32.55311666666667,32.55645,32.559783333333336,32.563116666666666,32.56645,32.56978333333333,32.573116666666664,32.57645,32.57978333333333,32.58311666666667,32.58645,32.58978333333333,32.59311666666667,32.59645,32.599783333333335,32.603116666666665,32.60645,32.60978333333333,32.61311666666667,32.61645,32.61978333333333,32.62311666666667,32.62645,32.629783333333336,32.633116666666666,32.636449999999996,32.639783333333334,32.643116666666664,32.64645,32.64978333333333,32.65311666666666,32.65645,32.65978333333333,32.66311666666667,32.666450000000005,32.669783333333335,32.673116666666665,32.67645,32.67978333333333,32.68311666666667,32.68645,32.68978333333333,32.69311666666667,32.69645,32.699783333333336,32.703116666666666,32.70645,32.709783333333334,32.713116666666664,32.71645,32.71978333333333,32.72311666666666,32.72645,32.72978333333334,32.73311666666667,32.73645,32.739783333333335,32.743116666666666,32.74645,32.74978333333333,32.75311666666666,32.75645,32.75978333333333,32.76311666666667,32.76645,32.76978333333333,32.77311666666667,32.77645,32.779783333333334,32.783116666666665,32.786449999999995,32.78978333333333,32.79311666666667,32.79645,32.79978333333334,32.80311666666667,32.80645,32.809783333333336,32.813116666666666,32.81645,32.81978333333333,32.823116666666664,32.82645,32.82978333333333,32.83311666666667,32.83645,32.83978333333333,32.84311666666667,32.84645,32.849783333333335,32.853116666666665,32.85645,32.85978333333333,32.86311666666667,32.86645,32.86978333333333,32.87311666666667,32.87645,32.879783333333336,32.883116666666666,32.886449999999996,32.889783333333334,32.893116666666664,32.89645,32.89978333333333,32.90311666666666,32.90645,32.90978333333333,32.91311666666667,32.916450000000005,32.919783333333335,32.923116666666665,32.92645,32.92978333333333,32.93311666666667,32.93645,32.93978333333333,32.94311666666667,32.94645,32.949783333333336,32.953116666666666,32.95645,32.959783333333334,32.963116666666664,32.96645,32.96978333333333,32.97311666666666,32.97645,32.97978333333334,32.98311666666667,32.98645,32.989783333333335,32.993116666666666,32.99645,32.99978333333333],"y":[-58986.0,-59203.0,-59375.0,-59552.0,-59791.0,-60032.0,-60264.0,-60488.0,-60725.0,-60917.0,-61040.0,-61115.0,-61165.0,-61250.0,-61376.0,-61594.0,-61839.0,-62128.0,-62499.0,-62929.0,-63355.0,-63705.0,-64017.0,-64319.0,-64608.0,-64877.0,-65133.0,-65430.0,-65769.0,-66088.0,-66311.0,-66481.0,-66677.0,-66922.0,-67169.0,-67411.0,-67664.0,-67942.0,-68267.0,-68632.0,-69084.0,-69628.0,-70221.0,-70787.0,-71269.0,-71687.0,-72004.0,-72210.0,-72366.0,-72565.0,-72826.0,-73080.0,-73316.0,-73583.0,-73879.0,-74159.0,-74404.0,-74676.0,-74971.0,-75274.0,-75606.0,-75948.0,-76275.0,-76538.0,-76768.0,-76956.0,-77111.0,-77267.0,-77425.0,-77625.0,-77887.0,-78250.0,-78621.0,-78959.0,-79289.0,-79654.0,-80054.0,-80407.0,-80753.0,-81067.0,-81357.0,-81554.0,-81655.0,-81756.0,-81925.0,-82221.0,-82586.0,-82975.0,-83350.0,-83698.0,-84014.0,-84277.0,-84498.0,-84749.0,-85043.0,-85337.0,-85541.0,-85678.0,-85840.0,-85994.0,-86139.0,-86287.0,-86536.0,-86861.0,-87165.0,-87474.0,-87824.0,-88250.0,-88700.0,-89150.0,-89617.0,-90090.0,-90557.0,-91009.0,-91419.0,-91791.0,-92106.0,-92395.0,-92639.0,-92879.0,-93183.0,-93552.0,-93991.0,-94450.0,-94948.0,-95444.0,-95910.0,-96345.0,-96781.0,-97240.0,-97691.0,-98099.0,-98454.0,-98849.0,-99249.0,-99629.0,-99971.0,-100325.0,-100706.0,-101035.0,-101307.0,-101531.0,-101726.0,-101890.0,-102075.0,-102329.0,-102685.0,-103116.0,-103623.0,-104176.0,-104695.0,-105136.0,-105507.0,-105837.0,-106128.0,-106358.0,-106567.0,-106763.0,-106961.0,-107200.0,-107510.0,-107849.0,-108176.0,-108518.0,-108860.0,-109141.0,-109335.0,-109548.0,-109803.0,-110079.0,-110372.0,-110712.0,-111042.0,-111353.0,-111653.0,-111955.0,-112266.0,-112567.0,-112942.0,-113352.0,-113784.0,-114184.0,-114524.0,-114857.0,-115171.0,-115472.0,-115724.0,-115960.0,-116190.0,-116391.0,-116619.0,-116878.0,-117187.0,-117486.0,-117795.0,-118095.0,-118337.0,-118523.0,-118716.0,-118992.0,-119306.0,-119607.0,-119876.0,-120139.0,-120406.0,-120665.0,-120949.0,-121293.0,-121660.0,-122019.0,-122326.0,-122623.0,-122888.0,-123075.0,-123244.0,-123485.0,-123834.0,-124194.0,-124544.0,-124923.0,-125318.0,-125642.0,-125874.0,-126063.0,-126219.0,-126387.0,-126591.0,-126850.0,-127118.0,-127395.0,-127741.0,-128133.0,-128482.0,-128730.0,-128937.0,-129183.0,-129475.0,-129754.0,-130007.0,-130291.0,-130581.0,-130843.0,-131025.0,-131215.0,-131475.0,-131770.0,-132085.0,-132420.0,-132779.0,-133085.0,-133344.0,-133612.0,-133928.0,-134262.0,-134614.0,-135014.0,-135432.0,-135812.0,-136101.0,-136290.0,-136443.0,-136602.0,-136831.0,-137097.0,-137426.0,-137817.0,-138204.0,-138609.0,-139075.0,-139737.0,-140603.0,-141721.0,-143188.0,-145088.0,-147482.0,-150406.0,-154012.0,-158459.0,-163831.0,-170115.0,-177328.0,-185534.0,-194719.0,-204800.0,-215732.0,-227481.0,-239975.0,-253003.0,-266369.0,-279880.0,-293376.0,-306746.0,-319826.0,-332429.0,-344329.0,-355355.0,-365290.0,-373772.0,-380480.0,-385161.0,-387677.0,-387929.0,-385960.0,-382025.0,-376532.0,-369944.0,-362600.0,-354756.0,-346585.0,-338292.0,-329939.0,-321605.0,-313378.0,-305421.0,-297842.0,-290698.0,-283990.0,-277610.0,-271546.0,-265764.0,-260266.0,-254892.0,-249573.0,-244348.0,-239198.0,-234072.0,-228910.0,-223723.0,-218544.0,-213360.0,-208210.0,-203100.0,-198019.0,-193012.0,-188069.0,-183223.0,-178442.0,-173720.0,-169063.0,-164384.0,-159497.0,-154058.0,-147548.0,-139176.0,-127712.0,-111635.0,-89433.0,-60082.0,-23518.0,19167.0,65812.0,113631.0,159678.0,201516.0,237749.0,268144.0,293324.0,314285.0,332101.0,347772.0,362050.0,375377.0,387943.0,399888.0,411386.0,422584.0,433608.0,444734.0,456306.0,468731.0,482478.0,498135.0,516501.0,538176.0,563281.0,591063.0,619936.0,647787.0,672213.0,691139.0,703251.0,708340.0,707185.0,701117.0,691609.0,679804.0,666526.0,652204.0,637045.0,620983.0,603978.0,586139.0,567727.0,549197.0,531037.0,513825.0,498017.0,484003.0,472037.0,462232.0,454655.0,449507.0,447103.0,447932.0,452621.0,462006.0,477024.0,498703.0,528235.0,566922.0,616005.0,676602.0,749636.0,835835.0,935559.0,1048655.0,1174546.0,1312159.0,1460037.0,1616130.0,1777878.0,1942328.0,2106225.0,2266205.0,2418821.0,2560740.0,2688800.0,2800220.0,2892720.0,2964487.0,3014281.0,3041500.0,3046331.0,3029484.0,2992163.0,2936016.0,2863088.0,2775766.0,2676490.0,2567813.0,2452237.0,2332262.0,2210250.0,2088300.0,1968229.0,1851575.0,1739660.0,1633483.0,1533784.0,1440950.0,1355220.0,1276602.0,1204957.0,1140058.0,1081559.0,1029061.0,982070.0,940096.0,902631.0,869182.0,839245.0,812392.0,788185.0,766232.0,746225.0,727888.0,710962.0,695183.0,680387.0,666497.0,653392.0,640891.0,628836.0,617111.0,605705.0,594535.0,583532.0,572645.0,561894.0,551355.0,540983.0,530755.0,520579.0,510360.0,500017.0,489456.0,478659.0,467617.0,456402.0,445087.0,433708.0,422279.0,410737.0,399030.0,387146.0,375130.0,362976.0,350683.0,338303.0,325965.0,313740.0,301661.0,289858.0,278428.0,267500.0,257026.0,246988.0,237385.0,228223.0,219522.0,211230.0,203430.0,196233.0,189663.0,183664.0,178170.0,173185.0,168626.0,164392.0,160455.0,156818.0,153460.0,150313.0,147375.0,144562.0,141800.0,139012.0,136202.0,133317.0,130339.0,127270.0,124110.0,120905.0,117640.0,114363.0,111030.0,107694.0,104417.0,101117.0,97719.0,94151.0,90489.0,86810.0,83114.0,79460.0,75852.0,72348.0,68904.0,65437.0,61908.0,58372.0,54945.0,51651.0,48497.0,45465.0,42559.0,39730.0,36916.0,34108.0,31326.0,28618.0,26009.0,23450.0,20905.0,18363.0,15884.0,13500.0,11203.0,9047.0,7042.0,5229.0,3599.0,2112.0,731.0,-588.0,-1782.0,-2858.0,-3859.0,-4762.0,-5523.0,-6071.0,-6459.0,-6765.0,-7012.0,-7189.0,-7299.0,-7399.0,-7497.0,-7546.0,-7543.0,-7554.0,-7633.0,-7731.0,-7779.0,-7757.0,-7710.0,-7677.0,-7608.0,-7543.0,-7504.0,-7540.0,-7570.0,-7543.0,-7508.0,-7476.0,-7443.0,-7380.0,-7375.0,-7448.0,-7502.0,-7472.0,-7406.0,-7344.0,-7202.0,-6958.0,-6709.0,-6574.0,-6499.0,-6433.0,-6386.0,-6360.0,-6331.0,-6252.0,-6220.0,-6262.0,-6416.0,-6676.0,-7044.0,-7528.0,-8060.0,-8597.0,-9076.0,-9480.0,-9841.0,-10118.0,-10314.0,-10436.0,-10512.0,-10485.0,-10191.0,-9572.0,-8598.0,-7226.0,-5418.0,-3214.0,-694.0,2067.0,5048.0,8156.0,11407.0,14773.0,18219.0,21672.0,25085.0,28473.0,31794.0,34996.0,38009.0,40838.0,43473.0,45916.0,48119.0,50072.0,51765.0,53209.0,54450.0,55500.0,56368.0,57019.0,57454.0,57702.0,57727.0,57541.0,57166.0,56694.0,56148.0,55446.0,54576.0,53566.0,52453.0,51155.0,49677.0,48099.0,46477.0,44816.0,43075.0,41282.0,39442.0,37570.0,35712.0,33810.0,31874.0,29898.0,27904.0,25871.0,23809.0,21830.0,19932.0,18087.0,16230.0,14362.0,12441.0,10446.0,8430.0,6425.0,4475.0,2619.0,894.0,-752.0,-2415.0,-4092.0,-5736.0,-7330.0,-8893.0,-10431.0,-11901.0,-13253.0,-14499.0,-15664.0,-16821.0,-17976.0,-19158.0,-20344.0,-21443.0,-22456.0,-23370.0,-24238.0,-25074.0,-25953.0,-26909.0,-27847.0,-28705.0,-29516.0,-30279.0,-30928.0,-31499.0,-32088.0,-32718.0,-33247.0,-33622.0,-33900.0,-34115.0,-34270.0,-34369.0,-34472.0,-34611.0,-34756.0,-34857.0,-34905.0,-34906.0,-34869.0,-34845.0,-34857.0,-34904.0,-34944.0,-35029.0,-35213.0,-35469.0,-35763.0,-36111.0,-36595.0,-37248.0,-38053.0,-38973.0,-40024.0,-41236.0,-42592.0,-44039.0,-45563.0,-47221.0,-49025.0,-50950.0,-52965.0,-55026.0,-57129.0,-59285.0,-61528.0,-63848.0,-66180.0,-68523.0,-70870.0,-73149.0,-75308.0,-77346.0,-79396.0,-81460.0,-83487.0,-85445.0,-87341.0,-89196.0,-90917.0,-92491.0,-93958.0,-95405.0,-96815.0,-98158.0,-99414.0,-100595.0,-101693.0,-102696.0,-103611.0,-104438.0,-105222.0,-105961.0,-106622.0,-107177.0,-107662.0,-108171.0,-108709.0,-109237.0,-109731.0,-110161.0,-110546.0,-110847.0,-111064.0,-111222.0,-111361.0,-111520.0,-111698.0,-111869.0,-112012.0,-112110.0,-112158.0,-112192.0,-112196.0,-112163.0,-112079.0,-111972.0,-111878.0,-111778.0,-111695.0,-111627.0,-111629.0,-111666.0,-111714.0,-111815.0,-111952.0,-112122.0,-112271.0,-112470.0,-112746.0,-113038.0,-113323.0,-113585.0,-113855.0,-114132.0,-114480.0,-114914.0,-115414.0,-115947.0,-116562.0,-117281.0,-118025.0,-118763.0,-119526.0,-120386.0,-121250.0,-122070.0,-122867.0,-123687.0,-124500.0,-125278.0,-126051.0,-126867.0,-127723.0,-128557.0,-129378.0,-130165.0,-130937.0,-131637.0,-132238.0,-132760.0,-133196.0,-133613.0,-134045.0,-134518.0,-135029.0,-135551.0,-136092.0,-136627.0,-137115.0,-137535.0,-137816.0,-137971.0,-138015.0,-138032.0,-138061.0,-138109.0,-138249.0,-138463.0,-138767.0,-139070.0,-139354.0,-139585.0,-139752.0,-139877.0,-140006.0,-140156.0,-140295.0,-140444.0,-140624.0,-140834.0,-140982.0,-141071.0,-141196.0,-141391.0,-141577.0,-141694.0,-141806.0,-141903.0,-141931.0,-141859.0,-141781.0,-141810.0,-141893.0,-142046.0,-142191.0,-142337.0,-142433.0,-142427.0,-142359.0,-142241.0,-142125.0,-142019.0,-141970.0,-142034.0,-142140.0,-142224.0,-142284.0,-142334.0,-142354.0,-142344.0,-142376.0,-142494.0,-142659.0,-142772.0,-142818.0,-142765.0,-142666.0,-142534.0,-142442.0,-142401.0,-142396.0,-142430.0,-142478.0,-142511.0,-142475.0,-142380.0,-142300.0,-142235.0,-142187.0,-142201.0,-142343.0,-142655.0,-143043.0,-143453.0,-143781.0,-144008.0,-144126.0,-144191.0,-144287.0,-144456.0,-144765.0,-145169.0,-145630.0,-146129.0,-146632.0,-147103.0,-147515.0,-147947.0,-148433.0,-148931.0,-149410.0,-149936.0,-150537.0,-151186.0,-151877.0,-152653.0,-153491.0,-154335.0,-155138.0,-155866.0,-156495.0,-157043.0,-157653.0,-158347.0,-159062.0,-159762.0,-160465.0,-161127.0,-161627.0,-162034.0,-162501.0,-163050.0,-163563.0,-164028.0,-164565.0,-165131.0,-165667.0,-166150.0,-166667.0,-167197.0,-167629.0,-167931.0,-168128.0,-168250.0,-168314.0,-168347.0,-168364.0,-168374.0,-168330.0,-168253.0,-168149.0,-168000.0,-167837.0,-167617.0,-167374.0,-167055.0,-166613.0,-166084.0,-165491.0,-164909.0,-164291.0,-163611.0,-162913.0,-162159.0,-161326.0,-160356.0,-159279.0,-158139.0,-156941.0,-155699.0,-154378.0,-153004.0,-151587.0,-150135.0,-148584.0,-146916.0,-145166.0,-143365.0,-141519.0,-139634.0,-137740.0,-135821.0,-133875.0,-131904.0,-129917.0,-127945.0,-125960.0,-124018.0,-122090.0,-120173.0,-118230.0,-116231.0,-114251.0,-112294.0,-110415.0,-108592.0,-106822.0,-105108.0,-103499.0,-102050.0,-100711.0,-99422.0,-98215.0,-97117.0,-96082.0,-95056.0,-94111.0,-93290.0,-92551.0,-91881.0,-91315.0,-90883.0,-90566.0,-90398.0,-90406.0,-90551.0,-90766.0,-91010.0,-91295.0,-91613.0,-91992.0,-92467.0,-93035.0,-93692.0,-94391.0,-95155.0,-95960.0,-96778.0,-97626.0,-98565.0,-99638.0,-100818.0,-102088.0,-103483.0,-105002.0,-106575.0,-108143.0,-109709.0,-111319.0,-112942.0,-114530.0,-116081.0,-117661.0,-119297.0,-120967.0,-122678.0,-124463.0,-126357.0,-128287.0,-130214.0,-132083.0,-133909.0,-135684.0,-137412.0,-139132.0,-140864.0,-142620.0,-144369.0,-146100.0,-147828.0,-149575.0,-151329.0,-153087.0,-154867.0,-156656.0,-158366.0,-159930.0,-161378.0,-162785.0,-164158.0,-165497.0,-166842.0,-168239.0,-169634.0,-170989.0,-172259.0,-173457.0,-174563.0,-175614.0,-176660.0,-177693.0,-178739.0,-179786.0,-180854.0,-181896.0,-182878.0,-183800.0,-184662.0,-185450.0,-186160.0,-186791.0,-187402.0,-187972.0,-188502.0,-189003.0,-189520.0,-190069.0,-190575.0,-191031.0,-191410.0,-191777.0,-192188.0,-192597.0,-192956.0,-193230.0,-193475.0,-193654.0,-193653.0,-193565.0,-193479.0,-193425.0,-193333.0,-193239.0,-193239.0,-193233.0,-193128.0,-192941.0,-192772.0,-192633.0,-192456.0,-192244.0,-192028.0,-191821.0,-191568.0,-191185.0,-190698.0,-190168.0,-189612.0,-189031.0,-188468.0,-187958.0,-187421.0,-186806.0,-186176.0,-185582.0,-184995.0,-184422.0,-183877.0,-183338.0,-182737.0,-182030.0,-181258.0,-180422.0,-179559.0,-178712.0,-177960.0,-177284.0,-176628.0,-175970.0,-175299.0,-174607.0,-173870.0,-173149.0,-172518.0,-171949.0,-171423.0,-170935.0,-170497.0,-170136.0,-169804.0,-169533.0,-169307.0,-169141.0,-168990.0,-168827.0,-168673.0,-168572.0,-168574.0,-168634.0,-168738.0,-168846.0,-168982.0,-169166.0,-169383.0,-169624.0,-169898.0,-170260.0,-170652.0,-171026.0,-171376.0,-171797.0,-172316.0,-172897.0,-173533.0,-174193.0,-174883.0,-175595.0,-176369.0,-177137.0,-177860.0,-178597.0,-179402.0,-180247.0,-181055.0,-181870.0,-182766.0,-183696.0,-184630.0,-185538.0,-186447.0,-187332.0,-188185.0,-189040.0,-189874.0,-190690.0,-191445.0,-192197.0,-192942.0,-193668.0,-194379.0,-195077.0,-195808.0,-196543.0,-197262.0,-197939.0,-198584.0,-199240.0,-199888.0,-200483.0,-201017.0,-201538.0,-202103.0,-202699.0,-203280.0,-203800.0,-204274.0,-204733.0,-205148.0,-205509.0,-205860.0,-206305.0,-206859.0,-207442.0,-207988.0,-208470.0,-208910.0,-209316.0,-209693.0,-210027.0,-210324.0,-210599.0,-210876.0,-211146.0,-211390.0,-211680.0,-212050.0,-212473.0,-212877.0,-213258.0,-213671.0,-214093.0,-214512.0,-214913.0,-215295.0,-215648.0,-215937.0,-216181.0,-216426.0,-216724.0,-217093.0,-217516.0,-217997.0,-218497.0,-218940.0,-219322.0,-219704.0,-220124.0,-220550.0,-220967.0,-221388.0,-221861.0,-222343.0,-222785.0,-223164.0,-223494.0,-223799.0,-224056.0,-224288.0,-224555.0,-224858.0,-225163.0,-225477.0,-225770.0,-226052.0,-226278.0,-226469.0,-226666.0,-226868.0,-227076.0,-227235.0,-227366.0,-227493.0,-227589.0,-227604.0,-227520.0,-227390.0,-227226.0,-227004.0,-226722.0,-226433.0,-226180.0,-225973.0,-225771.0,-225582.0,-225425.0,-225248.0,-225033.0,-224762.0,-224483.0,-224205.0,-223926.0,-223637.0,-223331.0,-223028.0,-222750.0,-222461.0,-222077.0,-221632.0,-221154.0,-220656.0,-220100.0,-219504.0,-218946.0,-218469.0,-218048.0,-217633.0,-217178.0,-216742.0,-216385.0,-216095.0,-215843.0,-215601.0,-215407.0,-215241.0,-215080.0,-214899.0,-214689.0,-214449.0,-214215.0,-214031.0,-213918.0,-213847.0,-213829.0,-213864.0,-213933.0,-213992.0,-214045.0,-214144.0,-214280.0,-214458.0,-214665.0,-214893.0,-215069.0,-215193.0,-215339.0,-215623.0,-216046.0,-216534.0,-217008.0,-217406.0,-217757.0,-218011.0,-218149.0,-218191.0,-218274.0,-218488.0,-218783.0,-219054.0,-219253.0,-219395.0,-219525.0,-219640.0,-219741.0,-219824.0,-219928.0,-220025.0,-220022.0,-219895.0,-219667.0,-219381.0,-219015.0,-218613.0,-218201.0,-217751.0,-217172.0,-216475.0,-215736.0,-214993.0,-214188.0,-213306.0,-212373.0,-211410.0,-210349.0,-209155.0,-207902.0,-206593.0,-205246.0,-203805.0,-202348.0,-200854.0,-199295.0,-197618.0,-195818.0,-193969.0,-192046.0,-190028.0,-187889.0,-185730.0,-183604.0,-181447.0,-179167.0,-176792.0,-174353.0,-171848.0,-169248.0,-166559.0,-163838.0,-161077.0,-158257.0,-155321.0,-152270.0,-149177.0,-146087.0,-143011.0,-139949.0,-136925.0,-133906.0,-130868.0,-127821.0,-124770.0,-121711.0,-118653.0,-115607.0,-112599.0,-109610.0,-106649.0,-103748.0,-100920.0,-98235.0,-95649.0,-93141.0,-90733.0,-88490.0,-86411.0,-84384.0,-82384.0,-80470.0,-78702.0,-77045.0,-75512.0,-74119.0,-72891.0,-71789.0,-70822.0,-70011.0,-69370.0,-68921.0,-68701.0,-68729.0,-68936.0,-69232.0,-69588.0,-70095.0,-70802.0,-71732.0,-72852.0,-74176.0,-75734.0,-77477.0,-79344.0,-81256.0,-83263.0,-85419.0,-87735.0,-90213.0,-92862.0,-95673.0,-98589.0,-101600.0,-104696.0,-107807.0,-110891.0,-113935.0,-116992.0,-120058.0,-123154.0,-126308.0,-129484.0,-132709.0,-135941.0,-139181.0,-142409.0,-145613.0,-148831.0,-152036.0,-155271.0,-158478.0,-161616.0,-164690.0,-167715.0,-170652.0,-173441.0,-176103.0,-178702.0,-181231.0,-183636.0,-185976.0,-188296.0,-190628.0,-192878.0,-195023.0,-197102.0,-199103.0,-200963.0,-202638.0,-204197.0,-205755.0,-207363.0,-209014.0,-210648.0,-212238.0,-213771.0,-215225.0,-216528.0,-217688.0,-218793.0,-219882.0,-220931.0,-221892.0,-222850.0,-223820.0,-224750.0,-225670.0,-226606.0,-227526.0,-228290.0,-228882.0,-229434.0,-230000.0,-230570.0,-231133.0,-231754.0,-232467.0,-233192.0,-233859.0,-234449.0,-235036.0,-235603.0,-236132.0,-236621.0,-237090.0,-237573.0,-238040.0,-238487.0,-238904.0,-239352.0,-239865.0,-240430.0,-240997.0,-241594.0,-242190.0,-242731.0,-243139.0,-243478.0,-243829.0,-244206.0,-244625.0,-245096.0,-245672.0,-246259.0,-246806.0,-247298.0,-247734.0,-248125.0,-248427.0,-248704.0,-249009.0,-249366.0,-249757.0,-250120.0,-250481.0,-250841.0,-251156.0,-251431.0,-251726.0,-252144.0,-252660.0,-253168.0,-253620.0,-253988.0,-254312.0,-254590.0,-254870.0,-255212.0,-255598.0,-256015.0,-256387.0,-256715.0,-257008.0,-257324.0,-257717.0,-258144.0,-258623.0,-259138.0,-259660.0,-260074.0,-260360.0,-260606.0,-260879.0,-261151.0,-261414.0,-261639.0,-261838.0,-262029.0,-262286.0,-262663.0,-263096.0,-263585.0,-264077.0,-264523.0,-264850.0,-265036.0,-265176.0,-265324.0,-265539.0,-265782.0,-266025.0,-266209.0,-266306.0,-266358.0,-266410.0,-266498.0,-266622.0,-266818.0,-267058.0,-267285.0,-267453.0,-267611.0,-267697.0,-267662.0,-267546.0,-267462.0,-267456.0,-267446.0,-267465.0,-267544.0,-267642.0,-267663.0,-267588.0,-267466.0,-267326.0,-267170.0,-266990.0,-266809.0,-266642.0,-266508.0,-266381.0,-266186.0,-265943.0,-265681.0,-265377.0,-264980.0,-264485.0,-263970.0,-263469.0,-263000.0,-262640.0,-262398.0,-262216.0,-262032.0,-261813.0,-261563.0,-261192.0,-260693.0,-260125.0,-259512.0,-258854.0,-258130.0,-257411.0,-256719.0,-256007.0,-255298.0,-254633.0,-253963.0,-253193.0,-252311.0,-251446.0,-250617.0,-249738.0,-248804.0,-247855.0,-246909.0,-245896.0,-244808.0,-243669.0,-242513.0,-241361.0,-240268.0,-239178.0,-238006.0,-236758.0,-235481.0,-234209.0,-232874.0,-231505.0,-230164.0,-228861.0,-227552.0,-226182.0,-224697.0,-223126.0,-221551.0,-220037.0,-218502.0,-216862.0,-215170.0,-213438.0,-211603.0,-209630.0,-207576.0,-205516.0,-203396.0,-201216.0,-198940.0,-196540.0,-194014.0,-191376.0,-188720.0,-186055.0,-183381.0,-180674.0,-177934.0,-175177.0,-172377.0,-169468.0,-166444.0,-163293.0,-160035.0,-156630.0,-153056.0,-149328.0,-145485.0,-141588.0,-137594.0,-133501.0,-129319.0,-125112.0,-120875.0,-116559.0,-112200.0,-107832.0,-103447.0,-98951.0,-94242.0,-89371.0,-84390.0,-79343.0,-74197.0,-68972.0,-63797.0,-58673.0,-53570.0,-48437.0,-43305.0,-38212.0,-33153.0,-28139.0,-23137.0,-18150.0,-13222.0,-8352.0,-3492.0,1336.0,6038.0,10550.0,14938.0,19220.0,23395.0,27486.0,31550.0,35569.0,39450.0,43127.0,46571.0,49778.0,52756.0,55553.0,58233.0,60774.0,63156.0,65395.0,67495.0,69422.0,71091.0,72544.0,73768.0,74770.0,75567.0,76233.0,76812.0,77253.0,77533.0,77605.0,77428.0,76954.0,76189.0,75182.0,73982.0,72595.0,71010.0,69229.0,67251.0,65076.0,62637.0,60025.0,57284.0,54405.0,51329.0,48013.0,44585.0,41017.0,37306.0,33465.0,29545.0,25594.0,21553.0,17387.0,13076.0,8627.0,4076.0,-552.0,-5248.0,-9981.0,-14759.0,-19569.0,-24380.0,-29169.0,-33926.0,-38668.0,-43399.0,-48101.0,-52797.0,-57512.0,-62242.0,-66948.0,-71534.0,-75994.0,-80361.0,-84652.0,-88879.0,-93062.0,-97202.0,-101266.0,-105222.0,-109095.0,-112892.0,-116577.0,-120233.0,-123869.0,-127397.0,-130766.0,-133980.0,-137103.0,-140050.0,-142838.0,-145578.0,-148260.0,-150852.0,-153316.0,-155700.0,-157985.0,-160107.0,-162110.0,-164028.0,-165899.0,-167724.0,-169544.0,-171375.0,-173180.0,-174870.0,-176415.0,-177885.0,-179294.0,-180611.0,-181756.0,-182785.0,-183772.0,-184738.0,-185653.0,-186513.0,-187366.0,-188214.0,-188990.0,-189647.0,-190169.0,-190634.0,-191084.0,-191523.0,-191932.0,-192276.0,-192647.0,-193020.0,-193413.0,-193822.0,-194229.0,-194646.0,-194971.0,-195165.0,-195217.0,-195177.0,-195094.0,-194914.0,-194718.0,-194614.0,-194611.0,-194590.0,-194461.0,-194292.0,-194106.0,-193875.0,-193631.0,-193418.0,-193265.0,-193103.0,-192875.0,-192559.0,-192163.0,-191750.0,-191370.0,-191049.0,-190782.0,-190533.0,-190273.0,-189968.0,-189606.0,-189235.0,-188858.0,-188478.0,-188079.0,-187676.0,-187304.0,-186947.0,-186593.0,-186274.0,-185958.0,-185652.0,-185322.0,-184957.0,-184535.0,-184053.0,-183602.0,-183166.0,-182785.0,-182449.0,-182188.0,-181946.0,-181697.0,-181456.0,-181217.0,-181011.0,-180831.0,-180697.0,-180533.0,-180321.0,-180070.0,-179798.0,-179580.0,-179443.0,-179421.0,-179478.0,-179557.0,-179640.0,-179725.0,-179793.0,-179849.0,-179903.0,-179986.0,-180075.0,-180119.0,-180144.0,-180189.0,-180293.0,-180407.0,-180536.0,-180734.0,-181034.0,-181406.0,-181807.0,-182245.0,-182704.0,-183127.0,-183504.0,-183889.0,-184350.0,-184901.0,-185521.0,-186175.0,-186832.0,-187490.0,-188135.0,-188760.0,-189349.0,-189982.0,-190657.0,-191356.0,-192028.0,-192711.0,-193438.0,-194179.0,-194977.0,-195842.0,-196771.0,-197664.0,-198518.0,-199370.0,-200243.0,-201067.0,-201866.0,-202713.0,-203663.0,-204682.0,-205658.0,-206612.0,-207542.0,-208481.0,-209398.0,-210296.0,-211231.0,-212176.0,-213095.0,-213993.0,-214935.0,-215928.0,-216944.0,-217985.0,-219074.0,-220143.0,-221142.0,-222039.0,-222809.0,-223479.0,-224111.0,-224824.0,-225586.0,-226323.0,-227028.0,-227782.0,-228649.0,-229550.0,-230432.0,-231298.0,-232204.0,-233108.0,-233904.0,-234602.0,-235288.0,-236062.0,-236867.0,-237655.0,-238392.0,-239091.0,-239777.0,-240464.0,-241200.0,-241936.0,-242672.0,-243458.0,-244281.0,-245082.0,-245841.0,-246559.0,-247248.0,-247849.0,-248389.0,-248934.0,-249448.0,-249991.0,-250599.0,-251253.0,-251910.0,-252547.0,-253236.0,-253959.0,-254624.0,-255239.0,-255841.0,-256453.0,-257049.0,-257600.0,-258169.0,-258762.0,-259356.0,-259949.0,-260570.0,-261270.0,-262030.0,-262804.0,-263562.0,-264265.0,-264883.0,-265389.0,-265829.0,-266335.0,-266923.0,-267597.0,-268286.0,-268996.0,-269723.0,-270383.0,-270962.0,-271378.0,-271703.0,-272044.0,-272426.0,-272915.0,-273468.0,-274095.0,-274714.0,-275274.0,-275828.0,-276377.0,-276921.0,-277464.0,-278077.0,-278784.0,-279562.0,-280325.0,-281033.0,-281717.0,-282386.0,-282995.0,-283458.0,-283829.0,-284268.0,-284795.0,-285346.0,-285828.0,-286281.0,-286740.0,-287164.0,-287582.0,-288028.0,-288576.0,-289243.0,-289990.0,-290744.0,-291456.0,-292128.0,-292767.0,-293318.0,-293783.0,-294196.0,-294588.0,-295026.0,-295513.0,-296042.0,-296536.0,-296987.0,-297410.0,-297807.0,-298197.0,-298587.0,-298984.0,-299418.0,-299931.0,-300502.0,-301110.0,-301753.0,-302457.0,-303149.0,-303759.0,-304288.0,-304713.0,-305004.0,-305166.0,-305299.0,-305432.0,-305571.0,-305775.0,-306089.0,-306460.0,-306773.0,-307020.0,-307235.0,-307428.0,-307639.0,-307900.0,-308284.0,-308726.0,-309127.0,-309414.0,-309609.0,-309829.0,-310068.0,-310352.0,-310655.0,-311002.0,-311338.0,-311593.0,-311786.0,-311934.0,-312080.0,-312211.0,-312301.0,-312355.0,-312336.0,-312322.0,-312368.0,-312492.0,-312673.0,-312825.0,-312961.0,-313113.0,-313277.0,-313401.0,-313457.0,-313521.0,-313672.0,-313828.0,-313952.0,-314076.0,-314209.0,-314304.0,-314287.0,-314230.0,-314137.0,-314069.0,-314080.0,-314169.0,-314324.0,-314465.0,-314621.0,-314739.0,-314848.0,-315018.0,-315253.0,-315548.0,-315871.0,-316235.0,-316616.0,-316939.0,-317174.0,-317316.0,-317422.0,-317555.0,-317706.0,-317906.0,-318175.0,-318476.0,-318774.0,-319023.0,-319271.0,-319522.0,-319786.0,-320131.0,-320511.0,-320814.0,-321011.0,-321145.0,-321284.0,-321382.0,-321466.0,-321649.0,-321917.0,-322196.0,-322425.0,-322673.0,-322959.0,-323249.0,-323556.0,-323974.0,-324437.0,-324844.0,-325183.0,-325554.0,-325963.0,-326322.0,-326647.0,-327001.0,-327384.0,-327715.0,-327953.0,-328179.0,-328434.0,-328734.0,-329015.0,-329220.0,-329420.0,-329622.0,-329910.0,-330217.0,-330527.0,-330849.0,-331170.0,-331501.0,-331784.0,-332031.0,-332297.0,-332571.0,-332826.0,-333061.0,-333307.0,-333543.0,-333795.0,-334108.0,-334497.0,-334856.0,-335132.0,-335419.0,-335683.0,-335911.0,-336058.0,-336198.0,-336364.0,-336533.0,-336752.0,-336996.0,-337290.0,-337562.0,-337775.0,-337899.0,-337916.0,-337885.0,-337823.0,-337794.0,-337816.0,-337875.0,-337904.0,-337826.0,-337681.0,-337535.0,-337441.0,-337403.0,-337424.0,-337532.0,-337664.0,-337759.0,-337770.0,-337732.0,-337709.0,-337666.0,-337612.0,-337523.0,-337405.0,-337192.0,-336889.0,-336609.0,-336373.0,-336179.0,-335980.0,-335849.0,-335746.0,-335608.0,-335448.0,-335293.0,-335126.0,-334870.0,-334585.0,-334345.0,-334131.0,-333886.0,-333628.0,-333426.0,-333281.0,-333089.0,-332808.0,-332469.0,-332118.0,-331710.0,-331238.0,-330780.0,-330369.0,-329949.0,-329486.0,-329015.0,-328545.0,-328021.0,-327418.0,-326776.0,-326100.0,-325402.0,-324646.0,-323848.0,-323030.0,-322190.0,-321316.0,-320323.0,-319188.0,-317892.0,-316464.0,-315160.0,-314542.0,-315259.0,-317498.0,-320935.0,-324873.0,-328520.0,-330967.0,-331453.0,-329792.0,-326383.0,-321991.0,-317237.0,-312504.0,-307950.0,-303615.0,-299551.0,-295740.0,-292141.0,-288744.0,-285576.0,-282646.0,-279881.0,-277228.0,-274733.0,-272409.0,-270335.0,-268647.0,-267496.0,-266930.0,-266879.0,-267345.0,-268279.0,-269538.0,-270937.0,-272388.0,-273886.0,-275371.0,-276789.0,-278138.0,-279485.0,-280835.0,-282168.0,-283522.0,-284922.0,-286359.0,-287740.0,-289030.0,-290211.0,-291259.0,-292152.0,-292914.0,-293577.0,-294209.0,-294843.0,-295480.0,-296099.0,-296669.0,-297250.0,-297861.0,-298524.0,-299181.0,-299829.0,-300468.0,-301073.0,-301570.0,-301926.0,-302246.0,-302607.0,-302998.0,-303355.0,-303704.0,-304099.0,-304508.0,-304846.0,-305122.0,-305388.0,-305661.0,-305900.0,-306091.0,-306294.0,-306526.0,-306758.0,-306938.0,-307011.0,-306994.0,-306935.0,-306899.0,-306915.0,-306988.0,-307157.0,-307418.0,-307689.0,-307903.0,-308081.0,-308243.0,-308374.0,-308467.0,-308570.0,-308668.0,-308688.0,-308684.0,-308697.0,-308753.0,-308787.0,-308816.0,-308921.0,-309088.0,-309298.0,-309475.0,-309612.0,-309667.0,-309597.0,-309390.0,-309083.0,-308695.0,-308199.0,-307638.0,-307035.0,-306423.0,-305763.0,-305062.0,-304342.0,-303516.0,-302518.0,-301295.0,-299849.0,-298168.0,-296247.0,-294156.0,-291942.0,-289657.0,-287291.0,-284903.0,-282501.0,-280058.0,-277513.0,-274827.0,-272068.0,-269270.0,-266507.0,-263848.0,-261346.0,-258998.0,-256782.0,-254721.0,-252804.0,-250962.0,-249181.0,-247489.0,-245874.0,-244255.0,-242619.0,-241017.0,-239417.0,-237739.0,-235922.0,-233991.0,-231910.0,-229637.0,-227232.0,-224777.0,-222311.0,-219841.0,-217446.0,-215199.0,-213107.0,-211195.0,-209537.0,-208189.0,-207194.0,-206576.0,-206353.0,-206516.0,-207045.0,-207931.0,-209126.0,-210562.0,-212170.0,-213861.0,-215618.0,-217439.0,-219305.0,-221182.0,-223089.0,-225091.0,-227190.0,-229349.0,-231543.0,-233783.0,-236053.0,-238354.0,-240693.0,-243099.0,-245569.0,-248131.0,-250817.0,-253597.0,-256425.0,-259234.0,-262012.0,-264683.0,-267163.0,-269471.0,-271692.0,-273855.0,-275920.0,-277881.0,-279797.0,-281662.0,-283378.0,-284939.0,-286391.0,-287794.0,-289148.0,-290444.0,-291676.0,-292802.0,-293828.0,-294788.0,-295669.0,-296446.0,-297134.0,-297756.0,-298350.0,-298888.0,-299441.0,-299983.0,-300489.0,-300966.0,-301400.0,-301835.0,-302237.0,-302649.0,-303098.0,-303579.0,-304090.0,-304555.0,-304918.0,-305245.0,-305532.0,-305727.0,-305784.0,-305816.0,-305972.0,-306143.0,-306303.0,-306491.0,-306756.0,-306993.0,-307077.0,-307128.0,-307239.0,-307446.0,-307671.0,-307929.0,-308232.0,-308490.0,-308667.0,-308759.0,-308830.0,-308876.0,-308867.0,-308827.0,-308758.0,-308706.0,-308693.0,-308694.0,-308646.0,-308495.0,-308328.0,-308164.0,-307994.0,-307811.0,-307723.0,-307804.0,-307958.0,-308099.0,-308179.0,-308187.0,-308099.0,-307905.0,-307665.0,-307400.0,-307162.0,-306982.0,-306891.0,-306830.0,-306759.0,-306674.0,-306564.0,-306458.0,-306365.0,-306305.0,-306236.0,-306150.0,-306089.0,-306032.0,-305925.0,-305796.0,-305663.0,-305547.0,-305372.0,-305150.0,-304927.0,-304669.0,-304413.0,-304140.0,-303881.0,-303543.0,-303053.0,-302450.0,-301756.0,-300980.0,-300111.0,-299234.0,-298376.0,-297499.0,-296554.0,-295548.0,-294473.0,-293335.0,-292172.0,-291019.0,-289864.0,-288692.0,-287510.0,-286313.0,-285141.0,-283965.0,-282748.0,-281468.0,-280166.0,-278913.0,-277674.0,-276434.0,-275190.0,-273939.0,-272663.0,-271367.0,-270070.0,-268800.0,-267562.0,-266368.0,-265238.0,-264146.0,-263090.0,-262066.0,-261074.0,-260080.0,-259007.0,-257846.0,-256620.0,-255405.0,-254266.0,-253252.0,-252348.0,-251481.0,-250635.0,-249772.0,-248863.0,-247885.0,-246924.0,-246055.0,-245267.0,-244553.0,-243925.0,-243374.0,-242863.0,-242409.0,-242079.0,-241891.0,-241841.0,-241884.0,-242002.0,-242178.0,-242441.0,-242804.0,-243242.0,-243788.0,-244491.0,-245366.0,-246307.0,-247249.0,-248206.0,-249221.0,-250275.0,-251315.0,-252364.0,-253419.0,-254501.0,-255586.0,-256654.0,-257739.0,-258856.0,-259990.0,-261064.0,-262051.0,-262970.0,-263838.0,-264650.0,-265451.0,-266259.0,-267096.0,-267972.0,-268829.0,-269638.0,-270378.0,-271145.0,-271957.0,-272739.0,-273505.0,-274267.0,-275044.0,-275745.0,-276383.0,-276963.0,-277494.0,-277967.0,-278435.0,-278913.0,-279331.0,-279773.0,-280268.0,-280863.0,-281456.0,-282049.0,-282691.0,-283356.0,-283982.0,-284496.0,-284904.0,-285219.0,-285449.0,-285591.0,-285653.0,-285630.0,-285507.0,-285244.0,-284758.0,-284031.0,-283146.0,-282210.0,-281175.0,-279927.0,-278477.0,-276843.0,-274894.0,-272420.0,-269437.0,-266004.0,-262017.0,-257216.0,-251402.0,-244415.0,-235942.0,-225620.0,-213150.0,-198160.0,-180181.0,-158691.0,-133285.0,-103588.0,-69183.0,-29760.0,14887.0,64875.0,120266.0,181034.0,247034.0,317972.0,393412.0,472826.0,555615.0,641089.0,728458.0,817006.0,906076.0,995026.0,1083206.0,1170011.0,1254931.0,1337444.0,1417076.0,1493449.0,1566345.0,1635591.0,1700962.0,1762323.0,1819568.0,1872607.0,1921230.0,1965302.0,2004771.0,2039539.0,2069447.0,2094274.0,2113846.0,2127919.0,2136271.0,2138717.0,2135124.0,2125354.0,2109355.0,2087207.0,2059075.0,2025188.0,1985828.0,1941453.0,1892601.0,1839894.0,1783950.0,1725329.0,1664603.0,1602403.0,1539407.0,1476206.0,1413374.0,1351515.0,1291182.0,1232752.0,1176477.0,1122573.0,1071194.0,1022425.0,976323.0,932915.0,892160.0,853983.0,818272.0,784874.0,753604.0,724261.0,696737.0,670874.0,646461.0,623250.0,601038.0,579695.0,559004.0,538772.0,518882.0,499300.0,479963.0,460786.0,441718.0,422732.0,403797.0,384874.0,365963.0,347075.0,328191.0,309368.0,290624.0,272012.0,253560.0,235257.0,217145.0,199241.0,181628.0,164335.0,147409.0,130942.0,115034.0,99684.0,84851.0,70513.0,56671.0,43321.0,30436.0,18072.0,6233.0,-5067.0,-15829.0,-26081.0,-35867.0,-45268.0,-54240.0,-62784.0,-70932.0,-78688.0,-86039.0,-93014.0,-99701.0,-106110.0,-112170.0,-117884.0,-123299.0,-128415.0,-133170.0,-137567.0,-141720.0,-145740.0,-149618.0,-153312.0,-156839.0,-160236.0,-163543.0,-166730.0,-169801.0,-172713.0,-175487.0,-178184.0,-180800.0,-183315.0,-185775.0,-188329.0,-190968.0,-193548.0,-196002.0,-198425.0,-200823.0,-203112.0,-205291.0,-207490.0,-209781.0,-212101.0,-214394.0,-216675.0,-218984.0,-221305.0,-223599.0,-225828.0,-228015.0,-230174.0,-232286.0,-234352.0,-236352.0,-238299.0,-240120.0,-241804.0,-243361.0,-244783.0,-246057.0,-247147.0,-248112.0,-248938.0,-249578.0,-249984.0,-250151.0,-250080.0,-249784.0,-249299.0,-248767.0,-248247.0,-247761.0,-247247.0,-246610.0,-245816.0,-244832.0,-243708.0,-242465.0,-241197.0,-240008.0,-238933.0,-237895.0,-236777.0,-235533.0,-234164.0,-232710.0,-231144.0,-229436.0,-227511.0,-225374.0,-223029.0,-220410.0,-217428.0,-214094.0,-210556.0,-206812.0,-202777.0,-198372.0,-193653.0,-188624.0,-183161.0,-177231.0,-170848.0,-164081.0,-156913.0,-149295.0,-141241.0,-132750.0,-123871.0,-114595.0,-104886.0,-94702.0,-84026.0,-72899.0,-61323.0,-49319.0,-36948.0,-24283.0,-11375.0,1800.0,15187.0,28721.0,42331.0,55960.0,69544.0,83052.0,96467.0,109789.0,122976.0,135995.0,148865.0,161525.0,173984.0,186164.0,198041.0,209551.0,220611.0,231156.0,241140.0,250612.0,259543.0,267943.0,275808.0,283200.0,290085.0,296419.0,302226.0,307427.0,311954.0,315682.0,318647.0,320796.0,322032.0,322354.0,321805.0,320429.0,318064.0,314686.0,310361.0,305163.0,299078.0,292077.0,284278.0,275717.0,266326.0,256066.0,244956.0,233120.0,220650.0,207602.0,194120.0,180281.0,166121.0,151646.0,136886.0,122012.0,107121.0,92275.0,77563.0,63045.0,48787.0,34808.0,21101.0,7687.0,-5403.0,-18089.0,-30339.0,-42178.0,-53559.0,-64424.0,-74754.0,-84540.0,-93787.0,-102448.0,-110510.0,-118033.0,-125057.0,-131650.0,-137769.0,-143440.0,-148771.0,-153779.0,-158441.0,-162709.0,-166607.0,-170133.0,-173209.0,-175814.0,-177942.0,-179606.0,-180830.0,-181635.0,-182029.0,-181972.0,-181460.0,-180442.0,-178908.0,-176893.0,-174415.0,-171473.0,-168013.0,-164086.0,-159714.0,-154917.0,-149746.0,-144291.0,-138637.0,-132870.0,-127095.0,-121345.0,-115663.0,-110083.0,-104727.0,-99593.0,-94692.0,-90076.0,-85824.0,-81964.0,-78477.0,-75423.0,-72826.0,-70646.0,-68814.0,-67366.0,-66368.0,-65842.0,-65768.0,-66172.0,-67111.0,-68563.0,-70453.0,-72697.0,-75300.0,-78304.0,-81689.0,-85418.0,-89407.0,-93668.0,-98186.0,-102874.0,-107653.0,-112466.0,-117363.0,-122292.0,-127178.0,-132040.0,-136913.0,-141822.0,-146698.0,-151518.0,-156308.0,-161024.0,-165630.0,-170119.0,-174520.0,-178929.0,-183349.0,-187792.0,-192194.0,-196466.0,-200619.0,-204618.0,-208481.0,-212190.0,-215798.0,-219431.0,-223056.0,-226644.0,-230203.0,-233762.0,-237320.0,-240740.0,-244038.0,-247231.0,-250360.0,-253427.0,-256437.0,-259415.0,-262332.0,-265209.0,-267957.0,-270498.0,-272800.0,-274993.0,-277156.0,-279186.0,-281014.0,-282693.0,-284287.0,-285760.0,-287086.0,-288328.0,-289597.0,-290915.0,-292248.0,-293553.0,-294807.0,-296082.0,-297391.0,-298705.0,-300014.0,-301349.0,-302759.0,-304163.0,-305483.0,-306722.0,-307936.0,-309172.0,-310442.0,-311754.0,-313124.0,-314533.0,-315977.0,-317404.0,-318778.0,-320126.0,-321481.0,-322859.0,-324179.0,-325408.0,-326590.0,-327745.0,-328862.0,-329886.0,-330838.0,-331780.0,-332693.0,-333522.0,-334238.0,-334910.0,-335615.0,-336346.0,-337054.0,-337698.0,-338259.0,-338738.0,-339142.0,-339463.0,-339695.0,-339878.0,-340101.0,-340396.0,-340699.0,-340979.0,-341273.0,-341623.0,-342017.0,-342408.0,-342835.0,-343318.0,-343882.0,-344503.0,-345128.0,-345714.0,-346234.0,-346742.0,-347245.0,-347766.0,-348291.0,-348841.0,-349408.0,-349992.0,-350617.0,-351299.0,-352072.0,-352946.0,-353874.0,-354745.0,-355521.0,-356217.0,-356868.0,-357462.0,-358076.0,-358771.0,-359477.0,-360097.0,-360592.0,-361006.0,-361281.0,-361353.0,-361251.0,-361019.0,-360648.0,-360104.0,-359376.0,-358518.0,-357599.0,-356671.0,-355776.0,-354915.0,-354127.0,-353394.0,-352679.0,-351972.0,-351318.0,-350713.0,-350160.0,-349686.0,-349323.0,-349027.0,-348809.0,-348739.0,-348851.0,-349100.0,-349445.0,-349879.0,-350344.0,-350847.0,-351334.0,-351745.0,-351968.0,-351990.0,-351796.0,-351280.0,-350335.0,-348893.0,-346960.0,-344490.0,-341397.0,-337577.0,-333022.0,-327742.0,-321751.0,-315021.0,-307604.0,-299613.0,-291132.0,-282257.0,-273077.0,-263719.0,-254242.0,-244679.0,-235134.0,-225703.0,-216457.0,-207382.0,-198490.0,-189844.0,-181399.0,-173126.0,-164960.0,-156891.0,-148885.0,-140846.0,-132710.0,-124410.0,-115945.0,-107352.0,-98631.0,-89850.0,-81109.0,-72529.0,-64177.0,-56111.0,-48492.0,-41430.0,-34976.0,-29187.0,-24144.0,-19827.0,-16096.0,-12874.0,-10165.0,-7894.0,-5922.0,-4078.0,-2249.0,-248.0,2150.0,5180.0,9091.0,14160.0,20740.0,29222.0,40008.0,53589.0,70531.0,91396.0,116731.0,147175.0,183437.0,226192.0,276076.0,333731.0,399791.0,474681.0,558773.0,652343.0,755592.0,868560.0,991002.0,1122554.0,1262620.0,1410461.0,1565004.0,1724947.0,1889016.0,2055898.0,2224252.0,2392665.0,2559847.0,2724567.0,2885602.0,3041806.0,3192114.0,3335649.0,3471631.0,3599441.0,3718585.0,3828676.0,3929486.0,4020816.0,4102567.0,4174709.0,4237175.0,4289891.0,4332794.0,4365793.0,4388693.0,4401219.0,4403183.0,4394428.0,4374700.0,4343836.0,4301734.0,4248468.0,4184166.0,4108991.0,4023271.0,3927424.0,3822101.0,3708029.0,3586015.0,3456995.0,3322052.0,3182392.0,3039295.0,2893999.0,2747796.0,2601989.0,2457818.0,2316354.0,2178453.0,2044921.0,1916474.0,1793747.0,1677222.0,1567260.0,1464110.0,1367886.0,1278602.0,1196097.0,1120147.0,1050468.0,986758.0,928656.0,875747.0,827668.0,784023.0,744410.0,708394.0,675634.0,645796.0,618515.0,593428.0,570227.0,548662.0,528504.0,509509.0,491481.0,474188.0,457472.0,441215.0,425294.0,409562.0,393827.0,378041.0,362182.0,346152.0,329815.0,313187.0,296358.0,279309.0,261936.0,244289.0,226479.0,208523.0,190383.0,172094.0,153722.0,135299.0,116835.0,98376.0,80013.0,61816.0,43916.0,26414.0,9363.0,-7269.0,-23536.0,-39332.0,-54659.0,-69554.0,-84078.0,-98152.0,-111628.0,-124514.0,-136816.0,-148557.0,-159718.0,-170280.0,-180242.0,-189647.0,-198506.0,-206765.0,-214367.0,-221320.0,-227702.0,-233534.0,-238821.0,-243591.0,-247926.0,-251904.0,-255536.0,-258741.0,-261501.0,-263876.0,-265913.0,-267609.0,-268974.0,-270074.0,-270989.0,-271736.0,-272306.0,-272703.0,-272937.0,-273058.0,-273077.0,-272992.0,-272771.0,-272420.0,-272016.0,-271611.0,-271245.0,-270939.0,-270733.0,-270645.0,-270650.0,-270752.0,-270969.0,-271329.0,-271878.0,-272653.0,-273642.0,-274822.0,-276193.0,-277695.0,-279256.0,-280860.0,-282576.0,-284415.0,-286330.0,-288362.0,-290525.0,-292826.0,-295188.0,-297568.0,-299892.0,-302114.0,-304302.0,-306386.0,-308303.0,-309998.0,-311533.0,-312886.0,-313906.0,-314586.0,-314953.0,-314950.0,-314393.0,-313107.0,-310968.0,-307814.0,-303480.0,-297862.0,-290802.0,-282134.0,-271624.0,-259080.0,-244284.0,-226992.0,-207029.0,-184161.0,-158230.0,-129017.0,-96281.0,-59759.0,-19264.0,25264.0,73917.0,126770.0,183890.0,245268.0,310925.0,380838.0,454936.0,533132.0,615253.0,701011.0,790058.0,882049.0,976604.0,1073265.0,1171557.0,1271062.0,1371331.0,1471843.0,1572115.0,1671680.0,1770100.0,1866988.0,1962006.0,2054906.0,2145388.0,2233124.0,2317864.0,2399385.0,2477569.0,2552309.0,2623603.0,2691467.0,2755834.0,2816625.0,2873690.0,2926921.0,2976125.0,3021234.0,3062235.0,3098979.0,3131285.0,3158940.0,3181880.0,3199868.0,3212634.0,3220077.0,3222177.0,3218946.0,3210211.0,3195948.0,3176201.0,3151048.0,3120552.0,3084817.0,3044159.0,2998939.0,2949562.0,2896386.0,2839831.0,2780364.0,2718484.0,2654750.0,2589666.0,2523740.0,2457475.0,2391398.0,2325953.0,2261475.0,2198329.0,2136924.0,2077599.0,2020576.0,1966042.0,1914215.0,1865238.0,1819074.0,1775666.0,1734987.0,1697048.0,1661724.0,1628857.0,1598367.0,1570165.0,1544105.0,1519958.0,1497586.0,1476821.0,1457477.0,1439371.0,1422348.0,1406327.0,1391141.0,1376717.0,1363028.0,1350043.0,1337695.0,1325849.0,1314434.0,1303387.0,1292658.0,1282208.0,1272022.0,1262078.0,1252387.0,1242909.0,1233586.0,1224418.0,1215396.0,1206469.0,1197576.0,1188738.0,1179993.0,1171241.0,1162387.0,1153443.0,1144446.0,1135357.0,1126178.0,1116975.0,1107795.0,1098591.0,1089311.0,1080002.0,1070645.0,1061198.0,1051634.0,1041999.0,1032317.0,1022492.0,1012431.0,1002070.0,991388.0,980328.0,968804.0,956761.0,944140.0,930925.0,917079.0,902509.0,887085.0,870700.0,853359.0,835080.0,815835.0,795718.0,774835.0,753301.0,731128.0,708288.0,684833.0,660796.0,636258.0,611285.0,586009.0,560583.0,535100.0,509608.0,484187.0,458973.0,433991.0,409262.0,384837.0,360826.0,337284.0,314212.0,291695.0,269825.0,248683.0,228259.0,208589.0,189667.0,171502.0,154042.0,137226.0,121067.0,105557.0,90692.0,76459.0,62876.0,49947.0,37622.0,25846.0,14608.0,3857.0,-6460.0,-16372.0,-25883.0,-35011.0,-43833.0,-52428.0,-60851.0,-69108.0,-77197.0,-85188.0,-93089.0,-100897.0,-108560.0,-116100.0,-123578.0,-130957.0,-138220.0,-145340.0,-152366.0,-159366.0,-166331.0,-173253.0,-180066.0,-186796.0,-193463.0,-200016.0,-206386.0,-212588.0,-218683.0,-224671.0,-230530.0,-236344.0,-242111.0,-247739.0,-253174.0,-258437.0,-263581.0,-268507.0,-273247.0,-277852.0,-282385.0,-286762.0,-290900.0,-294809.0,-298576.0,-302271.0,-305865.0,-309381.0,-312766.0,-315993.0,-318940.0,-321506.0,-323648.0,-325333.0,-326571.0,-327289.0,-327452.0,-327050.0,-326065.0,-324362.0,-321883.0,-318606.0,-314449.0,-309261.0,-302883.0,-295315.0,-286472.0,-276213.0,-264482.0,-251264.0,-236657.0,-220681.0,-203384.0,-184870.0,-165224.0,-144566.0,-122956.0,-100507.0,-77268.0,-53345.0,-28927.0,-4297.0,20308.0,44717.0,68712.0,92097.0,114704.0,136466.0,157323.0,177116.0,195695.0,212906.0,228708.0,243065.0,255867.0,267031.0,276457.0,284144.0,290023.0,294067.0,296299.0,296827.0,295778.0,293180.0,289136.0,283778.0,277297.0,269801.0,261427.0,252416.0,243013.0,233385.0,223699.0,214211.0,205167.0,196779.0,189254.0,182885.0,177926.0,174555.0,172960.0,173251.0,175534.0,179913.0,186466.0,195215.0,206106.0,219110.0,234153.0,251026.0,269503.0,289387.0,310443.0,332435.0,355087.0,378104.0,401124.0,423809.0,445950.0,467314.0,487600.0,506481.0,523754.0,539292.0,552925.0,564423.0,573695.0,580776.0,585710.0,588509.0,589103.0,587530.0,583825.0,578115.0,570484.0,560884.0,549367.0,536042.0,521054.0,504498.0,486450.0,467086.0,446598.0,425131.0,402830.0,379750.0,356053.0,331949.0,307653.0,283334.0,259130.0,235252.0,211886.0,189172.0,167211.0,146216.0,126380.0,107909.0,90906.0,75536.0,61919.0,50179.0,40490.0,32973.0,27754.0,24852.0,24356.0,26343.0,30875.0,38006.0,47799.0,60452.0,76209.0,95369.0,118362.0,145828.0,178823.0,218827.0,268002.0,329250.0,406502.0,505031.0,631698.0,795377.0,1007254.0,1281430.0,1635424.0,2090730.0,2673419.0,3414623.0,4351049.0,5524904.0,6983416.0,8778355.0,10965268.0,13602429.0,16749230.0,20464336.0,24803932.0,29819776.0,35556824.0,42049920.0,49319512.0,57368392.0,66180392.0,75720448.0,85935600.0,96756968.0,108103296.0,119884336.0,132003832.0,144361264.0,156852496.0,169369520.0,181801440.0,194039856.0,205982368.0,217535760.0,228617424.0,239159584.0,249110144.0,258429904.0,267089552.0,275066848.0,282347584.0,288922688.0,294786272.0,299936096.0,304374848.0,308110688.0,311153792.0,313512768.0,315197408.0,316218528.0,316582432.0,316294784.0,315358560.0,313782784.0,311577664.0,308751648.0,305319840.0,301298048.0,296704800.0,291557760.0,285879264.0,279701600.0,273059328.0,265993232.0,258552560.0,250793200.0,242773536.0,234550720.0,226183344.0,217728192.0,209238672.0,200764480.0,192353552.0,184052576.0,175906160.0,167955536.0,160237360.0,152783712.0,145620864.0,138768288.0,132238736.0,126038752.0,120170592.0,114633144.0,109423392.0,104536600.0,99965832.0,95702272.0,91735288.0,88052568.0,84639592.0,81479968.0,78556208.0,75850744.0,73346456.0,71026992.0,68876896.0,66881424.0,65026800.0,63299932.0,61688352.0,60179828.0,58762540.0,57425520.0,56158588.0,54952676.0,53799752.0,52692920.0,51626080.0,50593768.0,49591244.0,48614264.0,47658956.0,46721760.0,45799496.0,44889480.0,43989552.0,43098184.0,42214188.0,41336448.0,40464208.0,39597160.0,38735216.0,37878152.0,37025864.0,36178488.0,35336316.0,34499680.0,33669028.0,32844934.0,32027998.0,31219092.0,30419332.0,29629880.0,28851872.0,28086692.0,27335988.0,26601428.0,25884890.0,25188576.0,24515086.0,23867182.0,23248052.0,22661400.0,22111292.0,21602176.0,21138842.0,20726496.0,20370560.0,20076708.0,19850748.0,19698200.0,19624126.0,19633176.0,19729488.0,19916416.0,20196252.0,20570280.0,21038756.0,21600652.0,22253456.0,22992784.0,23812296.0,24703918.0,25658142.0,26664416.0,27711312.0,28787032.0,29879786.0,30977812.0,32069564.0,33143472.0,34188056.0,35192068.0,36144968.0,37037336.0,37860776.0,38608040.0,39273228.0,39851800.0,40340188.0,40735312.0,41034672.0,41236460.0,41339568.0,41343536.0,41248480.0,41055300.0,40765468.0,40381052.0,39904580.0,39338936.0,38687624.0,37954768.0,37145432.0,36265516.0,35321776.0,34321656.0,33272994.0,32183912.0,31062704.0,29917512.0,28756160.0,27586304.0,26415616.0,25251800.0,24102124.0,22973396.0,21871916.0,20803276.0,19772208.0,18782328.0,17836260.0,16935704.0,16081666.0,15274572.0,14514371.0,13800667.0,13132673.0,12509225.0,11928766.0,11389499.0,10889275.0,10425603.0,9995880.0,9597578.0,9228292.0,8885623.0,8567267.0,8271055.0,7995006.0,7737261.0,7496136.0,7269986.0,7057306.0,6856668.0,6666829.0,6486699.0,6315239.0,6151603.0,5995043.0,5844972.0,5700836.0,5562089.0,5428272.0,5298974.0,5173816.0,5052466.0,4934563.0,4819783.0,4707731.0,4598033.0,4490407.0,4384648.0,4280526.0,4177796.0,4076227.0,3975577.0,3875569.0,3775931.0,3676558.0,3577375.0,3478333.0,3379449.0,3280881.0,3182743.0,3085052.0,2987810.0,2891090.0,2795027.0,2699651.0,2605044.0,2511236.0,2418330.0,2326453.0,2235645.0,2145867.0,2057038.0,1969176.0,1882297.0,1796387.0,1711473.0,1627643.0,1544993.0,1463573.0,1383471.0,1304796.0,1227675.0,1152225.0,1078519.0,1006672.0,936847.0,869196.0,803789.0,740685.0,680000.0,621847.0,566236.0,513154.0,462572.0,414438.0,368696.0,325267.0,284077.0,244989.0,207931.0,172849.0,139697.0,108444.0,78919.0,50973.0,24504.0,-540.0,-24215.0,-46677.0,-67958.0,-88023.0,-106900.0,-124626.0,-141311.0,-156985.0,-171643.0,-185240.0,-197763.0,-209256.0,-219683.0,-228978.0,-237080.0,-244098.0,-250034.0,-254853.0,-258500.0,-260924.0,-262119.0,-262001.0,-260618.0,-258018.0,-254265.0,-249494.0,-243781.0,-237225.0,-229862.0,-221784.0,-213109.0,-203882.0,-194277.0,-184438.0,-174504.0,-164605.0,-154919.0,-145652.0,-136872.0,-128612.0,-120921.0,-113829.0,-107338.0,-101448.0,-96232.0,-91751.0,-88102.0,-85287.0,-83334.0,-82206.0,-81870.0,-82306.0,-83440.0,-85265.0,-87760.0,-90908.0,-94644.0,-98922.0,-103737.0,-109036.0,-114688.0,-120633.0,-126854.0,-133321.0,-139909.0,-146548.0,-153195.0,-159708.0,-165895.0,-171623.0,-176846.0,-181510.0,-185532.0,-188910.0,-191664.0,-193768.0,-195163.0,-195811.0,-195731.0,-194927.0,-193439.0,-191313.0,-188562.0,-185208.0,-181276.0,-176913.0,-172209.0,-167249.0,-162090.0,-156825.0,-151575.0,-146365.0,-141223.0,-136223.0,-131486.0,-127060.0,-123052.0,-119568.0,-116657.0,-114241.0,-112306.0,-110963.0,-110246.0,-110132.0,-110591.0,-111667.0,-113412.0,-115814.0,-118814.0,-122366.0,-126500.0,-131243.0,-136545.0,-142323.0,-148515.0,-155083.0,-161974.0,-169145.0,-176602.0,-184330.0,-192272.0,-200356.0,-208494.0,-216585.0,-224518.0,-232148.0,-239368.0,-246101.0,-252315.0,-257970.0,-262884.0,-266919.0,-269995.0,-272040.0,-272883.0,-272336.0,-270394.0,-267073.0,-262319.0,-256116.0,-248565.0,-239826.0,-229964.0,-219044.0,-207191.0,-194529.0,-181219.0,-167454.0,-153469.0,-139489.0,-125693.0,-112240.0,-99245.0,-86825.0,-75140.0,-64362.0,-54603.0,-45881.0,-38203.0,-31637.0,-26172.0,-21782.0,-18439.0,-16245.0,-15282.0,-15542.0,-16978.0,-19543.0,-23260.0,-28130.0,-34115.0,-41076.0,-48903.0,-57559.0,-66991.0,-77130.0,-87857.0,-99121.0,-110870.0,-122971.0,-135224.0,-147388.0,-159269.0,-170742.0,-181636.0,-191711.0,-200717.0,-208420.0,-214593.0,-218924.0,-221094.0,-220810.0,-217751.0,-211568.0,-201823.0,-187915.0,-169101.0,-144524.0,-113210.0,-73857.0,-24798.0,35960.0,110866.0,202962.0,316021.0,454594.0,624178.0,831485.0,1084508.0,1392593.0,1766421.0,2218124.0,2761324.0,3411030.0,4183498.0,5096193.0,6167765.0,7417769.0,8866350.0,10533855.0,12440131.0,14603451.0,17039400.0,19760232.0,22774460.0,26086328.0,29695500.0,33597140.0,37782112.0,42237128.0,46943976.0,51878956.0,57012312.0,62308464.0,67726984.0,73223960.0,78753912.0,84271392.0,89732824.0,95097688.0,100329192.0,105394016.0,110261672.0,114904592.0,119298536.0,123423560.0,127264272.0,130809632.0,134053016.0,136991856.0,139626832.0,141960176.0,143993920.0,145729200.0,147165984.0,148303600.0,149140864.0,149675728.0,149905104.0,149825344.0,149432592.0,148722352.0,147689920.0,146330992.0,144643712.0,142629568.0,140294176.0,137647360.0,134702880.0,131478496.0,127995688.0,124279104.0,120355864.0,116255288.0,112009136.0,107651728.0,103219720.0,98751072.0,94283648.0,89854112.0,85496720.0,81242472.0,77117984.0,73145072.0,69341008.0,65719056.0,62289200.0,59058376.0,56030472.0,53206320.0,50584104.0,48159720.0,45926768.0,43876592.0,41998808.0,40282008.0,38714392.0,37284160.0,35979908.0,34790700.0,33706100.0,32716216.0,31811664.0,30983560.0,30223394.0,29523208.0,28875684.0,28274128.0,27712644.0,27186008.0,26689612.0,26219248.0,25771120.0,25341974.0,24928772.0,24528608.0,24138720.0,23756644.0,23380148.0,23007204.0,22636058.0,22265228.0,21893404.0,21519364.0,21142106.0,20760776.0,20374648.0,19983134.0,19585708.0,19182080.0,18772104.0,18355888.0,17933632.0,17505640.0,17072472.0,16634913.0,16193794.0,15749833.0,15303728.0,14856294.0,14408419.0,13960935.0,13514653.0,13070437.0,12629195.0,12191823.0,11759136.0,11331871.0,10910788.0,10496583.0,10089866.0,9691083.0,9300639.0,8918942.0,8546291.0,8182938.0,7829147.0,7485204.0,7151299.0,6827531.0,6514017.0,6210819.0,5917869.0,5634994.0,5362097.0,5099042.0,4845652.0,4601707.0,4367087.0,4141742.0,3925552.0,3718307.0,3519688.0,3329447.0,3147395.0,2973300.0,2806825.0,2647718.0,2495842.0,2351106.0,2213236.0,2082030.0,1957377.0,1839202.0,1727350.0,1621626.0,1521955.0,1428209.0,1340254.0,1257921.0,1181199.0,1110006.0,1044242.0,983789.0,928605.0,878616.0,833638.0,793556.0,758289.0,727835.0,702052.0,680874.0,664272.0,652257.0,644766.0,641645.0,642813.0,648204.0,657689.0,671092.0,688226.0,708909.0,732902.0,759966.0,789856.0,822207.0,856586.0,892561.0,929747.0,967633.0,1005652.0,1043290.0,1080051.0,1115491.0,1149095.0,1180340.0,1208753.0,1233953.0,1255682.0,1273715.0,1287887.0,1298116.0,1304353.0,1306562.0,1304769.0,1298978.0,1289226.0,1275526.0,1258046.0,1236974.0,1212444.0,1184627.0,1153715.0,1120032.0,1083805.0,1045255.0,1004537.0,961815.0,917275.0,871141.0,823661.0,775029.0,725540.0,675443.0,625010.0,574443.0,523975.0,473908.0,424499.0,376059.0,328830.0,282966.0,238597.0,195879.0,154995.0,116012.0,78953.0,43882.0,10829.0,-20257.0,-49473.0,-76830.0,-102317.0,-125908.0,-147620.0,-167469.0,-185503.0,-201802.0,-216410.0,-229349.0,-240606.0,-250160.0,-257935.0,-263831.0,-267734.0,-269558.0,-269117.0,-266219.0,-260719.0,-252530.0,-241522.0,-227489.0,-210392.0,-190205.0,-166911.0,-140400.0,-110665.0,-77811.0,-41922.0,-3150.0,38318.0,82251.0,128366.0,176320.0,225752.0,276384.0,327907.0,379878.0,431854.0,483427.0,534231.0,583758.0,631574.0,677299.0,720620.0,761239.0,798805.0,833039.0,863595.0,890251.0,912780.0,931009.0,944815.0,954168.0,959168.0,959860.0,956327.0,948671.0,937047.0,921640.0,902705.0,880554.0,855490.0,827785.0,797718.0,765595.0,731695.0,696320.0,659797.0,622490.0,584799.0,547124.0,509793.0,473086.0,437306.0,402731.0,369644.0,338184.0,308542.0,280877.0,255393.0,232327.0,211824.0,194085.0,179278.0,167612.0,159220.0,154227.0,152918.0,155662.0,162957.0,175394.0,193793.0,219255.0,252997.0,296535.0,351747.0,421062.0,507300.0,613713.0,744169.0,903206.0,1095980.0,1328121.0,1605794.0,1935781.0,2325313.0,2781875.0,3313101.0,3926765.0,4630691.0,5432348.0,6338515.0,7354817.0,8485386.0,9732504.0,11096410.0,12575114.0,14164510.0,15858467.0,17648868.0,19525784.0,21477492.0,23490476.0,25549180.0,27636222.0,29733116.0,31820780.0,33880148.0,35892872.0,37841984.0,39712356.0,41490604.0,43165092.0,44725632.0,46163208.0,47470284.0,48640844.0,49670536.0,50556356.0,51296680.0,51891184.0,52340384.0,52645272.0,52807104.0,52827276.0,52707460.0,52449840.0,52057428.0,51533956.0,50883528.0,50110908.0,49221520.0,48221468.0,47117272.0,45916224.0,44626856.0,43259056.0,41823968.0,40333680.0,38801020.0,37239000.0,35660528.0,34078020.0,32503094.0,30946396.0,29417586.0,27925700.0,26478960.0,25084628.0,23748858.0,22476644.0,21271640.0,20136052.0,19070872.0,18075844.0,17149622.0,16289913.0,15494043.0,14759116.0,14081890.0,13458800.0,12886186.0,12360445.0,11877992.0,11435055.0,11027820.0,10652568.0,10305910.0,9984868.0,9686641.0,9408614.0,9148406.0,8904061.0,8673730.0,8455583.0,8247916.0,8049296.0,7858470.0,7674160.0,7495342.0,7321128.0,7150706.0,6983311.0,6818306.0,6655259.0,6493627.0,6332921.0,6172800.0,6012989.0,5853273.0,5693434.0,5533403.0,5373202.0,5212808.0,5052270.0,4891618.0,4730943.0,4570430.0,4410324.0,4250914.0,4092443.0,3935140.0,3779221.0,3624869.0,3472239.0,3321527.0,3172916.0,3026671.0,2883068.0,2742286.0,2604377.0,2469381.0,2337473.0,2208782.0,2083369.0,1961252.0,1842551.0,1727386.0,1615771.0,1507708.0,1403203.0,1302263.0,1204842.0,1110896.0,1020431.0,933441.0,849867.0,769696.0,692929.0,619476.0,549235.0,482023.0,417728.0,356220.0,297430.0,241365.0,187908.0,137011.0,88586.0,42567.0,-1221.0,-42957.0,-82665.0,-120384.0,-156183.0,-190191.0,-222429.0,-252943.0,-281889.0,-309371.0,-335445.0,-360127.0,-383522.0,-405688.0,-426643.0,-446430.0,-465101.0,-482709.0,-499327.0,-514987.0,-529726.0,-543583.0,-556621.0,-568921.0,-580481.0,-591349.0,-601522.0,-611059.0,-620020.0,-628393.0,-636176.0,-643401.0,-650153.0,-656475.0,-662353.0,-667830.0,-672989.0,-677900.0,-682529.0,-686856.0,-690905.0,-694735.0,-698328.0,-701675.0,-704878.0,-708009.0,-711051.0,-713971.0,-716855.0,-719748.0,-722607.0,-725353.0,-727996.0,-730555.0,-732985.0,-735301.0,-737565.0,-739826.0,-742105.0,-744344.0,-746532.0,-748649.0,-750655.0,-752564.0,-754344.0,-755961.0,-757272.0,-758145.0,-758548.0,-758426.0,-757711.0,-756270.0,-754020.0,-750790.0,-746230.0,-739881.0,-731204.0,-719645.0,-704471.0,-684788.0,-659442.0,-626960.0,-585452.0,-532591.0,-465526.0,-380832.0,-274541.0,-142066.0,21817.0,223174.0,468863.0,766710.0,1125386.0,1554300.0,2063229.0,2662076.0,3360731.0,4168737.0,5095095.0,6147893.0,7334260.0,8660084.0,10129840.0,11746134.0,13509173.0,15416290.0,17461736.0,19636966.0,21930676.0,24329252.0,26817282.0,29378304.0,31995204.0,34650376.0,37325720.0,40002536.0,42661524.0,45283244.0,47848924.0,50341008.0,52743560.0,55042520.0,57226160.0,59285000.0,61211376.0,62998688.0,64640920.0,66132960.0,67470752.0,68651312.0,69672264.0,70531960.0,71229664.0,71765304.0,72139080.0,72351208.0,72402136.0,72292808.0,72024936.0,71601320.0,71025976.0,70303760.0,69440472.0,68442600.0,67317456.0,66072928.0,64717496.0,63260544.0,61712648.0,60085760.0,58392620.0,56646412.0,54860456.0,53047808.0,51220960.0,49391464.0,47569992.0,45766260.0,43989036.0,42246552.0,40546468.0,38895660.0,37299956.0,35764164.0,34292072.0,32886190.0,31547784.0,30277040.0,29073368.0,27935544.0,26862020.0,25851112.0,24900760.0,24008650.0,23172160.0,22388608.0,21655020.0,20968112.0,20324528.0,19720900.0,19154054.0,18621064.0,18119248.0,17646112.0,17199264.0,16776443.0,16375515.0,15994390.0,15631169.0,15284066.0,14951409.0,14631698.0,14323709.0,14026257.0,13738130.0,13458212.0,13185601.0,12919597.0,12659416.0,12404366.0,12153868.0,11907447.0,11664696.0,11425150.0,11188401.0,10954139.0,10722088.0,10492026.0,10263771.0,10037244.0,9812490.0,9589505.0,9368280.0,9148809.0,8931094.0,8715201.0,8501109.0,8288778.0,8078323.0,7869912.0,7663729.0,7459798.0,7258195.0,7059127.0,6862683.0,6668945.0,6477971.0,6289857.0,6104755.0,5922719.0,5743783.0,5567959.0,5395324.0,5226037.0,5060116.0,4897583.0,4738483.0,4582922.0,4430909.0,4282433.0,4137538.0,3996265.0,3858691.0,3724763.0,3594484.0,3467753.0,3344479.0,3224633.0,3108109.0,2994902.0,2884905.0,2778131.0,2674561.0,2574120.0,2476825.0,2382652.0,2291596.0,2203582.0,2118538.0,2036430.0,1957144.0,1880596.0,1806756.0,1735663.0,1667372.0,1601918.0,1539374.0,1479836.0,1423492.0,1370483.0,1321002.0,1275295.0,1233654.0,1196422.0,1163988.0,1136903.0,1115733.0,1101051.0,1093558.0,1094090.0,1103510.0,1122666.0,1152439.0,1193692.0,1247290.0,1314011.0,1394619.0,1489779.0,1600146.0,1726360.0,1868877.0,2027944.0,2203526.0,2395336.0,2602816.0,2825262.0,3061763.0,3311190.0,3572234.0,3843591.0,4123903.0,4411596.0,4704973.0,5002197.0,5301462.0,5600870.0,5898565.0,6192763.0,6481809.0,6764291.0,7038963.0,7304744.0,7560552.0,7805384.0,8038263.0,8258259.0,8464508.0,8656208.0,8832739.0,8993628.0,9138527.0,9267208.0,9379379.0,9474824.0,9553402.0,9615072.0,9659860.0,9687849.0,9699345.0,9694747.0,9674520.0,9639174.0,9589409.0,9525976.0,9449675.0,9361365.0,9262044.0,9152856.0,9034977.0,8909603.0,8777906.0,8641080.0,8500235.0,8356397.0,8210476.0,8063352.0,7915963.0,7769126.0,7623608.0,7480015.0,7338853.0,7200603.0,7065570.0,6934032.0,6806056.0,6681671.0,6560863.0,6443576.0,6329737.0,6219198.0,6111845.0,6007456.0,5905781.0,5806521.0,5709354.0,5613940.0,5519925.0,5427089.0,5335187.0,5244013.0,5153352.0,5063057.0,4972969.0,4882927.0,4792812.0,4702454.0,4611737.0,4520604.0,4429080.0,4337211.0,4245002.0,4152595.0,4060115.0,3967616.0,3875110.0,3782646.0,3690434.0,3598560.0,3507089.0,3416106.0,3325786.0,3236306.0,3147766.0,3060298.0,2974032.0,2889075.0,2805498.0,2723393.0,2642798.0,2563767.0,2486325.0,2410546.0,2336482.0,2264128.0,2193528.0,2124663.0,2057553.0,1992192.0,1928632.0,1866884.0,1806848.0,1748443.0,1691613.0,1636394.0,1582770.0,1530747.0,1480333.0,1431490.0,1384158.0,1338307.0,1293930.0,1250908.0,1209129.0,1168553.0,1129204.0,1091052.0,1053946.0,1017819.0,982706.0,948721.0,915844.0,883949.0,853003.0,823043.0,794068.0,766014.0,738882.0,712707.0,687527.0,663342.0,640204.0,618173.0,597352.0,577827.0,559641.0,542928.0,527791.0,514381.0,502741.0,493010.0,485392.0,479991.0,476939.0,476335.0,478352.0,483102.0,490736.0,501387.0,515136.0,532008.0,552071.0,575438.0,602103.0,632150.0,665661.0,702750.0,743419.0,787615.0,835322.0,886477.0,940970.0,998634.0,1059354.0,1123043.0,1189621.0,1258979.0,1331016.0,1405667.0,1482863.0,1562535.0,1644721.0,1729502.0,1817044.0,1907560.0,2001423.0,2099157.0,2201339.0,2308740.0,2422358.0,2543443.0,2673393.0,2813813.0,2966644.0,3134086.0,3318599.0,3522980.0,3750398.0,4004330.0,4288407.0,4606441.0,4962350.0,5359961.0,5802909.0,6294578.0,6838097.0,7436158.0,8090918.0,8804032.0,9576601.0,10408962.0,11300359.0,12248835.0,13251308.0,14303610.0,15400489.0,16535768.0,17702792.0,18894572.0,20103842.0,21323096.0,22544812.0,23761320.0,24964740.0,26147244.0,27301472.0,28420682.0,29498764.0,30530464.0,31511488.0,32438588.0,33309112.0,34120864.0,34871932.0,35560832.0,36186488.0,36748028.0,37244848.0,37676592.0,38043128.0,38344260.0,38579716.0,38749076.0,38851672.0,38886632.0,38853076.0,38750376.0,38578016.0,38335632.0,38023056.0,37640480.0,37188352.0,36667424.0,36078860.0,35424492.0,34707032.0,33930068.0,33098056.0,32216136.0,31290092.0,30326204.0,29330918.0,28310844.0,27272532.0,26222584.0,25167524.0,24113788.0,23067768.0,22035628.0,21023168.0,20035652.0,19077684.0,18153132.0,17265166.0,16416135.0,15607667.0,14840680.0,14115763.0,13433195.0,12792778.0,12193926.0,11635717.0,11117057.0,10636533.0,10192378.0,9782606.0,9405014.0,9057438.0,8737828.0,8444199.0,8174552.0,7926877.0,7699416.0,7490526.0,7298513.0,7121636.0,6958319.0,6807229.0,6667097.0,6536685.0,6414924.0,6300935.0,6193892.0,6092943.0,5997350.0,5906506.0,5819787.0,5736537.0,5656196.0,5578350.0,5502599.0,5428510.0,5355676.0,5283776.0,5212547.0,5141706.0,5070995.0,5000193.0,4929101.0,4857566.0,4785392.0,4712396.0,4638424.0,4563317.0,4486968.0,4409304.0,4330358.0,4250129.0,4168566.0,4085685.0,4001609.0,3916448.0,3830187.0,3742889.0,3654735.0,3565922.0,3476542.0,3386666.0,3296438.0,3206010.0,3115471.0,3024920.0,2934489.0,2844333.0,2754623.0,2665492.0,2577066.0,2489486.0,2402879.0,2317365.0,2233036.0,2150003.0,2068352.0,1988057.0,1909153.0,1831682.0,1755724.0,1681310.0,1608560.0,1537593.0,1468416.0,1400995.0,1335322.0,1271423.0,1209255.0,1148820.0,1090177.0,1033349.0,978285.0,924951.0,873372.0,823447.0,775083.0,728283.0,683075.0,639465.0,597350.0,556803.0,517813.0,480300.0,444187.0,409405.0,375957.0,343830.0,313025.0,283582.0,255448.0,228574.0,202928.0,178465.0,155167.0,132957.0,111827.0,91783.0,72844.0,54958.0,38072.0,22209.0,7426.0,-6260.0,-18940.0,-30638.0,-41369.0,-51122.0,-59917.0,-67782.0,-74696.0,-80695.0,-85838.0,-90222.0,-93908.0,-96948.0,-99448.0,-101521.0,-103187.0,-104424.0,-105253.0,-105768.0,-106011.0,-106009.0,-105816.0,-105579.0,-105461.0,-105602.0,-106059.0,-106807.0,-107857.0,-109241.0,-111019.0,-113194.0,-115777.0,-118815.0,-122401.0,-126577.0,-131303.0,-136467.0,-142018.0,-148008.0,-154422.0,-161234.0,-168372.0,-175919.0,-183858.0,-192078.0,-200515.0,-209149.0,-217999.0,-226909.0,-235780.0,-244536.0,-253100.0,-261380.0,-269284.0,-276737.0,-283724.0,-290179.0,-296081.0,-301299.0,-305700.0,-309250.0,-311902.0,-313664.0,-314438.0,-314243.0,-313196.0,-311354.0,-308792.0,-305495.0,-301540.0,-297036.0,-292075.0,-286766.0,-281149.0,-275348.0,-269505.0,-263727.0,-258044.0,-252485.0,-247129.0,-242019.0,-237190.0,-232670.0,-228551.0,-224875.0,-221689.0,-219055.0,-216964.0,-215396.0,-214279.0,-213628.0,-213421.0,-213677.0,-214457.0,-215790.0,-217691.0,-220151.0,-223182.0,-226767.0,-230829.0,-235288.0,-240072.0,-245139.0,-250443.0,-255901.0,-261446.0,-267051.0,-272733.0,-278406.0,-284003.0,-289411.0,-294634.0,-299615.0,-304291.0,-308631.0,-312609.0,-316254.0,-319510.0,-322407.0,-324980.0,-327237.0,-329205.0,-330920.0,-332458.0,-333819.0,-334952.0,-335922.0,-336759.0,-337509.0,-338126.0,-338611.0,-339035.0,-339395.0,-339687.0,-339856.0,-339957.0,-340051.0,-340113.0,-340132.0,-340154.0,-340279.0,-340430.0,-340615.0,-340863.0,-341208.0,-341593.0,-341936.0,-342360.0,-342827.0,-343360.0,-344021.0,-344871.0,-345907.0,-347003.0,-348183.0,-349482.0,-350848.0,-352250.0,-353690.0,-355245.0,-356911.0,-358622.0,-360329.0,-362001.0,-363646.0,-365257.0,-366779.0,-368189.0,-369470.0,-370634.0,-371700.0,-372684.0,-373581.0,-374329.0,-374897.0,-375286.0,-375488.0,-375426.0,-375092.0,-374545.0,-373858.0,-373051.0,-372062.0,-370849.0,-369337.0,-367524.0,-365388.0,-362911.0,-360112.0,-356999.0,-353619.0,-349938.0,-345951.0,-341643.0,-337039.0,-332212.0,-327158.0,-321900.0,-316447.0,-310860.0,-305119.0,-299207.0,-293196.0,-287116.0,-280971.0,-274735.0,-268479.0,-262210.0,-255953.0,-249742.0,-243678.0,-237772.0,-231982.0,-226330.0,-220833.0,-215489.0,-210213.0,-205015.0,-199978.0,-195134.0,-190413.0,-185719.0,-180961.0,-175980.0,-170646.0,-164818.0,-158307.0,-150835.0,-142131.0,-131891.0,-119598.0,-104637.0,-86328.0,-63969.0,-36652.0,-3434.0,36642.0,84485.0,141019.0,207172.0,283740.0,371336.0,470292.0,580748.0,702511.0,834990.0,977181.0,1127900.0,1285793.0,1449210.0,1616219.0,1784734.0,1952760.0,2118288.0,2279372.0,2434237.0,2581426.0,2719817.0,2848511.0,2966902.0,3074637.0,3171579.0,3257713.0,3333201.0,3398213.0,3452867.0,3497283.0,3531568.0,3555846.0,3570078.0,3574243.0,3568419.0,3552661.0,3527170.0,3492284.0,3448559.0,3396686.0,3337524.0,3272186.0,3201877.0,3127882.0,3051563.0,2974359.0,2897640.0,2822729.0,2750850.0,2683177.0,2620745.0,2564491.0,2515219.0,2473583.0,2440180.0,2415591.0,2400485.0,2395567.0,2401626.0,2419519.0,2450186.0,2494558.0,2553570.0,2628094.0,2718956.0,2826923.0,2952513.0,3095879.0,3256651.0,3434016.0,3626681.0,3832703.0,4049659.0,4274764.0,4505062.0,4737381.0,4968359.0,5194852.0,5413941.0,5622978.0,5819532.0,6001601.0,6167847.0,6317302.0,6449378.0,6563859.0,6660887.0,6740827.0,6804058.0,6851013.0,6882048.0,6897457.0,6897486.0,6882322.0,6852118.0,6807016.0,6747229.0,6672970.0,6584629.0,6482827.0,6368428.0,6242537.0,6106513.0,5962065.0,5811088.0,5655550.0,5497500.0,5339004.0,5182077.0,5028530.0,4879889.0,4737406.0,4601955.0,4474097.0,4354143.0,4242203.0,4138193.0,4041771.0,3952541.0,3870030.0,3793734.0,3723162.0,3657803.0,3597331.0,3541373.0,3489648.0,3441848.0,3397699.0,3357083.0,3319901.0,3286090.0,3255510.0,3228073.0,3203758.0,3182494.0,3164181.0,3148797.0,3136465.0,3127334.0,3121381.0,3118576.0,3118891.0,3122341.0,3128821.0,3138120.0,3150102.0,3164613.0,3181447.0,3200264.0,3220764.0,3242749.0,3266142.0,3290849.0,3316803.0,3344070.0,3372848.0,3403368.0,3435676.0,3469886.0,3506216.0,3544833.0,3585772.0,3629040.0,3674747.0,3723026.0,3773933.0,3827518.0,3883847.0,3942992.0,4005024.0,4069989.0,4137920.0,4208881.0,4283018.0,4360491.0,4441533.0,4526317.0,4615036.0,4707781.0,4804570.0,4905241.0,5009526.0,5117143.0,5227789.0,5341143.0,5456796.0,5574438.0,5693624.0,5813795.0,5934255.0,6054350.0,6173425.0,6290721.0,6405504.0,6517049.0,6624728.0,6727884.0,6825862.0,6918123.0,7004122.0,7083467.0,7155830.0,7220979.0,7278737.0,7328869.0,7371263.0,7405795.0,7432400.0,7450983.0,7461534.0,7464098.0,7458733.0,7445487.0,7424389.0,7395453.0,7358587.0,7313765.0,7261032.0,7200513.0,7132200.0,7056099.0,6972329.0,6881027.0,6782301.0,6676168.0,6562770.0,6442307.0,6315010.0,6181063.0,6040621.0,5893979.0,5741455.0,5583447.0,5420362.0,5252759.0,5081260.0,4906475.0,4729075.0,4549817.0,4369483.0,4188832.0,4008667.0,3829803.0,3653056.0,3479106.0,3308657.0,3142301.0,2980547.0,2823845.0,2672614.0,2527226.0,2387871.0,2254650.0,2127581.0,2006684.0,1891925.0,1783224.0,1680431.0,1583343.0,1491852.0,1405802.0,1324922.0,1248839.0,1177270.0,1110067.0,1047010.0,987786.0,932116.0,879777.0,830571.0,784257.0,740544.0,699210.0,660058.0,622952.0,587682.0,554015.0,521792.0,490963.0,461441.0,433023.0,405582.0,379067.0,353419.0,328457.0,304056.0,280184.0,256780.0,233710.0,210802.0,187970.0,165191.0,142489.0,119826.0,97174.0,74550.0,51999.0,29549.0,7183.0,-15045.0,-37036.0,-58654.0,-79790.0,-100330.0,-120121.0,-138910.0,-156490.0,-172708.0,-187469.0,-200670.0,-212273.0,-222382.0,-231151.0,-238787.0,-245567.0,-251904.0,-258190.0,-264818.0,-272129.0,-280365.0,-289670.0,-300080.0,-311621.0,-324215.0,-337681.0,-351850.0,-366519.0,-381514.0,-396761.0,-412229.0,-427974.0,-443949.0,-460160.0,-476633.0,-493276.0,-509994.0,-526637.0,-543229.0,-559810.0,-576349.0,-592799.0,-609093.0,-625228.0,-641189.0,-656863.0,-672209.0,-687148.0,-701705.0,-715896.0,-729735.0,-743260.0,-756434.0,-769277.0,-781788.0,-793972.0,-805732.0,-817037.0,-827960.0,-838579.0,-848889.0,-858864.0,-868547.0,-877874.0,-886732.0,-895089.0,-902957.0,-910313.0,-917075.0,-923281.0,-929034.0,-934367.0,-939243.0,-943664.0,-947685.0,-951398.0,-954838.0,-958011.0,-960899.0,-963531.0,-965956.0,-968140.0,-969999.0,-971497.0,-972716.0,-973664.0,-974298.0,-974536.0,-974369.0,-973836.0,-972935.0,-971719.0,-970256.0,-968654.0,-966973.0,-965213.0,-963343.0,-961416.0,-959477.0,-957506.0,-955495.0,-953455.0,-951438.0,-949349.0,-947105.0,-944765.0,-942352.0,-939877.0,-937295.0,-934622.0,-931834.0,-928804.0,-925544.0,-922111.0,-918547.0,-914804.0,-910869.0,-906807.0,-902637.0,-898341.0,-893935.0,-889510.0,-885154.0,-880896.0,-876727.0,-872656.0,-868651.0,-864661.0,-860626.0,-856520.0,-852372.0,-848228.0,-844131.0,-840026.0,-835864.0,-831651.0,-827403.0,-823085.0,-818639.0,-814126.0,-809627.0,-805168.0,-800726.0,-796269.0,-791839.0,-787435.0,-783061.0,-778683.0,-774268.0,-769840.0,-765404.0,-761016.0,-756645.0,-752295.0,-747982.0,-743682.0,-739389.0,-735048.0,-730695.0,-726336.0,-721925.0,-717458.0,-712889.0,-708220.0,-703484.0,-698727.0,-694011.0,-689281.0,-684512.0,-679725.0,-674951.0,-670168.0,-665311.0,-660435.0,-655636.0,-650878.0,-646024.0,-641052.0,-636060.0,-631070.0,-625983.0,-620789.0,-615555.0,-610346.0,-605121.0,-599819.0,-594438.0,-588995.0,-583497.0,-577842.0,-571955.0,-565765.0,-559218.0,-552292.0,-544937.0,-537129.0,-528756.0,-519813.0,-510384.0,-500505.0,-490197.0,-479475.0,-468461.0,-457268.0,-445893.0,-434349.0,-422646.0,-410831.0,-398927.0,-386845.0,-374493.0,-361639.0,-348131.0,-333730.0,-318061.0,-300691.0,-281181.0,-259097.0,-233848.0,-204836.0,-171600.0,-133739.0,-90873.0,-42783.0,10668.0,69486.0,133587.0,202653.0,276229.0,353782.0,434559.0,517607.0,601843.0,686221.0,769722.0,851363.0,930203.0,1005442.0,1076458.0,1142775.0,1204028.0,1259920.0,1310357.0,1355376.0,1395140.0,1429803.0,1459550.0,1484649.0,1505400.0,1522081.0,1534861.0,1543979.0,1549671.0,1552128.0,1551420.0,1547630.0,1540855.0,1531041.0,1518116.0,1502002.0,1482690.0,1460124.0,1434205.0,1404941.0,1372371.0,1336652.0,1297983.0,1256550.0,1212637.0,1166612.0,1118896.0,1069850.0,1019774.0,969051.0,918115.0,867444.0,817418.0,768310.0,720502.0,674349.0,630145.0,587930.0,547796.0,509886.0,474165.0,440596.0,409067.0,379583.0,352137.0,326640.0,303013.0,281121.0,260860.0,242134.0,224725.0,208434.0,193143.0,178804.0,165404.0,152890.0,141217.0,130341.0,120155.0,110559.0,101462.0,92830.0,84614.0,76730.0,69183.0,61999.0,55178.0,48650.0,42335.0,36273.0,30434.0,24817.0,19384.0,14110.0,9016.0,4082.0,-667.0,-5311.0,-9917.0,-14529.0,-19142.0,-23801.0,-28560.0,-33414.0,-38286.0,-43152.0,-48042.0,-52970.0,-57900.0,-62861.0,-67915.0,-73080.0,-78296.0,-83526.0,-88811.0,-94088.0,-99337.0,-104543.0,-109698.0,-114728.0,-119519.0,-124126.0,-128642.0,-133098.0,-137474.0,-141751.0,-145945.0,-149976.0,-153724.0,-157136.0,-160281.0,-163193.0,-165881.0,-168346.0,-170577.0,-172594.0,-174397.0,-176090.0,-177670.0,-179106.0,-180353.0,-181423.0,-182371.0,-183124.0,-183713.0,-184231.0,-184788.0,-185349.0,-185754.0,-185938.0,-185916.0,-185670.0,-185253.0,-184674.0,-183988.0,-183217.0,-182317.0,-181259.0,-179913.0,-178279.0,-176391.0,-174342.0,-172192.0,-169976.0,-167698.0,-165344.0,-162905.0,-160362.0,-157762.0,-155125.0,-152516.0,-149983.0,-147555.0,-145280.0,-143128.0,-141076.0,-139076.0,-137130.0,-135255.0,-133384.0,-131477.0,-129591.0,-127844.0,-126247.0,-124712.0,-123184.0,-121637.0,-120049.0,-118323.0,-116438.0,-114449.0,-112402.0,-110345.0,-108238.0,-106137.0,-104072.0,-102005.0,-99931.0,-97841.0,-95813.0,-93831.0,-91813.0,-89777.0,-87746.0,-85737.0,-83691.0,-81515.0,-79168.0,-76541.0,-73494.0,-69755.0,-64970.0,-58796.0,-50842.0,-40664.0,-27698.0,-11296.0,9340.0,35184.0,67283.0,106843.0,155160.0,213619.0,283531.0,366221.0,463006.0,575059.0,703387.0,848809.0,1011832.0,1192510.0,1390539.0,1605326.0,1835822.0,2080442.0,2337229.0,2604021.0,2878353.0,3157420.0,3438279.0,3717940.0,3993468.0,4261958.0,4520769.0,4767522.0,5000238.0,5217350.0,5417653.0,5600220.0,5764412.0,5909993.0,6037001.0,6145716.0,6236650.0,6310526.0,6368141.0,6410286.0,6437715.0,6451149.0,6451202.0,6438420.0,6413310.0,6376341.0,6327927.0,6268362.0,6197916.0,6116907.0,6025743.0,5924879.0,5814871.0,5696403.0,5570358.0,5437769.0,5299704.0,5157325.0,5011917.0,4864991.0,4718104.0,4572816.0,4430746.0,4293600.0,4163108.0,4040905.0,3928666.0,3828213.0,3741551.0,3670673.0,3617603.0,3584430.0,3573409.0,3586747.0,3626620.0,3695244.0,3794841.0,3927625.0,4095514.0,4300246.0,4543169.0,4825221.0,5146825.0,5507842.0,5907613.0,6344823.0,6817414.0,7322620.0,7856943.0,8416273.0,8995846.0,9590435.0,10194459.0,10802193.0,11407953.0,12006022.0,12590817.0,13156923.0,13699489.0,14214211.0,14697252.0,15145371.0,15555929.0,15927050.0,16257372.0,16546042.0,16792692.0,16997356.0,17160470.0,17282722.0,17365092.0,17408634.0,17414480.0,17383712.0,17317414.0,17216614.0,17082294.0,16915392.0,16716805.0,16487671.0,16229332.0,15943280.0,15630994.0,15294155.0,14934726.0,14554791.0,14156471.0,13742022.0,13314018.0,12875145.0,12428075.0,11975433.0,11519884.0,11064089.0,10610543.0,10161577.0,9719393.0,9286029.0,8863263.0,8452530.0,8055004.0,7671651.0,7303260.0,6950437.0,6613568.0,6292896.0,5988573.0,5700575.0,5428682.0,5172519.0,4931704.0,4705771.0,4494129.0,4296174.0,4111277.0,3938784.0,3778035.0,3628413.0,3489272.0,3359931.0,3239672.0,3127894.0,3023958.0,2927239.0,2837163.0,2753166.0,2674817.0,2601629.0,2533122.0,2468843.0,2408382.0,2351405.0,2297531.0,2246449.0,2197937.0,2151744.0,2107601.0,2065252.0,2024507.0,1985206.0,1947198.0,1910377.0,1874694.0,1840020.0,1806222.0,1773225.0,1740998.0,1709435.0,1678355.0,1647721.0,1617554.0,1587779.0,1558260.0,1529020.0,1500052.0,1471305.0,1442701.0,1414245.0,1385909.0,1357560.0,1329241.0,1301024.0,1272904.0,1244792.0,1216698.0,1188679.0,1160783.0,1132971.0,1105287.0,1077784.0,1050423.0,1023157.0,995925.0,968746.0,941626.0,914588.0,887739.0,861202.0,835001.0,809093.0,783483.0,758235.0,733342.0,708693.0,684253.0,660124.0,636420.0,613138.0,590216.0,567667.0,545561.0,523897.0,502629.0,481724.0,461227.0,441211.0,421710.0,402704.0,384108.0,365926.0,348214.0,330962.0,314066.0,297525.0,281426.0,265815.0,250648.0,235904.0,221665.0,207908.0,194540.0,181470.0,168718.0,156361.0,144411.0,132822.0,121594.0,110738.0,100237.0,89999.0,79995.0,70256.0,60747.0,51468.0,42384.0,33549.0,24912.0,16487.0,8390.0,664.0,-6710.0,-13805.0,-20638.0,-27219.0,-33613.0,-39928.0,-46148.0,-52238.0,-58159.0,-63954.0,-69679.0,-75195.0,-80480.0,-85557.0,-90488.0,-95281.0,-99915.0,-104454.0,-108917.0,-113331.0,-117670.0,-121888.0,-125917.0,-129769.0,-133529.0,-137204.0,-140830.0,-144421.0,-148049.0,-151737.0,-155387.0,-158949.0,-162378.0,-165680.0,-168859.0,-171958.0,-175010.0,-177987.0,-180867.0,-183690.0,-186476.0,-189173.0,-191800.0,-194465.0,-197198.0,-199893.0,-202494.0,-205006.0,-207491.0,-209884.0,-212169.0,-214455.0,-216812.0,-219247.0,-221637.0,-223988.0,-226313.0,-228599.0,-230818.0,-232951.0,-235037.0,-237059.0,-239036.0,-240947.0,-242755.0,-244486.0,-246167.0,-247807.0,-249353.0,-250815.0,-252242.0,-253601.0,-254864.0,-256050.0,-257238.0,-258415.0,-259503.0,-260502.0,-261457.0,-262383.0,-263258.0,-264099.0,-264934.0,-265717.0,-266356.0,-266815.0,-267121.0,-267300.0,-267388.0,-267403.0,-267393.0,-267413.0,-267367.0,-267180.0,-266776.0,-266181.0,-265369.0,-264292.0,-263001.0,-261517.0,-259863.0,-258015.0,-255952.0,-253627.0,-251012.0,-248076.0,-244833.0,-241286.0,-237525.0,-233583.0,-229414.0,-225012.0,-220391.0,-215605.0,-210611.0,-205413.0,-200031.0,-194473.0,-188754.0,-182890.0,-176951.0,-171008.0,-165134.0,-159418.0,-153865.0,-148523.0,-143359.0,-138320.0,-133349.0,-128448.0,-123702.0,-119151.0,-114814.0,-110718.0,-106929.0,-103468.0,-100334.0,-97467.0,-94861.0,-92506.0,-90410.0,-88564.0,-86936.0,-85524.0,-84299.0,-83279.0,-82438.0,-81791.0,-81362.0,-81111.0,-81032.0,-81103.0,-81347.0,-81740.0,-82295.0,-83050.0,-84042.0,-85254.0,-86668.0,-88246.0,-89917.0,-91650.0,-93436.0,-95327.0,-97375.0,-99606.0,-101983.0,-104479.0,-107097.0,-109831.0,-112639.0,-115507.0,-118468.0,-121503.0,-124573.0,-127654.0,-130701.0,-133684.0,-136605.0,-139499.0,-142393.0,-145276.0,-148155.0,-151005.0,-153800.0,-156514.0,-159094.0,-161549.0,-163905.0,-166220.0,-168467.0,-170664.0,-172882.0,-175106.0,-177207.0,-179152.0,-180990.0,-182782.0,-184486.0,-186102.0,-187721.0,-189324.0,-190893.0,-192350.0,-193743.0,-195087.0,-196436.0,-197803.0,-199178.0,-200563.0,-201916.0,-203241.0,-204466.0,-205603.0,-206653.0,-207624.0,-208510.0,-209326.0,-210114.0,-210859.0,-211565.0,-212221.0,-212815.0,-213318.0,-213744.0,-214131.0,-214510.0,-214842.0,-215182.0,-215559.0,-215961.0,-216347.0,-216647.0,-216906.0,-217107.0,-217248.0,-217326.0,-217390.0,-217500.0,-217657.0,-217783.0,-217917.0,-218105.0,-218333.0,-218573.0,-218812.0,-219123.0,-219439.0,-219681.0,-219819.0,-219859.0,-219862.0,-219865.0,-219919.0,-220078.0,-220415.0,-220895.0,-221430.0,-221940.0,-222405.0,-222832.0,-223187.0,-223569.0,-224036.0,-224621.0,-225270.0,-225940.0,-226594.0,-227208.0,-227826.0,-228487.0,-229251.0,-230062.0,-230917.0,-231801.0,-232738.0,-233692.0,-234611.0,-235533.0,-236486.0,-237487.0,-238420.0,-239286.0,-240126.0,-240968.0,-241796.0,-242604.0,-243454.0,-244323.0,-245163.0,-246004.0,-246898.0,-247835.0,-248732.0,-249626.0,-250573.0,-251567.0,-252482.0,-253256.0,-253960.0,-254622.0,-255238.0,-255778.0,-256266.0,-256797.0,-257404.0,-258081.0,-258762.0,-259386.0,-260043.0,-260725.0,-261386.0,-261914.0,-262367.0,-262805.0,-263172.0,-263424.0,-263632.0,-263939.0,-264303.0,-264672.0,-265040.0,-265469.0,-265926.0,-266303.0,-266566.0,-266750.0,-266945.0,-267142.0,-267307.0,-267425.0,-267559.0,-267712.0,-267852.0,-267963.0,-268060.0,-268153.0,-268199.0,-268205.0,-268186.0,-268141.0,-268049.0,-267890.0,-267675.0,-267437.0,-267190.0,-266978.0,-266830.0,-266740.0,-266689.0,-266652.0,-266624.0,-266530.0,-266325.0,-266069.0,-265862.0,-265713.0,-265556.0,-265345.0,-265099.0,-264837.0,-264571.0,-264315.0,-264045.0,-263760.0,-263451.0,-263135.0,-262777.0,-262388.0,-262025.0,-261723.0,-261466.0,-261184.0,-260871.0,-260543.0,-260199.0,-259842.0,-259465.0,-259071.0,-258681.0,-258323.0,-258011.0,-257670.0,-257258.0,-256798.0,-256345.0,-255867.0,-255337.0,-254822.0,-254392.0,-254034.0,-253690.0,-253356.0,-253029.0,-252646.0,-252211.0,-251797.0,-251430.0,-251062.0,-250659.0,-250303.0,-249979.0,-249632.0,-249228.0,-248861.0,-248581.0,-248334.0,-248092.0,-247876.0,-247696.0,-247440.0,-247058.0,-246632.0,-246266.0,-245965.0,-245672.0,-245415.0,-245224.0,-245048.0,-244823.0,-244537.0,-244245.0,-243974.0,-243748.0,-243586.0,-243480.0,-243384.0,-243325.0,-243316.0,-243336.0,-243334.0,-243316.0,-243334.0,-243372.0,-243400.0,-243414.0,-243478.0,-243645.0,-243853.0,-244011.0,-244113.0,-244237.0,-244393.0,-244509.0,-244606.0,-244751.0,-244965.0,-245142.0,-245275.0,-245430.0,-245630.0,-245852.0,-246031.0,-246201.0,-246375.0,-246580.0,-246836.0,-247065.0,-247284.0,-247484.0,-247686.0,-247900.0,-248091.0,-248303.0,-248500.0,-248668.0,-248794.0,-248828.0,-248813.0,-248801.0,-248817.0,-248835.0,-248802.0,-248733.0,-248625.0,-248463.0,-248279.0,-248075.0,-247799.0,-247415.0,-246896.0,-246294.0,-245669.0,-245078.0,-244586.0,-244151.0,-243766.0,-243365.0,-242912.0,-242384.0,-241768.0,-241142.0,-240478.0,-239785.0,-239090.0,-238441.0,-237863.0,-237295.0,-236725.0,-236150.0,-235523.0,-234843.0,-234115.0,-233328.0,-232515.0,-231694.0,-230868.0,-229969.0,-228944.0,-227885.0,-226865.0,-225925.0,-225009.0,-224118.0,-223325.0,-222614.0,-221945.0,-221231.0,-220540.0,-219851.0,-219124.0,-218350.0,-217549.0,-216751.0,-215938.0,-215165.0,-214449.0,-213753.0,-213018.0,-212270.0,-211516.0,-210777.0,-210037.0,-209326.0,-208651.0,-207985.0,-207323.0,-206676.0,-206089.0,-205523.0,-204961.0,-204473.0,-204122.0,-203807.0,-203419.0,-202966.0,-202547.0,-202140.0,-201652.0,-201106.0,-200598.0,-200217.0,-199905.0,-199594.0,-199309.0,-199092.0,-198894.0,-198638.0,-198317.0,-197983.0,-197640.0,-197313.0,-197073.0,-196927.0,-196845.0,-196793.0,-196788.0,-196792.0,-196743.0,-196611.0,-196454.0,-196347.0,-196322.0,-196405.0,-196549.0,-196741.0,-196928.0,-197096.0,-197285.0,-197465.0,-197614.0,-197721.0,-197842.0,-197986.0,-198059.0,-198084.0,-198123.0,-198204.0,-198296.0,-198366.0,-198470.0,-198622.0,-198828.0,-199101.0,-199402.0,-199693.0,-199876.0,-199945.0,-199927.0,-199896.0,-199887.0,-199865.0,-199834.0,-199773.0,-199722.0,-199641.0,-199529.0,-199433.0,-199392.0,-199430.0,-199427.0,-199315.0,-199110.0,-198877.0,-198646.0,-198364.0,-198025.0,-197683.0,-197321.0,-196910.0,-196449.0,-195973.0,-195510.0,-195023.0,-194551.0,-194094.0,-193613.0,-193074.0,-192502.0,-191944.0,-191380.0,-190820.0,-190253.0,-189693.0,-189117.0,-188543.0,-188013.0,-187509.0,-187015.0,-186504.0,-185991.0,-185482.0,-184967.0,-184434.0,-183926.0,-183549.0,-183331.0,-183171.0,-182970.0,-182730.0,-182483.0,-182129.0,-181659.0,-181146.0,-180691.0,-180370.0,-180164.0,-180081.0,-180124.0,-180293.0,-180466.0,-180545.0,-180557.0,-180618.0,-180726.0,-180806.0,-180912.0,-181041.0,-181181.0,-181255.0,-181322.0,-181476.0,-181695.0,-181946.0,-182223.0,-182587.0,-182974.0,-183322.0,-183675.0,-184121.0,-184639.0,-185146.0,-185657.0,-186188.0,-186719.0,-187204.0,-187669.0,-188153.0,-188684.0,-189276.0,-189919.0,-190587.0,-191259.0,-191899.0,-192492.0,-193067.0,-193648.0,-194238.0,-194828.0,-195442.0,-196067.0,-196633.0,-197167.0,-197728.0,-198338.0,-198934.0,-199481.0,-200025.0,-200558.0,-201061.0,-201548.0,-202040.0,-202560.0,-203127.0,-203686.0,-204216.0,-204706.0,-205224.0,-205777.0,-206290.0,-206794.0,-207295.0,-207766.0,-208120.0,-208367.0,-208587.0,-208817.0,-209064.0,-209302.0,-209546.0,-209836.0,-210172.0,-210519.0,-210782.0,-210966.0,-211128.0,-211238.0,-211257.0,-211118.0,-210936.0,-210752.0,-210544.0,-210275.0,-209977.0,-209755.0,-209554.0,-209341.0,-209061.0,-208710.0,-208268.0,-207709.0,-207054.0,-206353.0,-205620.0,-204866.0,-204039.0,-203185.0,-202328.0,-201451.0,-200572.0,-199699.0,-198859.0,-197983.0,-197010.0,-195924.0,-194735.0,-193449.0,-192085.0,-190620.0,-189101.0,-187551.0,-185996.0,-184424.0,-182823.0,-181236.0,-179685.0,-178194.0,-176703.0,-175198.0,-173671.0,-172151.0,-170582.0,-168917.0,-167219.0,-165536.0,-163882.0,-162205.0,-160534.0,-158920.0,-157311.0,-155705.0,-154139.0,-152672.0,-151291.0,-149919.0,-148567.0,-147209.0,-145876.0,-144544.0,-143219.0,-141932.0,-140734.0,-139648.0,-138639.0,-137674.0,-136778.0,-135903.0,-135014.0,-134124.0,-133296.0,-132526.0,-131755.0,-131043.0,-130434.0,-129910.0,-129382.0,-128891.0,-128507.0,-128231.0,-128033.0,-127906.0,-127874.0,-127919.0,-127981.0,-128084.0,-128215.0,-128390.0,-128585.0,-128805.0,-129094.0,-129456.0,-129884.0,-130360.0,-130932.0,-131653.0,-132458.0,-133248.0,-134017.0,-134831.0,-135732.0,-136670.0,-137655.0,-138699.0,-139822.0,-141002.0,-142158.0,-143250.0,-144303.0,-145431.0,-146653.0,-147891.0,-149138.0,-150428.0,-151765.0,-153035.0,-154231.0,-155434.0,-156671.0,-157900.0,-159098.0,-160316.0,-161561.0,-162794.0,-163973.0,-165093.0,-166174.0,-167249.0,-168315.0,-169355.0,-170377.0,-171410.0,-172410.0,-173381.0,-174307.0,-175214.0,-176080.0,-176932.0,-177848.0,-178791.0,-179719.0,-180604.0,-181479.0,-182367.0,-183221.0,-184072.0,-184968.0,-185898.0,-186776.0,-187551.0,-188300.0,-189030.0,-189709.0,-190330.0,-190995.0,-191744.0,-192521.0,-193311.0,-194111.0,-194909.0,-195648.0,-196292.0,-196880.0,-197427.0,-197999.0,-198640.0,-199342.0,-200107.0,-200888.0,-201713.0,-202544.0,-203390.0,-204279.0,-205191.0,-206122.0,-207049.0,-208000.0,-208977.0,-209958.0,-210979.0,-212059.0,-213154.0,-214237.0,-215311.0,-216518.0,-217841.0,-219219.0,-220640.0,-222188.0,-223851.0,-225490.0,-227117.0,-228881.0,-230832.0,-232811.0,-234781.0,-236824.0,-238983.0,-241182.0,-243423.0,-245812.0,-248379.0,-251023.0,-253719.0,-256519.0,-259421.0,-262417.0,-265482.0,-268698.0,-272069.0,-275531.0,-279104.0,-282730.0,-286426.0,-290147.0,-293922.0,-297799.0,-301728.0,-305762.0,-309927.0,-314256.0,-318703.0,-323210.0,-327797.0,-332465.0,-337211.0,-342005.0,-346831.0,-351718.0,-356715.0,-361849.0,-367028.0,-372223.0,-377469.0,-382839.0,-388301.0,-393817.0,-399408.0,-405134.0,-410977.0,-416847.0,-422689.0,-428510.0,-434403.0,-440412.0,-446527.0,-452687.0,-458891.0,-465192.0,-471559.0,-477918.0,-484267.0,-490709.0,-497285.0,-503845.0,-510352.0,-516860.0,-523468.0,-530140.0,-536791.0,-543451.0,-550121.0,-556812.0,-563449.0,-570038.0,-576644.0,-583321.0,-590050.0,-596813.0,-603659.0,-610586.0,-617522.0,-624415.0,-631274.0,-638070.0,-644758.0,-651361.0,-657935.0,-664518.0,-671095.0,-677624.0,-684082.0,-690487.0,-696926.0,-703411.0,-709951.0,-716541.0,-723143.0,-729714.0,-736185.0,-742537.0,-748773.0,-754981.0,-761278.0,-767600.0,-773863.0,-780027.0,-786153.0,-792246.0,-798228.0,-804146.0,-810017.0,-815901.0,-821758.0,-827590.0,-833395.0,-839185.0,-844992.0,-850786.0,-856514.0,-862119.0,-867638.0,-873088.0,-878470.0,-883785.0,-889077.0,-894363.0,-899599.0,-904740.0,-909796.0,-914786.0,-919707.0,-924568.0,-929388.0,-934216.0,-939051.0,-943862.0,-948618.0,-953304.0,-957935.0,-962460.0,-966878.0,-971220.0,-975520.0,-979790.0,-984016.0,-988193.0,-992324.0,-996406.0,-1000444.0,-1004397.0,-1008252.0,-1011994.0,-1015627.0,-1019186.0,-1022704.0,-1026215.0,-1029677.0,-1033107.0,-1036499.0,-1039826.0,-1043041.0,-1046140.0,-1049170.0,-1052172.0,-1055171.0,-1058144.0,-1061057.0,-1063931.0,-1066799.0,-1069626.0,-1072321.0,-1074876.0,-1077382.0,-1079855.0,-1082236.0,-1084467.0,-1086626.0,-1088778.0,-1090860.0,-1092805.0,-1094614.0,-1096403.0,-1098165.0,-1099872.0,-1101492.0,-1103070.0,-1104640.0,-1106153.0,-1107594.0,-1108961.0,-1110353.0,-1111748.0,-1113095.0,-1114345.0,-1115543.0,-1116704.0,-1117768.0,-1118790.0,-1119839.0,-1120958.0,-1122110.0,-1123275.0,-1124486.0,-1125678.0,-1126827.0,-1127968.0,-1129055.0,-1130063.0,-1130981.0,-1131872.0,-1132774.0,-1133629.0,-1134479.0,-1135320.0,-1136140.0,-1136955.0,-1137707.0,-1138398.0,-1139040.0,-1139700.0,-1140372.0,-1140956.0,-1141495.0,-1142067.0,-1142674.0,-1143262.0,-1143788.0,-1144305.0,-1144807.0,-1145237.0,-1145612.0,-1145958.0,-1146371.0,-1146796.0,-1147169.0,-1147511.0,-1147821.0,-1148085.0,-1148263.0,-1148404.0,-1148580.0,-1148788.0,-1149028.0,-1149282.0,-1149525.0,-1149727.0,-1149868.0,-1149905.0,-1149821.0,-1149668.0,-1149491.0,-1149315.0,-1149148.0,-1149021.0,-1148940.0,-1148848.0,-1148747.0,-1148637.0,-1148525.0,-1148383.0,-1148175.0,-1147992.0,-1147873.0,-1147836.0,-1147779.0,-1147675.0,-1147560.0,-1147409.0,-1147200.0,-1146907.0,-1146614.0,-1146351.0,-1146093.0,-1145801.0,-1145423.0,-1144967.0,-1144485.0,-1144053.0,-1143712.0,-1143378.0,-1143012.0,-1142579.0,-1142079.0,-1141509.0,-1140888.0,-1140300.0,-1139731.0,-1139165.0,-1138574.0,-1137948.0,-1137224.0,-1136411.0,-1135601.0,-1134869.0,-1134178.0,-1133499.0,-1132846.0,-1132224.0,-1131588.0,-1130901.0,-1130182.0,-1129471.0,-1128776.0,-1128068.0,-1127302.0,-1126512.0,-1125753.0,-1125014.0,-1124266.0,-1123500.0,-1122774.0,-1122033.0,-1121188.0,-1120197.0,-1119140.0,-1118113.0,-1117102.0,-1116049.0,-1114953.0,-1113847.0,-1112739.0,-1111581.0,-1110429.0,-1109357.0,-1108387.0,-1107492.0,-1106612.0,-1105734.0,-1104814.0,-1103847.0,-1102860.0,-1101846.0,-1100813.0,-1099744.0,-1098645.0,-1097528.0,-1096387.0,-1095225.0,-1094043.0,-1092829.0,-1091575.0,-1090265.0,-1088917.0,-1087580.0,-1086297.0,-1085084.0,-1083927.0,-1082778.0,-1081592.0,-1080348.0,-1079048.0,-1077717.0,-1076384.0,-1075097.0,-1073834.0,-1072572.0,-1071289.0,-1070012.0,-1068718.0,-1067354.0,-1065935.0,-1064504.0,-1063082.0,-1061630.0,-1060158.0,-1058729.0,-1057371.0,-1056001.0,-1054549.0,-1053040.0,-1051542.0,-1050040.0,-1048493.0,-1046967.0,-1045528.0,-1044155.0,-1042765.0,-1041359.0,-1039931.0,-1038426.0,-1036804.0,-1035088.0,-1033336.0,-1031584.0,-1029897.0,-1028300.0,-1026721.0,-1025090.0,-1023392.0,-1021642.0,-1019875.0,-1018103.0,-1016375.0,-1014709.0,-1013069.0,-1011441.0,-1009736.0,-1007984.0,-1006222.0,-1004512.0,-1002859.0,-1001231.0,-999674.0,-998096.0,-996430.0,-994624.0,-992746.0,-990864.0,-988956.0,-987053.0,-985183.0,-983365.0,-981553.0,-979693.0,-977759.0,-975830.0,-973963.0,-972172.0,-970414.0,-968660.0,-966928.0,-965178.0,-963354.0,-961440.0,-959476.0,-957531.0,-955617.0,-953670.0,-951657.0,-949610.0,-947572.0,-945509.0,-943405.0,-941334.0,-939360.0,-937420.0,-935406.0,-933314.0,-931205.0,-929078.0,-926924.0,-924782.0,-922693.0,-920603.0,-918447.0,-916233.0,-914013.0,-911844.0,-909750.0,-907699.0,-905646.0,-903584.0,-901473.0,-899264.0,-896959.0,-894680.0,-892468.0,-890255.0,-887997.0,-885709.0,-883408.0,-881084.0,-878769.0,-876516.0,-874320.0,-872128.0,-869897.0,-867576.0,-865225.0,-862888.0,-860596.0,-858317.0,-856078.0,-853922.0,-851783.0,-849569.0,-847302.0,-845036.0,-842790.0,-840529.0,-838233.0,-835945.0,-833634.0,-831298.0,-828912.0,-826470.0,-823976.0,-821429.0,-818870.0,-816334.0,-813879.0,-811499.0,-809177.0,-806873.0,-804544.0,-802132.0,-799600.0,-797006.0,-794389.0,-791841.0,-789380.0,-787028.0,-784710.0,-782356.0,-779986.0,-777592.0,-775127.0,-772534.0,-769895.0,-767326.0,-764795.0,-762193.0,-759543.0,-756917.0,-754333.0,-751716.0,-749091.0,-746519.0,-743966.0,-741422.0,-738884.0,-736377.0,-733854.0,-731288.0,-728718.0,-726149.0,-723576.0,-720947.0,-718258.0,-715519.0,-712750.0,-709984.0,-707214.0,-704430.0,-701624.0,-698793.0,-695937.0,-693094.0,-690291.0,-687527.0,-684753.0,-682006.0,-679349.0,-676743.0,-674111.0,-671408.0,-668681.0,-665943.0,-663143.0,-660251.0,-657291.0,-654387.0,-651591.0,-648861.0,-646126.0,-643311.0,-640408.0,-637377.0,-634310.0,-631246.0,-628181.0,-625155.0,-622183.0,-619287.0,-616356.0,-613410.0,-610506.0,-607584.0,-604645.0,-601681.0,-598740.0,-595749.0,-592697.0,-589678.0,-586680.0,-583626.0,-580455.0,-577276.0,-574151.0,-571061.0,-567980.0,-564943.0,-561956.0,-558916.0,-555796.0,-552617.0,-549375.0,-546051.0,-542706.0,-539456.0,-536267.0,-533114.0,-530003.0,-526997.0,-524020.0,-521019.0,-517993.0,-514938.0,-511866.0,-508758.0,-505592.0,-502333.0,-498963.0,-495561.0,-492176.0,-488824.0,-485550.0,-482347.0,-479213.0,-476056.0,-472850.0,-469601.0,-466320.0,-463031.0,-459759.0,-456533.0,-453367.0,-450213.0,-447055.0,-443876.0,-440665.0,-437435.0,-434115.0,-430737.0,-427352.0,-424002.0,-420657.0,-417233.0,-413853.0,-410509.0,-407162.0,-403779.0,-400437.0,-397181.0,-393890.0,-390594.0,-387290.0,-383976.0,-380555.0,-377084.0,-373619.0,-370158.0,-366695.0,-363222.0,-359806.0,-356362.0,-352878.0,-349278.0,-345614.0,-341935.0,-338262.0,-334630.0,-331051.0,-327525.0,-323955.0,-320273.0,-316495.0,-312687.0,-308858.0,-304992.0,-301115.0,-297294.0,-293533.0,-289790.0,-286021.0,-282245.0,-278474.0,-274697.0,-270901.0,-267057.0,-263188.0,-259293.0,-255373.0,-251403.0,-247443.0,-243563.0,-239744.0,-235946.0,-232170.0,-228433.0,-224673.0,-220808.0,-216877.0,-212952.0,-209029.0,-205109.0,-201188.0,-197283.0,-193341.0,-189436.0,-185629.0,-181904.0,-178147.0,-174343.0,-170577.0,-166812.0,-163000.0,-159130.0,-155328.0,-151595.0,-147854.0,-144060.0,-140233.0,-136428.0,-132599.0,-128767.0,-124963.0,-121244.0,-117651.0,-114124.0,-110647.0,-107181.0,-103727.0,-100297.0,-96857.0,-93427.0,-89934.0,-86403.0,-82869.0,-79344.0,-75805.0,-72240.0,-68783.0,-65437.0,-62131.0,-58771.0,-55355.0,-51942.0,-48529.0,-45110.0,-41698.0,-38313.0,-34971.0,-31614.0,-28244.0,-24907.0,-21617.0,-18379.0,-15205.0,-12144.0,-9170.0,-6227.0,-3300.0,-399.0,2496.0,5388.0,8274.0,11133.0,13981.0,16830.0,19651.0,22463.0,25264.0,28086.0,30846.0,33516.0,36141.0,38793.0,41481.0,44133.0,46794.0,49487.0,52239.0,54965.0,57686.0,60413.0,63101.0,65736.0,68261.0,70741.0,73160.0,75565.0,78019.0,80493.0,82951.0,85387.0,87847.0,90351.0,92854.0,95390.0,97991.0,100667.0,103377.0,106054.0,108653.0,111164.0,113695.0,116284.0,118876.0,121459.0,124078.0,126815.0,129570.0,132257.0,134906.0,137552.0,140250.0,142952.0,145658.0,148415.0,151212.0,154052.0,156854.0,159621.0,162397.0,165156.0,167883.0,170616.0,173425.0,176300.0,179158.0,181969.0,184820.0,187660.0,190470.0,193218.0,195947.0,198703.0,201450.0,204251.0,207059.0,209846.0,212612.0,215415.0,218273.0,221127.0,223946.0,226781.0,229696.0,232672.0,235640.0,238586.0,241532.0,244526.0,247518.0,250450.0,253298.0,256057.0,258837.0,261620.0,264355.0,266996.0,269622.0,272288.0,274935.0,277527.0,280142.0,282853.0,285598.0,288308.0,290934.0,293509.0,296003.0,298401.0,300750.0,303091.0,305459.0,307782.0,310082.0,312381.0,314673.0,316949.0,319209.0,321502.0,323779.0,325995.0,328154.0,330302.0,332481.0,334643.0,336768.0,338882.0,340975.0,343081.0,345109.0,347092.0,349045.0,351015.0,353036.0,355011.0,356972.0,358886.0,360791.0,362664.0,364456.0,366183.0,367856.0,369546.0,371277.0,373043.0,374850.0,376700.0,378564.0,380425.0,382262.0,384046.0,385810.0,387608.0,389458.0,391267.0,392978.0,394654.0,396329.0,397950.0,399508.0,401092.0,402749.0,404418.0,406027.0,407607.0,409206.0,410771.0,412289.0,413738.0,415138.0,416510.0,417871.0,419251.0,420604.0,421935.0,423282.0,424621.0,425910.0,427140.0,428380.0,429637.0,430862.0,432083.0,433343.0,434655.0,435934.0,437146.0,438335.0,439502.0,440642.0,441738.0,442773.0,443773.0,444700.0,445570.0,446369.0,447102.0,447792.0,448448.0,449114.0,449806.0,450462.0,451038.0,451581.0,452106.0,452567.0,452982.0,453379.0,453784.0,454149.0,454494.0,454825.0,454998.0,455018.0,454978.0,454980.0,454981.0,454944.0,454954.0,455015.0,455046.0,455018.0,454981.0,455018.0,455108.0,455255.0,455476.0,455729.0,455967.0,456103.0,456121.0,456083.0,456017.0,455982.0,455957.0,455969.0,456022.0,456081.0,456095.0,456042.0,455969.0,455948.0,455977.0,455995.0,456024.0,456082.0,456197.0,456270.0,456303.0,456315.0,456337.0,456370.0,456357.0,456270.0,456102.0,455945.0,455840.0,455740.0,455598.0,455473.0,455405.0,455326.0,455149.0,454935.0,454813.0,454790.0,454764.0,454648.0,454484.0,454282.0,454012.0,453645.0,453283.0,453071.0,452972.0,452896.0,452819.0,452802.0,452802.0,452712.0,452514.0,452284.0,452047.0,451761.0,451445.0,451095.0,450677.0,450184.0,449609.0,449030.0,448416.0,447844.0,447401.0,447031.0,446698.0,446284.0,445837.0,445295.0,444646.0,443951.0,443225.0,442514.0,441785.0,441058.0,440333.0,439603.0,438908.0,438256.0,437650.0,437050.0,436427.0,435790.0,435109.0,434393.0,433655.0,432959.0,432324.0,431702.0,431086.0,430448.0,429750.0,428978.0,428184.0,427424.0,426719.0,426059.0,425471.0,424915.0,424345.0,423747.0,423121.0,422446.0,421712.0,420978.0,420273.0,419557.0,418762.0,417962.0,417241.0,416639.0,416104.0,415582.0,415059.0,414504.0,413906.0,413277.0,412651.0,412013.0,411359.0,410652.0,409901.0,409049.0,408124.0,407257.0,406510.0,405895.0,405284.0,404667.0,403986.0,403244.0,402462.0,401682.0,400953.0,400239.0,399571.0,398882.0,398167.0,397396.0,396600.0,395804.0,395013.0,394271.0,393582.0,392906.0,392204.0,391496.0,390797.0,390054.0,389218.0,388348.0,387478.0,386651.0,385877.0,385154.0,384481.0,383836.0,383232.0,382623.0,381981.0,381324.0,380699.0,380091.0,379468.0,378778.0,378008.0,377176.0,376312.0,375476.0,374679.0,373903.0,373127.0,372355.0,371566.0,370754.0,369950.0,369235.0,368586.0,367963.0,367288.0,366558.0,365772.0,364957.0,364169.0,363399.0,362671.0,361965.0,361261.0,360500.0,359675.0,358834.0,358057.0,357336.0,356600.0,355835.0,355066.0,354312.0,353510.0,352607.0,351723.0,350895.0,350074.0,349199.0,348269.0,347389.0,346500.0,345601.0,344708.0,343868.0,343081.0,342247.0,341333.0,340341.0,339311.0,338253.0,337223.0,336300.0,335496.0,334747.0,334000.0,333252.0,332470.0,331623.0,330726.0,329835.0,328945.0,328023.0,327069.0,326071.0,325054.0,324018.0,322976.0,321938.0,320906.0,319922.0,318955.0,317961.0,316988.0,316044.0,315096.0,314118.0,313185.0,312361.0,311584.0,310789.0,309939.0,309019.0,307991.0,306892.0,305779.0,304764.0,303875.0,303087.0,302375.0,301684.0,300961.0,300131.0,299233.0,298332.0,297430.0,296528.0,295626.0,294727.0,293835.0,292951.0,292091.0,291210.0,290324.0,289459.0,288580.0,287666.0,286678.0,285711.0,284828.0,284031.0,283317.0,282603.0,281918.0,281208.0,280423.0,279574.0,278679.0,277810.0,276965.0,276154.0,275352.0,274521.0,273664.0,272772.0,271831.0,270845.0,269888.0,268993.0,268118.0,267258.0,266431.0,265646.0,264834.0,263958.0,263070.0,262220.0,261398.0,260583.0,259778.0,259041.0,258357.0,257676.0,256955.0,256174.0,255344.0,254481.0,253589.0,252689.0,251813.0,250988.0,250161.0,249291.0,248401.0,247557.0,246782.0,246062.0,245392.0,244745.0,244108.0,243432.0,242718.0,241954.0,241189.0,240452.0,239716.0,238958.0,238150.0,237323.0,236525.0,235754.0,234994.0,234159.0,233264.0,232367.0,231464.0,230566.0,229676.0,228867.0,228159.0,227465.0,226776.0,226047.0,225326.0,224568.0,223777.0,223006.0,222247.0,221465.0,220577.0,219709.0,218908.0,218177.0,217405.0,216601.0,215814.0,215026.0,214218.0,213373.0,212574.0,211838.0,211152.0,210462.0,209701.0,208890.0,208055.0,207242.0,206479.0,205778.0,205165.0,204576.0,203959.0,203322.0,202687.0,202053.0,201355.0,200612.0,199874.0,199112.0,198279.0,197396.0,196564.0,195769.0,194987.0,194202.0,193453.0,192740.0,192020.0,191312.0,190572.0,189826.0,189079.0,188334.0,187577.0,186803.0,186048.0,185311.0,184589.0,183909.0,183281.0,182657.0,182023.0,181390.0,180779.0,180131.0,179394.0,178597.0,177810.0,177073.0,176393.0,175752.0,175127.0,174528.0,173920.0,173318.0,172668.0,171948.0,171169.0,170368.0,169596.0,168793.0,167953.0,167128.0,166416.0,165765.0,165092.0,164373.0,163645.0,162913.0,162157.0,161449.0,160842.0,160294.0,159732.0,159165.0,158564.0,157867.0,157058.0,156259.0,155559.0,154863.0,154118.0,153358.0,152621.0,151880.0,151076.0,150250.0,149440.0,148656.0,147900.0,147138.0,146385.0,145696.0,145109.0,144613.0,144108.0,143553.0,142981.0,142414.0,141856.0,141235.0,140572.0,139909.0,139234.0,138563.0,137891.0,137274.0,136731.0,136228.0,135746.0,135222.0,134613.0,133910.0,133118.0,132286.0,131454.0,130644.0,129919.0,129296.0,128706.0,128126.0,127515.0,126886.0,126251.0,125622.0,125024.0,124439.0,123866.0,123323.0,122705.0,121976.0,121195.0,120438.0,119742.0,119038.0,118358.0,117706.0,117068.0,116400.0,115681.0,114988.0,114349.0,113750.0,113176.0,112609.0,112053.0,111465.0,110851.0,110234.0,109635.0,109036.0,108439.0,107852.0,107267.0,106680.0,106048.0,105393.0,104715.0,104029.0,103350.0,102716.0,102181.0,101728.0,101313.0,100842.0,100275.0,99560.0,98755.0,97876.0,96936.0,95991.0,95094.0,94334.0,93660.0,93049.0,92501.0,92021.0,91570.0,91107.0,90618.0,90165.0,89744.0,89284.0,88762.0,88127.0,87430.0,86680.0,85906.0,85175.0,84533.0,84002.0,83488.0,82939.0,82388.0,81855.0,81307.0,80721.0,80139.0,79565.0,78979.0,78412.0,77901.0,77442.0,76992.0,76532.0,76020.0,75438.0,74815.0,74178.0,73526.0,72854.0,72226.0,71672.0,71139.0,70567.0,69959.0,69374.0,68809.0,68236.0,67628.0,67060.0,66526.0,66004.0,65481.0,64937.0,64389.0,63801.0,63241.0,62676.0,62083.0,61484.0,60914.0,60411.0,59922.0,59456.0,58993.0,58466.0,57921.0,57389.0,56899.0,56429.0,55974.0,55631.0,55305.0,54892.0,54344.0,53743.0,53139.0,52502.0,51873.0,51304.0,50845.0,50434.0,50040.0,49635.0,49210.0,48767.0,48252.0,47674.0,47078.0,46457.0,45787.0,45132.0,44552.0,44033.0,43499.0,42981.0,42509.0,42005.0,41475.0,40958.0,40482.0,40017.0,39560.0,39122.0,38667.0,38168.0,37621.0,37027.0,36426.0,35872.0,35334.0,34787.0,34234.0,33700.0,33167.0,32570.0,31945.0,31343.0,30812.0,30330.0,29846.0,29395.0,28974.0,28547.0,28054.0,27537.0,27001.0,26425.0,25860.0,25329.0,24862.0,24334.0,23770.0,23247.0,22760.0,22313.0,21837.0,21386.0,20964.0,20498.0,19976.0,19392.0,18838.0,18321.0,17796.0,17211.0,16584.0,16005.0,15513.0,15090.0,14689.0,14359.0,14076.0,13741.0,13228.0,12605.0,12021.0,11535.0,11111.0,10697.0,10344.0,10028.0,9686.0,9257.0,8749.0,8221.0,7657.0,7077.0,6502.0,5962.0,5443.0,4913.0,4388.0,3880.0,3379.0,2897.0,2465.0,2082.0,1715.0,1336.0,969.0,587.0,148.0,-376.0,-948.0,-1552.0,-2129.0,-2668.0,-3129.0,-3497.0,-3803.0,-4071.0,-4390.0,-4793.0,-5332.0,-5964.0,-6585.0,-7160.0,-7760.0,-8398.0,-9002.0,-9567.0,-10125.0,-10749.0,-11354.0,-11895.0,-12374.0,-12819.0,-13274.0,-13672.0,-14022.0,-14322.0,-14619.0,-14928.0,-15277.0,-15681.0,-16116.0,-16639.0,-17187.0,-17710.0,-18167.0,-18592.0,-19046.0,-19447.0,-19873.0,-20359.0,-20881.0,-21356.0,-21762.0,-22217.0,-22687.0,-23114.0,-23493.0,-23909.0,-24378.0,-24814.0,-25208.0,-25615.0,-26035.0,-26411.0,-26751.0,-27142.0,-27634.0,-28183.0,-28766.0,-29370.0,-29964.0,-30482.0,-30906.0,-31281.0,-31659.0,-32029.0,-32405.0,-32789.0,-33166.0,-33527.0,-33857.0,-34224.0,-34638.0,-35058.0,-35463.0,-35843.0,-36235.0,-36652.0,-37063.0,-37468.0,-37841.0,-38163.0,-38434.0,-38670.0,-38916.0,-39195.0,-39555.0,-40017.0,-40531.0,-41066.0,-41575.0,-42081.0,-42540.0,-42970.0,-43390.0,-43802.0,-44223.0,-44659.0,-45092.0,-45519.0,-45964.0,-46407.0,-46846.0,-47232.0,-47615.0,-48011.0,-48434.0,-48906.0,-49373.0,-49826.0,-50253.0,-50652.0,-50996.0,-51294.0,-51605.0,-51961.0,-52393.0,-52870.0,-53354.0,-53760.0,-54117.0,-54458.0,-54757.0,-54961.0,-55130.0,-55331.0,-55577.0,-55855.0,-56204.0,-56649.0,-57109.0,-57602.0,-58135.0,-58714.0,-59249.0,-59758.0,-60331.0,-60925.0,-61473.0,-61946.0,-62433.0,-62942.0,-63422.0,-63862.0,-64231.0,-64540.0,-64821.0,-65114.0,-65435.0,-65715.0,-65967.0,-66222.0,-66451.0],"type":"scatter"},{"customdata":[[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95],[858308042085.0,13.95]],"fill":"tozeroy","fillcolor":"rgb(63, 70, 135)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME3","line":{"color":"rgb(63, 70, 135)","width":1},"mode":"lines","name":"N6-benzyl-ATP","visible":false,"x":[13.754583333333333,13.759701178451177,13.764819023569023,13.769936868686868,13.775054713804714,13.780172558922558,13.785290404040403,13.790408249158249,13.795526094276093,13.80064393939394,13.805761784511784,13.810879629629628,13.815997474747475,13.821115319865319,13.826233164983165,13.83135101010101,13.836468855218854,13.8415867003367,13.846704545454545,13.851822390572389,13.856940235690235,13.86205808080808,13.867175925925926,13.87229377104377,13.877411616161615,13.88252946127946,13.887647306397305,13.892765151515151,13.897882996632996,13.90300084175084,13.908118686868686,13.91323653198653,13.918354377104377,13.923472222222221,13.928590067340066,13.933707912457912,13.938825757575756,13.943943602693603,13.949061447811447,13.954179292929291,13.959297138047138,13.964414983164982,13.969532828282828,13.974650673400673,13.979768518518517,13.984886363636363,13.990004208754208,13.995122053872054,14.000239898989898,14.005357744107743,14.010475589225589,14.015593434343433,14.020711279461278,14.025829124579124,14.030946969696968,14.036064814814814,14.041182659932659,14.046300505050503,14.05141835016835,14.056536195286194,14.06165404040404,14.066771885521884,14.071889730639729,14.077007575757575,14.08212542087542,14.087243265993266,14.09236111111111,14.097478956228954,14.1025968013468,14.107714646464645,14.112832491582491,14.117950336700336,14.12306818181818,14.128186026936026,14.13330387205387,14.138421717171717,14.143539562289561,14.148657407407406,14.153775252525252,14.158893097643096,14.164010942760942,14.169128787878787,14.174246632996631,14.179364478114477,14.184482323232322,14.189600168350168,14.194718013468012,14.199835858585857,14.204953703703703,14.210071548821547,14.215189393939392,14.220307239057238,14.225425084175082,14.230542929292929,14.235660774410773,14.240778619528617,14.245896464646464,14.251014309764308,14.256132154882154,14.261249999999999],"y":[89071.60121978947,129482.70286375549,186411.5528686372,265780.1016332073,375284.53932318726,524792.299689129,726779.7294430954,996797.0152754115,1353939.388737135,1821294.9689215438,2426330.3125110744,3201165.524377878,4182682.5943974936,5412404.646671221,6936081.353620133,8802918.26625262,11064396.527730256,13772645.36577613,16978353.402708005,20728235.98811299,25062113.396236897,30009696.825558744,35587222.71613471,41794117.141944654,48609906.53210756,55991614.11136104,63871888.89518389,72158102.3284625,80732614.59763403,89454358.00355785,98161810.45223372,106677342.27016851,114812820.45609693,122376254.08845018,129179171.84790877,135044346.51463822,139813430.01036274,143354042.38763255,145565872.7833697,146385400.2067999,145788924.16398853,143793703.33887523,140457125.98597732,135873967.68535095,130171919.32145885,123505679.73116173,116049994.20583929,107992075.26613428,99523862.36339538,90834562.31987146,82103865.5841274,73496160.69033699,65155978.59106938,57204798.738758765,49739248.92817645,42830639.13544882,36525692.47423572,30848278.453804445,25801917.222229514,21372808.464765802,17533143.245708518,14244478.014373064,11460983.004362164,9132417.735597115,7206729.810456543,5632215.746421121,4359221.0877224775,3341389.3202323965,2536493.9780503507,1906905.458942547,1419753.8644376912,1046852.5805465616,764445.5685859837,552835.8242736898,395944.5409156779,280841.3888408553,197276.99123506245,137239.880202953,94552.45203777529,64513.97960653431,43593.670800376225,29173.035398889137,19334.296246953847,12690.060408725349,8248.739361592627,5310.067528439422,3385.330530330787,2137.42400590728,1336.4996784935258,827.6288201830707,507.56413105498996,308.27251983758526,185.42456649859074,110.45574350511805,65.16252512121335,38.07115726105063,22.028393330085628,12.622870814164111,7.1634465319999725,4.026006584101463],"type":"scatter"},{"customdata":[[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68],[706131756090.0,15.68]],"fill":"tozeroy","fillcolor":"rgb(46, 112, 142)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME3","line":{"color":"rgb(46, 112, 142)","width":1},"mode":"lines","name":"ortho-nitrobenzyl-DL-homocysteine","visible":false,"x":[15.49125,15.498085016835018,15.504920033670034,15.511755050505052,15.518590067340067,15.525425084175085,15.532260101010102,15.539095117845118,15.545930134680136,15.552765151515151,15.559600168350169,15.566435185185187,15.573270202020202,15.58010521885522,15.586940235690236,15.593775252525253,15.60061026936027,15.607445286195286,15.614280303030304,15.621115319865321,15.627950336700337,15.634785353535355,15.64162037037037,15.648455387205388,15.655290404040406,15.662125420875421,15.668960437710439,15.675795454545455,15.682630471380472,15.68946548821549,15.696300505050505,15.703135521885523,15.709970538720539,15.716805555555556,15.723640572390574,15.73047558922559,15.737310606060607,15.744145622895623,15.75098063973064,15.757815656565658,15.764650673400673,15.771485690235691,15.778320707070707,15.785155723905724,15.791990740740742,15.798825757575758,15.805660774410775,15.81249579124579,15.819330808080808,15.826165824915826,15.833000841750842,15.83983585858586,15.846670875420877,15.853505892255892,15.86034090909091,15.867175925925926,15.874010942760943,15.88084595959596,15.887680976430977,15.894515993265994,15.90135101010101,15.908186026936027,15.915021043771045,15.92185606060606,15.928691077441078,15.935526094276094,15.942361111111111,15.949196127946129,15.956031144781145,15.962866161616162,15.969701178451178,15.976536195286196,15.983371212121213,15.990206228956229,15.997041245791246,16.003876262626264,16.01071127946128,16.017546296296295,16.024381313131315,16.03121632996633,16.038051346801346,16.044886363636365,16.05172138047138,16.058556397306397,16.065391414141413,16.072226430976432,16.079061447811448,16.085896464646463,16.092731481481483,16.0995664983165,16.106401515151514,16.113236531986534,16.12007154882155,16.126906565656565,16.13374158249158,16.1405765993266,16.147411616161616,16.15424663299663,16.16108164983165,16.167916666666667],"y":[208136.45693951118,320311.83329129184,485355.14789507433,724115.9753996811,1063698.2606406396,1538475.557059481,2190910.232550606,3071994.2483317684,4241095.424832936,5764976.239248792,7715762.135310915,10167682.374379648,13192495.137710955,16853641.28431116,21199341.983167384,26255049.842769407,32015857.979462124,38439636.6588263,45441769.51548276,52892369.92275997,60616750.35097616,68399685.5644695,75993665.29858337,83130905.23931146,89538426.71879378,94955087.8700374,99149117.34728877,101934523.27525356,103184763.10527794,102842275.70262751,100922875.59903759,97514542.1635261,92770732.81651442,86898928.1701113,80145599.87559865,72779116.53734666,65072232.442971446,57285731.73042469,49654550.50108235,42377318.85956075,35609815.950866416,29462379.097316056,24000911.14616713,19250830.776772324,15203131.609934125,11821660.020001154,9050773.715281608,6822676.508223027,5063906.574024352,3700653.4792633965,2662765.909330673,1886467.7586276534,1315914.3337883663,903790.3073752193,611180.6173813603,406942.73319402814,266783.4312486917,172205.19215221805,109444.88290331447,68486.74276557297,42196.787985744966,25598.475820075506,15290.111501847581,8992.263593169198,5207.019895100773,2968.733932840481,1666.5377186227379,921.1298365403449,501.28924116599427,268.6072614493174,141.71275655362174,73.6142639675344,37.6510276081209,18.96066325230662,9.401389539934907,4.589785629628412,2.206249312804979,1.0441877754460416,0.4865914269804019,0.22326062337786548,0.10086062255307839,0.04486348301604971,0.01964835344142488,0.008472687092150814,0.0035973111592347553,0.0015038228300176793,0.0006189807942700016,0.0002508531192432455,0.00010009760094961182,3.93268954351093e-05,1.5213091927032064e-05,5.794382320769118e-06,2.1729945453157576e-06,8.023649641537731e-07,2.9170717311231887e-07,1.04420096932475e-07,3.680297332701788e-08,1.2771548391723949e-08,4.363811988658368e-09,1.4680820896309442e-09],"type":"scatter"},{"customdata":[[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21],[164111046360.0,23.21]],"fill":"tozeroy","fillcolor":"rgb(253, 231, 37)","hovertemplate":"\u003cb\u003eArea:\u003c\u002fb\u003e %{customdata[0]}\u003cbr\u003e\u003cb\u003eCenter:\u003c\u002fb\u003e %{customdata[1]}\u003cbr\u003e\u003cextra\u003e\u003c\u002fextra\u003e","hovertext":"N6BENZYLADOONB_RNCOMT_TIME3","line":{"color":"rgb(253, 231, 37)","width":1},"mode":"lines","name":"DHBAL O3","visible":false,"x":[23.08125,23.09178872053872,23.102327441077442,23.11286616161616,23.123404882154883,23.133943602693602,23.144482323232324,23.155021043771043,23.165559764309766,23.176098484848485,23.186637205387207,23.197175925925926,23.207714646464648,23.218253367003367,23.22879208754209,23.23933080808081,23.249869528619527,23.26040824915825,23.27094696969697,23.28148569023569,23.29202441077441,23.302563131313132,23.31310185185185,23.323640572390573,23.334179292929292,23.344718013468015,23.355256734006733,23.365795454545456,23.376334175084175,23.386872895622894,23.397411616161616,23.407950336700335,23.418489057239057,23.429027777777776,23.4395664983165,23.450105218855217,23.46064393939394,23.47118265993266,23.48172138047138,23.4922601010101,23.502798821548822,23.51333754208754,23.523876262626263,23.534414983164982,23.5449537037037,23.555492424242424,23.566031144781142,23.576569865319865,23.587108585858584,23.597647306397306,23.608186026936025,23.618724747474747,23.629263468013466,23.63980218855219,23.650340909090907,23.66087962962963,23.67141835016835,23.68195707070707,23.69249579124579,23.70303451178451,23.71357323232323,23.72411195286195,23.734650673400672,23.74518939393939,23.755728114478114,23.766266835016832,23.776805555555555,23.787344276094274,23.797882996632996,23.808421717171715,23.818960437710437,23.829499158249156,23.840037878787875,23.850576599326597,23.861115319865316,23.87165404040404,23.882192760942758,23.89273148148148,23.9032702020202,23.91380892255892,23.92434764309764,23.934886363636362,23.94542508417508,23.955963804713804,23.966502525252523,23.97704124579124,23.987579966329964,23.998118686868683,24.008657407407405,24.019196127946124,24.029734848484846,24.040273569023565,24.050812289562288,24.061351010101006,24.07188973063973,24.082428451178448,24.09296717171717,24.10350589225589,24.11404461279461,24.12458333333333],"y":[939438.4233574135,1588242.5160904252,2571571.5153340152,3987619.268476938,5921913.4471085,8422552.2853687,11472515.843513722,14966040.183566667,18697710.798596676,22371920.108153258,25636065.452145293,28134083.628324207,29569737.33678083,29764284.6921675,28693050.542129297,26490569.025318995,23422817.866600204,19834455.653453354,16085505.77571609,12493451.819255833,9293161.017903792,6620301.495410757,4516742.83794686,2951251.708014725,1846802.3931572393,1106796.8036362643,635255.8223818149,349190.7273067445,183827.3139033947,92680.99132686552,44751.190159819635,20694.35046593622,9164.996426612646,3887.2823869240533,1579.0401451659884,614.2901377617678,228.86912257434858,81.66465971318432,27.907080120928484,9.133304395626949,2.8626928634347992,0.8593198994232469,0.24704056557445978,0.06801660760803646,0.017934734505246526,0.0045290615954249715,0.0010953547417599484,0.0002537082843547338,5.627918436720937e-05,1.1956229186839461e-05,2.4326182375080578e-06,4.7400942351350707e-07,8.845721940165041e-08,1.5809308765899435e-08,2.7059874002582157e-09,4.43579992212218e-10,6.963882234603069e-11,1.0470421806804683e-11,1.5076836592140038e-12,2.0791679319463102e-13,2.746010534298726e-14,3.4733465761454408e-15,4.207531069296118e-16,4.88134870891077e-17,5.423574694419385e-18,5.771181174876635e-19,5.881350761744271e-20,5.7401434353088104e-21,5.365394978733088e-22,4.8030149962393154e-23,4.117745271264456e-24,3.3809465268981773e-25,2.6585841869414325e-26,2.00214636463094e-27,1.4440243576183286e-28,9.974393677431355e-30,6.598295816825363e-31,4.180327905283229e-32,2.5364260606625425e-33,1.4738977457113444e-34,8.202491573040587e-36,4.3717721742551175e-37,2.2315290278450018e-38,1.0908897218409242e-39,5.107312711114318e-41,2.2900097945011107e-42,9.833667516009598e-44,4.044147539741321e-45,1.5928385300481733e-46,6.008275027431683e-48,2.1705067771323673e-49,7.509409342064151e-51,2.4881909227165527e-52,7.89577773545915e-54,2.3996031206442085e-55,6.984208758124186e-57,1.9468311936799052e-58,5.197238786565516e-60,1.328771595747983e-61,3.2535785133944756e-63],"type":"scatter"},{"hovertext":"N6BENZYLADOONB_RNCOMT_TIME3","line":{"color":"white","dash":"solid","width":1},"mode":"lines","name":"Signal","visible":false,"x":[0.00125,0.004583333333333333,0.007916666666666666,0.011250000000000001,0.014583333333333334,0.017916666666666668,0.021249999999999998,0.024583333333333336,0.027916666666666666,0.03125,0.034583333333333334,0.03791666666666667,0.04125,0.04458333333333333,0.04791666666666667,0.051250000000000004,0.05458333333333333,0.057916666666666665,0.06125,0.06458333333333334,0.06791666666666667,0.07125000000000001,0.07458333333333332,0.07791666666666666,0.08125,0.08458333333333333,0.08791666666666667,0.09125,0.09458333333333332,0.09791666666666667,0.10125,0.10458333333333333,0.10791666666666666,0.11125,0.11458333333333333,0.11791666666666667,0.12125000000000001,0.12458333333333332,0.12791666666666665,0.13125,0.13458333333333333,0.13791666666666666,0.14125,0.14458333333333334,0.14791666666666667,0.15125,0.15458333333333335,0.15791666666666665,0.16125,0.16458333333333333,0.16791666666666666,0.17125,0.17458333333333334,0.17791666666666667,0.18125,0.18458333333333332,0.18791666666666668,0.19125,0.19458333333333336,0.19791666666666666,0.20124999999999998,0.20458333333333334,0.20791666666666667,0.21125000000000002,0.21458333333333332,0.21791666666666665,0.22125,0.22458333333333333,0.22791666666666668,0.23125,0.2345833333333333,0.23791666666666667,0.24125,0.24458333333333335,0.24791666666666667,0.25125,0.25458333333333333,0.2579166666666667,0.26125000000000004,0.26458333333333334,0.26791666666666664,0.27125,0.27458333333333335,0.2779166666666667,0.28125,0.2845833333333333,0.28791666666666665,0.29125,0.29458333333333336,0.29791666666666666,0.30124999999999996,0.3045833333333333,0.30791666666666667,0.31125,0.3145833333333333,0.3179166666666667,0.32125,0.32458333333333333,0.3279166666666667,0.33125,0.33458333333333334,0.33791666666666664,0.34125,0.34458333333333335,0.34791666666666665,0.35125,0.3545833333333333,0.3579166666666667,0.36125,0.3645833333333333,0.36791666666666667,0.37124999999999997,0.3745833333333334,0.3779166666666667,0.38125,0.38458333333333333,0.38791666666666663,0.39125000000000004,0.39458333333333334,0.39791666666666664,0.40125,0.4045833333333333,0.4079166666666667,0.41125,0.41458333333333336,0.41791666666666666,0.42124999999999996,0.42458333333333337,0.42791666666666667,0.43125,0.4345833333333333,0.4379166666666666,0.44125000000000003,0.44458333333333333,0.4479166666666667,0.45125,0.4545833333333333,0.4579166666666667,0.46125,0.46458333333333335,0.46791666666666665,0.47125,0.47458333333333336,0.47791666666666666,0.48125,0.4845833333333333,0.48791666666666667,0.49125,0.4945833333333333,0.4979166666666667,0.50125,0.5045833333333333,0.5079166666666667,0.51125,0.5145833333333333,0.5179166666666667,0.52125,0.5245833333333334,0.5279166666666667,0.53125,0.5345833333333334,0.5379166666666666,0.54125,0.5445833333333333,0.5479166666666667,0.55125,0.5545833333333333,0.5579166666666667,0.5612499999999999,0.5645833333333333,0.5679166666666667,0.5712499999999999,0.5745833333333333,0.5779166666666666,0.58125,0.5845833333333333,0.5879166666666666,0.59125,0.5945833333333332,0.5979166666666667,0.6012500000000001,0.6045833333333334,0.6079166666666667,0.61125,0.6145833333333334,0.6179166666666667,0.62125,0.6245833333333334,0.6279166666666666,0.63125,0.6345833333333334,0.6379166666666667,0.64125,0.6445833333333333,0.6479166666666667,0.65125,0.6545833333333333,0.6579166666666667,0.66125,0.6645833333333333,0.6679166666666667,0.67125,0.6745833333333333,0.6779166666666666,0.68125,0.6845833333333334,0.6879166666666666,0.69125,0.6945833333333333,0.6979166666666666,0.70125,0.7045833333333333,0.7079166666666666,0.7112499999999999,0.7145833333333333,0.7179166666666668,0.72125,0.7245833333333334,0.7279166666666667,0.73125,0.7345833333333334,0.7379166666666667,0.7412500000000001,0.7445833333333333,0.7479166666666667,0.7512500000000001,0.7545833333333333,0.7579166666666667,0.76125,0.7645833333333333,0.7679166666666667,0.77125,0.7745833333333334,0.7779166666666666,0.78125,0.7845833333333334,0.7879166666666666,0.79125,0.7945833333333333,0.7979166666666667,0.80125,0.8045833333333333,0.8079166666666667,0.8112499999999999,0.8145833333333333,0.8179166666666667,0.8212499999999999,0.8245833333333333,0.8279166666666666,0.83125,0.8345833333333333,0.8379166666666666,0.84125,0.8445833333333332,0.8479166666666667,0.8512500000000001,0.8545833333333334,0.8579166666666667,0.86125,0.8645833333333334,0.8679166666666667,0.87125,0.8745833333333334,0.8779166666666666,0.88125,0.8845833333333334,0.8879166666666667,0.89125,0.8945833333333333,0.8979166666666667,0.90125,0.9045833333333333,0.9079166666666667,0.91125,0.9145833333333333,0.9179166666666667,0.92125,0.9245833333333333,0.9279166666666666,0.93125,0.9345833333333334,0.9379166666666666,0.94125,0.9445833333333333,0.9479166666666666,0.95125,0.9545833333333333,0.9579166666666666,0.9612499999999999,0.9645833333333333,0.9679166666666668,0.97125,0.9745833333333334,0.9779166666666667,0.98125,0.9845833333333334,0.9879166666666667,0.9912500000000001,0.9945833333333333,0.9979166666666667,1.00125,1.0045833333333334,1.0079166666666668,1.01125,1.0145833333333334,1.0179166666666668,1.02125,1.0245833333333334,1.0279166666666666,1.03125,1.0345833333333334,1.0379166666666666,1.04125,1.0445833333333332,1.0479166666666666,1.05125,1.0545833333333332,1.0579166666666666,1.06125,1.0645833333333334,1.0679166666666666,1.07125,1.0745833333333332,1.0779166666666666,1.08125,1.0845833333333335,1.0879166666666669,1.0912499999999998,1.0945833333333332,1.0979166666666667,1.10125,1.1045833333333335,1.1079166666666667,1.1112499999999998,1.1145833333333333,1.1179166666666667,1.12125,1.1245833333333333,1.1279166666666667,1.13125,1.1345833333333333,1.1379166666666667,1.1412499999999999,1.1445833333333333,1.1479166666666667,1.15125,1.1545833333333335,1.1579166666666665,1.16125,1.1645833333333333,1.1679166666666667,1.1712500000000001,1.1745833333333333,1.1779166666666667,1.18125,1.1845833333333333,1.1879166666666667,1.19125,1.1945833333333333,1.1979166666666667,1.2012500000000002,1.2045833333333333,1.2079166666666665,1.21125,1.2145833333333333,1.2179166666666668,1.2212500000000002,1.2245833333333331,1.2279166666666665,1.23125,1.2345833333333334,1.2379166666666668,1.24125,1.2445833333333334,1.2479166666666666,1.25125,1.2545833333333334,1.2579166666666666,1.26125,1.2645833333333334,1.2679166666666668,1.27125,1.2745833333333332,1.2779166666666666,1.28125,1.2845833333333334,1.2879166666666668,1.29125,1.2945833333333332,1.2979166666666666,1.30125,1.3045833333333334,1.3079166666666666,1.31125,1.3145833333333334,1.3179166666666666,1.32125,1.3245833333333332,1.3279166666666666,1.33125,1.3345833333333335,1.3379166666666669,1.3412499999999998,1.3445833333333332,1.3479166666666667,1.35125,1.3545833333333335,1.3579166666666667,1.3612499999999998,1.3645833333333333,1.3679166666666667,1.37125,1.3745833333333333,1.3779166666666667,1.38125,1.3845833333333333,1.3879166666666667,1.3912499999999999,1.3945833333333333,1.3979166666666667,1.40125,1.4045833333333335,1.4079166666666665,1.41125,1.4145833333333333,1.4179166666666667,1.4212500000000001,1.4245833333333333,1.4279166666666667,1.43125,1.4345833333333333,1.4379166666666667,1.44125,1.4445833333333333,1.4479166666666667,1.4512500000000002,1.4545833333333333,1.4579166666666665,1.46125,1.4645833333333333,1.4679166666666668,1.4712500000000002,1.4745833333333331,1.4779166666666665,1.48125,1.4845833333333334,1.4879166666666668,1.49125,1.4945833333333334,1.4979166666666666,1.50125,1.5045833333333334,1.5079166666666666,1.51125,1.5145833333333334,1.5179166666666668,1.52125,1.5245833333333332,1.5279166666666666,1.53125,1.5345833333333334,1.5379166666666668,1.54125,1.5445833333333332,1.5479166666666666,1.55125,1.5545833333333334,1.5579166666666666,1.56125,1.5645833333333334,1.5679166666666666,1.57125,1.5745833333333332,1.5779166666666666,1.58125,1.5845833333333335,1.5879166666666669,1.5912499999999998,1.5945833333333332,1.5979166666666667,1.60125,1.6045833333333335,1.6079166666666667,1.6112499999999998,1.6145833333333333,1.6179166666666667,1.62125,1.6245833333333333,1.6279166666666667,1.63125,1.6345833333333333,1.6379166666666667,1.6412499999999999,1.6445833333333333,1.6479166666666667,1.65125,1.6545833333333335,1.6579166666666665,1.66125,1.6645833333333333,1.6679166666666667,1.6712500000000001,1.6745833333333333,1.6779166666666667,1.68125,1.6845833333333333,1.6879166666666667,1.69125,1.6945833333333333,1.6979166666666667,1.7012500000000002,1.7045833333333333,1.7079166666666665,1.71125,1.7145833333333333,1.7179166666666668,1.7212500000000002,1.7245833333333331,1.7279166666666665,1.73125,1.7345833333333334,1.7379166666666668,1.74125,1.7445833333333334,1.7479166666666666,1.75125,1.7545833333333334,1.7579166666666666,1.76125,1.7645833333333334,1.7679166666666668,1.77125,1.7745833333333332,1.7779166666666666,1.78125,1.7845833333333334,1.7879166666666668,1.79125,1.7945833333333332,1.7979166666666666,1.80125,1.8045833333333334,1.8079166666666666,1.81125,1.8145833333333334,1.8179166666666666,1.82125,1.8245833333333332,1.8279166666666666,1.83125,1.8345833333333335,1.8379166666666669,1.8412499999999998,1.8445833333333332,1.8479166666666667,1.85125,1.8545833333333335,1.8579166666666667,1.8612499999999998,1.8645833333333333,1.8679166666666667,1.87125,1.8745833333333333,1.8779166666666667,1.88125,1.8845833333333333,1.8879166666666667,1.8912499999999999,1.8945833333333333,1.8979166666666667,1.90125,1.9045833333333335,1.9079166666666665,1.91125,1.9145833333333333,1.9179166666666667,1.9212500000000001,1.9245833333333333,1.9279166666666667,1.93125,1.9345833333333333,1.9379166666666667,1.94125,1.9445833333333333,1.9479166666666667,1.9512500000000002,1.9545833333333333,1.9579166666666665,1.96125,1.9645833333333333,1.9679166666666668,1.9712500000000002,1.9745833333333331,1.9779166666666665,1.98125,1.9845833333333334,1.9879166666666668,1.99125,1.9945833333333334,1.9979166666666666,2.00125,2.0045833333333336,2.0079166666666666,2.01125,2.0145833333333334,2.017916666666667,2.02125,2.024583333333333,2.0279166666666666,2.03125,2.0345833333333334,2.037916666666667,2.04125,2.044583333333333,2.0479166666666666,2.05125,2.0545833333333334,2.0579166666666664,2.06125,2.064583333333333,2.0679166666666666,2.07125,2.0745833333333334,2.0779166666666664,2.08125,2.0845833333333332,2.0879166666666666,2.09125,2.0945833333333335,2.097916666666667,2.10125,2.1045833333333333,2.1079166666666667,2.11125,2.1145833333333335,2.117916666666667,2.1212500000000003,2.1245833333333333,2.1279166666666667,2.13125,2.134583333333333,2.137916666666667,2.14125,2.1445833333333337,2.1479166666666667,2.1512499999999997,2.1545833333333335,2.1579166666666665,2.1612500000000003,2.1645833333333333,2.1679166666666663,2.17125,2.174583333333333,2.177916666666667,2.18125,2.1845833333333333,2.1879166666666667,2.1912499999999997,2.1945833333333336,2.1979166666666665,2.20125,2.2045833333333333,2.2079166666666667,2.21125,2.214583333333333,2.2179166666666665,2.22125,2.2245833333333334,2.2279166666666668,2.23125,2.234583333333333,2.2379166666666666,2.24125,2.2445833333333334,2.247916666666667,2.2512499999999998,2.2545833333333336,2.2579166666666666,2.26125,2.2645833333333334,2.2679166666666664,2.27125,2.274583333333333,2.277916666666667,2.28125,2.284583333333333,2.287916666666667,2.29125,2.2945833333333336,2.2979166666666666,2.30125,2.3045833333333334,2.3079166666666664,2.3112500000000002,2.314583333333333,2.3179166666666666,2.32125,2.3245833333333334,2.327916666666667,2.33125,2.3345833333333332,2.3379166666666666,2.34125,2.3445833333333335,2.347916666666667,2.35125,2.3545833333333333,2.3579166666666667,2.36125,2.3645833333333335,2.3679166666666664,2.3712500000000003,2.3745833333333333,2.3779166666666667,2.38125,2.384583333333333,2.387916666666667,2.39125,2.3945833333333337,2.3979166666666667,2.4012499999999997,2.4045833333333335,2.4079166666666665,2.4112500000000003,2.4145833333333333,2.4179166666666663,2.42125,2.424583333333333,2.427916666666667,2.43125,2.4345833333333333,2.4379166666666667,2.4412499999999997,2.4445833333333336,2.4479166666666665,2.45125,2.4545833333333333,2.4579166666666667,2.46125,2.464583333333333,2.4679166666666665,2.47125,2.4745833333333334,2.4779166666666668,2.48125,2.484583333333333,2.4879166666666666,2.49125,2.4945833333333334,2.497916666666667,2.5012499999999998,2.5045833333333336,2.5079166666666666,2.51125,2.5145833333333334,2.5179166666666664,2.52125,2.524583333333333,2.527916666666667,2.53125,2.534583333333333,2.537916666666667,2.54125,2.5445833333333336,2.5479166666666666,2.55125,2.5545833333333334,2.5579166666666664,2.5612500000000002,2.564583333333333,2.5679166666666666,2.57125,2.5745833333333334,2.577916666666667,2.58125,2.5845833333333332,2.5879166666666666,2.59125,2.5945833333333335,2.597916666666667,2.60125,2.6045833333333333,2.6079166666666667,2.61125,2.6145833333333335,2.6179166666666664,2.6212500000000003,2.6245833333333333,2.6279166666666667,2.63125,2.634583333333333,2.637916666666667,2.64125,2.6445833333333337,2.6479166666666667,2.6512499999999997,2.6545833333333335,2.6579166666666665,2.6612500000000003,2.6645833333333333,2.6679166666666663,2.67125,2.674583333333333,2.677916666666667,2.68125,2.6845833333333333,2.6879166666666667,2.6912499999999997,2.6945833333333336,2.6979166666666665,2.70125,2.7045833333333333,2.7079166666666667,2.71125,2.714583333333333,2.7179166666666665,2.72125,2.7245833333333334,2.7279166666666668,2.73125,2.734583333333333,2.7379166666666666,2.74125,2.7445833333333334,2.747916666666667,2.7512499999999998,2.7545833333333336,2.7579166666666666,2.76125,2.7645833333333334,2.7679166666666664,2.77125,2.774583333333333,2.777916666666667,2.78125,2.784583333333333,2.787916666666667,2.79125,2.7945833333333336,2.7979166666666666,2.80125,2.8045833333333334,2.8079166666666664,2.8112500000000002,2.814583333333333,2.8179166666666666,2.82125,2.8245833333333334,2.827916666666667,2.83125,2.8345833333333332,2.8379166666666666,2.84125,2.8445833333333335,2.847916666666667,2.85125,2.8545833333333333,2.8579166666666667,2.86125,2.8645833333333335,2.8679166666666664,2.8712500000000003,2.8745833333333333,2.8779166666666667,2.88125,2.884583333333333,2.887916666666667,2.89125,2.8945833333333337,2.8979166666666667,2.9012499999999997,2.9045833333333335,2.9079166666666665,2.9112500000000003,2.9145833333333333,2.9179166666666663,2.92125,2.924583333333333,2.927916666666667,2.93125,2.9345833333333333,2.9379166666666667,2.9412499999999997,2.9445833333333336,2.9479166666666665,2.95125,2.9545833333333333,2.9579166666666667,2.96125,2.964583333333333,2.9679166666666665,2.97125,2.9745833333333334,2.9779166666666668,2.98125,2.984583333333333,2.9879166666666666,2.99125,2.9945833333333334,2.997916666666667,3.0012499999999998,3.0045833333333336,3.0079166666666666,3.01125,3.0145833333333334,3.0179166666666664,3.02125,3.024583333333333,3.027916666666667,3.03125,3.034583333333333,3.037916666666667,3.04125,3.0445833333333336,3.0479166666666666,3.05125,3.0545833333333334,3.0579166666666664,3.0612500000000002,3.064583333333333,3.0679166666666666,3.07125,3.0745833333333334,3.077916666666667,3.08125,3.0845833333333332,3.0879166666666666,3.09125,3.0945833333333335,3.097916666666667,3.10125,3.1045833333333333,3.1079166666666667,3.11125,3.1145833333333335,3.1179166666666664,3.1212500000000003,3.1245833333333333,3.1279166666666667,3.13125,3.134583333333333,3.137916666666667,3.14125,3.1445833333333337,3.1479166666666667,3.1512499999999997,3.1545833333333335,3.1579166666666665,3.1612500000000003,3.1645833333333333,3.1679166666666663,3.17125,3.174583333333333,3.177916666666667,3.18125,3.1845833333333333,3.1879166666666667,3.1912499999999997,3.1945833333333336,3.1979166666666665,3.20125,3.2045833333333333,3.2079166666666667,3.21125,3.214583333333333,3.2179166666666665,3.22125,3.2245833333333334,3.2279166666666668,3.23125,3.234583333333333,3.2379166666666666,3.24125,3.2445833333333334,3.247916666666667,3.2512499999999998,3.2545833333333336,3.2579166666666666,3.26125,3.2645833333333334,3.2679166666666664,3.27125,3.274583333333333,3.277916666666667,3.28125,3.284583333333333,3.287916666666667,3.29125,3.2945833333333336,3.2979166666666666,3.30125,3.3045833333333334,3.3079166666666664,3.3112500000000002,3.314583333333333,3.3179166666666666,3.32125,3.3245833333333334,3.327916666666667,3.33125,3.3345833333333332,3.3379166666666666,3.34125,3.3445833333333335,3.347916666666667,3.35125,3.3545833333333333,3.3579166666666667,3.36125,3.3645833333333335,3.3679166666666664,3.3712500000000003,3.3745833333333333,3.3779166666666667,3.38125,3.384583333333333,3.387916666666667,3.39125,3.3945833333333337,3.3979166666666667,3.4012499999999997,3.4045833333333335,3.4079166666666665,3.4112500000000003,3.4145833333333333,3.4179166666666663,3.42125,3.424583333333333,3.427916666666667,3.43125,3.4345833333333333,3.4379166666666667,3.4412499999999997,3.4445833333333336,3.4479166666666665,3.45125,3.4545833333333333,3.4579166666666667,3.46125,3.464583333333333,3.4679166666666665,3.47125,3.4745833333333334,3.4779166666666668,3.48125,3.484583333333333,3.4879166666666666,3.49125,3.4945833333333334,3.497916666666667,3.5012499999999998,3.5045833333333336,3.5079166666666666,3.51125,3.5145833333333334,3.5179166666666664,3.52125,3.524583333333333,3.527916666666667,3.53125,3.534583333333333,3.537916666666667,3.54125,3.5445833333333336,3.5479166666666666,3.55125,3.5545833333333334,3.5579166666666664,3.5612500000000002,3.564583333333333,3.5679166666666666,3.57125,3.5745833333333334,3.577916666666667,3.58125,3.5845833333333332,3.5879166666666666,3.59125,3.5945833333333335,3.597916666666667,3.60125,3.6045833333333333,3.6079166666666667,3.61125,3.6145833333333335,3.6179166666666664,3.6212500000000003,3.6245833333333333,3.6279166666666667,3.63125,3.634583333333333,3.637916666666667,3.64125,3.6445833333333337,3.6479166666666667,3.6512499999999997,3.6545833333333335,3.6579166666666665,3.6612500000000003,3.6645833333333333,3.6679166666666663,3.67125,3.674583333333333,3.677916666666667,3.68125,3.6845833333333333,3.6879166666666667,3.6912499999999997,3.6945833333333336,3.6979166666666665,3.70125,3.7045833333333333,3.7079166666666667,3.71125,3.714583333333333,3.7179166666666665,3.72125,3.7245833333333334,3.7279166666666668,3.73125,3.734583333333333,3.7379166666666666,3.74125,3.7445833333333334,3.747916666666667,3.7512499999999998,3.7545833333333336,3.7579166666666666,3.76125,3.7645833333333334,3.7679166666666664,3.77125,3.774583333333333,3.777916666666667,3.78125,3.784583333333333,3.787916666666667,3.79125,3.7945833333333336,3.7979166666666666,3.80125,3.8045833333333334,3.8079166666666664,3.8112500000000002,3.814583333333333,3.8179166666666666,3.82125,3.8245833333333334,3.827916666666667,3.83125,3.8345833333333332,3.8379166666666666,3.84125,3.8445833333333335,3.847916666666667,3.85125,3.8545833333333333,3.8579166666666667,3.86125,3.8645833333333335,3.8679166666666664,3.8712500000000003,3.8745833333333333,3.8779166666666667,3.88125,3.884583333333333,3.887916666666667,3.89125,3.8945833333333337,3.8979166666666667,3.9012499999999997,3.9045833333333335,3.9079166666666665,3.9112500000000003,3.9145833333333333,3.9179166666666663,3.92125,3.924583333333333,3.927916666666667,3.93125,3.9345833333333333,3.9379166666666667,3.9412499999999997,3.9445833333333336,3.9479166666666665,3.95125,3.9545833333333333,3.9579166666666667,3.96125,3.964583333333333,3.9679166666666665,3.97125,3.9745833333333334,3.9779166666666668,3.98125,3.984583333333333,3.9879166666666666,3.99125,3.9945833333333334,3.997916666666667,4.00125,4.004583333333334,4.007916666666667,4.01125,4.014583333333333,4.017916666666666,4.02125,4.024583333333333,4.027916666666667,4.03125,4.034583333333333,4.037916666666667,4.04125,4.044583333333334,4.047916666666667,4.05125,4.054583333333333,4.057916666666666,4.06125,4.064583333333333,4.067916666666666,4.07125,4.074583333333333,4.077916666666667,4.08125,4.084583333333333,4.087916666666667,4.09125,4.0945833333333335,4.097916666666666,4.101249999999999,4.104583333333333,4.107916666666666,4.11125,4.114583333333333,4.117916666666667,4.12125,4.124583333333333,4.127916666666667,4.13125,4.1345833333333335,4.1379166666666665,4.14125,4.144583333333333,4.147916666666666,4.15125,4.154583333333333,4.157916666666667,4.16125,4.164583333333334,4.167916666666667,4.17125,4.1745833333333335,4.1779166666666665,4.18125,4.184583333333333,4.187916666666667,4.19125,4.194583333333333,4.197916666666667,4.20125,4.204583333333334,4.207916666666667,4.211250000000001,4.214583333333334,4.2179166666666665,4.22125,4.224583333333333,4.227916666666667,4.23125,4.234583333333333,4.237916666666667,4.24125,4.244583333333334,4.247916666666667,4.25125,4.254583333333334,4.257916666666667,4.26125,4.264583333333333,4.267916666666666,4.271249999999999,4.274583333333334,4.277916666666667,4.28125,4.284583333333333,4.287916666666666,4.291250000000001,4.294583333333334,4.297916666666667,4.30125,4.3045833333333325,4.307916666666667,4.31125,4.314583333333333,4.317916666666666,4.32125,4.324583333333334,4.327916666666667,4.33125,4.334583333333333,4.337916666666667,4.3412500000000005,4.3445833333333335,4.347916666666666,4.351249999999999,4.354583333333333,4.357916666666667,4.36125,4.364583333333333,4.367916666666667,4.37125,4.374583333333334,4.377916666666667,4.38125,4.3845833333333335,4.3879166666666665,4.39125,4.394583333333333,4.397916666666666,4.40125,4.404583333333333,4.407916666666667,4.41125,4.414583333333334,4.417916666666667,4.42125,4.4245833333333335,4.4279166666666665,4.43125,4.434583333333333,4.437916666666666,4.44125,4.444583333333333,4.447916666666667,4.45125,4.454583333333333,4.457916666666667,4.461250000000001,4.464583333333334,4.4679166666666665,4.4712499999999995,4.474583333333333,4.477916666666667,4.48125,4.484583333333333,4.487916666666666,4.49125,4.494583333333334,4.497916666666667,4.50125,4.504583333333333,4.5079166666666675,4.51125,4.514583333333333,4.517916666666666,4.521249999999999,4.524583333333334,4.527916666666667,4.53125,4.534583333333333,4.537916666666666,4.541250000000001,4.544583333333334,4.547916666666667,4.55125,4.5545833333333325,4.557916666666667,4.56125,4.564583333333333,4.567916666666666,4.57125,4.574583333333334,4.577916666666667,4.58125,4.584583333333333,4.587916666666667,4.5912500000000005,4.5945833333333335,4.597916666666666,4.601249999999999,4.604583333333333,4.607916666666667,4.61125,4.614583333333333,4.617916666666667,4.62125,4.624583333333334,4.627916666666667,4.63125,4.6345833333333335,4.6379166666666665,4.64125,4.644583333333333,4.647916666666666,4.65125,4.654583333333333,4.657916666666667,4.66125,4.664583333333334,4.667916666666667,4.67125,4.6745833333333335,4.6779166666666665,4.68125,4.684583333333333,4.687916666666666,4.69125,4.694583333333333,4.697916666666667,4.70125,4.704583333333333,4.707916666666667,4.711250000000001,4.714583333333334,4.7179166666666665,4.7212499999999995,4.724583333333333,4.727916666666667,4.73125,4.734583333333333,4.737916666666666,4.74125,4.744583333333334,4.747916666666667,4.75125,4.754583333333333,4.7579166666666675,4.76125,4.764583333333333,4.767916666666666,4.771249999999999,4.774583333333334,4.777916666666667,4.78125,4.784583333333333,4.787916666666666,4.791250000000001,4.794583333333334,4.797916666666667,4.80125,4.8045833333333325,4.807916666666667,4.81125,4.814583333333333,4.817916666666666,4.82125,4.824583333333334,4.827916666666667,4.83125,4.834583333333333,4.837916666666667,4.8412500000000005,4.8445833333333335,4.847916666666666,4.851249999999999,4.854583333333333,4.857916666666667,4.86125,4.864583333333333,4.867916666666667,4.87125,4.874583333333334,4.877916666666667,4.88125,4.8845833333333335,4.8879166666666665,4.89125,4.894583333333333,4.897916666666666,4.90125,4.904583333333333,4.907916666666667,4.91125,4.914583333333334,4.917916666666667,4.92125,4.9245833333333335,4.9279166666666665,4.93125,4.934583333333333,4.937916666666666,4.94125,4.944583333333333,4.947916666666667,4.95125,4.954583333333333,4.957916666666667,4.961250000000001,4.964583333333334,4.9679166666666665,4.9712499999999995,4.974583333333333,4.977916666666667,4.98125,4.984583333333333,4.987916666666666,4.99125,4.994583333333334,4.997916666666667,5.00125,5.004583333333333,5.0079166666666675,5.01125,5.014583333333333,5.017916666666666,5.021249999999999,5.024583333333334,5.027916666666667,5.03125,5.034583333333333,5.037916666666666,5.041250000000001,5.044583333333334,5.047916666666667,5.05125,5.0545833333333325,5.057916666666667,5.06125,5.064583333333333,5.067916666666666,5.07125,5.074583333333334,5.077916666666667,5.08125,5.084583333333333,5.087916666666667,5.0912500000000005,5.0945833333333335,5.097916666666666,5.101249999999999,5.104583333333333,5.107916666666667,5.11125,5.114583333333333,5.117916666666667,5.12125,5.124583333333334,5.127916666666667,5.13125,5.1345833333333335,5.1379166666666665,5.14125,5.144583333333333,5.147916666666666,5.15125,5.154583333333333,5.157916666666667,5.16125,5.164583333333334,5.167916666666667,5.17125,5.1745833333333335,5.1779166666666665,5.18125,5.184583333333333,5.187916666666666,5.19125,5.194583333333333,5.197916666666667,5.20125,5.204583333333333,5.207916666666667,5.211250000000001,5.214583333333334,5.2179166666666665,5.2212499999999995,5.224583333333333,5.227916666666667,5.23125,5.234583333333333,5.237916666666666,5.24125,5.244583333333334,5.247916666666667,5.25125,5.254583333333333,5.2579166666666675,5.26125,5.264583333333333,5.267916666666666,5.271249999999999,5.274583333333334,5.277916666666667,5.28125,5.284583333333333,5.287916666666666,5.291250000000001,5.294583333333334,5.297916666666667,5.30125,5.3045833333333325,5.307916666666667,5.31125,5.314583333333333,5.317916666666666,5.32125,5.324583333333334,5.327916666666667,5.33125,5.334583333333333,5.337916666666667,5.3412500000000005,5.3445833333333335,5.347916666666666,5.351249999999999,5.354583333333333,5.357916666666667,5.36125,5.364583333333333,5.367916666666667,5.37125,5.374583333333334,5.377916666666667,5.38125,5.3845833333333335,5.3879166666666665,5.39125,5.394583333333333,5.397916666666666,5.40125,5.404583333333333,5.407916666666667,5.41125,5.414583333333334,5.417916666666667,5.42125,5.4245833333333335,5.4279166666666665,5.43125,5.434583333333333,5.437916666666666,5.44125,5.444583333333333,5.447916666666667,5.45125,5.454583333333333,5.457916666666667,5.461250000000001,5.464583333333334,5.4679166666666665,5.4712499999999995,5.474583333333333,5.477916666666667,5.48125,5.484583333333333,5.487916666666666,5.49125,5.494583333333334,5.497916666666667,5.50125,5.504583333333333,5.5079166666666675,5.51125,5.514583333333333,5.517916666666666,5.521249999999999,5.524583333333334,5.527916666666667,5.53125,5.534583333333333,5.537916666666666,5.541250000000001,5.544583333333334,5.547916666666667,5.55125,5.5545833333333325,5.557916666666667,5.56125,5.564583333333333,5.567916666666666,5.57125,5.574583333333334,5.577916666666667,5.58125,5.584583333333333,5.587916666666667,5.5912500000000005,5.5945833333333335,5.597916666666666,5.601249999999999,5.604583333333333,5.607916666666667,5.61125,5.614583333333333,5.617916666666667,5.62125,5.624583333333334,5.627916666666667,5.63125,5.6345833333333335,5.6379166666666665,5.64125,5.644583333333333,5.647916666666666,5.65125,5.654583333333333,5.657916666666667,5.66125,5.664583333333334,5.667916666666667,5.67125,5.6745833333333335,5.6779166666666665,5.68125,5.684583333333333,5.687916666666666,5.69125,5.694583333333333,5.697916666666667,5.70125,5.704583333333333,5.707916666666667,5.711250000000001,5.714583333333334,5.7179166666666665,5.7212499999999995,5.724583333333333,5.727916666666667,5.73125,5.734583333333333,5.737916666666666,5.74125,5.744583333333334,5.747916666666667,5.75125,5.754583333333333,5.7579166666666675,5.76125,5.764583333333333,5.767916666666666,5.771249999999999,5.774583333333334,5.777916666666667,5.78125,5.784583333333333,5.787916666666666,5.791250000000001,5.794583333333334,5.797916666666667,5.80125,5.8045833333333325,5.807916666666667,5.81125,5.814583333333333,5.817916666666666,5.82125,5.824583333333334,5.827916666666667,5.83125,5.834583333333333,5.837916666666667,5.8412500000000005,5.8445833333333335,5.847916666666666,5.851249999999999,5.854583333333333,5.857916666666667,5.86125,5.864583333333333,5.867916666666667,5.87125,5.874583333333334,5.877916666666667,5.88125,5.8845833333333335,5.8879166666666665,5.89125,5.894583333333333,5.897916666666666,5.90125,5.904583333333333,5.907916666666667,5.91125,5.914583333333334,5.917916666666667,5.92125,5.9245833333333335,5.9279166666666665,5.93125,5.934583333333333,5.937916666666666,5.94125,5.944583333333333,5.947916666666667,5.95125,5.954583333333333,5.957916666666667,5.961250000000001,5.964583333333334,5.9679166666666665,5.9712499999999995,5.974583333333333,5.977916666666667,5.98125,5.984583333333333,5.987916666666666,5.99125,5.994583333333334,5.997916666666667,6.00125,6.004583333333333,6.0079166666666675,6.01125,6.014583333333333,6.017916666666666,6.021249999999999,6.024583333333334,6.027916666666667,6.03125,6.034583333333333,6.037916666666666,6.041250000000001,6.044583333333334,6.047916666666667,6.05125,6.0545833333333325,6.057916666666667,6.06125,6.064583333333333,6.067916666666666,6.07125,6.074583333333334,6.077916666666667,6.08125,6.084583333333333,6.087916666666667,6.0912500000000005,6.0945833333333335,6.097916666666666,6.101249999999999,6.104583333333333,6.107916666666667,6.11125,6.114583333333333,6.117916666666667,6.12125,6.124583333333334,6.127916666666667,6.13125,6.1345833333333335,6.1379166666666665,6.14125,6.144583333333333,6.147916666666666,6.15125,6.154583333333333,6.157916666666667,6.16125,6.164583333333334,6.167916666666667,6.17125,6.1745833333333335,6.1779166666666665,6.18125,6.184583333333333,6.187916666666666,6.19125,6.194583333333333,6.197916666666667,6.20125,6.204583333333333,6.207916666666667,6.211250000000001,6.214583333333334,6.2179166666666665,6.2212499999999995,6.224583333333333,6.227916666666667,6.23125,6.234583333333333,6.237916666666666,6.24125,6.244583333333334,6.247916666666667,6.25125,6.254583333333333,6.2579166666666675,6.26125,6.264583333333333,6.267916666666666,6.271249999999999,6.274583333333334,6.277916666666667,6.28125,6.284583333333333,6.287916666666666,6.291250000000001,6.294583333333334,6.297916666666667,6.30125,6.3045833333333325,6.307916666666667,6.31125,6.314583333333333,6.317916666666666,6.32125,6.324583333333334,6.327916666666667,6.33125,6.334583333333333,6.337916666666667,6.3412500000000005,6.3445833333333335,6.347916666666666,6.351249999999999,6.354583333333333,6.357916666666667,6.36125,6.364583333333333,6.367916666666667,6.37125,6.374583333333334,6.377916666666667,6.38125,6.3845833333333335,6.3879166666666665,6.39125,6.394583333333333,6.397916666666666,6.40125,6.404583333333333,6.407916666666667,6.41125,6.414583333333334,6.417916666666667,6.42125,6.4245833333333335,6.4279166666666665,6.43125,6.434583333333333,6.437916666666666,6.44125,6.444583333333333,6.447916666666667,6.45125,6.454583333333333,6.457916666666667,6.461250000000001,6.464583333333334,6.4679166666666665,6.4712499999999995,6.474583333333333,6.477916666666667,6.48125,6.484583333333333,6.487916666666666,6.49125,6.494583333333334,6.497916666666667,6.50125,6.504583333333333,6.5079166666666675,6.51125,6.514583333333333,6.517916666666666,6.521249999999999,6.524583333333334,6.527916666666667,6.53125,6.534583333333333,6.537916666666666,6.541250000000001,6.544583333333334,6.547916666666667,6.55125,6.5545833333333325,6.557916666666667,6.56125,6.564583333333333,6.567916666666666,6.57125,6.574583333333334,6.577916666666667,6.58125,6.584583333333333,6.587916666666667,6.5912500000000005,6.5945833333333335,6.597916666666666,6.601249999999999,6.604583333333333,6.607916666666667,6.61125,6.614583333333333,6.617916666666667,6.62125,6.624583333333334,6.627916666666667,6.63125,6.6345833333333335,6.6379166666666665,6.64125,6.644583333333333,6.647916666666666,6.65125,6.654583333333333,6.657916666666667,6.66125,6.664583333333334,6.667916666666667,6.67125,6.6745833333333335,6.6779166666666665,6.68125,6.684583333333333,6.687916666666666,6.69125,6.694583333333333,6.697916666666667,6.70125,6.704583333333333,6.707916666666667,6.711250000000001,6.714583333333334,6.7179166666666665,6.7212499999999995,6.724583333333333,6.727916666666667,6.73125,6.734583333333333,6.737916666666666,6.74125,6.744583333333334,6.747916666666667,6.75125,6.754583333333333,6.7579166666666675,6.76125,6.764583333333333,6.767916666666666,6.771249999999999,6.774583333333334,6.777916666666667,6.78125,6.784583333333333,6.787916666666666,6.791250000000001,6.794583333333334,6.797916666666667,6.80125,6.8045833333333325,6.807916666666667,6.81125,6.814583333333333,6.817916666666666,6.82125,6.824583333333334,6.827916666666667,6.83125,6.834583333333333,6.837916666666667,6.8412500000000005,6.8445833333333335,6.847916666666666,6.851249999999999,6.854583333333333,6.857916666666667,6.86125,6.864583333333333,6.867916666666667,6.87125,6.874583333333334,6.877916666666667,6.88125,6.8845833333333335,6.8879166666666665,6.89125,6.894583333333333,6.897916666666666,6.90125,6.904583333333333,6.907916666666667,6.91125,6.914583333333334,6.917916666666667,6.92125,6.9245833333333335,6.9279166666666665,6.93125,6.934583333333333,6.937916666666666,6.94125,6.944583333333333,6.947916666666667,6.95125,6.954583333333333,6.957916666666667,6.961250000000001,6.964583333333334,6.9679166666666665,6.9712499999999995,6.974583333333333,6.977916666666667,6.98125,6.984583333333333,6.987916666666666,6.99125,6.994583333333334,6.997916666666667,7.00125,7.004583333333333,7.0079166666666675,7.01125,7.014583333333333,7.017916666666666,7.021249999999999,7.024583333333334,7.027916666666667,7.03125,7.034583333333333,7.037916666666666,7.041250000000001,7.044583333333334,7.047916666666667,7.05125,7.0545833333333325,7.057916666666667,7.06125,7.064583333333333,7.067916666666666,7.07125,7.074583333333334,7.077916666666667,7.08125,7.084583333333333,7.087916666666667,7.0912500000000005,7.0945833333333335,7.097916666666666,7.101249999999999,7.104583333333333,7.107916666666667,7.11125,7.114583333333333,7.117916666666667,7.12125,7.124583333333334,7.127916666666667,7.13125,7.1345833333333335,7.1379166666666665,7.14125,7.144583333333333,7.147916666666666,7.15125,7.154583333333333,7.157916666666667,7.16125,7.164583333333334,7.167916666666667,7.17125,7.1745833333333335,7.1779166666666665,7.18125,7.184583333333333,7.187916666666666,7.19125,7.194583333333333,7.197916666666667,7.20125,7.204583333333333,7.207916666666667,7.211250000000001,7.214583333333334,7.2179166666666665,7.2212499999999995,7.224583333333333,7.227916666666667,7.23125,7.234583333333333,7.237916666666666,7.24125,7.244583333333334,7.247916666666667,7.25125,7.254583333333333,7.2579166666666675,7.26125,7.264583333333333,7.267916666666666,7.271249999999999,7.274583333333334,7.277916666666667,7.28125,7.284583333333333,7.287916666666666,7.291250000000001,7.294583333333334,7.297916666666667,7.30125,7.3045833333333325,7.307916666666667,7.31125,7.314583333333333,7.317916666666666,7.32125,7.324583333333334,7.327916666666667,7.33125,7.334583333333333,7.337916666666667,7.3412500000000005,7.3445833333333335,7.347916666666666,7.351249999999999,7.354583333333333,7.357916666666667,7.36125,7.364583333333333,7.367916666666667,7.37125,7.374583333333334,7.377916666666667,7.38125,7.3845833333333335,7.3879166666666665,7.39125,7.394583333333333,7.397916666666666,7.40125,7.404583333333333,7.407916666666667,7.41125,7.414583333333334,7.417916666666667,7.42125,7.4245833333333335,7.4279166666666665,7.43125,7.434583333333333,7.437916666666666,7.44125,7.444583333333333,7.447916666666667,7.45125,7.454583333333333,7.457916666666667,7.461250000000001,7.464583333333334,7.4679166666666665,7.4712499999999995,7.474583333333333,7.477916666666667,7.48125,7.484583333333333,7.487916666666666,7.49125,7.494583333333334,7.497916666666667,7.50125,7.504583333333333,7.5079166666666675,7.51125,7.514583333333333,7.517916666666666,7.521249999999999,7.524583333333334,7.527916666666667,7.53125,7.534583333333333,7.537916666666666,7.541250000000001,7.544583333333334,7.547916666666667,7.55125,7.5545833333333325,7.557916666666667,7.56125,7.564583333333333,7.567916666666666,7.57125,7.574583333333334,7.577916666666667,7.58125,7.584583333333333,7.587916666666667,7.5912500000000005,7.5945833333333335,7.597916666666666,7.601249999999999,7.604583333333333,7.607916666666667,7.61125,7.614583333333333,7.617916666666667,7.62125,7.624583333333334,7.627916666666667,7.63125,7.6345833333333335,7.6379166666666665,7.64125,7.644583333333333,7.647916666666666,7.65125,7.654583333333333,7.657916666666667,7.66125,7.664583333333334,7.667916666666667,7.67125,7.6745833333333335,7.6779166666666665,7.68125,7.684583333333333,7.687916666666666,7.69125,7.694583333333333,7.697916666666667,7.70125,7.704583333333333,7.707916666666667,7.711250000000001,7.714583333333334,7.7179166666666665,7.7212499999999995,7.724583333333333,7.727916666666667,7.73125,7.734583333333333,7.737916666666666,7.74125,7.744583333333334,7.747916666666667,7.75125,7.754583333333333,7.7579166666666675,7.76125,7.764583333333333,7.767916666666666,7.771249999999999,7.774583333333334,7.777916666666667,7.78125,7.784583333333333,7.787916666666666,7.791250000000001,7.794583333333334,7.797916666666667,7.80125,7.8045833333333325,7.807916666666667,7.81125,7.814583333333333,7.817916666666666,7.82125,7.824583333333334,7.827916666666667,7.83125,7.834583333333333,7.837916666666667,7.8412500000000005,7.8445833333333335,7.847916666666666,7.851249999999999,7.854583333333333,7.857916666666667,7.86125,7.864583333333333,7.867916666666667,7.87125,7.874583333333334,7.877916666666667,7.88125,7.8845833333333335,7.8879166666666665,7.89125,7.894583333333333,7.897916666666666,7.90125,7.904583333333333,7.907916666666667,7.91125,7.914583333333334,7.917916666666667,7.92125,7.9245833333333335,7.9279166666666665,7.93125,7.934583333333333,7.937916666666666,7.94125,7.944583333333333,7.947916666666667,7.95125,7.954583333333333,7.957916666666667,7.961250000000001,7.964583333333334,7.9679166666666665,7.9712499999999995,7.974583333333333,7.977916666666667,7.98125,7.984583333333333,7.987916666666666,7.99125,7.994583333333334,7.997916666666667,8.00125,8.004583333333333,8.007916666666667,8.01125,8.014583333333333,8.017916666666666,8.02125,8.024583333333334,8.027916666666666,8.03125,8.034583333333334,8.037916666666666,8.04125,8.044583333333334,8.047916666666667,8.05125,8.054583333333333,8.057916666666667,8.06125,8.064583333333333,8.067916666666667,8.07125,8.074583333333333,8.077916666666667,8.08125,8.084583333333333,8.087916666666667,8.09125,8.094583333333334,8.097916666666666,8.10125,8.104583333333332,8.107916666666666,8.11125,8.114583333333334,8.117916666666666,8.12125,8.124583333333334,8.127916666666668,8.13125,8.134583333333333,8.137916666666666,8.141250000000001,8.144583333333333,8.147916666666667,8.15125,8.154583333333333,8.157916666666667,8.16125,8.164583333333333,8.167916666666667,8.171249999999999,8.174583333333334,8.177916666666667,8.18125,8.184583333333332,8.187916666666666,8.19125,8.194583333333334,8.197916666666666,8.20125,8.204583333333334,8.207916666666668,8.21125,8.214583333333334,8.217916666666666,8.22125,8.224583333333333,8.227916666666667,8.23125,8.234583333333333,8.237916666666667,8.24125,8.244583333333333,8.247916666666667,8.25125,8.254583333333333,8.257916666666667,8.26125,8.264583333333333,8.267916666666666,8.27125,8.274583333333334,8.277916666666666,8.28125,8.284583333333334,8.287916666666666,8.29125,8.294583333333334,8.297916666666667,8.30125,8.304583333333333,8.307916666666667,8.31125,8.314583333333333,8.317916666666667,8.32125,8.324583333333333,8.327916666666667,8.33125,8.334583333333333,8.337916666666667,8.34125,8.344583333333334,8.347916666666666,8.35125,8.354583333333332,8.357916666666666,8.36125,8.364583333333334,8.367916666666666,8.37125,8.374583333333334,8.377916666666668,8.38125,8.384583333333333,8.387916666666666,8.391250000000001,8.394583333333333,8.397916666666667,8.40125,8.404583333333333,8.407916666666667,8.41125,8.414583333333333,8.417916666666667,8.421249999999999,8.424583333333334,8.427916666666667,8.43125,8.434583333333332,8.437916666666666,8.44125,8.444583333333334,8.447916666666666,8.45125,8.454583333333334,8.457916666666668,8.46125,8.464583333333334,8.467916666666666,8.47125,8.474583333333333,8.477916666666667,8.48125,8.484583333333333,8.487916666666667,8.49125,8.494583333333333,8.497916666666667,8.50125,8.504583333333333,8.507916666666667,8.51125,8.514583333333333,8.517916666666666,8.52125,8.524583333333334,8.527916666666666,8.53125,8.534583333333334,8.537916666666666,8.54125,8.544583333333332,8.547916666666667,8.551250000000001,8.554583333333333,8.557916666666667,8.56125,8.564583333333333,8.567916666666667,8.57125,8.574583333333333,8.577916666666665,8.58125,8.584583333333335,8.587916666666667,8.59125,8.594583333333333,8.597916666666666,8.60125,8.604583333333332,8.607916666666666,8.61125,8.614583333333334,8.617916666666668,8.62125,8.624583333333334,8.627916666666666,8.63125,8.634583333333333,8.637916666666666,8.641250000000001,8.644583333333333,8.647916666666667,8.651250000000001,8.654583333333333,8.657916666666667,8.661249999999999,8.664583333333333,8.667916666666667,8.671249999999999,8.674583333333334,8.677916666666667,8.68125,8.684583333333334,8.687916666666666,8.69125,8.694583333333332,8.697916666666666,8.70125,8.704583333333334,8.707916666666668,8.71125,8.714583333333334,8.717916666666667,8.72125,8.724583333333333,8.727916666666665,8.73125,8.734583333333335,8.737916666666667,8.74125,8.744583333333333,8.747916666666667,8.75125,8.754583333333333,8.757916666666667,8.761249999999999,8.764583333333333,8.767916666666668,8.77125,8.774583333333334,8.777916666666666,8.78125,8.784583333333334,8.787916666666666,8.79125,8.794583333333332,8.797916666666667,8.801250000000001,8.804583333333333,8.807916666666667,8.81125,8.814583333333333,8.817916666666667,8.82125,8.824583333333333,8.827916666666665,8.83125,8.834583333333335,8.837916666666667,8.84125,8.844583333333333,8.847916666666666,8.85125,8.854583333333332,8.857916666666666,8.86125,8.864583333333334,8.867916666666668,8.87125,8.874583333333334,8.877916666666666,8.88125,8.884583333333333,8.887916666666666,8.891250000000001,8.894583333333333,8.897916666666667,8.901250000000001,8.904583333333333,8.907916666666667,8.911249999999999,8.914583333333333,8.917916666666667,8.921249999999999,8.924583333333334,8.927916666666667,8.93125,8.934583333333334,8.937916666666666,8.94125,8.944583333333332,8.947916666666666,8.95125,8.954583333333334,8.957916666666668,8.96125,8.964583333333334,8.967916666666667,8.97125,8.974583333333333,8.977916666666665,8.98125,8.984583333333335,8.987916666666667,8.99125,8.994583333333333,8.997916666666667,9.00125,9.004583333333333,9.007916666666667,9.011249999999999,9.014583333333333,9.017916666666668,9.02125,9.024583333333334,9.027916666666666,9.03125,9.034583333333334,9.037916666666666,9.04125,9.044583333333332,9.047916666666667,9.051250000000001,9.054583333333333,9.057916666666667,9.06125,9.064583333333333,9.067916666666667,9.07125,9.074583333333333,9.077916666666665,9.08125,9.084583333333335,9.087916666666667,9.09125,9.094583333333333,9.097916666666666,9.10125,9.104583333333332,9.107916666666666,9.11125,9.114583333333334,9.117916666666668,9.12125,9.124583333333334,9.127916666666666,9.13125,9.134583333333333,9.137916666666666,9.141250000000001,9.144583333333333,9.147916666666667,9.151250000000001,9.154583333333333,9.157916666666667,9.161249999999999,9.164583333333333,9.167916666666667,9.171249999999999,9.174583333333334,9.177916666666667,9.18125,9.184583333333334,9.187916666666666,9.19125,9.194583333333332,9.197916666666666,9.20125,9.204583333333334,9.207916666666668,9.21125,9.214583333333334,9.217916666666667,9.22125,9.224583333333333,9.227916666666665,9.23125,9.234583333333335,9.237916666666667,9.24125,9.244583333333333,9.247916666666667,9.25125,9.254583333333333,9.257916666666667,9.261249999999999,9.264583333333333,9.267916666666668,9.27125,9.274583333333334,9.277916666666666,9.28125,9.284583333333334,9.287916666666666,9.29125,9.294583333333332,9.297916666666667,9.301250000000001,9.304583333333333,9.307916666666667,9.31125,9.314583333333333,9.317916666666667,9.32125,9.324583333333333,9.327916666666665,9.33125,9.334583333333335,9.337916666666667,9.34125,9.344583333333333,9.347916666666666,9.35125,9.354583333333332,9.357916666666666,9.36125,9.364583333333334,9.367916666666668,9.37125,9.374583333333334,9.377916666666666,9.38125,9.384583333333333,9.387916666666666,9.391250000000001,9.394583333333333,9.397916666666667,9.401250000000001,9.404583333333333,9.407916666666667,9.411249999999999,9.414583333333333,9.417916666666667,9.421249999999999,9.424583333333334,9.427916666666667,9.43125,9.434583333333334,9.437916666666666,9.44125,9.444583333333332,9.447916666666666,9.45125,9.454583333333334,9.457916666666668,9.46125,9.464583333333334,9.467916666666667,9.47125,9.474583333333333,9.477916666666665,9.48125,9.484583333333335,9.487916666666667,9.49125,9.494583333333333,9.497916666666667,9.50125,9.504583333333333,9.507916666666667,9.511249999999999,9.514583333333333,9.517916666666668,9.52125,9.524583333333334,9.527916666666666,9.53125,9.534583333333334,9.537916666666666,9.54125,9.544583333333332,9.547916666666667,9.551250000000001,9.554583333333333,9.557916666666667,9.56125,9.564583333333333,9.567916666666667,9.57125,9.574583333333333,9.577916666666665,9.58125,9.584583333333335,9.587916666666667,9.59125,9.594583333333333,9.597916666666666,9.60125,9.604583333333332,9.607916666666666,9.61125,9.614583333333334,9.617916666666668,9.62125,9.624583333333334,9.627916666666666,9.63125,9.634583333333333,9.637916666666666,9.641250000000001,9.644583333333333,9.647916666666667,9.651250000000001,9.654583333333333,9.657916666666667,9.661249999999999,9.664583333333333,9.667916666666667,9.671249999999999,9.674583333333334,9.677916666666667,9.68125,9.684583333333334,9.687916666666666,9.69125,9.694583333333332,9.697916666666666,9.70125,9.704583333333334,9.707916666666668,9.71125,9.714583333333334,9.717916666666667,9.72125,9.724583333333333,9.727916666666665,9.73125,9.734583333333335,9.737916666666667,9.74125,9.744583333333333,9.747916666666667,9.75125,9.754583333333333,9.757916666666667,9.761249999999999,9.764583333333333,9.767916666666668,9.77125,9.774583333333334,9.777916666666666,9.78125,9.784583333333334,9.787916666666666,9.79125,9.794583333333332,9.797916666666667,9.801250000000001,9.804583333333333,9.807916666666667,9.81125,9.814583333333333,9.817916666666667,9.82125,9.824583333333333,9.827916666666665,9.83125,9.834583333333335,9.837916666666667,9.84125,9.844583333333333,9.847916666666666,9.85125,9.854583333333332,9.857916666666666,9.86125,9.864583333333334,9.867916666666668,9.87125,9.874583333333334,9.877916666666666,9.88125,9.884583333333333,9.887916666666666,9.891250000000001,9.894583333333333,9.897916666666667,9.901250000000001,9.904583333333333,9.907916666666667,9.911249999999999,9.914583333333333,9.917916666666667,9.921249999999999,9.924583333333334,9.927916666666667,9.93125,9.934583333333334,9.937916666666666,9.94125,9.944583333333332,9.947916666666666,9.95125,9.954583333333334,9.957916666666668,9.96125,9.964583333333334,9.967916666666667,9.97125,9.974583333333333,9.977916666666665,9.98125,9.984583333333335,9.987916666666667,9.99125,9.994583333333333,9.997916666666667,10.00125,10.004583333333333,10.007916666666667,10.011249999999999,10.014583333333333,10.017916666666668,10.02125,10.024583333333334,10.027916666666666,10.03125,10.034583333333334,10.037916666666666,10.04125,10.044583333333332,10.047916666666667,10.051250000000001,10.054583333333333,10.057916666666667,10.06125,10.064583333333333,10.067916666666667,10.07125,10.074583333333333,10.077916666666665,10.08125,10.084583333333335,10.087916666666667,10.09125,10.094583333333333,10.097916666666666,10.10125,10.104583333333332,10.107916666666666,10.11125,10.114583333333334,10.117916666666668,10.12125,10.124583333333334,10.127916666666666,10.13125,10.134583333333333,10.137916666666666,10.141250000000001,10.144583333333333,10.147916666666667,10.151250000000001,10.154583333333333,10.157916666666667,10.161249999999999,10.164583333333333,10.167916666666667,10.171249999999999,10.174583333333334,10.177916666666667,10.18125,10.184583333333334,10.187916666666666,10.19125,10.194583333333332,10.197916666666666,10.20125,10.204583333333334,10.207916666666668,10.21125,10.214583333333334,10.217916666666667,10.22125,10.224583333333333,10.227916666666665,10.23125,10.234583333333335,10.237916666666667,10.24125,10.244583333333333,10.247916666666667,10.25125,10.254583333333333,10.257916666666667,10.261249999999999,10.264583333333333,10.267916666666668,10.27125,10.274583333333334,10.277916666666666,10.28125,10.284583333333334,10.287916666666666,10.29125,10.294583333333332,10.297916666666667,10.301250000000001,10.304583333333333,10.307916666666667,10.31125,10.314583333333333,10.317916666666667,10.32125,10.324583333333333,10.327916666666665,10.33125,10.334583333333335,10.337916666666667,10.34125,10.344583333333333,10.347916666666666,10.35125,10.354583333333332,10.357916666666666,10.36125,10.364583333333334,10.367916666666668,10.37125,10.374583333333334,10.377916666666666,10.38125,10.384583333333333,10.387916666666666,10.391250000000001,10.394583333333333,10.397916666666667,10.401250000000001,10.404583333333333,10.407916666666667,10.411249999999999,10.414583333333333,10.417916666666667,10.421249999999999,10.424583333333334,10.427916666666667,10.43125,10.434583333333334,10.437916666666666,10.44125,10.444583333333332,10.447916666666666,10.45125,10.454583333333334,10.457916666666668,10.46125,10.464583333333334,10.467916666666667,10.47125,10.474583333333333,10.477916666666665,10.48125,10.484583333333335,10.487916666666667,10.49125,10.494583333333333,10.497916666666667,10.50125,10.504583333333333,10.507916666666667,10.511249999999999,10.514583333333333,10.517916666666668,10.52125,10.524583333333334,10.527916666666666,10.53125,10.534583333333334,10.537916666666666,10.54125,10.544583333333332,10.547916666666667,10.551250000000001,10.554583333333333,10.557916666666667,10.56125,10.564583333333333,10.567916666666667,10.57125,10.574583333333333,10.577916666666665,10.58125,10.584583333333335,10.587916666666667,10.59125,10.594583333333333,10.597916666666666,10.60125,10.604583333333332,10.607916666666666,10.61125,10.614583333333334,10.617916666666668,10.62125,10.624583333333334,10.627916666666666,10.63125,10.634583333333333,10.637916666666666,10.641250000000001,10.644583333333333,10.647916666666667,10.651250000000001,10.654583333333333,10.657916666666667,10.661249999999999,10.664583333333333,10.667916666666667,10.671249999999999,10.674583333333334,10.677916666666667,10.68125,10.684583333333334,10.687916666666666,10.69125,10.694583333333332,10.697916666666666,10.70125,10.704583333333334,10.707916666666668,10.71125,10.714583333333334,10.717916666666667,10.72125,10.724583333333333,10.727916666666665,10.73125,10.734583333333335,10.737916666666667,10.74125,10.744583333333333,10.747916666666667,10.75125,10.754583333333333,10.757916666666667,10.761249999999999,10.764583333333333,10.767916666666668,10.77125,10.774583333333334,10.777916666666666,10.78125,10.784583333333334,10.787916666666666,10.79125,10.794583333333332,10.797916666666667,10.801250000000001,10.804583333333333,10.807916666666667,10.81125,10.814583333333333,10.817916666666667,10.82125,10.824583333333333,10.827916666666665,10.83125,10.834583333333335,10.837916666666667,10.84125,10.844583333333333,10.847916666666666,10.85125,10.854583333333332,10.857916666666666,10.86125,10.864583333333334,10.867916666666668,10.87125,10.874583333333334,10.877916666666666,10.88125,10.884583333333333,10.887916666666666,10.891250000000001,10.894583333333333,10.897916666666667,10.901250000000001,10.904583333333333,10.907916666666667,10.911249999999999,10.914583333333333,10.917916666666667,10.921249999999999,10.924583333333334,10.927916666666667,10.93125,10.934583333333334,10.937916666666666,10.94125,10.944583333333332,10.947916666666666,10.95125,10.954583333333334,10.957916666666668,10.96125,10.964583333333334,10.967916666666667,10.97125,10.974583333333333,10.977916666666665,10.98125,10.984583333333335,10.987916666666667,10.99125,10.994583333333333,10.997916666666667,11.00125,11.004583333333333,11.007916666666667,11.011249999999999,11.014583333333333,11.017916666666668,11.02125,11.024583333333334,11.027916666666666,11.03125,11.034583333333334,11.037916666666666,11.04125,11.044583333333332,11.047916666666667,11.051250000000001,11.054583333333333,11.057916666666667,11.06125,11.064583333333333,11.067916666666667,11.07125,11.074583333333333,11.077916666666665,11.08125,11.084583333333335,11.087916666666667,11.09125,11.094583333333333,11.097916666666666,11.10125,11.104583333333332,11.107916666666666,11.11125,11.114583333333334,11.117916666666668,11.12125,11.124583333333334,11.127916666666666,11.13125,11.134583333333333,11.137916666666666,11.141250000000001,11.144583333333333,11.147916666666667,11.151250000000001,11.154583333333333,11.157916666666667,11.161249999999999,11.164583333333333,11.167916666666667,11.171249999999999,11.174583333333334,11.177916666666667,11.18125,11.184583333333334,11.187916666666666,11.19125,11.194583333333332,11.197916666666666,11.20125,11.204583333333334,11.207916666666668,11.21125,11.214583333333334,11.217916666666667,11.22125,11.224583333333333,11.227916666666665,11.23125,11.234583333333335,11.237916666666667,11.24125,11.244583333333333,11.247916666666667,11.25125,11.254583333333333,11.257916666666667,11.261249999999999,11.264583333333333,11.267916666666668,11.27125,11.274583333333334,11.277916666666666,11.28125,11.284583333333334,11.287916666666666,11.29125,11.294583333333332,11.297916666666667,11.301250000000001,11.304583333333333,11.307916666666667,11.31125,11.314583333333333,11.317916666666667,11.32125,11.324583333333333,11.327916666666665,11.33125,11.334583333333335,11.337916666666667,11.34125,11.344583333333333,11.347916666666666,11.35125,11.354583333333332,11.357916666666666,11.36125,11.364583333333334,11.367916666666668,11.37125,11.374583333333334,11.377916666666666,11.38125,11.384583333333333,11.387916666666666,11.391250000000001,11.394583333333333,11.397916666666667,11.401250000000001,11.404583333333333,11.407916666666667,11.411249999999999,11.414583333333333,11.417916666666667,11.421249999999999,11.424583333333334,11.427916666666667,11.43125,11.434583333333334,11.437916666666666,11.44125,11.444583333333332,11.447916666666666,11.45125,11.454583333333334,11.457916666666668,11.46125,11.464583333333334,11.467916666666667,11.47125,11.474583333333333,11.477916666666665,11.48125,11.484583333333335,11.487916666666667,11.49125,11.494583333333333,11.497916666666667,11.50125,11.504583333333333,11.507916666666667,11.511249999999999,11.514583333333333,11.517916666666668,11.52125,11.524583333333334,11.527916666666666,11.53125,11.534583333333334,11.537916666666666,11.54125,11.544583333333332,11.547916666666667,11.551250000000001,11.554583333333333,11.557916666666667,11.56125,11.564583333333333,11.567916666666667,11.57125,11.574583333333333,11.577916666666665,11.58125,11.584583333333335,11.587916666666667,11.59125,11.594583333333333,11.597916666666666,11.60125,11.604583333333332,11.607916666666666,11.61125,11.614583333333334,11.617916666666668,11.62125,11.624583333333334,11.627916666666666,11.63125,11.634583333333333,11.637916666666666,11.641250000000001,11.644583333333333,11.647916666666667,11.651250000000001,11.654583333333333,11.657916666666667,11.661249999999999,11.664583333333333,11.667916666666667,11.671249999999999,11.674583333333334,11.677916666666667,11.68125,11.684583333333334,11.687916666666666,11.69125,11.694583333333332,11.697916666666666,11.70125,11.704583333333334,11.707916666666668,11.71125,11.714583333333334,11.717916666666667,11.72125,11.724583333333333,11.727916666666665,11.73125,11.734583333333335,11.737916666666667,11.74125,11.744583333333333,11.747916666666667,11.75125,11.754583333333333,11.757916666666667,11.761249999999999,11.764583333333333,11.767916666666668,11.77125,11.774583333333334,11.777916666666666,11.78125,11.784583333333334,11.787916666666666,11.79125,11.794583333333332,11.797916666666667,11.801250000000001,11.804583333333333,11.807916666666667,11.81125,11.814583333333333,11.817916666666667,11.82125,11.824583333333333,11.827916666666665,11.83125,11.834583333333335,11.837916666666667,11.84125,11.844583333333333,11.847916666666666,11.85125,11.854583333333332,11.857916666666666,11.86125,11.864583333333334,11.867916666666668,11.87125,11.874583333333334,11.877916666666666,11.88125,11.884583333333333,11.887916666666666,11.891250000000001,11.894583333333333,11.897916666666667,11.901250000000001,11.904583333333333,11.907916666666667,11.911249999999999,11.914583333333333,11.917916666666667,11.921249999999999,11.924583333333334,11.927916666666667,11.93125,11.934583333333334,11.937916666666666,11.94125,11.944583333333332,11.947916666666666,11.95125,11.954583333333334,11.957916666666668,11.96125,11.964583333333334,11.967916666666667,11.97125,11.974583333333333,11.977916666666665,11.98125,11.984583333333335,11.987916666666667,11.99125,11.994583333333333,11.997916666666667,12.00125,12.004583333333333,12.007916666666667,12.011249999999999,12.014583333333333,12.017916666666668,12.02125,12.024583333333334,12.027916666666666,12.03125,12.034583333333334,12.037916666666666,12.04125,12.044583333333332,12.047916666666667,12.051250000000001,12.054583333333333,12.057916666666667,12.06125,12.064583333333333,12.067916666666667,12.07125,12.074583333333333,12.077916666666665,12.08125,12.084583333333335,12.087916666666667,12.09125,12.094583333333333,12.097916666666666,12.10125,12.104583333333332,12.107916666666666,12.11125,12.114583333333334,12.117916666666668,12.12125,12.124583333333334,12.127916666666666,12.13125,12.134583333333333,12.137916666666666,12.141250000000001,12.144583333333333,12.147916666666667,12.151250000000001,12.154583333333333,12.157916666666667,12.161249999999999,12.164583333333333,12.167916666666667,12.171249999999999,12.174583333333334,12.177916666666667,12.18125,12.184583333333334,12.187916666666666,12.19125,12.194583333333332,12.197916666666666,12.20125,12.204583333333334,12.207916666666668,12.21125,12.214583333333334,12.217916666666667,12.22125,12.224583333333333,12.227916666666665,12.23125,12.234583333333335,12.237916666666667,12.24125,12.244583333333333,12.247916666666667,12.25125,12.254583333333333,12.257916666666667,12.261249999999999,12.264583333333333,12.267916666666668,12.27125,12.274583333333334,12.277916666666666,12.28125,12.284583333333334,12.287916666666666,12.29125,12.294583333333332,12.297916666666667,12.301250000000001,12.304583333333333,12.307916666666667,12.31125,12.314583333333333,12.317916666666667,12.32125,12.324583333333333,12.327916666666665,12.33125,12.334583333333335,12.337916666666667,12.34125,12.344583333333333,12.347916666666666,12.35125,12.354583333333332,12.357916666666666,12.36125,12.364583333333334,12.367916666666668,12.37125,12.374583333333334,12.377916666666666,12.38125,12.384583333333333,12.387916666666666,12.391250000000001,12.394583333333333,12.397916666666667,12.401250000000001,12.404583333333333,12.407916666666667,12.411249999999999,12.414583333333333,12.417916666666667,12.421249999999999,12.424583333333334,12.427916666666667,12.43125,12.434583333333334,12.437916666666666,12.44125,12.444583333333332,12.447916666666666,12.45125,12.454583333333334,12.457916666666668,12.46125,12.464583333333334,12.467916666666667,12.47125,12.474583333333333,12.477916666666665,12.48125,12.484583333333335,12.487916666666667,12.49125,12.494583333333333,12.497916666666667,12.50125,12.504583333333333,12.507916666666667,12.511249999999999,12.514583333333333,12.517916666666668,12.52125,12.524583333333334,12.527916666666666,12.53125,12.534583333333334,12.537916666666666,12.54125,12.544583333333332,12.547916666666667,12.551250000000001,12.554583333333333,12.557916666666667,12.56125,12.564583333333333,12.567916666666667,12.57125,12.574583333333333,12.577916666666665,12.58125,12.584583333333335,12.587916666666667,12.59125,12.594583333333333,12.597916666666666,12.60125,12.604583333333332,12.607916666666666,12.61125,12.614583333333334,12.617916666666668,12.62125,12.624583333333334,12.627916666666666,12.63125,12.634583333333333,12.637916666666666,12.641250000000001,12.644583333333333,12.647916666666667,12.651250000000001,12.654583333333333,12.657916666666667,12.661249999999999,12.664583333333333,12.667916666666667,12.671249999999999,12.674583333333334,12.677916666666667,12.68125,12.684583333333334,12.687916666666666,12.69125,12.694583333333332,12.697916666666666,12.70125,12.704583333333334,12.707916666666668,12.71125,12.714583333333334,12.717916666666667,12.72125,12.724583333333333,12.727916666666665,12.73125,12.734583333333335,12.737916666666667,12.74125,12.744583333333333,12.747916666666667,12.75125,12.754583333333333,12.757916666666667,12.761249999999999,12.764583333333333,12.767916666666668,12.77125,12.774583333333334,12.777916666666666,12.78125,12.784583333333334,12.787916666666666,12.79125,12.794583333333332,12.797916666666667,12.801250000000001,12.804583333333333,12.807916666666667,12.81125,12.814583333333333,12.817916666666667,12.82125,12.824583333333333,12.827916666666665,12.83125,12.834583333333335,12.837916666666667,12.84125,12.844583333333333,12.847916666666666,12.85125,12.854583333333332,12.857916666666666,12.86125,12.864583333333334,12.867916666666668,12.87125,12.874583333333334,12.877916666666666,12.88125,12.884583333333333,12.887916666666666,12.891250000000001,12.894583333333333,12.897916666666667,12.901250000000001,12.904583333333333,12.907916666666667,12.911249999999999,12.914583333333333,12.917916666666667,12.921249999999999,12.924583333333334,12.927916666666667,12.93125,12.934583333333334,12.937916666666666,12.94125,12.944583333333332,12.947916666666666,12.95125,12.954583333333334,12.957916666666668,12.96125,12.964583333333334,12.967916666666667,12.97125,12.974583333333333,12.977916666666665,12.98125,12.984583333333335,12.987916666666667,12.99125,12.994583333333333,12.997916666666667,13.00125,13.004583333333333,13.007916666666667,13.011249999999999,13.014583333333333,13.017916666666668,13.02125,13.024583333333334,13.027916666666666,13.03125,13.034583333333334,13.037916666666666,13.04125,13.044583333333332,13.047916666666667,13.051250000000001,13.054583333333333,13.057916666666667,13.06125,13.064583333333333,13.067916666666667,13.07125,13.074583333333333,13.077916666666665,13.08125,13.084583333333335,13.087916666666667,13.09125,13.094583333333333,13.097916666666666,13.10125,13.104583333333332,13.107916666666666,13.11125,13.114583333333334,13.117916666666668,13.12125,13.124583333333334,13.127916666666666,13.13125,13.134583333333333,13.137916666666666,13.141250000000001,13.144583333333333,13.147916666666667,13.151250000000001,13.154583333333333,13.157916666666667,13.161249999999999,13.164583333333333,13.167916666666667,13.171249999999999,13.174583333333334,13.177916666666667,13.18125,13.184583333333334,13.187916666666666,13.19125,13.194583333333332,13.197916666666666,13.20125,13.204583333333334,13.207916666666668,13.21125,13.214583333333334,13.217916666666667,13.22125,13.224583333333333,13.227916666666665,13.23125,13.234583333333335,13.237916666666667,13.24125,13.244583333333333,13.247916666666667,13.25125,13.254583333333333,13.257916666666667,13.261249999999999,13.264583333333333,13.267916666666668,13.27125,13.274583333333334,13.277916666666666,13.28125,13.284583333333334,13.287916666666666,13.29125,13.294583333333332,13.297916666666667,13.301250000000001,13.304583333333333,13.307916666666667,13.31125,13.314583333333333,13.317916666666667,13.32125,13.324583333333333,13.327916666666665,13.33125,13.334583333333335,13.337916666666667,13.34125,13.344583333333333,13.347916666666666,13.35125,13.354583333333332,13.357916666666666,13.36125,13.364583333333334,13.367916666666668,13.37125,13.374583333333334,13.377916666666666,13.38125,13.384583333333333,13.387916666666666,13.391250000000001,13.394583333333333,13.397916666666667,13.401250000000001,13.404583333333333,13.407916666666667,13.411249999999999,13.414583333333333,13.417916666666667,13.421249999999999,13.424583333333334,13.427916666666667,13.43125,13.434583333333334,13.437916666666666,13.44125,13.444583333333332,13.447916666666666,13.45125,13.454583333333334,13.457916666666668,13.46125,13.464583333333334,13.467916666666667,13.47125,13.474583333333333,13.477916666666665,13.48125,13.484583333333335,13.487916666666667,13.49125,13.494583333333333,13.497916666666667,13.50125,13.504583333333333,13.507916666666667,13.511249999999999,13.514583333333333,13.517916666666668,13.52125,13.524583333333334,13.527916666666666,13.53125,13.534583333333334,13.537916666666666,13.54125,13.544583333333332,13.547916666666667,13.551250000000001,13.554583333333333,13.557916666666667,13.56125,13.564583333333333,13.567916666666667,13.57125,13.574583333333333,13.577916666666665,13.58125,13.584583333333335,13.587916666666667,13.59125,13.594583333333333,13.597916666666666,13.60125,13.604583333333332,13.607916666666666,13.61125,13.614583333333334,13.617916666666668,13.62125,13.624583333333334,13.627916666666666,13.63125,13.634583333333333,13.637916666666666,13.641250000000001,13.644583333333333,13.647916666666667,13.651250000000001,13.654583333333333,13.657916666666667,13.661249999999999,13.664583333333333,13.667916666666667,13.671249999999999,13.674583333333334,13.677916666666667,13.68125,13.684583333333334,13.687916666666666,13.69125,13.694583333333332,13.697916666666666,13.70125,13.704583333333334,13.707916666666668,13.71125,13.714583333333334,13.717916666666667,13.72125,13.724583333333333,13.727916666666665,13.73125,13.734583333333335,13.737916666666667,13.74125,13.744583333333333,13.747916666666667,13.75125,13.754583333333333,13.757916666666667,13.761249999999999,13.764583333333333,13.767916666666668,13.77125,13.774583333333334,13.777916666666666,13.78125,13.784583333333334,13.787916666666666,13.79125,13.794583333333332,13.797916666666667,13.801250000000001,13.804583333333333,13.807916666666667,13.81125,13.814583333333333,13.817916666666667,13.82125,13.824583333333333,13.827916666666665,13.83125,13.834583333333335,13.837916666666667,13.84125,13.844583333333333,13.847916666666666,13.85125,13.854583333333332,13.857916666666666,13.86125,13.864583333333334,13.867916666666668,13.87125,13.874583333333334,13.877916666666666,13.88125,13.884583333333333,13.887916666666666,13.891250000000001,13.894583333333333,13.897916666666667,13.901250000000001,13.904583333333333,13.907916666666667,13.911249999999999,13.914583333333333,13.917916666666667,13.921249999999999,13.924583333333334,13.927916666666667,13.93125,13.934583333333334,13.937916666666666,13.94125,13.944583333333332,13.947916666666666,13.95125,13.954583333333334,13.957916666666668,13.96125,13.964583333333334,13.967916666666667,13.97125,13.974583333333333,13.977916666666665,13.98125,13.984583333333335,13.987916666666667,13.99125,13.994583333333333,13.997916666666667,14.00125,14.004583333333333,14.007916666666667,14.011249999999999,14.014583333333333,14.017916666666668,14.02125,14.024583333333334,14.027916666666666,14.03125,14.034583333333334,14.037916666666666,14.04125,14.044583333333332,14.047916666666667,14.051250000000001,14.054583333333333,14.057916666666667,14.06125,14.064583333333333,14.067916666666667,14.07125,14.074583333333333,14.077916666666665,14.08125,14.084583333333335,14.087916666666667,14.09125,14.094583333333333,14.097916666666666,14.10125,14.104583333333332,14.107916666666666,14.11125,14.114583333333334,14.117916666666668,14.12125,14.124583333333334,14.127916666666666,14.13125,14.134583333333333,14.137916666666666,14.141250000000001,14.144583333333333,14.147916666666667,14.151250000000001,14.154583333333333,14.157916666666667,14.161249999999999,14.164583333333333,14.167916666666667,14.171249999999999,14.174583333333334,14.177916666666667,14.18125,14.184583333333334,14.187916666666666,14.19125,14.194583333333332,14.197916666666666,14.20125,14.204583333333334,14.207916666666668,14.21125,14.214583333333334,14.217916666666667,14.22125,14.224583333333333,14.227916666666665,14.23125,14.234583333333335,14.237916666666667,14.24125,14.244583333333333,14.247916666666667,14.25125,14.254583333333333,14.257916666666667,14.261249999999999,14.264583333333333,14.267916666666668,14.27125,14.274583333333334,14.277916666666666,14.28125,14.284583333333334,14.287916666666666,14.29125,14.294583333333332,14.297916666666667,14.301250000000001,14.304583333333333,14.307916666666667,14.31125,14.314583333333333,14.317916666666667,14.32125,14.324583333333333,14.327916666666665,14.33125,14.334583333333335,14.337916666666667,14.34125,14.344583333333333,14.347916666666666,14.35125,14.354583333333332,14.357916666666666,14.36125,14.364583333333334,14.367916666666668,14.37125,14.374583333333334,14.377916666666666,14.38125,14.384583333333333,14.387916666666666,14.391250000000001,14.394583333333333,14.397916666666667,14.401250000000001,14.404583333333333,14.407916666666667,14.411249999999999,14.414583333333333,14.417916666666667,14.421249999999999,14.424583333333334,14.427916666666667,14.43125,14.434583333333334,14.437916666666666,14.44125,14.444583333333332,14.447916666666666,14.45125,14.454583333333334,14.457916666666668,14.46125,14.464583333333334,14.467916666666667,14.47125,14.474583333333333,14.477916666666665,14.48125,14.484583333333335,14.487916666666667,14.49125,14.494583333333333,14.497916666666667,14.50125,14.504583333333333,14.507916666666667,14.511249999999999,14.514583333333333,14.517916666666668,14.52125,14.524583333333334,14.527916666666666,14.53125,14.534583333333334,14.537916666666666,14.54125,14.544583333333332,14.547916666666667,14.551250000000001,14.554583333333333,14.557916666666667,14.56125,14.564583333333333,14.567916666666667,14.57125,14.574583333333333,14.577916666666665,14.58125,14.584583333333335,14.587916666666667,14.59125,14.594583333333333,14.597916666666666,14.60125,14.604583333333332,14.607916666666666,14.61125,14.614583333333334,14.617916666666668,14.62125,14.624583333333334,14.627916666666666,14.63125,14.634583333333333,14.637916666666666,14.641250000000001,14.644583333333333,14.647916666666667,14.651250000000001,14.654583333333333,14.657916666666667,14.661249999999999,14.664583333333333,14.667916666666667,14.671249999999999,14.674583333333334,14.677916666666667,14.68125,14.684583333333334,14.687916666666666,14.69125,14.694583333333332,14.697916666666666,14.70125,14.704583333333334,14.707916666666668,14.71125,14.714583333333334,14.717916666666667,14.72125,14.724583333333333,14.727916666666665,14.73125,14.734583333333335,14.737916666666667,14.74125,14.744583333333333,14.747916666666667,14.75125,14.754583333333333,14.757916666666667,14.761249999999999,14.764583333333333,14.767916666666668,14.77125,14.774583333333334,14.777916666666666,14.78125,14.784583333333334,14.787916666666666,14.79125,14.794583333333332,14.797916666666667,14.801250000000001,14.804583333333333,14.807916666666667,14.81125,14.814583333333333,14.817916666666667,14.82125,14.824583333333333,14.827916666666665,14.83125,14.834583333333335,14.837916666666667,14.84125,14.844583333333333,14.847916666666666,14.85125,14.854583333333332,14.857916666666666,14.86125,14.864583333333334,14.867916666666668,14.87125,14.874583333333334,14.877916666666666,14.88125,14.884583333333333,14.887916666666666,14.891250000000001,14.894583333333333,14.897916666666667,14.901250000000001,14.904583333333333,14.907916666666667,14.911249999999999,14.914583333333333,14.917916666666667,14.921249999999999,14.924583333333334,14.927916666666667,14.93125,14.934583333333334,14.937916666666666,14.94125,14.944583333333332,14.947916666666666,14.95125,14.954583333333334,14.957916666666668,14.96125,14.964583333333334,14.967916666666667,14.97125,14.974583333333333,14.977916666666665,14.98125,14.984583333333335,14.987916666666667,14.99125,14.994583333333333,14.997916666666667,15.00125,15.004583333333333,15.007916666666667,15.011249999999999,15.014583333333333,15.017916666666668,15.02125,15.024583333333334,15.027916666666666,15.03125,15.034583333333334,15.037916666666666,15.04125,15.044583333333332,15.047916666666667,15.051250000000001,15.054583333333333,15.057916666666667,15.06125,15.064583333333333,15.067916666666667,15.07125,15.074583333333333,15.077916666666665,15.08125,15.084583333333335,15.087916666666667,15.09125,15.094583333333333,15.097916666666666,15.10125,15.104583333333332,15.107916666666666,15.11125,15.114583333333334,15.117916666666668,15.12125,15.124583333333334,15.127916666666666,15.13125,15.134583333333333,15.137916666666666,15.141250000000001,15.144583333333333,15.147916666666667,15.151250000000001,15.154583333333333,15.157916666666667,15.161249999999999,15.164583333333333,15.167916666666667,15.171249999999999,15.174583333333334,15.177916666666667,15.18125,15.184583333333334,15.187916666666666,15.19125,15.194583333333332,15.197916666666666,15.20125,15.204583333333334,15.207916666666668,15.21125,15.214583333333334,15.217916666666667,15.22125,15.224583333333333,15.227916666666665,15.23125,15.234583333333335,15.237916666666667,15.24125,15.244583333333333,15.247916666666667,15.25125,15.254583333333333,15.257916666666667,15.261249999999999,15.264583333333333,15.267916666666668,15.27125,15.274583333333334,15.277916666666666,15.28125,15.284583333333334,15.287916666666666,15.29125,15.294583333333332,15.297916666666667,15.301250000000001,15.304583333333333,15.307916666666667,15.31125,15.314583333333333,15.317916666666667,15.32125,15.324583333333333,15.327916666666665,15.33125,15.334583333333335,15.337916666666667,15.34125,15.344583333333333,15.347916666666666,15.35125,15.354583333333332,15.357916666666666,15.36125,15.364583333333334,15.367916666666668,15.37125,15.374583333333334,15.377916666666666,15.38125,15.384583333333333,15.387916666666666,15.391250000000001,15.394583333333333,15.397916666666667,15.401250000000001,15.404583333333333,15.407916666666667,15.411249999999999,15.414583333333333,15.417916666666667,15.421249999999999,15.424583333333334,15.427916666666667,15.43125,15.434583333333334,15.437916666666666,15.44125,15.444583333333332,15.447916666666666,15.45125,15.454583333333334,15.457916666666668,15.46125,15.464583333333334,15.467916666666667,15.47125,15.474583333333333,15.477916666666665,15.48125,15.484583333333335,15.487916666666667,15.49125,15.494583333333333,15.497916666666667,15.50125,15.504583333333333,15.507916666666667,15.511249999999999,15.514583333333333,15.517916666666668,15.52125,15.524583333333334,15.527916666666666,15.53125,15.534583333333334,15.537916666666666,15.54125,15.544583333333332,15.547916666666667,15.551250000000001,15.554583333333333,15.557916666666667,15.56125,15.564583333333333,15.567916666666667,15.57125,15.574583333333333,15.577916666666665,15.58125,15.584583333333335,15.587916666666667,15.59125,15.594583333333333,15.597916666666666,15.60125,15.604583333333332,15.607916666666666,15.61125,15.614583333333334,15.617916666666668,15.62125,15.624583333333334,15.627916666666666,15.63125,15.634583333333333,15.637916666666666,15.641250000000001,15.644583333333333,15.647916666666667,15.651250000000001,15.654583333333333,15.657916666666667,15.661249999999999,15.664583333333333,15.667916666666667,15.671249999999999,15.674583333333334,15.677916666666667,15.68125,15.684583333333334,15.687916666666666,15.69125,15.694583333333332,15.697916666666666,15.70125,15.704583333333334,15.707916666666668,15.71125,15.714583333333334,15.717916666666667,15.72125,15.724583333333333,15.727916666666665,15.73125,15.734583333333335,15.737916666666667,15.74125,15.744583333333333,15.747916666666667,15.75125,15.754583333333333,15.757916666666667,15.761249999999999,15.764583333333333,15.767916666666668,15.77125,15.774583333333334,15.777916666666666,15.78125,15.784583333333334,15.787916666666666,15.79125,15.794583333333332,15.797916666666667,15.801250000000001,15.804583333333333,15.807916666666667,15.81125,15.814583333333333,15.817916666666667,15.82125,15.824583333333333,15.827916666666665,15.83125,15.834583333333335,15.837916666666667,15.84125,15.844583333333333,15.847916666666666,15.85125,15.854583333333332,15.857916666666666,15.86125,15.864583333333334,15.867916666666668,15.87125,15.874583333333334,15.877916666666666,15.88125,15.884583333333333,15.887916666666666,15.891250000000001,15.894583333333333,15.897916666666667,15.901250000000001,15.904583333333333,15.907916666666667,15.911249999999999,15.914583333333333,15.917916666666667,15.921249999999999,15.924583333333334,15.927916666666667,15.93125,15.934583333333334,15.937916666666666,15.94125,15.944583333333332,15.947916666666666,15.95125,15.954583333333334,15.957916666666668,15.96125,15.964583333333334,15.967916666666667,15.97125,15.974583333333333,15.977916666666665,15.98125,15.984583333333335,15.987916666666667,15.99125,15.994583333333333,15.997916666666667,16.001250000000002,16.004583333333333,16.007916666666667,16.01125,16.014583333333334,16.017916666666668,16.02125,16.024583333333332,16.027916666666666,16.03125,16.034583333333334,16.037916666666668,16.04125,16.044583333333332,16.047916666666666,16.05125,16.054583333333333,16.057916666666667,16.061249999999998,16.064583333333335,16.06791666666667,16.07125,16.074583333333333,16.077916666666667,16.08125,16.084583333333335,16.087916666666665,16.09125,16.094583333333333,16.097916666666666,16.10125,16.104583333333334,16.107916666666668,16.11125,16.114583333333332,16.117916666666666,16.12125,16.124583333333334,16.127916666666668,16.13125,16.134583333333335,16.137916666666666,16.14125,16.144583333333333,16.147916666666667,16.15125,16.15458333333333,16.15791666666667,16.16125,16.164583333333333,16.167916666666667,16.17125,16.174583333333334,16.177916666666665,16.18125,16.184583333333332,16.187916666666666,16.19125,16.194583333333334,16.197916666666668,16.20125,16.204583333333332,16.207916666666666,16.21125,16.214583333333334,16.217916666666667,16.22125,16.224583333333335,16.227916666666665,16.23125,16.234583333333333,16.237916666666667,16.24125,16.24458333333333,16.247916666666665,16.251250000000002,16.254583333333333,16.257916666666667,16.26125,16.264583333333334,16.267916666666668,16.27125,16.274583333333332,16.277916666666666,16.28125,16.284583333333334,16.287916666666668,16.29125,16.294583333333332,16.297916666666666,16.30125,16.304583333333333,16.307916666666667,16.311249999999998,16.314583333333335,16.31791666666667,16.32125,16.324583333333333,16.327916666666667,16.33125,16.334583333333335,16.337916666666665,16.34125,16.344583333333333,16.347916666666666,16.35125,16.354583333333334,16.357916666666668,16.36125,16.364583333333332,16.367916666666666,16.37125,16.374583333333334,16.377916666666668,16.38125,16.384583333333335,16.387916666666666,16.39125,16.394583333333333,16.397916666666667,16.40125,16.40458333333333,16.40791666666667,16.41125,16.414583333333333,16.417916666666667,16.42125,16.424583333333334,16.427916666666665,16.43125,16.434583333333332,16.437916666666666,16.44125,16.444583333333334,16.447916666666668,16.45125,16.454583333333332,16.457916666666666,16.46125,16.464583333333334,16.467916666666667,16.47125,16.474583333333335,16.477916666666665,16.48125,16.484583333333333,16.487916666666667,16.49125,16.49458333333333,16.497916666666665,16.501250000000002,16.504583333333333,16.507916666666667,16.51125,16.514583333333334,16.517916666666668,16.52125,16.524583333333332,16.527916666666666,16.53125,16.534583333333334,16.537916666666668,16.54125,16.544583333333332,16.547916666666666,16.55125,16.554583333333333,16.557916666666667,16.561249999999998,16.564583333333335,16.56791666666667,16.57125,16.574583333333333,16.577916666666667,16.58125,16.584583333333335,16.587916666666665,16.59125,16.594583333333333,16.597916666666666,16.60125,16.604583333333334,16.607916666666668,16.61125,16.614583333333332,16.617916666666666,16.62125,16.624583333333334,16.627916666666668,16.63125,16.634583333333335,16.637916666666666,16.64125,16.644583333333333,16.647916666666667,16.65125,16.65458333333333,16.65791666666667,16.66125,16.664583333333333,16.667916666666667,16.67125,16.674583333333334,16.677916666666665,16.68125,16.684583333333332,16.687916666666666,16.69125,16.694583333333334,16.697916666666668,16.70125,16.704583333333332,16.707916666666666,16.71125,16.714583333333334,16.717916666666667,16.72125,16.724583333333335,16.727916666666665,16.73125,16.734583333333333,16.737916666666667,16.74125,16.74458333333333,16.747916666666665,16.751250000000002,16.754583333333333,16.757916666666667,16.76125,16.764583333333334,16.767916666666668,16.77125,16.774583333333332,16.777916666666666,16.78125,16.784583333333334,16.787916666666668,16.79125,16.794583333333332,16.797916666666666,16.80125,16.804583333333333,16.807916666666667,16.811249999999998,16.814583333333335,16.81791666666667,16.82125,16.824583333333333,16.827916666666667,16.83125,16.834583333333335,16.837916666666665,16.84125,16.844583333333333,16.847916666666666,16.85125,16.854583333333334,16.857916666666668,16.86125,16.864583333333332,16.867916666666666,16.87125,16.874583333333334,16.877916666666668,16.88125,16.884583333333335,16.887916666666666,16.89125,16.894583333333333,16.897916666666667,16.90125,16.90458333333333,16.90791666666667,16.91125,16.914583333333333,16.917916666666667,16.92125,16.924583333333334,16.927916666666665,16.93125,16.934583333333332,16.937916666666666,16.94125,16.944583333333334,16.947916666666668,16.95125,16.954583333333332,16.957916666666666,16.96125,16.964583333333334,16.967916666666667,16.97125,16.974583333333335,16.977916666666665,16.98125,16.984583333333333,16.987916666666667,16.99125,16.99458333333333,16.997916666666665,17.001250000000002,17.004583333333333,17.007916666666667,17.01125,17.014583333333334,17.017916666666668,17.02125,17.024583333333332,17.027916666666666,17.03125,17.034583333333334,17.037916666666668,17.04125,17.044583333333332,17.047916666666666,17.05125,17.054583333333333,17.057916666666667,17.061249999999998,17.064583333333335,17.06791666666667,17.071250000000003,17.074583333333333,17.077916666666667,17.08125,17.084583333333335,17.08791666666667,17.09125,17.094583333333333,17.097916666666666,17.10125,17.104583333333334,17.107916666666664,17.11125,17.114583333333332,17.117916666666666,17.12125,17.12458333333333,17.127916666666668,17.13125,17.134583333333335,17.13791666666667,17.14125,17.144583333333333,17.147916666666667,17.15125,17.154583333333335,17.157916666666665,17.16125,17.164583333333333,17.167916666666667,17.17125,17.17458333333333,17.177916666666665,17.18125,17.184583333333332,17.18791666666667,17.19125,17.194583333333334,17.197916666666668,17.20125,17.204583333333336,17.207916666666666,17.21125,17.214583333333334,17.217916666666667,17.22125,17.22458333333333,17.227916666666665,17.23125,17.234583333333333,17.237916666666667,17.241249999999997,17.24458333333333,17.247916666666665,17.251250000000002,17.254583333333336,17.257916666666667,17.26125,17.264583333333334,17.267916666666668,17.271250000000002,17.274583333333332,17.277916666666666,17.28125,17.284583333333334,17.287916666666668,17.291249999999998,17.294583333333332,17.297916666666666,17.30125,17.304583333333333,17.307916666666664,17.311249999999998,17.314583333333335,17.31791666666667,17.321250000000003,17.324583333333333,17.327916666666667,17.33125,17.334583333333335,17.33791666666667,17.34125,17.344583333333333,17.347916666666666,17.35125,17.354583333333334,17.357916666666664,17.36125,17.364583333333332,17.367916666666666,17.37125,17.37458333333333,17.377916666666668,17.38125,17.384583333333335,17.38791666666667,17.39125,17.394583333333333,17.397916666666667,17.40125,17.404583333333335,17.407916666666665,17.41125,17.414583333333333,17.417916666666667,17.42125,17.42458333333333,17.427916666666665,17.43125,17.434583333333332,17.43791666666667,17.44125,17.444583333333334,17.447916666666668,17.45125,17.454583333333336,17.457916666666666,17.46125,17.464583333333334,17.467916666666667,17.47125,17.47458333333333,17.477916666666665,17.48125,17.484583333333333,17.487916666666667,17.491249999999997,17.49458333333333,17.497916666666665,17.501250000000002,17.504583333333336,17.507916666666667,17.51125,17.514583333333334,17.517916666666668,17.521250000000002,17.524583333333332,17.527916666666666,17.53125,17.534583333333334,17.537916666666668,17.541249999999998,17.544583333333332,17.547916666666666,17.55125,17.554583333333333,17.557916666666664,17.561249999999998,17.564583333333335,17.56791666666667,17.571250000000003,17.574583333333333,17.577916666666667,17.58125,17.584583333333335,17.58791666666667,17.59125,17.594583333333333,17.597916666666666,17.60125,17.604583333333334,17.607916666666664,17.61125,17.614583333333332,17.617916666666666,17.62125,17.62458333333333,17.627916666666668,17.63125,17.634583333333335,17.63791666666667,17.64125,17.644583333333333,17.647916666666667,17.65125,17.654583333333335,17.657916666666665,17.66125,17.664583333333333,17.667916666666667,17.67125,17.67458333333333,17.677916666666665,17.68125,17.684583333333332,17.68791666666667,17.69125,17.694583333333334,17.697916666666668,17.70125,17.704583333333336,17.707916666666666,17.71125,17.714583333333334,17.717916666666667,17.72125,17.72458333333333,17.727916666666665,17.73125,17.734583333333333,17.737916666666667,17.741249999999997,17.74458333333333,17.747916666666665,17.751250000000002,17.754583333333336,17.757916666666667,17.76125,17.764583333333334,17.767916666666668,17.771250000000002,17.774583333333332,17.777916666666666,17.78125,17.784583333333334,17.787916666666668,17.791249999999998,17.794583333333332,17.797916666666666,17.80125,17.804583333333333,17.807916666666664,17.811249999999998,17.814583333333335,17.81791666666667,17.821250000000003,17.824583333333333,17.827916666666667,17.83125,17.834583333333335,17.83791666666667,17.84125,17.844583333333333,17.847916666666666,17.85125,17.854583333333334,17.857916666666664,17.86125,17.864583333333332,17.867916666666666,17.87125,17.87458333333333,17.877916666666668,17.88125,17.884583333333335,17.88791666666667,17.89125,17.894583333333333,17.897916666666667,17.90125,17.904583333333335,17.907916666666665,17.91125,17.914583333333333,17.917916666666667,17.92125,17.92458333333333,17.927916666666665,17.93125,17.934583333333332,17.93791666666667,17.94125,17.944583333333334,17.947916666666668,17.95125,17.954583333333336,17.957916666666666,17.96125,17.964583333333334,17.967916666666667,17.97125,17.97458333333333,17.977916666666665,17.98125,17.984583333333333,17.987916666666667,17.991249999999997,17.99458333333333,17.997916666666665,18.001250000000002,18.004583333333336,18.007916666666667,18.01125,18.014583333333334,18.017916666666668,18.021250000000002,18.024583333333332,18.027916666666666,18.03125,18.034583333333334,18.037916666666668,18.041249999999998,18.044583333333332,18.047916666666666,18.05125,18.054583333333333,18.057916666666664,18.061249999999998,18.064583333333335,18.06791666666667,18.071250000000003,18.074583333333333,18.077916666666667,18.08125,18.084583333333335,18.08791666666667,18.09125,18.094583333333333,18.097916666666666,18.10125,18.104583333333334,18.107916666666664,18.11125,18.114583333333332,18.117916666666666,18.12125,18.12458333333333,18.127916666666668,18.13125,18.134583333333335,18.13791666666667,18.14125,18.144583333333333,18.147916666666667,18.15125,18.154583333333335,18.157916666666665,18.16125,18.164583333333333,18.167916666666667,18.17125,18.17458333333333,18.177916666666665,18.18125,18.184583333333332,18.18791666666667,18.19125,18.194583333333334,18.197916666666668,18.20125,18.204583333333336,18.207916666666666,18.21125,18.214583333333334,18.217916666666667,18.22125,18.22458333333333,18.227916666666665,18.23125,18.234583333333333,18.237916666666667,18.241249999999997,18.24458333333333,18.247916666666665,18.251250000000002,18.254583333333336,18.257916666666667,18.26125,18.264583333333334,18.267916666666668,18.271250000000002,18.274583333333332,18.277916666666666,18.28125,18.284583333333334,18.287916666666668,18.291249999999998,18.294583333333332,18.297916666666666,18.30125,18.304583333333333,18.307916666666664,18.311249999999998,18.314583333333335,18.31791666666667,18.321250000000003,18.324583333333333,18.327916666666667,18.33125,18.334583333333335,18.33791666666667,18.34125,18.344583333333333,18.347916666666666,18.35125,18.354583333333334,18.357916666666664,18.36125,18.364583333333332,18.367916666666666,18.37125,18.37458333333333,18.377916666666668,18.38125,18.384583333333335,18.38791666666667,18.39125,18.394583333333333,18.397916666666667,18.40125,18.404583333333335,18.407916666666665,18.41125,18.414583333333333,18.417916666666667,18.42125,18.42458333333333,18.427916666666665,18.43125,18.434583333333332,18.43791666666667,18.44125,18.444583333333334,18.447916666666668,18.45125,18.454583333333336,18.457916666666666,18.46125,18.464583333333334,18.467916666666667,18.47125,18.47458333333333,18.477916666666665,18.48125,18.484583333333333,18.487916666666667,18.491249999999997,18.49458333333333,18.497916666666665,18.501250000000002,18.504583333333336,18.507916666666667,18.51125,18.514583333333334,18.517916666666668,18.521250000000002,18.524583333333332,18.527916666666666,18.53125,18.534583333333334,18.537916666666668,18.541249999999998,18.544583333333332,18.547916666666666,18.55125,18.554583333333333,18.557916666666664,18.561249999999998,18.564583333333335,18.56791666666667,18.571250000000003,18.574583333333333,18.577916666666667,18.58125,18.584583333333335,18.58791666666667,18.59125,18.594583333333333,18.597916666666666,18.60125,18.604583333333334,18.607916666666664,18.61125,18.614583333333332,18.617916666666666,18.62125,18.62458333333333,18.627916666666668,18.63125,18.634583333333335,18.63791666666667,18.64125,18.644583333333333,18.647916666666667,18.65125,18.654583333333335,18.657916666666665,18.66125,18.664583333333333,18.667916666666667,18.67125,18.67458333333333,18.677916666666665,18.68125,18.684583333333332,18.68791666666667,18.69125,18.694583333333334,18.697916666666668,18.70125,18.704583333333336,18.707916666666666,18.71125,18.714583333333334,18.717916666666667,18.72125,18.72458333333333,18.727916666666665,18.73125,18.734583333333333,18.737916666666667,18.741249999999997,18.74458333333333,18.747916666666665,18.751250000000002,18.754583333333336,18.757916666666667,18.76125,18.764583333333334,18.767916666666668,18.771250000000002,18.774583333333332,18.777916666666666,18.78125,18.784583333333334,18.787916666666668,18.791249999999998,18.794583333333332,18.797916666666666,18.80125,18.804583333333333,18.807916666666664,18.811249999999998,18.814583333333335,18.81791666666667,18.821250000000003,18.824583333333333,18.827916666666667,18.83125,18.834583333333335,18.83791666666667,18.84125,18.844583333333333,18.847916666666666,18.85125,18.854583333333334,18.857916666666664,18.86125,18.864583333333332,18.867916666666666,18.87125,18.87458333333333,18.877916666666668,18.88125,18.884583333333335,18.88791666666667,18.89125,18.894583333333333,18.897916666666667,18.90125,18.904583333333335,18.907916666666665,18.91125,18.914583333333333,18.917916666666667,18.92125,18.92458333333333,18.927916666666665,18.93125,18.934583333333332,18.93791666666667,18.94125,18.944583333333334,18.947916666666668,18.95125,18.954583333333336,18.957916666666666,18.96125,18.964583333333334,18.967916666666667,18.97125,18.97458333333333,18.977916666666665,18.98125,18.984583333333333,18.987916666666667,18.991249999999997,18.99458333333333,18.997916666666665,19.001250000000002,19.004583333333336,19.007916666666667,19.01125,19.014583333333334,19.017916666666668,19.021250000000002,19.024583333333332,19.027916666666666,19.03125,19.034583333333334,19.037916666666668,19.041249999999998,19.044583333333332,19.047916666666666,19.05125,19.054583333333333,19.057916666666664,19.061249999999998,19.064583333333335,19.06791666666667,19.071250000000003,19.074583333333333,19.077916666666667,19.08125,19.084583333333335,19.08791666666667,19.09125,19.094583333333333,19.097916666666666,19.10125,19.104583333333334,19.107916666666664,19.11125,19.114583333333332,19.117916666666666,19.12125,19.12458333333333,19.127916666666668,19.13125,19.134583333333335,19.13791666666667,19.14125,19.144583333333333,19.147916666666667,19.15125,19.154583333333335,19.157916666666665,19.16125,19.164583333333333,19.167916666666667,19.17125,19.17458333333333,19.177916666666665,19.18125,19.184583333333332,19.18791666666667,19.19125,19.194583333333334,19.197916666666668,19.20125,19.204583333333336,19.207916666666666,19.21125,19.214583333333334,19.217916666666667,19.22125,19.22458333333333,19.227916666666665,19.23125,19.234583333333333,19.237916666666667,19.241249999999997,19.24458333333333,19.247916666666665,19.251250000000002,19.254583333333336,19.257916666666667,19.26125,19.264583333333334,19.267916666666668,19.271250000000002,19.274583333333332,19.277916666666666,19.28125,19.284583333333334,19.287916666666668,19.291249999999998,19.294583333333332,19.297916666666666,19.30125,19.304583333333333,19.307916666666664,19.311249999999998,19.314583333333335,19.31791666666667,19.321250000000003,19.324583333333333,19.327916666666667,19.33125,19.334583333333335,19.33791666666667,19.34125,19.344583333333333,19.347916666666666,19.35125,19.354583333333334,19.357916666666664,19.36125,19.364583333333332,19.367916666666666,19.37125,19.37458333333333,19.377916666666668,19.38125,19.384583333333335,19.38791666666667,19.39125,19.394583333333333,19.397916666666667,19.40125,19.404583333333335,19.407916666666665,19.41125,19.414583333333333,19.417916666666667,19.42125,19.42458333333333,19.427916666666665,19.43125,19.434583333333332,19.43791666666667,19.44125,19.444583333333334,19.447916666666668,19.45125,19.454583333333336,19.457916666666666,19.46125,19.464583333333334,19.467916666666667,19.47125,19.47458333333333,19.477916666666665,19.48125,19.484583333333333,19.487916666666667,19.491249999999997,19.49458333333333,19.497916666666665,19.501250000000002,19.504583333333336,19.507916666666667,19.51125,19.514583333333334,19.517916666666668,19.521250000000002,19.524583333333332,19.527916666666666,19.53125,19.534583333333334,19.537916666666668,19.541249999999998,19.544583333333332,19.547916666666666,19.55125,19.554583333333333,19.557916666666664,19.561249999999998,19.564583333333335,19.56791666666667,19.571250000000003,19.574583333333333,19.577916666666667,19.58125,19.584583333333335,19.58791666666667,19.59125,19.594583333333333,19.597916666666666,19.60125,19.604583333333334,19.607916666666664,19.61125,19.614583333333332,19.617916666666666,19.62125,19.62458333333333,19.627916666666668,19.63125,19.634583333333335,19.63791666666667,19.64125,19.644583333333333,19.647916666666667,19.65125,19.654583333333335,19.657916666666665,19.66125,19.664583333333333,19.667916666666667,19.67125,19.67458333333333,19.677916666666665,19.68125,19.684583333333332,19.68791666666667,19.69125,19.694583333333334,19.697916666666668,19.70125,19.704583333333336,19.707916666666666,19.71125,19.714583333333334,19.717916666666667,19.72125,19.72458333333333,19.727916666666665,19.73125,19.734583333333333,19.737916666666667,19.741249999999997,19.74458333333333,19.747916666666665,19.751250000000002,19.754583333333336,19.757916666666667,19.76125,19.764583333333334,19.767916666666668,19.771250000000002,19.774583333333332,19.777916666666666,19.78125,19.784583333333334,19.787916666666668,19.791249999999998,19.794583333333332,19.797916666666666,19.80125,19.804583333333333,19.807916666666664,19.811249999999998,19.814583333333335,19.81791666666667,19.821250000000003,19.824583333333333,19.827916666666667,19.83125,19.834583333333335,19.83791666666667,19.84125,19.844583333333333,19.847916666666666,19.85125,19.854583333333334,19.857916666666664,19.86125,19.864583333333332,19.867916666666666,19.87125,19.87458333333333,19.877916666666668,19.88125,19.884583333333335,19.88791666666667,19.89125,19.894583333333333,19.897916666666667,19.90125,19.904583333333335,19.907916666666665,19.91125,19.914583333333333,19.917916666666667,19.92125,19.92458333333333,19.927916666666665,19.93125,19.934583333333332,19.93791666666667,19.94125,19.944583333333334,19.947916666666668,19.95125,19.954583333333336,19.957916666666666,19.96125,19.964583333333334,19.967916666666667,19.97125,19.97458333333333,19.977916666666665,19.98125,19.984583333333333,19.987916666666667,19.991249999999997,19.99458333333333,19.997916666666665,20.001250000000002,20.004583333333336,20.007916666666667,20.01125,20.014583333333334,20.017916666666668,20.021250000000002,20.024583333333332,20.027916666666666,20.03125,20.034583333333334,20.037916666666668,20.041249999999998,20.044583333333332,20.047916666666666,20.05125,20.054583333333333,20.057916666666664,20.061249999999998,20.064583333333335,20.06791666666667,20.071250000000003,20.074583333333333,20.077916666666667,20.08125,20.084583333333335,20.08791666666667,20.09125,20.094583333333333,20.097916666666666,20.10125,20.104583333333334,20.107916666666664,20.11125,20.114583333333332,20.117916666666666,20.12125,20.12458333333333,20.127916666666668,20.13125,20.134583333333335,20.13791666666667,20.14125,20.144583333333333,20.147916666666667,20.15125,20.154583333333335,20.157916666666665,20.16125,20.164583333333333,20.167916666666667,20.17125,20.17458333333333,20.177916666666665,20.18125,20.184583333333332,20.18791666666667,20.19125,20.194583333333334,20.197916666666668,20.20125,20.204583333333336,20.207916666666666,20.21125,20.214583333333334,20.217916666666667,20.22125,20.22458333333333,20.227916666666665,20.23125,20.234583333333333,20.237916666666667,20.241249999999997,20.24458333333333,20.247916666666665,20.251250000000002,20.254583333333336,20.257916666666667,20.26125,20.264583333333334,20.267916666666668,20.271250000000002,20.274583333333332,20.277916666666666,20.28125,20.284583333333334,20.287916666666668,20.291249999999998,20.294583333333332,20.297916666666666,20.30125,20.304583333333333,20.307916666666664,20.311249999999998,20.314583333333335,20.31791666666667,20.321250000000003,20.324583333333333,20.327916666666667,20.33125,20.334583333333335,20.33791666666667,20.34125,20.344583333333333,20.347916666666666,20.35125,20.354583333333334,20.357916666666664,20.36125,20.364583333333332,20.367916666666666,20.37125,20.37458333333333,20.377916666666668,20.38125,20.384583333333335,20.38791666666667,20.39125,20.394583333333333,20.397916666666667,20.40125,20.404583333333335,20.407916666666665,20.41125,20.414583333333333,20.417916666666667,20.42125,20.42458333333333,20.427916666666665,20.43125,20.434583333333332,20.43791666666667,20.44125,20.444583333333334,20.447916666666668,20.45125,20.454583333333336,20.457916666666666,20.46125,20.464583333333334,20.467916666666667,20.47125,20.47458333333333,20.477916666666665,20.48125,20.484583333333333,20.487916666666667,20.491249999999997,20.49458333333333,20.497916666666665,20.501250000000002,20.504583333333336,20.507916666666667,20.51125,20.514583333333334,20.517916666666668,20.521250000000002,20.524583333333332,20.527916666666666,20.53125,20.534583333333334,20.537916666666668,20.541249999999998,20.544583333333332,20.547916666666666,20.55125,20.554583333333333,20.557916666666664,20.561249999999998,20.564583333333335,20.56791666666667,20.571250000000003,20.574583333333333,20.577916666666667,20.58125,20.584583333333335,20.58791666666667,20.59125,20.594583333333333,20.597916666666666,20.60125,20.604583333333334,20.607916666666664,20.61125,20.614583333333332,20.617916666666666,20.62125,20.62458333333333,20.627916666666668,20.63125,20.634583333333335,20.63791666666667,20.64125,20.644583333333333,20.647916666666667,20.65125,20.654583333333335,20.657916666666665,20.66125,20.664583333333333,20.667916666666667,20.67125,20.67458333333333,20.677916666666665,20.68125,20.684583333333332,20.68791666666667,20.69125,20.694583333333334,20.697916666666668,20.70125,20.704583333333336,20.707916666666666,20.71125,20.714583333333334,20.717916666666667,20.72125,20.72458333333333,20.727916666666665,20.73125,20.734583333333333,20.737916666666667,20.741249999999997,20.74458333333333,20.747916666666665,20.751250000000002,20.754583333333336,20.757916666666667,20.76125,20.764583333333334,20.767916666666668,20.771250000000002,20.774583333333332,20.777916666666666,20.78125,20.784583333333334,20.787916666666668,20.791249999999998,20.794583333333332,20.797916666666666,20.80125,20.804583333333333,20.807916666666664,20.811249999999998,20.814583333333335,20.81791666666667,20.821250000000003,20.824583333333333,20.827916666666667,20.83125,20.834583333333335,20.83791666666667,20.84125,20.844583333333333,20.847916666666666,20.85125,20.854583333333334,20.857916666666664,20.86125,20.864583333333332,20.867916666666666,20.87125,20.87458333333333,20.877916666666668,20.88125,20.884583333333335,20.88791666666667,20.89125,20.894583333333333,20.897916666666667,20.90125,20.904583333333335,20.907916666666665,20.91125,20.914583333333333,20.917916666666667,20.92125,20.92458333333333,20.927916666666665,20.93125,20.934583333333332,20.93791666666667,20.94125,20.944583333333334,20.947916666666668,20.95125,20.954583333333336,20.957916666666666,20.96125,20.964583333333334,20.967916666666667,20.97125,20.97458333333333,20.977916666666665,20.98125,20.984583333333333,20.987916666666667,20.991249999999997,20.99458333333333,20.997916666666665,21.001250000000002,21.004583333333336,21.007916666666667,21.01125,21.014583333333334,21.017916666666668,21.021250000000002,21.024583333333332,21.027916666666666,21.03125,21.034583333333334,21.037916666666668,21.041249999999998,21.044583333333332,21.047916666666666,21.05125,21.054583333333333,21.057916666666664,21.061249999999998,21.064583333333335,21.06791666666667,21.071250000000003,21.074583333333333,21.077916666666667,21.08125,21.084583333333335,21.08791666666667,21.09125,21.094583333333333,21.097916666666666,21.10125,21.104583333333334,21.107916666666664,21.11125,21.114583333333332,21.117916666666666,21.12125,21.12458333333333,21.127916666666668,21.13125,21.134583333333335,21.13791666666667,21.14125,21.144583333333333,21.147916666666667,21.15125,21.154583333333335,21.157916666666665,21.16125,21.164583333333333,21.167916666666667,21.17125,21.17458333333333,21.177916666666665,21.18125,21.184583333333332,21.18791666666667,21.19125,21.194583333333334,21.197916666666668,21.20125,21.204583333333336,21.207916666666666,21.21125,21.214583333333334,21.217916666666667,21.22125,21.22458333333333,21.227916666666665,21.23125,21.234583333333333,21.237916666666667,21.241249999999997,21.24458333333333,21.247916666666665,21.251250000000002,21.254583333333336,21.257916666666667,21.26125,21.264583333333334,21.267916666666668,21.271250000000002,21.274583333333332,21.277916666666666,21.28125,21.284583333333334,21.287916666666668,21.291249999999998,21.294583333333332,21.297916666666666,21.30125,21.304583333333333,21.307916666666664,21.311249999999998,21.314583333333335,21.31791666666667,21.321250000000003,21.324583333333333,21.327916666666667,21.33125,21.334583333333335,21.33791666666667,21.34125,21.344583333333333,21.347916666666666,21.35125,21.354583333333334,21.357916666666664,21.36125,21.364583333333332,21.367916666666666,21.37125,21.37458333333333,21.377916666666668,21.38125,21.384583333333335,21.38791666666667,21.39125,21.394583333333333,21.397916666666667,21.40125,21.404583333333335,21.407916666666665,21.41125,21.414583333333333,21.417916666666667,21.42125,21.42458333333333,21.427916666666665,21.43125,21.434583333333332,21.43791666666667,21.44125,21.444583333333334,21.447916666666668,21.45125,21.454583333333336,21.457916666666666,21.46125,21.464583333333334,21.467916666666667,21.47125,21.47458333333333,21.477916666666665,21.48125,21.484583333333333,21.487916666666667,21.491249999999997,21.49458333333333,21.497916666666665,21.501250000000002,21.504583333333336,21.507916666666667,21.51125,21.514583333333334,21.517916666666668,21.521250000000002,21.524583333333332,21.527916666666666,21.53125,21.534583333333334,21.537916666666668,21.541249999999998,21.544583333333332,21.547916666666666,21.55125,21.554583333333333,21.557916666666664,21.561249999999998,21.564583333333335,21.56791666666667,21.571250000000003,21.574583333333333,21.577916666666667,21.58125,21.584583333333335,21.58791666666667,21.59125,21.594583333333333,21.597916666666666,21.60125,21.604583333333334,21.607916666666664,21.61125,21.614583333333332,21.617916666666666,21.62125,21.62458333333333,21.627916666666668,21.63125,21.634583333333335,21.63791666666667,21.64125,21.644583333333333,21.647916666666667,21.65125,21.654583333333335,21.657916666666665,21.66125,21.664583333333333,21.667916666666667,21.67125,21.67458333333333,21.677916666666665,21.68125,21.684583333333332,21.68791666666667,21.69125,21.694583333333334,21.697916666666668,21.70125,21.704583333333336,21.707916666666666,21.71125,21.714583333333334,21.717916666666667,21.72125,21.72458333333333,21.727916666666665,21.73125,21.734583333333333,21.737916666666667,21.741249999999997,21.74458333333333,21.747916666666665,21.751250000000002,21.754583333333336,21.757916666666667,21.76125,21.764583333333334,21.767916666666668,21.771250000000002,21.774583333333332,21.777916666666666,21.78125,21.784583333333334,21.787916666666668,21.791249999999998,21.794583333333332,21.797916666666666,21.80125,21.804583333333333,21.807916666666664,21.811249999999998,21.814583333333335,21.81791666666667,21.821250000000003,21.824583333333333,21.827916666666667,21.83125,21.834583333333335,21.83791666666667,21.84125,21.844583333333333,21.847916666666666,21.85125,21.854583333333334,21.857916666666664,21.86125,21.864583333333332,21.867916666666666,21.87125,21.87458333333333,21.877916666666668,21.88125,21.884583333333335,21.88791666666667,21.89125,21.894583333333333,21.897916666666667,21.90125,21.904583333333335,21.907916666666665,21.91125,21.914583333333333,21.917916666666667,21.92125,21.92458333333333,21.927916666666665,21.93125,21.934583333333332,21.93791666666667,21.94125,21.944583333333334,21.947916666666668,21.95125,21.954583333333336,21.957916666666666,21.96125,21.964583333333334,21.967916666666667,21.97125,21.97458333333333,21.977916666666665,21.98125,21.984583333333333,21.987916666666667,21.991249999999997,21.99458333333333,21.997916666666665,22.001250000000002,22.004583333333336,22.007916666666667,22.01125,22.014583333333334,22.017916666666668,22.021250000000002,22.024583333333332,22.027916666666666,22.03125,22.034583333333334,22.037916666666668,22.041249999999998,22.044583333333332,22.047916666666666,22.05125,22.054583333333333,22.057916666666664,22.061249999999998,22.064583333333335,22.06791666666667,22.071250000000003,22.074583333333333,22.077916666666667,22.08125,22.084583333333335,22.08791666666667,22.09125,22.094583333333333,22.097916666666666,22.10125,22.104583333333334,22.107916666666664,22.11125,22.114583333333332,22.117916666666666,22.12125,22.12458333333333,22.127916666666668,22.13125,22.134583333333335,22.13791666666667,22.14125,22.144583333333333,22.147916666666667,22.15125,22.154583333333335,22.157916666666665,22.16125,22.164583333333333,22.167916666666667,22.17125,22.17458333333333,22.177916666666665,22.18125,22.184583333333332,22.18791666666667,22.19125,22.194583333333334,22.197916666666668,22.20125,22.204583333333336,22.207916666666666,22.21125,22.214583333333334,22.217916666666667,22.22125,22.22458333333333,22.227916666666665,22.23125,22.234583333333333,22.237916666666667,22.241249999999997,22.24458333333333,22.247916666666665,22.251250000000002,22.254583333333336,22.257916666666667,22.26125,22.264583333333334,22.267916666666668,22.271250000000002,22.274583333333332,22.277916666666666,22.28125,22.284583333333334,22.287916666666668,22.291249999999998,22.294583333333332,22.297916666666666,22.30125,22.304583333333333,22.307916666666664,22.311249999999998,22.314583333333335,22.31791666666667,22.321250000000003,22.324583333333333,22.327916666666667,22.33125,22.334583333333335,22.33791666666667,22.34125,22.344583333333333,22.347916666666666,22.35125,22.354583333333334,22.357916666666664,22.36125,22.364583333333332,22.367916666666666,22.37125,22.37458333333333,22.377916666666668,22.38125,22.384583333333335,22.38791666666667,22.39125,22.394583333333333,22.397916666666667,22.40125,22.404583333333335,22.407916666666665,22.41125,22.414583333333333,22.417916666666667,22.42125,22.42458333333333,22.427916666666665,22.43125,22.434583333333332,22.43791666666667,22.44125,22.444583333333334,22.447916666666668,22.45125,22.454583333333336,22.457916666666666,22.46125,22.464583333333334,22.467916666666667,22.47125,22.47458333333333,22.477916666666665,22.48125,22.484583333333333,22.487916666666667,22.491249999999997,22.49458333333333,22.497916666666665,22.501250000000002,22.504583333333336,22.507916666666667,22.51125,22.514583333333334,22.517916666666668,22.521250000000002,22.524583333333332,22.527916666666666,22.53125,22.534583333333334,22.537916666666668,22.541249999999998,22.544583333333332,22.547916666666666,22.55125,22.554583333333333,22.557916666666664,22.561249999999998,22.564583333333335,22.56791666666667,22.571250000000003,22.574583333333333,22.577916666666667,22.58125,22.584583333333335,22.58791666666667,22.59125,22.594583333333333,22.597916666666666,22.60125,22.604583333333334,22.607916666666664,22.61125,22.614583333333332,22.617916666666666,22.62125,22.62458333333333,22.627916666666668,22.63125,22.634583333333335,22.63791666666667,22.64125,22.644583333333333,22.647916666666667,22.65125,22.654583333333335,22.657916666666665,22.66125,22.664583333333333,22.667916666666667,22.67125,22.67458333333333,22.677916666666665,22.68125,22.684583333333332,22.68791666666667,22.69125,22.694583333333334,22.697916666666668,22.70125,22.704583333333336,22.707916666666666,22.71125,22.714583333333334,22.717916666666667,22.72125,22.72458333333333,22.727916666666665,22.73125,22.734583333333333,22.737916666666667,22.741249999999997,22.74458333333333,22.747916666666665,22.751250000000002,22.754583333333336,22.757916666666667,22.76125,22.764583333333334,22.767916666666668,22.771250000000002,22.774583333333332,22.777916666666666,22.78125,22.784583333333334,22.787916666666668,22.791249999999998,22.794583333333332,22.797916666666666,22.80125,22.804583333333333,22.807916666666664,22.811249999999998,22.814583333333335,22.81791666666667,22.821250000000003,22.824583333333333,22.827916666666667,22.83125,22.834583333333335,22.83791666666667,22.84125,22.844583333333333,22.847916666666666,22.85125,22.854583333333334,22.857916666666664,22.86125,22.864583333333332,22.867916666666666,22.87125,22.87458333333333,22.877916666666668,22.88125,22.884583333333335,22.88791666666667,22.89125,22.894583333333333,22.897916666666667,22.90125,22.904583333333335,22.907916666666665,22.91125,22.914583333333333,22.917916666666667,22.92125,22.92458333333333,22.927916666666665,22.93125,22.934583333333332,22.93791666666667,22.94125,22.944583333333334,22.947916666666668,22.95125,22.954583333333336,22.957916666666666,22.96125,22.964583333333334,22.967916666666667,22.97125,22.97458333333333,22.977916666666665,22.98125,22.984583333333333,22.987916666666667,22.991249999999997,22.99458333333333,22.997916666666665,23.001250000000002,23.004583333333336,23.007916666666667,23.01125,23.014583333333334,23.017916666666668,23.021250000000002,23.024583333333332,23.027916666666666,23.03125,23.034583333333334,23.037916666666668,23.041249999999998,23.044583333333332,23.047916666666666,23.05125,23.054583333333333,23.057916666666664,23.061249999999998,23.064583333333335,23.06791666666667,23.071250000000003,23.074583333333333,23.077916666666667,23.08125,23.084583333333335,23.08791666666667,23.09125,23.094583333333333,23.097916666666666,23.10125,23.104583333333334,23.107916666666664,23.11125,23.114583333333332,23.117916666666666,23.12125,23.12458333333333,23.127916666666668,23.13125,23.134583333333335,23.13791666666667,23.14125,23.144583333333333,23.147916666666667,23.15125,23.154583333333335,23.157916666666665,23.16125,23.164583333333333,23.167916666666667,23.17125,23.17458333333333,23.177916666666665,23.18125,23.184583333333332,23.18791666666667,23.19125,23.194583333333334,23.197916666666668,23.20125,23.204583333333336,23.207916666666666,23.21125,23.214583333333334,23.217916666666667,23.22125,23.22458333333333,23.227916666666665,23.23125,23.234583333333333,23.237916666666667,23.241249999999997,23.24458333333333,23.247916666666665,23.251250000000002,23.254583333333336,23.257916666666667,23.26125,23.264583333333334,23.267916666666668,23.271250000000002,23.274583333333332,23.277916666666666,23.28125,23.284583333333334,23.287916666666668,23.291249999999998,23.294583333333332,23.297916666666666,23.30125,23.304583333333333,23.307916666666664,23.311249999999998,23.314583333333335,23.31791666666667,23.321250000000003,23.324583333333333,23.327916666666667,23.33125,23.334583333333335,23.33791666666667,23.34125,23.344583333333333,23.347916666666666,23.35125,23.354583333333334,23.357916666666664,23.36125,23.364583333333332,23.367916666666666,23.37125,23.37458333333333,23.377916666666668,23.38125,23.384583333333335,23.38791666666667,23.39125,23.394583333333333,23.397916666666667,23.40125,23.404583333333335,23.407916666666665,23.41125,23.414583333333333,23.417916666666667,23.42125,23.42458333333333,23.427916666666665,23.43125,23.434583333333332,23.43791666666667,23.44125,23.444583333333334,23.447916666666668,23.45125,23.454583333333336,23.457916666666666,23.46125,23.464583333333334,23.467916666666667,23.47125,23.47458333333333,23.477916666666665,23.48125,23.484583333333333,23.487916666666667,23.491249999999997,23.49458333333333,23.497916666666665,23.501250000000002,23.504583333333336,23.507916666666667,23.51125,23.514583333333334,23.517916666666668,23.521250000000002,23.524583333333332,23.527916666666666,23.53125,23.534583333333334,23.537916666666668,23.541249999999998,23.544583333333332,23.547916666666666,23.55125,23.554583333333333,23.557916666666664,23.561249999999998,23.564583333333335,23.56791666666667,23.571250000000003,23.574583333333333,23.577916666666667,23.58125,23.584583333333335,23.58791666666667,23.59125,23.594583333333333,23.597916666666666,23.60125,23.604583333333334,23.607916666666664,23.61125,23.614583333333332,23.617916666666666,23.62125,23.62458333333333,23.627916666666668,23.63125,23.634583333333335,23.63791666666667,23.64125,23.644583333333333,23.647916666666667,23.65125,23.654583333333335,23.657916666666665,23.66125,23.664583333333333,23.667916666666667,23.67125,23.67458333333333,23.677916666666665,23.68125,23.684583333333332,23.68791666666667,23.69125,23.694583333333334,23.697916666666668,23.70125,23.704583333333336,23.707916666666666,23.71125,23.714583333333334,23.717916666666667,23.72125,23.72458333333333,23.727916666666665,23.73125,23.734583333333333,23.737916666666667,23.741249999999997,23.74458333333333,23.747916666666665,23.751250000000002,23.754583333333336,23.757916666666667,23.76125,23.764583333333334,23.767916666666668,23.771250000000002,23.774583333333332,23.777916666666666,23.78125,23.784583333333334,23.787916666666668,23.791249999999998,23.794583333333332,23.797916666666666,23.80125,23.804583333333333,23.807916666666664,23.811249999999998,23.814583333333335,23.81791666666667,23.821250000000003,23.824583333333333,23.827916666666667,23.83125,23.834583333333335,23.83791666666667,23.84125,23.844583333333333,23.847916666666666,23.85125,23.854583333333334,23.857916666666664,23.86125,23.864583333333332,23.867916666666666,23.87125,23.87458333333333,23.877916666666668,23.88125,23.884583333333335,23.88791666666667,23.89125,23.894583333333333,23.897916666666667,23.90125,23.904583333333335,23.907916666666665,23.91125,23.914583333333333,23.917916666666667,23.92125,23.92458333333333,23.927916666666665,23.93125,23.934583333333332,23.93791666666667,23.94125,23.944583333333334,23.947916666666668,23.95125,23.954583333333336,23.957916666666666,23.96125,23.964583333333334,23.967916666666667,23.97125,23.97458333333333,23.977916666666665,23.98125,23.984583333333333,23.987916666666667,23.991249999999997,23.99458333333333,23.997916666666665,24.001250000000002,24.004583333333336,24.007916666666667,24.01125,24.014583333333334,24.017916666666668,24.021250000000002,24.024583333333332,24.027916666666666,24.03125,24.034583333333334,24.037916666666668,24.041249999999998,24.044583333333332,24.047916666666666,24.05125,24.054583333333333,24.057916666666664,24.061249999999998,24.064583333333335,24.06791666666667,24.071250000000003,24.074583333333333,24.077916666666667,24.08125,24.084583333333335,24.08791666666667,24.09125,24.094583333333333,24.097916666666666,24.10125,24.104583333333334,24.107916666666664,24.11125,24.114583333333332,24.117916666666666,24.12125,24.12458333333333,24.127916666666668,24.13125,24.134583333333335,24.13791666666667,24.14125,24.144583333333333,24.147916666666667,24.15125,24.154583333333335,24.157916666666665,24.16125,24.164583333333333,24.167916666666667,24.17125,24.17458333333333,24.177916666666665,24.18125,24.184583333333332,24.18791666666667,24.19125,24.194583333333334,24.197916666666668,24.20125,24.204583333333336,24.207916666666666,24.21125,24.214583333333334,24.217916666666667,24.22125,24.22458333333333,24.227916666666665,24.23125,24.234583333333333,24.237916666666667,24.241249999999997,24.24458333333333,24.247916666666665,24.251250000000002,24.254583333333336,24.257916666666667,24.26125,24.264583333333334,24.267916666666668,24.271250000000002,24.274583333333332,24.277916666666666,24.28125,24.284583333333334,24.287916666666668,24.291249999999998,24.294583333333332,24.297916666666666,24.30125,24.304583333333333,24.307916666666664,24.311249999999998,24.314583333333335,24.31791666666667,24.321250000000003,24.324583333333333,24.327916666666667,24.33125,24.334583333333335,24.33791666666667,24.34125,24.344583333333333,24.347916666666666,24.35125,24.354583333333334,24.357916666666664,24.36125,24.364583333333332,24.367916666666666,24.37125,24.37458333333333,24.377916666666668,24.38125,24.384583333333335,24.38791666666667,24.39125,24.394583333333333,24.397916666666667,24.40125,24.404583333333335,24.407916666666665,24.41125,24.414583333333333,24.417916666666667,24.42125,24.42458333333333,24.427916666666665,24.43125,24.434583333333332,24.43791666666667,24.44125,24.444583333333334,24.447916666666668,24.45125,24.454583333333336,24.457916666666666,24.46125,24.464583333333334,24.467916666666667,24.47125,24.47458333333333,24.477916666666665,24.48125,24.484583333333333,24.487916666666667,24.491249999999997,24.49458333333333,24.497916666666665,24.501250000000002,24.504583333333336,24.507916666666667,24.51125,24.514583333333334,24.517916666666668,24.521250000000002,24.524583333333332,24.527916666666666,24.53125,24.534583333333334,24.537916666666668,24.541249999999998,24.544583333333332,24.547916666666666,24.55125,24.554583333333333,24.557916666666664,24.561249999999998,24.564583333333335,24.56791666666667,24.571250000000003,24.574583333333333,24.577916666666667,24.58125,24.584583333333335,24.58791666666667,24.59125,24.594583333333333,24.597916666666666,24.60125,24.604583333333334,24.607916666666664,24.61125,24.614583333333332,24.617916666666666,24.62125,24.62458333333333,24.627916666666668,24.63125,24.634583333333335,24.63791666666667,24.64125,24.644583333333333,24.647916666666667,24.65125,24.654583333333335,24.657916666666665,24.66125,24.664583333333333,24.667916666666667,24.67125,24.67458333333333,24.677916666666665,24.68125,24.684583333333332,24.68791666666667,24.69125,24.694583333333334,24.697916666666668,24.70125,24.704583333333336,24.707916666666666,24.71125,24.714583333333334,24.717916666666667,24.72125,24.72458333333333,24.727916666666665,24.73125,24.734583333333333,24.737916666666667,24.741249999999997,24.74458333333333,24.747916666666665,24.751250000000002,24.754583333333336,24.757916666666667,24.76125,24.764583333333334,24.767916666666668,24.771250000000002,24.774583333333332,24.777916666666666,24.78125,24.784583333333334,24.787916666666668,24.791249999999998,24.794583333333332,24.797916666666666,24.80125,24.804583333333333,24.807916666666664,24.811249999999998,24.814583333333335,24.81791666666667,24.821250000000003,24.824583333333333,24.827916666666667,24.83125,24.834583333333335,24.83791666666667,24.84125,24.844583333333333,24.847916666666666,24.85125,24.854583333333334,24.857916666666664,24.86125,24.864583333333332,24.867916666666666,24.87125,24.87458333333333,24.877916666666668,24.88125,24.884583333333335,24.88791666666667,24.89125,24.894583333333333,24.897916666666667,24.90125,24.904583333333335,24.907916666666665,24.91125,24.914583333333333,24.917916666666667,24.92125,24.92458333333333,24.927916666666665,24.93125,24.934583333333332,24.93791666666667,24.94125,24.944583333333334,24.947916666666668,24.95125,24.954583333333336,24.957916666666666,24.96125,24.964583333333334,24.967916666666667,24.97125,24.97458333333333,24.977916666666665,24.98125,24.984583333333333,24.987916666666667,24.991249999999997,24.99458333333333,24.997916666666665,25.001250000000002,25.004583333333336,25.007916666666667,25.01125,25.014583333333334,25.017916666666668,25.021250000000002,25.024583333333332,25.027916666666666,25.03125,25.034583333333334,25.037916666666668,25.041249999999998,25.044583333333332,25.047916666666666,25.05125,25.054583333333333,25.057916666666664,25.061249999999998,25.064583333333335,25.06791666666667,25.071250000000003,25.074583333333333,25.077916666666667,25.08125,25.084583333333335,25.08791666666667,25.09125,25.094583333333333,25.097916666666666,25.10125,25.104583333333334,25.107916666666664,25.11125,25.114583333333332,25.117916666666666,25.12125,25.12458333333333,25.127916666666668,25.13125,25.134583333333335,25.13791666666667,25.14125,25.144583333333333,25.147916666666667,25.15125,25.154583333333335,25.157916666666665,25.16125,25.164583333333333,25.167916666666667,25.17125,25.17458333333333,25.177916666666665,25.18125,25.184583333333332,25.18791666666667,25.19125,25.194583333333334,25.197916666666668,25.20125,25.204583333333336,25.207916666666666,25.21125,25.214583333333334,25.217916666666667,25.22125,25.22458333333333,25.227916666666665,25.23125,25.234583333333333,25.237916666666667,25.241249999999997,25.24458333333333,25.247916666666665,25.251250000000002,25.254583333333336,25.257916666666667,25.26125,25.264583333333334,25.267916666666668,25.271250000000002,25.274583333333332,25.277916666666666,25.28125,25.284583333333334,25.287916666666668,25.291249999999998,25.294583333333332,25.297916666666666,25.30125,25.304583333333333,25.307916666666664,25.311249999999998,25.314583333333335,25.31791666666667,25.321250000000003,25.324583333333333,25.327916666666667,25.33125,25.334583333333335,25.33791666666667,25.34125,25.344583333333333,25.347916666666666,25.35125,25.354583333333334,25.357916666666664,25.36125,25.364583333333332,25.367916666666666,25.37125,25.37458333333333,25.377916666666668,25.38125,25.384583333333335,25.38791666666667,25.39125,25.394583333333333,25.397916666666667,25.40125,25.404583333333335,25.407916666666665,25.41125,25.414583333333333,25.417916666666667,25.42125,25.42458333333333,25.427916666666665,25.43125,25.434583333333332,25.43791666666667,25.44125,25.444583333333334,25.447916666666668,25.45125,25.454583333333336,25.457916666666666,25.46125,25.464583333333334,25.467916666666667,25.47125,25.47458333333333,25.477916666666665,25.48125,25.484583333333333,25.487916666666667,25.491249999999997,25.49458333333333,25.497916666666665,25.501250000000002,25.504583333333336,25.507916666666667,25.51125,25.514583333333334,25.517916666666668,25.521250000000002,25.524583333333332,25.527916666666666,25.53125,25.534583333333334,25.537916666666668,25.541249999999998,25.544583333333332,25.547916666666666,25.55125,25.554583333333333,25.557916666666664,25.561249999999998,25.564583333333335,25.56791666666667,25.571250000000003,25.574583333333333,25.577916666666667,25.58125,25.584583333333335,25.58791666666667,25.59125,25.594583333333333,25.597916666666666,25.60125,25.604583333333334,25.607916666666664,25.61125,25.614583333333332,25.617916666666666,25.62125,25.62458333333333,25.627916666666668,25.63125,25.634583333333335,25.63791666666667,25.64125,25.644583333333333,25.647916666666667,25.65125,25.654583333333335,25.657916666666665,25.66125,25.664583333333333,25.667916666666667,25.67125,25.67458333333333,25.677916666666665,25.68125,25.684583333333332,25.68791666666667,25.69125,25.694583333333334,25.697916666666668,25.70125,25.704583333333336,25.707916666666666,25.71125,25.714583333333334,25.717916666666667,25.72125,25.72458333333333,25.727916666666665,25.73125,25.734583333333333,25.737916666666667,25.741249999999997,25.74458333333333,25.747916666666665,25.751250000000002,25.754583333333336,25.757916666666667,25.76125,25.764583333333334,25.767916666666668,25.771250000000002,25.774583333333332,25.777916666666666,25.78125,25.784583333333334,25.787916666666668,25.791249999999998,25.794583333333332,25.797916666666666,25.80125,25.804583333333333,25.807916666666664,25.811249999999998,25.814583333333335,25.81791666666667,25.821250000000003,25.824583333333333,25.827916666666667,25.83125,25.834583333333335,25.83791666666667,25.84125,25.844583333333333,25.847916666666666,25.85125,25.854583333333334,25.857916666666664,25.86125,25.864583333333332,25.867916666666666,25.87125,25.87458333333333,25.877916666666668,25.88125,25.884583333333335,25.88791666666667,25.89125,25.894583333333333,25.897916666666667,25.90125,25.904583333333335,25.907916666666665,25.91125,25.914583333333333,25.917916666666667,25.92125,25.92458333333333,25.927916666666665,25.93125,25.934583333333332,25.93791666666667,25.94125,25.944583333333334,25.947916666666668,25.95125,25.954583333333336,25.957916666666666,25.96125,25.964583333333334,25.967916666666667,25.97125,25.97458333333333,25.977916666666665,25.98125,25.984583333333333,25.987916666666667,25.991249999999997,25.99458333333333,25.997916666666665,26.001250000000002,26.004583333333336,26.007916666666667,26.01125,26.014583333333334,26.017916666666668,26.021250000000002,26.024583333333332,26.027916666666666,26.03125,26.034583333333334,26.037916666666668,26.041249999999998,26.044583333333332,26.047916666666666,26.05125,26.054583333333333,26.057916666666664,26.061249999999998,26.064583333333335,26.06791666666667,26.071250000000003,26.074583333333333,26.077916666666667,26.08125,26.084583333333335,26.08791666666667,26.09125,26.094583333333333,26.097916666666666,26.10125,26.104583333333334,26.107916666666664,26.11125,26.114583333333332,26.117916666666666,26.12125,26.12458333333333,26.127916666666668,26.13125,26.134583333333335,26.13791666666667,26.14125,26.144583333333333,26.147916666666667,26.15125,26.154583333333335,26.157916666666665,26.16125,26.164583333333333,26.167916666666667,26.17125,26.17458333333333,26.177916666666665,26.18125,26.184583333333332,26.18791666666667,26.19125,26.194583333333334,26.197916666666668,26.20125,26.204583333333336,26.207916666666666,26.21125,26.214583333333334,26.217916666666667,26.22125,26.22458333333333,26.227916666666665,26.23125,26.234583333333333,26.237916666666667,26.241249999999997,26.24458333333333,26.247916666666665,26.251250000000002,26.254583333333336,26.257916666666667,26.26125,26.264583333333334,26.267916666666668,26.271250000000002,26.274583333333332,26.277916666666666,26.28125,26.284583333333334,26.287916666666668,26.291249999999998,26.294583333333332,26.297916666666666,26.30125,26.304583333333333,26.307916666666664,26.311249999999998,26.314583333333335,26.31791666666667,26.321250000000003,26.324583333333333,26.327916666666667,26.33125,26.334583333333335,26.33791666666667,26.34125,26.344583333333333,26.347916666666666,26.35125,26.354583333333334,26.357916666666664,26.36125,26.364583333333332,26.367916666666666,26.37125,26.37458333333333,26.377916666666668,26.38125,26.384583333333335,26.38791666666667,26.39125,26.394583333333333,26.397916666666667,26.40125,26.404583333333335,26.407916666666665,26.41125,26.414583333333333,26.417916666666667,26.42125,26.42458333333333,26.427916666666665,26.43125,26.434583333333332,26.43791666666667,26.44125,26.444583333333334,26.447916666666668,26.45125,26.454583333333336,26.457916666666666,26.46125,26.464583333333334,26.467916666666667,26.47125,26.47458333333333,26.477916666666665,26.48125,26.484583333333333,26.487916666666667,26.491249999999997,26.49458333333333,26.497916666666665,26.501250000000002,26.504583333333336,26.507916666666667,26.51125,26.514583333333334,26.517916666666668,26.521250000000002,26.524583333333332,26.527916666666666,26.53125,26.534583333333334,26.537916666666668,26.541249999999998,26.544583333333332,26.547916666666666,26.55125,26.554583333333333,26.557916666666664,26.561249999999998,26.564583333333335,26.56791666666667,26.571250000000003,26.574583333333333,26.577916666666667,26.58125,26.584583333333335,26.58791666666667,26.59125,26.594583333333333,26.597916666666666,26.60125,26.604583333333334,26.607916666666664,26.61125,26.614583333333332,26.617916666666666,26.62125,26.62458333333333,26.627916666666668,26.63125,26.634583333333335,26.63791666666667,26.64125,26.644583333333333,26.647916666666667,26.65125,26.654583333333335,26.657916666666665,26.66125,26.664583333333333,26.667916666666667,26.67125,26.67458333333333,26.677916666666665,26.68125,26.684583333333332,26.68791666666667,26.69125,26.694583333333334,26.697916666666668,26.70125,26.704583333333336,26.707916666666666,26.71125,26.714583333333334,26.717916666666667,26.72125,26.72458333333333,26.727916666666665,26.73125,26.734583333333333,26.737916666666667,26.741249999999997,26.74458333333333,26.747916666666665,26.751250000000002,26.754583333333336,26.757916666666667,26.76125,26.764583333333334,26.767916666666668,26.771250000000002,26.774583333333332,26.777916666666666,26.78125,26.784583333333334,26.787916666666668,26.791249999999998,26.794583333333332,26.797916666666666,26.80125,26.804583333333333,26.807916666666664,26.811249999999998,26.814583333333335,26.81791666666667,26.821250000000003,26.824583333333333,26.827916666666667,26.83125,26.834583333333335,26.83791666666667,26.84125,26.844583333333333,26.847916666666666,26.85125,26.854583333333334,26.857916666666664,26.86125,26.864583333333332,26.867916666666666,26.87125,26.87458333333333,26.877916666666668,26.88125,26.884583333333335,26.88791666666667,26.89125,26.894583333333333,26.897916666666667,26.90125,26.904583333333335,26.907916666666665,26.91125,26.914583333333333,26.917916666666667,26.92125,26.92458333333333,26.927916666666665,26.93125,26.934583333333332,26.93791666666667,26.94125,26.944583333333334,26.947916666666668,26.95125,26.954583333333336,26.957916666666666,26.96125,26.964583333333334,26.967916666666667,26.97125,26.97458333333333,26.977916666666665,26.98125,26.984583333333333,26.987916666666667,26.991249999999997,26.99458333333333,26.997916666666665,27.001250000000002,27.004583333333336,27.007916666666667,27.01125,27.014583333333334,27.017916666666668,27.021250000000002,27.024583333333332,27.027916666666666,27.03125,27.034583333333334,27.037916666666668,27.041249999999998,27.044583333333332,27.047916666666666,27.05125,27.054583333333333,27.057916666666664,27.061249999999998,27.064583333333335,27.06791666666667,27.071250000000003,27.074583333333333,27.077916666666667,27.08125,27.084583333333335,27.08791666666667,27.09125,27.094583333333333,27.097916666666666,27.10125,27.104583333333334,27.107916666666664,27.11125,27.114583333333332,27.117916666666666,27.12125,27.12458333333333,27.127916666666668,27.13125,27.134583333333335,27.13791666666667,27.14125,27.144583333333333,27.147916666666667,27.15125,27.154583333333335,27.157916666666665,27.16125,27.164583333333333,27.167916666666667,27.17125,27.17458333333333,27.177916666666665,27.18125,27.184583333333332,27.18791666666667,27.19125,27.194583333333334,27.197916666666668,27.20125,27.204583333333336,27.207916666666666,27.21125,27.214583333333334,27.217916666666667,27.22125,27.22458333333333,27.227916666666665,27.23125,27.234583333333333,27.237916666666667,27.241249999999997,27.24458333333333,27.247916666666665,27.251250000000002,27.254583333333336,27.257916666666667,27.26125,27.264583333333334,27.267916666666668,27.271250000000002,27.274583333333332,27.277916666666666,27.28125,27.284583333333334,27.287916666666668,27.291249999999998,27.294583333333332,27.297916666666666,27.30125,27.304583333333333,27.307916666666664,27.311249999999998,27.314583333333335,27.31791666666667,27.321250000000003,27.324583333333333,27.327916666666667,27.33125,27.334583333333335,27.33791666666667,27.34125,27.344583333333333,27.347916666666666,27.35125,27.354583333333334,27.357916666666664,27.36125,27.364583333333332,27.367916666666666,27.37125,27.37458333333333,27.377916666666668,27.38125,27.384583333333335,27.38791666666667,27.39125,27.394583333333333,27.397916666666667,27.40125,27.404583333333335,27.407916666666665,27.41125,27.414583333333333,27.417916666666667,27.42125,27.42458333333333,27.427916666666665,27.43125,27.434583333333332,27.43791666666667,27.44125,27.444583333333334,27.447916666666668,27.45125,27.454583333333336,27.457916666666666,27.46125,27.464583333333334,27.467916666666667,27.47125,27.47458333333333,27.477916666666665,27.48125,27.484583333333333,27.487916666666667,27.491249999999997,27.49458333333333,27.497916666666665,27.501250000000002,27.504583333333336,27.507916666666667,27.51125,27.514583333333334,27.517916666666668,27.521250000000002,27.524583333333332,27.527916666666666,27.53125,27.534583333333334,27.537916666666668,27.541249999999998,27.544583333333332,27.547916666666666,27.55125,27.554583333333333,27.557916666666664,27.561249999999998,27.564583333333335,27.56791666666667,27.571250000000003,27.574583333333333,27.577916666666667,27.58125,27.584583333333335,27.58791666666667,27.59125,27.594583333333333,27.597916666666666,27.60125,27.604583333333334,27.607916666666664,27.61125,27.614583333333332,27.617916666666666,27.62125,27.62458333333333,27.627916666666668,27.63125,27.634583333333335,27.63791666666667,27.64125,27.644583333333333,27.647916666666667,27.65125,27.654583333333335,27.657916666666665,27.66125,27.664583333333333,27.667916666666667,27.67125,27.67458333333333,27.677916666666665,27.68125,27.684583333333332,27.68791666666667,27.69125,27.694583333333334,27.697916666666668,27.70125,27.704583333333336,27.707916666666666,27.71125,27.714583333333334,27.717916666666667,27.72125,27.72458333333333,27.727916666666665,27.73125,27.734583333333333,27.737916666666667,27.741249999999997,27.74458333333333,27.747916666666665,27.751250000000002,27.754583333333336,27.757916666666667,27.76125,27.764583333333334,27.767916666666668,27.771250000000002,27.774583333333332,27.777916666666666,27.78125,27.784583333333334,27.787916666666668,27.791249999999998,27.794583333333332,27.797916666666666,27.80125,27.804583333333333,27.807916666666664,27.811249999999998,27.814583333333335,27.81791666666667,27.821250000000003,27.824583333333333,27.827916666666667,27.83125,27.834583333333335,27.83791666666667,27.84125,27.844583333333333,27.847916666666666,27.85125,27.854583333333334,27.857916666666664,27.86125,27.864583333333332,27.867916666666666,27.87125,27.87458333333333,27.877916666666668,27.88125,27.884583333333335,27.88791666666667,27.89125,27.894583333333333,27.897916666666667,27.90125,27.904583333333335,27.907916666666665,27.91125,27.914583333333333,27.917916666666667,27.92125,27.92458333333333,27.927916666666665,27.93125,27.934583333333332,27.93791666666667,27.94125,27.944583333333334,27.947916666666668,27.95125,27.954583333333336,27.957916666666666,27.96125,27.964583333333334,27.967916666666667,27.97125,27.97458333333333,27.977916666666665,27.98125,27.984583333333333,27.987916666666667,27.991249999999997,27.99458333333333,27.997916666666665,28.001250000000002,28.004583333333336,28.007916666666667,28.01125,28.014583333333334,28.017916666666668,28.021250000000002,28.024583333333332,28.027916666666666,28.03125,28.034583333333334,28.037916666666668,28.041249999999998,28.044583333333332,28.047916666666666,28.05125,28.054583333333333,28.057916666666664,28.061249999999998,28.064583333333335,28.06791666666667,28.071250000000003,28.074583333333333,28.077916666666667,28.08125,28.084583333333335,28.08791666666667,28.09125,28.094583333333333,28.097916666666666,28.10125,28.104583333333334,28.107916666666664,28.11125,28.114583333333332,28.117916666666666,28.12125,28.12458333333333,28.127916666666668,28.13125,28.134583333333335,28.13791666666667,28.14125,28.144583333333333,28.147916666666667,28.15125,28.154583333333335,28.157916666666665,28.16125,28.164583333333333,28.167916666666667,28.17125,28.17458333333333,28.177916666666665,28.18125,28.184583333333332,28.18791666666667,28.19125,28.194583333333334,28.197916666666668,28.20125,28.204583333333336,28.207916666666666,28.21125,28.214583333333334,28.217916666666667,28.22125,28.22458333333333,28.227916666666665,28.23125,28.234583333333333,28.237916666666667,28.241249999999997,28.24458333333333,28.247916666666665,28.251250000000002,28.254583333333336,28.257916666666667,28.26125,28.264583333333334,28.267916666666668,28.271250000000002,28.274583333333332,28.277916666666666,28.28125,28.284583333333334,28.287916666666668,28.291249999999998,28.294583333333332,28.297916666666666,28.30125,28.304583333333333,28.307916666666664,28.311249999999998,28.314583333333335,28.31791666666667,28.321250000000003,28.324583333333333,28.327916666666667,28.33125,28.334583333333335,28.33791666666667,28.34125,28.344583333333333,28.347916666666666,28.35125,28.354583333333334,28.357916666666664,28.36125,28.364583333333332,28.367916666666666,28.37125,28.37458333333333,28.377916666666668,28.38125,28.384583333333335,28.38791666666667,28.39125,28.394583333333333,28.397916666666667,28.40125,28.404583333333335,28.407916666666665,28.41125,28.414583333333333,28.417916666666667,28.42125,28.42458333333333,28.427916666666665,28.43125,28.434583333333332,28.43791666666667,28.44125,28.444583333333334,28.447916666666668,28.45125,28.454583333333336,28.457916666666666,28.46125,28.464583333333334,28.467916666666667,28.47125,28.47458333333333,28.477916666666665,28.48125,28.484583333333333,28.487916666666667,28.491249999999997,28.49458333333333,28.497916666666665,28.501250000000002,28.504583333333336,28.507916666666667,28.51125,28.514583333333334,28.517916666666668,28.521250000000002,28.524583333333332,28.527916666666666,28.53125,28.534583333333334,28.537916666666668,28.541249999999998,28.544583333333332,28.547916666666666,28.55125,28.554583333333333,28.557916666666664,28.561249999999998,28.564583333333335,28.56791666666667,28.571250000000003,28.574583333333333,28.577916666666667,28.58125,28.584583333333335,28.58791666666667,28.59125,28.594583333333333,28.597916666666666,28.60125,28.604583333333334,28.607916666666664,28.61125,28.614583333333332,28.617916666666666,28.62125,28.62458333333333,28.627916666666668,28.63125,28.634583333333335,28.63791666666667,28.64125,28.644583333333333,28.647916666666667,28.65125,28.654583333333335,28.657916666666665,28.66125,28.664583333333333,28.667916666666667,28.67125,28.67458333333333,28.677916666666665,28.68125,28.684583333333332,28.68791666666667,28.69125,28.694583333333334,28.697916666666668,28.70125,28.704583333333336,28.707916666666666,28.71125,28.714583333333334,28.717916666666667,28.72125,28.72458333333333,28.727916666666665,28.73125,28.734583333333333,28.737916666666667,28.741249999999997,28.74458333333333,28.747916666666665,28.751250000000002,28.754583333333336,28.757916666666667,28.76125,28.764583333333334,28.767916666666668,28.771250000000002,28.774583333333332,28.777916666666666,28.78125,28.784583333333334,28.787916666666668,28.791249999999998,28.794583333333332,28.797916666666666,28.80125,28.804583333333333,28.807916666666664,28.811249999999998,28.814583333333335,28.81791666666667,28.821250000000003,28.824583333333333,28.827916666666667,28.83125,28.834583333333335,28.83791666666667,28.84125,28.844583333333333,28.847916666666666,28.85125,28.854583333333334,28.857916666666664,28.86125,28.864583333333332,28.867916666666666,28.87125,28.87458333333333,28.877916666666668,28.88125,28.884583333333335,28.88791666666667,28.89125,28.894583333333333,28.897916666666667,28.90125,28.904583333333335,28.907916666666665,28.91125,28.914583333333333,28.917916666666667,28.92125,28.92458333333333,28.927916666666665,28.93125,28.934583333333332,28.93791666666667,28.94125,28.944583333333334,28.947916666666668,28.95125,28.954583333333336,28.957916666666666,28.96125,28.964583333333334,28.967916666666667,28.97125,28.97458333333333,28.977916666666665,28.98125,28.984583333333333,28.987916666666667,28.991249999999997,28.99458333333333,28.997916666666665,29.001250000000002,29.004583333333336,29.007916666666667,29.01125,29.014583333333334,29.017916666666668,29.021250000000002,29.024583333333332,29.027916666666666,29.03125,29.034583333333334,29.037916666666668,29.041249999999998,29.044583333333332,29.047916666666666,29.05125,29.054583333333333,29.057916666666664,29.061249999999998,29.064583333333335,29.06791666666667,29.071250000000003,29.074583333333333,29.077916666666667,29.08125,29.084583333333335,29.08791666666667,29.09125,29.094583333333333,29.097916666666666,29.10125,29.104583333333334,29.107916666666664,29.11125,29.114583333333332,29.117916666666666,29.12125,29.12458333333333,29.127916666666668,29.13125,29.134583333333335,29.13791666666667,29.14125,29.144583333333333,29.147916666666667,29.15125,29.154583333333335,29.157916666666665,29.16125,29.164583333333333,29.167916666666667,29.17125,29.17458333333333,29.177916666666665,29.18125,29.184583333333332,29.18791666666667,29.19125,29.194583333333334,29.197916666666668,29.20125,29.204583333333336,29.207916666666666,29.21125,29.214583333333334,29.217916666666667,29.22125,29.22458333333333,29.227916666666665,29.23125,29.234583333333333,29.237916666666667,29.241249999999997,29.24458333333333,29.247916666666665,29.251250000000002,29.254583333333336,29.257916666666667,29.26125,29.264583333333334,29.267916666666668,29.271250000000002,29.274583333333332,29.277916666666666,29.28125,29.284583333333334,29.287916666666668,29.291249999999998,29.294583333333332,29.297916666666666,29.30125,29.304583333333333,29.307916666666664,29.311249999999998,29.314583333333335,29.31791666666667,29.321250000000003,29.324583333333333,29.327916666666667,29.33125,29.334583333333335,29.33791666666667,29.34125,29.344583333333333,29.347916666666666,29.35125,29.354583333333334,29.357916666666664,29.36125,29.364583333333332,29.367916666666666,29.37125,29.37458333333333,29.377916666666668,29.38125,29.384583333333335,29.38791666666667,29.39125,29.394583333333333,29.397916666666667,29.40125,29.404583333333335,29.407916666666665,29.41125,29.414583333333333,29.417916666666667,29.42125,29.42458333333333,29.427916666666665,29.43125,29.434583333333332,29.43791666666667,29.44125,29.444583333333334,29.447916666666668,29.45125,29.454583333333336,29.457916666666666,29.46125,29.464583333333334,29.467916666666667,29.47125,29.47458333333333,29.477916666666665,29.48125,29.484583333333333,29.487916666666667,29.491249999999997,29.49458333333333,29.497916666666665,29.501250000000002,29.504583333333336,29.507916666666667,29.51125,29.514583333333334,29.517916666666668,29.521250000000002,29.524583333333332,29.527916666666666,29.53125,29.534583333333334,29.537916666666668,29.541249999999998,29.544583333333332,29.547916666666666,29.55125,29.554583333333333,29.557916666666664,29.561249999999998,29.564583333333335,29.56791666666667,29.571250000000003,29.574583333333333,29.577916666666667,29.58125,29.584583333333335,29.58791666666667,29.59125,29.594583333333333,29.597916666666666,29.60125,29.604583333333334,29.607916666666664,29.61125,29.614583333333332,29.617916666666666,29.62125,29.62458333333333,29.627916666666668,29.63125,29.634583333333335,29.63791666666667,29.64125,29.644583333333333,29.647916666666667,29.65125,29.654583333333335,29.657916666666665,29.66125,29.664583333333333,29.667916666666667,29.67125,29.67458333333333,29.677916666666665,29.68125,29.684583333333332,29.68791666666667,29.69125,29.694583333333334,29.697916666666668,29.70125,29.704583333333336,29.707916666666666,29.71125,29.714583333333334,29.717916666666667,29.72125,29.72458333333333,29.727916666666665,29.73125,29.734583333333333,29.737916666666667,29.741249999999997,29.74458333333333,29.747916666666665,29.751250000000002,29.754583333333336,29.757916666666667,29.76125,29.764583333333334,29.767916666666668,29.771250000000002,29.774583333333332,29.777916666666666,29.78125,29.784583333333334,29.787916666666668,29.791249999999998,29.794583333333332,29.797916666666666,29.80125,29.804583333333333,29.807916666666664,29.811249999999998,29.814583333333335,29.81791666666667,29.821250000000003,29.824583333333333,29.827916666666667,29.83125,29.834583333333335,29.83791666666667,29.84125,29.844583333333333,29.847916666666666,29.85125,29.854583333333334,29.857916666666664,29.86125,29.864583333333332,29.867916666666666,29.87125,29.87458333333333,29.877916666666668,29.88125,29.884583333333335,29.88791666666667,29.89125,29.894583333333333,29.897916666666667,29.90125,29.904583333333335,29.907916666666665,29.91125,29.914583333333333,29.917916666666667,29.92125,29.92458333333333,29.927916666666665,29.93125,29.934583333333332,29.93791666666667,29.94125,29.944583333333334,29.947916666666668,29.95125,29.954583333333336,29.957916666666666,29.96125,29.964583333333334,29.967916666666667,29.97125,29.97458333333333,29.977916666666665,29.98125,29.984583333333333,29.987916666666667,29.991249999999997,29.99458333333333,29.997916666666665,30.001250000000002,30.004583333333336,30.007916666666667,30.01125,30.014583333333334,30.017916666666668,30.021250000000002,30.024583333333332,30.027916666666666,30.03125,30.034583333333334,30.037916666666668,30.041249999999998,30.044583333333332,30.047916666666666,30.05125,30.054583333333333,30.057916666666664,30.061249999999998,30.064583333333335,30.06791666666667,30.071250000000003,30.074583333333333,30.077916666666667,30.08125,30.084583333333335,30.08791666666667,30.09125,30.094583333333333,30.097916666666666,30.10125,30.104583333333334,30.107916666666664,30.11125,30.114583333333332,30.117916666666666,30.12125,30.12458333333333,30.127916666666668,30.13125,30.134583333333335,30.13791666666667,30.14125,30.144583333333333,30.147916666666667,30.15125,30.154583333333335,30.157916666666665,30.16125,30.164583333333333,30.167916666666667,30.17125,30.17458333333333,30.177916666666665,30.18125,30.184583333333332,30.18791666666667,30.19125,30.194583333333334,30.197916666666668,30.20125,30.204583333333336,30.207916666666666,30.21125,30.214583333333334,30.217916666666667,30.22125,30.22458333333333,30.227916666666665,30.23125,30.234583333333333,30.237916666666667,30.241249999999997,30.24458333333333,30.247916666666665,30.251250000000002,30.254583333333336,30.257916666666667,30.26125,30.264583333333334,30.267916666666668,30.271250000000002,30.274583333333332,30.277916666666666,30.28125,30.284583333333334,30.287916666666668,30.291249999999998,30.294583333333332,30.297916666666666,30.30125,30.304583333333333,30.307916666666664,30.311249999999998,30.314583333333335,30.31791666666667,30.321250000000003,30.324583333333333,30.327916666666667,30.33125,30.334583333333335,30.33791666666667,30.34125,30.344583333333333,30.347916666666666,30.35125,30.354583333333334,30.357916666666664,30.36125,30.364583333333332,30.367916666666666,30.37125,30.37458333333333,30.377916666666668,30.38125,30.384583333333335,30.38791666666667,30.39125,30.394583333333333,30.397916666666667,30.40125,30.404583333333335,30.407916666666665,30.41125,30.414583333333333,30.417916666666667,30.42125,30.42458333333333,30.427916666666665,30.43125,30.434583333333332,30.43791666666667,30.44125,30.444583333333334,30.447916666666668,30.45125,30.454583333333336,30.457916666666666,30.46125,30.464583333333334,30.467916666666667,30.47125,30.47458333333333,30.477916666666665,30.48125,30.484583333333333,30.487916666666667,30.491249999999997,30.49458333333333,30.497916666666665,30.501250000000002,30.504583333333336,30.507916666666667,30.51125,30.514583333333334,30.517916666666668,30.521250000000002,30.524583333333332,30.527916666666666,30.53125,30.534583333333334,30.537916666666668,30.541249999999998,30.544583333333332,30.547916666666666,30.55125,30.554583333333333,30.557916666666664,30.561249999999998,30.564583333333335,30.56791666666667,30.571250000000003,30.574583333333333,30.577916666666667,30.58125,30.584583333333335,30.58791666666667,30.59125,30.594583333333333,30.597916666666666,30.60125,30.604583333333334,30.607916666666664,30.61125,30.614583333333332,30.617916666666666,30.62125,30.62458333333333,30.627916666666668,30.63125,30.634583333333335,30.63791666666667,30.64125,30.644583333333333,30.647916666666667,30.65125,30.654583333333335,30.657916666666665,30.66125,30.664583333333333,30.667916666666667,30.67125,30.67458333333333,30.677916666666665,30.68125,30.684583333333332,30.68791666666667,30.69125,30.694583333333334,30.697916666666668,30.70125,30.704583333333336,30.707916666666666,30.71125,30.714583333333334,30.717916666666667,30.72125,30.72458333333333,30.727916666666665,30.73125,30.734583333333333,30.737916666666667,30.741249999999997,30.74458333333333,30.747916666666665,30.751250000000002,30.754583333333336,30.757916666666667,30.76125,30.764583333333334,30.767916666666668,30.771250000000002,30.774583333333332,30.777916666666666,30.78125,30.784583333333334,30.787916666666668,30.791249999999998,30.794583333333332,30.797916666666666,30.80125,30.804583333333333,30.807916666666664,30.811249999999998,30.814583333333335,30.81791666666667,30.821250000000003,30.824583333333333,30.827916666666667,30.83125,30.834583333333335,30.83791666666667,30.84125,30.844583333333333,30.847916666666666,30.85125,30.854583333333334,30.857916666666664,30.86125,30.864583333333332,30.867916666666666,30.87125,30.87458333333333,30.877916666666668,30.88125,30.884583333333335,30.88791666666667,30.89125,30.894583333333333,30.897916666666667,30.90125,30.904583333333335,30.907916666666665,30.91125,30.914583333333333,30.917916666666667,30.92125,30.92458333333333,30.927916666666665,30.93125,30.934583333333332,30.93791666666667,30.94125,30.944583333333334,30.947916666666668,30.95125,30.954583333333336,30.957916666666666,30.96125,30.964583333333334,30.967916666666667,30.97125,30.97458333333333,30.977916666666665,30.98125,30.984583333333333,30.987916666666667,30.991249999999997,30.99458333333333,30.997916666666665,31.001250000000002,31.004583333333336,31.007916666666667,31.01125,31.014583333333334,31.017916666666668,31.021250000000002,31.024583333333332,31.027916666666666,31.03125,31.034583333333334,31.037916666666668,31.041249999999998,31.044583333333332,31.047916666666666,31.05125,31.054583333333333,31.057916666666664,31.061249999999998,31.064583333333335,31.06791666666667,31.071250000000003,31.074583333333333,31.077916666666667,31.08125,31.084583333333335,31.08791666666667,31.09125,31.094583333333333,31.097916666666666,31.10125,31.104583333333334,31.107916666666664,31.11125,31.114583333333332,31.117916666666666,31.12125,31.12458333333333,31.127916666666668,31.13125,31.134583333333335,31.13791666666667,31.14125,31.144583333333333,31.147916666666667,31.15125,31.154583333333335,31.157916666666665,31.16125,31.164583333333333,31.167916666666667,31.17125,31.17458333333333,31.177916666666665,31.18125,31.184583333333332,31.18791666666667,31.19125,31.194583333333334,31.197916666666668,31.20125,31.204583333333336,31.207916666666666,31.21125,31.214583333333334,31.217916666666667,31.22125,31.22458333333333,31.227916666666665,31.23125,31.234583333333333,31.237916666666667,31.241249999999997,31.24458333333333,31.247916666666665,31.251250000000002,31.254583333333336,31.257916666666667,31.26125,31.264583333333334,31.267916666666668,31.271250000000002,31.274583333333332,31.277916666666666,31.28125,31.284583333333334,31.287916666666668,31.291249999999998,31.294583333333332,31.297916666666666,31.30125,31.304583333333333,31.307916666666664,31.311249999999998,31.314583333333335,31.31791666666667,31.321250000000003,31.324583333333333,31.327916666666667,31.33125,31.334583333333335,31.33791666666667,31.34125,31.344583333333333,31.347916666666666,31.35125,31.354583333333334,31.357916666666664,31.36125,31.364583333333332,31.367916666666666,31.37125,31.37458333333333,31.377916666666668,31.38125,31.384583333333335,31.38791666666667,31.39125,31.394583333333333,31.397916666666667,31.40125,31.404583333333335,31.407916666666665,31.41125,31.414583333333333,31.417916666666667,31.42125,31.42458333333333,31.427916666666665,31.43125,31.434583333333332,31.43791666666667,31.44125,31.444583333333334,31.447916666666668,31.45125,31.454583333333336,31.457916666666666,31.46125,31.464583333333334,31.467916666666667,31.47125,31.47458333333333,31.477916666666665,31.48125,31.484583333333333,31.487916666666667,31.491249999999997,31.49458333333333,31.497916666666665,31.501250000000002,31.504583333333336,31.507916666666667,31.51125,31.514583333333334,31.517916666666668,31.521250000000002,31.524583333333332,31.527916666666666,31.53125,31.534583333333334,31.537916666666668,31.541249999999998,31.544583333333332,31.547916666666666,31.55125,31.554583333333333,31.557916666666664,31.561249999999998,31.564583333333335,31.56791666666667,31.571250000000003,31.574583333333333,31.577916666666667,31.58125,31.584583333333335,31.58791666666667,31.59125,31.594583333333333,31.597916666666666,31.60125,31.604583333333334,31.607916666666664,31.61125,31.614583333333332,31.617916666666666,31.62125,31.62458333333333,31.627916666666668,31.63125,31.634583333333335,31.63791666666667,31.64125,31.644583333333333,31.647916666666667,31.65125,31.654583333333335,31.657916666666665,31.66125,31.664583333333333,31.667916666666667,31.67125,31.67458333333333,31.677916666666665,31.68125,31.684583333333332,31.68791666666667,31.69125,31.694583333333334,31.697916666666668,31.70125,31.704583333333336,31.707916666666666,31.71125,31.714583333333334,31.717916666666667,31.72125,31.72458333333333,31.727916666666665,31.73125,31.734583333333333,31.737916666666667,31.741249999999997,31.74458333333333,31.747916666666665,31.751250000000002,31.754583333333336,31.757916666666667,31.76125,31.764583333333334,31.767916666666668,31.771250000000002,31.774583333333332,31.777916666666666,31.78125,31.784583333333334,31.787916666666668,31.791249999999998,31.794583333333332,31.797916666666666,31.80125,31.804583333333333,31.807916666666664,31.811249999999998,31.814583333333335,31.81791666666667,31.821250000000003,31.824583333333333,31.827916666666667,31.83125,31.834583333333335,31.83791666666667,31.84125,31.844583333333333,31.847916666666666,31.85125,31.854583333333334,31.857916666666664,31.86125,31.864583333333332,31.867916666666666,31.87125,31.87458333333333,31.877916666666668,31.88125,31.884583333333335,31.88791666666667,31.89125,31.894583333333333,31.897916666666667,31.90125,31.904583333333335,31.907916666666665,31.91125,31.914583333333333,31.917916666666667,31.92125,31.92458333333333,31.927916666666665,31.93125,31.934583333333332,31.93791666666667,31.94125,31.944583333333334,31.947916666666668,31.95125,31.954583333333336,31.957916666666666,31.96125,31.964583333333334,31.967916666666667,31.97125,31.97458333333333,31.977916666666665,31.98125,31.984583333333333,31.987916666666667,31.991249999999997,31.99458333333333,31.997916666666665,32.00125,32.004583333333336,32.00791666666667,32.01125,32.014583333333334,32.017916666666665,32.02125,32.02458333333333,32.02791666666666,32.03125,32.03458333333334,32.03791666666667,32.04125,32.044583333333335,32.047916666666666,32.05125,32.05458333333333,32.057916666666664,32.06125,32.06458333333333,32.06791666666667,32.07125,32.07458333333333,32.07791666666667,32.08125,32.084583333333335,32.087916666666665,32.091249999999995,32.09458333333333,32.09791666666667,32.10125,32.10458333333334,32.10791666666667,32.11125,32.114583333333336,32.117916666666666,32.12125,32.124583333333334,32.127916666666664,32.13125,32.13458333333333,32.13791666666667,32.14125,32.14458333333333,32.14791666666667,32.15125,32.154583333333335,32.157916666666665,32.16125,32.16458333333333,32.16791666666667,32.17125,32.17458333333333,32.17791666666667,32.18125,32.184583333333336,32.187916666666666,32.19125,32.194583333333334,32.197916666666664,32.20125,32.20458333333333,32.20791666666666,32.21125,32.21458333333333,32.21791666666667,32.221250000000005,32.224583333333335,32.227916666666665,32.23125,32.23458333333333,32.23791666666667,32.24125,32.24458333333333,32.24791666666667,32.25125,32.254583333333336,32.25791666666667,32.26125,32.264583333333334,32.267916666666665,32.27125,32.27458333333333,32.27791666666666,32.28125,32.28458333333334,32.28791666666667,32.29125,32.294583333333335,32.297916666666666,32.30125,32.30458333333333,32.307916666666664,32.31125,32.31458333333333,32.31791666666667,32.32125,32.32458333333333,32.32791666666667,32.33125,32.334583333333335,32.337916666666665,32.341249999999995,32.34458333333333,32.34791666666667,32.35125,32.35458333333334,32.35791666666667,32.36125,32.364583333333336,32.367916666666666,32.37125,32.374583333333334,32.377916666666664,32.38125,32.38458333333333,32.38791666666667,32.39125,32.39458333333333,32.39791666666667,32.40125,32.404583333333335,32.407916666666665,32.41125,32.41458333333333,32.41791666666667,32.42125,32.42458333333333,32.42791666666667,32.43125,32.434583333333336,32.437916666666666,32.44125,32.444583333333334,32.447916666666664,32.45125,32.45458333333333,32.45791666666666,32.46125,32.46458333333333,32.46791666666667,32.471250000000005,32.474583333333335,32.477916666666665,32.48125,32.48458333333333,32.48791666666667,32.49125,32.49458333333333,32.49791666666667,32.50125,32.504583333333336,32.50791666666667,32.51125,32.514583333333334,32.517916666666665,32.52125,32.52458333333333,32.52791666666666,32.53125,32.53458333333334,32.53791666666667,32.54125,32.544583333333335,32.547916666666666,32.55125,32.55458333333333,32.557916666666664,32.56125,32.56458333333333,32.56791666666667,32.57125,32.57458333333333,32.57791666666667,32.58125,32.584583333333335,32.587916666666665,32.591249999999995,32.59458333333333,32.59791666666667,32.60125,32.60458333333334,32.60791666666667,32.61125,32.614583333333336,32.617916666666666,32.62125,32.624583333333334,32.627916666666664,32.63125,32.63458333333333,32.63791666666667,32.64125,32.64458333333333,32.64791666666667,32.65125,32.654583333333335,32.657916666666665,32.66125,32.66458333333333,32.66791666666667,32.67125,32.67458333333333,32.67791666666667,32.68125,32.684583333333336,32.687916666666666,32.69125,32.694583333333334,32.697916666666664,32.70125,32.70458333333333,32.70791666666666,32.71125,32.71458333333333,32.71791666666667,32.721250000000005,32.724583333333335,32.727916666666665,32.73125,32.73458333333333,32.73791666666667,32.74125,32.74458333333333,32.74791666666667,32.75125,32.754583333333336,32.75791666666667,32.76125,32.764583333333334,32.767916666666665,32.77125,32.77458333333333,32.77791666666666,32.78125,32.78458333333334,32.78791666666667,32.79125,32.794583333333335,32.797916666666666,32.80125,32.80458333333333,32.807916666666664,32.81125,32.81458333333333,32.81791666666667,32.82125,32.82458333333333,32.82791666666667,32.83125,32.834583333333335,32.837916666666665,32.841249999999995,32.84458333333333,32.84791666666667,32.85125,32.85458333333334,32.85791666666667,32.86125,32.864583333333336,32.867916666666666,32.87125,32.874583333333334,32.877916666666664,32.88125,32.88458333333333,32.88791666666667,32.89125,32.89458333333333,32.89791666666667,32.90125,32.904583333333335,32.907916666666665,32.91125,32.91458333333333,32.91791666666667,32.92125,32.92458333333333,32.92791666666667,32.93125,32.934583333333336,32.937916666666666,32.94125,32.944583333333334,32.947916666666664,32.95125,32.95458333333333,32.95791666666666,32.96125,32.96458333333333,32.96791666666667,32.971250000000005,32.974583333333335,32.977916666666665,32.98125,32.98458333333333,32.98791666666667,32.99125,32.99458333333333,32.99791666666667],"y":[-64402.0,-64700.0,-65004.0,-65274.0,-65495.0,-65686.0,-65880.0,-66027.0,-66143.0,-66236.0,-66371.0,-66552.0,-66745.0,-66951.0,-67217.0,-67593.0,-67954.0,-68242.0,-68461.0,-68664.0,-68863.0,-69060.0,-69275.0,-69555.0,-69901.0,-70291.0,-70654.0,-70947.0,-71239.0,-71569.0,-71915.0,-72202.0,-72459.0,-72703.0,-72938.0,-73137.0,-73309.0,-73487.0,-73666.0,-73850.0,-74018.0,-74176.0,-74365.0,-74614.0,-74944.0,-75332.0,-75765.0,-76185.0,-76568.0,-76954.0,-77333.0,-77659.0,-77870.0,-78102.0,-78446.0,-78872.0,-79269.0,-79624.0,-80024.0,-80401.0,-80668.0,-80788.0,-80868.0,-80974.0,-81101.0,-81249.0,-81441.0,-81687.0,-81963.0,-82237.0,-82460.0,-82663.0,-82850.0,-83055.0,-83291.0,-83598.0,-83967.0,-84331.0,-84723.0,-85115.0,-85505.0,-85828.0,-86154.0,-86523.0,-86824.0,-87051.0,-87215.0,-87445.0,-87716.0,-88000.0,-88363.0,-88810.0,-89296.0,-89697.0,-89988.0,-90215.0,-90380.0,-90506.0,-90630.0,-90833.0,-91132.0,-91554.0,-92083.0,-92630.0,-93125.0,-93551.0,-93969.0,-94368.0,-94698.0,-95049.0,-95476.0,-95958.0,-96405.0,-96796.0,-97215.0,-97585.0,-97876.0,-98110.0,-98389.0,-98698.0,-98962.0,-99264.0,-99690.0,-100203.0,-100703.0,-101171.0,-101666.0,-102126.0,-102496.0,-102794.0,-103061.0,-103320.0,-103552.0,-103747.0,-103899.0,-104070.0,-104286.0,-104536.0,-104789.0,-105076.0,-105429.0,-105814.0,-106200.0,-106582.0,-106985.0,-107370.0,-107739.0,-108067.0,-108331.0,-108517.0,-108660.0,-108873.0,-109137.0,-109398.0,-109658.0,-109932.0,-110206.0,-110427.0,-110607.0,-110774.0,-110982.0,-111259.0,-111628.0,-112020.0,-112362.0,-112668.0,-112933.0,-113161.0,-113323.0,-113438.0,-113583.0,-113815.0,-114079.0,-114336.0,-114571.0,-114832.0,-115142.0,-115479.0,-115861.0,-116242.0,-116604.0,-116945.0,-117284.0,-117595.0,-117892.0,-118218.0,-118588.0,-118921.0,-119151.0,-119309.0,-119424.0,-119478.0,-119489.0,-119563.0,-119756.0,-120028.0,-120325.0,-120682.0,-121073.0,-121434.0,-121734.0,-122002.0,-122268.0,-122533.0,-122818.0,-123120.0,-123424.0,-123694.0,-123898.0,-124045.0,-124169.0,-124319.0,-124482.0,-124619.0,-124733.0,-124886.0,-125105.0,-125339.0,-125551.0,-125804.0,-126129.0,-126475.0,-126769.0,-127022.0,-127257.0,-127493.0,-127754.0,-128066.0,-128426.0,-128831.0,-129299.0,-129818.0,-130339.0,-130748.0,-131027.0,-131245.0,-131460.0,-131687.0,-131913.0,-132162.0,-132443.0,-132692.0,-132909.0,-133110.0,-133298.0,-133471.0,-133609.0,-133734.0,-133834.0,-133901.0,-133992.0,-134166.0,-134412.0,-134657.0,-134920.0,-135235.0,-135566.0,-135826.0,-135999.0,-136176.0,-136343.0,-136472.0,-136593.0,-136799.0,-137146.0,-137574.0,-138044.0,-138570.0,-139122.0,-139728.0,-140505.0,-141595.0,-143119.0,-145091.0,-147587.0,-150710.0,-154576.0,-159300.0,-164951.0,-171647.0,-179493.0,-188472.0,-198514.0,-209546.0,-221489.0,-234188.0,-247500.0,-261307.0,-275382.0,-289400.0,-303119.0,-316412.0,-329146.0,-341183.0,-352397.0,-362663.0,-371729.0,-379270.0,-384968.0,-388478.0,-389516.0,-387978.0,-383963.0,-377714.0,-369505.0,-359698.0,-348679.0,-336742.0,-324134.0,-311173.0,-298262.0,-285775.0,-274046.0,-263440.0,-254284.0,-246661.0,-240385.0,-235200.0,-230881.0,-227194.0,-223840.0,-220563.0,-217250.0,-213936.0,-210637.0,-207331.0,-203953.0,-200502.0,-196999.0,-193409.0,-189712.0,-185904.0,-181991.0,-177996.0,-173969.0,-169951.0,-165946.0,-161898.0,-157822.0,-153600.0,-149001.0,-143694.0,-137211.0,-128887.0,-117605.0,-101875.0,-80198.0,-51536.0,-15768.0,26226.0,72479.0,120196.0,166466.0,208852.0,245887.0,277092.0,302953.0,324440.0,342654.0,358647.0,373294.0,387224.0,400738.0,414099.0,427476.0,440953.0,454546.0,468240.0,482094.0,496201.0,510826.0,526423.0,543677.0,563355.0,585949.0,611335.0,638543.0,665915.0,691316.0,712562.0,727971.0,736714.0,738988.0,735747.0,728260.0,717833.0,705482.0,691836.0,677177.0,661564.0,645051.0,627648.0,609503.0,590934.0,572383.0,554407.0,537535.0,522283.0,508984.0,497874.0,489163.0,483037.0,479779.0,479868.0,483997.0,493071.0,508085.0,530174.0,560587.0,600632.0,651623.0,714671.0,790684.0,880281.0,983830.0,1101238.0,1231853.0,1374466.0,1527435.0,1688691.0,1855535.0,2024837.0,2193192.0,2357146.0,2513212.0,2657889.0,2787945.0,2900491.0,2993184.0,3064254.0,3112536.0,3137565.0,3139490.0,3119102.0,3077779.0,3017357.0,2940033.0,2848195.0,2744459.0,2631531.0,2512028.0,2388411.0,2262996.0,2137988.0,2015300.0,1896493.0,1782826.0,1675323.0,1574730.0,1481442.0,1395552.0,1317017.0,1245683.0,1181277.0,1123327.0,1071320.0,1024780.0,983227.0,946073.0,912704.0,882615.0,855395.0,830646.0,807892.0,786872.0,767384.0,749258.0,732238.0,716083.0,700683.0,685921.0,671645.0,657708.0,644022.0,630601.0,617443.0,604501.0,591771.0,579264.0,567016.0,554991.0,543141.0,531439.0,519847.0,508289.0,496670.0,484956.0,473182.0,461362.0,449500.0,437634.0,425837.0,414115.0,402429.0,390691.0,378850.0,366899.0,354883.0,342895.0,331022.0,319366.0,308029.0,296996.0,286316.0,276034.0,266254.0,256958.0,248103.0,239804.0,232146.0,225167.0,218764.0,212994.0,207901.0,203490.0,199659.0,196290.0,193336.0,190795.0,188654.0,186835.0,185257.0,183927.0,182861.0,181995.0,181228.0,180454.0,179576.0,178540.0,177304.0,175824.0,174086.0,172155.0,170139.0,167969.0,165546.0,162860.0,159983.0,156923.0,153576.0,149962.0,146193.0,142369.0,138473.0,134476.0,130387.0,126256.0,122149.0,118064.0,113983.0,109816.0,105623.0,101495.0,97480.0,93513.0,89546.0,85710.0,82100.0,78661.0,75237.0,71796.0,68424.0,65141.0,61905.0,58710.0,55609.0,52664.0,49858.0,47223.0,44709.0,42267.0,39857.0,37494.0,35241.0,33050.0,30942.0,28952.0,27131.0,25470.0,23940.0,22565.0,21322.0,20147.0,19021.0,17968.0,17008.0,16092.0,15223.0,14422.0,13655.0,12950.0,12316.0,11774.0,11269.0,10740.0,10212.0,9626.0,8961.0,8237.0,7499.0,6817.0,6198.0,5653.0,5170.0,4742.0,4385.0,4097.0,3863.0,3702.0,3580.0,3473.0,3428.0,3461.0,3590.0,3757.0,3971.0,4206.0,4424.0,4628.0,4782.0,4877.0,4860.0,4746.0,4513.0,4196.0,3844.0,3471.0,3041.0,2558.0,2049.0,1521.0,963.0,380.0,-106.0,-480.0,-727.0,-821.0,-720.0,-374.0,179.0,994.0,2175.0,3733.0,5667.0,7933.0,10556.0,13482.0,16588.0,19779.0,23032.0,26353.0,29726.0,33148.0,36614.0,40102.0,43498.0,46741.0,49788.0,52619.0,55208.0,57535.0,59664.0,61594.0,63315.0,64828.0,66175.0,67448.0,68613.0,69601.0,70349.0,70879.0,71190.0,71184.0,70867.0,70312.0,69681.0,68973.0,68173.0,67311.0,66430.0,65566.0,64615.0,63516.0,62252.0,60878.0,59440.0,57980.0,56527.0,55094.0,53671.0,52215.0,50752.0,49260.0,47782.0,46323.0,44848.0,43384.0,41870.0,40349.0,38774.0,37160.0,35568.0,34002.0,32464.0,30849.0,29112.0,27285.0,25431.0,23563.0,21657.0,19752.0,17932.0,16171.0,14373.0,12543.0,10747.0,8990.0,7204.0,5373.0,3564.0,1764.0,-62.0,-1881.0,-3671.0,-5438.0,-7128.0,-8643.0,-9986.0,-11274.0,-12490.0,-13484.0,-14321.0,-15151.0,-16025.0,-16779.0,-17364.0,-17912.0,-18418.0,-18824.0,-19045.0,-19133.0,-19131.0,-19057.0,-18955.0,-18814.0,-18606.0,-18366.0,-18093.0,-17737.0,-17255.0,-16690.0,-16127.0,-15574.0,-15080.0,-14737.0,-14568.0,-14555.0,-14673.0,-14949.0,-15383.0,-15903.0,-16507.0,-17245.0,-18168.0,-19297.0,-20578.0,-22027.0,-23661.0,-25479.0,-27444.0,-29429.0,-31413.0,-33429.0,-35516.0,-37638.0,-39771.0,-42030.0,-44446.0,-46974.0,-49491.0,-51946.0,-54304.0,-56505.0,-58556.0,-60469.0,-62302.0,-64103.0,-65910.0,-67679.0,-69403.0,-71051.0,-72676.0,-74257.0,-75745.0,-77175.0,-78559.0,-79908.0,-81124.0,-82197.0,-83150.0,-83992.0,-84669.0,-85224.0,-85691.0,-86120.0,-86537.0,-86969.0,-87443.0,-87907.0,-88379.0,-88844.0,-89255.0,-89565.0,-89810.0,-90033.0,-90198.0,-90285.0,-90385.0,-90582.0,-90861.0,-91125.0,-91305.0,-91386.0,-91394.0,-91341.0,-91218.0,-91046.0,-90887.0,-90788.0,-90727.0,-90672.0,-90610.0,-90604.0,-90656.0,-90736.0,-90776.0,-90764.0,-90754.0,-90718.0,-90682.0,-90710.0,-90827.0,-91006.0,-91179.0,-91426.0,-91764.0,-92128.0,-92456.0,-92769.0,-93138.0,-93534.0,-93880.0,-94169.0,-94488.0,-94858.0,-95197.0,-95467.0,-95754.0,-96131.0,-96523.0,-96893.0,-97291.0,-97746.0,-98239.0,-98720.0,-99217.0,-99684.0,-100117.0,-100530.0,-100951.0,-101346.0,-101687.0,-102022.0,-102354.0,-102699.0,-103036.0,-103389.0,-103733.0,-104042.0,-104333.0,-104592.0,-104810.0,-104949.0,-105046.0,-105177.0,-105311.0,-105390.0,-105418.0,-105508.0,-105682.0,-105788.0,-105768.0,-105710.0,-105649.0,-105558.0,-105390.0,-105268.0,-105247.0,-105210.0,-105096.0,-104872.0,-104627.0,-104356.0,-104070.0,-103766.0,-103419.0,-103034.0,-102580.0,-102031.0,-101345.0,-100571.0,-99741.0,-98810.0,-97747.0,-96566.0,-95361.0,-94148.0,-92917.0,-91689.0,-90523.0,-89429.0,-88365.0,-87307.0,-86237.0,-85137.0,-84010.0,-82948.0,-82008.0,-81148.0,-80401.0,-79828.0,-79433.0,-79097.0,-78780.0,-78600.0,-78617.0,-78793.0,-79040.0,-79394.0,-79884.0,-80471.0,-81160.0,-82003.0,-83033.0,-84177.0,-85379.0,-86643.0,-87953.0,-89256.0,-90582.0,-92008.0,-93614.0,-95354.0,-97102.0,-98838.0,-100544.0,-102225.0,-103861.0,-105469.0,-107160.0,-108919.0,-110697.0,-112428.0,-114072.0,-115677.0,-117202.0,-118692.0,-120175.0,-121686.0,-123251.0,-124801.0,-126340.0,-127903.0,-129544.0,-131177.0,-132668.0,-134045.0,-135421.0,-136784.0,-138036.0,-139235.0,-140455.0,-141711.0,-142886.0,-143996.0,-145080.0,-146159.0,-147237.0,-148281.0,-149289.0,-150213.0,-151102.0,-151949.0,-152776.0,-153567.0,-154343.0,-155129.0,-155924.0,-156682.0,-157350.0,-157966.0,-158573.0,-159166.0,-159673.0,-160127.0,-160588.0,-161023.0,-161375.0,-161656.0,-161940.0,-162262.0,-162617.0,-162979.0,-163309.0,-163589.0,-163839.0,-164082.0,-164242.0,-164317.0,-164378.0,-164469.0,-164532.0,-164502.0,-164484.0,-164572.0,-164685.0,-164751.0,-164733.0,-164714.0,-164690.0,-164608.0,-164455.0,-164228.0,-164023.0,-163813.0,-163547.0,-163192.0,-162791.0,-162360.0,-161898.0,-161445.0,-161089.0,-160805.0,-160600.0,-160501.0,-160456.0,-160327.0,-160012.0,-159604.0,-159147.0,-158653.0,-158125.0,-157603.0,-157088.0,-156538.0,-155922.0,-155241.0,-154551.0,-153939.0,-153443.0,-153016.0,-152650.0,-152314.0,-151939.0,-151426.0,-150848.0,-150309.0,-149847.0,-149449.0,-149085.0,-148800.0,-148572.0,-148402.0,-148266.0,-148143.0,-148076.0,-148015.0,-147922.0,-147779.0,-147677.0,-147665.0,-147641.0,-147604.0,-147562.0,-147598.0,-147632.0,-147575.0,-147517.0,-147562.0,-147755.0,-147988.0,-148231.0,-148582.0,-149011.0,-149391.0,-149695.0,-149990.0,-150340.0,-150732.0,-151221.0,-151859.0,-152538.0,-153197.0,-153824.0,-154471.0,-155121.0,-155804.0,-156588.0,-157468.0,-158385.0,-159255.0,-160074.0,-160890.0,-161786.0,-162737.0,-163723.0,-164722.0,-165755.0,-166783.0,-167716.0,-168534.0,-169280.0,-170060.0,-170880.0,-171756.0,-172744.0,-173879.0,-175080.0,-176223.0,-177301.0,-178268.0,-179078.0,-179743.0,-180377.0,-181058.0,-181764.0,-182525.0,-183362.0,-184198.0,-185001.0,-185774.0,-186523.0,-187189.0,-187729.0,-188255.0,-188768.0,-189249.0,-189657.0,-190018.0,-190365.0,-190697.0,-191051.0,-191427.0,-191794.0,-192163.0,-192533.0,-192905.0,-193221.0,-193443.0,-193641.0,-193852.0,-194080.0,-194227.0,-194284.0,-194311.0,-194339.0,-194332.0,-194260.0,-194177.0,-194116.0,-194036.0,-193864.0,-193636.0,-193383.0,-193107.0,-192813.0,-192547.0,-192296.0,-191980.0,-191589.0,-191152.0,-190660.0,-190062.0,-189378.0,-188647.0,-187855.0,-186957.0,-185985.0,-184989.0,-184026.0,-183077.0,-182110.0,-181123.0,-180065.0,-178997.0,-177928.0,-176918.0,-175943.0,-174992.0,-174051.0,-173052.0,-171962.0,-170753.0,-169475.0,-168160.0,-166849.0,-165548.0,-164261.0,-163035.0,-161884.0,-160784.0,-159713.0,-158699.0,-157761.0,-156828.0,-155893.0,-154971.0,-154100.0,-153258.0,-152440.0,-151683.0,-151040.0,-150561.0,-150198.0,-149906.0,-149667.0,-149526.0,-149451.0,-149361.0,-149234.0,-149115.0,-149078.0,-149122.0,-149233.0,-149416.0,-149693.0,-150075.0,-150546.0,-151098.0,-151708.0,-152344.0,-153001.0,-153671.0,-154378.0,-155134.0,-155963.0,-156863.0,-157871.0,-158941.0,-160024.0,-161070.0,-162126.0,-163226.0,-164309.0,-165364.0,-166385.0,-167468.0,-168558.0,-169696.0,-170899.0,-172214.0,-173568.0,-174866.0,-176085.0,-177180.0,-178129.0,-178914.0,-179674.0,-180498.0,-181452.0,-182495.0,-183541.0,-184565.0,-185513.0,-186316.0,-186955.0,-187505.0,-188121.0,-188820.0,-189566.0,-190338.0,-191131.0,-191896.0,-192602.0,-193262.0,-193924.0,-194596.0,-195220.0,-195776.0,-196290.0,-196775.0,-197244.0,-197707.0,-198146.0,-198585.0,-198997.0,-199436.0,-199867.0,-200200.0,-200505.0,-200854.0,-201306.0,-201758.0,-202132.0,-202488.0,-202837.0,-203147.0,-203341.0,-203476.0,-203662.0,-203948.0,-204323.0,-204730.0,-205139.0,-205503.0,-205821.0,-206086.0,-206336.0,-206630.0,-207019.0,-207505.0,-208035.0,-208553.0,-209010.0,-209404.0,-209794.0,-210182.0,-210567.0,-210929.0,-211273.0,-211577.0,-211857.0,-212133.0,-212409.0,-212719.0,-213073.0,-213521.0,-214011.0,-214520.0,-214996.0,-215378.0,-215699.0,-215973.0,-216234.0,-216477.0,-216670.0,-216830.0,-216910.0,-216942.0,-216900.0,-216827.0,-216824.0,-216932.0,-217052.0,-217063.0,-216990.0,-216885.0,-216716.0,-216499.0,-216352.0,-216326.0,-216330.0,-216289.0,-216254.0,-216180.0,-216018.0,-215762.0,-215507.0,-215253.0,-214922.0,-214539.0,-214163.0,-213808.0,-213402.0,-212940.0,-212511.0,-212153.0,-211862.0,-211583.0,-211314.0,-211045.0,-210752.0,-210444.0,-210103.0,-209733.0,-209302.0,-208866.0,-208466.0,-208079.0,-207665.0,-207288.0,-207026.0,-206839.0,-206620.0,-206342.0,-206057.0,-205784.0,-205575.0,-205443.0,-205401.0,-205427.0,-205564.0,-205807.0,-206062.0,-206327.0,-206643.0,-207026.0,-207397.0,-207703.0,-208004.0,-208294.0,-208563.0,-208778.0,-208926.0,-209056.0,-209216.0,-209430.0,-209716.0,-210072.0,-210529.0,-211083.0,-211675.0,-212270.0,-212822.0,-213304.0,-213663.0,-213871.0,-213960.0,-214003.0,-214051.0,-214166.0,-214346.0,-214575.0,-214798.0,-214959.0,-215079.0,-215127.0,-215090.0,-214961.0,-214735.0,-214445.0,-214069.0,-213640.0,-213230.0,-212818.0,-212414.0,-211969.0,-211473.0,-210904.0,-210230.0,-209500.0,-208700.0,-207813.0,-206794.0,-205674.0,-204512.0,-203344.0,-202098.0,-200736.0,-199282.0,-197815.0,-196292.0,-194624.0,-192813.0,-190896.0,-188892.0,-186734.0,-184445.0,-182044.0,-179632.0,-177188.0,-174687.0,-172070.0,-169340.0,-166567.0,-163713.0,-160785.0,-157744.0,-154629.0,-151478.0,-148292.0,-145057.0,-141777.0,-138490.0,-135201.0,-131853.0,-128421.0,-124921.0,-121398.0,-117919.0,-114493.0,-111110.0,-107733.0,-104369.0,-101021.0,-97646.0,-94297.0,-91029.0,-87879.0,-84847.0,-81924.0,-79148.0,-76485.0,-73879.0,-71343.0,-68914.0,-66614.0,-64415.0,-62278.0,-60251.0,-58377.0,-56687.0,-55194.0,-53904.0,-52767.0,-51821.0,-51055.0,-50428.0,-49904.0,-49536.0,-49470.0,-49644.0,-49965.0,-50466.0,-51202.0,-52179.0,-53355.0,-54726.0,-56323.0,-58059.0,-59942.0,-61921.0,-64018.0,-66241.0,-68620.0,-71225.0,-73983.0,-76851.0,-79755.0,-82710.0,-85782.0,-88937.0,-92178.0,-95559.0,-99058.0,-102634.0,-106149.0,-109601.0,-113047.0,-116466.0,-119890.0,-123324.0,-126815.0,-130377.0,-133913.0,-137379.0,-140735.0,-143974.0,-147098.0,-150075.0,-152927.0,-155673.0,-158366.0,-161029.0,-163621.0,-166168.0,-168659.0,-171100.0,-173478.0,-175786.0,-178078.0,-180309.0,-182462.0,-184533.0,-186511.0,-188383.0,-190140.0,-191802.0,-193435.0,-195055.0,-196658.0,-198229.0,-199735.0,-201178.0,-202533.0,-203776.0,-204944.0,-206063.0,-207190.0,-208309.0,-209368.0,-210358.0,-211259.0,-212139.0,-212968.0,-213735.0,-214468.0,-215213.0,-216016.0,-216830.0,-217557.0,-218178.0,-218755.0,-219332.0,-219842.0,-220206.0,-220511.0,-220866.0,-221297.0,-221745.0,-222208.0,-222716.0,-223279.0,-223820.0,-224284.0,-224692.0,-225074.0,-225442.0,-225766.0,-226075.0,-226396.0,-226701.0,-226976.0,-227230.0,-227506.0,-227796.0,-228030.0,-228214.0,-228414.0,-228691.0,-228972.0,-229191.0,-229407.0,-229697.0,-230022.0,-230280.0,-230475.0,-230674.0,-230923.0,-231179.0,-231439.0,-231723.0,-232064.0,-232408.0,-232672.0,-232889.0,-233067.0,-233191.0,-233219.0,-233239.0,-233369.0,-233584.0,-233862.0,-234165.0,-234513.0,-234893.0,-235231.0,-235475.0,-235562.0,-235630.0,-235772.0,-236002.0,-236248.0,-236514.0,-236859.0,-237197.0,-237482.0,-237701.0,-237929.0,-238145.0,-238328.0,-238503.0,-238662.0,-238796.0,-238907.0,-239025.0,-239154.0,-239250.0,-239317.0,-239359.0,-239377.0,-239369.0,-239303.0,-239197.0,-239014.0,-238782.0,-238531.0,-238309.0,-238104.0,-237893.0,-237748.0,-237651.0,-237576.0,-237407.0,-237173.0,-236901.0,-236529.0,-236049.0,-235436.0,-234802.0,-234192.0,-233629.0,-233094.0,-232521.0,-231914.0,-231263.0,-230571.0,-229834.0,-229057.0,-228260.0,-227454.0,-226664.0,-225897.0,-225090.0,-224197.0,-223227.0,-222220.0,-221141.0,-219953.0,-218693.0,-217397.0,-216062.0,-214664.0,-213188.0,-211598.0,-209895.0,-208116.0,-206290.0,-204390.0,-202460.0,-200590.0,-198819.0,-197063.0,-195230.0,-193263.0,-191186.0,-189010.0,-186699.0,-184288.0,-181849.0,-179427.0,-176926.0,-174272.0,-171504.0,-168654.0,-165702.0,-162665.0,-159568.0,-156409.0,-153145.0,-149797.0,-146413.0,-142933.0,-139364.0,-135709.0,-131926.0,-127979.0,-123836.0,-119591.0,-115205.0,-110656.0,-106027.0,-101353.0,-96680.0,-91909.0,-87038.0,-82084.0,-77044.0,-71918.0,-66638.0,-61243.0,-55731.0,-50102.0,-44341.0,-38478.0,-32579.0,-26583.0,-20466.0,-14239.0,-7983.0,-1693.0,4739.0,11246.0,17805.0,24367.0,31012.0,37756.0,44565.0,51471.0,58430.0,65464.0,72550.0,79664.0,86791.0,93936.0,101136.0,108420.0,115774.0,123269.0,130859.0,138484.0,146085.0,153627.0,161154.0,168621.0,176064.0,183473.0,190882.0,198305.0,205702.0,213044.0,220270.0,227381.0,234378.0,241269.0,248106.0,254902.0,261685.0,268467.0,275186.0,281830.0,288352.0,294740.0,300969.0,307026.0,312929.0,318668.0,324207.0,329551.0,334693.0,339550.0,344118.0,348418.0,352517.0,356372.0,359938.0,363269.0,366395.0,369297.0,371936.0,374329.0,376511.0,378430.0,380049.0,381397.0,382533.0,383473.0,384192.0,384750.0,385151.0,385332.0,385169.0,384593.0,383673.0,382395.0,380779.0,378901.0,376866.0,374707.0,372339.0,369776.0,367031.0,364021.0,360717.0,357133.0,353355.0,349339.0,345048.0,340565.0,335895.0,331094.0,326138.0,321058.0,315869.0,310500.0,304941.0,299167.0,293210.0,287087.0,280835.0,274533.0,268249.0,261968.0,255682.0,249374.0,243010.0,236549.0,229988.0,223376.0,216681.0,209929.0,203165.0,196396.0,189623.0,182884.0,176264.0,169728.0,163213.0,156770.0,150440.0,144225.0,138059.0,131957.0,126010.0,120223.0,114558.0,108920.0,103323.0,97867.0,92586.0,87477.0,82465.0,77589.0,72884.0,68355.0,63980.0,59720.0,55596.0,51605.0,47786.0,44156.0,40682.0,37338.0,34135.0,31095.0,28182.0,25350.0,22614.0,20019.0,17620.0,15415.0,13400.0,11541.0,9841.0,8296.0,6894.0,5638.0,4506.0,3491.0,2581.0,1805.0,1178.0,673.0,296.0,25.0,-166.0,-353.0,-587.0,-780.0,-864.0,-774.0,-542.0,-179.0,374.0,1065.0,1834.0,2639.0,3532.0,4507.0,5491.0,6482.0,7511.0,8612.0,9805.0,11137.0,12585.0,14104.0,15661.0,17219.0,18756.0,20281.0,21913.0,23680.0,25570.0,27582.0,29671.0,31815.0,33956.0,36105.0,38225.0,40299.0,42359.0,44394.0,46363.0,48255.0,50158.0,52144.0,54225.0,56359.0,58552.0,60794.0,63053.0,65273.0,67402.0,69485.0,71544.0,73587.0,75563.0,77497.0,79443.0,81382.0,83260.0,85072.0,86881.0,88650.0,90323.0,91902.0,93429.0,94887.0,96221.0,97469.0,98698.0,99908.0,101114.0,102266.0,103362.0,104342.0,105211.0,106035.0,106788.0,107505.0,108163.0,108816.0,109428.0,109880.0,110153.0,110299.0,110365.0,110287.0,110050.0,109731.0,109407.0,109049.0,108643.0,108211.0,107738.0,107171.0,106463.0,105568.0,104472.0,103205.0,101858.0,100469.0,98992.0,97463.0,95937.0,94406.0,92744.0,90924.0,89062.0,87172.0,85187.0,83096.0,80927.0,78729.0,76434.0,74082.0,71663.0,69168.0,66603.0,63911.0,61106.0,58204.0,55286.0,52401.0,49579.0,46821.0,44061.0,41238.0,38356.0,35431.0,32452.0,29442.0,26434.0,23444.0,20436.0,17353.0,14173.0,10902.0,7602.0,4296.0,1006.0,-2178.0,-5170.0,-7983.0,-10713.0,-13430.0,-16165.0,-18970.0,-21896.0,-24922.0,-28006.0,-31098.0,-34136.0,-37038.0,-39817.0,-42580.0,-45335.0,-48066.0,-50744.0,-53419.0,-56111.0,-58755.0,-61319.0,-63767.0,-66168.0,-68603.0,-71025.0,-73394.0,-75722.0,-78036.0,-80300.0,-82463.0,-84562.0,-86600.0,-88587.0,-90583.0,-92592.0,-94614.0,-96609.0,-98598.0,-100531.0,-102373.0,-104176.0,-105966.0,-107744.0,-109513.0,-111269.0,-112997.0,-114617.0,-116145.0,-117629.0,-119068.0,-120463.0,-121832.0,-123244.0,-124626.0,-125921.0,-127147.0,-128404.0,-129704.0,-130988.0,-132268.0,-133554.0,-134795.0,-135941.0,-137011.0,-138079.0,-139123.0,-140148.0,-141165.0,-142211.0,-143265.0,-144289.0,-145260.0,-146180.0,-147110.0,-147991.0,-148806.0,-149552.0,-150324.0,-151095.0,-151860.0,-152676.0,-153575.0,-154483.0,-155338.0,-156172.0,-156970.0,-157645.0,-158160.0,-158634.0,-159106.0,-159593.0,-160106.0,-160727.0,-161434.0,-162139.0,-162853.0,-163549.0,-164155.0,-164547.0,-164783.0,-164976.0,-165193.0,-165441.0,-165740.0,-166145.0,-166649.0,-167189.0,-167660.0,-168019.0,-168263.0,-168457.0,-168608.0,-168709.0,-168813.0,-168969.0,-169205.0,-169497.0,-169835.0,-170214.0,-170501.0,-170713.0,-170920.0,-171150.0,-171304.0,-171351.0,-171436.0,-171555.0,-171548.0,-171350.0,-171073.0,-170848.0,-170655.0,-170464.0,-170326.0,-170263.0,-170278.0,-170346.0,-170427.0,-170459.0,-170378.0,-170171.0,-169820.0,-169317.0,-168766.0,-168299.0,-168000.0,-167807.0,-167670.0,-167549.0,-167332.0,-166947.0,-166432.0,-165929.0,-165491.0,-165109.0,-164788.0,-164559.0,-164322.0,-164012.0,-163599.0,-163094.0,-162555.0,-161998.0,-161503.0,-161069.0,-160684.0,-160346.0,-160006.0,-159620.0,-159168.0,-158673.0,-158163.0,-157654.0,-157140.0,-156634.0,-156163.0,-155723.0,-155322.0,-154970.0,-154691.0,-154471.0,-154222.0,-153915.0,-153595.0,-153297.0,-153039.0,-152775.0,-152484.0,-152188.0,-151901.0,-151593.0,-151235.0,-150884.0,-150658.0,-150532.0,-150404.0,-150273.0,-150192.0,-150170.0,-150179.0,-150238.0,-150371.0,-150525.0,-150641.0,-150748.0,-150907.0,-151134.0,-151413.0,-151716.0,-152041.0,-152387.0,-152711.0,-153037.0,-153373.0,-153777.0,-154271.0,-154841.0,-155491.0,-156131.0,-156750.0,-157367.0,-158023.0,-158739.0,-159423.0,-160085.0,-160763.0,-161480.0,-162224.0,-162953.0,-163724.0,-164573.0,-165487.0,-166470.0,-167542.0,-168707.0,-169915.0,-171094.0,-172279.0,-173481.0,-174630.0,-175715.0,-176727.0,-177789.0,-178909.0,-180075.0,-181286.0,-182503.0,-183804.0,-185134.0,-186464.0,-187760.0,-189069.0,-190447.0,-191862.0,-193283.0,-194663.0,-196025.0,-197412.0,-198804.0,-200160.0,-201475.0,-202834.0,-204266.0,-205695.0,-207087.0,-208488.0,-209936.0,-211419.0,-212831.0,-214131.0,-215365.0,-216568.0,-217789.0,-218989.0,-220165.0,-221349.0,-222518.0,-223707.0,-224910.0,-226111.0,-227324.0,-228586.0,-229956.0,-231386.0,-232770.0,-234097.0,-235364.0,-236542.0,-237640.0,-238717.0,-239850.0,-241009.0,-242220.0,-243494.0,-244774.0,-245950.0,-246980.0,-247881.0,-248663.0,-249341.0,-249988.0,-250651.0,-251320.0,-252024.0,-252784.0,-253633.0,-254464.0,-255228.0,-255989.0,-256741.0,-257422.0,-257986.0,-258548.0,-259181.0,-259831.0,-260490.0,-261227.0,-261995.0,-262730.0,-263406.0,-264101.0,-264779.0,-265342.0,-265829.0,-266228.0,-266533.0,-266684.0,-266818.0,-267078.0,-267454.0,-267883.0,-268275.0,-268676.0,-269017.0,-269248.0,-269401.0,-269521.0,-269653.0,-269737.0,-269783.0,-269878.0,-270056.0,-270260.0,-270433.0,-270543.0,-270633.0,-270626.0,-270470.0,-270257.0,-270104.0,-270044.0,-269962.0,-269766.0,-269480.0,-269112.0,-268628.0,-268024.0,-267316.0,-266567.0,-265707.0,-264721.0,-263946.0,-263996.0,-265395.0,-268051.0,-271580.0,-275440.0,-278886.0,-281010.0,-281154.0,-279404.0,-276273.0,-272378.0,-268178.0,-264009.0,-260033.0,-256272.0,-252704.0,-249250.0,-245904.0,-242626.0,-239462.0,-236411.0,-233495.0,-230739.0,-228141.0,-225740.0,-223553.0,-221662.0,-220097.0,-218928.0,-218187.0,-217890.0,-217989.0,-218401.0,-219070.0,-219943.0,-220910.0,-221895.0,-222891.0,-223885.0,-224805.0,-225640.0,-226493.0,-227405.0,-228353.0,-229352.0,-230415.0,-231424.0,-232278.0,-233037.0,-233799.0,-234557.0,-235295.0,-236077.0,-236939.0,-237818.0,-238630.0,-239333.0,-239944.0,-240487.0,-241041.0,-241630.0,-242291.0,-242988.0,-243725.0,-244491.0,-245229.0,-245923.0,-246545.0,-247174.0,-247822.0,-248458.0,-249059.0,-249645.0,-250226.0,-250780.0,-251326.0,-251904.0,-252524.0,-253146.0,-253753.0,-254335.0,-254871.0,-255400.0,-255920.0,-256429.0,-256924.0,-257438.0,-257996.0,-258571.0,-259153.0,-259725.0,-260257.0,-260732.0,-261151.0,-261531.0,-261903.0,-262361.0,-262919.0,-263566.0,-264242.0,-264888.0,-265472.0,-265932.0,-266352.0,-266761.0,-267162.0,-267561.0,-267966.0,-268384.0,-268712.0,-268916.0,-269043.0,-269159.0,-269281.0,-269401.0,-269559.0,-269729.0,-269876.0,-269968.0,-270019.0,-270033.0,-269990.0,-269915.0,-269773.0,-269555.0,-269191.0,-268644.0,-267898.0,-266920.0,-265773.0,-264437.0,-262929.0,-261260.0,-259442.0,-257571.0,-255668.0,-253672.0,-251517.0,-249203.0,-246823.0,-244375.0,-241795.0,-239120.0,-236428.0,-233747.0,-231074.0,-228401.0,-225801.0,-223328.0,-221050.0,-218989.0,-217073.0,-215287.0,-213636.0,-212173.0,-210848.0,-209610.0,-208425.0,-207233.0,-205988.0,-204612.0,-203159.0,-201656.0,-200069.0,-198389.0,-196592.0,-194706.0,-192642.0,-190409.0,-188172.0,-186009.0,-183986.0,-182064.0,-180346.0,-178918.0,-177810.0,-177064.0,-176634.0,-176568.0,-176832.0,-177456.0,-178398.0,-179582.0,-181001.0,-182603.0,-184396.0,-186233.0,-188041.0,-189863.0,-191730.0,-193645.0,-195577.0,-197611.0,-199793.0,-202047.0,-204347.0,-206750.0,-209309.0,-211993.0,-214745.0,-217552.0,-220396.0,-223281.0,-226193.0,-229081.0,-231903.0,-234681.0,-237415.0,-240046.0,-242520.0,-244883.0,-247185.0,-249384.0,-251438.0,-253370.0,-255234.0,-257039.0,-258754.0,-260450.0,-262216.0,-264018.0,-265755.0,-267337.0,-268797.0,-270047.0,-271040.0,-271806.0,-272406.0,-272879.0,-273271.0,-273756.0,-274361.0,-275012.0,-275639.0,-276269.0,-276918.0,-277452.0,-277798.0,-278026.0,-278286.0,-278632.0,-278981.0,-279329.0,-279673.0,-280039.0,-280362.0,-280631.0,-280873.0,-281082.0,-281299.0,-281482.0,-281663.0,-281754.0,-281755.0,-281715.0,-281651.0,-281571.0,-281432.0,-281331.0,-281266.0,-281227.0,-281211.0,-281227.0,-281252.0,-281233.0,-281197.0,-281149.0,-281100.0,-281019.0,-280900.0,-280670.0,-280265.0,-279684.0,-278939.0,-278100.0,-277239.0,-276461.0,-275781.0,-275162.0,-274595.0,-274064.0,-273516.0,-272913.0,-272272.0,-271661.0,-271076.0,-270467.0,-269823.0,-269115.0,-268376.0,-267577.0,-266741.0,-265920.0,-265107.0,-264328.0,-263519.0,-262715.0,-261955.0,-261239.0,-260588.0,-259930.0,-259275.0,-258524.0,-257660.0,-256735.0,-255774.0,-254798.0,-253804.0,-252892.0,-252032.0,-251075.0,-249964.0,-248762.0,-247546.0,-246302.0,-244985.0,-243598.0,-242117.0,-240555.0,-238879.0,-237008.0,-234958.0,-232870.0,-230890.0,-228968.0,-227023.0,-225102.0,-223238.0,-221383.0,-219460.0,-217495.0,-215590.0,-213761.0,-212011.0,-210306.0,-208642.0,-207074.0,-205608.0,-204288.0,-203124.0,-202095.0,-201182.0,-200330.0,-199586.0,-198954.0,-198348.0,-197759.0,-197213.0,-196815.0,-196531.0,-196253.0,-195991.0,-195783.0,-195678.0,-195626.0,-195557.0,-195529.0,-195596.0,-195719.0,-195754.0,-195606.0,-195324.0,-194993.0,-194625.0,-194267.0,-193960.0,-193741.0,-193618.0,-193544.0,-193499.0,-193448.0,-193401.0,-193388.0,-193413.0,-193464.0,-193570.0,-193745.0,-194037.0,-194415.0,-194838.0,-195295.0,-195741.0,-196205.0,-196670.0,-197225.0,-197917.0,-198705.0,-199595.0,-200566.0,-201634.0,-202661.0,-203553.0,-204331.0,-205018.0,-205675.0,-206273.0,-206826.0,-207314.0,-207758.0,-208157.0,-208439.0,-208586.0,-208624.0,-208635.0,-208625.0,-208597.0,-208518.0,-208352.0,-208123.0,-207822.0,-207436.0,-206965.0,-206566.0,-206386.0,-206393.0,-206499.0,-206639.0,-206848.0,-207024.0,-207122.0,-207175.0,-207278.0,-207540.0,-207934.0,-208524.0,-209218.0,-210015.0,-210904.0,-211937.0,-213121.0,-214363.0,-215679.0,-217004.0,-218316.0,-219499.0,-220595.0,-221683.0,-222814.0,-224039.0,-225343.0,-226700.0,-228038.0,-229260.0,-230340.0,-231238.0,-231961.0,-232518.0,-232853.0,-232934.0,-232738.0,-232274.0,-231501.0,-230366.0,-228870.0,-226944.0,-224438.0,-221202.0,-217070.0,-211875.0,-205317.0,-197165.0,-187088.0,-174729.0,-159679.0,-141478.0,-119662.0,-93737.0,-63258.0,-27782.0,13096.0,59698.0,112213.0,170786.0,235383.0,305826.0,381829.0,463024.0,548914.0,638848.0,732111.0,827979.0,925586.0,1024018.0,1122483.0,1220286.0,1316717.0,1411126.0,1502992.0,1591970.0,1677620.0,1759526.0,1837454.0,1911246.0,1980822.0,2046000.0,2106729.0,2162907.0,2214413.0,2261150.0,2303001.0,2339795.0,2371264.0,2397194.0,2417450.0,2431809.0,2439974.0,2441735.0,2437016.0,2425863.0,2408293.0,2384382.0,2354419.0,2318802.0,2278026.0,2232565.0,2182941.0,2129848.0,2073972.0,2016043.0,1956715.0,1896654.0,1836539.0,1776933.0,1718351.0,1661228.0,1605946.0,1552883.0,1502324.0,1454482.0,1409412.0,1367136.0,1327592.0,1290696.0,1256269.0,1224137.0,1194142.0,1166120.0,1139951.0,1115380.0,1092174.0,1070058.0,1048776.0,1028111.0,1007789.0,987603.0,967349.0,946896.0,926163.0,905016.0,883338.0,861026.0,837999.0,814216.0,789642.0,764224.0,738037.0,711177.0,683801.0,655992.0,627875.0,599654.0,571438.0,543282.0,515223.0,487369.0,459848.0,432790.0,406319.0,380593.0,355746.0,331872.0,308995.0,287135.0,266309.0,246552.0,227897.0,210385.0,194052.0,178881.0,164802.0,151672.0,139380.0,127956.0,117419.0,107776.0,98965.0,91036.0,83937.0,77481.0,71468.0,65831.0,60634.0,55893.0,51647.0,47876.0,44532.0,41481.0,38673.0,36087.0,33686.0,31436.0,29322.0,27300.0,25294.0,23203.0,21009.0,18690.0,16266.0,13788.0,11229.0,8584.0,5863.0,3088.0,244.0,-2653.0,-5549.0,-8416.0,-11344.0,-14335.0,-17345.0,-20395.0,-23475.0,-26550.0,-29475.0,-32245.0,-34870.0,-37325.0,-39632.0,-41843.0,-43966.0,-45894.0,-47556.0,-48943.0,-50057.0,-50902.0,-51511.0,-51951.0,-52249.0,-52433.0,-52461.0,-52259.0,-51782.0,-51055.0,-50125.0,-49018.0,-47755.0,-46319.0,-44755.0,-43119.0,-41485.0,-39847.0,-38206.0,-36626.0,-35217.0,-33927.0,-32682.0,-31460.0,-30368.0,-29448.0,-28565.0,-27694.0,-26860.0,-26060.0,-25265.0,-24467.0,-23690.0,-22850.0,-21846.0,-20658.0,-19224.0,-17487.0,-15408.0,-12994.0,-10223.0,-7062.0,-3496.0,510.0,5018.0,10133.0,15869.0,22215.0,29117.0,36562.0,44525.0,52913.0,61722.0,70979.0,80782.0,91120.0,101933.0,113149.0,124736.0,136760.0,149209.0,162083.0,175352.0,188994.0,202885.0,216853.0,230826.0,244802.0,258723.0,272519.0,286216.0,299844.0,313372.0,326699.0,339824.0,352730.0,365351.0,377562.0,389340.0,400610.0,411341.0,421544.0,431249.0,440515.0,449261.0,457521.0,465283.0,472490.0,479080.0,485020.0,490309.0,494927.0,498834.0,502089.0,504724.0,506665.0,507810.0,508085.0,507448.0,505793.0,503064.0,499300.0,494625.0,489069.0,482613.0,475241.0,466893.0,457601.0,447380.0,436282.0,424386.0,411738.0,398455.0,384547.0,370082.0,355132.0,339753.0,324038.0,308076.0,291995.0,275858.0,259781.0,243816.0,228000.0,212314.0,196818.0,181583.0,166577.0,151865.0,137540.0,123720.0,110382.0,97485.0,85054.0,73105.0,61640.0,50661.0,40141.0,30116.0,20645.0,11724.0,3259.0,-4876.0,-12655.0,-20031.0,-27035.0,-33691.0,-39984.0,-45876.0,-51421.0,-56731.0,-61832.0,-66752.0,-71476.0,-75990.0,-80269.0,-84284.0,-88079.0,-91671.0,-95061.0,-98226.0,-101140.0,-103839.0,-106339.0,-108585.0,-110608.0,-112448.0,-114150.0,-115650.0,-116909.0,-118002.0,-118945.0,-119751.0,-120401.0,-120955.0,-121415.0,-121772.0,-122002.0,-122094.0,-122087.0,-122049.0,-122068.0,-122203.0,-122481.0,-122962.0,-123607.0,-124336.0,-125046.0,-125724.0,-126433.0,-127205.0,-128113.0,-129167.0,-130434.0,-131898.0,-133495.0,-135126.0,-136746.0,-138450.0,-140223.0,-142054.0,-143916.0,-145864.0,-147902.0,-149972.0,-152111.0,-154309.0,-156578.0,-158883.0,-161219.0,-163575.0,-165897.0,-168216.0,-170553.0,-172965.0,-175432.0,-177902.0,-180319.0,-182662.0,-184943.0,-187108.0,-189169.0,-191161.0,-193108.0,-194963.0,-196645.0,-198148.0,-199495.0,-200657.0,-201655.0,-202461.0,-203068.0,-203469.0,-203634.0,-203628.0,-203454.0,-203167.0,-202779.0,-202281.0,-201696.0,-201023.0,-200294.0,-199564.0,-198866.0,-198218.0,-197561.0,-196902.0,-196243.0,-195572.0,-194914.0,-194275.0,-193682.0,-193149.0,-192703.0,-192359.0,-192063.0,-191813.0,-191653.0,-191624.0,-191738.0,-191985.0,-192395.0,-192975.0,-193747.0,-194713.0,-195887.0,-197286.0,-198926.0,-200787.0,-202800.0,-204929.0,-207201.0,-209643.0,-212224.0,-214916.0,-217731.0,-220649.0,-223579.0,-226447.0,-229265.0,-232086.0,-234867.0,-237526.0,-240026.0,-242434.0,-244786.0,-247061.0,-249214.0,-251230.0,-253106.0,-254768.0,-256178.0,-257335.0,-258337.0,-259287.0,-260208.0,-261068.0,-261810.0,-262411.0,-262860.0,-263105.0,-263113.0,-262922.0,-262608.0,-262218.0,-261763.0,-261210.0,-260642.0,-260087.0,-259600.0,-259147.0,-258676.0,-258240.0,-257781.0,-257284.0,-256657.0,-255920.0,-255162.0,-254398.0,-253714.0,-253108.0,-252580.0,-252096.0,-251600.0,-251147.0,-250733.0,-250392.0,-250101.0,-249873.0,-249772.0,-249789.0,-249862.0,-249917.0,-250016.0,-250232.0,-250567.0,-250947.0,-251376.0,-251951.0,-252694.0,-253544.0,-254403.0,-255268.0,-256118.0,-256876.0,-257532.0,-258150.0,-258794.0,-259475.0,-260208.0,-261040.0,-261908.0,-262677.0,-263344.0,-263959.0,-264600.0,-265200.0,-265761.0,-266365.0,-267066.0,-267886.0,-268790.0,-269814.0,-271007.0,-272389.0,-273890.0,-275390.0,-276844.0,-278301.0,-279848.0,-281506.0,-283262.0,-285102.0,-286965.0,-288746.0,-290300.0,-291601.0,-292676.0,-293531.0,-294102.0,-294316.0,-294114.0,-293339.0,-291854.0,-289554.0,-286459.0,-282549.0,-277776.0,-272116.0,-265562.0,-258147.0,-249865.0,-240783.0,-231015.0,-220672.0,-209862.0,-198679.0,-187331.0,-175942.0,-164584.0,-153355.0,-142370.0,-131720.0,-121322.0,-111123.0,-101159.0,-91411.0,-81816.0,-72270.0,-62714.0,-53134.0,-43423.0,-33567.0,-23544.0,-13411.0,-3196.0,7094.0,17358.0,27493.0,37414.0,47024.0,56143.0,64594.0,72319.0,79281.0,85431.0,90754.0,95320.0,99192.0,102367.0,104952.0,107055.0,108842.0,110461.0,112155.0,114236.0,117013.0,120838.0,126110.0,133213.0,142566.0,154597.0,169810.0,188769.0,211970.0,240033.0,273669.0,313677.0,360776.0,415647.0,478972.0,551347.0,633158.0,724694.0,826090.0,937339.0,1058295.0,1188632.0,1327847.0,1475143.0,1629578.0,1790019.0,1955144.0,2123561.0,2293845.0,2464547.0,2634219.0,2801466.0,2965043.0,3123796.0,3276708.0,3422887.0,3561528.0,3691979.0,3813710.0,3926310.0,4029462.0,4122971.0,4206788.0,4280849.0,4345074.0,4399350.0,4443576.0,4477647.0,4501426.0,4514788.0,4517584.0,4509614.0,4490655.0,4460502.0,4418972.0,4365975.0,4301547.0,4225942.0,4139509.0,4042682.0,3936082.0,3820535.0,3696973.0,3566338.0,3429671.0,3288144.0,3143052.0,2995666.0,2847251.0,2699045.0,2552275.0,2408184.0,2267846.0,2132102.0,2001669.0,1877206.0,1759243.0,1648076.0,1543820.0,1446623.0,1356527.0,1273422.0,1197106.0,1127286.0,1063657.0,1005798.0,953253.0,905599.0,862433.0,823405.0,788064.0,755973.0,726703.0,699900.0,675211.0,652251.0,630724.0,610392.0,591109.0,572703.0,554954.0,537606.0,520464.0,503409.0,486364.0,469201.0,451840.0,434288.0,416585.0,398695.0,380500.0,361911.0,342948.0,323605.0,303896.0,283869.0,263678.0,243412.0,223074.0,202757.0,182542.0,162545.0,142726.0,123133.0,103771.0,84704.0,66023.0,47742.0,29927.0,12602.0,-4104.0,-20227.0,-35854.0,-50957.0,-65488.0,-79380.0,-92663.0,-105309.0,-117261.0,-128568.0,-139299.0,-149503.0,-159148.0,-168231.0,-176797.0,-184851.0,-192346.0,-199283.0,-205702.0,-211622.0,-217012.0,-221869.0,-226200.0,-230040.0,-233471.0,-236602.0,-239482.0,-242109.0,-244526.0,-246742.0,-248765.0,-250521.0,-251982.0,-253203.0,-254223.0,-255080.0,-255722.0,-256203.0,-256544.0,-256742.0,-256821.0,-256826.0,-256811.0,-256717.0,-256641.0,-256701.0,-256926.0,-257219.0,-257517.0,-257917.0,-258468.0,-259172.0,-260022.0,-261071.0,-262313.0,-263712.0,-265256.0,-266947.0,-268797.0,-270758.0,-272863.0,-275101.0,-277416.0,-279776.0,-282186.0,-284699.0,-287323.0,-290028.0,-292817.0,-295664.0,-298552.0,-301501.0,-304493.0,-307518.0,-310536.0,-313561.0,-316588.0,-319564.0,-322448.0,-325174.0,-327710.0,-330018.0,-332086.0,-333889.0,-335394.0,-336585.0,-337403.0,-337777.0,-337631.0,-336892.0,-335488.0,-333405.0,-330702.0,-327387.0,-323384.0,-318691.0,-313427.0,-307684.0,-301371.0,-294421.0,-286895.0,-278896.0,-270403.0,-261367.0,-251885.0,-242041.0,-231855.0,-221251.0,-210271.0,-199002.0,-187479.0,-175730.0,-163789.0,-151800.0,-139860.0,-128017.0,-116303.0,-104759.0,-93478.0,-82456.0,-71692.0,-61192.0,-51014.0,-41173.0,-31682.0,-22568.0,-13848.0,-5516.0,2498.0,10229.0,17681.0,24848.0,31803.0,38607.0,45212.0,51568.0,57737.0,63829.0,69824.0,75616.0,81113.0,86234.0,90947.0,95199.0,98955.0,102188.0,104895.0,107088.0,108692.0,109630.0,109895.0,109483.0,108429.0,106729.0,104440.0,101627.0,98382.0,94833.0,91093.0,87249.0,83320.0,79394.0,75593.0,72032.0,68830.0,66124.0,64093.0,62819.0,62371.0,62784.0,64115.0,66375.0,69603.0,73865.0,79157.0,85520.0,92861.0,101159.0,110326.0,120241.0,130746.0,141700.0,153037.0,164660.0,176472.0,188381.0,200337.0,212244.0,224020.0,235613.0,246916.0,257839.0,268333.0,278442.0,288180.0,297522.0,306495.0,315173.0,323544.0,331538.0,339196.0,346576.0,353699.0,360528.0,367096.0,373397.0,379338.0,384905.0,390131.0,395023.0,399553.0,403751.0,407650.0,411177.0,414313.0,417097.0,419565.0,421685.0,423402.0,424769.0,425834.0,426636.0,427202.0,427526.0,427638.0,427576.0,427327.0,426854.0,426130.0,425148.0,423928.0,422368.0,420360.0,417779.0,414483.0,410443.0,405563.0,399792.0,393060.0,385276.0,376448.0,366555.0,355637.0,343684.0,330679.0,316738.0,301898.0,286185.0,269613.0,252263.0,234250.0,215621.0,196493.0,176998.0,157259.0,137356.0,117363.0,97376.0,77492.0,57806.0,38353.0,19193.0,399.0,-17956.0,-35895.0,-53447.0,-70528.0,-87039.0,-102943.0,-118215.0,-132785.0,-146602.0,-159721.0,-172162.0,-183940.0,-195035.0,-205510.0,-215431.0,-224804.0,-233656.0,-241943.0,-249747.0,-257072.0,-263928.0,-270343.0,-276407.0,-282199.0,-287689.0,-292875.0,-297798.0,-302519.0,-307082.0,-311528.0,-315943.0,-320341.0,-324745.0,-329166.0,-333557.0,-337888.0,-342142.0,-346377.0,-350610.0,-354783.0,-358903.0,-363026.0,-367178.0,-371353.0,-375491.0,-379580.0,-383573.0,-387396.0,-391037.0,-394514.0,-397841.0,-401017.0,-404064.0,-407023.0,-409892.0,-412620.0,-415224.0,-417733.0,-420153.0,-422475.0,-424712.0,-426899.0,-429018.0,-430974.0,-432757.0,-434393.0,-435926.0,-437361.0,-438657.0,-439877.0,-441049.0,-442131.0,-443027.0,-443638.0,-444007.0,-444090.0,-443796.0,-443049.0,-441779.0,-439980.0,-437555.0,-434485.0,-430697.0,-426156.0,-420776.0,-414389.0,-406849.0,-398082.0,-388082.0,-376774.0,-364096.0,-350048.0,-334653.0,-317876.0,-299723.0,-280248.0,-259575.0,-237838.0,-215164.0,-191638.0,-167388.0,-142628.0,-117496.0,-92138.0,-66725.0,-41480.0,-16555.0,7953.0,31794.0,54790.0,76807.0,97724.0,117359.0,135592.0,152428.0,167791.0,181577.0,193702.0,204134.0,212846.0,219757.0,224850.0,228081.0,229493.0,229195.0,227198.0,223525.0,218240.0,211516.0,203444.0,194085.0,183584.0,172150.0,159941.0,147068.0,133739.0,120119.0,106362.0,92634.0,79111.0,65971.0,53330.0,41335.0,30171.0,19922.0,10679.0,2510.0,-4515.0,-10314.0,-14931.0,-18401.0,-20717.0,-21886.0,-21998.0,-21233.0,-19653.0,-17289.0,-14288.0,-10845.0,-7113.0,-3192.0,800.0,4773.0,8630.0,12249.0,15480.0,18261.0,20460.0,21970.0,22694.0,22668.0,21953.0,20535.0,18419.0,15547.0,11926.0,7565.0,2496.0,-3233.0,-9576.0,-16485.0,-23855.0,-31654.0,-39857.0,-48404.0,-57230.0,-66272.0,-75558.0,-84986.0,-94471.0,-103990.0,-113505.0,-122882.0,-131897.0,-140447.0,-148482.0,-155961.0,-162820.0,-169000.0,-174450.0,-179072.0,-182709.0,-185207.0,-186416.0,-186236.0,-184630.0,-181588.0,-177074.0,-170966.0,-163118.0,-153456.0,-142004.0,-128807.0,-113922.0,-97408.0,-79343.0,-59772.0,-38666.0,-15987.0,8399.0,34743.0,63444.0,95079.0,130543.0,171143.0,218622.0,275207.0,343776.0,428077.0,532836.0,663977.0,828794.0,1036131.0,1296537.0,1622344.0,2027847.0,2529260.0,3144785.0,3894506.0,4800325.0,5885690.0,7175313.0,8694789.0,10469731.0,12524524.0,14880925.0,17556936.0,20565912.0,23915872.0,27609012.0,31641348.0,36002812.0,40677588.0,45644364.0,50875808.0,56337760.0,61989320.0,67784120.0,73672304.0,79602112.0,85521632.0,91380600.0,97132224.0,102734192.0,108148328.0,113339432.0,118274512.0,122923872.0,127262144.0,131267824.0,134922800.0,138212944.0,141128736.0,143664368.0,145816448.0,147583504.0,148964816.0,149960464.0,150571712.0,150801568.0,150654560.0,150135952.0,149252976.0,148014368.0,146430400.0,144512352.0,142272672.0,139726128.0,136890112.0,133785816.0,130437632.0,126872608.0,123119504.0,119208152.0,115168936.0,111031744.0,106825432.0,102577768.0,98316184.0,94068168.0,89860704.0,85719480.0,81668144.0,77727904.0,73917144.0,70250880.0,66740464.0,63393704.0,60215544.0,57208932.0,54375268.0,51714440.0,49224704.0,46903024.0,44745156.0,42745552.0,40897196.0,39191828.0,37620488.0,36173804.0,34842452.0,33617456.0,32490184.0,31452304.0,30495816.0,29613200.0,28797204.0,28040768.0,27337164.0,26680132.0,26063780.0,25482716.0,24932272.0,24408348.0,23907272.0,23425696.0,22960780.0,22510058.0,22071176.0,21642054.0,21220808.0,20805904.0,20396014.0,19990148.0,19587616.0,19187752.0,18790076.0,18394244.0,18000192.0,17607914.0,17217420.0,16828804.0,16442255.0,16058191.0,15677114.0,15299527.0,14926061.0,14557574.0,14195239.0,13840353.0,13494445.0,13159402.0,12837428.0,12531132.0,12243631.0,11978770.0,11740979.0,11535294.0,11367501.0,11244382.0,11173583.0,11163549.0,11223550.0,11363866.0,11595630.0,11930482.0,12380255.0,12956369.0,13669608.0,14529784.0,15545498.0,16723716.0,18069340.0,19585326.0,21272356.0,23128532.0,25148836.0,27324538.0,29643152.0,32088596.0,34641920.0,37281768.0,39985048.0,42727976.0,45486784.0,48238192.0,50959408.0,53628020.0,56221912.0,58719572.0,61101068.0,63348448.0,65445804.0,67379440.0,69138376.0,70714232.0,72100464.0,73291680.0,74283488.0,75072576.0,75656888.0,76035664.0,76209152.0,76178616.0,75946544.0,75516584.0,74893360.0,74082032.0,73088800.0,71921272.0,70588720.0,69102216.0,67474432.0,65719620.0,63853048.0,61890696.0,59848936.0,57744144.0,55592360.0,53409304.0,51210708.0,49012340.0,46829552.0,44676716.0,42567144.0,40512900.0,38524420.0,36610072.0,34776104.0,33026962.0,31365588.0,29793804.0,28312408.0,26921272.0,25619352.0,24404776.0,23274996.0,22226628.0,21255592.0,20357204.0,19526516.0,18758576.0,18048528.0,17391642.0,16783300.0,16219127.0,15695012.0,15207029.0,14751402.0,14324604.0,13923460.0,13545045.0,13186607.0,12845727.0,12520289.0,12208444.0,11908420.0,11618690.0,11338005.0,11065281.0,10799562.0,10539963.0,10285725.0,10036157.0,9790644.0,9548715.0,9309960.0,9073982.0,8840512.0,8609391.0,8380541.0,8153831.0,7929120.0,7706357.0,7485398.0,7266196.0,7048810.0,6833325.0,6619772.0,6408137.0,6198651.0,5991530.0,5786913.0,5584929.0,5385772.0,5189725.0,4996917.0,4807436.0,4621359.0,4438751.0,4259716.0,4084329.0,3912714.0,3744939.0,3581026.0,3421028.0,3264966.0,3112828.0,2964583.0,2820253.0,2679817.0,2543227.0,2410448.0,2281555.0,2156603.0,2035616.0,1918602.0,1805566.0,1696544.0,1591570.0,1490626.0,1393614.0,1300476.0,1211163.0,1125713.0,1043985.0,965875.0,891293.0,820208.0,752551.0,688094.0,626700.0,568219.0,512600.0,459730.0,409524.0,361840.0,316562.0,273590.0,232814.0,194149.0,157443.0,122647.0,89679.0,58494.0,29042.0,1279.0,-24768.0,-49102.0,-71757.0,-92763.0,-112186.0,-130073.0,-146457.0,-161308.0,-174522.0,-186101.0,-196028.0,-204313.0,-210936.0,-215958.0,-219452.0,-221403.0,-221842.0,-220828.0,-218470.0,-214830.0,-210039.0,-204321.0,-197835.0,-190663.0,-182925.0,-174773.0,-166295.0,-157572.0,-148795.0,-140223.0,-132004.0,-124224.0,-116993.0,-110358.0,-104333.0,-98976.0,-94340.0,-90484.0,-87414.0,-85134.0,-83592.0,-82691.0,-82426.0,-82800.0,-83844.0,-85591.0,-88036.0,-91138.0,-94786.0,-98863.0,-103277.0,-107907.0,-112689.0,-117472.0,-122187.0,-126787.0,-131158.0,-135185.0,-138701.0,-141626.0,-143758.0,-144922.0,-145059.0,-144094.0,-141924.0,-138451.0,-133717.0,-127751.0,-120462.0,-111809.0,-101813.0,-90602.0,-78244.0,-64788.0,-50316.0,-34961.0,-18914.0,-2311.0,14686.0,31927.0,49235.0,66499.0,83604.0,100417.0,116853.0,132780.0,148027.0,162391.0,175739.0,188051.0,199275.0,209380.0,218308.0,225952.0,232262.0,237178.0,240694.0,242738.0,243274.0,242382.0,240158.0,236677.0,231925.0,225912.0,218677.0,210310.0,200871.0,190403.0,178964.0,166665.0,153718.0,140230.0,126214.0,111719.0,96886.0,81880.0,66796.0,51748.0,36920.0,22480.0,8535.0,-4771.0,-17345.0,-29081.0,-39868.0,-49553.0,-57974.0,-65090.0,-70811.0,-75015.0,-77594.0,-78559.0,-77962.0,-75835.0,-72197.0,-67160.0,-60853.0,-53388.0,-44915.0,-35624.0,-25714.0,-15316.0,-4598.0,6216.0,16907.0,27296.0,37215.0,46480.0,54938.0,62499.0,69129.0,74792.0,79438.0,83017.0,85524.0,86940.0,87211.0,86336.0,84358.0,81329.0,77196.0,71922.0,65594.0,58275.0,50006.0,40779.0,30700.0,19880.0,8275.0,-4072.0,-17038.0,-30375.0,-44046.0,-57993.0,-71953.0,-85706.0,-99098.0,-112102.0,-124431.0,-135823.0,-146041.0,-154844.0,-162001.0,-167282.0,-170514.0,-171406.0,-169652.0,-164916.0,-156822.0,-144886.0,-128504.0,-106943.0,-79356.0,-44663.0,-1431.0,52141.0,118200.0,199383.0,299018.0,421186.0,570654.0,753131.0,975379.0,1245275.0,1571611.0,1964097.0,2433512.0,2991622.0,3651062.0,4425107.0,5327744.0,6373392.0,7576419.0,8950376.0,10507322.0,12257307.0,14207955.0,16364110.0,18727616.0,21297228.0,24068518.0,27033996.0,30182876.0,33500692.0,36968672.0,40563640.0,44258868.0,48024932.0,51830840.0,55645176.0,59437360.0,63178632.0,66842636.0,70405336.0,73844704.0,77140584.0,80274976.0,83232632.0,86001248.0,88571680.0,90937952.0,93096984.0,95048248.0,96792736.0,98331784.0,99666464.0,100797016.0,101723504.0,102445488.0,102962008.0,103271360.0,103371128.0,103258448.0,102929896.0,102381784.0,101610616.0,100613920.0,99391128.0,97944416.0,96278816.0,94402040.0,92324528.0,90059432.0,87622072.0,85029808.0,82301560.0,79458080.0,76521936.0,73517608.0,70471224.0,67409160.0,64357256.0,61340076.0,58380392.0,55498396.0,52711000.0,50031904.0,47472024.0,45040016.0,42742536.0,40584008.0,38566572.0,36690396.0,34953972.0,33354000.0,31885232.0,30540912.0,29313474.0,28194992.0,27177204.0,26251888.0,25411040.0,24647044.0,23952540.0,23320424.0,22743980.0,22216800.0,21732828.0,21286344.0,20872236.0,20485932.0,20123408.0,19781086.0,19455860.0,19144970.0,18845868.0,18556168.0,18273764.0,17996768.0,17723376.0,17451890.0,17180904.0,16909354.0,16636271.0,16360741.0,16081936.0,15799324.0,15512401.0,15220703.0,14923834.0,14621571.0,14313807.0,14000533.0,13681974.0,13358498.0,13030515.0,12698501.0,12363103.0,12025013.0,11684879.0,11343338.0,11001101.0,10658892.0,10317417.0,9977367.0,9639466.0,9304417.0,8972871.0,8645418.0,8322656.0,8005197.0,7693538.0,7388057.0,7089105.0,6797008.0,6512064.0,6234354.0,5964003.0,5701161.0,5445972.0,5198521.0,4958847.0,4727061.0,4503124.0,4286923.0,4078373.0,3877428.0,3683925.0,3497645.0,3318402.0,3146121.0,2980664.0,2821869.0,2669599.0,2523691.0,2383984.0,2250195.0,2122152.0,1999659.0,1882516.0,1770576.0,1663715.0,1561957.0,1465158.0,1373160.0,1285807.0,1203028.0,1124771.0,1050896.0,981284.0,915895.0,854764.0,797842.0,745104.0,696497.0,652015.0,611616.0,575227.0,542833.0,514397.0,489950.0,469431.0,452784.0,439940.0,430837.0,425385.0,423487.0,425130.0,430306.0,439053.0,451358.0,467169.0,486416.0,509063.0,535045.0,564148.0,596180.0,630994.0,668418.0,708093.0,749652.0,792749.0,836930.0,881597.0,926151.0,970106.0,1012984.0,1054322.0,1093632.0,1130518.0,1164587.0,1195445.0,1222736.0,1246131.0,1265381.0,1280320.0,1290892.0,1297129.0,1299039.0,1296665.0,1290139.0,1279582.0,1265162.0,1247011.0,1225322.0,1200304.0,1172172.0,1141173.0,1107446.0,1071147.0,1032429.0,991497.0,948596.0,903954.0,857772.0,810285.0,761778.0,712585.0,662937.0,613049.0,563246.0,513853.0,465080.0,417033.0,369916.0,324108.0,279880.0,237306.0,196468.0,157528.0,120647.0,85781.0,52841.0,21849.0,-7177.0,-34269.0,-59521.0,-82982.0,-104630.0,-124469.0,-142552.0,-158960.0,-173785.0,-187028.0,-198692.0,-208721.0,-217049.0,-223549.0,-228082.0,-230539.0,-230872.0,-229024.0,-224817.0,-218066.0,-208603.0,-196361.0,-181165.0,-162823.0,-141294.0,-116580.0,-88650.0,-57477.0,-23195.0,13952.0,53847.0,96395.0,141355.0,188415.0,237288.0,287779.0,339552.0,392143.0,445109.0,498072.0,550668.0,602443.0,652988.0,701987.0,749122.0,794049.0,836400.0,875870.0,912250.0,945343.0,975008.0,1001138.0,1023753.0,1042928.0,1058716.0,1071221.0,1080649.0,1087212.0,1091200.0,1092925.0,1092731.0,1090973.0,1088010.0,1084265.0,1080044.0,1075584.0,1071164.0,1067041.0,1063502.0,1060777.0,1059068.0,1058560.0,1059430.0,1061858.0,1065940.0,1071741.0,1079334.0,1088851.0,1100423.0,1114134.0,1130019.0,1148070.0,1168375.0,1190933.0,1215695.0,1242585.0,1271602.0,1302858.0,1336503.0,1372782.0,1411983.0,1454615.0,1501314.0,1552828.0,1610062.0,1674249.0,1747051.0,1830403.0,1926646.0,2038740.0,2170290.0,2325400.0,2508649.0,2725287.0,2981260.0,3283048.0,3637638.0,4052501.0,4535668.0,5095452.0,5740345.0,6478614.0,7317941.0,8265146.0,9325737.0,10503751.0,11801490.0,13219559.0,14756695.0,16409611.0,18172978.0,20039254.0,21998166.0,24036540.0,26138744.0,28287352.0,30463620.0,32647928.0,34820728.0,36963152.0,39057368.0,41086492.0,43034672.0,44887060.0,46630068.0,48251704.0,49741916.0,51092708.0,52298112.0,53354200.0,54258796.0,55011116.0,55611192.0,56059480.0,56356752.0,56504420.0,56504540.0,56359704.0,56072716.0,55646780.0,55085544.0,54392964.0,53573212.0,52630908.0,51571684.0,50402492.0,49131792.0,47769416.0,46326408.0,44814692.0,43246816.0,41635472.0,39993328.0,38332704.0,36665736.0,35004364.0,33360360.0,31745036.0,30168832.0,28641124.0,27170016.0,25762144.0,24422382.0,23153960.0,21958718.0,20837290.0,19789276.0,18813394.0,17907778.0,17070044.0,16297230.0,15585973.0,14932502.0,14332843.0,13782743.0,13277826.0,12813815.0,12386660.0,11992701.0,11628526.0,11290926.0,10976956.0,10683925.0,10409365.0,10150915.0,9906429.0,9674049.0,9452100.0,9239087.0,9033679.0,8834706.0,8641133.0,8452032.0,8266556.0,8083990.0,7903744.0,7725286.0,7547993.0,7371294.0,7194891.0,7018626.0,6842263.0,6665539.0,6488425.0,6310977.0,6133240.0,5955174.0,5776930.0,5598692.0,5420571.0,5242761.0,5065472.0,4889003.0,4713552.0,4539366.0,4366764.0,4196028.0,4027395.0,3861030.0,3697076.0,3535731.0,3377249.0,3221855.0,3069706.0,2920873.0,2775505.0,2633714.0,2495631.0,2361326.0,2230805.0,2104091.0,1981256.0,1862425.0,1747543.0,1636493.0,1529242.0,1425848.0,1326335.0,1230604.0,1138615.0,1050375.0,965848.0,884908.0,807375.0,733117.0,662080.0,594213.0,529463.0,467713.0,408836.0,352715.0,299201.0,248155.0,199461.0,153069.0,108923.0,66971.0,27132.0,-10720.0,-46740.0,-81014.0,-113558.0,-144428.0,-173732.0,-201521.0,-227795.0,-252602.0,-276092.0,-298360.0,-319458.0,-339436.0,-358416.0,-376453.0,-393520.0,-409615.0,-424749.0,-438979.0,-452292.0,-464719.0,-476366.0,-487319.0,-497681.0,-507457.0,-516690.0,-525386.0,-533543.0,-541174.0,-548249.0,-554828.0,-560948.0,-566743.0,-572252.0,-577507.0,-582520.0,-587338.0,-591993.0,-596439.0,-600695.0,-604792.0,-608802.0,-612706.0,-616482.0,-620120.0,-623611.0,-626977.0,-630227.0,-633386.0,-636468.0,-639489.0,-642440.0,-645288.0,-648006.0,-650560.0,-652985.0,-655270.0,-657391.0,-659285.0,-660947.0,-662361.0,-663440.0,-664149.0,-664486.0,-664440.0,-663912.0,-662791.0,-660947.0,-658228.0,-654441.0,-649375.0,-642716.0,-634126.0,-623177.0,-609299.0,-591732.0,-569548.0,-541648.0,-506604.0,-462671.0,-407779.0,-339521.0,-255012.0,-150804.0,-22932.0,133072.0,322165.0,549872.0,822193.0,1145446.0,1526239.0,1971384.0,2487876.0,3082655.0,3762331.0,4532885.0,5399265.0,6365202.0,7432910.0,8602881.0,9873936.0,11243259.0,12706522.0,14257841.0,15890014.0,17594536.0,19361340.0,21178740.0,23033670.0,24912168.0,26799750.0,28681940.0,30544876.0,32375626.0,34162516.0,35895068.0,37563748.0,39159680.0,40674564.0,42101120.0,43432956.0,44664788.0,45792356.0,46812528.0,47723256.0,48523152.0,49211312.0,49786888.0,50249124.0,50597536.0,50832096.0,50953256.0,50961728.0,50858720.0,50646016.0,50325784.0,49900472.0,49372844.0,48746528.0,48025900.0,47216344.0,46324256.0,45356976.0,44322576.0,43229392.0,42086124.0,40901544.0,39684268.0,38442548.0,37184468.0,35918212.0,34651984.0,33393620.0,32150476.0,30929354.0,29736376.0,28576670.0,27454196.0,26371980.0,25332162.0,24336324.0,23385580.0,22480680.0,21621918.0,20809130.0,20041794.0,19318990.0,18639336.0,18001010.0,17401924.0,16839804.0,16312370.0,15817382.0,15352743.0,14916402.0,14506368.0,14120704.0,13757603.0,13415257.0,13091837.0,12785566.0,12494809.0,12218075.0,11953944.0,11701186.0,11458650.0,11225306.0,11000202.0,10782549.0,10571590.0,10366553.0,10166747.0,9971551.0,9780437.0,9592903.0,9408534.0,9226995.0,9047894.0,8870889.0,8695735.0,8522228.0,8350206.0,8179474.0,8009959.0,7841616.0,7674379.0,7508222.0,7343059.0,7178843.0,7015570.0,6853312.0,6692083.0,6531834.0,6372617.0,6214566.0,6057763.0,5902258.0,5748125.0,5595505.0,5444461.0,5294992.0,5147151.0,5001030.0,4856782.0,4714432.0,4574090.0,4435866.0,4299859.0,4166087.0,4034593.0,3905482.0,3778780.0,3654589.0,3532996.0,3414117.0,3297953.0,3184529.0,3073937.0,2966136.0,2861106.0,2758827.0,2659342.0,2562647.0,2468693.0,2377517.0,2289158.0,2203572.0,2120703.0,2040489.0,1962954.0,1888059.0,1815697.0,1745809.0,1678347.0,1613346.0,1550768.0,1490655.0,1433076.0,1378098.0,1325788.0,1276185.0,1229385.0,1185480.0,1144663.0,1107253.0,1073595.0,1044096.0,1019207.0,999459.0,985458.0,977849.0,977424.0,984999.0,1001459.0,1027788.0,1065048.0,1114295.0,1176467.0,1252526.0,1343490.0,1450362.0,1574015.0,1715176.0,1874449.0,2052256.0,2248721.0,2463713.0,2696902.0,2947773.0,3215630.0,3499614.0,3798735.0,4111834.0,4437521.0,4774203.0,5120171.0,5473668.0,5832909.0,6196100.0,6561507.0,6927611.0,7293065.0,7656623.0,8017144.0,8373544.0,8724839.0,9070085.0,9408478.0,9739292.0,10061896.0,10375826.0,10680791.0,10976547.0,11262869.0,11539608.0,11806634.0,12063775.0,12310804.0,12547584.0,12774005.0,12990029.0,13195652.0,13390968.0,13576166.0,13751511.0,13917318.0,14073924.0,14221690.0,14361039.0,14492428.0,14616321.0,14733120.0,14843234.0,14947163.0,15045423.0,15138447.0,15226577.0,15310149.0,15389407.0,15464478.0,15535323.0,15601812.0,15663718.0,15720819.0,15772901.0,15819623.0,15860511.0,15895074.0,15922848.0,15943295.0,15955744.0,15959557.0,15954190.0,15939102.0,15913726.0,15877463.0,15829875.0,15770553.0,15699072.0,15615053.0,15518245.0,15408606.0,15286078.0,15150698.0,15002650.0,14842189.0,14669581.0,14485048.0,14288921.0,14081593.0,13863546.0,13635326.0,13397662.0,13151435.0,12897569.0,12636977.0,12370516.0,12099116.0,11823597.0,11544704.0,11263203.0,10979906.0,10695667.0,10411323.0,10127794.0,9846009.0,9566749.0,9290731.0,9018572.0,8750779.0,8487731.0,8229742.0,7977201.0,7730459.0,7489866.0,7255723.0,7028281.0,6807749.0,6594280.0,6387928.0,6188640.0,5996294.0,5810803.0,5632106.0,5460094.0,5294664.0,5135672.0,4983052.0,4836717.0,4696492.0,4562155.0,4433421.0,4310092.0,4191961.0,4078723.0,3970108.0,3865853.0,3765780.0,3669683.0,3577335.0,3488563.0,3403160.0,3320915.0,3241601.0,3165045.0,3091141.0,3019826.0,2950892.0,2884196.0,2819645.0,2757190.0,2696701.0,2638050.0,2581319.0,2526582.0,2473919.0,2423371.0,2375006.0,2328885.0,2285054.0,2243613.0,2204670.0,2168354.0,2134799.0,2104081.0,2076330.0,2051605.0,2029982.0,2011503.0,1996296.0,1984559.0,1976357.0,1971732.0,1970699.0,1973367.0,1979743.0,1989822.0,2003669.0,2021376.0,2042976.0,2068363.0,2097471.0,2130238.0,2166648.0,2206699.0,2250437.0,2297940.0,2349311.0,2404748.0,2464489.0,2528810.0,2598102.0,2672959.0,2754278.0,2843157.0,2940985.0,3049517.0,3171071.0,3308521.0,3465234.0,3645175.0,3853064.0,4094496.0,4375893.0,4704514.0,5088709.0,5537956.0,6062860.0,6675022.0,7386920.0,8211761.0,9162986.0,10253878.0,11497210.0,12905082.0,14488612.0,16257470.0,18219498.0,20380560.0,22744452.0,25312244.0,28081468.0,31045538.0,34193848.0,37512032.0,40982224.0,44583676.0,48293592.0,52088000.0,55942288.0,59831696.0,63731216.0,67615568.0,71459224.0,75237208.0,78925840.0,82503344.0,85950408.0,89250592.0,92390896.0,95361472.0,98155128.0,100766304.0,103190384.0,105423472.0,107462656.0,109306064.0,110952520.0,112401152.0,113651392.0,114702992.0,115555264.0,116206528.0,116654016.0,116894448.0,116924720.0,116742008.0,116343872.0,115728280.0,114893912.0,113840496.0,112568624.0,111079920.0,109377552.0,107466760.0,105355504.0,103054488.0,100577240.0,97939872.0,95160440.0,92258568.0,89254688.0,86169744.0,83024544.0,79839576.0,76635192.0,73431704.0,70249368.0,67107556.0,64024408.0,61016432.0,58098240.0,55282160.0,52577912.0,49992848.0,47532272.0,45199704.0,42997276.0,40925884.0,38985156.0,37173480.0,35488232.0,33925940.0,32482014.0,31150850.0,29926216.0,28801632.0,27770444.0,26825992.0,25961864.0,25171836.0,24449832.0,23789896.0,23186308.0,22633628.0,22126640.0,21660424.0,21230412.0,20832384.0,20462562.0,20117562.0,19794290.0,19489936.0,19202012.0,18928362.0,18666990.0,18415972.0,18173612.0,17938452.0,17709092.0,17484228.0,17262768.0,17043820.0,16826470.0,16609782.0,16392961.0,16175386.0,15956391.0,15735305.0,15511559.0,15284702.0,15054360.0,14820146.0,14581781.0,14339041.0,14091742.0,13839812.0,13583323.0,13322440.0,13057290.0,12787986.0,12514774.0,12238012.0,11958047.0,11675183.0,11389802.0,11102456.0,10813689.0,10523978.0,10233804.0,9943706.0,9654273.0,9365973.0,9079259.0,8794541.0,8512234.0,8232767.0,7956508.0,7683849.0,7415179.0,7150876.0,6891234.0,6636391.0,6386544.0,6141930.0,5902774.0,5669230.0,5441375.0,5219344.0,5003233.0,4793111.0,4588976.0,4390813.0,4198664.0,4012524.0,3832351.0,3658082.0,3489640.0,3326940.0,3169837.0,3018294.0,2872225.0,2731483.0,2595947.0,2465513.0,2340107.0,2219576.0,2103837.0,1992801.0,1886326.0,1784277.0,1686582.0,1593167.0,1503903.0,1418661.0,1337393.0,1259973.0,1186259.0,1116113.0,1049418.0,986076.0,925961.0,869042.0,815227.0,764445.0,716669.0,671837.0,629837.0,590465.0,553627.0,519246.0,487192.0,457313.0,429462.0,403605.0,379683.0,357522.0,336924.0,317691.0,299699.0,282772.0,266718.0,251387.0,236671.0,222523.0,208878.0,195666.0,182770.0,170158.0,157757.0,145490.0,133238.0,120959.0,108634.0,96183.0,83616.0,70910.0,58067.0,44965.0,31537.0,17819.0,3761.0,-10617.0,-25300.0,-40137.0,-55031.0,-69973.0,-84953.0,-99948.0,-114947.0,-129890.0,-144712.0,-159328.0,-173688.0,-187733.0,-201374.0,-214531.0,-227129.0,-239038.0,-250090.0,-260150.0,-269076.0,-276760.0,-283110.0,-288082.0,-291578.0,-293495.0,-293711.0,-292188.0,-288833.0,-283617.0,-276502.0,-267430.0,-256503.0,-243801.0,-229488.0,-213662.0,-196507.0,-178314.0,-159277.0,-139576.0,-119389.0,-98971.0,-78611.0,-58494.0,-38813.0,-19800.0,-1720.0,15287.0,31096.0,45650.0,58848.0,70614.0,80934.0,89762.0,97142.0,102961.0,107138.0,109645.0,110493.0,109725.0,107357.0,103471.0,98132.0,91413.0,83361.0,73985.0,63285.0,51299.0,38085.0,23678.0,8155.0,-8300.0,-25418.0,-43049.0,-61009.0,-79117.0,-97191.0,-115156.0,-132978.0,-150473.0,-167471.0,-183883.0,-199625.0,-214636.0,-228879.0,-242363.0,-255089.0,-266984.0,-278045.0,-288242.0,-297582.0,-306151.0,-313998.0,-321124.0,-327519.0,-333225.0,-338262.0,-342594.0,-346264.0,-349427.0,-352112.0,-354280.0,-355966.0,-357275.0,-358195.0,-358645.0,-358669.0,-358397.0,-357875.0,-357036.0,-355925.0,-354590.0,-353072.0,-351410.0,-349658.0,-347875.0,-346044.0,-344246.0,-342575.0,-341022.0,-339605.0,-338409.0,-337562.0,-337011.0,-336708.0,-336682.0,-336964.0,-337488.0,-338202.0,-339183.0,-340451.0,-342009.0,-343796.0,-345862.0,-348205.0,-350817.0,-353651.0,-356618.0,-359664.0,-362735.0,-365847.0,-368949.0,-372018.0,-374991.0,-377838.0,-380510.0,-382948.0,-385146.0,-387066.0,-388647.0,-389877.0,-390705.0,-391071.0,-390787.0,-389748.0,-387988.0,-385464.0,-382141.0,-377962.0,-372986.0,-367205.0,-360587.0,-353105.0,-344759.0,-335601.0,-325651.0,-314976.0,-303670.0,-291897.0,-279802.0,-267397.0,-254724.0,-241904.0,-229039.0,-216265.0,-203638.0,-191332.0,-179507.0,-168298.0,-157782.0,-147900.0,-138692.0,-130146.0,-122275.0,-115073.0,-108597.0,-102922.0,-97993.0,-93700.0,-89931.0,-86578.0,-83476.0,-80383.0,-77107.0,-73509.0,-69307.0,-64008.0,-56979.0,-47553.0,-34966.0,-18288.0,3517.0,31606.0,67207.0,111627.0,166231.0,232449.0,311576.0,404702.0,512705.0,636249.0,775582.0,930443.0,1100177.0,1283731.0,1479557.0,1685591.0,1899476.0,2118706.0,2340538.0,2561983.0,2780077.0,2992116.0,3195735.0,3388789.0,3569506.0,3736634.0,3889376.0,4027283.0,4150116.0,4257878.0,4350818.0,4429281.0,4493640.0,4544197.0,4581248.0,4604989.0,4615519.0,4612851.0,4597004.0,4567980.0,4525867.0,4471015.0,4404014.0,4325752.0,4237316.0,4140125.0,4035786.0,3925999.0,3812521.0,3697172.0,3581862.0,3468385.0,3358494.0,3253753.0,3155592.0,3065186.0,2983466.0,2911210.0,2848918.0,2797097.0,2756253.0,2726925.0,2709606.0,2704742.0,2712930.0,2734743.0,2770702.0,2821361.0,2887282.0,2968979.0,3066748.0,3180697.0,3310726.0,3456274.0,3616264.0,3789204.0,3973221.0,4166098.0,4365171.0,4567587.0,4770503.0,4971111.0,5166669.0,5354518.0,5532338.0,5698178.0,5850426.0,5987909.0,6109855.0,6215913.0,6305934.0,6379999.0,6438435.0,6481597.0,6509857.0,6523532.0,6523028.0,6508616.0,6480481.0,6438783.0,6383755.0,6315739.0,6235220.0,6142990.0,6040056.0,5927734.0,5807688.0,5681919.0,5552649.0,5422295.0,5293298.0,5168027.0,5048543.0,4936587.0,4833448.0,4739765.0,4655656.0,4580694.0,4513994.0,4454220.0,4399812.0,4349267.0,4301130.0,4254127.0,4207327.0,4160204.0,4112482.0,4064035.0,4015042.0,3965845.0,3916803.0,3868184.0,3820254.0,3773224.0,3727133.0,3681936.0,3637630.0,3594144.0,3551352.0,3509174.0,3467664.0,3426953.0,3387166.0,3348609.0,3311701.0,3276868.0,3244415.0,3214658.0,3187879.0,3164206.0,3143662.0,3126211.0,3111878.0,3100685.0,3092509.0,3087173.0,3084510.0,3084429.0,3086860.0,3091609.0,3098629.0,3107936.0,3119577.0,3133552.0,3149760.0,3168152.0,3188659.0,3211268.0,3235865.0,3262379.0,3290785.0,3321006.0,3352990.0,3386702.0,3422314.0,3459914.0,3499619.0,3541724.0,3586504.0,3634185.0,3684878.0,3738813.0,3796209.0,3857130.0,3921660.0,3989827.0,4061631.0,4136930.0,4215531.0,4297150.0,4381367.0,4467677.0,4555552.0,4644381.0,4733473.0,4822116.0,4909588.0,4995227.0,5078297.0,5158173.0,5234259.0,5306066.0,5373161.0,5435202.0,5491943.0,5543173.0,5588734.0,5628462.0,5662238.0,5689956.0,5711588.0,5727105.0,5736481.0,5739722.0,5736832.0,5727778.0,5712503.0,5690948.0,5663073.0,5628845.0,5588352.0,5541704.0,5488973.0,5430252.0,5365712.0,5295531.0,5219808.0,5138614.0,5052106.0,4960495.0,4863881.0,4762448.0,4656327.0,4545775.0,4430993.0,4312164.0,4189570.0,4063486.0,3934324.0,3802512.0,3668592.0,3533266.0,3397318.0,3261633.0,3127169.0,2994895.0,2865776.0,2740673.0,2620402.0,2505576.0,2396568.0,2293527.0,2196417.0,2105018.0,2018815.0,1937188.0,1859514.0,1785215.0,1713736.0,1644523.0,1577303.0,1512051.0,1448827.0,1387738.0,1328899.0,1272515.0,1218664.0,1167321.0,1118502.0,1072231.0,1028428.0,986975.0,947747.0,910615.0,875290.0,841502.0,809158.0,778182.0,748482.0,719894.0,692421.0,666003.0,640568.0,616021.0,592354.0,569616.0,547727.0,526585.0,506033.0,485944.0,466170.0,446560.0,427034.0,407507.0,387898.0,368157.0,348290.0,328362.0,308389.0,288409.0,268542.0,248972.0,229830.0,211172.0,193104.0,175814.0,159480.0,144259.0,130353.0,118025.0,107569.0,99187.0,93013.0,89077.0,87320.0,87583.0,89513.0,92644.0,96422.0,100251.0,103549.0,105746.0,106408.0,105233.0,101976.0,96560.0,89067.0,79737.0,68822.0,56548.0,43260.0,29323.0,15022.0,462.0,-14264.0,-29071.0,-43901.0,-58802.0,-73901.0,-89259.0,-104972.0,-121017.0,-137325.0,-153788.0,-170275.0,-186690.0,-202821.0,-218513.0,-233683.0,-248272.0,-262237.0,-275498.0,-288141.0,-300242.0,-311873.0,-323121.0,-334031.0,-344710.0,-355112.0,-365300.0,-375336.0,-385331.0,-395372.0,-405447.0,-415512.0,-425447.0,-435197.0,-444672.0,-453842.0,-462702.0,-471324.0,-479679.0,-487713.0,-495415.0,-502785.0,-509833.0,-516487.0,-522878.0,-529084.0,-535189.0,-541217.0,-547181.0,-553142.0,-559055.0,-564922.0,-570664.0,-576116.0,-581205.0,-585909.0,-590235.0,-594127.0,-597567.0,-600603.0,-603232.0,-605396.0,-607097.0,-608362.0,-609253.0,-609908.0,-610386.0,-610792.0,-611076.0,-611205.0,-611125.0,-610773.0,-610128.0,-609128.0,-607827.0,-606266.0,-604417.0,-602212.0,-599674.0,-596880.0,-593805.0,-590448.0,-586849.0,-583054.0,-579039.0,-574820.0,-570524.0,-566233.0,-561976.0,-557760.0,-553650.0,-549672.0,-545797.0,-541969.0,-538180.0,-534461.0,-530775.0,-527054.0,-523197.0,-519176.0,-514991.0,-510616.0,-505949.0,-500928.0,-495492.0,-489595.0,-483130.0,-476032.0,-468319.0,-460026.0,-451267.0,-442125.0,-432674.0,-422997.0,-413165.0,-403246.0,-393226.0,-383044.0,-372643.0,-361861.0,-350515.0,-338241.0,-324661.0,-309437.0,-292232.0,-272686.0,-250532.0,-225717.0,-198385.0,-168766.0,-137294.0,-104676.0,-71638.0,-39008.0,-7556.0,21944.0,48879.0,72852.0,93570.0,110939.0,124976.0,135813.0,143665.0,148845.0,151658.0,152348.0,151101.0,148168.0,143768.0,138026.0,130946.0,122644.0,113311.0,103117.0,92214.0,80767.0,69089.0,57434.0,46031.0,35069.0,24761.0,15249.0,6756.0,-539.0,-6456.0,-10914.0,-13863.0,-15237.0,-15130.0,-13644.0,-10910.0,-6972.0,-1940.0,3994.0,10624.0,17789.0,25350.0,33197.0,41173.0,49249.0,57490.0,65979.0,74851.0,84231.0,94473.0,105892.0,118798.0,133538.0,150523.0,170203.0,192947.0,219150.0,249189.0,283326.0,321688.0,364299.0,411024.0,461592.0,515635.0,572687.0,632156.0,693365.0,755616.0,818153.0,880158.0,940898.0,999685.0,1055888.0,1108973.0,1158521.0,1204241.0,1245871.0,1283286.0,1316458.0,1345434.0,1370339.0,1391399.0,1408853.0,1422881.0,1433629.0,1441315.0,1446161.0,1448291.0,1447805.0,1444829.0,1439483.0,1431779.0,1421702.0,1409260.0,1394429.0,1377165.0,1357460.0,1335344.0,1310871.0,1284062.0,1254975.0,1223730.0,1190539.0,1155684.0,1119380.0,1081829.0,1043342.0,1004306.0,965110.0,926020.0,887307.0,849322.0,812402.0,776783.0,742543.0,709762.0,678552.0,649024.0,621191.0,595038.0,570526.0,547648.0,526352.0,506526.0,488054.0,470796.0,454616.0,439330.0,424812.0,411011.0,397886.0,385364.0,373345.0,361747.0,350534.0,339683.0,329171.0,318937.0,309029.0,299526.0,290477.0,281883.0,273707.0,266022.0,258914.0,252459.0,246689.0,241512.0,236943.0,233046.0,229844.0,227248.0,225150.0,223599.0,222586.0,221996.0,221595.0,221266.0,220919.0,220491.0,219863.0,218885.0,217550.0,215918.0,214029.0,211801.0,209176.0,206228.0,203015.0,199456.0,195483.0,191126.0,186442.0,181451.0,176180.0,170735.0,165210.0,159600.0,153907.0,148087.0,142152.0,136044.0,129789.0,123468.0,117191.0,111006.0,104836.0,98716.0,92659.0,86697.0,80797.0,75025.0,69495.0,64222.0,59189.0,54367.0,49746.0,45300.0,41032.0,37009.0,33275.0,29806.0,26597.0,23644.0,20937.0,18443.0,16138.0,14075.0,12277.0,10707.0,9329.0,8141.0,7193.0,6489.0,6023.0,5816.0,5841.0,6052.0,6411.0,6923.0,7583.0,8399.0,9394.0,10546.0,11796.0,13072.0,14347.0,15597.0,16839.0,18061.0,19257.0,20398.0,21453.0,22420.0,23303.0,24158.0,24968.0,25715.0,26453.0,27211.0,27960.0,28638.0,29282.0,29995.0,30768.0,31555.0,32354.0,33221.0,34166.0,35134.0,36127.0,37202.0,38348.0,39512.0,40672.0,41881.0,43145.0,44392.0,45606.0,46867.0,48217.0,49646.0,51145.0,52792.0,54670.0,56875.0,59535.0,62832.0,67031.0,72509.0,79767.0,89354.0,101972.0,118434.0,139747.0,167057.0,201665.0,245112.0,299095.0,365490.0,446307.0,543696.0,659869.0,796934.0,956898.0,1141614.0,1352642.0,1591047.0,1857386.0,2151645.0,2473232.0,2820860.0,3192534.0,3585675.0,3997084.0,4423037.0,4859331.0,5301415.0,5744570.0,6183987.0,6615022.0,7033253.0,7434611.0,7815454.0,8172746.0,8504094.0,8807731.0,9082433.0,9327514.0,9542916.0,9729062.0,9886722.0,10016789.0,10120394.0,10198798.0,10253285.0,10285062.0,10295192.0,10284711.0,10254489.0,10205368.0,10137977.0,10052779.0,9950188.0,9830584.0,9694448.0,9542185.0,9374461.0,9192086.0,8996145.0,8787955.0,8569091.0,8341361.0,8106714.0,7867429.0,7626001.0,7385071.0,7147404.0,6915983.0,6693931.0,6484454.0,6290897.0,6116850.0,5966014.0,5842241.0,5749660.0,5692662.0,5675859.0,5703998.0,5782013.0,5914954.0,6107808.0,6365403.0,6692181.0,7092152.0,7568774.0,8124720.0,8761660.0,9480121.0,10279532.0,11158032.0,12112265.0,13137334.0,14226831.0,15372913.0,16566348.0,17796744.0,19052852.0,20322796.0,21594410.0,22855504.0,24094210.0,25299136.0,26459552.0,27565780.0,28609332.0,29583022.0,30480922.0,31298436.0,32032294.0,32680328.0,33241464.0,33715640.0,34103616.0,34406840.0,34627316.0,34767544.0,34830096.0,34817428.0,34731904.0,34575692.0,34350856.0,34059252.0,33702764.0,33283448.0,32803540.0,32265512.0,31672048.0,31026224.0,30331668.0,29592276.0,28812316.0,27996460.0,27149812.0,26277688.0,25385404.0,24478496.0,23562572.0,22643202.0,21725748.0,20815300.0,19916706.0,19034420.0,18172426.0,17334190.0,16522569.0,15740009.0,14988400.0,14269194.0,13583308.0,12931260.0,12313280.0,11729251.0,11178855.0,10661441.0,10176202.0,9722101.0,9297983.0,8902615.0,8534611.0,8192453.0,7874631.0,7579709.0,7306299.0,7052960.0,6818284.0,6601013.0,6399878.0,6213601.0,6040910.0,5880642.0,5731654.0,5592816.0,5463130.0,5341683.0,5227725.0,5120490.0,5019288.0,4923465.0,4832477.0,4745855.0,4663054.0,4583580.0,4507040.0,4433205.0,4361787.0,4292469.0,4224985.0,4159195.0,4094946.0,4032025.0,3970236.0,3909451.0,3849510.0,3790246.0,3731537.0,3673338.0,3615556.0,3558093.0,3500961.0,3444124.0,3387472.0,3330841.0,3274224.0,3217638.0,3160992.0,3104231.0,3047423.0,2990689.0,2934028.0,2877331.0,2820597.0,2763919.0,2707402.0,2651042.0,2594777.0,2538648.0,2482709.0,2426953.0,2371347.0,2315924.0,2260817.0,2206139.0,2151959.0,2098368.0,2045372.0,1992997.0,1941234.0,1890075.0,1839559.0,1789718.0,1740597.0,1692193.0,1644562.0,1597791.0,1551881.0,1506816.0,1462627.0,1419324.0,1376874.0,1335249.0,1294561.0,1254820.0,1215942.0,1177916.0,1140813.0,1104669.0,1069363.0,1034871.0,1001250.0,968474.0,936454.0,905156.0,874649.0,845002.0,816204.0,788213.0,761002.0,734561.0,708880.0,683915.0,659630.0,636089.0,613288.0,591177.0,569692.0,548823.0,528578.0,508859.0,489653.0,471028.0,453077.0,435730.0,418869.0,402498.0,386705.0,371485.0,356696.0,342291.0,328361.0,314964.0,302037.0,289490.0,277327.0,265557.0,254164.0,243177.0,232619.0,222507.0,212804.0,203493.0,194528.0,185832.0,177342.0,169023.0,160923.0,153103.0,145616.0,138416.0,131468.0,124778.0,118332.0,112103.0,105974.0,99938.0,93993.0,88174.0,82451.0,76785.0,71262.0,66000.0,61038.0,56281.0,51644.0,47120.0,42705.0,38361.0,34040.0,29788.0,25647.0,21629.0,17705.0,13837.0,10055.0,6314.0,2614.0,-1088.0,-4743.0,-8321.0,-11779.0,-15086.0,-18249.0,-21296.0,-24324.0,-27394.0,-30517.0,-33636.0,-36679.0,-39605.0,-42392.0,-45025.0,-47541.0,-49997.0,-52459.0,-54895.0,-57196.0,-59338.0,-61330.0,-63199.0,-64925.0,-66524.0,-68108.0,-69661.0,-71114.0,-72461.0,-73728.0,-74978.0,-76127.0,-77152.0,-78143.0,-79094.0,-79988.0,-80683.0,-81215.0,-81656.0,-82020.0,-82239.0,-82255.0,-82089.0,-81731.0,-81175.0,-80379.0,-79336.0,-78037.0,-76506.0,-74796.0,-72934.0,-70846.0,-68485.0,-65829.0,-62902.0,-59635.0,-55952.0,-51942.0,-47682.0,-43240.0,-38571.0,-33695.0,-28615.0,-23251.0,-17634.0,-11828.0,-5938.0,32.0,6082.0,12106.0,18065.0,23959.0,29853.0,35725.0,41508.0,47213.0,52778.0,58141.0,63178.0,67814.0,72086.0,75979.0,79612.0,83035.0,86353.0,89608.0,92677.0,95462.0,97889.0,99935.0,101553.0,102769.0,103737.0,104527.0,105121.0,105550.0,105835.0,105922.0,105696.0,105201.0,104498.0,103638.0,102605.0,101424.0,100131.0,98700.0,97100.0,95289.0,93297.0,91150.0,88848.0,86430.0,83955.0,81421.0,78745.0,75834.0,72736.0,69505.0,66147.0,62688.0,59172.0,55713.0,52267.0,48797.0,45295.0,41785.0,38281.0,34749.0,31233.0,27792.0,24452.0,21205.0,18054.0,15006.0,12015.0,9037.0,6093.0,3214.0,444.0,-2191.0,-4685.0,-7110.0,-9535.0,-11902.0,-14183.0,-16404.0,-18598.0,-20715.0,-22694.0,-24580.0,-26445.0,-28335.0,-30195.0,-31963.0,-33633.0,-35256.0,-36872.0,-38473.0,-40063.0,-41680.0,-43344.0,-45008.0,-46598.0,-48075.0,-49452.0,-50756.0,-52052.0,-53400.0,-54782.0,-56099.0,-57326.0,-58470.0,-59467.0,-60310.0,-61092.0,-61972.0,-62953.0,-63947.0,-64950.0,-65933.0,-66872.0,-67666.0,-68289.0,-68787.0,-69221.0,-69667.0,-70124.0,-70570.0,-71008.0,-71449.0,-71875.0,-72217.0,-72434.0,-72617.0,-72773.0,-72939.0,-73100.0,-73267.0,-73476.0,-73689.0,-73957.0,-74249.0,-74522.0,-74754.0,-74927.0,-75139.0,-75403.0,-75725.0,-76108.0,-76534.0,-76992.0,-77378.0,-77724.0,-78105.0,-78546.0,-79049.0,-79585.0,-80185.0,-80812.0,-81398.0,-81937.0,-82432.0,-82933.0,-83457.0,-84015.0,-84595.0,-85223.0,-85921.0,-86677.0,-87396.0,-88061.0,-88721.0,-89402.0,-90099.0,-90779.0,-91534.0,-92341.0,-93133.0,-93822.0,-94424.0,-95010.0,-95565.0,-96131.0,-96759.0,-97498.0,-98312.0,-99142.0,-99933.0,-100648.0,-101268.0,-101848.0,-102442.0,-103053.0,-103628.0,-104120.0,-104584.0,-105034.0,-105529.0,-106035.0,-106536.0,-107072.0,-107604.0,-108120.0,-108498.0,-108737.0,-108951.0,-109154.0,-109330.0,-109397.0,-109383.0,-109370.0,-109400.0,-109417.0,-109391.0,-109316.0,-109223.0,-109072.0,-108820.0,-108549.0,-108266.0,-107966.0,-107611.0,-107218.0,-106768.0,-106202.0,-105569.0,-104932.0,-104291.0,-103598.0,-102819.0,-102018.0,-101212.0,-100377.0,-99443.0,-98357.0,-97206.0,-96033.0,-94849.0,-93595.0,-92328.0,-91169.0,-90124.0,-89119.0,-88102.0,-87115.0,-86179.0,-85259.0,-84334.0,-83394.0,-82439.0,-81490.0,-80584.0,-79711.0,-78847.0,-77973.0,-77176.0,-76498.0,-75904.0,-75296.0,-74624.0,-73964.0,-73331.0,-72733.0,-72173.0,-71704.0,-71339.0,-71001.0,-70636.0,-70248.0,-69877.0,-69603.0,-69401.0,-69264.0,-69161.0,-69078.0,-69015.0,-68922.0,-68881.0,-68910.0,-68963.0,-68958.0,-68907.0,-68871.0,-68846.0,-68781.0,-68708.0,-68749.0,-68953.0,-69279.0,-69572.0,-69821.0,-70070.0,-70338.0,-70553.0,-70657.0,-70785.0,-71036.0,-71382.0,-71719.0,-72021.0,-72336.0,-72665.0,-72957.0,-73225.0,-73492.0,-73798.0,-74168.0,-74610.0,-75110.0,-75615.0,-76088.0,-76463.0,-76744.0,-76918.0,-77091.0,-77320.0,-77642.0,-78023.0,-78409.0,-78806.0,-79132.0,-79383.0,-79556.0,-79762.0,-80014.0,-80315.0,-80657.0,-81028.0,-81455.0,-81899.0,-82398.0,-82934.0,-83496.0,-84057.0,-84543.0,-84934.0,-85222.0,-85408.0,-85522.0,-85637.0,-85837.0,-86101.0,-86362.0,-86606.0,-86854.0,-87068.0,-87176.0,-87204.0,-87201.0,-87197.0,-87181.0,-87169.0,-87176.0,-87216.0,-87262.0,-87287.0,-87257.0,-87167.0,-87048.0,-86843.0,-86556.0,-86234.0,-85914.0,-85554.0,-85116.0,-84707.0,-84373.0,-84050.0,-83631.0,-83140.0,-82613.0,-82076.0,-81507.0,-80892.0,-80299.0,-79747.0,-79240.0,-78606.0,-77821.0,-76967.0,-76135.0,-75332.0,-74509.0,-73753.0,-73103.0,-72539.0,-71936.0,-71236.0,-70452.0,-69642.0,-68823.0,-68045.0,-67357.0,-66772.0,-66223.0,-65667.0,-65125.0,-64564.0,-63941.0,-63246.0,-62538.0,-61826.0,-61083.0,-60325.0,-59593.0,-58888.0,-58192.0,-57513.0,-56873.0,-56279.0,-55721.0,-55199.0,-54734.0,-54319.0,-53913.0,-53452.0,-52948.0,-52462.0,-52021.0,-51582.0,-51139.0,-50727.0,-50370.0,-50016.0,-49651.0,-49320.0,-49035.0,-48750.0,-48418.0,-48113.0,-47889.0,-47691.0,-47462.0,-47189.0,-46934.0,-46636.0,-46251.0,-45864.0,-45555.0,-45343.0,-45152.0,-45020.0,-44934.0,-44789.0,-44586.0,-44413.0,-44329.0,-44222.0,-44051.0,-43919.0,-43865.0,-43849.0,-43836.0,-43887.0,-44014.0,-44142.0,-44201.0,-44176.0,-44120.0,-44074.0,-44031.0,-43999.0,-43991.0,-44084.0,-44254.0,-44424.0,-44597.0,-44807.0,-45077.0,-45290.0,-45370.0,-45380.0,-45406.0,-45467.0,-45511.0,-45532.0,-45615.0,-45827.0,-46123.0,-46437.0,-46742.0,-47034.0,-47315.0,-47519.0,-47615.0,-47620.0,-47627.0,-47709.0,-47813.0,-47865.0,-47875.0,-47894.0,-47929.0,-47939.0,-47937.0,-48020.0,-48186.0,-48349.0,-48424.0,-48405.0,-48310.0,-48063.0,-47683.0,-47276.0,-46920.0,-46602.0,-46295.0,-46035.0,-45776.0,-45466.0,-45099.0,-44716.0,-44326.0,-43892.0,-43437.0,-43008.0,-42627.0,-42275.0,-41922.0,-41581.0,-41242.0,-40820.0,-40316.0,-39748.0,-39181.0,-38644.0,-38138.0,-37721.0,-37323.0,-36923.0,-36472.0,-35987.0,-35514.0,-35073.0,-34707.0,-34395.0,-34097.0,-33729.0,-33306.0,-32859.0,-32385.0,-31868.0,-31364.0,-30978.0,-30714.0,-30504.0,-30322.0,-30143.0,-29949.0,-29692.0,-29345.0,-28905.0,-28377.0,-27835.0,-27371.0,-27044.0,-26787.0,-26541.0,-26265.0,-26029.0,-25805.0,-25512.0,-25127.0,-24724.0,-24396.0,-24093.0,-23773.0,-23463.0,-23221.0,-23078.0,-22970.0,-22847.0,-22695.0,-22526.0,-22373.0,-22189.0,-21989.0,-21817.0,-21703.0,-21662.0,-21709.0,-21860.0,-22076.0,-22264.0,-22441.0,-22642.0,-22854.0,-23002.0,-23114.0,-23260.0,-23453.0,-23646.0,-23801.0,-23979.0,-24192.0,-24463.0,-24771.0,-25099.0,-25457.0,-25848.0,-26231.0,-26558.0,-26822.0,-27076.0,-27365.0,-27683.0,-28071.0,-28530.0,-29037.0,-29553.0,-30063.0,-30581.0,-31063.0,-31488.0,-31882.0,-32297.0,-32736.0,-33200.0,-33718.0,-34287.0,-34836.0,-35315.0,-35715.0,-36006.0,-36201.0,-36372.0,-36592.0,-36818.0,-37029.0,-37265.0,-37508.0,-37727.0,-37945.0,-38190.0,-38434.0,-38613.0,-38735.0,-38818.0,-38823.0,-38758.0,-38611.0,-38409.0,-38163.0,-37859.0,-37516.0,-37098.0,-36637.0,-36109.0,-35505.0,-34810.0,-33991.0,-33075.0,-32091.0,-31114.0,-30147.0,-29160.0,-28124.0,-27047.0,-25928.0,-24736.0,-23482.0,-22170.0,-20835.0,-19492.0,-18131.0,-16774.0,-15412.0,-14071.0,-12725.0,-11310.0,-9850.0,-8336.0,-6785.0,-5208.0,-3673.0,-2260.0,-952.0,267.0,1445.0,2668.0,3990.0,5400.0,6835.0,8298.0,9774.0,11151.0,12359.0,13441.0,14486.0,15516.0,16502.0,17483.0,18510.0,19512.0,20438.0,21239.0,21952.0,22597.0,23168.0,23700.0,24244.0,24826.0,25420.0,25963.0,26429.0,26833.0,27147.0,27360.0,27500.0,27579.0,27552.0,27405.0,27189.0,26962.0,26674.0,26352.0,26053.0,25756.0,25363.0,24854.0,24316.0,23736.0,23036.0,22217.0,21362.0,20492.0,19526.0,18407.0,17197.0,16002.0,14851.0,13672.0,12468.0,11315.0,10298.0,9349.0,8324.0,7190.0,6008.0,4865.0,3729.0,2535.0,1316.0,102.0,-1120.0,-2437.0,-3855.0,-5307.0,-6720.0,-8042.0,-9298.0,-10515.0,-11740.0,-12942.0,-14149.0,-15390.0,-16676.0,-17955.0,-19175.0,-20382.0,-21570.0,-22726.0,-23813.0,-24812.0,-25752.0,-26649.0,-27562.0,-28496.0,-29477.0,-30532.0,-31622.0,-32700.0,-33671.0,-34528.0,-35286.0,-36013.0,-36800.0,-37695.0,-38690.0,-39772.0,-40864.0,-41910.0,-42813.0,-43570.0,-44221.0,-44831.0,-45481.0,-46156.0,-46877.0,-47626.0,-48435.0,-49262.0,-50061.0,-50879.0,-51757.0,-52688.0,-53601.0,-54457.0,-55303.0,-56177.0,-57092.0,-58029.0,-58988.0,-60018.0,-61123.0,-62224.0,-63287.0,-64407.0,-65704.0,-67145.0,-68639.0,-70167.0,-71749.0,-73332.0,-74893.0,-76480.0,-78170.0,-79982.0,-81898.0,-83902.0,-85941.0,-88014.0,-90143.0,-92377.0,-94724.0,-97146.0,-99649.0,-102237.0,-104906.0,-107656.0,-110526.0,-113568.0,-116742.0,-120015.0,-123322.0,-126646.0,-129947.0,-133264.0,-136673.0,-140190.0,-143888.0,-147782.0,-151884.0,-156098.0,-160370.0,-164720.0,-169145.0,-173628.0,-178116.0,-182674.0,-187353.0,-192139.0,-197005.0,-201994.0,-207171.0,-212495.0,-217893.0,-223345.0,-228902.0,-234530.0,-240223.0,-245947.0,-251710.0,-257548.0,-263450.0,-269432.0,-275493.0,-281672.0,-288005.0,-294471.0,-301036.0,-307654.0,-314302.0,-320994.0,-327748.0,-334541.0,-341355.0,-348188.0,-355031.0,-361897.0,-368779.0,-375705.0,-382656.0,-389638.0,-396684.0,-403781.0,-410906.0,-418042.0,-425224.0,-432454.0,-439685.0,-446910.0,-454145.0,-461379.0,-468568.0,-475725.0,-482922.0,-490178.0,-497446.0,-504739.0,-512113.0,-519547.0,-526941.0,-534274.0,-541604.0,-548921.0,-556190.0,-563396.0,-570588.0,-577752.0,-584830.0,-591874.0,-598920.0,-605972.0,-612973.0,-619900.0,-626837.0,-633781.0,-640722.0,-647656.0,-654641.0,-661646.0,-668560.0,-675367.0,-682097.0,-688791.0,-695414.0,-701973.0,-708545.0,-715087.0,-721629.0,-728134.0,-734569.0,-740944.0,-747265.0,-753559.0,-759731.0,-765753.0,-771688.0,-777581.0,-783407.0,-789170.0,-794889.0,-800637.0,-806407.0,-812175.0,-817900.0,-823525.0,-829063.0,-834494.0,-839841.0,-845091.0,-850250.0,-855360.0,-860460.0,-865570.0,-870651.0,-875695.0,-880721.0,-885725.0,-890659.0,-895500.0,-900255.0,-904920.0,-909493.0,-913957.0,-918346.0,-922683.0,-926960.0,-931191.0,-935348.0,-939438.0,-943450.0,-947317.0,-951059.0,-954723.0,-958391.0,-962050.0,-965651.0,-969209.0,-972711.0,-976127.0,-979434.0,-982687.0,-985921.0,-989120.0,-992240.0,-995223.0,-998073.0,-1000807.0,-1003492.0,-1006138.0,-1008728.0,-1011295.0,-1013872.0,-1016426.0,-1018834.0,-1021100.0,-1023321.0,-1025552.0,-1027722.0,-1029783.0,-1031750.0,-1033617.0,-1035380.0,-1037070.0,-1038703.0,-1040243.0,-1041722.0,-1043213.0,-1044699.0,-1046076.0,-1047301.0,-1048476.0,-1049608.0,-1050664.0,-1051708.0,-1052856.0,-1054166.0,-1055550.0,-1056950.0,-1058328.0,-1059630.0,-1060769.0,-1061754.0,-1062645.0,-1063593.0,-1064625.0,-1065721.0,-1066863.0,-1068028.0,-1069194.0,-1070251.0,-1071185.0,-1072021.0,-1072835.0,-1073659.0,-1074474.0,-1075273.0,-1076072.0,-1076873.0,-1077625.0,-1078242.0,-1078788.0,-1079336.0,-1079860.0,-1080329.0,-1080793.0,-1081333.0,-1081868.0,-1082343.0,-1082823.0,-1083377.0,-1083954.0,-1084487.0,-1085001.0,-1085504.0,-1085941.0,-1086281.0,-1086554.0,-1086805.0,-1086989.0,-1087140.0,-1087355.0,-1087660.0,-1087979.0,-1088261.0,-1088563.0,-1088874.0,-1089089.0,-1089155.0,-1089169.0,-1089239.0,-1089345.0,-1089449.0,-1089545.0,-1089720.0,-1089935.0,-1090084.0,-1090131.0,-1090101.0,-1090058.0,-1089990.0,-1089901.0,-1089789.0,-1089694.0,-1089607.0,-1089549.0,-1089463.0,-1089353.0,-1089277.0,-1089231.0,-1089213.0,-1089137.0,-1088987.0,-1088783.0,-1088534.0,-1088238.0,-1087912.0,-1087629.0,-1087427.0,-1087236.0,-1086982.0,-1086689.0,-1086384.0,-1086080.0,-1085731.0,-1085369.0,-1085039.0,-1084717.0,-1084361.0,-1083913.0,-1083403.0,-1082825.0,-1082203.0,-1081596.0,-1081022.0,-1080423.0,-1079750.0,-1079090.0,-1078526.0,-1078049.0,-1077584.0,-1077159.0,-1076784.0,-1076375.0,-1075866.0,-1075252.0,-1074586.0,-1073868.0,-1073147.0,-1072479.0,-1071792.0,-1070992.0,-1070058.0,-1069137.0,-1068303.0,-1067527.0,-1066781.0,-1066086.0,-1065477.0,-1064848.0,-1064120.0,-1063263.0,-1062365.0,-1061471.0,-1060564.0,-1059613.0,-1058623.0,-1057642.0,-1056687.0,-1055772.0,-1054872.0,-1053973.0,-1053065.0,-1052108.0,-1051111.0,-1050071.0,-1049013.0,-1047943.0,-1046849.0,-1045739.0,-1044570.0,-1043350.0,-1042121.0,-1040928.0,-1039782.0,-1038703.0,-1037686.0,-1036712.0,-1035724.0,-1034674.0,-1033561.0,-1032377.0,-1031153.0,-1029940.0,-1028738.0,-1027552.0,-1026408.0,-1025323.0,-1024255.0,-1023093.0,-1021832.0,-1020558.0,-1019240.0,-1017858.0,-1016413.0,-1015026.0,-1013761.0,-1012546.0,-1011349.0,-1010138.0,-1008944.0,-1007730.0,-1006405.0,-1004978.0,-1003484.0,-1002004.0,-1000538.0,-999023.0,-997496.0,-995977.0,-994502.0,-993026.0,-991539.0,-990108.0,-988714.0,-987305.0,-985858.0,-984444.0,-983054.0,-981659.0,-980281.0,-978991.0,-977767.0,-976468.0,-975039.0,-973486.0,-971857.0,-970184.0,-968480.0,-966781.0,-965129.0,-963539.0,-962005.0,-960443.0,-958790.0,-957057.0,-955330.0,-953657.0,-952010.0,-950381.0,-948817.0,-947303.0,-945733.0,-944096.0,-942393.0,-940619.0,-938718.0,-936755.0,-934871.0,-933027.0,-931170.0,-929287.0,-927483.0,-925764.0,-924034.0,-922255.0,-920461.0,-918690.0,-916920.0,-915131.0,-913312.0,-911486.0,-909587.0,-907627.0,-905598.0,-903534.0,-901415.0,-899230.0,-897076.0,-894988.0,-892943.0,-890866.0,-888775.0,-886746.0,-884767.0,-882783.0,-880753.0,-878727.0,-876741.0,-874765.0,-872771.0,-870744.0,-868741.0,-866763.0,-864735.0,-862617.0,-860425.0,-858200.0,-855948.0,-853665.0,-851428.0,-849237.0,-847069.0,-844900.0,-842713.0,-840473.0,-838170.0,-835871.0,-833641.0,-831467.0,-829298.0,-827145.0,-825001.0,-822820.0,-820578.0,-818310.0,-816046.0,-813744.0,-811417.0,-809121.0,-806823.0,-804472.0,-802091.0,-799776.0,-797517.0,-795215.0,-792844.0,-790470.0,-788120.0,-785763.0,-783383.0,-780999.0,-778654.0,-776329.0,-774008.0,-771638.0,-769202.0,-766766.0,-764337.0,-761911.0,-759424.0,-756932.0,-754503.0,-752109.0,-749754.0,-747414.0,-745139.0,-742893.0,-740632.0,-738322.0,-735958.0,-733578.0,-731178.0,-728733.0,-726206.0,-723638.0,-721067.0,-718498.0,-715911.0,-713333.0,-710790.0,-708253.0,-705727.0,-703250.0,-700807.0,-698373.0,-695975.0,-693629.0,-691269.0,-688772.0,-686200.0,-683596.0,-680948.0,-678242.0,-675543.0,-672924.0,-670334.0,-667749.0,-665165.0,-662585.0,-659976.0,-657339.0,-654678.0,-651993.0,-649342.0,-646717.0,-644080.0,-641394.0,-638724.0,-636107.0,-633472.0,-630826.0,-628192.0,-625576.0,-622928.0,-620212.0,-617422.0,-614537.0,-611572.0,-608595.0,-605639.0,-602695.0,-599764.0,-596868.0,-594001.0,-591129.0,-588242.0,-585386.0,-582565.0,-579736.0,-576882.0,-574031.0,-571200.0,-568378.0,-565575.0,-562788.0,-560018.0,-557214.0,-554366.0,-551456.0,-548474.0,-545448.0,-542420.0,-539444.0,-536498.0,-533546.0,-530594.0,-527626.0,-524623.0,-521592.0,-518574.0,-515593.0,-512607.0,-509609.0,-506627.0,-503644.0,-500607.0,-497517.0,-494407.0,-491330.0,-488254.0,-485141.0,-481998.0,-478840.0,-475690.0,-472550.0,-469437.0,-466381.0,-463345.0,-460314.0,-457269.0,-454167.0,-451014.0,-447848.0,-444741.0,-441694.0,-438676.0,-435696.0,-432688.0,-429604.0,-426429.0,-423191.0,-419919.0,-416638.0,-413423.0,-410284.0,-407215.0,-404187.0,-401193.0,-398177.0,-395105.0,-391977.0,-388797.0,-385606.0,-382402.0,-379238.0,-376069.0,-372839.0,-369557.0,-366228.0,-362911.0,-359557.0,-356188.0,-352858.0,-349542.0,-346168.0,-342684.0,-339168.0,-335661.0,-332154.0,-328661.0,-325245.0,-321876.0,-318443.0,-314921.0,-311367.0,-307807.0,-304163.0,-300428.0,-296699.0,-293029.0,-289361.0,-285647.0,-281925.0,-278251.0,-274589.0,-270917.0,-267266.0,-263664.0,-260105.0,-256532.0,-252924.0,-249289.0,-245636.0,-241910.0,-238115.0,-234295.0,-230529.0,-226766.0,-222914.0,-219063.0,-215258.0,-211535.0,-207836.0,-204171.0,-200602.0,-197042.0,-193478.0,-189860.0,-186204.0,-182515.0,-178830.0,-175201.0,-171582.0,-167936.0,-164236.0,-160536.0,-156826.0,-153107.0,-149407.0,-145770.0,-142240.0,-138770.0,-135322.0,-131855.0,-128350.0,-124801.0,-121203.0,-117559.0,-113931.0,-110339.0,-106789.0,-103301.0,-99873.0,-96523.0,-93166.0,-89780.0,-86372.0,-82995.0,-79670.0,-76325.0,-72976.0,-69654.0,-66390.0,-63158.0,-59928.0,-56759.0,-53609.0,-50453.0,-47253.0,-43989.0,-40706.0,-37445.0,-34251.0,-31107.0,-28015.0,-25007.0,-22066.0,-19127.0,-16206.0,-13341.0,-10522.0,-7662.0,-4721.0,-1692.0,1379.0,4425.0,7356.0,10151.0,12878.0,15533.0,18174.0,20859.0,23678.0,26584.0,29452.0,32243.0,34920.0,37503.0,40014.0,42500.0,45008.0,47530.0,50071.0,52609.0,55085.0,57466.0,59776.0,62087.0,64463.0,66960.0,69560.0,72201.0,74789.0,77304.0,79761.0,82142.0,84489.0,86846.0,89260.0,91799.0,94470.0,97239.0,99992.0,102707.0,105422.0,108080.0,110626.0,113129.0,115720.0,118381.0,121021.0,123601.0,126165.0,128682.0,131144.0,133631.0,136232.0,138933.0,141655.0,144336.0,147008.0,149676.0,152361.0,155049.0,157802.0,160665.0,163564.0,166467.0,169341.0,172251.0,175126.0,177922.0,180712.0,183486.0,186226.0,188858.0,191466.0,194078.0,196667.0,199299.0,202004.0,204795.0,207559.0,210312.0,213063.0,215778.0,218437.0,221063.0,223723.0,226454.0,229210.0,231954.0,234626.0,237276.0,239958.0,242642.0,245307.0,247938.0,250630.0,253368.0,256084.0,258751.0,261417.0,264098.0,266708.0,269179.0,271587.0,273994.0,276370.0,278724.0,281123.0,283652.0,286198.0,288651.0,290978.0,293224.0,295412.0,297507.0,299583.0,301698.0,303911.0,306152.0,308332.0,310415.0,312370.0,314256.0,316100.0,317969.0,319868.0,321794.0,323726.0,325635.0,327515.0,329381.0,331304.0,333292.0,335332.0,337385.0,339393.0,341324.0,343160.0,344935.0,346681.0,348428.0,350180.0,351916.0,353622.0,355359.0,357139.0,358912.0,360676.0,362448.0,364283.0,366135.0,367972.0,369802.0,371625.0,373453.0,375237.0,376937.0,378581.0,380221.0,381915.0,383628.0,385263.0,386861.0,388495.0,390166.0,391760.0,393240.0,394724.0,396226.0,397661.0,398974.0,400219.0,401476.0,402740.0,403992.0,405275.0,406612.0,408031.0,409481.0,410942.0,412367.0,413754.0,415071.0,416298.0,417455.0,418570.0,419717.0,420853.0,421946.0,423022.0,424104.0,425209.0,426234.0,427146.0,427984.0,428769.0,429514.0,430208.0,430890.0,431582.0,432260.0,432899.0,433473.0,433964.0,434382.0,434790.0,435244.0,435708.0,436147.0,436518.0,436810.0,436967.0,437014.0,437013.0,437056.0,437169.0,437388.0,437686.0,437966.0,438183.0,438317.0,438372.0,438339.0,438300.0,438338.0,438439.0,438558.0,438694.0,438837.0,438926.0,438929.0,438922.0,438935.0,438961.0,439003.0,439083.0,439198.0,439322.0,439439.0,439564.0,439656.0,439693.0,439751.0,439826.0,439919.0,439970.0,440028.0,440145.0,440244.0,440309.0,440284.0,440190.0,440041.0,439867.0,439700.0,439496.0,439289.0,439118.0,439017.0,438982.0,438970.0,438964.0,438936.0,438891.0,438822.0,438720.0,438585.0,438460.0,438369.0,438329.0,438300.0,438238.0,438135.0,438005.0,437864.0,437699.0,437512.0,437329.0,437163.0,437011.0,436830.0,436597.0,436340.0,436084.0,435827.0,435541.0,435261.0,435009.0,434753.0,434424.0,434039.0,433632.0,433199.0,432722.0,432200.0,431698.0,431203.0,430745.0,430300.0,429816.0,429284.0,428687.0,428091.0,427415.0,426685.0,425967.0,425341.0,424758.0,424135.0,423501.0,422868.0,422204.0,421460.0,420694.0,419982.0,419347.0,418738.0,418165.0,417656.0,417197.0,416683.0,416051.0,415370.0,414686.0,413984.0,413210.0,412465.0,411827.0,411292.0,410822.0,410367.0,409916.0,409407.0,408842.0,408211.0,407508.0,406757.0,406026.0,405348.0,404668.0,403998.0,403363.0,402806.0,402230.0,401614.0,401006.0,400468.0,399905.0,399228.0,398504.0,397799.0,397130.0,396423.0,395729.0,395091.0,394491.0,393889.0,393260.0,392595.0,391879.0,391074.0,390186.0,389253.0,388348.0,387479.0,386635.0,385831.0,385128.0,384522.0,383927.0,383291.0,382621.0,381966.0,381315.0,380632.0,379930.0,379232.0,378599.0,378025.0,377424.0,376754.0,375984.0,375188.0,374418.0,373658.0,373002.0,372442.0,371994.0,371562.0,371056.0,370493.0,369826.0,369106.0,368351.0,367542.0,366720.0,365898.0,365128.0,364356.0,363558.0,362843.0,362207.0,361592.0,360943.0,360320.0,359757.0,359145.0,358479.0,357768.0,357013.0,356198.0,355359.0,354587.0,353869.0,353215.0,352606.0,351989.0,351285.0,350501.0,349676.0,348841.0,347983.0,347139.0,346327.0,345556.0,344814.0,344075.0,343332.0,342585.0,341844.0,341082.0,340275.0,339455.0,338662.0,337913.0,337180.0,336440.0,335676.0,334851.0,333973.0,333046.0,332117.0,331197.0,330323.0,329501.0,328704.0,327937.0,327212.0,326499.0,325717.0,324855.0,323958.0,323067.0,322221.0,321454.0,320777.0,320109.0,319460.0,318822.0,318132.0,317344.0,316491.0,315660.0,314803.0,313903.0,312971.0,312007.0,311042.0,310107.0,309213.0,308275.0,307326.0,306443.0,305619.0,304804.0,303995.0,303229.0,302435.0,301581.0,300700.0,299814.0,298904.0,297947.0,297003.0,296096.0,295210.0,294321.0,293430.0,292653.0,291978.0,291309.0,290580.0,289765.0,288950.0,288107.0,287198.0,286242.0,285287.0,284430.0,283595.0,282718.0,281819.0,280962.0,280110.0,279207.0,278254.0,277343.0,276501.0,275658.0,274779.0,273894.0,273118.0,272419.0,271713.0,270959.0,270220.0,269567.0,268936.0,268233.0,267436.0,266651.0,265939.0,265181.0,264317.0,263433.0,262626.0,261841.0,261007.0,260165.0,259381.0,258618.0,257835.0,257027.0,256204.0,255397.0,254616.0,253864.0,253083.0,252294.0,251526.0,250784.0,249991.0,249161.0,248395.0,247712.0,247035.0,246290.0,245513.0,244740.0,243948.0,243135.0,242326.0,241548.0,240801.0,240081.0,239401.0,238723.0,238018.0,237262.0,236462.0,235622.0,234770.0,233966.0,233254.0,232624.0,232034.0,231407.0,230737.0,230018.0,229283.0,228551.0,227780.0,227020.0,226298.0,225595.0,224840.0,224037.0,223278.0,222597.0,221892.0,221114.0,220261.0,219403.0,218574.0,217739.0,216959.0,216279.0,215715.0,215169.0,214589.0,213968.0,213283.0,212516.0,211730.0,210994.0,210308.0,209656.0,209014.0,208394.0,207757.0,207047.0,206213.0,205266.0,204260.0,203229.0,202251.0,201393.0,200648.0,199944.0,199252.0,198617.0,197972.0,197276.0,196515.0,195745.0,195013.0,194313.0,193624.0,192875.0,192104.0,191355.0,190636.0,189886.0,189136.0,188477.0,187926.0,187417.0,186895.0,186386.0,185900.0,185400.0,184815.0,184165.0,183479.0,182772.0,182046.0,181338.0,180691.0,180121.0,179578.0,179015.0,178407.0,177700.0,176919.0,176045.0,175169.0,174366.0,173655.0,173018.0,172392.0,171780.0,171139.0,170387.0,169552.0,168737.0,168016.0,167353.0,166670.0,165989.0,165331.0,164644.0,163890.0,163076.0,162321.0,161641.0,160953.0,160273.0,159661.0,159151.0,158614.0,157991.0,157359.0,156754.0,156120.0,155405.0,154691.0,154041.0,153400.0,152726.0,152058.0,151478.0,150933.0,150350.0,149706.0,149044.0,148367.0,147677.0,147007.0,146371.0,145778.0,145173.0,144536.0,143856.0,143173.0,142537.0,141940.0,141360.0,140779.0,140153.0,139448.0,138677.0,137901.0,137156.0,136420.0,135743.0,135170.0,134639.0,134094.0,133520.0,132953.0,132363.0,131732.0,131154.0,130635.0,130107.0,129512.0,128889.0,128251.0,127579.0,126883.0,126256.0,125727.0,125240.0,124747.0,124192.0,123593.0,122944.0,122283.0,121594.0,120893.0,120216.0,119559.0,118902.0,118254.0,117709.0,117297.0,116930.0,116550.0,116142.0,115651.0,115017.0,114262.0,113501.0,112788.0,112091.0,111431.0,110843.0,110257.0,109616.0,108919.0,108290.0,107757.0,107242.0,106730.0,106234.0,105774.0,105303.0,104771.0,104199.0,103594.0,102965.0,102300.0,101587.0,100882.0,100260.0,99739.0,99244.0,98691.0,98078.0,97492.0,96927.0,96332.0,95678.0,95048.0,94506.0,93999.0,93445.0,92836.0,92199.0,91541.0,90854.0,90141.0,89471.0,88935.0,88551.0,88252.0,87934.0,87520.0,87012.0,86399.0,85720.0,85039.0,84414.0,83866.0,83331.0,82804.0,82320.0,81843.0,81332.0,80798.0,80273.0,79733.0,79152.0,78553.0,77987.0,77432.0,76882.0,76302.0,75676.0,75034.0,74372.0,73694.0,73024.0,72459.0,72009.0,71616.0,71219.0,70802.0,70388.0,69962.0,69510.0,69003.0,68458.0,67931.0,67404.0,66861.0,66311.0,65778.0,65264.0,64759.0,64269.0,63794.0,63301.0,62814.0,62299.0,61724.0,61096.0,60402.0,59679.0,58956.0,58330.0,57813.0,57349.0,56942.0,56558.0,56164.0,55697.0,55152.0,54551.0,53869.0,53148.0,52455.0,51882.0,51456.0,51104.0,50769.0,50396.0,49972.0,49490.0,48929.0,48333.0,47774.0,47292.0,46873.0,46406.0,45893.0,45395.0,44932.0,44481.0,43948.0,43421.0,42907.0,42389.0,41847.0,41335.0,40915.0,40476.0,39985.0,39471.0,38934.0,38368.0,37768.0,37234.0,36752.0,36238.0,35685.0,35123.0,34618.0,34144.0,33696.0,33298.0,32949.0,32604.0,32185.0,31664.0,31107.0,30520.0,29914.0,29314.0,28771.0,28314.0,27884.0,27482.0,27122.0,26735.0,26312.0,25835.0,25377.0,24919.0,24433.0,23962.0,23460.0,22955.0,22412.0,21868.0,21346.0,20889.0,20529.0,20200.0,19828.0,19407.0,18987.0,18548.0,18038.0,17453.0,16914.0,16484.0,16156.0,15839.0,15531.0,15215.0,14857.0,14424.0,13918.0,13417.0,12921.0,12443.0,11950.0,11437.0,10890.0,10302.0,9734.0,9197.0,8678.0,8156.0,7639.0,7164.0,6688.0,6214.0,5806.0,5446.0,5106.0,4748.0,4405.0,4081.0,3701.0,3264.0,2794.0,2296.0,1778.0,1212.0,652.0,116.0,-397.0,-921.0,-1490.0,-2044.0,-2524.0,-2892.0,-3243.0,-3623.0,-4021.0,-4404.0,-4806.0,-5286.0,-5794.0,-6234.0,-6614.0,-6950.0,-7305.0,-7650.0,-7978.0,-8308.0,-8618.0,-8953.0,-9257.0,-9577.0,-9952.0,-10383.0,-10854.0,-11305.0,-11786.0,-12277.0,-12744.0,-13186.0,-13567.0,-13934.0,-14306.0,-14737.0,-15211.0,-15671.0,-16136.0,-16584.0,-16975.0,-17292.0,-17540.0,-17770.0,-18029.0,-18376.0,-18830.0,-19279.0,-19699.0,-20124.0,-20643.0,-21216.0,-21745.0,-22255.0,-22799.0,-23358.0,-23816.0,-24182.0,-24577.0,-25044.0,-25503.0,-25896.0,-26242.0,-26600.0,-26971.0,-27337.0,-27680.0,-28046.0,-28477.0,-28918.0,-29299.0,-29647.0,-30076.0,-30565.0,-31039.0,-31436.0,-31786.0,-32107.0,-32437.0,-32826.0,-33252.0,-33693.0,-34163.0,-34689.0,-35188.0,-35602.0,-35962.0,-36341.0,-36677.0,-36928.0,-37154.0,-37425.0,-37758.0,-38148.0,-38629.0,-39159.0,-39654.0,-40090.0,-40499.0,-40899.0,-41245.0,-41544.0,-41787.0,-42049.0,-42361.0,-42677.0,-43017.0,-43403.0,-43922.0,-44439.0,-44912.0,-45379.0,-45838.0,-46278.0,-46681.0,-47145.0,-47644.0,-48130.0,-48597.0,-49064.0,-49507.0,-49877.0,-50157.0,-50418.0,-50731.0,-51099.0,-51479.0,-51809.0,-52160.0,-52501.0,-52803.0,-53093.0,-53412.0,-53825.0,-54226.0,-54632.0,-55031.0,-55378.0,-55674.0],"type":"scatter"}],"layout":{"template":{"data":{"barpolar":[{"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"barpolar"}],"bar":[{"error_x":{"color":"#f2f5fa"},"error_y":{"color":"#f2f5fa"},"marker":{"line":{"color":"rgb(17,17,17)","width":0.5},"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"bar"}],"carpet":[{"aaxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"baxis":{"endlinecolor":"#A2B1C6","gridcolor":"#506784","linecolor":"#506784","minorgridcolor":"#506784","startlinecolor":"#A2B1C6"},"type":"carpet"}],"choropleth":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"choropleth"}],"contourcarpet":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"contourcarpet"}],"contour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"contour"}],"heatmapgl":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmapgl"}],"heatmap":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"heatmap"}],"histogram2dcontour":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2dcontour"}],"histogram2d":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"histogram2d"}],"histogram":[{"marker":{"pattern":{"fillmode":"overlay","size":10,"solidity":0.2}},"type":"histogram"}],"mesh3d":[{"colorbar":{"outlinewidth":0,"ticks":""},"type":"mesh3d"}],"parcoords":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"parcoords"}],"pie":[{"automargin":true,"type":"pie"}],"scatter3d":[{"line":{"colorbar":{"outlinewidth":0,"ticks":""}},"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatter3d"}],"scattercarpet":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattercarpet"}],"scattergeo":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattergeo"}],"scattergl":[{"marker":{"line":{"color":"#283442"}},"type":"scattergl"}],"scattermapbox":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scattermapbox"}],"scatterpolargl":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolargl"}],"scatterpolar":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterpolar"}],"scatter":[{"marker":{"line":{"color":"#283442"}},"type":"scatter"}],"scatterternary":[{"marker":{"colorbar":{"outlinewidth":0,"ticks":""}},"type":"scatterternary"}],"surface":[{"colorbar":{"outlinewidth":0,"ticks":""},"colorscale":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"type":"surface"}],"table":[{"cells":{"fill":{"color":"#506784"},"line":{"color":"rgb(17,17,17)"}},"header":{"fill":{"color":"#2a3f5f"},"line":{"color":"rgb(17,17,17)"}},"type":"table"}]},"layout":{"annotationdefaults":{"arrowcolor":"#f2f5fa","arrowhead":0,"arrowwidth":1},"autotypenumbers":"strict","coloraxis":{"colorbar":{"outlinewidth":0,"ticks":""}},"colorscale":{"diverging":[[0,"#8e0152"],[0.1,"#c51b7d"],[0.2,"#de77ae"],[0.3,"#f1b6da"],[0.4,"#fde0ef"],[0.5,"#f7f7f7"],[0.6,"#e6f5d0"],[0.7,"#b8e186"],[0.8,"#7fbc41"],[0.9,"#4d9221"],[1,"#276419"]],"sequential":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]],"sequentialminus":[[0.0,"#0d0887"],[0.1111111111111111,"#46039f"],[0.2222222222222222,"#7201a8"],[0.3333333333333333,"#9c179e"],[0.4444444444444444,"#bd3786"],[0.5555555555555556,"#d8576b"],[0.6666666666666666,"#ed7953"],[0.7777777777777778,"#fb9f3a"],[0.8888888888888888,"#fdca26"],[1.0,"#f0f921"]]},"colorway":["#636efa","#EF553B","#00cc96","#ab63fa","#FFA15A","#19d3f3","#FF6692","#B6E880","#FF97FF","#FECB52"],"font":{"color":"#f2f5fa"},"geo":{"bgcolor":"rgb(17,17,17)","lakecolor":"rgb(17,17,17)","landcolor":"rgb(17,17,17)","showlakes":true,"showland":true,"subunitcolor":"#506784"},"hoverlabel":{"align":"left"},"hovermode":"closest","mapbox":{"style":"dark"},"paper_bgcolor":"rgb(17,17,17)","plot_bgcolor":"rgb(17,17,17)","polar":{"angularaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","radialaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"scene":{"xaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"yaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"},"zaxis":{"backgroundcolor":"rgb(17,17,17)","gridcolor":"#506784","gridwidth":2,"linecolor":"#506784","showbackground":true,"ticks":"","zerolinecolor":"#C8D4E3"}},"shapedefaults":{"line":{"color":"#f2f5fa"}},"sliderdefaults":{"bgcolor":"#C8D4E3","bordercolor":"rgb(17,17,17)","borderwidth":1,"tickwidth":0},"ternary":{"aaxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"baxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""},"bgcolor":"rgb(17,17,17)","caxis":{"gridcolor":"#506784","linecolor":"#506784","ticks":""}},"title":{"x":0.05},"updatemenudefaults":{"bgcolor":"#506784","borderwidth":0},"xaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2},"yaxis":{"automargin":true,"gridcolor":"#283442","linecolor":"#506784","ticks":"","title":{"standoff":15},"zerolinecolor":"#283442","zerolinewidth":2}}},"sliders":[{"active":0,"currentvalue":{"prefix":"Chromatogram: "},"steps":[{"args":[{"visible":[true,true,true,true,false,false,false,false,false,false,false,false,false,false,false,false,false,false]}],"label":"N6BENZYLADOONB_RNCOMT_TIME0","method":"update"},{"args":[{"visible":[false,false,false,false,true,true,true,true,true,false,false,false,false,false,false,false,false,false]}],"label":"N6BENZYLADOONB_RNCOMT_TIME1","method":"update"},{"args":[{"visible":[false,false,false,false,false,false,false,false,false,true,true,true,true,true,false,false,false,false]}],"label":"N6BENZYLADOONB_RNCOMT_TIME2","method":"update"},{"args":[{"visible":[false,false,false,false,false,false,false,false,false,false,false,false,false,false,true,true,true,true]}],"label":"N6BENZYLADOONB_RNCOMT_TIME3","method":"update"}]}],"xaxis":{"title":{"text":"retention time [min]"}},"yaxis":{"title":{"text":"Intensity"}}}}

Define Proteins

The ChromAnalyzer class also allows to define information on the used catalysts, such as UniProt ID, name, intial concentration and unit along other parameters. In the following example the protein MjMAT is added to the cascade_analyzer object.

Required parameters: - id: Internal identifier of the protein, such as p0, MyProt1, or Protein_X. - name: Name of the protein. - init_conc: Initial concentration of the protein in the sample. - conc_unit: Unit of the concentration, for example, mM or Β΅M.

Optional parameters: - sequence: Amino acid sequence of the protein. This parameter is optional and can be omitted if the sequence is not available. Defaults to None. - organism: Name of the organism from which the protein is derived. This is also optional and defaults to None if not provided. - organism_tax_id: NCBI taxonomy ID of the organism. This is an optional parameter and can be omitted if the taxonomy ID is not known. Defaults to None. - constant: A boolean flag indicating whether the protein concentration is constant throughout the experiment. If set to True, the concentration is assumed to remain constant. This parameter defaults to True.

Example

cascade_analyzer.define_protein(
    id="MjMAT",
    name="MjMAT",
    init_conc=0.05,
    conc_unit=mM,
)

Calibration measurements

External Standard

Linear Model

Besides kinetic data, the ChromAnalyzer can also be used to analyze calibration measurements and create standards for the quantification of molecules. The add_standard method adds fits a linear regression to the peaks which are assigned to a molecule and the provided concentrations.

Required parameters: - molecule: The molecule for which the standard curve is being generated. This should be an instance of a molecule previously defined in the system. - concs: A list of concentrations at which the standard molecule is measured. For example, [0.5, 1, 1.5, 2, 2.5, 3] represents six different concentrations. The order of the concentrations should match the alphabetical order of the imported chromatograms. - conc_unit: The unit of concentration for the specified concentrations.

Optional parameters: - visualize: A boolean parameter that, if set to True, generates a plot of the standard curve for visualization. This is useful for confirming the accuracy of the calibration process.

How it works

Upon calling the add_standard method, the provided concentrations (concs) of the molecule are used to generate a standard curve through linear regression. The linear relationship between the concentration of \(\text{Ana}\) and its peak area is defined by the equation:

\[ A_{\text{Ana}} = a \times C_{\text{Ana}} \]

Where:

  • \(A_{\text{Ana}}\): Peak area of \(\text{Ana}\).
  • \(C_{\text{Ana}}\): Concentration of \(\text{Ana}\).
  • \(a\): Slope of the calibration curve, representing the sensitivity or response factor of \(\text{Ana}\).

The linear model including information on the valid calibration range is stored in the standarad attribute of the Molecule object and can later be used for quantification of the molecule from time-course measurements.

Example

from chromatopy import ChromAnalyzer

calib_analyzer = ChromAnalyzer.from_json("data/instances/adenosine_analyzer.json")

# Define adenosine
adenosine = calib_analyzer.define_molecule(
    pubchem_cid=60961,
    id="ADE",
    name="adenosine",
    retention_time=10.9,
    retention_tolerance=0.5,
)

# create a standard curve
concs = [0.5, 1, 1.5, 2, 2.5, 3]

standard = calib_analyzer.add_standard(
    molecule=adenosine,
    concs=concs,
    conc_unit=mM,
    visualize=True,
)
🎯 Assigned adenosine to 6 peaks
βœ… Models have been successfully fitted.

Model Name AIC R squared RMSD Equation Relative Parameter Standard Errors
linear 84 0.9997 918.2705 ADE * a a: 0.3%
{ "data": [ { "customdata": [ "adenosine standard" ], "marker": { "color": "#000000" }, "mode": "markers", "name": "adenosine", "visible": true, "x": [ 0.5, 1.0, 1.5, 2.0, 2.5, 3.0 ], "y": [ 34221.52533999663, 63792.860674890384, 97798.69806281955, 129562.76503983978, 163134.2329051491, 195257.53514179704 ], "type": "scatter", "xaxis": "x", "yaxis": "y", "hovertemplate": "Signal: %{y:.2f}" }, { "customdata": [ "linear model" ], "marker": { "color": "#636EFA" }, "mode": "lines", "name": "linear model", "visible": false, "x": [ 0.0, 0.030303030303030304, 0.06060606060606061, 0.09090909090909091, 0.12121212121212122, 0.15151515151515152, 0.18181818181818182, 0.21212121212121213, 0.24242424242424243, 0.2727272727272727, 0.30303030303030304, 0.33333333333333337, 0.36363636363636365, 0.3939393939393939, 0.42424242424242425, 0.4545454545454546, 0.48484848484848486, 0.5151515151515151, 0.5454545454545454, 0.5757575757575758, 0.6060606060606061, 0.6363636363636364, 0.6666666666666667, 0.696969696969697, 0.7272727272727273, 0.7575757575757576, 0.7878787878787878, 0.8181818181818182, 0.8484848484848485, 0.8787878787878788, 0.9090909090909092, 0.9393939393939394, 0.9696969696969697, 1.0, 1.0303030303030303, 1.0606060606060606, 1.0909090909090908, 1.1212121212121213, 1.1515151515151516, 1.1818181818181819, 1.2121212121212122, 1.2424242424242424, 1.2727272727272727, 1.303030303030303, 1.3333333333333335, 1.3636363636363638, 1.393939393939394, 1.4242424242424243, 1.4545454545454546, 1.4848484848484849, 1.5151515151515151, 1.5454545454545454, 1.5757575757575757, 1.6060606060606062, 1.6363636363636365, 1.6666666666666667, 1.696969696969697, 1.7272727272727273, 1.7575757575757576, 1.7878787878787878, 1.8181818181818183, 1.8484848484848486, 1.878787878787879, 1.9090909090909092, 1.9393939393939394, 1.9696969696969697, 2.0, 2.0303030303030303, 2.0606060606060606, 2.090909090909091, 2.121212121212121, 2.1515151515151514, 2.1818181818181817, 2.2121212121212124, 2.2424242424242427, 2.272727272727273, 2.303030303030303, 2.3333333333333335, 2.3636363636363638, 2.393939393939394, 2.4242424242424243, 2.4545454545454546, 2.484848484848485, 2.515151515151515, 2.5454545454545454, 2.5757575757575757, 2.606060606060606, 2.6363636363636362, 2.666666666666667, 2.6969696969696972, 2.7272727272727275, 2.757575757575758, 2.787878787878788, 2.8181818181818183, 2.8484848484848486, 2.878787878787879, 2.909090909090909, 2.9393939393939394, 2.9696969696969697, 3.0 ], "y": [ 0.0, 1971.8087089005212, 3943.6174178010424, 5915.426126701564, 7887.234835602085, 9859.043544502607, 11830.852253403127, 13802.66096230365, 15774.46967120417, 17746.27838010469, 19718.087089005214, 21689.895797905734, 23661.704506806254, 25633.513215706775, 27605.3219246073, 29577.13063350782, 31548.93934240834, 33520.74805130886, 35492.55676020938, 37464.36546910991, 39436.17417801043, 41407.98288691094, 43379.79159581147, 45351.60030471199, 47323.40901361251, 49295.21772251303, 51267.02643141355, 53238.83514031408, 55210.6438492146, 57182.45255811511, 59154.26126701564, 61126.06997591616, 63097.87868481668, 65069.6873937172, 67041.49610261772, 69013.30481151823, 70985.11352041876, 72956.92222931929, 74928.73093821981, 76900.53964712033, 78872.34835602086, 80844.15706492137, 82815.96577382188, 84787.77448272241, 86759.58319162294, 88731.39190052346, 90703.20060942398, 92675.0093183245, 94646.81802722502, 96618.62673612554, 98590.43544502606, 100562.24415392657, 102534.0528628271, 104505.86157172763, 106477.67028062815, 108449.47898952867, 110421.2876984292, 112393.09640732971, 114364.90511623022, 116336.71382513075, 118308.52253403128, 120280.3312429318, 122252.13995183232, 124223.94866073284, 126195.75736963336, 128167.56607853388, 130139.3747874344, 132111.1834963349, 134082.99220523544, 136054.80091413597, 138026.60962303646, 139998.418331937, 141970.22704083752, 143942.03574973808, 145913.84445863857, 147885.6531675391, 149857.46187643963, 151829.27058534013, 153801.07929424066, 155772.88800314118, 157744.6967120417, 159716.5054209422, 161688.31412984274, 163660.12283874326, 165631.93154764376, 167603.7402565443, 169575.54896544482, 171547.35767434535, 173519.16638324587, 175490.9750921464, 177462.78380104693, 179434.59250994743, 181406.40121884795, 183378.20992774848, 185350.018636649, 187321.8273455495, 189293.63605445003, 191265.44476335056, 193237.2534722511, 195209.0621811516 ], "type": "scatter", "xaxis": "x", "yaxis": "y", "hovertemplate": "Signal: %{y:.2f}" }, { "customdata": [ "linear model" ], "hoverinfo": "skip", "marker": { "color": "#636EFA" }, "mode": "markers", "name": "Residuals", "visible": false, "x": [ 0.5, 1.0, 1.5, 2.0, 2.5, 3.0 ], "y": [ -1686.681643138032, 1276.8267188268146, -194.16697224375093, 576.6097475946153, -460.0144208561105, -48.47296064544935 ], "type": "scatter", "xaxis": "x2", "yaxis": "y2", "hovertemplate": "Signal: %{y:.2f}" }, { "customdata": [ "linear model" ], "line": { "color": "grey", "dash": "dash", "width": 2 }, "showlegend": false, "visible": true, "x": [ 0.5, 1.0, 1.5, 2.0, 2.5, 3.0 ], "y": [ 0.0, 0.0, 0.0, 0.0, 0.0, 0.0 ], "type": "scatter", "xaxis": "x2", "yaxis": "y2", "hovertemplate": "Signal: %{y:.2f}" } ], "layout": { "template": { "data": { "barpolar": [ { "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "barpolar" } ], "bar": [ { "error_x": { "color": "rgb(36,36,36)" }, "error_y": { "color": "rgb(36,36,36)" }, "marker": { "line": { "color": "white", "width": 0.5 }, "pattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 } }, "type": "bar" } ], "carpet": [ { "aaxis": { "endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "baxis": { "endlinecolor": "rgb(36,36,36)", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "rgb(36,36,36)" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "choropleth" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "contourcarpet" } ], "contour": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "type": "contour" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "type": "heatmapgl" } ], "heatmap": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "type": "heatmap" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "type": "histogram2dcontour" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "type": "histogram2d" } ], "histogram": [ { "marker": { "line": { "color": "white", "width": 0.6 } }, "type": "histogram" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scattermapbox" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterpolargl" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterpolar" } ], "scatter": [ { "fillpattern": { "fillmode": "overlay", "size": 10, "solidity": 0.2 }, "type": "scatter" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" }, "colorscale": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "rgb(237,237,237)" }, "line": { "color": "white" } }, "header": { "fill": { "color": "rgb(217,217,217)" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowhead": 0, "arrowwidth": 1 }, "autotypenumbers": "strict", "coloraxis": { "colorbar": { "outlinewidth": 1, "tickcolor": "rgb(36,36,36)", "ticks": "outside" } }, "colorscale": { "diverging": [ [ 0.0, "rgb(103,0,31)" ], [ 0.1, "rgb(178,24,43)" ], [ 0.2, "rgb(214,96,77)" ], [ 0.3, "rgb(244,165,130)" ], [ 0.4, "rgb(253,219,199)" ], [ 0.5, "rgb(247,247,247)" ], [ 0.6, "rgb(209,229,240)" ], [ 0.7, "rgb(146,197,222)" ], [ 0.8, "rgb(67,147,195)" ], [ 0.9, "rgb(33,102,172)" ], [ 1.0, "rgb(5,48,97)" ] ], "sequential": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ], "sequentialminus": [ [ 0.0, "#440154" ], [ 0.1111111111111111, "#482878" ], [ 0.2222222222222222, "#3e4989" ], [ 0.3333333333333333, "#31688e" ], [ 0.4444444444444444, "#26828e" ], [ 0.5555555555555556, "#1f9e89" ], [ 0.6666666666666666, "#35b779" ], [ 0.7777777777777778, "#6ece58" ], [ 0.8888888888888888, "#b5de2b" ], [ 1.0, "#fde725" ] ] }, "colorway": [ "#1F77B4", "#FF7F0E", "#2CA02C", "#D62728", "#9467BD", "#8C564B", "#E377C2", "#7F7F7F", "#BCBD22", "#17BECF" ], "font": { "color": "rgb(36,36,36)" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "white", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "white", "polar": { "angularaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "bgcolor": "white", "radialaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" } }, "scene": { "xaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "zaxis": { "backgroundcolor": "white", "gridcolor": "rgb(232,232,232)", "gridwidth": 2, "linecolor": "rgb(36,36,36)", "showbackground": true, "showgrid": false, "showline": true, "ticks": "outside", "zeroline": false, "zerolinecolor": "rgb(36,36,36)" } }, "shapedefaults": { "fillcolor": "black", "line": { "width": 0 }, "opacity": 0.3 }, "ternary": { "aaxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "baxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" }, "bgcolor": "white", "caxis": { "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside", "title": { "standoff": 15 }, "zeroline": false, "zerolinecolor": "rgb(36,36,36)" }, "yaxis": { "automargin": true, "gridcolor": "rgb(232,232,232)", "linecolor": "rgb(36,36,36)", "showgrid": false, "showline": true, "ticks": "outside", "title": { "standoff": 15 }, "zeroline": false, "zerolinecolor": "rgb(36,36,36)" } } }, "xaxis": { "anchor": "y", "domain": [ 0.0, 0.425 ] }, "yaxis": { "anchor": "x", "domain": [ 0.0, 1.0 ], "title": { "text": "adenosine (a.u.)" } }, "xaxis2": { "anchor": "y2", "domain": [ 0.575, 1.0 ] }, "yaxis2": { "anchor": "x2", "domain": [ 0.0, 1.0 ], "title": { "text": "Residuals adenosine (a.u.)" } }, "annotations": [ { "font": { "size": 16 }, "showarrow": false, "text": "Standard", "x": 0.2125, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 16 }, "showarrow": false, "text": "Model Residuals", "x": 0.7875, "xanchor": "center", "xref": "paper", "y": 1.0, "yanchor": "bottom", "yref": "paper" }, { "font": { "size": 16 }, "showarrow": false, "text": "adenosine \u002f mMole \u002f Litre", "x": 0.5, "xanchor": "center", "xref": "paper", "y": 0, "yanchor": "top", "yref": "paper", "yshift": -30 } ], "margin": { "l": 20, "r": 20, "t": 100, "b": 60 }, "updatemenus": [ { "active": 0, "buttons": [ { "args": [ { "visible": [ true, false, false, false ] } ], "label": "adenosine standard", "method": "update" }, { "args": [ { "visible": [ true, true, true, true ], "title": "linear model" } ], "label": "linear model", "method": "update" }, { "args": [ { "visible": [ true, true, true, true ] } ], "label": "all", "method": "update" } ], "direction": "right", "type": "buttons", "x": 0, "xanchor": "left", "y": 1.2, "yanchor": "top" } ] } }

The standard in now registered to the adenosine molecule. And can be added to another ChromAnalyzer object to quantify the adenosine concentration in the kinetic measurements.

Add molecule with a standard to another ChromAnalyzer

Once a standard is defined, it can be transferred to another ChromAnalyzer object for subsequent quantification of the same molecule. This is carried out using the add_molecule method. During this process, the initial concentration and its unit can be adjusted to fit the reaction conditions of the ChromAnalyzer with time-course measurements.

Example

from chromatopy import ChromAnalyzer
from chromatopy.units import mM

data_path = "data/instances/time_course_adenosine.json"
time_course_analyzer = ChromAnalyzer.from_json(data_path)

# add adenosine with standard to the time course analyzer
time_course_analyzer.add_molecule(
    molecule=adenosine,
    init_conc=0,
    conc_unit=mM,
    retention_tolerance=0.5,
)
🎯 Assigned adenosine to 3 peaks

Internal Standard

The define_internal_standard method is used to designate a specific molecule as the internal standard within the ChromAnalyzer object. This internal standard is essential for accurate concentration calculations during chromatographic analysis. The method requires several parameters, including the molecule's identifier, PubChem CID, and retention time.

Required parameters:

  • id: Internal identifier of the internal standard molecule, such as s0, ABTS, or IS_01.
  • pubchem_cid: PubChem CID of the internal standard molecule.
  • name: Name of the internal standard molecule.
  • init_conc: Initial concentration of the internal standard in the sample.
  • conc_unit: Unit of the concentration, for example, mM or Β΅M.
  • retention_time: Retention time of the internal standard in the chromatogram, measured in minutes.

Optional parameters:

  • retention_tolerance: Retention time tolerance for peak annotation in minutes. This parameter helps account for slight variations in retention time during analysis. Defaults to 0.1.
  • wavelength: Wavelength at which the internal standard is detected by the HPLC detector. This is optional and defaults to None if not specified.
Quantification Using Internal Standard (IS) Ratios

When quantifying an analyte \(\text{Ana}\) using an internal standard \(\text{IS}\), the concentration of \(\text{Ana}\) at a later time point can be calculated by comparing the change in the ratio of their respective peak areas over time. The initial known concentrations and peak areas at time \(\text{t=0}\) establish a baseline for this calculation.

The initial peak ratio is defined as:

\[ R_0 = \frac{A_{\text{Ana}_\text{t=0}}}{A_{\text{IS}_\text{t=0}}} \]

The concentration of \(\text{Ana}\) at time \( $\text{t=n}$ \) can be calculated using the following formula:

\[ C_{\text{Ana}_\text{t=n}} = C_{\text{Ana}_\text{t=0}} \times \frac{\left(\frac{A_{\text{Ana}_\text{t=n}}}{A_{\text{IS}_\text{t=n}}}\right)}{R_0} \]

Where:

  • \(R_0\): The baseline ratio of the peak area of \(\text{Ana}\) to \(\text{IS}\) at time \( t=0 \).
  • \(C_{\text{Ana}_\text{t=0}}\): Initial concentration of \(\text{Ana}\) at reaction time \( t=0 \).
  • \(A_{\text{Ana}_\text{t=0}}\): Peak area of \(\text{Ana}\) at reaction time \( t=0 \).
  • \(A_{\text{IS}_\text{t=0}}\): Peak area of the Internal Standard (\(\text{IS}\)) at reaction time \( t=0 \).
  • \(C_{\text{Ana}_\text{t=n}}\): Concentration of \(\text{Ana}\) at time \( t=n \).
  • \(A_{\text{Ana}_\text{t=n}}\): Peak area of \(\text{Ana}\) at time \( t=n \).
  • \(A_{\text{IS}_\text{t=n}}\): Peak area of the Internal Standard (\(\text{IS}\)) at time \( t=n \).

This approach allows the initial concentration of \(\text{Ana}\) to be adjusted according to the changes in the ratio of peak areas between the analyte and the internal standard over time, allowing quantification of \(\text{Ana}\).

The following example shows how an internal standard molecule is added to the cascade_analyzer from the example above:

Example

from chromatopy import ChromAnalyzer
from chromatopy.units import M

path = "data/instances/analyzer_is.json"

# Read the data
analyzer_is = ChromAnalyzer.from_json(path=path)


# add molecules
analyzer_is.define_molecule(
    id="mal",
    name="maleimide",
    pubchem_cid=10935,
    init_conc=0.656,
    conc_unit=M,
    retention_time=6.05,
)

# define internal standard
analyzer_is.define_internal_standard(
    id="std",
    name="internal standard",
    pubchem_cid=-1,
    init_conc=1.0,
    conc_unit=M,
    retention_time=6.3,
    retention_tolerance=0.05,
)
🎯 Assigned maleimide to 17 peaks
🎯 Assigned internal standard to 17 peaks

Convert Data

Time-course measurements can be converted into the EnzymeML format by using the to_enzymeml method. In this process, for all assigned molecules the corresponding peaks are extracted and reorganized as time-course data. If internal oder external standards are defined and caluculate_concentrations is set to True, the concentrations are calculated for the respective peaks. In the following examples, all previously defined datasets are converted into the EnzymeML format and the time-course data is visualized.

Cascade Reaction

Example

from chromatopy.tools.utility import visualize_enzymeml

cascade_enzymeml = cascade_analyzer.to_enzymeml(
    name="MjMAT cascade",
    calculate_concentration=False,
)

visualize_enzymeml(cascade_enzymeml)
Cascade reaction

Adenosine buildup after 24 hours

Example

adenosine_enzymeml = time_course_analyzer.to_enzymeml(
    name="adenosine time course",
    calculate_concentration=True,
)


visualize_enzymeml(adenosine_enzymeml)
Adenosine buildup after 24 hours

Maleimide catalysis with internal standard

Example

adenosine_enzymeml = time_course_analyzer.to_enzymeml(
    name="adenosine time course",
    calculate_concentration=True,
)


visualize_enzymeml(adenosine_enzymeml)
Maleimide catalysis

Peak detection and integration

In all previous examples, the peaks were already integrated by OpenChrom or other chromatographic software. It is also possible to use the ChromAnalyzer to detect and integrate peaks in chromatograms using the hplc-py library. Depending on the chromatographic data, the method showed to be unreliable and fails from time to time. Therefore, it is recommended to use the batch processing with OpenChrom

The following code shows how the integrated peak processing is done:

Example

calib_analyzer.process_chromatograms(
    prominence=0.03,
)