diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..92216caa --- /dev/null +++ b/LICENSE @@ -0,0 +1,30 @@ +BSD 3-Clause License + +Copyright (c) 2018, Lawrence Livermore National Security, LLC +All rights reserved. + +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: + +* Redistributions of source code must retain the above copyright notice, this + list of conditions and the following disclaimer. + +* Redistributions in binary form must reproduce the above copyright notice, + this list of conditions and the following disclaimer in the documentation + and/or other materials provided with the distribution. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + diff --git a/NOTICE b/NOTICE new file mode 100644 index 00000000..3737d5a8 --- /dev/null +++ b/NOTICE @@ -0,0 +1,21 @@ +This work was produced under the auspices of the U.S. Department of +Energy by Lawrence Livermore National Laboratory under Contract +DE-AC52-07NA27344. + +This work was prepared as an account of work sponsored by an agency of +the United States Government. Neither the United States Government nor +Lawrence Livermore National Security, LLC, nor any of their employees +makes any warranty, expressed or implied, or assumes any legal liability +or responsibility for the accuracy, completeness, or usefulness of any +information, apparatus, product, or process disclosed, or represents that +its use would not infringe privately owned rights. + +Reference herein to any specific commercial product, process, or service +by trade name, trademark, manufacturer, or otherwise does not necessarily +constitute or imply its endorsement, recommendation, or favoring by the +United States Government or Lawrence Livermore National Security, LLC. + +The views and opinions of authors expressed herein do not necessarily +state or reflect those of the United States Government or Lawrence +Livermore National Security, LLC, and shall not be used for advertising +or product endorsement purposes. diff --git a/demo-web/README.md b/demo-web/README.md deleted file mode 100644 index 405cc334..00000000 --- a/demo-web/README.md +++ /dev/null @@ -1,4 +0,0 @@ -# Web Demo - -- Run `python view.py` -- Find web page: http://127.0.0.1:5000/ diff --git a/demo-web/data/benchmark_dsr.csv b/demo-web/data/benchmark_dsr.csv deleted file mode 100644 index 774d35ec..00000000 --- a/demo-web/data/benchmark_dsr.csv +++ /dev/null @@ -1,2 +0,0 @@ -name,nmse,base_r,r,base_r_test,r_test,base_r_noiseless,r_noiseless,base_r_test_noiseless,r_test_noiseless,expression,traversal,t,seed -Nguyen-5,0.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,1.0,sin(x1**2)*cos(x1) - 1,"sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1",427.22272515296936,0 diff --git a/demo-web/data/demo.json b/demo-web/data/demo.json deleted file mode 100644 index f8bf2894..00000000 --- a/demo-web/data/demo.json +++ /dev/null @@ -1,86 +0,0 @@ -{ - "dataset": { - "file": "benchmarks.csv", - "name": "Nguyen-5", - "extra_input_var": 0, - "noise": null, - "extra_data_dir": null, - "function_lib": null - }, - "training": { - "logdir": "./log/demo_2020-02-26-150219", - "n_epochs": null, - "n_samples": 1000000, - "batch_size": 500, - "reward": "inv_nrmse", - "reward_params": [], - "complexity": "length", - "complexity_weight": 0.0, - "const_optimizer": "scipy", - "const_params": {}, - "alpha": 0.5, - "epsilon": 0.1, - "verbose": false, - "baseline": "R_e", - "b_jumpstart": false, - "num_cores": 1, - "save_summary": false, - "debug": 0, - "output_file": null, - "save_all_r": true, - "early_stopping": false, - "threshold": 1e-12 - }, - "controller": { - "cell": "lstm", - "num_layers": 1, - "num_units": 32, - "initializer": "zeros", - "embedding": false, - "embedding_size": 8, - "optimizer": "adam", - "learning_rate": 0.001, - "observe_action": false, - "observe_parent": true, - "observe_sibling": true, - "constrain_const": true, - "constrain_trig": true, - "constrain_inv": true, - "constrain_min_len": true, - "constrain_max_len": true, - "constrain_num_const": false, - "min_length": 4, - "max_length": 30, - "max_const": 3, - "entropy_weight": 0.1, - "ppo": false, - "ppo_clip_ratio": 0.2, - "ppo_n_iters": 10, - "ppo_n_mb": 4, - "pqt": false, - "pqt_k": 10, - "pqt_batch_size": 1, - "pqt_weight": 200.0, - "pqt_use_pg": false - }, - "gp": { - "population_size": 1000, - "generations": null, - "n_samples": 2000000, - "tournament_size": 2, - "metric": "nmse", - "const_range": [ - -1.0, - 1.0 - ], - "p_crossover": 0.95, - "p_mutate": 0.03, - "max_depth": null, - "max_len": 30, - "max_const": 3, - "seed": 0, - "early_stopping": true, - "threshold": 1e-12, - "verbose": false - } -} diff --git a/demo-web/data/demo_utils.py b/demo-web/data/demo_utils.py deleted file mode 100644 index 3f002ddf..00000000 --- a/demo-web/data/demo_utils.py +++ /dev/null @@ -1,73 +0,0 @@ -import json - -from dsr.run import get_dataset -from dsr.program import Program, from_tokens - -# Configure the program class from config file -def configure_program(config_filename): - with open(config_filename, "r") as f: - config = json.load(f) - - # Set the dataset - config_dataset = config["dataset"] - name = config_dataset["name"] - dataset = get_dataset(name, config_dataset) - Program.set_training_data(dataset) - - # Set the function set - Program.set_library(dataset.function_set, dataset.n_input_var) - - # Clear the cache - Program.clear_cache() - - # Compatible - Program.set_dsp = False - Program.set_execute() - - # Set the reward function - reward = config["training"]["reward"] - reward_params = config["training"]["reward_params"] - reward_params = reward_params if reward_params is not None else [] - Program.set_reward_function(reward, *reward_params) - - # Set the complexity penalty - complexity = config["training"]["complexity"] - complexity_weight = config["training"]["complexity_weight"] - Program.set_complexity_penalty(complexity, complexity_weight) - - # Set the constant optimizer - const_optimizer = config["training"]["const_optimizer"] - const_params = config["training"]["const_params"] - const_params = const_params if const_params is not None else {} - Program.set_const_optimizer(const_optimizer, **const_params) - - -# Return a Program object corresponding to the ith iteration -def make_program(traversal_text, i): - traversal = traversal_text[i].strip() - traversal = traversal.split(",") - traversal = Program.convert(traversal) - p = from_tokens(traversal, optimize=False) - return p - -# ##### USAGE ##### - -# # Get training data -# X = Program.X_train -# y = Program.y_train - -# # Configure the Program class -# configure_program("./data/demo.json") - -# # Get the best traversals at each iteration -# with open("./data/traversals.txt", "r") as f: -# traversal_text = f.readlines() - -# # Get information from each iteration's best Program -# for i in range(len(traversal_text)): -# p = make_program(traversal_text, i) -# r = p.r # Reward -# text = p.sympy_expr -# y_hat = p.execute(Program.X_train) # Predicted values on training data -# print("Best expression:", text) -# print("Best reward:", r) diff --git a/demo-web/data/dsr_Nguyen-5_0.csv b/demo-web/data/dsr_Nguyen-5_0.csv deleted file mode 100644 index e40c1020..00000000 --- a/demo-web/data/dsr_Nguyen-5_0.csv +++ /dev/null @@ -1,2001 +0,0 @@ -nmse_best,nmse_min,nmse_avg_full,nmse_avg_sub,base_r_best,base_r_max,base_r_avg_full,base_r_avg_sub,r_best,r_max,r_avg_full,r_avg_sub,l_avg_full,l_avg_sub,ewma -5.437965869903564453e+00,5.437965869903564453e+00,inf,6.502135620117187500e+02,2.774673998355865479e-01,2.774673998355865479e-01,9.885132312774658203e-02,1.906890720129013062e-01,2.774673998355865479e-01,2.774673998355865479e-01,9.885132312774658203e-02,1.906890720129013062e-01,2.828599929809570312e+01,2.854000091552734375e+01,-1.000000000000000000e+00 -4.968752861022949219e+00,4.968752861022949219e+00,inf,1.951384162902832031e+01,3.039329349994659424e-01,3.039329349994659424e-01,9.669717401266098022e-02,1.915621459484100342e-01,3.039329349994659424e-01,3.039329349994659424e-01,9.669717401266098022e-02,1.915621459484100342e-01,2.882399940490722656e+01,2.904000091552734375e+01,-1.000000000000000000e+00 -3.383744001388549805e+00,3.383744001388549805e+00,inf,1.756405830383300781e+01,3.039329349994659424e-01,3.006175756454467773e-01,9.357978403568267822e-02,1.920836716890335083e-01,3.039329349994659424e-01,3.006175756454467773e-01,9.357978403568267822e-02,1.920836716890335083e-01,2.845999908447265625e+01,2.815999984741210938e+01,-1.000000000000000000e+00 -2.475691795349121094e+00,2.475691795349121094e+00,inf,1.967945098876953125e+01,3.865642249584197998e-01,3.865642249584197998e-01,9.274975955486297607e-02,1.919116228818893433e-01,3.865642249584197998e-01,3.865642249584197998e-01,9.274975955486297607e-02,1.919116228818893433e-01,2.849399948120117188e+01,2.805999946594238281e+01,-1.000000000000000000e+00 -1.780885577201843262e+00,1.780885577201843262e+00,inf,1.955362129211425781e+01,4.801749289035797119e-01,4.801749289035797119e-01,9.460755437612533569e-02,2.018840909004211426e-01,4.801749289035797119e-01,4.801749289035797119e-01,9.460755437612533569e-02,2.018840909004211426e-01,2.820000076293945312e+01,2.818000030517578125e+01,-1.000000000000000000e+00 -1.780885577201843262e+00,3.107456207275390625e+00,inf,1.871602249145507812e+01,4.801749289035797119e-01,3.756233155727386475e-01,9.287393093109130859e-02,1.935510784387588501e-01,4.801749289035797119e-01,3.756233155727386475e-01,9.287393093109130859e-02,1.935510784387588501e-01,2.825600051879882812e+01,2.845999908447265625e+01,-1.000000000000000000e+00 -1.780885577201843262e+00,3.987545728683471680e+00,inf,1.865236091613769531e+01,4.801749289035797119e-01,3.088758289813995361e-01,9.589036554098129272e-02,1.951922625303268433e-01,4.801749289035797119e-01,3.088758289813995361e-01,9.589036554098129272e-02,1.951922625303268433e-01,2.870400047302246094e+01,2.920000076293945312e+01,-1.000000000000000000e+00 -1.780885577201843262e+00,3.392392396926879883e+00,inf,2.134400177001953125e+01,4.801749289035797119e-01,3.329488933086395264e-01,9.511557221412658691e-02,1.901899725198745728e-01,4.801749289035797119e-01,3.329488933086395264e-01,9.511557221412658691e-02,1.901899725198745728e-01,2.781999969482421875e+01,2.504000091552734375e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,1.167842984199523926e+00,inf,1.855420494079589844e+01,4.801749289035797119e-01,4.692868888378143311e-01,9.660778939723968506e-02,2.026047259569168091e-01,4.801749289035797119e-01,4.692868888378143311e-01,9.660778939723968506e-02,2.026047259569168091e-01,2.804800033569335938e+01,2.542000007629394531e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,1.321600556373596191e+00,inf,1.781581687927246094e+01,4.853486418724060059e-01,4.853486418724060059e-01,9.505741298198699951e-02,2.231905460357666016e-01,4.853486418724060059e-01,4.853486418724060059e-01,9.505741298198699951e-02,2.231905460357666016e-01,2.884600067138671875e+01,2.910000038146972656e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,1.713890552520751953e+00,inf,1.928320312500000000e+01,4.853486418724060059e-01,4.253358840942382812e-01,9.761737287044525146e-02,1.911612451076507568e-01,4.853486418724060059e-01,4.253358840942382812e-01,9.761737287044525146e-02,1.911612451076507568e-01,2.858799934387207031e+01,2.878000068664550781e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,7.818367004394531250e+00,inf,2.226748466491699219e+01,4.853486418724060059e-01,2.714705765247344971e-01,9.615722298622131348e-02,1.868029236793518066e-01,4.853486418724060059e-01,2.714705765247344971e-01,9.615722298622131348e-02,1.868029236793518066e-01,2.831599998474121094e+01,2.615999984741210938e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,1.713890552520751953e+00,inf,2.048884963989257812e+01,4.853486418724060059e-01,4.253358840942382812e-01,9.296546131372451782e-02,2.017187625169754028e-01,4.853486418724060059e-01,4.253358840942382812e-01,9.296546131372451782e-02,2.017187625169754028e-01,2.825600051879882812e+01,2.712000083923339844e+01,-1.000000000000000000e+00 -1.167842984199523926e+00,2.745139598846435547e+00,inf,2.537047576904296875e+01,4.853486418724060059e-01,4.052761793136596680e-01,9.484747797250747681e-02,2.009321600198745728e-01,4.853486418724060059e-01,4.052761793136596680e-01,9.484747797250747681e-02,2.009321600198745728e-01,2.873399925231933594e+01,2.855999946594238281e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,4.533407092094421387e-01,inf,1.983871078491210938e+01,4.853486418724060059e-01,4.747943878173828125e-01,9.792142361402511597e-02,2.050479203462600708e-01,4.853486418724060059e-01,4.747943878173828125e-01,9.792142361402511597e-02,2.050479203462600708e-01,2.862599945068359375e+01,2.852000045776367188e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,3.188917875289916992e+00,inf,1.832250213623046875e+01,4.853486418724060059e-01,4.297178685665130615e-01,9.615657478570938110e-02,1.993311643600463867e-01,4.853486418724060059e-01,4.297178685665130615e-01,9.615657478570938110e-02,1.993311643600463867e-01,2.798399925231933594e+01,2.555999946594238281e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,7.113215446472167969e+00,inf,2.524577713012695312e+01,4.853486418724060059e-01,2.688450813293457031e-01,9.145408868789672852e-02,1.842797100543975830e-01,4.853486418724060059e-01,2.688450813293457031e-01,9.145408868789672852e-02,1.842797100543975830e-01,2.833200073242187500e+01,2.720000076293945312e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.598353505134582520e+00,inf,1.983255577087402344e+01,4.853486418724060059e-01,4.289895594120025635e-01,9.721945226192474365e-02,1.952627152204513550e-01,4.853486418724060059e-01,4.289895594120025635e-01,9.721945226192474365e-02,1.952627152204513550e-01,2.810400009155273438e+01,2.681999969482421875e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.944644212722778320e+00,inf,1.867173004150390625e+01,4.853486418724060059e-01,3.105726540088653564e-01,9.268850088119506836e-02,1.902700364589691162e-01,4.853486418724060059e-01,3.105726540088653564e-01,9.268850088119506836e-02,1.902700364589691162e-01,2.811000061035156250e+01,2.745999908447265625e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.507501363754272461e+00,inf,2.597214698791503906e+01,4.853486418724060059e-01,3.827203214168548584e-01,9.563987702131271362e-02,1.851692199707031250e-01,4.853486418724060059e-01,3.827203214168548584e-01,9.563987702131271362e-02,1.851692199707031250e-01,2.822200012207031250e+01,2.710000038146972656e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.057320499420166016e+01,inf,1.974662780761718750e+01,4.853486418724060059e-01,2.615292966365814209e-01,9.914658963680267334e-02,1.936646848917007446e-01,4.853486418724060059e-01,2.615292966365814209e-01,9.914658963680267334e-02,1.936646848917007446e-01,2.794400024414062500e+01,2.655999946594238281e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.746285200119018555e+00,inf,2.076119232177734375e+01,4.853486418724060059e-01,4.242511093616485596e-01,1.005000248551368713e-01,1.947163045406341553e-01,4.853486418724060059e-01,4.242511093616485596e-01,1.005000248551368713e-01,1.947163045406341553e-01,2.844199943542480469e+01,2.713999938964843750e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.359131574630737305e+00,inf,2.069308853149414062e+01,4.853486418724060059e-01,4.398701786994934082e-01,9.539014846086502075e-02,1.941707730293273926e-01,4.853486418724060059e-01,4.398701786994934082e-01,9.539014846086502075e-02,1.941707730293273926e-01,2.825799942016601562e+01,2.947999954223632812e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.211550354957580566e+00,inf,1.835649681091308594e+01,4.853486418724060059e-01,4.796487092971801758e-01,9.976559877395629883e-02,2.065721452236175537e-01,4.853486418724060059e-01,4.796487092971801758e-01,9.976559877395629883e-02,2.065721452236175537e-01,2.837000083923339844e+01,2.747999954223632812e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.746285200119018555e+00,inf,1.785291481018066406e+01,4.853486418724060059e-01,4.242511093616485596e-01,9.745649993419647217e-02,2.040684670209884644e-01,4.853486418724060059e-01,4.242511093616485596e-01,9.745649993419647217e-02,2.040684670209884644e-01,2.812400054931640625e+01,2.762000083923339844e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.181497573852539062e+00,inf,2.212072944641113281e+01,4.853486418724060059e-01,3.739700019359588623e-01,9.176825731992721558e-02,1.855707913637161255e-01,4.853486418724060059e-01,3.739700019359588623e-01,9.176825731992721558e-02,1.855707913637161255e-01,2.879400062561035156e+01,2.823999977111816406e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.810313701629638672e+00,inf,1.900067138671875000e+01,4.853486418724060059e-01,3.549642264842987061e-01,9.360457211732864380e-02,1.951802819967269897e-01,4.853486418724060059e-01,3.549642264842987061e-01,9.360457211732864380e-02,1.951802819967269897e-01,2.817600059509277344e+01,2.854000091552734375e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.494425773620605469e+00,inf,2.227151489257812500e+01,4.853486418724060059e-01,3.746419250965118408e-01,9.504041820764541626e-02,1.944978237152099609e-01,4.853486418724060059e-01,3.746419250965118408e-01,9.504041820764541626e-02,1.944978237152099609e-01,2.834399986267089844e+01,2.715999984741210938e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,3.392392396926879883e+00,inf,2.960436399964160000e+15,4.853486418724060059e-01,2.849002778530120850e-01,9.540016204118728638e-02,1.858158856630325317e-01,4.853486418724060059e-01,2.849002778530120850e-01,9.540016204118728638e-02,1.858158856630325317e-01,2.812000083923339844e+01,2.779999923706054688e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,8.010884284973144531e+00,inf,4.111093139648437500e+01,4.853486418724060059e-01,2.388171851634979248e-01,9.560253471136093140e-02,1.874924749135971069e-01,4.853486418724060059e-01,2.388171851634979248e-01,9.560253471136093140e-02,1.874924749135971069e-01,2.799200057983398438e+01,2.655999946594238281e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.713890552520751953e+00,inf,2.060247802734375000e+01,4.853486418724060059e-01,4.253358840942382812e-01,9.793627262115478516e-02,1.979049742221832275e-01,4.853486418724060059e-01,4.253358840942382812e-01,9.793627262115478516e-02,1.979049742221832275e-01,2.824600028991699219e+01,2.681999969482421875e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,8.651038169860839844e+00,inf,2.051455116271972656e+01,4.853486418724060059e-01,3.400546312332153320e-01,9.973916411399841309e-02,1.899433135986328125e-01,4.853486418724060059e-01,3.400546312332153320e-01,9.973916411399841309e-02,1.899433135986328125e-01,2.814999961853027344e+01,2.850000000000000000e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,3.553879499435424805e+00,inf,1.981827735900878906e+01,4.853486418724060059e-01,3.351409435272216797e-01,9.544667601585388184e-02,1.955743730068206787e-01,4.853486418724060059e-01,3.351409435272216797e-01,9.544667601585388184e-02,1.955743730068206787e-01,2.801799964904785156e+01,2.852000045776367188e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,5.221785545349121094e+00,inf,1.792427062988281250e+01,4.853486418724060059e-01,3.279189169406890869e-01,1.000210866332054138e-01,1.928811371326446533e-01,4.853486418724060059e-01,3.279189169406890869e-01,1.000210866332054138e-01,1.928811371326446533e-01,2.788999938964843750e+01,2.876000022888183594e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,3.403873205184936523e+00,inf,1.781039810180664062e+01,4.853486418724060059e-01,3.480424582958221436e-01,9.689956158399581909e-02,2.037958353757858276e-01,4.853486418724060059e-01,3.480424582958221436e-01,9.689956158399581909e-02,2.037958353757858276e-01,2.822800064086914062e+01,2.665999984741210938e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,1.746285200119018555e+00,inf,3.267377853393554688e+01,4.853486418724060059e-01,4.242511093616485596e-01,9.977712482213973999e-02,1.998557150363922119e-01,4.853486418724060059e-01,4.242511093616485596e-01,9.977712482213973999e-02,1.998557150363922119e-01,2.775399971008300781e+01,2.745999908447265625e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.625741243362426758e+00,inf,2.197446632385253906e+01,4.853486418724060059e-01,2.614228129386901855e-01,9.677023440599441528e-02,1.901984065771102905e-01,4.853486418724060059e-01,2.614228129386901855e-01,9.677023440599441528e-02,1.901984065771102905e-01,2.783799934387207031e+01,2.771999931335449219e+01,-1.000000000000000000e+00 -4.533407092094421387e-01,2.077004432678222656e+00,inf,1.988732910156250000e+01,4.853486418724060059e-01,3.290318548679351807e-01,9.604538232088088989e-02,1.910978406667709351e-01,4.853486418724060059e-01,3.290318548679351807e-01,9.604538232088088989e-02,1.910978406667709351e-01,2.760799980163574219e+01,2.660000038146972656e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,3.363325297832489014e-01,inf,1.897052574157714844e+01,6.198371052742004395e-01,6.198371052742004395e-01,1.025697141885757446e-01,2.036658376455307007e-01,6.198371052742004395e-01,6.198371052742004395e-01,1.025697141885757446e-01,2.036658376455307007e-01,2.806599998474121094e+01,2.678000068664550781e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.713890552520751953e+00,inf,1.825157737731933594e+01,6.198371052742004395e-01,4.253358840942382812e-01,9.988773614168167114e-02,2.026730477809906006e-01,6.198371052742004395e-01,4.253358840942382812e-01,9.988773614168167114e-02,2.026730477809906006e-01,2.761599922180175781e+01,2.912000083923339844e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,8.430734276771545410e-01,inf,1.765147399902343750e+01,6.198371052742004395e-01,5.058616995811462402e-01,9.773265570402145386e-02,1.996772438287734985e-01,6.198371052742004395e-01,5.058616995811462402e-01,9.773265570402145386e-02,1.996772438287734985e-01,2.776799964904785156e+01,2.668000030517578125e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.406821489334106445e+00,inf,1.765997886657714844e+01,6.198371052742004395e-01,3.747829198837280273e-01,1.025339290499687195e-01,2.002486586570739746e-01,6.198371052742004395e-01,3.747829198837280273e-01,1.025339290499687195e-01,2.002486586570739746e-01,2.809000015258789062e+01,2.573999977111816406e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,8.739634156227111816e-01,inf,1.630972099304199219e+01,6.198371052742004395e-01,5.238019227981567383e-01,1.018727049231529236e-01,2.125722914934158325e-01,6.198371052742004395e-01,5.238019227981567383e-01,1.018727049231529236e-01,2.125722914934158325e-01,2.765999984741210938e+01,2.578000068664550781e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,5.095052242279052734e+00,inf,1.814076042175292969e+01,6.198371052742004395e-01,2.719019055366516113e-01,1.023445948958396912e-01,1.956531256437301636e-01,6.198371052742004395e-01,2.719019055366516113e-01,1.023445948958396912e-01,1.956531256437301636e-01,2.750799942016601562e+01,2.589999961853027344e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,7.596288204193115234e+00,inf,2.109077262878417969e+01,6.198371052742004395e-01,2.525178194046020508e-01,9.617511928081512451e-02,1.844105571508407593e-01,6.198371052742004395e-01,2.525178194046020508e-01,9.617511928081512451e-02,1.844105571508407593e-01,2.790800094604492188e+01,2.562000083923339844e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.734174847602844238e+00,inf,1.758298492431640625e+01,6.198371052742004395e-01,4.891902506351470947e-01,9.942612051963806152e-02,2.093921601772308350e-01,6.198371052742004395e-01,4.891902506351470947e-01,9.942612051963806152e-02,2.093921601772308350e-01,2.749600028991699219e+01,2.728000068664550781e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,4.625640392303466797e+00,inf,1.689844131469726562e+01,6.198371052742004395e-01,3.215894401073455811e-01,1.008301004767417908e-01,1.995029300451278687e-01,6.198371052742004395e-01,3.215894401073455811e-01,1.008301004767417908e-01,1.995029300451278687e-01,2.769599914550781250e+01,2.497999954223632812e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.679848194122314453e+00,inf,1.886118888854980469e+01,6.198371052742004395e-01,3.573918938636779785e-01,1.034455522894859314e-01,2.016143500804901123e-01,6.198371052742004395e-01,3.573918938636779785e-01,1.034455522894859314e-01,2.016143500804901123e-01,2.770800018310546875e+01,2.737999916076660156e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.882789850234985352e+00,inf,1.888211822509765625e+01,6.198371052742004395e-01,4.022723734378814697e-01,1.018368005752563477e-01,1.989491283893585205e-01,6.198371052742004395e-01,4.022723734378814697e-01,1.018368005752563477e-01,1.989491283893585205e-01,2.795599937438964844e+01,2.820000076293945312e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.983366608619689941e+00,inf,1.880984115600585938e+01,6.198371052742004395e-01,4.069225788116455078e-01,9.630201756954193115e-02,2.015722990036010742e-01,6.198371052742004395e-01,4.069225788116455078e-01,9.630201756954193115e-02,2.015722990036010742e-01,2.784600067138671875e+01,2.670000076293945312e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,4.401477575302124023e-01,inf,4.648515701293945312e+01,6.198371052742004395e-01,6.056842803955078125e-01,1.044986173510551453e-01,2.080968916416168213e-01,6.198371052742004395e-01,6.056842803955078125e-01,1.044986173510551453e-01,2.080968916416168213e-01,2.768799972534179688e+01,2.763999938964843750e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,8.430734276771545410e-01,inf,1.811052513122558594e+01,6.198371052742004395e-01,5.058616995811462402e-01,1.011413857340812683e-01,2.000074982643127441e-01,6.198371052742004395e-01,5.058616995811462402e-01,1.011413857340812683e-01,2.000074982643127441e-01,2.767600059509277344e+01,2.671999931335449219e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.330770969390869141e+00,inf,1.880671882629394531e+01,6.198371052742004395e-01,3.727165460586547852e-01,1.092154830694198608e-01,2.092859894037246704e-01,6.198371052742004395e-01,3.727165460586547852e-01,1.092154830694198608e-01,2.092859894037246704e-01,2.764200019836425781e+01,2.634000015258789062e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,4.910224914550781250e+00,inf,1.824818420410156250e+01,6.198371052742004395e-01,4.337353706359863281e-01,9.909923374652862549e-02,1.996700316667556763e-01,6.198371052742004395e-01,4.337353706359863281e-01,9.909923374652862549e-02,1.996700316667556763e-01,2.760799980163574219e+01,2.754000091552734375e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.082217693328857422e+00,inf,1.713555717468261719e+01,6.198371052742004395e-01,3.887439966201782227e-01,1.003862321376800537e-01,2.045878022909164429e-01,6.198371052742004395e-01,3.887439966201782227e-01,1.003862321376800537e-01,2.045878022909164429e-01,2.790999984741210938e+01,2.695999908447265625e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,2.070164203643798828e+00,inf,1.702656173706054688e+01,6.198371052742004395e-01,3.933732211589813232e-01,1.019850224256515503e-01,1.979293376207351685e-01,6.198371052742004395e-01,3.933732211589813232e-01,1.019850224256515503e-01,1.979293376207351685e-01,2.780400085449218750e+01,2.665999984741210938e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,1.279228210449218750e+00,inf,1.694745635986328125e+01,6.198371052742004395e-01,4.501110613346099854e-01,9.869788587093353271e-02,2.004274278879165649e-01,6.198371052742004395e-01,4.501110613346099854e-01,9.869788587093353271e-02,2.004274278879165649e-01,2.734600067138671875e+01,2.710000038146972656e+01,-1.000000000000000000e+00 -3.363325297832489014e-01,5.713457107543945312e+00,inf,1.762658691406250000e+01,6.198371052742004395e-01,2.968746721744537354e-01,1.013293564319610596e-01,1.977076679468154907e-01,6.198371052742004395e-01,2.968746721744537354e-01,1.013293564319610596e-01,1.977076679468154907e-01,2.775399971008300781e+01,2.750000000000000000e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,2.109863013029098511e-01,inf,3.260732500000000000e+06,6.632862091064453125e-01,6.632862091064453125e-01,1.002604290843009949e-01,2.028544098138809204e-01,6.632862091064453125e-01,6.632862091064453125e-01,1.002604290843009949e-01,2.028544098138809204e-01,2.739599990844726562e+01,2.765999984741210938e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,6.572123527526855469e+00,inf,1.831256866455078125e+01,6.632862091064453125e-01,2.926878035068511963e-01,1.026336774230003357e-01,1.956080198287963867e-01,6.632862091064453125e-01,2.926878035068511963e-01,1.026336774230003357e-01,1.956080198287963867e-01,2.782200050354003906e+01,2.681999969482421875e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.193913698196411133e+00,inf,1.743574142456054688e+01,6.632862091064453125e-01,4.705976843833923340e-01,1.019158661365509033e-01,2.114520519971847534e-01,6.632862091064453125e-01,4.705976843833923340e-01,1.019158661365509033e-01,2.114520519971847534e-01,2.775799942016601562e+01,2.565999984741210938e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.461396455764770508e+00,inf,1.935078620910644531e+01,6.632862091064453125e-01,4.502761065959930420e-01,1.007078662514686584e-01,2.029098272323608398e-01,6.632862091064453125e-01,4.502761065959930420e-01,1.007078662514686584e-01,2.029098272323608398e-01,2.767399978637695312e+01,2.765999984741210938e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.861267924308776855e+00,inf,2.027614021301269531e+01,6.632862091064453125e-01,3.369401991367340088e-01,1.047141849994659424e-01,2.023514807224273682e-01,6.632862091064453125e-01,3.369401991367340088e-01,1.047141849994659424e-01,2.023514807224273682e-01,2.745599937438964844e+01,2.745999908447265625e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.746285200119018555e+00,inf,1.756708717346191406e+01,6.632862091064453125e-01,4.242511093616485596e-01,1.048329249024391174e-01,2.011554688215255737e-01,6.632862091064453125e-01,4.242511093616485596e-01,1.048329249024391174e-01,2.011554688215255737e-01,2.813599967956542969e+01,2.663999938964843750e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.746285200119018555e+00,inf,1.792835235595703125e+01,6.632862091064453125e-01,4.242511093616485596e-01,1.077287718653678894e-01,2.067084312438964844e-01,6.632862091064453125e-01,4.242511093616485596e-01,1.077287718653678894e-01,2.067084312438964844e-01,2.709399986267089844e+01,2.771999931335449219e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.744814157485961914e+00,inf,1.699356079101562500e+01,6.632862091064453125e-01,4.100625514984130859e-01,1.068609207868576050e-01,2.024245709180831909e-01,6.632862091064453125e-01,4.100625514984130859e-01,1.068609207868576050e-01,2.024245709180831909e-01,2.703199958801269531e+01,2.650000000000000000e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.542712807655334473e+00,inf,1.633948326110839844e+01,6.632862091064453125e-01,4.406892955303192139e-01,1.052601635456085205e-01,2.122879475355148315e-01,6.632862091064453125e-01,4.406892955303192139e-01,1.052601635456085205e-01,2.122879475355148315e-01,2.747599983215332031e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,2.196818351745605469e+00,inf,1.896723175048828125e+01,6.632862091064453125e-01,3.972429037094116211e-01,1.040296405553817749e-01,1.991242021322250366e-01,6.632862091064453125e-01,3.972429037094116211e-01,1.040296405553817749e-01,1.991242021322250366e-01,2.795199966430664062e+01,2.602000045776367188e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,3.554102420806884766e+00,inf,1.805445480346679688e+01,6.632862091064453125e-01,3.313176631927490234e-01,1.023025512695312500e-01,1.963012367486953735e-01,6.632862091064453125e-01,3.313176631927490234e-01,1.023025512695312500e-01,1.963012367486953735e-01,2.748999977111816406e+01,2.752000045776367188e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.382202386856079102e+00,inf,1.656822013854980469e+01,6.632862091064453125e-01,4.387197196483612061e-01,9.962188452482223511e-02,2.087762802839279175e-01,6.632862091064453125e-01,4.387197196483612061e-01,9.962188452482223511e-02,2.087762802839279175e-01,2.760000038146972656e+01,2.623999977111816406e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.713890552520751953e+00,inf,1.788484001159667969e+01,6.632862091064453125e-01,4.253358840942382812e-01,1.063779219985008240e-01,2.047175765037536621e-01,6.632862091064453125e-01,4.253358840942382812e-01,1.063779219985008240e-01,2.047175765037536621e-01,2.714599990844726562e+01,2.470000076293945312e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.210130095481872559e+00,inf,1.775731468200683594e+01,6.632862091064453125e-01,4.736998379230499268e-01,1.041538491845130920e-01,2.000714093446731567e-01,6.632862091064453125e-01,4.736998379230499268e-01,1.041538491845130920e-01,2.000714093446731567e-01,2.748200035095214844e+01,2.713999938964843750e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.968085527420043945e+00,inf,1.848305130004882812e+01,6.632862091064453125e-01,3.960843086242675781e-01,1.069116890430450439e-01,2.044126838445663452e-01,6.632862091064453125e-01,3.960843086242675781e-01,1.069116890430450439e-01,2.044126838445663452e-01,2.736199951171875000e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.449292540550231934e+00,inf,1.589038562774658203e+01,6.632862091064453125e-01,4.731266796588897705e-01,1.082250550389289856e-01,2.191535532474517822e-01,6.632862091064453125e-01,4.731266796588897705e-01,1.082250550389289856e-01,2.191535532474517822e-01,2.727799987792968750e+01,2.713999938964843750e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,9.519621133804321289e-01,inf,1.743103790283203125e+01,6.632862091064453125e-01,5.065553188323974609e-01,1.074075847864151001e-01,2.045461088418960571e-01,6.632862091064453125e-01,5.065553188323974609e-01,1.074075847864151001e-01,2.045461088418960571e-01,2.745199966430664062e+01,2.507999992370605469e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,3.312055587768554688e+00,inf,1.763658905029296875e+01,6.632862091064453125e-01,3.160212934017181396e-01,1.035864502191543579e-01,2.004782706499099731e-01,6.632862091064453125e-01,3.160212934017181396e-01,1.035864502191543579e-01,2.004782706499099731e-01,2.755800056457519531e+01,2.871999931335449219e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,2.952182054519653320e+00,inf,1.931125259399414062e+01,6.632862091064453125e-01,3.489108085632324219e-01,1.030859351158142090e-01,1.907964348793029785e-01,6.632862091064453125e-01,3.489108085632324219e-01,1.030859351158142090e-01,1.907964348793029785e-01,2.744199943542480469e+01,2.637999916076660156e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.239915847778320312e+00,inf,1.815251731872558594e+01,6.632862091064453125e-01,4.658646583557128906e-01,1.086248233914375305e-01,2.009639292955398560e-01,6.632862091064453125e-01,4.658646583557128906e-01,1.086248233914375305e-01,2.009639292955398560e-01,2.740600013732910156e+01,2.715999984741210938e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.193913698196411133e+00,inf,1.788297462463378906e+01,6.632862091064453125e-01,4.705976843833923340e-01,1.035495549440383911e-01,2.024751603603363037e-01,6.632862091064453125e-01,4.705976843833923340e-01,1.035495549440383911e-01,2.024751603603363037e-01,2.724799919128417969e+01,2.505999946594238281e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.631400465965270996e+00,inf,1.898848533630371094e+01,6.632862091064453125e-01,3.290193676948547363e-01,1.078273504972457886e-01,2.068178802728652954e-01,6.632862091064453125e-01,3.290193676948547363e-01,1.078273504972457886e-01,2.068178802728652954e-01,2.734000015258789062e+01,2.847999954223632812e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,3.119668483734130859e+00,1.639874439952545758e+29,1.561530780792236328e+01,6.632862091064453125e-01,3.652937710285186768e-01,1.103859245777130127e-01,2.150141447782516479e-01,6.632862091064453125e-01,3.652937710285186768e-01,1.103859245777130127e-01,2.150141447782516479e-01,2.698999977111816406e+01,2.845999908447265625e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,1.590517401695251465e+00,inf,1.622126197814941406e+01,6.632862091064453125e-01,4.308969974517822266e-01,1.073950380086898804e-01,2.156661301851272583e-01,6.632862091064453125e-01,4.308969974517822266e-01,1.073950380086898804e-01,2.156661301851272583e-01,2.737400054931640625e+01,2.584000015258789062e+01,-1.000000000000000000e+00 -2.109863013029098511e-01,2.507501363754272461e+00,7.673741951871743951e+21,1.832744216918945312e+01,6.632862091064453125e-01,3.827203214168548584e-01,1.066658645868301392e-01,2.035553455352783203e-01,6.632862091064453125e-01,3.827203214168548584e-01,1.066658645868301392e-01,2.035553455352783203e-01,2.746400070190429688e+01,2.752000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,8.149464428424835205e-02,inf,1.561093902587890625e+01,7.896904349327087402e-01,7.896904349327087402e-01,1.128754168748855591e-01,2.294350713491439819e-01,7.896904349327087402e-01,7.896904349327087402e-01,1.128754168748855591e-01,2.294350713491439819e-01,2.652799987792968750e+01,2.473999977111816406e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.555905342102050781e+00,inf,1.841978263854980469e+01,7.896904349327087402e-01,2.385618537664413452e-01,1.017892509698867798e-01,1.905187666416168213e-01,7.896904349327087402e-01,2.385618537664413452e-01,1.017892509698867798e-01,1.905187666416168213e-01,2.724399948120117188e+01,2.660000038146972656e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,8.772780895233154297e-01,inf,1.542930316925048828e+01,7.896904349327087402e-01,5.135922431945800781e-01,1.044250652194023132e-01,2.170113027095794678e-01,7.896904349327087402e-01,5.135922431945800781e-01,1.044250652194023132e-01,2.170113027095794678e-01,2.658200073242187500e+01,2.768000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.507501363754272461e+00,inf,1.963087463378906250e+01,7.896904349327087402e-01,3.827203214168548584e-01,1.046664193272590637e-01,1.906784921884536743e-01,7.896904349327087402e-01,3.827203214168548584e-01,1.046664193272590637e-01,1.906784921884536743e-01,2.671999931335449219e+01,2.547999954223632812e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.392392396926879883e+00,inf,1.814756202697753906e+01,7.896904349327087402e-01,3.076807558536529541e-01,1.083174422383308411e-01,2.015912979841232300e-01,7.896904349327087402e-01,3.076807558536529541e-01,1.083174422383308411e-01,2.015912979841232300e-01,2.637999916076660156e+01,2.692000007629394531e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.158752322196960449e+00,inf,1.566391372680664062e+01,7.896904349327087402e-01,4.581319689750671387e-01,1.064032763242721558e-01,2.201907932758331299e-01,7.896904349327087402e-01,4.581319689750671387e-01,1.064032763242721558e-01,2.201907932758331299e-01,2.672200012207031250e+01,2.378000068664550781e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.722189426422119141e+00,inf,1.680057907104492188e+01,7.896904349327087402e-01,4.260789752006530762e-01,1.096820458769798279e-01,2.116016298532485962e-01,7.896904349327087402e-01,4.260789752006530762e-01,1.096820458769798279e-01,2.116016298532485962e-01,2.692600059509277344e+01,2.879999923706054688e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.746285200119018555e+00,2.802475733316816861e+29,1.662817001342773438e+01,7.896904349327087402e-01,4.501909017562866211e-01,1.066443622112274170e-01,2.112774550914764404e-01,7.896904349327087402e-01,4.501909017562866211e-01,1.066443622112274170e-01,2.112774550914764404e-01,2.666799926757812500e+01,2.326000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.542712807655334473e+00,inf,1.859524154663085938e+01,7.896904349327087402e-01,4.406892955303192139e-01,1.127729490399360657e-01,2.173641324043273926e-01,7.896904349327087402e-01,4.406892955303192139e-01,1.127729490399360657e-01,2.173641324043273926e-01,2.668199920654296875e+01,2.636000061035156250e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.396639466285705566e+00,inf,1.398942756652832031e+01,7.896904349327087402e-01,4.662283360958099365e-01,1.108584403991699219e-01,2.204810380935668945e-01,7.896904349327087402e-01,4.662283360958099365e-01,1.108584403991699219e-01,2.204810380935668945e-01,2.572400093078613281e+01,2.463999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.392392396926879883e+00,inf,1.425398826599121094e+01,7.896904349327087402e-01,3.550140857696533203e-01,1.101069301366806030e-01,2.107539474964141846e-01,7.896904349327087402e-01,3.550140857696533203e-01,1.101069301366806030e-01,2.107539474964141846e-01,2.612199974060058594e+01,2.510000038146972656e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.557891607284545898e+00,inf,1.490138053894042969e+01,7.896904349327087402e-01,3.608709573745727539e-01,1.104003265500068665e-01,2.084258049726486206e-01,7.896904349327087402e-01,3.608709573745727539e-01,1.104003265500068665e-01,2.084258049726486206e-01,2.641799926757812500e+01,2.663999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,inf,1.382235908508300781e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.095651015639305115e-01,2.166977822780609131e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.095651015639305115e-01,2.166977822780609131e-01,2.724399948120117188e+01,2.502000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.675975203514099121e+00,inf,1.781563186645507812e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.106309741735458374e-01,2.090134024620056152e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.106309741735458374e-01,2.090134024620056152e-01,2.599200057983398438e+01,2.479999923706054688e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.329229593276977539e+00,inf,1.339687061309814453e+01,7.896904349327087402e-01,4.876703917980194092e-01,1.085989847779273987e-01,2.264161109924316406e-01,7.896904349327087402e-01,4.876703917980194092e-01,1.085989847779273987e-01,2.264161109924316406e-01,2.634000015258789062e+01,2.428000068664550781e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.193913698196411133e+00,inf,1.508052635192871094e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.077247858047485352e-01,2.289826869964599609e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.077247858047485352e-01,2.289826869964599609e-01,2.625399971008300781e+01,2.536000061035156250e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.261111617088317871e+00,inf,1.478937149047851562e+01,7.896904349327087402e-01,4.680208861827850342e-01,1.096853390336036682e-01,2.176827043294906616e-01,7.896904349327087402e-01,4.680208861827850342e-01,1.096853390336036682e-01,2.176827043294906616e-01,2.631800079345703125e+01,2.668000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.938591003417968750e+00,inf,1.760140991210937500e+01,7.896904349327087402e-01,3.704019486904144287e-01,1.099109798669815063e-01,2.268493175506591797e-01,7.896904349327087402e-01,3.704019486904144287e-01,1.099109798669815063e-01,2.268493175506591797e-01,2.673200035095214844e+01,2.679999923706054688e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.885816574096679688e+00,2.880089081215985910e+20,1.667135429382324219e+01,7.896904349327087402e-01,3.608709573745727539e-01,1.119481101632118225e-01,2.046437859535217285e-01,7.896904349327087402e-01,3.608709573745727539e-01,1.119481101632118225e-01,2.046437859535217285e-01,2.628800010681152344e+01,2.704000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.293147087097167969e+00,3.588256169984000000e+12,1.619449996948242188e+01,7.896904349327087402e-01,4.373026192188262939e-01,1.111294031143188477e-01,2.137230336666107178e-01,7.896904349327087402e-01,4.373026192188262939e-01,1.111294031143188477e-01,2.137230336666107178e-01,2.619799995422363281e+01,2.404000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.261111617088317871e+00,2.369442139064101908e+31,1.493012905120849609e+01,7.896904349327087402e-01,4.680208861827850342e-01,1.105564236640930176e-01,2.230401039123535156e-01,7.896904349327087402e-01,4.680208861827850342e-01,1.105564236640930176e-01,2.230401039123535156e-01,2.618400001525878906e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.196233987808227539e+00,8.679230495117244527e+35,1.629719352722167969e+01,7.896904349327087402e-01,3.986912071704864502e-01,1.140122637152671814e-01,2.073679268360137939e-01,7.896904349327087402e-01,3.986912071704864502e-01,1.140122637152671814e-01,2.073679268360137939e-01,2.681999969482421875e+01,2.652000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.670494556427001953e+00,inf,1.437956809997558594e+01,7.896904349327087402e-01,4.320366978645324707e-01,1.138963848352432251e-01,2.341192960739135742e-01,7.896904349327087402e-01,4.320366978645324707e-01,1.138963848352432251e-01,2.341192960739135742e-01,2.647800064086914062e+01,2.515999984741210938e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.746285200119018555e+00,1.288244198218182254e+30,1.689324951171875000e+01,7.896904349327087402e-01,4.242511093616485596e-01,1.088772639632225037e-01,2.047743499279022217e-01,7.896904349327087402e-01,4.242511093616485596e-01,1.088772639632225037e-01,2.047743499279022217e-01,2.638400077819824219e+01,2.610000038146972656e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.713890552520751953e+00,3.037304913920000000e+11,1.586416816711425781e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.106119975447654724e-01,2.151022702455520630e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.106119975447654724e-01,2.151022702455520630e-01,2.635600090026855469e+01,2.576000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,9.404219985008239746e-01,inf,1.584920310974121094e+01,7.896904349327087402e-01,5.149179697036743164e-01,1.110704541206359863e-01,2.247329056262969971e-01,7.896904349327087402e-01,5.149179697036743164e-01,1.110704541206359863e-01,2.247329056262969971e-01,2.596400070190429688e+01,2.470000076293945312e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.899254560470581055e+00,inf,1.527793407440185547e+01,7.896904349327087402e-01,4.329067766666412354e-01,1.132562682032585144e-01,2.203341275453567505e-01,7.896904349327087402e-01,4.329067766666412354e-01,1.132562682032585144e-01,2.203341275453567505e-01,2.598999977111816406e+01,2.523999977111816406e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,1.340577274686684347e+29,1.462746906280517578e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.135565936565399170e-01,2.250386178493499756e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.135565936565399170e-01,2.250386178493499756e-01,2.657200050354003906e+01,2.587999916076660156e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.405068218708038330e-01,inf,1.669806289672851562e+01,7.896904349327087402e-01,6.168722510337829590e-01,1.087614297866821289e-01,2.175270766019821167e-01,7.896904349327087402e-01,6.168722510337829590e-01,1.087614297866821289e-01,2.175270766019821167e-01,2.538400077819824219e+01,2.368000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,inf,1.630471611022949219e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.118479073047637939e-01,2.171647101640701294e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.118479073047637939e-01,2.171647101640701294e-01,2.599600028991699219e+01,2.589999961853027344e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.120040655136108398e+00,8.819897720816445430e+36,1.524654006958007812e+01,7.896904349327087402e-01,4.834851026535034180e-01,1.100661084055900574e-01,2.279609590768814087e-01,7.896904349327087402e-01,4.834851026535034180e-01,1.100661084055900574e-01,2.279609590768814087e-01,2.451399993896484375e+01,2.476000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.055908441543579102e+00,inf,1.571108055114746094e+01,7.896904349327087402e-01,4.261181354522705078e-01,1.160486042499542236e-01,2.214538753032684326e-01,7.896904349327087402e-01,4.261181354522705078e-01,1.160486042499542236e-01,2.214538753032684326e-01,2.498200035095214844e+01,2.310000038146972656e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.713890552520751953e+00,1.622968708839702911e+26,1.580605316162109375e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.123268678784370422e-01,2.133216559886932373e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.123268678784370422e-01,2.133216559886932373e-01,2.487999916076660156e+01,2.662000083923339844e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.746285200119018555e+00,4.831372654716086617e+33,1.367841339111328125e+01,7.896904349327087402e-01,4.242511093616485596e-01,1.187194883823394775e-01,2.386173158884048462e-01,7.896904349327087402e-01,4.242511093616485596e-01,1.187194883823394775e-01,2.386173158884048462e-01,2.494799995422363281e+01,2.415999984741210938e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,6.760794520378112793e-01,inf,1.609800720214843750e+01,7.896904349327087402e-01,5.370388031005859375e-01,1.140615642070770264e-01,2.178508639335632324e-01,7.896904349327087402e-01,5.370388031005859375e-01,1.140615642070770264e-01,2.178508639335632324e-01,2.515999984741210938e+01,2.581999969482421875e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.568438053131103516e+00,1.855054500824602378e+21,1.626729965209960938e+01,7.896904349327087402e-01,4.492482244968414307e-01,1.128771305084228516e-01,2.097183912992477417e-01,7.896904349327087402e-01,4.492482244968414307e-01,1.128771305084228516e-01,2.097183912992477417e-01,2.420000076293945312e+01,2.376000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.480333983898162842e-01,inf,1.322438049316406250e+01,7.896904349327087402e-01,5.854755640029907227e-01,1.188483163714408875e-01,2.398385554552078247e-01,7.896904349327087402e-01,5.854755640029907227e-01,1.188483163714408875e-01,2.398385554552078247e-01,2.441600036621093750e+01,2.613999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,9.325629472732543945e-01,2.832084268476276886e+31,1.460283184051513672e+01,7.896904349327087402e-01,5.290623307228088379e-01,1.165445595979690552e-01,2.356424927711486816e-01,7.896904349327087402e-01,5.290623307228088379e-01,1.165445595979690552e-01,2.356424927711486816e-01,2.489599990844726562e+01,2.437999916076660156e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.713890552520751953e+00,inf,1.291216850280761719e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.173998191952705383e-01,2.168198972940444946e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.173998191952705383e-01,2.168198972940444946e-01,2.402799987792968750e+01,2.265999984741210938e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.243361949920654297e+00,inf,1.415308380126953125e+01,7.896904349327087402e-01,4.412270784378051758e-01,1.201953589916229248e-01,2.292044460773468018e-01,7.896904349327087402e-01,4.412270784378051758e-01,1.201953589916229248e-01,2.292044460773468018e-01,2.308399963378906250e+01,2.128000068664550781e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,8.005070686340332031e-01,3.514515783680000000e+11,1.378940391540527344e+01,7.896904349327087402e-01,5.148575901985168457e-01,1.221734657883644104e-01,2.309122234582901001e-01,7.896904349327087402e-01,5.148575901985168457e-01,1.221734657883644104e-01,2.309122234582901001e-01,2.367000007629394531e+01,2.337999916076660156e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,1.044408890066470961e+21,1.319374942779541016e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.256943345069885254e-01,2.548844516277313232e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.256943345069885254e-01,2.548844516277313232e-01,2.364599990844726562e+01,2.252000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,1.733603030481042093e+22,1.457139968872070312e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.165197715163230896e-01,2.260941565036773682e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.165197715163230896e-01,2.260941565036773682e-01,2.335199928283691406e+01,2.400000000000000000e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.261126697063446045e-01,1.891269345280000000e+11,1.361414718627929688e+01,7.896904349327087402e-01,7.354717850685119629e-01,1.210843473672866821e-01,2.368717789649963379e-01,7.896904349327087402e-01,7.354717850685119629e-01,1.210843473672866821e-01,2.368717789649963379e-01,2.263199996948242188e+01,2.102000045776367188e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.193913698196411133e+00,1.140356043712437872e+25,1.222672271728515625e+01,7.896904349327087402e-01,4.705976843833923340e-01,1.223896071314811707e-01,2.429018169641494751e-01,7.896904349327087402e-01,4.705976843833923340e-01,1.223896071314811707e-01,2.429018169641494751e-01,2.332999992370605469e+01,2.163999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.132376909255981445e+00,6.306591733186560000e+14,1.529527187347412109e+01,7.896904349327087402e-01,4.753471910953521729e-01,1.168825775384902954e-01,2.130514383316040039e-01,7.896904349327087402e-01,4.753471910953521729e-01,1.168825775384902954e-01,2.130514383316040039e-01,2.435799980163574219e+01,2.444000053405761719e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.193913698196411133e+00,2.313812353934307413e+22,1.407354164123535156e+01,7.896904349327087402e-01,4.705976843833923340e-01,1.206520348787307739e-01,2.303407192230224609e-01,7.896904349327087402e-01,4.705976843833923340e-01,1.206520348787307739e-01,2.303407192230224609e-01,2.430999946594238281e+01,2.513999938964843750e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.507501363754272461e+00,5.857913220594394048e+27,1.528908443450927734e+01,7.896904349327087402e-01,4.481537342071533203e-01,1.176782846450805664e-01,2.198299318552017212e-01,7.896904349327087402e-01,4.481537342071533203e-01,1.176782846450805664e-01,2.198299318552017212e-01,2.558399963378906250e+01,2.771999931335449219e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.713890552520751953e+00,inf,1.479658603668212891e+01,7.896904349327087402e-01,4.253358840942382812e-01,1.177210360765457153e-01,2.197324633598327637e-01,7.896904349327087402e-01,4.253358840942382812e-01,1.177210360765457153e-01,2.197324633598327637e-01,2.513800048828125000e+01,2.542000007629394531e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.193913698196411133e+00,inf,1.737659072875976562e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.145640984177589417e-01,2.231391221284866333e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.145640984177589417e-01,2.231391221284866333e-01,2.509600067138671875e+01,2.547999954223632812e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.542712807655334473e+00,inf,1.572077083587646484e+01,7.896904349327087402e-01,4.406892955303192139e-01,1.179460734128952026e-01,2.176445573568344116e-01,7.896904349327087402e-01,4.406892955303192139e-01,1.179460734128952026e-01,2.176445573568344116e-01,2.461800003051757812e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.177418947219848633e+00,inf,1.687455368041992188e+01,7.896904349327087402e-01,4.068573117256164551e-01,1.182919144630432129e-01,2.113601863384246826e-01,7.896904349327087402e-01,4.068573117256164551e-01,1.182919144630432129e-01,2.113601863384246826e-01,2.539200019836425781e+01,2.621999931335449219e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,inf,1.355571365356445312e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.264398992061614990e-01,2.568646371364593506e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.264398992061614990e-01,2.568646371364593506e-01,2.582799911499023438e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.542712807655334473e+00,inf,1.546739196777343750e+01,7.896904349327087402e-01,4.406892955303192139e-01,1.174538582563400269e-01,2.181653380393981934e-01,7.896904349327087402e-01,4.406892955303192139e-01,1.174538582563400269e-01,2.181653380393981934e-01,2.600200080871582031e+01,2.768000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.596017718315124512e-01,2.081639257812500000e+04,1.422673797607421875e+01,7.896904349327087402e-01,6.624149680137634277e-01,1.203133463859558105e-01,2.396043986082077026e-01,7.896904349327087402e-01,6.624149680137634277e-01,1.203133463859558105e-01,2.396043986082077026e-01,2.552799987792968750e+01,2.505999946594238281e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.150487899780273438e+00,7.181973600000000000e+07,1.276636981964111328e+01,7.896904349327087402e-01,4.705976843833923340e-01,1.194237694144248962e-01,2.306844145059585571e-01,7.896904349327087402e-01,4.705976843833923340e-01,1.194237694144248962e-01,2.306844145059585571e-01,2.560000038146972656e+01,2.526000022888183594e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,5.640289550781250000e+03,1.346369647979736328e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.194322332739830017e-01,2.368047237396240234e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.194322332739830017e-01,2.368047237396240234e-01,2.599799919128417969e+01,2.542000007629394531e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,9.273648858070373535e-01,inf,1.254184532165527344e+01,7.896904349327087402e-01,5.301218628883361816e-01,1.245066821575164795e-01,2.310510724782943726e-01,7.896904349327087402e-01,5.301218628883361816e-01,1.245066821575164795e-01,2.310510724782943726e-01,2.557799911499023438e+01,2.623999977111816406e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,4.342446489600000000e+10,2.322822761535644531e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.219498440623283386e-01,2.336174696683883667e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.219498440623283386e-01,2.336174696683883667e-01,2.584000015258789062e+01,2.468000030517578125e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,8.054464459419250488e-01,2.121706209280000000e+11,1.258006191253662109e+01,7.896904349327087402e-01,5.132497549057006836e-01,1.243779584765434265e-01,2.388972193002700806e-01,7.896904349327087402e-01,5.132497549057006836e-01,1.243779584765434265e-01,2.388972193002700806e-01,2.485000038146972656e+01,2.370000076293945312e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.210130095481872559e+00,2.622119896678400000e+13,1.336580085754394531e+01,7.896904349327087402e-01,4.736998379230499268e-01,1.227933764457702637e-01,2.480091750621795654e-01,7.896904349327087402e-01,4.736998379230499268e-01,1.227933764457702637e-01,2.480091750621795654e-01,2.472599983215332031e+01,2.520000076293945312e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,9.020162820816040039e-01,5.016269500000000000e+06,1.272214317321777344e+01,7.896904349327087402e-01,4.912619888782501221e-01,1.220276281237602234e-01,2.287895977497100830e-01,7.896904349327087402e-01,4.912619888782501221e-01,1.220276281237602234e-01,2.287895977497100830e-01,2.417000007629394531e+01,2.337999916076660156e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,inf,1.559026813507080078e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.221070140600204468e-01,2.386708706617355347e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.221070140600204468e-01,2.386708706617355347e-01,2.423600006103515625e+01,2.520000076293945312e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,2.109863013029098511e-01,1.681094400000000000e+08,1.407889556884765625e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.243428066372871399e-01,2.338096052408218384e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.243428066372871399e-01,2.338096052408218384e-01,2.306399917602539062e+01,2.571999931335449219e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,1.085000395774841309e+00,2.547119718400000000e+11,1.408240985870361328e+01,7.896904349327087402e-01,4.721575975418090820e-01,1.229631081223487854e-01,2.448822259902954102e-01,7.896904349327087402e-01,4.721575975418090820e-01,1.229631081223487854e-01,2.448822259902954102e-01,2.271599960327148438e+01,2.231999969482421875e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,3.544330894947052002e-01,inf,1.202114868164062500e+01,7.896904349327087402e-01,6.287566423416137695e-01,1.291682571172714233e-01,2.618445456027984619e-01,7.896904349327087402e-01,6.287566423416137695e-01,1.291682571172714233e-01,2.618445456027984619e-01,2.182200050354003906e+01,2.239999961853027344e+01,-1.000000000000000000e+00 -8.149464428424835205e-02,5.105985403060913086e-01,4.674603064440358175e+20,1.433705329895019531e+01,7.896904349327087402e-01,5.902229547500610352e-01,1.241389438509941101e-01,2.312474995851516724e-01,7.896904349327087402e-01,5.902229547500610352e-01,1.241389438509941101e-01,2.312474995851516724e-01,2.196400070190429688e+01,2.092000007629394531e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,7.800080627202987671e-02,7.717579520000000000e+08,1.234045028686523438e+01,7.896904349327087402e-01,7.715847492218017578e-01,1.256560981273651123e-01,2.555406093597412109e-01,7.896904349327087402e-01,7.715847492218017578e-01,1.256560981273651123e-01,2.555406093597412109e-01,2.062999916076660156e+01,2.278000068664550781e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,5.925034880638122559e-01,2.756538572105318400e+16,1.013474369049072266e+01,7.896904349327087402e-01,5.458043813705444336e-01,1.276642829179763794e-01,2.776876688003540039e-01,7.896904349327087402e-01,5.458043813705444336e-01,1.276642829179763794e-01,2.776876688003540039e-01,1.983799934387207031e+01,1.673999977111816406e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,1.120036840438842773e+00,4.838788628480000000e+11,1.251748561859130859e+01,7.896904349327087402e-01,4.516091644763946533e-01,1.258639842271804810e-01,2.399550229310989380e-01,7.896904349327087402e-01,4.516091644763946533e-01,1.258639842271804810e-01,2.399550229310989380e-01,2.044400024414062500e+01,1.981999969482421875e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,2.109863013029098511e-01,inf,1.033173942565917969e+01,7.896904349327087402e-01,6.632862091064453125e-01,1.275629997253417969e-01,2.685931026935577393e-01,7.896904349327087402e-01,6.632862091064453125e-01,1.275629997253417969e-01,2.685931026935577393e-01,1.919799995422363281e+01,1.634000015258789062e+01,-1.000000000000000000e+00 -7.800080627202987671e-02,2.474417090415954590e-01,1.945271679687500000e+04,1.245627117156982422e+01,7.896904349327087402e-01,6.230596303939819336e-01,1.265110373497009277e-01,2.523228228092193604e-01,7.896904349327087402e-01,6.230596303939819336e-01,1.265110373497009277e-01,2.523228228092193604e-01,2.003000068664550781e+01,1.937999916076660156e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,5.344150960445404053e-02,6.047610060800000000e+10,9.357701301574707031e+00,7.989647984504699707e-01,7.989647984504699707e-01,1.325650066137313843e-01,2.785580754280090332e-01,7.989647984504699707e-01,7.989647984504699707e-01,1.325650066137313843e-01,2.785580754280090332e-01,1.868799972534179688e+01,1.752000045776367188e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,9.196602553129196167e-02,4.553090662400000000e+10,1.152255344390869141e+01,7.989647984504699707e-01,7.689305543899536133e-01,1.308015584945678711e-01,2.726010680198669434e-01,7.989647984504699707e-01,7.689305543899536133e-01,1.308015584945678711e-01,2.726010680198669434e-01,1.890600013732910156e+01,1.907999992370605469e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.972492320000000000e+08,1.082638168334960938e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.307716369628906250e-01,2.610436677932739258e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.307716369628906250e-01,2.610436677932739258e-01,1.903400039672851562e+01,1.829999923706054688e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.645434240000000000e+08,1.082867050170898438e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.287373304367065430e-01,2.530967295169830322e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.287373304367065430e-01,2.530967295169830322e-01,1.914200019836425781e+01,1.787999916076660156e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,4.674809082031250000e+03,1.139617919921875000e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.300315856933593750e-01,2.611783146858215332e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.300315856933593750e-01,2.611783146858215332e-01,1.958600044250488281e+01,1.976000022888183594e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,8.288498688000000000e+09,1.218190956115722656e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.265101879835128784e-01,2.449426054954528809e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.265101879835128784e-01,2.449426054954528809e-01,2.077599906921386719e+01,2.145999908447265625e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.210130095481872559e+00,inf,9.544027328491210938e+00,7.989647984504699707e-01,4.736998379230499268e-01,1.315641850233078003e-01,2.786068022251129150e-01,7.989647984504699707e-01,4.736998379230499268e-01,1.315641850233078003e-01,2.786068022251129150e-01,2.129999923706054688e+01,2.284000015258789062e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,6.069544553756713867e-01,6.616898355200000000e+10,1.021937847137451172e+01,7.989647984504699707e-01,5.570317506790161133e-01,1.307744830846786499e-01,2.614164948463439941e-01,7.989647984504699707e-01,5.570317506790161133e-01,1.307744830846786499e-01,2.614164948463439941e-01,2.054999923706054688e+01,2.070000076293945312e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,8.005070686340332031e-01,9.979113769531250000e+02,1.298945903778076172e+01,7.989647984504699707e-01,5.026931762695312500e-01,1.270654201507568359e-01,2.347292155027389526e-01,7.989647984504699707e-01,5.026931762695312500e-01,1.270654201507568359e-01,2.347292155027389526e-01,2.217399978637695312e+01,2.165999984741210938e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.025777816772460938e+00,inf,1.122727775573730469e+01,7.989647984504699707e-01,4.736998379230499268e-01,1.279216259717941284e-01,2.492511868476867676e-01,7.989647984504699707e-01,4.736998379230499268e-01,1.279216259717941284e-01,2.492511868476867676e-01,2.253599929809570312e+01,2.186000061035156250e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.584938049316406250e-01,1.472304644096000000e+12,1.151367282867431641e+01,7.989647984504699707e-01,6.230207085609436035e-01,1.243281587958335876e-01,2.412305921316146851e-01,7.989647984504699707e-01,6.230207085609436035e-01,1.243281587958335876e-01,2.412305921316146851e-01,2.384399986267089844e+01,2.434000015258789062e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,3.583490048000000000e+10,1.232981109619140625e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.310551911592483521e-01,2.544735074043273926e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.310551911592483521e-01,2.544735074043273926e-01,2.316799926757812500e+01,2.405999946594238281e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,4.371345703125000000e+03,1.287490653991699219e+01,7.989647984504699707e-01,6.794257760047912598e-01,1.263858079910278320e-01,2.612386047840118408e-01,7.989647984504699707e-01,6.794257760047912598e-01,1.263858079910278320e-01,2.612386047840118408e-01,2.548200035095214844e+01,2.644000053405761719e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.887555016891797621e+25,1.145369815826416016e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.267117410898208618e-01,2.699019312858581543e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.267117410898208618e-01,2.699019312858581543e-01,2.450200080871582031e+01,2.118000030517578125e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.821689903736114502e-01,3.553826816000000000e+10,1.480382537841796875e+01,7.989647984504699707e-01,7.004724740982055664e-01,1.248414441943168640e-01,2.379978150129318237e-01,7.989647984504699707e-01,7.004724740982055664e-01,1.248414441943168640e-01,2.379978150129318237e-01,2.597999954223632812e+01,2.715999984741210938e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.547085209600000000e+10,1.338859367370605469e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.290121078491210938e-01,2.516867816448211670e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.290121078491210938e-01,2.516867816448211670e-01,2.595400047302246094e+01,2.573999977111816406e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.193913698196411133e+00,4.006594150400000000e+11,1.224617195129394531e+01,7.989647984504699707e-01,4.705976843833923340e-01,1.254430264234542847e-01,2.455602735280990601e-01,7.989647984504699707e-01,4.705976843833923340e-01,1.254430264234542847e-01,2.455602735280990601e-01,2.534000015258789062e+01,2.526000022888183594e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,6.886041015625000000e+03,1.258436965942382812e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.285329461097717285e-01,2.539549469947814941e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.285329461097717285e-01,2.539549469947814941e-01,2.548600006103515625e+01,2.604000091552734375e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,9.759382528000000000e+09,1.250126647949218750e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.233207955956459045e-01,2.445428520441055298e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.233207955956459045e-01,2.445428520441055298e-01,2.490999984741210938e+01,2.455999946594238281e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.025777816772460938e+00,4.152039550781250000e+03,1.245578670501708984e+01,7.989647984504699707e-01,4.651739299297332764e-01,1.286378204822540283e-01,2.509035170078277588e-01,7.989647984504699707e-01,4.651739299297332764e-01,1.286378204822540283e-01,2.509035170078277588e-01,2.429599952697753906e+01,2.302000045776367188e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.261111617088317871e+00,4.568113123164160000e+14,1.189118099212646484e+01,7.989647984504699707e-01,4.680208861827850342e-01,1.291586905717849731e-01,2.492566555738449097e-01,7.989647984504699707e-01,4.680208861827850342e-01,1.291586905717849731e-01,2.492566555738449097e-01,2.476000022888183594e+01,2.257999992370605469e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,9.027336835861206055e-01,1.181014240000000000e+08,9.674374580383300781e+00,7.989647984504699707e-01,4.927045106887817383e-01,1.305744647979736328e-01,2.678104341030120850e-01,7.989647984504699707e-01,4.927045106887817383e-01,1.305744647979736328e-01,2.678104341030120850e-01,2.289999961853027344e+01,2.144000053405761719e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.099302240000000000e+08,1.222595596313476562e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.267599463462829590e-01,2.471097409725189209e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.267599463462829590e-01,2.471097409725189209e-01,2.383399963378906250e+01,2.494000053405761719e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.210130095481872559e+00,2.093759178902213755e+20,9.356169700622558594e+00,7.989647984504699707e-01,4.736998379230499268e-01,1.294355839490890503e-01,2.816489636898040771e-01,7.989647984504699707e-01,4.736998379230499268e-01,1.294355839490890503e-01,2.816489636898040771e-01,2.344799995422363281e+01,1.992000007629394531e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.210130095481872559e+00,8.290422183414481548e+30,1.423481559753417969e+01,7.989647984504699707e-01,4.736998379230499268e-01,1.255804151296615601e-01,2.316051125526428223e-01,7.989647984504699707e-01,4.736998379230499268e-01,1.255804151296615601e-01,2.316051125526428223e-01,2.341799926757812500e+01,2.429999923706054688e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.612653613090515137e-01,2.118007861117743792e+21,1.500947570800781250e+01,7.989647984504699707e-01,6.108763217926025391e-01,1.268755495548248291e-01,2.572955191135406494e-01,7.989647984504699707e-01,6.108763217926025391e-01,1.268755495548248291e-01,2.572955191135406494e-01,2.335400009155273438e+01,2.100000000000000000e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.363325297832489014e-01,1.641017600000000000e+08,1.397825527191162109e+01,7.989647984504699707e-01,6.198371052742004395e-01,1.250347793102264404e-01,2.440443933010101318e-01,7.989647984504699707e-01,6.198371052742004395e-01,1.250347793102264404e-01,2.440443933010101318e-01,2.346599960327148438e+01,2.429999923706054688e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,9.123830795288085938e-01,5.900202803200000000e+10,1.106532669067382812e+01,7.989647984504699707e-01,5.057445764541625977e-01,1.300102621316909790e-01,2.595724165439605713e-01,7.989647984504699707e-01,5.057445764541625977e-01,1.300102621316909790e-01,2.595724165439605713e-01,2.268000030517578125e+01,2.045999908447265625e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.168404698371887207e+00,2.163405250000000000e+06,9.657444953918457031e+00,7.989647984504699707e-01,4.937959909439086914e-01,1.318843811750411987e-01,2.632430791854858398e-01,7.989647984504699707e-01,4.937959909439086914e-01,1.318843811750411987e-01,2.632430791854858398e-01,2.338599967956542969e+01,2.339999961853027344e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,6.470662355422973633e-01,1.567580411487067893e+30,1.018413066864013672e+01,7.989647984504699707e-01,5.903214216232299805e-01,1.345145553350448608e-01,2.759525775909423828e-01,7.989647984504699707e-01,5.903214216232299805e-01,1.345145553350448608e-01,2.759525775909423828e-01,2.353000068664550781e+01,2.484000015258789062e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,inf,1.277149200439453125e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.253007203340530396e-01,2.577877640724182129e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.253007203340530396e-01,2.577877640724182129e-01,2.337599945068359375e+01,2.394000053405761719e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,1.193913698196411133e+00,2.714051338274078720e+17,1.200497055053710938e+01,7.989647984504699707e-01,4.705976843833923340e-01,1.269249320030212402e-01,2.350639402866363525e-01,7.989647984504699707e-01,4.705976843833923340e-01,1.269249320030212402e-01,2.350639402866363525e-01,2.310000038146972656e+01,1.854000091552734375e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.363325297832489014e-01,9.964839577771101389e+19,1.091503715515136719e+01,7.989647984504699707e-01,6.198371052742004395e-01,1.341388970613479614e-01,2.621543109416961670e-01,7.989647984504699707e-01,6.198371052742004395e-01,1.341388970613479614e-01,2.621543109416961670e-01,2.294000053405761719e+01,2.071999931335449219e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.076634109020233154e-01,2.190286080000000000e+09,1.136752796173095703e+01,7.989647984504699707e-01,6.453108191490173340e-01,1.275711804628372192e-01,2.553065419197082520e-01,7.989647984504699707e-01,6.453108191490173340e-01,1.275711804628372192e-01,2.553065419197082520e-01,2.225399971008300781e+01,2.157999992370605469e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,3.913600937500000000e+05,1.030700397491455078e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.331938952207565308e-01,2.741284370422363281e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.331938952207565308e-01,2.741284370422363281e-01,2.372599983215332031e+01,1.971999931335449219e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.765019240761653199e+21,1.000710010528564453e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.333297342061996460e-01,2.906825542449951172e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.333297342061996460e-01,2.906825542449951172e-01,2.330200004577636719e+01,2.129999923706054688e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,3.862617611885070801e-01,2.593045760000000000e+08,1.175032901763916016e+01,7.989647984504699707e-01,6.066207289695739746e-01,1.271941512823104858e-01,2.496217787265777588e-01,7.989647984504699707e-01,6.066207289695739746e-01,1.271941512823104858e-01,2.496217787265777588e-01,2.311000061035156250e+01,1.895999908447265625e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.039786400000000000e+08,1.067199993133544922e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.349129676818847656e-01,2.830415666103363037e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.349129676818847656e-01,2.830415666103363037e-01,2.255999946594238281e+01,2.002000045776367188e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,9.480238556861877441e-01,4.929064453125000000e+03,1.176759910583496094e+01,7.989647984504699707e-01,4.965257048606872559e-01,1.293713003396987915e-01,2.532630860805511475e-01,7.989647984504699707e-01,4.965257048606872559e-01,1.293713003396987915e-01,2.532630860805511475e-01,2.198399925231933594e+01,2.163999938964843750e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,4.331063500000000000e+06,9.961009025573730469e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.385496556758880615e-01,2.992818951606750488e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.385496556758880615e-01,2.992818951606750488e-01,2.186800003051757812e+01,2.120000076293945312e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,7.190691828727722168e-01,5.236036328125000000e+04,1.108612728118896484e+01,7.989647984504699707e-01,5.438839793205261230e-01,1.322617232799530029e-01,2.516010701656341553e-01,7.989647984504699707e-01,5.438839793205261230e-01,1.322617232799530029e-01,2.516010701656341553e-01,2.227400016784667969e+01,2.168000030517578125e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.462446838617324829e-01,9.558913024000000000e+10,1.122499752044677734e+01,7.989647984504699707e-01,6.794257760047912598e-01,1.294223368167877197e-01,2.577455937862396240e-01,7.989647984504699707e-01,6.794257760047912598e-01,1.294223368167877197e-01,2.577455937862396240e-01,2.204999923706054688e+01,1.842000007629394531e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.001620566016000000e+12,8.600709915161132812e+00,7.989647984504699707e-01,6.794257760047912598e-01,1.368969380855560303e-01,2.849435806274414062e-01,7.989647984504699707e-01,6.794257760047912598e-01,1.368969380855560303e-01,2.849435806274414062e-01,2.162800025939941406e+01,1.978000068664550781e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,4.024281616210937500e+02,1.223228836059570312e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.337277442216873169e-01,2.753653526306152344e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.337277442216873169e-01,2.753653526306152344e-01,2.060600090026855469e+01,1.773999977111816406e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,5.977646112442016602e-01,1.180054500000000000e+07,1.098357105255126953e+01,7.989647984504699707e-01,5.631397962570190430e-01,1.364877521991729736e-01,2.600618600845336914e-01,7.989647984504699707e-01,5.631397962570190430e-01,1.364877521991729736e-01,2.600618600845336914e-01,2.128400039672851562e+01,1.981999969482421875e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.635683349609375000e+03,1.042393875122070312e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.323377639055252075e-01,2.775258123874664307e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.323377639055252075e-01,2.775258123874664307e-01,2.003000068664550781e+01,1.860000038146972656e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.477541210937500000e+04,1.191611194610595703e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.334009915590286255e-01,2.637566030025482178e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.334009915590286255e-01,2.637566030025482178e-01,1.891600036621093750e+01,1.662000083923339844e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,9.008518066406250000e+02,8.653997421264648438e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.407577544450759888e-01,2.986161410808563232e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.407577544450759888e-01,2.986161410808563232e-01,1.927400016784667969e+01,1.831999969482421875e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,5.974679961600000000e+10,1.004401016235351562e+01,7.989647984504699707e-01,6.632862091064453125e-01,1.392899751663208008e-01,3.091067969799041748e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.392899751663208008e-01,3.091067969799041748e-01,1.702000045776367188e+01,1.660000038146972656e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,inf,6.101706981658935547e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.433396339416503906e-01,3.278919458389282227e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.433396339416503906e-01,3.278919458389282227e-01,1.593999958038330078e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,9.769075927734375000e+02,5.335397720336914062e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.467777043581008911e-01,3.218415975570678711e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.467777043581008911e-01,3.218415975570678711e-01,1.442000007629394531e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,4.162530601024627686e-01,1.466293579101562500e+03,7.301302909851074219e+00,7.989647984504699707e-01,6.458863615989685059e-01,1.379741877317428589e-01,3.096953928470611572e-01,7.989647984504699707e-01,6.458863615989685059e-01,1.379741877317428589e-01,3.096953928470611572e-01,1.329800033569335938e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,5.001850880000000000e+08,6.391247749328613281e+00,7.989647984504699707e-01,6.794257760047912598e-01,1.448089480400085449e-01,3.417702913284301758e-01,7.989647984504699707e-01,6.794257760047912598e-01,1.448089480400085449e-01,3.417702913284301758e-01,1.333199977874755859e+01,1.297999954223632812e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.817930240000000000e+08,6.247632026672363281e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.470026075839996338e-01,3.331599831581115723e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.470026075839996338e-01,3.331599831581115723e-01,1.309000015258789062e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,5.974679961600000000e+10,8.541090011596679688e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.343652158975601196e-01,2.955857813358306885e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.343652158975601196e-01,2.955857813358306885e-01,1.341399955749511719e+01,1.318000030517578125e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,2.185659667968750000e+03,6.386012077331542969e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.467085033655166626e-01,3.356825709342956543e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.467085033655166626e-01,3.356825709342956543e-01,1.350199985504150391e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -5.344150960445404053e-02,2.109863013029098511e-01,1.048428613281250000e+04,7.229537010192871094e+00,7.989647984504699707e-01,6.632862091064453125e-01,1.454975008964538574e-01,3.117601871490478516e-01,7.989647984504699707e-01,6.632862091064453125e-01,1.454975008964538574e-01,3.117601871490478516e-01,1.422200012207031250e+01,1.206000041961669922e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,5.211143195629119873e-02,5.975932108800000000e+10,6.247543334960937500e+00,8.318883776664733887e-01,8.318883776664733887e-01,1.414119303226470947e-01,3.404151201248168945e-01,8.318883776664733887e-01,8.318883776664733887e-01,1.414119303226470947e-01,3.404151201248168945e-01,1.324800014495849609e+01,1.176000022888183594e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,2.109863013029098511e-01,4.309585571289062500e+02,3.801268815994262695e+00,8.318883776664733887e-01,6.632862091064453125e-01,1.562476605176925659e-01,3.916985094547271729e-01,8.318883776664733887e-01,6.632862091064453125e-01,1.562476605176925659e-01,3.916985094547271729e-01,1.362800025939941406e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,2.109863013029098511e-01,6.597335040000000000e+10,6.851186752319335938e+00,8.318883776664733887e-01,6.632862091064453125e-01,1.465059220790863037e-01,3.203927278518676758e-01,8.318883776664733887e-01,6.632862091064453125e-01,1.465059220790863037e-01,3.203927278518676758e-01,1.406200027465820312e+01,1.460000038146972656e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,2.109863013029098511e-01,5.103302612304687500e+02,6.818662166595458984e+00,8.318883776664733887e-01,6.632862091064453125e-01,1.422667354345321655e-01,3.231700658798217773e-01,8.318883776664733887e-01,6.632862091064453125e-01,1.422667354345321655e-01,3.231700658798217773e-01,1.411600017547607422e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,3.363325297832489014e-01,3.093405761718750000e+02,7.242066860198974609e+00,8.318883776664733887e-01,6.198371052742004395e-01,1.431665718555450439e-01,3.102624118328094482e-01,8.318883776664733887e-01,6.198371052742004395e-01,1.431665718555450439e-01,3.102624118328094482e-01,1.412800025939941406e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -5.211143195629119873e-02,9.196602553129196167e-02,2.856071289062500000e+03,4.441316127777099609e+00,8.318883776664733887e-01,7.689305543899536133e-01,1.503029018640518188e-01,3.720642030239105225e-01,8.318883776664733887e-01,7.689305543899536133e-01,1.503029018640518188e-01,3.720642030239105225e-01,1.402200031280517578e+01,1.326000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,1.326729614257812500e+03,5.602629661560058594e+00,9.736213684082031250e-01,9.736213684082031250e-01,1.519632041454315186e-01,3.524923920631408691e-01,9.736213684082031250e-01,9.736213684082031250e-01,1.519632041454315186e-01,3.524923920631408691e-01,1.462399959564208984e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.060334106445312500e+03,5.006417274475097656e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.532150954008102417e-01,3.595787286758422852e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.532150954008102417e-01,3.595787286758422852e-01,1.464999961853027344e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.457493286132812500e+03,7.625200748443603516e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.422583907842636108e-01,3.280936777591705322e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.422583907842636108e-01,3.280936777591705322e-01,1.461800003051757812e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,9.835274517536163330e-02,1.808427886962890625e+02,7.014615058898925781e+00,9.736213684082031250e-01,7.523320913314819336e-01,1.458570361137390137e-01,3.166730701923370361e-01,9.736213684082031250e-01,7.523320913314819336e-01,1.458570361137390137e-01,3.166730701923370361e-01,1.414200019836425781e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.076520323753356934e-01,7.042603759765625000e+02,4.793700695037841797e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.535025686025619507e-01,3.832308053970336914e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.535025686025619507e-01,3.832308053970336914e-01,1.405599975585937500e+01,1.453999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.038617935180664062e+02,6.349983215332031250e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.459947228431701660e-01,3.263140618801116943e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.459947228431701660e-01,3.263140618801116943e-01,1.331999969482421875e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.391495764255523682e-01,2.657406875000000000e+05,4.341187000274658203e+00,9.736213684082031250e-01,7.088245153427124023e-01,1.529902666807174683e-01,3.654816448688507080e-01,9.736213684082031250e-01,7.088245153427124023e-01,1.529902666807174683e-01,3.654816448688507080e-01,1.350800037384033203e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.190445120000000000e+08,5.968400955200195312e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.523781418800354004e-01,3.511803746223449707e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.523781418800354004e-01,3.511803746223449707e-01,1.451399993896484375e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.324382400000000000e+07,4.321993350982666016e+00,9.736213684082031250e-01,6.670492887496948242e-01,1.506854444742202759e-01,3.843584358692169189e-01,9.736213684082031250e-01,6.670492887496948242e-01,1.506854444742202759e-01,3.843584358692169189e-01,1.446399974822998047e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.205292205810546875e+02,4.476331233978271484e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.490027904510498047e-01,3.500893414020538330e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.490027904510498047e-01,3.500893414020538330e-01,1.453999996185302734e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.720260198400000000e+10,3.506610870361328125e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.570054590702056885e-01,3.925758302211761475e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.570054590702056885e-01,3.925758302211761475e-01,1.399800014495849609e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.119032592773437500e+02,5.774744033813476562e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.507582217454910278e-01,3.575356006622314453e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.507582217454910278e-01,3.575356006622314453e-01,1.481400012969970703e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.057917440000000000e+10,5.046957969665527344e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.521994322538375854e-01,3.729844689369201660e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.521994322538375854e-01,3.729844689369201660e-01,1.426799964904785156e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.462446838617324829e-01,1.891618530273437500e+03,3.958756446838378906e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.547527313232421875e-01,3.820328712463378906e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.547527313232421875e-01,3.820328712463378906e-01,1.452799987792968750e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.024087085291908628e+20,2.684163093566894531e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.654801070690155029e-01,4.154038131237030029e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.654801070690155029e-01,4.154038131237030029e-01,1.326000022888183594e+01,1.372000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.002587840000000000e+08,3.866615056991577148e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.612076908349990845e-01,3.991482853889465332e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.612076908349990845e-01,3.991482853889465332e-01,1.332999992370605469e+01,1.296000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.407979736328125000e+03,3.582335710525512695e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.593312025070190430e-01,3.948276340961456299e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.593312025070190430e-01,3.948276340961456299e-01,1.271599960327148438e+01,1.268000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.247114375000000000e+05,4.025861740112304688e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.585142463445663452e-01,3.847510218620300293e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.585142463445663452e-01,3.847510218620300293e-01,1.340600013732910156e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.172351806640625000e+03,3.844737529754638672e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.578550636768341064e-01,3.731637001037597656e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.578550636768341064e-01,3.731637001037597656e-01,1.413599967956542969e+01,1.239999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.301611633300781250e+02,2.676741838455200195e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.627083271741867065e-01,4.197925329208374023e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.627083271741867065e-01,4.197925329208374023e-01,1.299199962615966797e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.693726196289062500e+02,2.394590616226196289e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.659596711397171021e-01,4.246728122234344482e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.659596711397171021e-01,4.246728122234344482e-01,1.377799987792968750e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.133548736572265625e+01,3.663356542587280273e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.568159312009811401e-01,3.788446187973022461e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.568159312009811401e-01,3.788446187973022461e-01,1.300599956512451172e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.977414703369140625e+02,2.411195278167724609e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.634995788335800171e-01,4.269548058509826660e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.634995788335800171e-01,4.269548058509826660e-01,1.315999984741210938e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.019411718750000000e+04,2.518750190734863281e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.656083464622497559e-01,4.173050224781036377e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.656083464622497559e-01,4.173050224781036377e-01,1.388199996948242188e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.405119628906250000e+02,3.585592508316040039e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.595430672168731689e-01,3.847650587558746338e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.595430672168731689e-01,3.847650587558746338e-01,1.305799961090087891e+01,1.189999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.274799804687500000e+03,4.417473793029785156e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.597614437341690063e-01,3.892643749713897705e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.597614437341690063e-01,3.892643749713897705e-01,1.309399986267089844e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.749429321289062500e+01,2.463121891021728516e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.637272536754608154e-01,4.230856001377105713e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.637272536754608154e-01,4.230856001377105713e-01,1.401200008392333984e+01,1.397999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.542617034912109375e+01,2.197192430496215820e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.708343327045440674e-01,4.589135348796844482e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.708343327045440674e-01,4.589135348796844482e-01,1.303199958801269531e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.891549682617187500e+02,3.276868343353271484e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.660683155059814453e-01,4.129686355590820312e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.660683155059814453e-01,4.129686355590820312e-01,1.344600009918212891e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.122800979614257812e+02,3.216339349746704102e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.628471910953521729e-01,4.268618822097778320e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.628471910953521729e-01,4.268618822097778320e-01,1.346199989318847656e+01,1.184000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.901525878906250000e+02,3.198362112045288086e+00,9.736213684082031250e-01,6.749502420425415039e-01,1.603029370307922363e-01,4.098116457462310791e-01,9.736213684082031250e-01,6.749502420425415039e-01,1.603029370307922363e-01,4.098116457462310791e-01,1.278800010681152344e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,9.196602553129196167e-02,5.531833267211914062e+01,2.533264160156250000e+00,9.736213684082031250e-01,7.689305543899536133e-01,1.659499853849411011e-01,4.301648139953613281e-01,9.736213684082031250e-01,7.689305543899536133e-01,1.659499853849411011e-01,4.301648139953613281e-01,1.244799995422363281e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.329685516357421875e+02,3.748855352401733398e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.620391905307769775e-01,3.992757201194763184e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.620391905307769775e-01,3.992757201194763184e-01,1.228800010681152344e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.753712445497512817e-01,2.499631835937500000e+03,2.437620639801025391e+00,9.736213684082031250e-01,6.824760437011718750e-01,1.718825995922088623e-01,4.641534686088562012e-01,9.736213684082031250e-01,6.824760437011718750e-01,1.718825995922088623e-01,4.641534686088562012e-01,1.174600028991699219e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.978868865966796875e+01,4.884464263916015625e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.609724611043930054e-01,3.743749558925628662e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.609724611043930054e-01,3.743749558925628662e-01,1.163199996948242188e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.081553344726562500e+02,2.184535741806030273e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.718002855777740479e-01,4.438883960247039795e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.718002855777740479e-01,4.438883960247039795e-01,1.141399955749511719e+01,1.107999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.623374176025390625e+01,1.636138081550598145e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.752764135599136353e-01,4.751576483249664307e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.752764135599136353e-01,4.751576483249664307e-01,1.059599971771240234e+01,9.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.616725158691406250e+01,1.887494444847106934e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.704975366592407227e-01,4.468193948268890381e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.704975366592407227e-01,4.468193948268890381e-01,1.106999969482421875e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.945347290039062500e+02,2.234179258346557617e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.779486089944839478e-01,4.676078855991363525e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.779486089944839478e-01,4.676078855991363525e-01,1.014000034332275391e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.444847106933593750e+01,1.314830660820007324e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.823307126760482788e-01,5.033001899719238281e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.823307126760482788e-01,5.033001899719238281e-01,9.881999969482421875e+00,9.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.377724914550781250e+02,1.414338231086730957e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.842622905969619751e-01,4.943864047527313232e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.842622905969619751e-01,4.943864047527313232e-01,1.006599998474121094e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.158341217041015625e+01,2.086190223693847656e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.741236150264739990e-01,4.443570077419281006e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.741236150264739990e-01,4.443570077419281006e-01,9.739999771118164062e+00,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.081774902343750000e+01,1.099049925804138184e+00,9.736213684082031250e-01,6.794257760047912598e-01,1.939996629953384399e-01,5.278001427650451660e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.939996629953384399e-01,5.278001427650451660e-01,9.038000106811523438e+00,8.479999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.704523086547851562e+01,1.077073097229003906e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.876731812953948975e-01,5.218648910522460938e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.876731812953948975e-01,5.218648910522460938e-01,8.828000068664550781e+00,8.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.319736099243164062e+01,1.246697664260864258e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.891335546970367432e-01,5.116701722145080566e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.891335546970367432e-01,5.116701722145080566e-01,8.793999671936035156e+00,8.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.435660034179687500e+03,1.335465431213378906e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.827374845743179321e-01,4.899484813213348389e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.827374845743179321e-01,4.899484813213348389e-01,8.472000122070312500e+00,8.279999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.766038285623257093e+33,1.119670391082763672e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.870736032724380493e-01,5.304555296897888184e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.870736032724380493e-01,5.304555296897888184e-01,8.326000213623046875e+00,8.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.517917633056640625e+01,9.278565049171447754e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.887483447790145874e-01,5.410969853401184082e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.887483447790145874e-01,5.410969853401184082e-01,7.923999786376953125e+00,8.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.024276428222656250e+02,8.956574201583862305e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.942370682954788208e-01,5.506297349929809570e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.942370682954788208e-01,5.506297349929809570e-01,8.237999916076660156e+00,8.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.007800936698913574e-01,4.399710083007812500e+01,1.012792468070983887e+00,9.736213684082031250e-01,6.687233448028564453e-01,1.927709281444549561e-01,5.413502454757690430e-01,9.736213684082031250e-01,6.687233448028564453e-01,1.927709281444549561e-01,5.413502454757690430e-01,8.067999839782714844e+00,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.452149810791015625e+02,9.416846632957458496e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.946388781070709229e-01,5.464934110641479492e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.946388781070709229e-01,5.464934110641479492e-01,8.451999664306640625e+00,8.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.033855056762695312e+01,9.709120392799377441e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.872780621051788330e-01,5.334995388984680176e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.872780621051788330e-01,5.334995388984680176e-01,8.713999748229980469e+00,8.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.815720367431640625e+01,7.786616683006286621e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.998354643583297729e-01,5.532540678977966309e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.998354643583297729e-01,5.532540678977966309e-01,8.694000244140625000e+00,8.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.546503540039062500e+03,6.803803443908691406e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.961859166622161865e-01,5.722553133964538574e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.961859166622161865e-01,5.722553133964538574e-01,8.458000183105468750e+00,8.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.202288436889648438e+01,9.511959552764892578e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.917892992496490479e-01,5.474109649658203125e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.917892992496490479e-01,5.474109649658203125e-01,8.897999763488769531e+00,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.000278472900390625e+01,8.952043056488037109e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.960368305444717407e-01,5.457988977432250977e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.960368305444717407e-01,5.457988977432250977e-01,8.892000198364257812e+00,9.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.080593261718750000e+02,6.723458170890808105e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.006928026676177979e-01,5.778315663337707520e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.006928026676177979e-01,5.778315663337707520e-01,8.607999801635742188e+00,8.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.893911914062500000e+04,7.695955038070678711e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.991368383169174194e-01,5.614954233169555664e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.991368383169174194e-01,5.614954233169555664e-01,9.416000366210937500e+00,8.180000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.406190109252929688e+01,5.596244931221008301e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.082171589136123657e-01,5.954488515853881836e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.082171589136123657e-01,5.954488515853881836e-01,8.909999847412109375e+00,8.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.209593276977539062e+02,4.489489793777465820e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.104652374982833862e-01,6.156971454620361328e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.104652374982833862e-01,6.156971454620361328e-01,8.760000228881835938e+00,8.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.260869906954452992e+19,4.577481746673583984e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157040089368820190e-01,6.147692799568176270e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157040089368820190e-01,6.147692799568176270e-01,8.706000328063964844e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.724844360351562500e+01,6.635994315147399902e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.016147822141647339e-01,5.731287598609924316e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.016147822141647339e-01,5.731287598609924316e-01,8.201999664306640625e+00,8.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.180855541760000000e+12,4.957166910171508789e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.168189883232116699e-01,6.072691679000854492e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.168189883232116699e-01,6.072691679000854492e-01,8.432000160217285156e+00,7.900000095367431641e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,9.196602553129196167e-02,3.491460418701171875e+01,4.408548474311828613e-01,9.736213684082031250e-01,7.689305543899536133e-01,2.145669311285018921e-01,6.237810850143432617e-01,9.736213684082031250e-01,7.689305543899536133e-01,2.145669311285018921e-01,6.237810850143432617e-01,8.008000373840332031e+00,8.300000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.522916793823242188e+01,8.247738480567932129e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.998803168535232544e-01,5.612831115722656250e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.998803168535232544e-01,5.612831115722656250e-01,7.940000057220458984e+00,8.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.623597717285156250e+01,4.288699030876159668e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.106122821569442749e-01,6.199588775634765625e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.106122821569442749e-01,6.199588775634765625e-01,7.834000110626220703e+00,8.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.779851150512695312e+01,6.522434353828430176e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.000101804733276367e-01,5.796544551849365234e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.000101804733276367e-01,5.796544551849365234e-01,7.877999782562255859e+00,7.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.528846740722656250e+01,3.766626119613647461e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157182842493057251e-01,6.290324330329895020e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157182842493057251e-01,6.290324330329895020e-01,7.668000221252441406e+00,7.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.142464828491210938e+01,2.335112690925598145e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253583371639251709e-01,6.571745276451110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253583371639251709e-01,6.571745276451110840e-01,7.538000106811523438e+00,7.719999790191650391e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.605115509033203125e+01,2.454769462347030640e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179443687200546265e-01,6.549164056777954102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179443687200546265e-01,6.549164056777954102e-01,7.415999889373779297e+00,7.559999942779541016e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.358426284790039062e+01,2.167041599750518799e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230401635169982910e-01,6.634349822998046875e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230401635169982910e-01,6.634349822998046875e-01,7.289999961853027344e+00,7.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.468428421020507812e+01,3.515892922878265381e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.156771868467330933e-01,6.358521580696105957e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.156771868467330933e-01,6.358521580696105957e-01,7.184000015258789062e+00,7.719999790191650391e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.167955932617187500e+02,3.688119351863861084e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.126942574977874756e-01,6.325567364692687988e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.126942574977874756e-01,6.325567364692687988e-01,7.268000125885009766e+00,7.860000133514404297e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.860346221923828125e+01,2.430761307477951050e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169202417135238647e-01,6.555660963058471680e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169202417135238647e-01,6.555660963058471680e-01,7.065999984741210938e+00,7.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.450402832031250000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.320344299077987671e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.320344299077987671e-01,6.639317870140075684e-01,7.019999980926513672e+00,7.719999790191650391e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.009485626220703125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179702669382095337e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179702669382095337e-01,6.636090278625488281e-01,7.070000171661376953e+00,7.320000171661376953e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.397354125976562500e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.310522049665451050e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.310522049665451050e-01,6.636090278625488281e-01,6.989999771118164062e+00,7.360000133514404297e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.110736236572265625e+02,2.170190662145614624e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.290502935647964478e-01,6.640312075614929199e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.290502935647964478e-01,6.640312075614929199e-01,7.257999897003173828e+00,7.519999980926513672e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.694224548339843750e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.250379770994186401e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.250379770994186401e-01,6.642546057701110840e-01,7.205999851226806641e+00,7.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.024703216552734375e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348615527153015137e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348615527153015137e-01,6.642546057701110840e-01,7.326000213623046875e+00,7.980000019073486328e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.541642761230468750e+01,2.295729219913482666e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.180169820785522461e-01,6.573414206504821777e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.180169820785522461e-01,6.573414206504821777e-01,7.190000057220458984e+00,7.519999980926513672e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.838774108886718750e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.222263514995574951e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.222263514995574951e-01,6.639317870140075684e-01,7.306000232696533203e+00,7.400000095367431641e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.591632843017578125e+01,2.123850286006927490e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.278886288404464722e-01,6.637722849845886230e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.278886288404464722e-01,6.637722849845886230e-01,7.453999996185302734e+00,7.860000133514404297e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.472806930541992188e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.240249514579772949e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.240249514579772949e-01,6.642546057701110840e-01,7.397999763488769531e+00,7.599999904632568359e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.585643005371093750e+01,2.159108668565750122e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.221012860536575317e-01,6.653861999511718750e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.221012860536575317e-01,6.653861999511718750e-01,7.461999893188476562e+00,7.980000019073486328e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.775624847412109375e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.203189283609390259e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.203189283609390259e-01,6.639317870140075684e-01,7.679999828338623047e+00,7.599999904632568359e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,7.253229522705078125e+01,2.263569980859756470e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.104842811822891235e-01,6.659067869186401367e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.104842811822891235e-01,6.659067869186401367e-01,7.611999988555908203e+00,8.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.267500686645507812e+01,2.238346636295318604e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179197818040847778e-01,6.611014604568481445e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179197818040847778e-01,6.611014604568481445e-01,7.822000026702880859e+00,7.860000133514404297e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.032482528686523438e+01,2.423103302717208862e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.119344621896743774e-01,6.560854911804199219e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.119344621896743774e-01,6.560854911804199219e-01,7.980000019073486328e+00,8.140000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.656987609863281250e+02,3.342521488666534424e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.020591497421264648e-01,6.374441981315612793e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.020591497421264648e-01,6.374441981315612793e-01,8.088000297546386719e+00,8.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.914955520629882812e+01,2.206832021474838257e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.185005843639373779e-01,6.608054041862487793e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.185005843639373779e-01,6.608054041862487793e-01,7.984000205993652344e+00,7.559999942779541016e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.268712997436523438e+01,2.174104899168014526e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217005044221878052e-01,6.621938347816467285e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217005044221878052e-01,6.621938347816467285e-01,8.126000404357910156e+00,7.679999828338623047e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.621639862060546875e+02,2.163138985633850098e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.108784317970275879e-01,6.637083888053894043e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.108784317970275879e-01,6.637083888053894043e-01,7.934000015258789062e+00,8.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.991487884521484375e+01,2.221285551786422729e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.205317318439483643e-01,6.637918353080749512e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.205317318439483643e-01,6.637918353080749512e-01,8.081999778747558594e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.625522155761718750e+02,2.587581574916839600e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.097927778959274292e-01,6.537879109382629395e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.097927778959274292e-01,6.537879109382629395e-01,8.078000068664550781e+00,8.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.013416671752929688e+01,2.216700911521911621e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.158032357692718506e-01,6.657125353813171387e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.158032357692718506e-01,6.657125353813171387e-01,8.291999816894531250e+00,8.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.872003173828125000e+01,2.137953639030456543e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.288593649864196777e-01,6.644178628921508789e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.288593649864196777e-01,6.644178628921508789e-01,8.189999580383300781e+00,7.980000019073486328e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.021546554565429688e+01,3.290492296218872070e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.099142372608184814e-01,6.384108662605285645e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.099142372608184814e-01,6.384108662605285645e-01,8.286000251770019531e+00,7.820000171661376953e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.904228210449218750e+01,2.211212366819381714e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.235031425952911377e-01,6.614684462547302246e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.235031425952911377e-01,6.614684462547302246e-01,8.371999740600585938e+00,8.220000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.340347671508789062e+01,2.448790073394775391e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248134315013885498e-01,6.562517881393432617e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248134315013885498e-01,6.562517881393432617e-01,8.149999618530273438e+00,8.220000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.548009765625000000e+03,2.322313785552978516e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217001765966415405e-01,6.578987836837768555e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217001765966415405e-01,6.578987836837768555e-01,7.881999969482421875e+00,7.679999828338623047e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.383720397949218750e+01,2.138069719076156616e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.287609577178955078e-01,6.645773649215698242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.287609577178955078e-01,6.645773649215698242e-01,8.293999671936035156e+00,7.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.578399200439453125e+02,3.023912608623504639e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.085492014884948730e-01,6.409018635749816895e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.085492014884948730e-01,6.409018635749816895e-01,7.900000095367431641e+00,8.039999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.533615112304687500e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.251022160053253174e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.251022160053253174e-01,6.632862091064453125e-01,7.967999935150146484e+00,7.940000057220458984e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.176890182495117188e+01,2.138069719076156616e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.358576506376266479e-01,6.645773649215698242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.358576506376266479e-01,6.645773649215698242e-01,8.156000137329101562e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.789101028442382812e+01,2.145005315542221069e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.371693998575210571e-01,6.647406220436096191e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.371693998575210571e-01,6.647406220436096191e-01,8.149999618530273438e+00,8.140000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.682537841796875000e+01,2.179091423749923706e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.195266932249069214e-01,6.620146036148071289e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.195266932249069214e-01,6.620146036148071289e-01,8.260000228881835938e+00,8.100000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.367858505249023438e+01,2.487492710351943970e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189749181270599365e-01,6.546699404716491699e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189749181270599365e-01,6.546699404716491699e-01,8.218000411987304688e+00,8.300000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.509100723266601562e+01,2.253744751214981079e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.244728356599807739e-01,6.596505641937255859e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.244728356599807739e-01,6.596505641937255859e-01,8.482000350952148438e+00,7.900000095367431641e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.659743499755859375e+01,2.372456789016723633e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170524150133132935e-01,6.566456556320190430e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170524150133132935e-01,6.566456556320190430e-01,8.244000434875488281e+00,8.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.663518524169921875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.275241017341613770e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.275241017341613770e-01,6.639317870140075684e-01,8.390000343322753906e+00,8.279999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.920879745483398438e+01,5.618166327476501465e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.056921273469924927e-01,6.046352386474609375e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.056921273469924927e-01,6.046352386474609375e-01,8.682000160217285156e+00,9.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.201090621948242188e+01,4.625337123870849609e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.064793407917022705e-01,6.134916543960571289e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.064793407917022705e-01,6.134916543960571289e-01,8.387999534606933594e+00,8.220000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.879480743408203125e+01,2.439031749963760376e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189420014619827271e-01,6.561264991760253906e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189420014619827271e-01,6.561264991760253906e-01,8.946000099182128906e+00,8.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.943616867065429688e+01,2.549807429313659668e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.135881036520004272e-01,6.514330506324768066e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.135881036520004272e-01,6.514330506324768066e-01,8.741999626159667969e+00,7.880000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.827345200000000000e+07,2.253306359052658081e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.259265184402465820e-01,6.605638265609741211e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.259265184402465820e-01,6.605638265609741211e-01,9.071999549865722656e+00,8.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.320420801639556885e-01,4.457058715820312500e+01,3.181157410144805908e-01,9.736213684082031250e-01,7.412153482437133789e-01,2.161291241645812988e-01,6.421239376068115234e-01,9.736213684082031250e-01,7.412153482437133789e-01,2.161291241645812988e-01,6.421239376068115234e-01,8.862000465393066406e+00,8.420000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.972333145141601562e+01,2.402565926313400269e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.182534039020538330e-01,6.561523675918579102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.182534039020538330e-01,6.561523675918579102e-01,8.800000190734863281e+00,8.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.372932434082031250e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.280799746513366699e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.280799746513366699e-01,6.642546057701110840e-01,8.515999794006347656e+00,8.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.927442932128906250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.325813770294189453e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.325813770294189453e-01,6.636090278625488281e-01,8.729999542236328125e+00,7.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.077384185791015625e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268676310777664185e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268676310777664185e-01,6.642546057701110840e-01,8.904000282287597656e+00,8.420000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.494044876098632812e+01,2.130901962518692017e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.332374304533004761e-01,6.640950441360473633e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.332374304533004761e-01,6.640950441360473633e-01,8.765999794006347656e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.112921524047851562e+01,2.173440754413604736e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.275335788726806641e-01,6.610321998596191406e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.275335788726806641e-01,6.610321998596191406e-01,8.845999717712402344e+00,7.940000057220458984e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.100163345336914062e+02,2.483106553554534912e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211340814828872681e-01,6.519055366516113281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211340814828872681e-01,6.519055366516113281e-01,8.894000053405761719e+00,8.439999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.307989120483398438e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.358338534832000732e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.358338534832000732e-01,6.642546057701110840e-01,8.994000434875488281e+00,8.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.493646087646484375e+02,2.650608122348785400e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.216165661811828613e-01,6.521517038345336914e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.216165661811828613e-01,6.521517038345336914e-01,9.399999618530273438e+00,8.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.008296386718750000e+03,2.408597916364669800e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170711606740951538e-01,6.573047041893005371e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170711606740951538e-01,6.573047041893005371e-01,9.755999565124511719e+00,8.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.652685546875000000e+01,4.516438245773315430e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.088584899902343750e-01,6.150008440017700195e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.088584899902343750e-01,6.150008440017700195e-01,1.002200031280517578e+01,9.520000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.336003494262695312e+01,2.449666857719421387e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.199350744485855103e-01,6.549360752105712891e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.199350744485855103e-01,6.549360752105712891e-01,9.798000335693359375e+00,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.359329605102539062e+01,2.566778361797332764e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.225640416145324707e-01,6.539317369461059570e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.225640416145324707e-01,6.539317369461059570e-01,9.902000427246093750e+00,8.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.227677917480468750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.365473806858062744e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.365473806858062744e-01,6.632862091064453125e-01,9.788000106811523438e+00,8.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.853713607788085938e+01,2.235727310180664062e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.262648791074752808e-01,6.608423590660095215e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.262648791074752808e-01,6.608423590660095215e-01,1.018000030517578125e+01,9.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.108024215698242188e+01,2.868367135524749756e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217055261135101318e-01,6.476248502731323242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217055261135101318e-01,6.476248502731323242e-01,9.479999542236328125e+00,8.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.764757537841796875e+01,2.831422984600067139e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.162611782550811768e-01,6.487039327621459961e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.162611782550811768e-01,6.487039327621459961e-01,9.829999923706054688e+00,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.265141296386718750e+01,2.100478410720825195e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.312267720699310303e-01,6.645063161849975586e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.312267720699310303e-01,6.645063161849975586e-01,9.842000007629394531e+00,9.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.038995742797851562e+01,2.339834868907928467e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.191452533006668091e-01,6.579896807670593262e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.191452533006668091e-01,6.579896807670593262e-01,9.736000061035156250e+00,8.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.707944488525390625e+01,2.121633440256118774e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.265344411134719849e-01,6.654746532440185547e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.265344411134719849e-01,6.654746532440185547e-01,9.694000244140625000e+00,8.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.667361450195312500e+01,2.469721287488937378e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.167516350746154785e-01,6.538836956024169922e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.167516350746154785e-01,6.538836956024169922e-01,9.850000381469726562e+00,8.479999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.325897979736328125e+01,4.381219148635864258e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.130808234214782715e-01,6.169734001159667969e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.130808234214782715e-01,6.169734001159667969e-01,9.973999977111816406e+00,8.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.999436569213867188e+01,3.413251042366027832e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.128707170486450195e-01,6.366482377052307129e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.128707170486450195e-01,6.366482377052307129e-01,9.649999618530273438e+00,9.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.305630111694335938e+01,2.419941872358322144e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.140263766050338745e-01,6.556601524353027344e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.140263766050338745e-01,6.556601524353027344e-01,1.016600036621093750e+01,8.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.376440811157226562e+01,2.427519112825393677e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.149817049503326416e-01,6.551238298416137695e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.149817049503326416e-01,6.551238298416137695e-01,9.579999923706054688e+00,8.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.138797378540039062e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332982718944549561e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332982718944549561e-01,6.639317870140075684e-01,9.241999626159667969e+00,8.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.694773101806640625e+01,2.137953639030456543e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.481256425380706787e-01,6.644178628921508789e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.481256425380706787e-01,6.644178628921508789e-01,9.357999801635742188e+00,8.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.505596542358398438e+01,2.319835722446441650e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.258888781070709229e-01,6.562188267707824707e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.258888781070709229e-01,6.562188267707824707e-01,9.409999847412109375e+00,8.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.198563385009765625e+01,2.256364226341247559e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.231293618679046631e-01,6.599096655845642090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.231293618679046631e-01,6.599096655845642090e-01,9.461999893188476562e+00,8.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.818179702758789062e+01,2.155603468418121338e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.200756222009658813e-01,6.625891327857971191e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.200756222009658813e-01,6.625891327857971191e-01,9.319999694824218750e+00,8.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.122346818447113037e-01,4.143343353271484375e+01,2.249946892261505127e-01,9.736213684082031250e-01,7.379717230796813965e-01,2.209781706333160400e-01,6.594504714012145996e-01,9.736213684082031250e-01,7.379717230796813965e-01,2.209781706333160400e-01,6.594504714012145996e-01,9.413999557495117188e+00,9.100000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.065703964233398438e+01,2.808844149112701416e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.141190171241760254e-01,6.465340256690979004e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.141190171241760254e-01,6.465340256690979004e-01,9.390000343322753906e+00,8.380000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.335859298706054688e+01,3.848057091236114502e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.141371518373489380e-01,6.341534852981567383e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.141371518373489380e-01,6.341534852981567383e-01,9.685999870300292969e+00,9.039999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.794895231723785400e-02,3.574670410156250000e+01,2.081255465745925903e-01,9.736213684082031250e-01,7.881169319152832031e-01,2.247457355260848999e-01,6.657828688621520996e-01,9.736213684082031250e-01,7.881169319152832031e-01,2.247457355260848999e-01,6.657828688621520996e-01,9.512000083923339844e+00,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.037160949707031250e+02,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208472490310668945e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208472490310668945e-01,6.639317870140075684e-01,9.732000350952148438e+00,8.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.267677688598632812e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.307679951190948486e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.307679951190948486e-01,6.639317870140075684e-01,1.008399963378906250e+01,8.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.848565292358398438e+01,2.379508912563323975e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.198442518711090088e-01,6.550356745719909668e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.198442518711090088e-01,6.550356745719909668e-01,1.066199970245361328e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.524240112304687500e+01,2.245182394981384277e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.189877182245254517e-01,6.585828661918640137e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.189877182245254517e-01,6.585828661918640137e-01,1.101399993896484375e+01,8.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,4.014115905761718750e+01,2.107749432325363159e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.132317870855331421e-01,6.680222749710083008e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.132317870855331421e-01,6.680222749710083008e-01,1.097799968719482422e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.252666778564453125e+02,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.241632938385009766e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.241632938385009766e-01,6.642546057701110840e-01,1.211800003051757812e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.276988983154296875e+01,3.710159957408905029e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.061811536550521851e-01,6.339227557182312012e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.061811536550521851e-01,6.339227557182312012e-01,1.243400001525878906e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.450718688964843750e+01,4.435571730136871338e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.072250992059707642e-01,6.249192357063293457e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.072250992059707642e-01,6.249192357063293457e-01,1.251000022888183594e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.013812255859375000e+02,6.267127394676208496e-01,9.736213684082031250e-01,6.752364635467529297e-01,2.028417587280273438e-01,6.008774042129516602e-01,9.736213684082031250e-01,6.752364635467529297e-01,2.028417587280273438e-01,6.008774042129516602e-01,1.223600006103515625e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.768882369995117188e+01,6.109209060668945312e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.058824896812438965e-01,5.945203304290771484e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.058824896812438965e-01,5.945203304290771484e-01,1.230799961090087891e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.958287429809570312e+01,2.463722974061965942e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.225888967514038086e-01,6.553875207901000977e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.225888967514038086e-01,6.553875207901000977e-01,1.121800041198730469e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.163930892944335938e+01,2.346899658441543579e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.189619839191436768e-01,6.631194949150085449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.189619839191436768e-01,6.631194949150085449e-01,1.122000026702880859e+01,9.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.669893646240234375e+02,2.133321911096572876e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.240232527256011963e-01,6.625381112098693848e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.240232527256011963e-01,6.625381112098693848e-01,1.043799972534179688e+01,8.979999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.617459487915039062e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.400601804256439209e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.400601804256439209e-01,6.639317870140075684e-01,1.059599971771240234e+01,9.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.949118423461914062e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.366945892572402954e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.366945892572402954e-01,6.639317870140075684e-01,1.078999996185302734e+01,8.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.460013961791992188e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.376110106706619263e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.376110106706619263e-01,6.639317870140075684e-01,1.077999973297119141e+01,9.220000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.297120285034179688e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.345706075429916382e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.345706075429916382e-01,6.639317870140075684e-01,1.139799976348876953e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.671332359313964844e+01,2.151706963777542114e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.337152659893035889e-01,6.627225875854492188e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.337152659893035889e-01,6.627225875854492188e-01,1.133800029754638672e+01,8.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.057944679260253906e+01,2.834298908710479736e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.228190004825592041e-01,6.468702554702758789e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.228190004825592041e-01,6.468702554702758789e-01,1.150399971008300781e+01,8.840000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.347946929931640625e+01,2.315052151679992676e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.288272827863693237e-01,6.606606245040893555e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.288272827863693237e-01,6.606606245040893555e-01,1.161400032043457031e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.058336257934570312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.389474064111709595e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.389474064111709595e-01,6.636090278625488281e-01,1.180000019073486328e+01,8.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.627320861816406250e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.364206612110137939e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.364206612110137939e-01,6.642546057701110840e-01,1.201000022888183594e+01,9.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.921862411499023438e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.378061711788177490e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.378061711788177490e-01,6.642546057701110840e-01,1.215799999237060547e+01,9.520000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.560356903076171875e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.314893007278442383e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.314893007278442383e-01,6.632862091064453125e-01,1.273400020599365234e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.284693527221679688e+01,2.487791627645492554e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.246595919132232666e-01,6.551796197891235352e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.246595919132232666e-01,6.551796197891235352e-01,1.220600032806396484e+01,9.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.419303512573242188e+01,3.194218873977661133e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193453907966613770e-01,6.402034759521484375e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193453907966613770e-01,6.402034759521484375e-01,1.339000034332275391e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.251045608520507812e+01,2.679644227027893066e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.219412028789520264e-01,6.519330739974975586e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.219412028789520264e-01,6.519330739974975586e-01,1.356599998474121094e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.477986145019531250e+01,4.137620627880096436e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154933363199234009e-01,6.209825873374938965e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154933363199234009e-01,6.209825873374938965e-01,1.372999954223632812e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.306505966186523438e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.267027646303176880e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.267027646303176880e-01,6.632862091064453125e-01,1.322399997711181641e+01,9.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.968890136718750000e+03,2.158758640289306641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276445925235748291e-01,6.630454063415527344e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276445925235748291e-01,6.630454063415527344e-01,1.326799964904785156e+01,1.031999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.680718231201171875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253325432538986206e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253325432538986206e-01,6.636090278625488281e-01,1.387800025939941406e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.188378143310546875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276087105274200439e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276087105274200439e-01,6.639317870140075684e-01,1.387800025939941406e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.988973999023437500e+01,4.366439580917358398e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.093711495399475098e-01,6.232602596282958984e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.093711495399475098e-01,6.232602596282958984e-01,1.472399997711181641e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.905890274047851562e+01,3.542239964008331299e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.169906347990036011e-01,6.327409148216247559e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.169906347990036011e-01,6.327409148216247559e-01,1.477600002288818359e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.201056671142578125e+01,2.411721199750900269e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.261405289173126221e-01,6.557406783103942871e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.261405289173126221e-01,6.557406783103942871e-01,1.362399959564208984e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.117370986938476562e+01,3.105564117431640625e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.122279852628707886e-01,6.432124376296997070e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.122279852628707886e-01,6.432124376296997070e-01,1.452000045776367188e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.549798965454101562e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226599454879760742e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226599454879760742e-01,6.639317870140075684e-01,1.277799987792968750e+01,9.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.673678588867187500e+01,2.171485424041748047e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253291159868240356e-01,6.619347333908081055e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253291159868240356e-01,6.619347333908081055e-01,1.230200004577636719e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.266582489013671875e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.215409874916076660e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.215409874916076660e-01,6.618710756301879883e-01,1.140400028228759766e+01,9.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.385354232788085938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.397406697273254395e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.397406697273254395e-01,6.636090278625488281e-01,1.097599983215332031e+01,9.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.892536163330078125e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.285860925912857056e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.285860925912857056e-01,6.639317870140075684e-01,1.158399963378906250e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.202933883666992188e+01,2.391928732395172119e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.182833254337310791e-01,6.553491353988647461e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.182833254337310791e-01,6.553491353988647461e-01,1.132800006866455078e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.110236740112304688e+01,2.203496545553207397e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.226240783929824829e-01,6.599839925765991211e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.226240783929824829e-01,6.599839925765991211e-01,1.144200038909912109e+01,8.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.889514541625976562e+01,2.149035632610321045e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.232294529676437378e-01,6.630628108978271484e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.232294529676437378e-01,6.630628108978271484e-01,1.169600009918212891e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.612156677246093750e+01,5.510362386703491211e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.089471369981765747e-01,6.099427938461303711e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.089471369981765747e-01,6.099427938461303711e-01,1.210599994659423828e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.744219970703125000e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184327542781829834e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184327542781829834e-01,6.606436371803283691e-01,1.152600002288818359e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.192514610290527344e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.288563847541809082e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.288563847541809082e-01,6.639317870140075684e-01,1.170199966430664062e+01,8.479999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.254650115966796875e+01,2.214379310607910156e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.184972912073135376e-01,6.599613428115844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.184972912073135376e-01,6.599613428115844727e-01,1.199600028991699219e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.290733718872070312e+01,2.599951624870300293e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.148649841547012329e-01,6.519886851310729980e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.148649841547012329e-01,6.519886851310729980e-01,1.232800006866455078e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.541933441162109375e+01,3.124078512191772461e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.111419886350631714e-01,6.412684917449951172e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.111419886350631714e-01,6.412684917449951172e-01,1.270199966430664062e+01,9.279999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.844402313232421875e+01,9.485545754432678223e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.966331899166107178e-01,5.735158324241638184e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.966331899166107178e-01,5.735158324241638184e-01,1.248999977111816406e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.386789321899414062e+01,3.195016384124755859e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.118752151727676392e-01,6.409913897514343262e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.118752151727676392e-01,6.409913897514343262e-01,1.294600009918212891e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.777060699462890625e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.174951732158660889e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.174951732158660889e-01,6.606436371803283691e-01,1.239400005340576172e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.048653984069824219e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268968373537063599e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268968373537063599e-01,6.639317870140075684e-01,1.194400024414062500e+01,9.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.562242507934570312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332727611064910889e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332727611064910889e-01,6.636090278625488281e-01,1.144999980926513672e+01,1.018000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.761628341674804688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.292798608541488647e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.292798608541488647e-01,6.632862091064453125e-01,1.204199981689453125e+01,8.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.460451507568359375e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.319146245718002319e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.319146245718002319e-01,6.636090278625488281e-01,1.154399967193603516e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.683192443847656250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.198174893856048584e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.198174893856048584e-01,6.636090278625488281e-01,1.294400024414062500e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.490608978271484375e+01,2.875418663024902344e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.151539027690887451e-01,6.479476690292358398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.151539027690887451e-01,6.479476690292358398e-01,1.222599983215332031e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.572290802001953125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274579554796218872e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274579554796218872e-01,6.632862091064453125e-01,1.252799987792968750e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.015344619750976562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.243390381336212158e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.243390381336212158e-01,6.636090278625488281e-01,1.315400028228759766e+01,1.003999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.810345077514648438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226936668157577515e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226936668157577515e-01,6.636090278625488281e-01,1.442199993133544922e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.483067703247070312e+01,6.293835639953613281e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.054145336151123047e-01,6.016784310340881348e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.054145336151123047e-01,6.016784310340881348e-01,1.455000019073486328e+01,1.234000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.662493896484375000e+01,3.053877651691436768e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154673337936401367e-01,6.436712741851806641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154673337936401367e-01,6.436712741851806641e-01,1.438199996948242188e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.610072326660156250e+01,4.099810123443603516e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.053701281547546387e-01,6.299684643745422363e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.053701281547546387e-01,6.299684643745422363e-01,1.512600040435791016e+01,1.350000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.743634033203125000e+01,8.571329712867736816e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.007388025522232056e-01,5.833585858345031738e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.007388025522232056e-01,5.833585858345031738e-01,1.386999988555908203e+01,1.177999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.533755493164062500e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.238319516181945801e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.238319516181945801e-01,6.632862091064453125e-01,1.379800033569335938e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.171157836914062500e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236678451299667358e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236678451299667358e-01,6.639317870140075684e-01,1.278800010681152344e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.544726943969726562e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.243887633085250854e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.243887633085250854e-01,6.618710756301879883e-01,1.285599994659423828e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.823373413085937500e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.244584113359451294e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.244584113359451294e-01,6.639317870140075684e-01,1.302999973297119141e+01,9.479999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.101600646972656250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.195823788642883301e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.195823788642883301e-01,6.636090278625488281e-01,1.301599979400634766e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.997071075439453125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289457470178604126e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289457470178604126e-01,6.636090278625488281e-01,1.308399963378906250e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.672438049316406250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236666083335876465e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236666083335876465e-01,6.636090278625488281e-01,1.301200008392333984e+01,1.031999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,7.605458068847656250e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.305700331926345825e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.305700331926345825e-01,6.632862091064453125e-01,1.392000007629394531e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.400145339965820312e+01,2.277303338050842285e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.126954644918441772e-01,6.580367088317871094e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.126954644918441772e-01,6.580367088317871094e-01,1.363799953460693359e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.300534439086914062e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.188794910907745361e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.188794910907745361e-01,6.642546057701110840e-01,1.506999969482421875e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.359673309326171875e+01,5.728361010551452637e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.046559154987335205e-01,6.116909384727478027e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.046559154987335205e-01,6.116909384727478027e-01,1.575199985504150391e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.470723342895507812e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.202161550521850586e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.202161550521850586e-01,6.632862091064453125e-01,1.507999992370605469e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,8.625162963867187500e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.234263122081756592e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.234263122081756592e-01,6.636090278625488281e-01,1.527999973297119141e+01,9.520000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.016872024536132812e+01,7.574154734611511230e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.996835172176361084e-01,5.962568521499633789e-01,9.736213684082031250e-01,6.794257760047912598e-01,1.996835172176361084e-01,5.962568521499633789e-01,1.626000022888183594e+01,1.381999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.559397277832031250e+02,1.377612352371215820e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.916380524635314941e-01,5.302467346191406250e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.916380524635314941e-01,5.302467346191406250e-01,1.581599998474121094e+01,1.247999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.065530395507812500e+01,6.476548314094543457e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.029094249010086060e-01,6.087922453880310059e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.029094249010086060e-01,6.087922453880310059e-01,1.475199985504150391e+01,1.097999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.052170181274414062e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261389046907424927e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261389046907424927e-01,6.636090278625488281e-01,1.359000015258789062e+01,9.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.111117553710937500e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314155995845794678e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314155995845794678e-01,6.636090278625488281e-01,1.331200027465820312e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.975339508056640625e+01,3.551419675350189209e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.124875038862228394e-01,6.325415372848510742e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.124875038862228394e-01,6.325415372848510742e-01,1.231000041961669922e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,2.976214790344238281e+01,2.074841707944869995e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.441416978836059570e-01,6.698157191276550293e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.441416978836059570e-01,6.698157191276550293e-01,1.153400039672851562e+01,9.380000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.723674011230468750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.300212085247039795e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.300212085247039795e-01,6.632862091064453125e-01,1.157199954986572266e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,4.128490447998046875e+01,2.100478410720825195e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.310745269060134888e-01,6.645063161849975586e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.310745269060134888e-01,6.645063161849975586e-01,1.122799968719482422e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.919324302673339844e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.360020279884338379e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.360020279884338379e-01,6.632862091064453125e-01,1.144999980926513672e+01,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.599736404418945312e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.269091457128524780e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.269091457128524780e-01,6.632862091064453125e-01,1.127400016784667969e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.898195266723632812e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.493368834257125854e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.493368834257125854e-01,6.632862091064453125e-01,1.117199993133544922e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.701605606079101562e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.302718013525009155e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.302718013525009155e-01,6.632862091064453125e-01,1.209399986267089844e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.713709259033203125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.221422791481018066e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.221422791481018066e-01,6.636090278625488281e-01,1.202000045776367188e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.162663841247558594e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.464529573917388916e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.464529573917388916e-01,6.639317870140075684e-01,1.251000022888183594e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.486822128295898438e+01,2.138069719076156616e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.185613214969635010e-01,6.645773649215698242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.185613214969635010e-01,6.645773649215698242e-01,1.289200019836425781e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.165862579345703125e+02,2.174104899168014526e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.220157384872436523e-01,6.621938347816467285e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.220157384872436523e-01,6.621938347816467285e-01,1.366199970245361328e+01,1.092000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.721169662475585938e+01,2.107530087232589722e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.346975952386856079e-01,6.648290753364562988e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.346975952386856079e-01,6.648290753364562988e-01,1.461800003051757812e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.375718307495117188e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.196474671363830566e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.196474671363830566e-01,6.639317870140075684e-01,1.493200016021728516e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.636522674560546875e+01,3.802810311317443848e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.047255784273147583e-01,6.330721378326416016e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.047255784273147583e-01,6.330721378326416016e-01,1.548600006103515625e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.313842391967773438e+01,1.018468856811523438e+00,9.736213684082031250e-01,6.632862091064453125e-01,1.958391964435577393e-01,5.578582882881164551e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.958391964435577393e-01,5.578582882881164551e-01,1.623399925231933594e+01,1.339999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.642724227905273438e+01,3.907664418220520020e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.082922011613845825e-01,6.373689770698547363e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.082922011613845825e-01,6.373689770698547363e-01,1.553800010681152344e+01,1.111999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.055241012573242188e+01,2.263654768466949463e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.122476696968078613e-01,6.580139994621276855e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.122476696968078613e-01,6.580139994621276855e-01,1.489400005340576172e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.135676422119140625e+02,3.801748454570770264e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.110464572906494141e-01,6.358204483985900879e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.110464572906494141e-01,6.358204483985900879e-01,1.427799987792968750e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.174280929565429688e+01,2.374575138092041016e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.204300314188003540e-01,6.577025651931762695e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.204300314188003540e-01,6.577025651931762695e-01,1.374600028991699219e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.261254272460937500e+03,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211844176054000854e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211844176054000854e-01,6.639317870140075684e-01,1.264799976348876953e+01,9.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.316128784179687500e+03,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268137484788894653e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.268137484788894653e-01,6.636090278625488281e-01,1.189200019836425781e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.137835502624511719e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.253600358963012695e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.253600358963012695e-01,6.632862091064453125e-01,1.185200023651123047e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.663496780395507812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.404448091983795166e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.404448091983795166e-01,6.636090278625488281e-01,1.140600013732910156e+01,9.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.418293762207031250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.364367395639419556e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.364367395639419556e-01,6.639317870140075684e-01,1.107600021362304688e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.018961715698242188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.531255185604095459e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.531255185604095459e-01,6.636090278625488281e-01,1.117599964141845703e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.825760269165039062e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.324473112821578979e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.324473112821578979e-01,6.632862091064453125e-01,1.145600032806396484e+01,8.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.256641769409179688e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.372019588947296143e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.372019588947296143e-01,6.636090278625488281e-01,1.126000022888183594e+01,9.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.621894454956054688e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226850092411041260e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226850092411041260e-01,6.627400517463684082e-01,1.168200016021728516e+01,9.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.068723297119140625e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274955064058303833e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274955064058303833e-01,6.632862091064453125e-01,1.130599975585937500e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.206261825561523438e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274951487779617310e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.274951487779617310e-01,6.632862091064453125e-01,1.191600036621093750e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.688612365722656250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.345476001501083374e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.345476001501083374e-01,6.636090278625488281e-01,1.188199996948242188e+01,9.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.807473754882812500e+01,2.431602030992507935e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.154005467891693115e-01,6.559337377548217773e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.154005467891693115e-01,6.559337377548217773e-01,1.261400032043457031e+01,1.131999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.260420410156250000e+03,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.393834441900253296e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.393834441900253296e-01,6.632862091064453125e-01,1.260000038146972656e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.938156509399414062e+01,2.184822410345077515e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169976681470870972e-01,6.611608266830444336e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169976681470870972e-01,6.611608266830444336e-01,1.374800014495849609e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.275999832153320312e+01,2.765895128250122070e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.075760215520858765e-01,6.491903066635131836e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.075760215520858765e-01,6.491903066635131836e-01,1.454599952697753906e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.342547225952148438e+01,5.239776968955993652e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.084645628929138184e-01,6.238733530044555664e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.084645628929138184e-01,6.238733530044555664e-01,1.415600013732910156e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.026791000366210938e+02,2.172039747238159180e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.183371782302856445e-01,6.616918444633483887e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.183371782302856445e-01,6.616918444633483887e-01,1.434200000762939453e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.261175918579101562e+01,5.726472735404968262e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.085241377353668213e-01,6.088610291481018066e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.085241377353668213e-01,6.088610291481018066e-01,1.441399955749511719e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.398797988891601562e+01,3.286560475826263428e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.160208225250244141e-01,6.399432420730590820e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.160208225250244141e-01,6.399432420730590820e-01,1.450800037384033203e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.474561691284179688e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217209488153457642e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217209488153457642e-01,6.618710756301879883e-01,1.322200012207031250e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.114332771301269531e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.261378914117813110e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.261378914117813110e-01,6.632862091064453125e-01,1.226399993896484375e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.335856246948242188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.307776510715484619e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.307776510715484619e-01,6.636090278625488281e-01,1.256200027465820312e+01,9.340000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.737911224365234375e+01,2.149035632610321045e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.177564948797225952e-01,6.630628108978271484e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.177564948797225952e-01,6.630628108978271484e-01,1.256000041961669922e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.653856277465820312e+01,2.130901962518692017e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.354630678892135620e-01,6.640950441360473633e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.354630678892135620e-01,6.640950441360473633e-01,1.217000007629394531e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.982163238525390625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323895394802093506e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323895394802093506e-01,6.636090278625488281e-01,1.272999954223632812e+01,1.026000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.975783920288085938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.326674312353134155e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.326674312353134155e-01,6.639317870140075684e-01,1.253600025177001953e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.653907012939453125e+01,2.160001546144485474e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.256283462047576904e-01,6.615482568740844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.256283462047576904e-01,6.615482568740844727e-01,1.324800014495849609e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.202365112304687500e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297989875078201294e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297989875078201294e-01,6.636090278625488281e-01,1.291399955749511719e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.859024429321289062e+01,2.827164530754089355e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.147491425275802612e-01,6.478789448738098145e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.147491425275802612e-01,6.478789448738098145e-01,1.390400028228759766e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.190426635742187500e+01,2.999806106090545654e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.165889292955398560e-01,6.430319547653198242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.165889292955398560e-01,6.430319547653198242e-01,1.404599952697753906e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.054718780517578125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.205542176961898804e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.205542176961898804e-01,6.632862091064453125e-01,1.357800006866455078e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.091934204101562500e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290288209915161133e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290288209915161133e-01,6.632862091064453125e-01,1.402000045776367188e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.532696151733398438e+01,2.222178280353546143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.227391302585601807e-01,6.599538922309875488e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.227391302585601807e-01,6.599538922309875488e-01,1.352400016784667969e+01,9.260000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.044567489624023438e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.267009466886520386e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.267009466886520386e-01,6.639317870140075684e-01,1.460000038146972656e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.621449279785156250e+01,4.940110743045806885e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.111533880233764648e-01,6.277715563774108887e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.111533880233764648e-01,6.277715563774108887e-01,1.454599952697753906e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.886753463745117188e+01,5.891902446746826172e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.021527439355850220e-01,6.157743930816650391e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.021527439355850220e-01,6.157743930816650391e-01,1.452799987792968750e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.014953613281250000e+01,2.665186226367950439e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.172060161828994751e-01,6.497401595115661621e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.172060161828994751e-01,6.497401595115661621e-01,1.346399974822998047e+01,9.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.047081832885742188e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.310360372066497803e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.310360372066497803e-01,6.632862091064453125e-01,1.315200042724609375e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.203425979614257812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351849824190139771e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351849824190139771e-01,6.636090278625488281e-01,1.316600036621093750e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.275272369384765625e+01,2.565928697586059570e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208712249994277954e-01,6.523865461349487305e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208712249994277954e-01,6.523865461349487305e-01,1.308199977874755859e+01,9.180000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.592863649129867554e-01,2.684783363342285156e+01,2.099522948265075684e-01,9.736213684082031250e-01,7.183996438980102539e-01,2.525621354579925537e-01,6.643884778022766113e-01,9.736213684082031250e-01,7.183996438980102539e-01,2.525621354579925537e-01,6.643884778022766113e-01,1.232800006866455078e+01,9.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.159950828552246094e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.361585348844528198e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.361585348844528198e-01,6.636090278625488281e-01,1.252000045776367188e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.766532897949218750e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.444960474967956543e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.444960474967956543e-01,6.636090278625488281e-01,1.226399993896484375e+01,9.140000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.238303588867187500e+03,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351242452859878540e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351242452859878540e-01,6.639317870140075684e-01,1.261600017547607422e+01,1.060000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.107242965698242188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.311537414789199829e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.311537414789199829e-01,6.636090278625488281e-01,1.270800018310546875e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.889752960205078125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.299416959285736084e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.299416959285736084e-01,6.632862091064453125e-01,1.280799961090087891e+01,9.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.957022476196289062e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290144264698028564e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290144264698028564e-01,6.632862091064453125e-01,1.301000022888183594e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.534288024902343750e+01,2.316331565380096436e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149108797311782837e-01,6.572911143302917480e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149108797311782837e-01,6.572911143302917480e-01,1.373200035095214844e+01,9.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.075347595214843750e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.284584492444992065e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.284584492444992065e-01,6.636090278625488281e-01,1.345600032806396484e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.238388824462890625e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.328557223081588745e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.328557223081588745e-01,6.632862091064453125e-01,1.403199958801269531e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.559915924072265625e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.238886654376983643e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.238886654376983643e-01,6.639317870140075684e-01,1.427000045776367188e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.405406188964843750e+01,4.527703225612640381e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.093400061130523682e-01,6.277462840080261230e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.093400061130523682e-01,6.277462840080261230e-01,1.491199970245361328e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.475368118286132812e+01,3.187250494956970215e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.159238457679748535e-01,6.385263800621032715e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.159238457679748535e-01,6.385263800621032715e-01,1.459000015258789062e+01,1.296000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.870475387573242188e+01,3.228998184204101562e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.137988805770874023e-01,6.404811739921569824e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.137988805770874023e-01,6.404811739921569824e-01,1.493799972534179688e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.168118667602539062e+01,2.160001546144485474e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.173537015914916992e-01,6.615482568740844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.173537015914916992e-01,6.615482568740844727e-01,1.475399971008300781e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.062267112731933594e+01,2.123850286006927490e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.214053422212600708e-01,6.637722849845886230e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.214053422212600708e-01,6.637722849845886230e-01,1.397000026702880859e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.807804870605468750e+01,2.179091423749923706e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149773687124252319e-01,6.620146036148071289e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149773687124252319e-01,6.620146036148071289e-01,1.413599967956542969e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.482989349365234375e+02,2.287276387214660645e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.138708531856536865e-01,6.576782464981079102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.138708531856536865e-01,6.576782464981079102e-01,1.468999958038330078e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.533213424682617188e+01,2.067790031433105469e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.218826860189437866e-01,6.694929599761962891e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.218826860189437866e-01,6.694929599761962891e-01,1.423999977111816406e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.929619598388671875e+01,2.160001546144485474e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.197381854057312012e-01,6.615482568740844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.197381854057312012e-01,6.615482568740844727e-01,1.389599990844726562e+01,1.006000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.232881927490234375e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154343277215957642e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154343277215957642e-01,6.636090278625488281e-01,1.454599952697753906e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.531617736816406250e+01,6.774784922599792480e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.019203007221221924e-01,6.072746515274047852e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.019203007221221924e-01,6.072746515274047852e-01,1.452400016784667969e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.206414031982421875e+01,4.387397170066833496e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.123429626226425171e-01,6.285719871520996094e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.123429626226425171e-01,6.285719871520996094e-01,1.448400020599365234e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.357556152343750000e+01,5.335578322410583496e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.068588882684707642e-01,6.222075819969177246e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.068588882684707642e-01,6.222075819969177246e-01,1.347000026702880859e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.392278289794921875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293006926774978638e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293006926774978638e-01,6.639317870140075684e-01,1.360599994659423828e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.146284103393554688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.372291386127471924e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.372291386127471924e-01,6.632862091064453125e-01,1.321599960327148438e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.930694580078125000e+01,2.132866680622100830e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323472499847412109e-01,6.638480424880981445e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323472499847412109e-01,6.638480424880981445e-01,1.281599998474121094e+01,1.039999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.029021644592285156e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.395323663949966431e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.395323663949966431e-01,6.632862091064453125e-01,1.262600040435791016e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.627141571044921875e+01,3.651331961154937744e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.160197347402572632e-01,6.396837234497070312e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.160197347402572632e-01,6.396837234497070312e-01,1.317800045013427734e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.921248435974121094e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.425014674663543701e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.425014674663543701e-01,6.639317870140075684e-01,1.175399971008300781e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.942085838317871094e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.465779930353164673e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.465779930353164673e-01,6.639317870140075684e-01,1.114599990844726562e+01,8.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.227982711791992188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.311570048332214355e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.311570048332214355e-01,6.632862091064453125e-01,1.231000041961669922e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.059630966186523438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.381723672151565552e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.381723672151565552e-01,6.636090278625488281e-01,1.176799964904785156e+01,8.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.234244155883789062e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.346557974815368652e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.346557974815368652e-01,6.632862091064453125e-01,1.202000045776367188e+01,9.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.769994735717773438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.537642419338226318e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.537642419338226318e-01,6.636090278625488281e-01,1.194999980926513672e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.242390441894531250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.410286515951156616e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.410286515951156616e-01,6.636090278625488281e-01,1.265400028228759766e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.178137969970703125e+01,2.538511455059051514e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.182264178991317749e-01,6.540834903717041016e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.182264178991317749e-01,6.540834903717041016e-01,1.288399982452392578e+01,9.979999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.692485809326171875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.411123216152191162e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.411123216152191162e-01,6.636090278625488281e-01,1.302200031280517578e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.390943527221679688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.259659618139266968e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.259659618139266968e-01,6.632862091064453125e-01,1.349800014495849609e+01,9.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.335910034179687500e+02,2.115382552146911621e-01,9.736213684082031250e-01,6.702793240547180176e-01,2.291993349790573120e-01,6.634261012077331543e-01,9.736213684082031250e-01,6.702793240547180176e-01,2.291993349790573120e-01,6.634261012077331543e-01,1.372399997711181641e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.769043350219726562e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.421691864728927612e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.421691864728927612e-01,6.632862091064453125e-01,1.425599956512451172e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.006891822814941406e+01,2.894297242164611816e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.165316790342330933e-01,6.472880840301513672e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.165316790342330933e-01,6.472880840301513672e-01,1.471000003814697266e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.681475830078125000e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169798165559768677e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.169798165559768677e-01,6.606436371803283691e-01,1.405399990081787109e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,4.343224716186523438e+01,2.067790031433105469e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.160043865442276001e-01,6.694929599761962891e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.160043865442276001e-01,6.694929599761962891e-01,1.465600013732910156e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.891648101806640625e+01,2.144655287265777588e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.171756774187088013e-01,6.623998284339904785e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.171756774187088013e-01,6.623998284339904785e-01,1.475399971008300781e+01,9.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.326378631591796875e+01,2.193440198898315430e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230273932218551636e-01,6.618343591690063477e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230273932218551636e-01,6.618343591690063477e-01,1.513199996948242188e+01,1.180000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.753878631591796875e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.162296622991561890e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.162296622991561890e-01,6.632862091064453125e-01,1.488799953460693359e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.146746063232421875e+01,3.366358876228332520e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.137014120817184448e-01,6.347280740737915039e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.137014120817184448e-01,6.347280740737915039e-01,1.519999980926513672e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.766137313842773438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.206259518861770630e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.206259518861770630e-01,6.636090278625488281e-01,1.583199977874755859e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.133776092529296875e+01,2.930243313312530518e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.132310420274734497e-01,6.455767750740051270e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.132310420274734497e-01,6.455767750740051270e-01,1.636599922180175781e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.321352386474609375e+02,2.549236416816711426e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.161488085985183716e-01,6.530181169509887695e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.161488085985183716e-01,6.530181169509887695e-01,1.572999954223632812e+01,1.185999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.429476165771484375e+01,2.378489375114440918e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.155757993459701538e-01,6.558652520179748535e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.155757993459701538e-01,6.558652520179748535e-01,1.522200012207031250e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.319591140747070312e+01,2.541852295398712158e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.214006334543228149e-01,6.520993709564208984e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.214006334543228149e-01,6.520993709564208984e-01,1.497000026702880859e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.609513473510742188e+01,3.022858500480651855e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.125085294246673584e-01,6.446757316589355469e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.125085294246673584e-01,6.446757316589355469e-01,1.462399959564208984e+01,1.089999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.516598892211914062e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.505415081977844238e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.505415081977844238e-01,6.636090278625488281e-01,1.338199996948242188e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.545054018497467041e-01,3.334192657470703125e+01,2.098566740751266479e-01,9.736213684082031250e-01,7.282789945602416992e-01,2.272171676158905029e-01,6.645860671997070312e-01,9.736213684082031250e-01,7.282789945602416992e-01,2.272171676158905029e-01,6.645860671997070312e-01,1.263000011444091797e+01,9.100000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.246741485595703125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.228350937366485596e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.228350937366485596e-01,6.636090278625488281e-01,1.224800014495849609e+01,9.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.909216499328613281e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.444323152303695679e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.444323152303695679e-01,6.636090278625488281e-01,1.265400028228759766e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.717495727539062500e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.360637784004211426e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.360637784004211426e-01,6.636090278625488281e-01,1.241800022125244141e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.858909225463867188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348838001489639282e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348838001489639282e-01,6.636090278625488281e-01,1.261200046539306641e+01,1.092000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.157501220703125000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.388358265161514282e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.388358265161514282e-01,6.632862091064453125e-01,1.270199966430664062e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.243603515625000000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289424538612365723e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289424538612365723e-01,6.639317870140075684e-01,1.331400012969970703e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.497505187988281250e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193929851055145264e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193929851055145264e-01,6.618710756301879883e-01,1.321800041198730469e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.942021942138671875e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.257663458585739136e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.257663458585739136e-01,6.632862091064453125e-01,1.336200046539306641e+01,9.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.052163314819335938e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193263173103332520e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.193263173103332520e-01,6.606436371803283691e-01,1.401000022888183594e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.147672080993652344e+01,5.535084009170532227e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.127848118543624878e-01,6.194905042648315430e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.127848118543624878e-01,6.194905042648315430e-01,1.356400012969970703e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.580943679809570312e+01,5.165843367576599121e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111099511384963989e-01,6.251808404922485352e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111099511384963989e-01,6.251808404922485352e-01,1.379199981689453125e+01,1.068000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.413097763061523438e+01,2.139918804168701172e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.221471071243286133e-01,6.622380018234252930e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.221471071243286133e-01,6.622380018234252930e-01,1.395199966430664062e+01,9.359999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.908108520507812500e+01,2.463722974061965942e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157057225704193115e-01,6.553875207901000977e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.157057225704193115e-01,6.553875207901000977e-01,1.377799987792968750e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.154896163940429688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.323015332221984863e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.323015332221984863e-01,6.632862091064453125e-01,1.354399967193603516e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.897783279418945312e+01,2.117928564548492432e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.146939784288406372e-01,6.677549481391906738e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.146939784288406372e-01,6.677549481391906738e-01,1.350399971008300781e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.264037231445312500e+03,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.235427051782608032e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.235427051782608032e-01,6.632862091064453125e-01,1.393000030517578125e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.991582870483398438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.309873551130294800e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.309873551130294800e-01,6.636090278625488281e-01,1.303400039672851562e+01,1.006000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.040541267395019531e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.395504266023635864e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.395504266023635864e-01,6.636090278625488281e-01,1.288599967956542969e+01,9.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.728783798217773438e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.223478257656097412e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.223478257656097412e-01,6.632862091064453125e-01,1.373799991607666016e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.587386703491210938e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.278485298156738281e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.278485298156738281e-01,6.632862091064453125e-01,1.394799995422363281e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.938497352600097656e+01,2.200983315706253052e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.221385389566421509e-01,6.615106463432312012e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.221385389566421509e-01,6.615106463432312012e-01,1.353800010681152344e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,5.239414215087890625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.414745390415191650e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.414745390415191650e-01,6.636090278625488281e-01,1.414599990844726562e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.685706329345703125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236813157796859741e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.236813157796859741e-01,6.636090278625488281e-01,1.416399955749511719e+01,9.500000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.413903045654296875e+01,3.023500144481658936e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.146685272455215454e-01,6.439762115478515625e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.146685272455215454e-01,6.439762115478515625e-01,1.450399971008300781e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.550479736328125000e+02,4.465293586254119873e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.155678123235702515e-01,6.340911984443664551e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.155678123235702515e-01,6.340911984443664551e-01,1.512600040435791016e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.000155067443847656e+01,4.996144473552703857e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.136725485324859619e-01,6.298429369926452637e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.136725485324859619e-01,6.298429369926452637e-01,1.543599987030029297e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.363901519775390625e+01,2.188814431428909302e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.222330868244171143e-01,6.619971990585327148e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.222330868244171143e-01,6.619971990585327148e-01,1.544400024414062500e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.370462417602539062e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.251923978328704834e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.251923978328704834e-01,6.636090278625488281e-01,1.405799961090087891e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.695685195922851562e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.352366149425506592e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.352366149425506592e-01,6.639317870140075684e-01,1.377799987792968750e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.888137435913085938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.377375811338424683e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.377375811338424683e-01,6.639317870140075684e-01,1.345400047302246094e+01,9.880000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.031566238403320312e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.242841273546218872e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.242841273546218872e-01,6.632862091064453125e-01,1.332400035858154297e+01,9.439999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.201153945922851562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.426521182060241699e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.426521182060241699e-01,6.636090278625488281e-01,1.318799972534179688e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.234034347534179688e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.374147325754165649e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.374147325754165649e-01,6.636090278625488281e-01,1.299600028991699219e+01,1.018000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.066499633789062500e+02,2.557883560657501221e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.171735018491744995e-01,6.541823148727416992e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.171735018491744995e-01,6.541823148727416992e-01,1.364000034332275391e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.339391326904296875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248308956623077393e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248308956623077393e-01,6.636090278625488281e-01,1.387800025939941406e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.171138954162597656e+01,2.164988070726394653e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.201899290084838867e-01,6.613690257072448730e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.201899290084838867e-01,6.613690257072448730e-01,1.375399971008300781e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.694030380249023438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351015359163284302e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351015359163284302e-01,6.636090278625488281e-01,1.373200035095214844e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.299346923828125000e+01,2.192122340202331543e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.213065326213836670e-01,6.610020995140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.213065326213836670e-01,6.610020995140075684e-01,1.491399955749511719e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.186298942565917969e+01,2.342454195022583008e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170762568712234497e-01,6.582487821578979492e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170762568712234497e-01,6.582487821578979492e-01,1.439400005340576172e+01,1.189999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.129808425903320312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.258345186710357666e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.258345186710357666e-01,6.636090278625488281e-01,1.468200016021728516e+01,9.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.480126953125000000e+01,2.893919944763183594e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.159835696220397949e-01,6.487545967102050781e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.159835696220397949e-01,6.487545967102050781e-01,1.517000007629394531e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.032601737976074219e+01,2.124477922916412354e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.259147763252258301e-01,6.637284159660339355e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.259147763252258301e-01,6.637284159660339355e-01,1.485000038146972656e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.425640106201171875e+01,2.204160690307617188e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.223748862743377686e-01,6.611456274986267090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.223748862743377686e-01,6.611456274986267090e-01,1.385000038146972656e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.122341346740722656e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.276556789875030518e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.276556789875030518e-01,6.632862091064453125e-01,1.440600013732910156e+01,9.439999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.047213668823242188e+02,2.133321911096572876e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.186119854450225830e-01,6.625381112098693848e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.186119854450225830e-01,6.625381112098693848e-01,1.496199989318847656e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.434936523437500000e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.296693623065948486e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.296693623065948486e-01,6.636090278625488281e-01,1.511600017547607422e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.407563400268554688e+01,2.298295050859451294e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.181829214096069336e-01,6.586514115333557129e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.181829214096069336e-01,6.586514115333557129e-01,1.471399974822998047e+01,1.068000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.510125350952148438e+01,2.757913768291473389e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.125480026006698608e-01,6.498425006866455078e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.125480026006698608e-01,6.498425006866455078e-01,1.454399967193603516e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.226848220825195312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.312159389257431030e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.312159389257431030e-01,6.636090278625488281e-01,1.428199958801269531e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.958399009704589844e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.296037673950195312e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.296037673950195312e-01,6.639317870140075684e-01,1.475399971008300781e+01,1.097999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.524357223510742188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.402896732091903687e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.402896732091903687e-01,6.632862091064453125e-01,1.489799976348876953e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.077701950073242188e+01,2.456671297550201416e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.204026281833648682e-01,6.550647616386413574e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.204026281833648682e-01,6.550647616386413574e-01,1.442000007629394531e+01,9.380000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.355839538574218750e+01,3.566800057888031006e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.157811671495437622e-01,6.492983102798461914e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.157811671495437622e-01,6.492983102798461914e-01,1.492000007629394531e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.352650833129882812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293917685747146606e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293917685747146606e-01,6.636090278625488281e-01,1.443200016021728516e+01,9.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.882650375366210938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.356228977441787720e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.356228977441787720e-01,6.636090278625488281e-01,1.395400047302246094e+01,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.988092803955078125e+01,2.232151329517364502e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217343002557754517e-01,6.595954298973083496e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.217343002557754517e-01,6.595954298973083496e-01,1.502999973297119141e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.258462142944335938e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.304622083902359009e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.304622083902359009e-01,6.632862091064453125e-01,1.360799980163574219e+01,9.420000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.002026748657226562e+01,3.824509978294372559e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.106477171182632446e-01,6.374053955078125000e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.106477171182632446e-01,6.374053955078125000e-01,1.456999969482421875e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.365628433227539062e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.338901758193969727e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.338901758193969727e-01,6.639317870140075684e-01,1.411800003051757812e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.006987380981445312e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.436094582080841064e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.436094582080841064e-01,6.639317870140075684e-01,1.339799976348876953e+01,8.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.830874252319335938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.355948686599731445e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.355948686599731445e-01,6.636090278625488281e-01,1.295199966430664062e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.879594421386718750e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.380106002092361450e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.380106002092361450e-01,6.639317870140075684e-01,1.293000030517578125e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.656292724609375000e+01,2.172039747238159180e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.215201854705810547e-01,6.616918444633483887e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.215201854705810547e-01,6.616918444633483887e-01,1.389799976348876953e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.243973922729492188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.358070015907287598e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.358070015907287598e-01,6.632862091064453125e-01,1.361600017547607422e+01,1.142000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.706755447387695312e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.263547331094741821e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.263547331094741821e-01,6.632862091064453125e-01,1.442000007629394531e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.448987579345703125e+01,4.899349808692932129e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111040204763412476e-01,6.262310743331909180e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111040204763412476e-01,6.262310743331909180e-01,1.414799976348876953e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.976168632507324219e+01,3.654227554798126221e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.191770672798156738e-01,6.420221924781799316e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.191770672798156738e-01,6.420221924781799316e-01,1.389400005340576172e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.034872245788574219e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.478274405002593994e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.478274405002593994e-01,6.632862091064453125e-01,1.320800018310546875e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.920872306823730469e+01,2.296189069747924805e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.190767973661422729e-01,6.580370068550109863e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.190767973661422729e-01,6.580370068550109863e-01,1.348200035095214844e+01,8.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.856081199645996094e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.354877293109893799e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.354877293109893799e-01,6.632862091064453125e-01,1.288000011444091797e+01,9.239999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.054527740478515625e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.423803508281707764e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.423803508281707764e-01,6.632862091064453125e-01,1.281999969482421875e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.164463806152343750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.435976564884185791e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.435976564884185791e-01,6.632862091064453125e-01,1.281000041961669922e+01,8.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.714371490478515625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.335283458232879639e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.335283458232879639e-01,6.636090278625488281e-01,1.316800022125244141e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.910400009155273438e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.249590903520584106e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.249590903520584106e-01,6.639317870140075684e-01,1.347799968719482422e+01,9.020000457763671875e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.509216278791427612e-01,6.457990264892578125e+01,2.122919261455535889e-01,9.736213684082031250e-01,7.289624214172363281e-01,2.323247194290161133e-01,6.637307405471801758e-01,9.736213684082031250e-01,7.289624214172363281e-01,2.323247194290161133e-01,6.637307405471801758e-01,1.333399963378906250e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.040858650207519531e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.350868880748748779e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.350868880748748779e-01,6.632862091064453125e-01,1.356400012969970703e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.300576019287109375e+01,2.184077948331832886e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.187606841325759888e-01,6.618354320526123047e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.187606841325759888e-01,6.618354320526123047e-01,1.300599956512451172e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.194217300415039062e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.304390668869018555e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.304390668869018555e-01,6.636090278625488281e-01,1.344799995422363281e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.919025802612304688e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248483747243881226e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248483747243881226e-01,6.639317870140075684e-01,1.371000003814697266e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.090942955017089844e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.239443063735961914e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.239443063735961914e-01,6.636090278625488281e-01,1.497999954223632812e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.029396057128906250e+01,2.404683679342269897e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.187930494546890259e-01,6.591420769691467285e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.187930494546890259e-01,6.591420769691467285e-01,1.464200019836425781e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.935347747802734375e+01,2.164988070726394653e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.148831188678741455e-01,6.613690257072448730e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.148831188678741455e-01,6.613690257072448730e-01,1.540600013732910156e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.680263900756835938e+01,2.436588704586029053e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.158895432949066162e-01,6.557545065879821777e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.158895432949066162e-01,6.557545065879821777e-01,1.605800056457519531e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.806362533569335938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.316412329673767090e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.316412329673767090e-01,6.639317870140075684e-01,1.551200008392333984e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.530352020263671875e+02,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.257285118103027344e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.257285118103027344e-01,6.642546057701110840e-01,1.604999923706054688e+01,1.107999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.411216735839843750e+01,4.774138927459716797e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.129678875207901001e-01,6.270354390144348145e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.129678875207901001e-01,6.270354390144348145e-01,1.647599983215332031e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.533624267578125000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.197876274585723877e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.197876274585723877e-01,6.632862091064453125e-01,1.526000022888183594e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.153525924682617188e+01,3.360980749130249023e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.133759856224060059e-01,6.379871368408203125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.133759856224060059e-01,6.379871368408203125e-01,1.569799995422363281e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.469659042358398438e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.218337506055831909e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.218337506055831909e-01,6.636090278625488281e-01,1.548200035095214844e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,8.141484111547470093e-02,3.067429924011230469e+01,2.091000378131866455e-01,9.736213684082031250e-01,7.561330199241638184e-01,2.187952697277069092e-01,6.654659509658813477e-01,9.736213684082031250e-01,7.561330199241638184e-01,2.187952697277069092e-01,6.654659509658813477e-01,1.545199966430664062e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.296069335937500000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.177058309316635132e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.177058309316635132e-01,6.632862091064453125e-01,1.442399978637695312e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.339183807373046875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.235218286514282227e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.235218286514282227e-01,6.636090278625488281e-01,1.576399993896484375e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.977380371093750000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.168177962303161621e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.168177962303161621e-01,6.632862091064453125e-01,1.468999958038330078e+01,9.199999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.802346801757812500e+01,4.611276388168334961e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111271172761917114e-01,6.237419247627258301e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.111271172761917114e-01,6.237419247627258301e-01,1.446399974822998047e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.794527816772460938e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.242701500654220581e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.242701500654220581e-01,6.649001836776733398e-01,1.456999969482421875e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.257733535766601562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.214536666870117188e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.214536666870117188e-01,6.636090278625488281e-01,1.460799980163574219e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.219437789916992188e+01,2.252234071493148804e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.178369313478469849e-01,6.589056849479675293e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.178369313478469849e-01,6.589056849479675293e-01,1.568400001525878906e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.299986648559570312e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.231452167034149170e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.231452167034149170e-01,6.627400517463684082e-01,1.443799972534179688e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.283575057983398438e+01,3.802461028099060059e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.118684947490692139e-01,6.418124437332153320e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.118684947490692139e-01,6.418124437332153320e-01,1.526000022888183594e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.078845214843750000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.377741038799285889e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.377741038799285889e-01,6.632862091064453125e-01,1.406200027465820312e+01,9.880000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.503162765502929688e+01,2.210139930248260498e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.223503440618515015e-01,6.598103046417236328e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.223503440618515015e-01,6.598103046417236328e-01,1.404399967193603516e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.309835815429687500e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.377467006444931030e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.377467006444931030e-01,6.639317870140075684e-01,1.455200004577636719e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.256854248046875000e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.359762787818908691e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.359762787818908691e-01,6.636090278625488281e-01,1.422999954223632812e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.167889022827148438e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253852635622024536e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.253852635622024536e-01,6.618710756301879883e-01,1.455399990081787109e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.052295112609863281e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.357332706451416016e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.357332706451416016e-01,6.636090278625488281e-01,1.422599983215332031e+01,9.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.218311309814453125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.246135175228118896e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.246135175228118896e-01,6.632862091064453125e-01,1.468799972534179688e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.241967391967773438e+01,2.210139930248260498e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.240811586380004883e-01,6.598103046417236328e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.240811586380004883e-01,6.598103046417236328e-01,1.480000019073486328e+01,9.840000152587890625e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.765656280517578125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.376316338777542114e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.376316338777542114e-01,6.636090278625488281e-01,1.445199966430664062e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.867802047729492188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229153811931610107e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229153811931610107e-01,6.632862091064453125e-01,1.468799972534179688e+01,9.460000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.105537033081054688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.318362891674041748e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.318362891674041748e-01,6.632862091064453125e-01,1.573200035095214844e+01,9.640000343322753906e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.160806083679199219e+01,2.817308604717254639e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.118755877017974854e-01,6.542968750000000000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.118755877017974854e-01,6.542968750000000000e-01,1.653599929809570312e+01,1.026000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.570753860473632812e+01,2.710254490375518799e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.176022380590438843e-01,6.506419777870178223e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.176022380590438843e-01,6.506419777870178223e-01,1.604999923706054688e+01,1.193999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.285674667358398438e+01,2.367523461580276489e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189179509878158569e-01,6.573798060417175293e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.189179509878158569e-01,6.573798060417175293e-01,1.539599990844726562e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.978591156005859375e+01,4.945951104164123535e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.123006731271743774e-01,6.232884526252746582e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.123006731271743774e-01,6.232884526252746582e-01,1.558800029754638672e+01,1.142000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.427994155883789062e+01,3.112607002258300781e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.116329669952392578e-01,6.415488123893737793e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.116329669952392578e-01,6.415488123893737793e-01,1.416600036621093750e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.896869468688964844e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.331532984972000122e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.331532984972000122e-01,6.632862091064453125e-01,1.341800022125244141e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.290464401245117188e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.285968661308288574e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.285968661308288574e-01,6.636090278625488281e-01,1.358800029754638672e+01,1.192000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.677346420288085938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.416652143001556396e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.416652143001556396e-01,6.639317870140075684e-01,1.260200023651123047e+01,1.053999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.082062911987304688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.396222651004791260e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.396222651004791260e-01,6.632862091064453125e-01,1.179199981689453125e+01,9.060000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.513330078125000000e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323672026395797729e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323672026395797729e-01,6.642546057701110840e-01,1.279599952697753906e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.942893028259277344e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.408675551414489746e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.408675551414489746e-01,6.636090278625488281e-01,1.200199985504150391e+01,9.539999961853027344e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.756201553344726562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.591808438301086426e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.591808438301086426e-01,6.636090278625488281e-01,1.231599998474121094e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.425056076049804688e+01,2.123850286006927490e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.307140827178955078e-01,6.637722849845886230e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.307140827178955078e-01,6.637722849845886230e-01,1.284000015258789062e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.927383232116699219e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.536789774894714355e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.536789774894714355e-01,6.632862091064453125e-01,1.194600009918212891e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.029287338256835938e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.298960983753204346e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.298960983753204346e-01,6.632862091064453125e-01,1.309799957275390625e+01,8.760000228881835938e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.217717742919921875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.330390959978103638e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.330390959978103638e-01,6.639317870140075684e-01,1.338399982452392578e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.938053894042968750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.210278213024139404e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.210278213024139404e-01,6.632862091064453125e-01,1.301000022888183594e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.169510269165039062e+01,2.067790031433105469e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.307527214288711548e-01,6.694929599761962891e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.307527214288711548e-01,6.694929599761962891e-01,1.336800003051757812e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.024738502502441406e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.279439121484756470e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.279439121484756470e-01,6.632862091064453125e-01,1.359599971771240234e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.723653030395507812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212080359458923340e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212080359458923340e-01,6.636090278625488281e-01,1.377999973297119141e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.101584854125976562e+02,3.867295384407043457e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.066799104213714600e-01,6.380852460861206055e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.066799104213714600e-01,6.380852460861206055e-01,1.513000011444091797e+01,1.031999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.568996810913085938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261128872632980347e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261128872632980347e-01,6.636090278625488281e-01,1.513399982452392578e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.180733108520507812e+01,3.687869310379028320e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.115366309881210327e-01,6.396044492721557617e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.115366309881210327e-01,6.396044492721557617e-01,1.515600013732910156e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.651133422851562500e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.172817289829254150e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.172817289829254150e-01,6.632862091064453125e-01,1.485999965667724609e+01,9.859999656677246094e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.417367935180664062e+01,2.245857119560241699e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184619605541229248e-01,6.600757241249084473e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184619605541229248e-01,6.600757241249084473e-01,1.531400012969970703e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.656317520141601562e+01,2.081777453422546387e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.314178198575973511e-01,6.699789762496948242e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.314178198575973511e-01,6.699789762496948242e-01,1.493599987030029297e+01,1.177999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.568400573730468750e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.229056656360626221e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.229056656360626221e-01,6.636090278625488281e-01,1.507199954986572266e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.560902023315429688e+01,3.564993739128112793e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.111164033412933350e-01,6.373781561851501465e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.111164033412933350e-01,6.373781561851501465e-01,1.574600028991699219e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.350635147094726562e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170621007680892944e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.170621007680892944e-01,6.627400517463684082e-01,1.447799968719482422e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.553833007812500000e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184748798608779907e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.184748798608779907e-01,6.636090278625488281e-01,1.444200038909912109e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.441778182983398438e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.273780554533004761e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.273780554533004761e-01,6.632862091064453125e-01,1.440999984741210938e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.477628479003906250e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248501330614089966e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248501330614089966e-01,6.636090278625488281e-01,1.417599964141845703e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.316025390625000000e+02,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332458794116973877e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.332458794116973877e-01,6.639317870140075684e-01,1.477999973297119141e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.097818756103515625e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.208262681961059570e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.208262681961059570e-01,6.632862091064453125e-01,1.484799957275390625e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.683901214599609375e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.232050895690917969e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.232050895690917969e-01,6.632862091064453125e-01,1.490799999237060547e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.755580139160156250e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.218533307313919067e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.218533307313919067e-01,6.632862091064453125e-01,1.550000000000000000e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.125444221496582031e+01,3.372796475887298584e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.147736102342605591e-01,6.491171717643737793e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.147736102342605591e-01,6.491171717643737793e-01,1.585000038146972656e+01,9.000000000000000000e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.991376113891601562e+01,5.029329061508178711e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.156987935304641724e-01,6.212612390518188477e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.156987935304641724e-01,6.212612390518188477e-01,1.563000011444091797e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.255465316772460938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.298986315727233887e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.298986315727233887e-01,6.636090278625488281e-01,1.459000015258789062e+01,1.102000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.162024116516113281e+01,2.232151329517364502e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276322841644287109e-01,6.595954298973083496e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276322841644287109e-01,6.595954298973083496e-01,1.487800025939941406e+01,1.003999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.368491363525390625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297906428575515747e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297906428575515747e-01,6.636090278625488281e-01,1.410999965667724609e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.232812881469726562e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.258904278278350830e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.258904278278350830e-01,6.639317870140075684e-01,1.423200035095214844e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.148493957519531250e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.330769151449203491e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.330769151449203491e-01,6.632862091064453125e-01,1.480799961090087891e+01,9.079999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.233715820312500000e+01,2.129966765642166138e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.187729626893997192e-01,6.678985357284545898e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.187729626893997192e-01,6.678985357284545898e-01,1.434799957275390625e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.215642089843750000e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.311774641275405884e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.311774641275405884e-01,6.632862091064453125e-01,1.386800003051757812e+01,9.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.563554382324218750e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290498167276382446e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.290498167276382446e-01,6.632862091064453125e-01,1.455000019073486328e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.038899230957031250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297918796539306641e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.297918796539306641e-01,6.639317870140075684e-01,1.472599983215332031e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,2.969261169433593750e+01,2.088945060968399048e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.276779264211654663e-01,6.704612970352172852e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.276779264211654663e-01,6.704612970352172852e-01,1.497399997711181641e+01,1.131999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.801187705993652344e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.260312288999557495e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.260312288999557495e-01,6.632862091064453125e-01,1.410599994659423828e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.904165458679199219e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.365666627883911133e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.365666627883911133e-01,6.636090278625488281e-01,1.424800014495849609e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.445092010498046875e+01,2.123850286006927490e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.289199829101562500e-01,6.637722849845886230e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.289199829101562500e-01,6.637722849845886230e-01,1.559399986267089844e+01,1.077999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.577145004272460938e+01,2.192122340202331543e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179300338029861450e-01,6.610020995140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.179300338029861450e-01,6.610020995140075684e-01,1.531200027465820312e+01,1.039999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.490173721313476562e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.148975878953933716e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.148975878953933716e-01,6.606436371803283691e-01,1.669000053405761719e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.232179260253906250e+01,3.755784928798675537e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.093672305345535278e-01,6.358398795127868652e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.093672305345535278e-01,6.358398795127868652e-01,1.684000015258789062e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.884364318847656250e+01,2.661486566066741943e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.126696258783340454e-01,6.510938405990600586e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.126696258783340454e-01,6.510938405990600586e-01,1.623999977111816406e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.579111099243164062e+01,2.253165692090988159e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154451161623001099e-01,6.586701273918151855e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154451161623001099e-01,6.586701273918151855e-01,1.637000083923339844e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.733628463745117188e+01,6.447964906692504883e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.073324918746948242e-01,6.079810857772827148e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.073324918746948242e-01,6.079810857772827148e-01,1.637000083923339844e+01,1.180000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.329528808593750000e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.299522161483764648e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.299522161483764648e-01,6.632862091064453125e-01,1.534200000762939453e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.590108108520507812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276314347982406616e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.276314347982406616e-01,6.636090278625488281e-01,1.460000038146972656e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.178162002563476562e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.252881526947021484e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.252881526947021484e-01,6.636090278625488281e-01,1.402600002288818359e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.840198516845703125e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.251343280076980591e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.251343280076980591e-01,6.636090278625488281e-01,1.394400024414062500e+01,1.077999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.263936645507812500e+03,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.216889858245849609e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.216889858245849609e-01,6.632862091064453125e-01,1.366800022125244141e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.315053939819335938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.283701300621032715e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.283701300621032715e-01,6.639317870140075684e-01,1.408199977874755859e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.286213302612304688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.255463600158691406e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.255463600158691406e-01,6.632862091064453125e-01,1.464200019836425781e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.222751617431640625e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226396352052688599e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.226396352052688599e-01,6.642546057701110840e-01,1.440799999237060547e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.114875411987304688e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.292832732200622559e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.292832732200622559e-01,6.636090278625488281e-01,1.435999965667724609e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.634786605834960938e+01,3.819449841976165771e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.091761082410812378e-01,6.382794976234436035e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.091761082410812378e-01,6.382794976234436035e-01,1.475399971008300781e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.387473678588867188e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.210054844617843628e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.210054844617843628e-01,6.627400517463684082e-01,1.489599990844726562e+01,9.960000038146972656e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.334775543212890625e+01,3.763039112091064453e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.095811069011688232e-01,6.327447295188903809e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.095811069011688232e-01,6.327447295188903809e-01,1.497200012207031250e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.587230682373046875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.239751368761062622e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.239751368761062622e-01,6.636090278625488281e-01,1.507199954986572266e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.801748275756835938e+01,2.795813381671905518e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.155437469482421875e-01,6.475465893745422363e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.155437469482421875e-01,6.475465893745422363e-01,1.504599952697753906e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.874588203430175781e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.353893816471099854e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.353893816471099854e-01,6.642546057701110840e-01,1.419400024414062500e+01,1.018000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.622819824218750000e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.384191751480102539e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.384191751480102539e-01,6.636090278625488281e-01,1.411200046539306641e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.308394622802734375e+01,2.154022157192230225e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.264396101236343384e-01,6.628836393356323242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.264396101236343384e-01,6.628836393356323242e-01,1.427400016784667969e+01,9.800000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.975454711914062500e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.432102113962173462e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.432102113962173462e-01,6.639317870140075684e-01,1.376599979400634766e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.204618835449218750e+01,2.156087309122085571e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.200589478015899658e-01,6.633856296539306641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.200589478015899658e-01,6.633856296539306641e-01,1.503199958801269531e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.038147926330566406e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.424435764551162720e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.424435764551162720e-01,6.642546057701110840e-01,1.435599994659423828e+01,9.920000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,5.324503784179687500e+02,2.150616943836212158e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.330872267484664917e-01,6.627683639526367188e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.330872267484664917e-01,6.627683639526367188e-01,1.410000038146972656e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.188947486877441406e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.346537262201309204e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.346537262201309204e-01,6.642546057701110840e-01,1.421800041198730469e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.456777572631835938e+01,2.081893384456634521e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.281486392021179199e-01,6.701385378837585449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.281486392021179199e-01,6.701385378837585449e-01,1.483399963378906250e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.860210418701171875e+01,2.232151329517364502e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.171786129474639893e-01,6.595954298973083496e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.171786129474639893e-01,6.595954298973083496e-01,1.497599983215332031e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.966926765441894531e+01,2.287276387214660645e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.175215929746627808e-01,6.576782464981079102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.175215929746627808e-01,6.576782464981079102e-01,1.543400001525878906e+01,9.659999847412109375e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.233244705200195312e+01,2.493778765201568604e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.196756154298782349e-01,6.543393731117248535e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.196756154298782349e-01,6.543393731117248535e-01,1.560799980163574219e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.963016128540039062e+01,2.134932279586791992e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.192265391349792480e-01,6.624172329902648926e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.192265391349792480e-01,6.624172329902648926e-01,1.468799972534179688e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.554930877685546875e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.285041660070419312e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.285041660070419312e-01,6.632862091064453125e-01,1.464400005340576172e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.230989456176757812e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.293425649404525757e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.293425649404525757e-01,6.632862091064453125e-01,1.518799972534179688e+01,1.202000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.313656234741210938e+01,2.215126603841781616e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.224207818508148193e-01,6.596310734748840332e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.224207818508148193e-01,6.596310734748840332e-01,1.561200046539306641e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.071980133056640625e+02,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.340217977762222290e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.340217977762222290e-01,6.639317870140075684e-01,1.570400047302246094e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.640755462646484375e+01,6.842215061187744141e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.075321972370147705e-01,6.043253540992736816e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.075321972370147705e-01,6.043253540992736816e-01,1.634199905395507812e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.229515838623046875e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261038124561309814e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.261038124561309814e-01,6.639317870140075684e-01,1.565400028228759766e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.922331619262695312e+01,3.482215702533721924e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.080907523632049561e-01,6.421447992324829102e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.080907523632049561e-01,6.421447992324829102e-01,1.645800018310546875e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.760679244995117188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229201346635818481e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229201346635818481e-01,6.632862091064453125e-01,1.514999961853027344e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.680004501342773438e+01,2.908978462219238281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.150285542011260986e-01,6.470661759376525879e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.150285542011260986e-01,6.470661759376525879e-01,1.559799957275390625e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.228347702026367188e+02,2.551887929439544678e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.128966450691223145e-01,6.537171006202697754e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.128966450691223145e-01,6.537171006202697754e-01,1.527999973297119141e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.287878417968750000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.294200509786605835e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.294200509786605835e-01,6.639317870140075684e-01,1.398799991607666016e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.972427177429199219e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314385026693344116e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314385026693344116e-01,6.639317870140075684e-01,1.447399997711181641e+01,1.038000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.524839782714843750e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.278218418359756470e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.278218418359756470e-01,6.636090278625488281e-01,1.386999988555908203e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.030371856689453125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.288171797990798950e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.288171797990798950e-01,6.632862091064453125e-01,1.381599998474121094e+01,9.739999771118164062e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.250539779663085938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.410921305418014526e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.410921305418014526e-01,6.636090278625488281e-01,1.311200046539306641e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.361954498291015625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.340488731861114502e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.340488731861114502e-01,6.636090278625488281e-01,1.348400020599365234e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.903487205505371094e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351784408092498779e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351784408092498779e-01,6.639317870140075684e-01,1.398200035095214844e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.041162109375000000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.394642531871795654e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.394642531871795654e-01,6.639317870140075684e-01,1.393200016021728516e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.495892333984375000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289736270904541016e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.289736270904541016e-01,6.639317870140075684e-01,1.438799953460693359e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,1.062325134277343750e+02,2.198122888803482056e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.193436622619628906e-01,6.649687886238098145e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.193436622619628906e-01,6.649687886238098145e-01,1.483199977874755859e+01,9.100000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.131926727294921875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.303451448678970337e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.303451448678970337e-01,6.636090278625488281e-01,1.461999988555908203e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.915535163879394531e+01,2.355485260486602783e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212918102741241455e-01,6.572362184524536133e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212918102741241455e-01,6.572362184524536133e-01,1.486200046539306641e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.496846313476562500e+02,3.444072008132934570e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.151956111192703247e-01,6.478216648101806641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.151956111192703247e-01,6.478216648101806641e-01,1.456000041961669922e+01,1.035999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.015110778808593750e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.227337360382080078e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.227337360382080078e-01,6.632862091064453125e-01,1.582800006866455078e+01,1.092000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.229482269287109375e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.305056601762771606e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.305056601762771606e-01,6.632862091064453125e-01,1.484799957275390625e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.230662536621093750e+01,2.342955470085144043e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.138969153165817261e-01,6.565803289413452148e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.138969153165817261e-01,6.565803289413452148e-01,1.498200035095214844e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.277094650268554688e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.305753976106643677e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.305753976106643677e-01,6.642546057701110840e-01,1.485799980163574219e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.602539443969726562e+01,2.511489689350128174e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.138760983943939209e-01,6.521428227424621582e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.138760983943939209e-01,6.521428227424621582e-01,1.536200046539306641e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.571339035034179688e+01,2.867341041564941406e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.155617624521255493e-01,6.453977227210998535e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.155617624521255493e-01,6.453977227210998535e-01,1.508199977874755859e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.498396682739257812e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.324720174074172974e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.324720174074172974e-01,6.649001836776733398e-01,1.493599987030029297e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.456610870361328125e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.218980491161346436e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.218980491161346436e-01,6.632862091064453125e-01,1.477400016784667969e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.933923149108886719e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.306624650955200195e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.306624650955200195e-01,6.639317870140075684e-01,1.481400012969970703e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.918868637084960938e+01,4.935302138328552246e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.130466401576995850e-01,6.282591223716735840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.130466401576995850e-01,6.282591223716735840e-01,1.477999973297119141e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.205803298950195312e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.288370132446289062e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.288370132446289062e-01,6.636090278625488281e-01,1.492000007629394531e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.560186386108398438e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.291930317878723145e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.291930317878723145e-01,6.642546057701110840e-01,1.471399974822998047e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.980114173889160156e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.342066913843154907e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.342066913843154907e-01,6.632862091064453125e-01,1.449800014495849609e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.951477622985839844e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.254085093736648560e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.254085093736648560e-01,6.636090278625488281e-01,1.466399955749511719e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.153450393676757812e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.415105551481246948e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.415105551481246948e-01,6.636090278625488281e-01,1.447799968719482422e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.370100402832031250e+01,2.081893384456634521e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.330366820096969604e-01,6.701385378837585449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.330366820096969604e-01,6.701385378837585449e-01,1.517399978637695312e+01,9.380000114440917969e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,4.252615737915039062e+01,2.182737886905670166e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.188205868005752563e-01,6.622221469879150391e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.188205868005752563e-01,6.622221469879150391e-01,1.523400020599365234e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.571803283691406250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.249229848384857178e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.249229848384857178e-01,6.639317870140075684e-01,1.580799961090087891e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.697704315185546875e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.256794422864913940e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.256794422864913940e-01,6.649001836776733398e-01,1.598799991607666016e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.123661041259765625e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.270655632019042969e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.270655632019042969e-01,6.642546057701110840e-01,1.680800056457519531e+01,1.015999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.612101745605468750e+01,2.171204537153244019e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.218382656574249268e-01,6.681771278381347656e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.218382656574249268e-01,6.681771278381347656e-01,1.627199935913085938e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.690871429443359375e+01,2.954791784286499023e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149214893579483032e-01,6.442596912384033203e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.149214893579483032e-01,6.442596912384033203e-01,1.709000015258789062e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.844624710083007812e+01,2.678870260715484619e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.148763984441757202e-01,6.516886353492736816e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.148763984441757202e-01,6.516886353492736816e-01,1.638800048828125000e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.394453048706054688e+01,5.238564014434814453e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.098530977964401245e-01,6.179852485656738281e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.098530977964401245e-01,6.179852485656738281e-01,1.598200035095214844e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.414614486694335938e+01,2.163138985633850098e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.242148369550704956e-01,6.637083888053894043e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.242148369550704956e-01,6.637083888053894043e-01,1.549400043487548828e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.150462722778320312e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351834625005722046e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.351834625005722046e-01,6.639317870140075684e-01,1.496599960327148438e+01,1.039999961853027344e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.037563514709472656e+01,7.417336702346801758e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.049737870693206787e-01,5.924751758575439453e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.049737870693206787e-01,5.924751758575439453e-01,1.443599987030029297e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.964100646972656250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248739451169967651e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.248739451169967651e-01,6.639317870140075684e-01,1.392000007629394531e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.949334716796875000e+01,2.902538180351257324e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211217731237411499e-01,6.522023677825927734e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.211217731237411499e-01,6.522023677825927734e-01,1.326599979400634766e+01,1.043999958038330078e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.974184799194335938e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323894649744033813e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.323894649744033813e-01,6.649001836776733398e-01,1.324400043487548828e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.327311325073242188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.387745976448059082e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.387745976448059082e-01,6.632862091064453125e-01,1.307600021362304688e+01,9.439999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,2.917573356628417969e+01,2.081893384456634521e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.422945797443389893e-01,6.701385378837585449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.422945797443389893e-01,6.701385378837585449e-01,1.297799968719482422e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.956246757507324219e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.338075637817382812e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.338075637817382812e-01,6.636090278625488281e-01,1.268599987030029297e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.869050598144531250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.341489493846893311e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.341489493846893311e-01,6.636090278625488281e-01,1.276399993896484375e+01,9.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.390215301513671875e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.513478994369506836e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.513478994369506836e-01,6.636090278625488281e-01,1.273799991607666016e+01,9.300000190734863281e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.609585952758789062e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.461801916360855103e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.461801916360855103e-01,6.642546057701110840e-01,1.266600036621093750e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.937870025634765625e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.367172837257385254e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.367172837257385254e-01,6.636090278625488281e-01,1.369200038909912109e+01,9.979999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.181845664978027344e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.299317866563796997e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.299317866563796997e-01,6.636090278625488281e-01,1.290799999237060547e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.931981201171875000e+02,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.273505330085754395e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.273505330085754395e-01,6.636090278625488281e-01,1.329199981689453125e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.004416084289550781e+01,2.130901962518692017e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.393674701452255249e-01,6.640950441360473633e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.393674701452255249e-01,6.640950441360473633e-01,1.352799987792968750e+01,1.106000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.851955795288085938e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348759919404983521e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.348759919404983521e-01,6.639317870140075684e-01,1.372399997711181641e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.433390045166015625e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.262507379055023193e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.262507379055023193e-01,6.642546057701110840e-01,1.440999984741210938e+01,9.680000305175781250e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.422611846923828125e+02,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.313241213560104370e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.313241213560104370e-01,6.632862091064453125e-01,1.466199970245361328e+01,9.560000419616699219e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.975599670410156250e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208597809076309204e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.208597809076309204e-01,6.618710756301879883e-01,1.549600028991699219e+01,9.420000076293945312e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,9.902473449707031250e+01,2.160001546144485474e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229440510272979736e-01,6.615482568740844727e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.229440510272979736e-01,6.615482568740844727e-01,1.612800025939941406e+01,1.003999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.461822509765625000e+01,2.141983956098556519e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.214076071977615356e-01,6.627400517463684082e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.214076071977615356e-01,6.627400517463684082e-01,1.621199989318847656e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.634144210815429688e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.175309658050537109e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.175309658050537109e-01,6.632862091064453125e-01,1.645800018310546875e+01,9.319999694824218750e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.385084533691406250e+01,9.021868109703063965e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.993349194526672363e-01,5.779241919517517090e-01,9.736213684082031250e-01,6.632862091064453125e-01,1.993349194526672363e-01,5.779241919517517090e-01,1.758600044250488281e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.008150291442871094e+01,3.056868910789489746e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.121981978416442871e-01,6.427420973777770996e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.121981978416442871e-01,6.427420973777770996e-01,1.615600013732910156e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.149585914611816406e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293328791856765747e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.293328791856765747e-01,6.636090278625488281e-01,1.633200073242187500e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.576448440551757812e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230347990989685059e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.230347990989685059e-01,6.642546057701110840e-01,1.638800048828125000e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.668096923828125000e+01,2.199058085680007935e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.142257690429687500e-01,6.611652970314025879e-01,9.736213684082031250e-01,6.875880956649780273e-01,2.142257690429687500e-01,6.611652970314025879e-01,1.615600013732910156e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.230551910400390625e+01,2.081893384456634521e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.249342203140258789e-01,6.701385378837585449e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.249342203140258789e-01,6.701385378837585449e-01,1.634600067138671875e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.511665725708007812e+01,2.546838819980621338e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.117192745208740234e-01,6.519201397895812988e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.117192745208740234e-01,6.519201397895812988e-01,1.627199935913085938e+01,9.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,6.760332641601562500e+02,5.478591918945312500e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.051374167203903198e-01,6.164586544036865234e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.051374167203903198e-01,6.164586544036865234e-01,1.609000015258789062e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.037444305419921875e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.380374222993850708e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.380374222993850708e-01,6.642546057701110840e-01,1.576200008392333984e+01,1.103999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.216567230224609375e+01,2.149035632610321045e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.206546068191528320e-01,6.630628108978271484e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.206546068191528320e-01,6.630628108978271484e-01,1.589400005340576172e+01,1.077999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.609264373779296875e+01,2.202095538377761841e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.183217853307723999e-01,6.606436371803283691e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.183217853307723999e-01,6.606436371803283691e-01,1.543400001525878906e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.103452148437500000e+02,2.242260873317718506e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212322801351547241e-01,6.592640876770019531e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.212322801351547241e-01,6.592640876770019531e-01,1.474199962615966797e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.250120162963867188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.245950847864151001e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.245950847864151001e-01,6.632862091064453125e-01,1.420400047302246094e+01,1.106000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.664064025878906250e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.233989685773849487e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.233989685773849487e-01,6.642546057701110840e-01,1.436999988555908203e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.776055526733398438e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.391202598810195923e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.391202598810195923e-01,6.639317870140075684e-01,1.426200008392333984e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.397471237182617188e+01,2.149035632610321045e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.218219488859176636e-01,6.630628108978271484e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.218219488859176636e-01,6.630628108978271484e-01,1.503199958801269531e+01,1.177999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.205865097045898438e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.240450382232666016e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.240450382232666016e-01,6.642546057701110840e-01,1.394400024414062500e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.790842056274414062e+01,2.146702706813812256e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.205256521701812744e-01,6.646056771278381348e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.205256521701812744e-01,6.646056771278381348e-01,1.517199993133544922e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.558713912963867188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.276242971420288086e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.276242971420288086e-01,6.632862091064453125e-01,1.444999980926513672e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.125460243225097656e+01,2.138069719076156616e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314375787973403931e-01,6.645773649215698242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.314375787973403931e-01,6.645773649215698242e-01,1.515999984741210938e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.163711166381835938e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.390614748001098633e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.390614748001098633e-01,6.636090278625488281e-01,1.497599983215332031e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.389644622802734375e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.292150557041168213e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.292150557041168213e-01,6.636090278625488281e-01,1.488799953460693359e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.522423171997070312e+01,2.668428719043731689e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.130639702081680298e-01,6.481918692588806152e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.130639702081680298e-01,6.481918692588806152e-01,1.652599906921386719e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.334757614135742188e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.224780321121215820e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.224780321121215820e-01,6.639317870140075684e-01,1.577400016784667969e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.542302012443542480e-02,3.067255020141601562e+01,2.093905359506607056e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.227611243724822998e-01,6.685971617698669434e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.227611243724822998e-01,6.685971617698669434e-01,1.620000076293945312e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.804447937011718750e+01,2.234216481447219849e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.156420350074768066e-01,6.600974798202514648e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.156420350074768066e-01,6.600974798202514648e-01,1.667399978637695312e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.943592834472656250e+01,5.818128585815429688e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.079201638698577881e-01,6.119265556335449219e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.079201638698577881e-01,6.119265556335449219e-01,1.706999969482421875e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.036384582519531250e+01,5.689898729324340820e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.090329974889755249e-01,6.158753633499145508e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.090329974889755249e-01,6.158753633499145508e-01,1.742799949645996094e+01,1.053999996185302734e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.189256286621093750e+01,4.443357884883880615e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154283076524734497e-01,6.258047819137573242e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154283076524734497e-01,6.258047819137573242e-01,1.676799964904785156e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.512368011474609375e+01,2.809916138648986816e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.144075185060501099e-01,6.531192660331726074e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.144075185060501099e-01,6.531192660331726074e-01,1.602400016784667969e+01,1.026000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.222564315795898438e+01,2.167053222656250000e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.260241061449050903e-01,6.618710756301879883e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.260241061449050903e-01,6.618710756301879883e-01,1.502999973297119141e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.043471145629882812e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.300583273172378540e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.300583273172378540e-01,6.639317870140075684e-01,1.446199989318847656e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.208289337158203125e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.257644683122634888e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.257644683122634888e-01,6.642546057701110840e-01,1.414000034332275391e+01,9.619999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.902808570861816406e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.379516363143920898e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.379516363143920898e-01,6.642546057701110840e-01,1.409000015258789062e+01,1.081999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.028829002380371094e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.388899177312850952e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.388899177312850952e-01,6.642546057701110840e-01,1.308800029754638672e+01,9.979999542236328125e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.623030090332031250e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.494831681251525879e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.494831681251525879e-01,6.639317870140075684e-01,1.282600021362304688e+01,9.720000267028808594e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.694139289855957031e+01,2.135465741157531738e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.454293221235275269e-01,6.639408469200134277e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.454293221235275269e-01,6.639408469200134277e-01,1.345400047302246094e+01,1.034000015258789062e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,6.207550048828125000e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.346842885017395020e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.346842885017395020e-01,6.639317870140075684e-01,1.365600013732910156e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.757016944885253906e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.375558465719223022e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.375558465719223022e-01,6.632862091064453125e-01,1.300000000000000000e+01,1.068000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.542302012443542480e-02,3.215420532226562500e+01,2.086853682994842529e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.487783282995223999e-01,6.682744026184082031e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.487783282995223999e-01,6.682744026184082031e-01,1.397799968719482422e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.839252853393554688e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.537170350551605225e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.537170350551605225e-01,6.642546057701110840e-01,1.349400043487548828e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.248761367797851562e+01,2.269586175680160522e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.223119884729385376e-01,6.602634191513061523e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.223119884729385376e-01,6.602634191513061523e-01,1.380599975585937500e+01,9.579999923706054688e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.688020706176757812e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.422240227460861206e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.422240227460861206e-01,6.642546057701110840e-01,1.412800025939941406e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.315343093872070312e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.260946631431579590e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.260946631431579590e-01,6.639317870140075684e-01,1.420800018310546875e+01,1.010000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.022879791259765625e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.300529628992080688e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.300529628992080688e-01,6.632862091064453125e-01,1.450399971008300781e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,4.115891113281250000e+02,2.654843628406524658e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.227737605571746826e-01,6.568564772605895996e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.227737605571746826e-01,6.568564772605895996e-01,1.483800029754638672e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.675431132316589355e-01,3.151502037048339844e+01,2.101174294948577881e-01,9.736213684082031250e-01,7.149559259414672852e-01,2.247741371393203735e-01,6.643196344375610352e-01,9.736213684082031250e-01,7.149559259414672852e-01,2.247741371393203735e-01,6.643196344375610352e-01,1.610199928283691406e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,4.105167770385742188e+01,2.088945060968399048e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.367098778486251831e-01,6.704612970352172852e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.367098778486251831e-01,6.704612970352172852e-01,1.567199993133544922e+01,1.102000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.542302012443542480e-02,3.101577758789062500e+01,2.072750329971313477e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.318882346153259277e-01,6.676287651062011719e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.318882346153259277e-01,6.676287651062011719e-01,1.613400077819824219e+01,1.122000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.618309020996093750e+01,2.933935225009918213e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.154131978750228882e-01,6.531807780265808105e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.154131978750228882e-01,6.531807780265808105e-01,1.691399955749511719e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.532441711425781250e+01,2.199174016714096069e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.177018821239471436e-01,6.613248586654663086e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.177018821239471436e-01,6.613248586654663086e-01,1.656800079345703125e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.346064147949218750e+02,2.156087309122085571e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.201139628887176514e-01,6.633856296539306641e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.201139628887176514e-01,6.633856296539306641e-01,1.641200065612792969e+01,1.011999988555908203e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.174568176269531250e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.344854772090911865e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.344854772090911865e-01,6.636090278625488281e-01,1.578199958801269531e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.204785537719726562e+01,7.074770331382751465e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.048146575689315796e-01,5.988396406173706055e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.048146575689315796e-01,5.988396406173706055e-01,1.708200073242187500e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,4.995360946655273438e+01,7.333974838256835938e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.089311331510543823e-01,5.964135527610778809e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.089311331510543823e-01,5.964135527610778809e-01,1.598799991607666016e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.547436523437500000e+01,5.909181237220764160e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.064018845558166504e-01,6.132638454437255859e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.064018845558166504e-01,6.132638454437255859e-01,1.613999938964843750e+01,1.214000034332275391e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.280041122436523438e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.291980832815170288e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.291980832815170288e-01,6.639317870140075684e-01,1.623600006103515625e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.406901550292968750e+02,2.074841707944869995e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.340027540922164917e-01,6.698157191276550293e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.340027540922164917e-01,6.698157191276550293e-01,1.569999980926513672e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.118350848555564880e-01,4.858570480346679688e+01,2.104136049747467041e-01,9.736213684082031250e-01,7.351865768432617188e-01,2.414720952510833740e-01,6.653698086738586426e-01,9.736213684082031250e-01,7.351865768432617188e-01,2.414720952510833740e-01,6.653698086738586426e-01,1.547200012207031250e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.293741607666015625e+01,2.117035835981369019e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.440057396888732910e-01,6.715929508209228516e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.440057396888732910e-01,6.715929508209228516e-01,1.473799991607666016e+01,1.172000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,2.908815002441406250e+01,2.114581763744354248e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.315350025892257690e-01,6.651518940925598145e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.315350025892257690e-01,6.651518940925598145e-01,1.472999954223632812e+01,1.092000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.321052856445312500e+02,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.615652680397033691e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.615652680397033691e-01,6.642546057701110840e-01,1.402000045776367188e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.020231437683105469e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.359642386436462402e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.359642386436462402e-01,6.636090278625488281e-01,1.456999969482421875e+01,1.056000041961669922e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.083015060424804688e+01,2.131018042564392090e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.331814318895339966e-01,6.642546057701110840e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.331814318895339966e-01,6.642546057701110840e-01,1.437800025939941406e+01,9.779999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.897964286804199219e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.331312298774719238e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.331312298774719238e-01,6.639317870140075684e-01,1.487199974060058594e+01,9.600000381469726562e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.133298492431640625e+01,2.145121395587921143e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.308167517185211182e-01,6.649001836776733398e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.308167517185211182e-01,6.649001836776733398e-01,1.480599975585937500e+01,1.172000026702880859e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.756370162963867188e+01,2.109863013029098511e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.272664308547973633e-01,6.632862091064453125e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.272664308547973633e-01,6.632862091064453125e-01,1.471199989318847656e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.052631950378417969e+01,2.074841707944869995e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.340376079082489014e-01,6.698157191276550293e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.340376079082489014e-01,6.698157191276550293e-01,1.562600040435791016e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,3.098445320129394531e+01,2.095996737480163574e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.349311709403991699e-01,6.707841157913208008e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.349311709403991699e-01,6.707841157913208008e-01,1.639999961853027344e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,2.965509223937988281e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.279275506734848022e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.279275506734848022e-01,6.639317870140075684e-01,1.678400039672851562e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.878219604492187500e+01,2.378396689891815186e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.153296619653701782e-01,6.579827666282653809e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.153296619653701782e-01,6.579827666282653809e-01,1.625000000000000000e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.368759918212890625e+01,2.288340777158737183e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.265911996364593506e-01,6.588413715362548828e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.265911996364593506e-01,6.588413715362548828e-01,1.660199928283691406e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.288602066040039062e+01,2.185070663690567017e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.251070588827133179e-01,6.606792807579040527e-01,9.736213684082031250e-01,6.632862091064453125e-01,2.251070588827133179e-01,6.606792807579040527e-01,1.699600028991699219e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,2.043680877685546875e+02,6.629498600959777832e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.113148123025894165e-01,6.091883778572082520e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.113148123025894165e-01,6.091883778572082520e-01,1.701199913024902344e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,1.077363662719726562e+02,4.395125508308410645e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.134348452091217041e-01,6.237925291061401367e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.134348452091217041e-01,6.237925291061401367e-01,1.704400062561035156e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.809060668945312500e+01,2.137405723333358765e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.190094441175460815e-01,6.634157299995422363e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.190094441175460815e-01,6.634157299995422363e-01,1.623399925231933594e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,1.640635430812835693e-01,3.291495895385742188e+01,2.114581763744354248e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.239127606153488159e-01,6.651518940925598145e-01,9.736213684082031250e-01,7.242900729179382324e-01,2.239127606153488159e-01,6.651518940925598145e-01,1.512199974060058594e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.023267555236816406e+01,2.116914689540863037e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.229501157999038696e-01,6.636090278625488281e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.229501157999038696e-01,6.636090278625488281e-01,1.461999988555908203e+01,9.279999732971191406e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,6.215426255948841572e-04,2.717860794067382812e+01,2.240216881036758423e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.266601622104644775e-01,6.640641689300537109e-01,9.736213684082031250e-01,9.736213684082031250e-01,2.266601622104644775e-01,6.640641689300537109e-01,1.435599994659423828e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.394160079956054688e+01,2.453306764364242554e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154853790998458862e-01,6.547141075134277344e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.154853790998458862e-01,6.547141075134277344e-01,1.555000019073486328e+01,9.119999885559082031e+00,-1.000000000000000000e+00 -6.215426255948841572e-04,2.109863013029098511e-01,3.048529434204101562e+01,2.123966366052627563e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.287017703056335449e-01,6.639317870140075684e-01,9.736213684082031250e-01,6.794257760047912598e-01,2.287017703056335449e-01,6.639317870140075684e-01,1.451599979400634766e+01,1.060000038146972656e+01,-1.000000000000000000e+00 -6.215426255948841572e-04,2.542302012443542480e-02,3.032909774780273438e+01,2.100957036018371582e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.453502416610717773e-01,6.689199805259704590e-01,9.736213684082031250e-01,8.804143667221069336e-01,2.453502416610717773e-01,6.689199805259704590e-01,1.401799964904785156e+01,1.102000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.820736503601074219e+01,2.095872461795806885e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.323101907968521118e-01,6.713116765022277832e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.323101907968521118e-01,6.713116765022277832e-01,1.380000019073486328e+01,9.699999809265136719e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.057082557678222656e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.367090135812759399e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.367090135812759399e-01,6.639317870140075684e-01,1.460799980163574219e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.947308349609375000e+01,2.187724411487579346e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.255763858556747437e-01,6.620429158210754395e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.255763858556747437e-01,6.620429158210754395e-01,1.419400024414062500e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.102031135559082031e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.285855710506439209e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.285855710506439209e-01,6.642546057701110840e-01,1.451399993896484375e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.868774414062500000e+01,2.827753424644470215e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.175541371107101440e-01,6.459455490112304688e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.175541371107101440e-01,6.459455490112304688e-01,1.494200038909912109e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.013297462463378906e+01,2.220329046249389648e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.251586019992828369e-01,6.622932553291320801e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.251586019992828369e-01,6.622932553291320801e-01,1.428800010681152344e+01,9.279999732971191406e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.913788032531738281e+01,2.623721063137054443e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.217544317245483398e-01,6.512710452079772949e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.217544317245483398e-01,6.512710452079772949e-01,1.526799964904785156e+01,9.399999618530273438e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.925113487243652344e+01,2.065457105636596680e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.307155281305313110e-01,6.710358262062072754e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.307155281305313110e-01,6.710358262062072754e-01,1.458600044250488281e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,7.238809204101562500e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.261193245649337769e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.261193245649337769e-01,6.636090278625488281e-01,1.490999984741210938e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.690307617187500000e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.310565710067749023e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.310565710067749023e-01,6.636090278625488281e-01,1.482600021362304688e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,4.248485183715820312e+01,2.128569185733795166e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.265446782112121582e-01,6.656379103660583496e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.265446782112121582e-01,6.656379103660583496e-01,1.500199985504150391e+01,1.089999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.063822174072265625e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.398565411567687988e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.398565411567687988e-01,6.642546057701110840e-01,1.485799980163574219e+01,1.030000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,4.874145202636718750e+02,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.366573363542556763e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.366573363542556763e-01,6.642546057701110840e-01,1.589599990844726562e+01,9.840000152587890625e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,1.725798547267913818e-01,3.555656051635742188e+01,2.201465964317321777e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.214183658361434937e-01,6.612166166305541992e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.214183658361434937e-01,6.612166166305541992e-01,1.545400047302246094e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.438952636718750000e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.250361740589141846e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.250361740589141846e-01,6.636090278625488281e-01,1.614399909973144531e+01,1.047999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,5.098796844482421875e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.247925549745559692e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.247925549745559692e-01,6.642546057701110840e-01,1.671999931335449219e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.122409820556640625e+02,2.088945060968399048e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.343835830688476562e-01,6.704612970352172852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.343835830688476562e-01,6.704612970352172852e-01,1.680999946594238281e+01,1.096000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.760878372192382812e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.239582836627960205e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.239582836627960205e-01,6.636090278625488281e-01,1.758200073242187500e+01,1.002000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.643156433105468750e+01,2.202995568513870239e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.225527465343475342e-01,6.616050004959106445e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.225527465343475342e-01,6.616050004959106445e-01,1.740200042724609375e+01,1.031999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.670294189453125000e+01,2.272958010435104370e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.172063589096069336e-01,6.615652441978454590e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.172063589096069336e-01,6.615652441978454590e-01,1.794199943542480469e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,8.684489440917968750e+01,2.757589519023895264e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.093645781278610229e-01,6.488163471221923828e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.093645781278610229e-01,6.488163471221923828e-01,1.856200027465820312e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.475191497802734375e+01,3.989365398883819580e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.110721021890640259e-01,6.292897462844848633e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.110721021890640259e-01,6.292897462844848633e-01,1.765999984741210938e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,4.511977233886718750e+02,2.261350750923156738e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.175754010677337646e-01,6.597304940223693848e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.175754010677337646e-01,6.597304940223693848e-01,1.776000022888183594e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.702048492431640625e+01,2.206225693225860596e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.118549495935440063e-01,6.616476774215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.118549495935440063e-01,6.616476774215698242e-01,1.670199966430664062e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.142148399353027344e+01,6.336679458618164062e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.099090069532394409e-01,6.091451644897460938e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.099090069532394409e-01,6.091451644897460938e-01,1.662400054931640625e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.417956542968750000e+01,2.109863013029098511e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.307946979999542236e-01,6.632862091064453125e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.307946979999542236e-01,6.632862091064453125e-01,1.573400020599365234e+01,1.039999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.184133911132812500e+01,2.114581763744354248e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.255368679761886597e-01,6.651518940925598145e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.255368679761886597e-01,6.651518940925598145e-01,1.544999980926513672e+01,1.143999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.177131843566894531e+01,2.282289862632751465e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.253923267126083374e-01,6.578574776649475098e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.253923267126083374e-01,6.578574776649475098e-01,1.592000007629394531e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.838403511047363281e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.361676096916198730e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.361676096916198730e-01,6.639317870140075684e-01,1.455399990081787109e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.004788780212402344e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.393057644367218018e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.393057644367218018e-01,6.645773649215698242e-01,1.396800041198730469e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,1.257980468750000000e+03,2.167053222656250000e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.186622917652130127e-01,6.618710756301879883e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.186622917652130127e-01,6.618710756301879883e-01,1.438199996948242188e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.005311584472656250e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.399464100599288940e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.399464100599288940e-01,6.645773649215698242e-01,1.486800003051757812e+01,9.939999580383300781e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.775401878356933594e+01,2.152173072099685669e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.359232306480407715e-01,6.652230024337768555e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.359232306480407715e-01,6.652230024337768555e-01,1.442199993133544922e+01,1.085999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.221125793457031250e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.356566190719604492e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.356566190719604492e-01,6.707841157913208008e-01,1.398600006103515625e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.484702682495117188e+01,2.135736793279647827e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.365191280841827393e-01,6.661202907562255859e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.365191280841827393e-01,6.661202907562255859e-01,1.520600032806396484e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.040010070800781250e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.303905189037322998e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.303905189037322998e-01,6.645773649215698242e-01,1.527000045776367188e+01,1.106000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.339817810058593750e+01,3.040792644023895264e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.175046950578689575e-01,6.476593613624572754e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.175046950578689575e-01,6.476593613624572754e-01,1.521800041198730469e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.320440673828125000e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.242040932178497314e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.242040932178497314e-01,6.707841157913208008e-01,1.533399963378906250e+01,9.899999618530273438e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,4.086832809448242188e+01,2.240267395973205566e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.190065830945968628e-01,6.610813140869140625e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.190065830945968628e-01,6.610813140869140625e-01,1.556999969482421875e+01,1.231999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.547595214843750000e+02,5.202227234840393066e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.077798694372177124e-01,6.225774884223937988e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.077798694372177124e-01,6.225774884223937988e-01,1.594600009918212891e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.978366470336914062e+01,6.100007295608520508e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.083785831928253174e-01,6.075242161750793457e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.083785831928253174e-01,6.075242161750793457e-01,1.610000038146972656e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.542302012443542480e-02,3.505981063842773438e+01,2.187986969947814941e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.247449457645416260e-01,6.636152267456054688e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.247449457645416260e-01,6.636152267456054688e-01,1.531599998474121094e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.906787681579589844e+01,2.065694332122802734e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.461840659379959106e-01,6.791792511940002441e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.461840659379959106e-01,6.791792511940002441e-01,1.546800041198730469e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.813364601135253906e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.430273741483688354e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.430273741483688354e-01,6.642546057701110840e-01,1.511400032043457031e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.508711242675781250e+01,2.128685116767883301e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.588737308979034424e-01,6.657974720001220703e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.588737308979034424e-01,6.657974720001220703e-01,1.506400012969970703e+01,1.050000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.229096984863281250e+01,2.139083594083786011e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.251992225646972656e-01,6.687233448028564453e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.251992225646972656e-01,6.687233448028564453e-01,1.564000034332275391e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.735517120361328125e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.360769063234329224e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.360769063234329224e-01,6.645773649215698242e-01,1.616600036621093750e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,5.137332916259765625e+01,2.121633440256118774e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.483634799718856812e-01,6.654746532440185547e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.483634799718856812e-01,6.654746532440185547e-01,1.571599960327148438e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.807148437500000000e+02,2.135736793279647827e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.417414933443069458e-01,6.661202907562255859e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.417414933443069458e-01,6.661202907562255859e-01,1.496399974822998047e+01,1.088000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.035498809814453125e+01,2.100715488195419312e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.326051592826843262e-01,6.726497411727905273e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.326051592826843262e-01,6.726497411727905273e-01,1.610000038146972656e+01,1.103999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.542302012443542480e-02,2.862320899963378906e+01,2.100957036018371582e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.476762235164642334e-01,6.689199805259704590e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.476762235164642334e-01,6.689199805259704590e-01,1.636400032043457031e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.116213989257812500e+01,2.109863013029098511e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.316514700651168823e-01,6.632862091064453125e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.316514700651168823e-01,6.632862091064453125e-01,1.712999916076660156e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.201366043090820312e+01,2.152173072099685669e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.402156442403793335e-01,6.652230024337768555e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.402156442403793335e-01,6.652230024337768555e-01,1.684000015258789062e+01,1.192000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.014879798889160156e+01,2.116914689540863037e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.245527356863021851e-01,6.636090278625488281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.245527356863021851e-01,6.636090278625488281e-01,1.754199981689453125e+01,1.007999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.388626098632812500e+01,2.144676446914672852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.234471589326858521e-01,6.677019000053405762e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.234471589326858521e-01,6.677019000053405762e-01,1.833399963378906250e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.101487159729003906e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.404777407646179199e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.404777407646179199e-01,6.645773649215698242e-01,1.744400024414062500e+01,1.192000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.400045623779296875e+02,2.341209053993225098e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.197491675615310669e-01,6.717273592948913574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.197491675615310669e-01,6.717273592948913574e-01,1.895400047302246094e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.344964294433593750e+02,4.643504321575164795e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.093997895717620850e-01,6.281454563140869141e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.093997895717620850e-01,6.281454563140869141e-01,1.946599960327148438e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,4.384451293945312500e+01,2.156891822814941406e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.252031415700912476e-01,6.670886278152465820e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.252031415700912476e-01,6.670886278152465820e-01,1.781999969482421875e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.265144348144531250e+01,2.108204364776611328e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.214086204767227173e-01,6.686451435089111328e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.214086204767227173e-01,6.686451435089111328e-01,1.840600013732910156e+01,1.230000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.930998229980468750e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.271919250488281250e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.271919250488281250e-01,6.639317870140075684e-01,1.828199958801269531e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.312750244140625000e+01,2.128685116767883301e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.344204336404800415e-01,6.657974720001220703e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.344204336404800415e-01,6.657974720001220703e-01,1.774200057983398438e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.542302012443542480e-02,6.982088470458984375e+01,6.903078556060791016e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.068100273609161377e-01,6.038878560066223145e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.068100273609161377e-01,6.038878560066223145e-01,1.844000053405761719e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.663879776000976562e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.225635945796966553e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.225635945796966553e-01,6.645773649215698242e-01,1.684199905395507812e+01,1.142000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.223107528686523438e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.243368029594421387e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.243368029594421387e-01,6.645773649215698242e-01,1.738800048828125000e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.132119750976562500e+01,2.911948859691619873e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.122379243373870850e-01,6.510118246078491211e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.122379243373870850e-01,6.510118246078491211e-01,1.707200050354003906e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.295088577270507812e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.269755303859710693e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.269755303859710693e-01,6.639317870140075684e-01,1.681399917602539062e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.467889404296875000e+01,4.362501800060272217e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.141411602497100830e-01,6.245172023773193359e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.141411602497100830e-01,6.245172023773193359e-01,1.617399978637695312e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.988872909545898438e+01,2.206225693225860596e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.226589620113372803e-01,6.616476774215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.226589620113372803e-01,6.616476774215698242e-01,1.577200031280517578e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.249475479125976562e+01,3.680148124694824219e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.160389870405197144e-01,6.372962594032287598e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.160389870405197144e-01,6.372962594032287598e-01,1.585200023651123047e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.979682350158691406e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.535524666309356689e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.535524666309356689e-01,6.639317870140075684e-01,1.442199993133544922e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.648825073242187500e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.349653244018554688e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.349653244018554688e-01,6.639317870140075684e-01,1.506599998474121094e+01,1.064000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.330925750732421875e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.424906790256500244e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.424906790256500244e-01,6.642546057701110840e-01,1.513399982452392578e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.643612533807754517e-01,2.982900428771972656e+01,2.115945518016815186e-01,1.000000000000000000e+00,7.158801555633544922e-01,2.416391372680664062e-01,6.663200855255126953e-01,1.000000000000000000e+00,7.158801555633544922e-01,2.416391372680664062e-01,6.663200855255126953e-01,1.414999961853027344e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.893481636047363281e+01,2.110100090503692627e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.475888878107070923e-01,6.714296936988830566e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.475888878107070923e-01,6.714296936988830566e-01,1.481200027465820312e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.669193267822265625e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.336758524179458618e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.336758524179458618e-01,6.707841157913208008e-01,1.497999954223632812e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.213299560546875000e+01,2.088945060968399048e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.383262962102890015e-01,6.704612970352172852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.383262962102890015e-01,6.704612970352172852e-01,1.499600028991699219e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.631146621704101562e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.345207929611206055e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.345207929611206055e-01,6.642546057701110840e-01,1.516800022125244141e+01,1.119999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.161237335205078125e+01,2.093547880649566650e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.323555648326873779e-01,6.721674203872680664e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.323555648326873779e-01,6.721674203872680664e-01,1.516800022125244141e+01,1.014000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.671485328674316406e+01,2.134932279586791992e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.368280291557312012e-01,6.624172329902648926e-01,1.000000000000000000e+00,6.632862091064453125e-01,2.368280291557312012e-01,6.624172329902648926e-01,1.533600044250488281e+01,9.819999694824218750e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,1.097325439453125000e+02,2.018293887376785278e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.397813647985458374e-01,6.851841807365417480e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.397813647985458374e-01,6.851841807365417480e-01,1.564799976348876953e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.757572937011718750e+01,2.128569185733795166e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.332122027873992920e-01,6.656379103660583496e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.332122027873992920e-01,6.656379103660583496e-01,1.602199935913085938e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.039036621093750000e+03,5.261510610580444336e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.155492454767227173e-01,6.312972307205200195e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.155492454767227173e-01,6.312972307205200195e-01,1.729800033569335938e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,1.870137939453125000e+03,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.373868077993392944e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.373868077993392944e-01,6.645773649215698242e-01,1.676600074768066406e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.381063842773437500e+01,2.074962854385375977e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.262950241565704346e-01,6.777996420860290527e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.262950241565704346e-01,6.777996420860290527e-01,1.670000076293945312e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,3.287497711181640625e+01,4.366948604583740234e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.124535143375396729e-01,6.311015486717224121e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.124535143375396729e-01,6.311015486717224121e-01,1.788400077819824219e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.346549224853515625e+01,2.131018042564392090e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.306546270847320557e-01,6.642546057701110840e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.306546270847320557e-01,6.642546057701110840e-01,1.718600082397460938e+01,1.026000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.996018600463867188e+01,2.705722451210021973e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.263968586921691895e-01,6.514440774917602539e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.263968586921691895e-01,6.514440774917602539e-01,1.718799972534179688e+01,1.177999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,6.408719635009765625e+01,2.088945060968399048e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.351988852024078369e-01,6.704612970352172852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.351988852024078369e-01,6.704612970352172852e-01,1.758600044250488281e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.930906677246093750e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.347100377082824707e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.347100377082824707e-01,6.707841157913208008e-01,1.785600090026855469e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.149155616760253906e+01,2.100775092840194702e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.320406287908554077e-01,6.724815368652343750e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.320406287908554077e-01,6.724815368652343750e-01,1.725799942016601562e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,4.607188415527343750e+01,2.844159901142120361e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.198745906352996826e-01,6.471698284149169922e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.198745906352996826e-01,6.471698284149169922e-01,1.713599967956542969e+01,1.185999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.583816909790039062e+01,2.277377098798751831e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.269836962223052979e-01,6.658264398574829102e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.269836962223052979e-01,6.658264398574829102e-01,1.723999977111816406e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.781473350524902344e+01,4.506974816322326660e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.212917804718017578e-01,6.180035471916198730e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.212917804718017578e-01,6.180035471916198730e-01,1.782999992370605469e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.715963363647460938e+01,2.074841707944869995e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.514455914497375488e-01,6.698157191276550293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.514455914497375488e-01,6.698157191276550293e-01,1.623399925231933594e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.511714935302734375e+01,2.074841707944869995e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.286810576915740967e-01,6.698157191276550293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.286810576915740967e-01,6.698157191276550293e-01,1.624600028991699219e+01,1.218000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.388305664062500000e+01,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.490132004022598267e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.490132004022598267e-01,6.655457615852355957e-01,1.582400035858154297e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.600436019897460938e+01,2.063124328851699829e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.367987781763076782e-01,6.725786924362182617e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.367987781763076782e-01,6.725786924362182617e-01,1.553800010681152344e+01,1.327999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.278634262084960938e+01,2.072508782148361206e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.316827476024627686e-01,6.713585853576660156e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.316827476024627686e-01,6.713585853576660156e-01,1.632600021362304688e+01,1.214000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.946248245239257812e+01,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.380175888538360596e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.380175888538360596e-01,6.655457615852355957e-01,1.592800045013427734e+01,1.189999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.222984166815876961e-03,6.011787796020507812e+01,2.106020748615264893e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.353843897581100464e-01,6.701561808586120605e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.353843897581100464e-01,6.701561808586120605e-01,1.639399909973144531e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,4.689992904663085938e+01,2.128685116767883301e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.399093359708786011e-01,6.657974720001220703e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.399093359708786011e-01,6.657974720001220703e-01,1.588000011444091797e+01,1.042000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.870165252685546875e+01,2.291480749845504761e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.295666933059692383e-01,6.686201691627502441e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.295666933059692383e-01,6.686201691627502441e-01,1.610600090026855469e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.388282012939453125e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.261019945144653320e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.261019945144653320e-01,6.645773649215698242e-01,1.561400032043457031e+01,1.052000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.702390335500240326e-03,3.185653686523437500e+01,2.094680070877075195e-01,1.000000000000000000e+00,9.236990809440612793e-01,2.359538674354553223e-01,6.713285446166992188e-01,1.000000000000000000e+00,9.236990809440612793e-01,2.359538674354553223e-01,6.713285446166992188e-01,1.596599960327148438e+01,1.103999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.357189863920211792e-01,3.006529235839843750e+01,2.083092033863067627e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.369227409362792969e-01,6.671521663665771484e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.369227409362792969e-01,6.671521663665771484e-01,1.655400085449218750e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.019268989562988281e+01,3.874478042125701904e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.200963646173477173e-01,6.308914422988891602e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.200963646173477173e-01,6.308914422988891602e-01,1.733600044250488281e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.057822608947753906e+01,3.253263831138610840e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.214637398719787598e-01,6.523570418357849121e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.214637398719787598e-01,6.523570418357849121e-01,1.630800056457519531e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.319317245483398438e+01,5.734674334526062012e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.108965814113616943e-01,6.124495267868041992e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.108965814113616943e-01,6.124495267868041992e-01,1.757799911499023438e+01,1.168000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.106404304504394531e+01,2.136750668287277222e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.315863072872161865e-01,6.702662110328674316e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.315863072872161865e-01,6.702662110328674316e-01,1.720800018310546875e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.536320877075195312e+01,2.137953639030456543e-01,1.000000000000000000e+00,6.875880956649780273e-01,2.273160815238952637e-01,6.644178628921508789e-01,1.000000000000000000e+00,6.875880956649780273e-01,2.273160815238952637e-01,6.644178628921508789e-01,1.640800094604492188e+01,1.061999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.542302012443542480e-02,2.888737678527832031e+01,2.105559855699539185e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.350783795118331909e-01,6.706260442733764648e-01,1.000000000000000000e+00,8.804143667221069336e-01,2.350783795118331909e-01,6.706260442733764648e-01,1.580399990081787109e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.751085472106933594e+01,2.074841707944869995e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.395089715719223022e-01,6.698157191276550293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.395089715719223022e-01,6.698157191276550293e-01,1.607999992370605469e+01,1.111999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,9.388630837202072144e-02,2.885940933227539062e+01,2.119368463754653931e-01,1.000000000000000000e+00,7.675763368606567383e-01,2.380332946777343750e-01,6.685288548469543457e-01,1.000000000000000000e+00,7.675763368606567383e-01,2.380332946777343750e-01,6.685288548469543457e-01,1.551599979400634766e+01,1.202000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.859599494934082031e+01,2.135736793279647827e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.304047197103500366e-01,6.661202907562255859e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.304047197103500366e-01,6.661202907562255859e-01,1.603800010681152344e+01,1.176000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.825832557678222656e+01,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.329143583774566650e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.329143583774566650e-01,6.655457615852355957e-01,1.542000007629394531e+01,1.057999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.777289581298828125e+01,2.246540486812591553e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.326800525188446045e-01,6.656515598297119141e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.326800525188446045e-01,6.656515598297119141e-01,1.656800079345703125e+01,1.218000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,2.894980430603027344e+01,2.095566540956497192e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.431157976388931274e-01,6.684805154800415039e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.431157976388931274e-01,6.684805154800415039e-01,1.660400009155273438e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.980543708801269531e+01,2.138069719076156616e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.388322055339813232e-01,6.645773649215698242e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.388322055339813232e-01,6.645773649215698242e-01,1.675600051879882812e+01,1.131999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.230981063842773438e+01,2.121633440256118774e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.293259352445602417e-01,6.654746532440185547e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.293259352445602417e-01,6.654746532440185547e-01,1.787800025939941406e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.577276992797851562e+01,2.640281617641448975e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.271886914968490601e-01,6.695065498352050781e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.271886914968490601e-01,6.695065498352050781e-01,1.739800071716308594e+01,1.097999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.111502265930175781e+01,2.166276425123214722e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.294294536113739014e-01,6.658685803413391113e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.294294536113739014e-01,6.658685803413391113e-01,1.768199920654296875e+01,1.143999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,5.094724609375000000e+03,2.477826327085494995e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.235292494297027588e-01,6.560330986976623535e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.235292494297027588e-01,6.560330986976623535e-01,1.740600013732910156e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.467177963256835938e+01,2.152144014835357666e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.270541489124298096e-01,6.650493741035461426e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.270541489124298096e-01,6.650493741035461426e-01,1.860400009155273438e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.337113142013549805e-02,2.934898567199707031e+01,2.239853739738464355e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.234683185815811157e-01,6.647884845733642578e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.234683185815811157e-01,6.647884845733642578e-01,1.747400093078613281e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.882730916142463684e-02,2.865927505493164062e+01,5.554612874984741211e-01,1.000000000000000000e+00,8.336168527603149414e-01,2.170159518718719482e-01,6.195567846298217773e-01,1.000000000000000000e+00,8.336168527603149414e-01,2.170159518718719482e-01,6.195567846298217773e-01,1.802400016784667969e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.280196762084960938e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.313640266656875610e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.313640266656875610e-01,6.639317870140075684e-01,1.640999984741210938e+01,1.131999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,9.389044189453125000e+01,3.109448850154876709e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.166542857885360718e-01,6.471437811851501465e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.166542857885360718e-01,6.471437811851501465e-01,1.727000045776367188e+01,1.276000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.869842338562011719e+01,2.115823477506637573e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.564670145511627197e-01,6.731620430946350098e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.564670145511627197e-01,6.731620430946350098e-01,1.599600028991699219e+01,1.176000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,3.466506195068359375e+01,2.123966366052627563e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.425059974193572998e-01,6.639317870140075684e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.425059974193572998e-01,6.639317870140075684e-01,1.586200046539306641e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.086945152282714844e+01,2.356947660446166992e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.285630553960800171e-01,6.643723845481872559e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.285630553960800171e-01,6.643723845481872559e-01,1.625600051879882812e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.391537857055664062e+01,2.095996737480163574e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.297295182943344116e-01,6.707841157913208008e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.297295182943344116e-01,6.707841157913208008e-01,1.626600074768066406e+01,1.027999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.508297729492187500e+02,2.539809048175811768e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.313767671585083008e-01,6.642733812332153320e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.313767671585083008e-01,6.642733812332153320e-01,1.711199951171875000e+01,1.156000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.591123390197753906e+01,2.075078785419464111e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.506061494350433350e-01,6.779591441154479980e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.506061494350433350e-01,6.779591441154479980e-01,1.610400009155273438e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.501399230957031250e+01,2.042082101106643677e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.503778934478759766e-01,6.802813410758972168e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.503778934478759766e-01,6.802813410758972168e-01,1.637400054931640625e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.650814247131347656e+01,2.117151767015457153e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.402946054935455322e-01,6.717524528503417969e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.402946054935455322e-01,6.717524528503417969e-01,1.554199981689453125e+01,9.560000419616699219e+00,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,1.314329833984375000e+03,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.337278574705123901e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.337278574705123901e-01,6.655457615852355957e-01,1.588599967956542969e+01,1.053999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.815468406677246094e+01,2.159108668565750122e-01,1.000000000000000000e+00,6.875880956649780273e-01,2.405003011226654053e-01,6.653861999511718750e-01,1.000000000000000000e+00,6.875880956649780273e-01,2.405003011226654053e-01,6.653861999511718750e-01,1.720999908447265625e+01,1.115999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.986636504530906677e-02,2.727753448486328125e+01,7.023237943649291992e-01,1.000000000000000000e+00,7.917028069496154785e-01,2.157158553600311279e-01,5.981681346893310547e-01,1.000000000000000000e+00,7.917028069496154785e-01,2.157158553600311279e-01,5.981681346893310547e-01,1.676799964904785156e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.066228675842285156e+01,2.109158784151077271e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.361432611942291260e-01,6.738942861557006836e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.361432611942291260e-01,6.738942861557006836e-01,1.709199905395507812e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.734188270568847656e+01,2.459410429000854492e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.308336198329925537e-01,6.557812690734863281e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.308336198329925537e-01,6.557812690734863281e-01,1.694599914550781250e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.973799133300781250e+01,2.540789544582366943e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.307760119438171387e-01,6.554061174392700195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.307760119438171387e-01,6.554061174392700195e-01,1.715600013732910156e+01,1.268000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.253862792968750000e+03,2.053923755884170532e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.357838153839111328e-01,6.769908070564270020e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.357838153839111328e-01,6.769908070564270020e-01,1.675799942016601562e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.597238159179687500e+01,2.093547880649566650e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440033406019210815e-01,6.721674203872680664e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440033406019210815e-01,6.721674203872680664e-01,1.662199974060058594e+01,1.292000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.247941589355468750e+01,2.095046639442443848e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.359991371631622314e-01,6.725326776504516602e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.359991371631622314e-01,6.725326776504516602e-01,1.655200004577636719e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.421025848388671875e+01,2.103048413991928101e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.358900606632232666e-01,6.711068749427795410e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.358900606632232666e-01,6.711068749427795410e-01,1.746400070190429688e+01,1.219999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.118843231201171875e+02,3.147903978824615479e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.262786477804183960e-01,6.448209285736083984e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.262786477804183960e-01,6.448209285736083984e-01,1.699600028991699219e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.378589782714843750e+02,2.066812515258789062e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.437592297792434692e-01,6.787285804748535156e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.437592297792434692e-01,6.787285804748535156e-01,1.762800025939941406e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.643612533807754517e-01,2.999518203735351562e+01,2.243329137563705444e-01,1.000000000000000000e+00,7.158801555633544922e-01,2.336105257272720337e-01,6.628293991088867188e-01,1.000000000000000000e+00,7.158801555633544922e-01,2.336105257272720337e-01,6.628293991088867188e-01,1.796999931335449219e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.947094917297363281e+01,2.030015289783477783e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.415097206830978394e-01,6.780644655227661133e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.415097206830978394e-01,6.780644655227661133e-01,1.821999931335449219e+01,1.293999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.337113142013549805e-02,3.646772003173828125e+01,2.352076172828674316e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.298027426004409790e-01,6.635736823081970215e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.298027426004409790e-01,6.635736823081970215e-01,1.816399955749511719e+01,1.303999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.140053939819335938e+01,2.018770128488540649e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.367855757474899292e-01,6.778146624565124512e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.367855757474899292e-01,6.778146624565124512e-01,1.799399948120117188e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.936230468750000000e+01,2.034453302621841431e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.396032512187957764e-01,6.797783970832824707e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.396032512187957764e-01,6.797783970832824707e-01,1.847200012207031250e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.281717300415039062e+01,2.071313410997390747e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.308809459209442139e-01,6.766769289970397949e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.308809459209442139e-01,6.766769289970397949e-01,1.864999961853027344e+01,1.193999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.893837928771972656e+01,2.100477218627929688e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.332455217838287354e-01,6.734810471534729004e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.332455217838287354e-01,6.734810471534729004e-01,1.841600036621093750e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.126813888549804688e+01,2.104062288999557495e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.314805090427398682e-01,6.752528548240661621e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.314805090427398682e-01,6.752528548240661621e-01,1.889999961853027344e+01,1.188000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,4.184457015991210938e+01,4.048413336277008057e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.218056917190551758e-01,6.278631687164306641e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.218056917190551758e-01,6.278631687164306641e-01,1.890200042724609375e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.436377334594726562e+01,4.265233874320983887e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.213527858257293701e-01,6.184183359146118164e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.213527858257293701e-01,6.184183359146118164e-01,1.949799919128417969e+01,1.492000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.306588363647460938e+01,1.998598873615264893e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.423006594181060791e-01,6.833836436271667480e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.423006594181060791e-01,6.833836436271667480e-01,1.929000091552734375e+01,1.406000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.862531471252441406e+01,2.573359608650207520e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.309242337942123413e-01,6.646639108657836914e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.309242337942123413e-01,6.646639108657836914e-01,1.895199966430664062e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.029289245605468750e+01,3.719488978385925293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.245538979768753052e-01,6.513236761093139648e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.245538979768753052e-01,6.513236761093139648e-01,1.852000045776367188e+01,1.284000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.222984166815876961e-03,2.878455734252929688e+01,2.816537618637084961e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.294747382402420044e-01,6.531065702438354492e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.294747382402420044e-01,6.531065702438354492e-01,1.789200019836425781e+01,1.153999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.914068603515625000e+01,2.107137888669967651e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.370181232690811157e-01,6.678071022033691406e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.370181232690811157e-01,6.678071022033691406e-01,1.731599998474121094e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.616039085388183594e+01,2.159224748611450195e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.372721284627914429e-01,6.655457615852355957e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.372721284627914429e-01,6.655457615852355957e-01,1.665200042724609375e+01,1.230000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.613982963562011719e+01,2.064342349767684937e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565861642360687256e-01,6.749523282051086426e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565861642360687256e-01,6.749523282051086426e-01,1.641200065612792969e+01,1.168000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.052454131901198916e-32,3.016667938232421875e+01,2.082006186246871948e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.516136765480041504e-01,6.788095235824584961e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.516136765480041504e-01,6.788095235824584961e-01,1.617600059509277344e+01,1.185999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,3.482133178710937500e+02,2.152059674263000488e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.521973550319671631e-01,6.691786646842956543e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.521973550319671631e-01,6.691786646842956543e-01,1.603400039672851562e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.557250404357910156e+01,2.055357694625854492e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.459956407546997070e-01,6.788567900657653809e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.459956407546997070e-01,6.788567900657653809e-01,1.676600074768066406e+01,1.147999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.552286529541015625e+01,2.093648910522460938e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.568139731884002686e-01,6.758196949958801270e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.568139731884002686e-01,6.758196949958801270e-01,1.626799964904785156e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.654358291625976562e+01,2.060904204845428467e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.580886781215667725e-01,6.827925443649291992e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.580886781215667725e-01,6.827925443649291992e-01,1.682600021362304688e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.587454605102539062e+01,2.052595466375350952e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440549731254577637e-01,6.784003376960754395e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440549731254577637e-01,6.784003376960754395e-01,1.675799942016601562e+01,1.268000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.552155876159667969e+01,2.203765064477920532e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.549099624156951904e-01,6.665259003639221191e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.549099624156951904e-01,6.665259003639221191e-01,1.752199935913085938e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.990701934322714806e-03,3.183002471923828125e+01,2.084268927574157715e-01,1.000000000000000000e+00,9.459328055381774902e-01,2.420680969953536987e-01,6.741295456886291504e-01,1.000000000000000000e+00,9.459328055381774902e-01,2.420680969953536987e-01,6.741295456886291504e-01,1.845199966430664062e+01,1.307999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.644465255737304688e+01,2.176257669925689697e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.370645999908447266e-01,6.812971830368041992e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.370645999908447266e-01,6.812971830368041992e-01,1.919400024414062500e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.257694065570831299e-01,3.527956771850585938e+01,2.097591459751129150e-01,1.000000000000000000e+00,7.658076286315917969e-01,2.446160167455673218e-01,6.721537113189697266e-01,1.000000000000000000e+00,7.658076286315917969e-01,2.446160167455673218e-01,6.721537113189697266e-01,1.943199920654296875e+01,1.393999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.495086669921875000e+01,4.481541514396667480e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.182883173227310181e-01,6.336382031440734863e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.182883173227310181e-01,6.336382031440734863e-01,2.119000053405761719e+01,1.604000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,7.579712569713592529e-02,2.843451881408691406e+01,3.822562098503112793e-01,1.000000000000000000e+00,7.764586806297302246e-01,2.278445512056350708e-01,6.321094036102294922e-01,1.000000000000000000e+00,7.764586806297302246e-01,2.278445512056350708e-01,6.321094036102294922e-01,2.164999961853027344e+01,1.726000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.929745101928710938e+01,2.315325140953063965e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.340256720781326294e-01,6.723936200141906738e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.340256720781326294e-01,6.723936200141906738e-01,2.150399971008300781e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.549041748046875000e+02,3.964714109897613525e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.268827408552169800e-01,6.342055201530456543e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.268827408552169800e-01,6.342055201530456543e-01,2.040399932861328125e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.677093887329101562e+01,2.544285655021667480e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.372017353773117065e-01,6.671537160873413086e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.372017353773117065e-01,6.671537160873413086e-01,2.046400070190429688e+01,1.269999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.776398849487304688e+01,2.233717143535614014e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.403659820556640625e-01,6.736893653869628906e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.403659820556640625e-01,6.736893653869628906e-01,2.013599967956542969e+01,1.510000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.696296501159667969e+01,2.001366913318634033e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.504665851593017578e-01,6.818563342094421387e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.504665851593017578e-01,6.818563342094421387e-01,1.933799934387207031e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.075802993774414062e+01,2.105109244585037231e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.446223944425582886e-01,6.850640177726745605e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.446223944425582886e-01,6.850640177726745605e-01,1.886599922180175781e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.975730133056640625e+01,3.577319681644439697e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.377711236476898193e-01,6.461546421051025391e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.377711236476898193e-01,6.461546421051025391e-01,1.818199920654296875e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.479793739318847656e+01,2.550404071807861328e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.470009326934814453e-01,6.675612926483154297e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.470009326934814453e-01,6.675612926483154297e-01,1.722400093078613281e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.208369827270507812e+01,2.055267542600631714e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.642133831977844238e-01,6.769531965255737305e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.642133831977844238e-01,6.769531965255737305e-01,1.667799949645996094e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.184647178649902344e+01,1.974769681692123413e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.628732025623321533e-01,6.835024356842041016e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.628732025623321533e-01,6.835024356842041016e-01,1.670999908447265625e+01,1.168000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.331375122070312500e+01,2.076161503791809082e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.621643543243408203e-01,6.748132705688476562e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.621643543243408203e-01,6.748132705688476562e-01,1.652000045776367188e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.157362836513978307e-32,7.639243774414062500e+02,2.099421471357345581e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.605722248554229736e-01,6.794806718826293945e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.605722248554229736e-01,6.794806718826293945e-01,1.691399955749511719e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.677590560913085938e+01,2.127933651208877563e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.568765282630920410e-01,6.670458316802978516e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.568765282630920410e-01,6.670458316802978516e-01,1.672599983215332031e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.542533493041992188e+01,1.974934786558151245e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.618940770626068115e-01,6.979661583900451660e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.618940770626068115e-01,6.979661583900451660e-01,1.802799987792968750e+01,1.377999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.523757743835449219e+01,2.043073177337646484e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629465758800506592e-01,6.789517402648925781e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629465758800506592e-01,6.789517402648925781e-01,1.788400077819824219e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.091280937194824219e+01,2.029010802507400513e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.695012986660003662e-01,6.834940910339355469e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.695012986660003662e-01,6.834940910339355469e-01,1.814399909973144531e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.706209689378738403e-02,2.551213836669921875e+01,2.092783302068710327e-01,1.000000000000000000e+00,8.511508107185363770e-01,2.528682649135589600e-01,6.742988824844360352e-01,1.000000000000000000e+00,8.511508107185363770e-01,2.528682649135589600e-01,6.742988824844360352e-01,1.915399932861328125e+01,1.477999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.737831306457519531e+01,2.031636238098144531e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.598058283329010010e-01,6.790094971656799316e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.598058283329010010e-01,6.790094971656799316e-01,1.951799964904785156e+01,1.247999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.009802818298339844e+01,2.005535662174224854e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.530204951763153076e-01,6.866278648376464844e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.530204951763153076e-01,6.866278648376464844e-01,1.972800064086914062e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.032221923828125000e+03,2.605173885822296143e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.408908456563949585e-01,6.593622565269470215e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.408908456563949585e-01,6.593622565269470215e-01,2.180599975585937500e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.673273468017578125e+01,2.064561694860458374e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.456376254558563232e-01,6.827380061149597168e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.456376254558563232e-01,6.827380061149597168e-01,2.141799926757812500e+01,1.381999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.238286972045898438e+01,4.309421777725219727e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.206939309835433960e-01,6.338387727737426758e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.206939309835433960e-01,6.338387727737426758e-01,2.228599929809570312e+01,1.739999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.222984166815876961e-03,2.938327980041503906e+01,3.396455645561218262e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.316464483737945557e-01,6.434888243675231934e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.316464483737945557e-01,6.434888243675231934e-01,2.229400062561035156e+01,1.704000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.608119773864746094e+01,2.282118499279022217e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.433441579341888428e-01,6.725825667381286621e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.433441579341888428e-01,6.725825667381286621e-01,2.185799980163574219e+01,1.652000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.894695739746093750e+02,3.022345304489135742e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.315526753664016724e-01,6.535988450050354004e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.315526753664016724e-01,6.535988450050354004e-01,2.163800048828125000e+01,1.546000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.499824142456054688e+01,3.812075555324554443e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.340665757656097412e-01,6.334403753280639648e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.340665757656097412e-01,6.334403753280639648e-01,2.006800079345703125e+01,1.472000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.208512115478515625e+01,2.090509086847305298e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.423611730337142944e-01,6.803318858146667480e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.423611730337142944e-01,6.803318858146667480e-01,1.996999931335449219e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.460245698690414429e-02,2.705929756164550781e+01,2.416508495807647705e-01,1.000000000000000000e+00,7.752781510353088379e-01,2.408921569585800171e-01,6.638792157173156738e-01,1.000000000000000000e+00,7.752781510353088379e-01,2.408921569585800171e-01,6.638792157173156738e-01,2.002199935913085938e+01,1.330000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,9.070743560791015625e+01,2.319364100694656372e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.439454793930053711e-01,6.705676913261413574e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.439454793930053711e-01,6.705676913261413574e-01,1.943199920654296875e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,3.062889671325683594e+01,2.461354881525039673e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.450331449508666992e-01,6.594967842102050781e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.450331449508666992e-01,6.594967842102050781e-01,1.888199996948242188e+01,1.334000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.700163459777832031e+01,2.305410802364349365e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.490460276603698730e-01,6.651606559753417969e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.490460276603698730e-01,6.651606559753417969e-01,1.812999916076660156e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.377770614624023438e+01,2.198141813278198242e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.493862956762313843e-01,6.683702468872070312e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.493862956762313843e-01,6.683702468872070312e-01,1.801000022888183594e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.609299850463867188e+01,1.942860633134841919e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.644068896770477295e-01,6.894831061363220215e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.644068896770477295e-01,6.894831061363220215e-01,1.775200080871582031e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.052500471472740173e-02,2.779153633117675781e+01,2.077354639768600464e-01,1.000000000000000000e+00,8.943318128585815430e-01,2.676081955432891846e-01,6.770165562629699707e-01,1.000000000000000000e+00,8.943318128585815430e-01,2.676081955432891846e-01,6.770165562629699707e-01,1.750799942016601562e+01,1.296000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.398212814331054688e+01,1.988214552402496338e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.715139687061309814e-01,6.952503919601440430e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.715139687061309814e-01,6.952503919601440430e-01,1.753000068664550781e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.958483123779296875e+01,2.018111199140548706e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.568883001804351807e-01,6.838590502738952637e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.568883001804351807e-01,6.838590502738952637e-01,1.633799934387207031e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.342035865783691406e+01,2.487547993659973145e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.500570714473724365e-01,6.587617993354797363e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.500570714473724365e-01,6.587617993354797363e-01,1.781800079345703125e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.951634216308593750e+01,1.914559900760650635e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.790015935897827148e-01,7.040464878082275391e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.790015935897827148e-01,7.040464878082275391e-01,1.794400024414062500e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.052500471472740173e-02,2.557878303527832031e+01,2.119231373071670532e-01,1.000000000000000000e+00,8.943318128585815430e-01,2.679079473018646240e-01,6.783505678176879883e-01,1.000000000000000000e+00,8.943318128585815430e-01,2.679079473018646240e-01,6.783505678176879883e-01,1.830599975585937500e+01,1.373999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.857076644897460938e+01,2.771211862564086914e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.428545057773590088e-01,6.673647761344909668e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.428545057773590088e-01,6.673647761344909668e-01,1.917799949645996094e+01,1.435999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.008849906921386719e+01,2.093249708414077759e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.485566586256027222e-01,6.779549121856689453e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.485566586256027222e-01,6.779549121856689453e-01,1.929999923706054688e+01,1.122000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,8.359762281179428101e-02,4.054878616333007812e+01,2.060927301645278931e-01,1.000000000000000000e+00,7.478666305541992188e-01,2.438005059957504272e-01,6.752948760986328125e-01,1.000000000000000000e+00,7.478666305541992188e-01,2.438005059957504272e-01,6.752948760986328125e-01,2.068199920654296875e+01,1.534000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.619657897949218750e+01,2.090432941913604736e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.518172264099121094e-01,6.798499822616577148e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.518172264099121094e-01,6.798499822616577148e-01,1.997400093078613281e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.863918685913085938e+01,3.082564771175384521e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.345920652151107788e-01,6.508859395980834961e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.345920652151107788e-01,6.508859395980834961e-01,2.154400062561035156e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.578491516113281250e+02,2.057810276746749878e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.446825057268142700e-01,6.909695863723754883e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.446825057268142700e-01,6.909695863723754883e-01,2.096599960327148438e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.841949653625488281e+01,3.297992348670959473e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.298984229564666748e-01,6.544402241706848145e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.298984229564666748e-01,6.544402241706848145e-01,2.109799957275390625e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.328745269775390625e+01,2.334513217210769653e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.356215864419937134e-01,6.720255613327026367e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.356215864419937134e-01,6.720255613327026367e-01,2.229999923706054688e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.986636504530906677e-02,4.572253036499023438e+01,3.283083438873291016e-01,1.000000000000000000e+00,7.917028069496154785e-01,2.221557348966598511e-01,6.499982476234436035e-01,1.000000000000000000e+00,7.917028069496154785e-01,2.221557348966598511e-01,6.499982476234436035e-01,2.286599922180175781e+01,1.503999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.740335083007812500e+01,3.585806787014007568e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.288968116044998169e-01,6.372446417808532715e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.288968116044998169e-01,6.372446417808532715e-01,2.200000000000000000e+01,1.481999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,5.759107208251953125e+01,2.994988560676574707e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.372469753026962280e-01,6.651832461357116699e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.372469753026962280e-01,6.651832461357116699e-01,2.104999923706054688e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.820317871093750000e+03,2.784881889820098877e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.362568974494934082e-01,6.649324297904968262e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.362568974494934082e-01,6.649324297904968262e-01,2.040200042724609375e+01,1.430000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.559590530395507812e+01,2.729961574077606201e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.380280643701553345e-01,6.632698774337768555e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.380280643701553345e-01,6.632698774337768555e-01,1.937400054931640625e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,8.914829231798648834e-03,2.481393814086914062e+01,2.283629179000854492e-01,1.000000000000000000e+00,9.084251523017883301e-01,2.683885395526885986e-01,6.735589504241943359e-01,1.000000000000000000e+00,9.084251523017883301e-01,2.683885395526885986e-01,6.735589504241943359e-01,1.883200073242187500e+01,1.431999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.531056404113769531e+01,2.083087265491485596e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.517753243446350098e-01,6.740242838859558105e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.517753243446350098e-01,6.740242838859558105e-01,1.794000053405761719e+01,1.368000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.159633178710937500e+02,2.033649235963821411e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.591342031955718994e-01,6.886050701141357422e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.591342031955718994e-01,6.886050701141357422e-01,1.787599945068359375e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.292942504882812500e+03,2.009517550468444824e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.578481435775756836e-01,6.831984519958496094e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.578481435775756836e-01,6.831984519958496094e-01,1.703000068664550781e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.305046844482421875e+01,2.083329260349273682e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.515222728252410889e-01,6.752956509590148926e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.515222728252410889e-01,6.752956509590148926e-01,1.744000053405761719e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.383483314514160156e+01,2.050441205501556396e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.684832811355590820e-01,6.838973760604858398e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.684832811355590820e-01,6.838973760604858398e-01,1.746599960327148438e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.896676826477050781e+01,1.934219598770141602e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.510297596454620361e-01,6.992835402488708496e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.510297596454620361e-01,6.992835402488708496e-01,1.757399940490722656e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.782715988159179688e+01,2.286130934953689575e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.468718141317367554e-01,6.619617342948913574e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.468718141317367554e-01,6.619617342948913574e-01,1.801600074768066406e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.346113204956054688e+01,2.045728862285614014e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.621082663536071777e-01,6.825668811798095703e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.621082663536071777e-01,6.825668811798095703e-01,1.772400093078613281e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.248595428466796875e+01,3.733682632446289062e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.324977815151214600e-01,6.481133699417114258e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.324977815151214600e-01,6.481133699417114258e-01,1.896999931335449219e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.012406494140625000e+03,1.921624690294265747e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565520405769348145e-01,6.929354071617126465e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565520405769348145e-01,6.929354071617126465e-01,1.903000068664550781e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.765410804748535156e+01,3.085850179195404053e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.396673560142517090e-01,6.514574289321899414e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.396673560142517090e-01,6.514574289321899414e-01,1.963199996948242188e+01,1.235999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.147838020324707031e+01,2.027417570352554321e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.505789697170257568e-01,6.827258467674255371e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.505789697170257568e-01,6.827258467674255371e-01,2.028000068664550781e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,2.879900932312011719e+01,2.239020019769668579e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.506264150142669678e-01,6.730085611343383789e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.506264150142669678e-01,6.730085611343383789e-01,2.003599929809570312e+01,1.339999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.795844268798828125e+01,1.991272866725921631e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.437962144613265991e-01,6.830643415451049805e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.437962144613265991e-01,6.830643415451049805e-01,2.090800094604492188e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.958206176757812500e+01,2.043145745992660522e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.473330944776535034e-01,6.818389892578125000e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.473330944776535034e-01,6.818389892578125000e-01,2.093600082397460938e+01,1.497999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,4.077013015747070312e+01,2.998662590980529785e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.288253307342529297e-01,6.689795851707458496e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.288253307342529297e-01,6.689795851707458496e-01,2.134199905395507812e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.623749542236328125e+01,2.167965322732925415e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.462149858474731445e-01,6.862925291061401367e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.462149858474731445e-01,6.862925291061401367e-01,2.139399909973144531e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.237294387817382812e+01,3.394106030464172363e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.300323098897933960e-01,6.470694541931152344e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.300323098897933960e-01,6.470694541931152344e-01,2.281200027465820312e+01,1.637999916076660156e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.713583564758300781e+01,2.296958565711975098e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.433560788631439209e-01,6.727758049964904785e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.433560788631439209e-01,6.727758049964904785e-01,2.096800041198730469e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.069381523132324219e+01,1.960954368114471436e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.444631457328796387e-01,6.949584484100341797e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.444631457328796387e-01,6.949584484100341797e-01,2.066600036621093750e+01,1.373999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.886872482299804688e+01,1.944770812988281250e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.536769509315490723e-01,6.882730722427368164e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.536769509315490723e-01,6.882730722427368164e-01,2.197400093078613281e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.015447616577148438e+01,2.712301015853881836e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.334534972906112671e-01,6.726091504096984863e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.334534972906112671e-01,6.726091504096984863e-01,2.186199951171875000e+01,1.426000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.714048194885253906e+01,2.866546809673309326e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.393460571765899658e-01,6.546598076820373535e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.393460571765899658e-01,6.546598076820373535e-01,2.031599998474121094e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.371725654602050781e+01,1.997018307447433472e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.658213675022125244e-01,6.863847970962524414e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.658213675022125244e-01,6.863847970962524414e-01,1.935799980163574219e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.136404037475585938e+01,2.791504859924316406e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.325580120086669922e-01,6.608581542968750000e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.325580120086669922e-01,6.608581542968750000e-01,1.992200088500976562e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.504998397827148438e+01,1.976155191659927368e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.613694667816162109e-01,7.005896568298339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.613694667816162109e-01,7.005896568298339844e-01,1.941200065612792969e+01,1.272000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.679700088500976562e+01,2.091388851404190063e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440906465053558350e-01,6.847734451293945312e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.440906465053558350e-01,6.847734451293945312e-01,1.869799995422363281e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.668157768249511719e+01,2.015949785709381104e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.492495328187942505e-01,6.804418563842773438e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.492495328187942505e-01,6.804418563842773438e-01,1.832399940490722656e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.339907073974609375e+01,1.951199918985366821e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.594599723815917969e-01,6.908007264137268066e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.594599723815917969e-01,6.908007264137268066e-01,1.805599975585937500e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.753330421447753906e+01,2.183353453874588013e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.536263763904571533e-01,6.808789372444152832e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.536263763904571533e-01,6.808789372444152832e-01,1.804000091552734375e+01,1.269999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.575190353393554688e+01,1.983288526535034180e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.610074877738952637e-01,6.954050064086914062e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.610074877738952637e-01,6.954050064086914062e-01,1.792399978637695312e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.690726852416992188e+01,2.094903290271759033e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.519033551216125488e-01,6.798602342605590820e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.519033551216125488e-01,6.798602342605590820e-01,1.812800025939941406e+01,1.364000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.733807373046875000e+01,2.044715732336044312e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.453506886959075928e-01,6.778276562690734863e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.453506886959075928e-01,6.778276562690734863e-01,1.892200088500976562e+01,1.388000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.825281143188476562e+01,1.901737600564956665e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.604439854621887207e-01,6.901398897171020508e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.604439854621887207e-01,6.901398897171020508e-01,1.903800010681152344e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.392605590820312500e+01,2.065882086753845215e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.400545179843902588e-01,6.808820366859436035e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.400545179843902588e-01,6.808820366859436035e-01,1.928000068664550781e+01,1.330000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.162869384765625000e+03,2.145044356584548950e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.432099431753158569e-01,6.797589659690856934e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.432099431753158569e-01,6.797589659690856934e-01,1.999399948120117188e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.617812156677246094e+01,2.184913009405136108e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.447589337825775146e-01,6.746481657028198242e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.447589337825775146e-01,6.746481657028198242e-01,2.005999946594238281e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.109863013029098511e-01,2.821467208862304688e+01,2.145121395587921143e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.533566951751708984e-01,6.649001836776733398e-01,1.000000000000000000e+00,6.794257760047912598e-01,2.533566951751708984e-01,6.649001836776733398e-01,2.026000022888183594e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.395209729671478271e-01,3.424194030761718750e+02,2.167808562517166138e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.423390150070190430e-01,6.697437167167663574e-01,1.000000000000000000e+00,7.242900729179382324e-01,2.423390150070190430e-01,6.697437167167663574e-01,2.145400047302246094e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,9.321876831054687500e+02,3.123270869255065918e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.226912528276443481e-01,6.513714194297790527e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.226912528276443481e-01,6.513714194297790527e-01,2.095999908447265625e+01,1.660000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.799596023559570312e+01,3.284615576267242432e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.290453463792800903e-01,6.458185911178588867e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.290453463792800903e-01,6.458185911178588867e-01,2.067600059509277344e+01,1.468000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.098536872863769531e+01,2.836089432239532471e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.359779030084609985e-01,6.656518578529357910e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.359779030084609985e-01,6.656518578529357910e-01,2.086000061035156250e+01,1.334000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.789159393310546875e+01,3.396775126457214355e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.284946143627166748e-01,6.456514000892639160e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.284946143627166748e-01,6.456514000892639160e-01,2.069400024414062500e+01,1.352000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.849766540527343750e+01,3.179736435413360596e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.391530722379684448e-01,6.638168692588806152e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.391530722379684448e-01,6.638168692588806152e-01,2.103199958801269531e+01,1.710000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.031651496887207031e+01,2.027247399091720581e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.394920438528060913e-01,6.930877566337585449e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.394920438528060913e-01,6.930877566337585449e-01,1.993600082397460938e+01,1.377999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.878479003906250000e+01,1.922981888055801392e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.589004635810852051e-01,6.963324546813964844e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.589004635810852051e-01,6.963324546813964844e-01,1.955800056457519531e+01,1.411999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.272987365722656250e+01,2.055823206901550293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602227330207824707e-01,6.841458082199096680e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602227330207824707e-01,6.841458082199096680e-01,1.943400001525878906e+01,1.456000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.753067016601562500e+01,2.124983370304107666e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.472472637891769409e-01,6.739063262939453125e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.472472637891769409e-01,6.739063262939453125e-01,1.869199943542480469e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.109421539306640625e+01,2.050898075103759766e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.527059912681579590e-01,6.805379986763000488e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.527059912681579590e-01,6.805379986763000488e-01,1.854000091552734375e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.754255867004394531e+01,2.117633968591690063e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.643570601940155029e-01,6.738862991333007812e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.643570601940155029e-01,6.738862991333007812e-01,1.818000030517578125e+01,1.260000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.620932960510253906e+01,2.121173590421676636e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.821485996246337891e-01,6.809366941452026367e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.821485996246337891e-01,6.809366941452026367e-01,1.777199935913085938e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.187007713317871094e+01,1.960154175758361816e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.907625734806060791e-01,6.958161592483520508e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.907625734806060791e-01,6.958161592483520508e-01,1.881800079345703125e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.640635430812835693e-01,2.847830581665039062e+01,2.161028236150741577e-01,1.000000000000000000e+00,7.267113924026489258e-01,2.505243420600891113e-01,6.715974807739257812e-01,1.000000000000000000e+00,7.267113924026489258e-01,2.505243420600891113e-01,6.715974807739257812e-01,1.876199913024902344e+01,1.460000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,8.710002899169921875e+01,2.143040150403976440e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.563070356845855713e-01,6.732332706451416016e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.563070356845855713e-01,6.732332706451416016e-01,1.947200012207031250e+01,1.472000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.784002113342285156e+01,2.083101123571395874e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.499400526285171509e-01,6.838815808296203613e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.499400526285171509e-01,6.838815808296203613e-01,1.962599945068359375e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.394660949707031250e+01,2.061110585927963257e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.665687501430511475e-01,6.782622337341308594e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.665687501430511475e-01,6.782622337341308594e-01,1.942600059509277344e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,3.141628205776214600e-02,2.941878509521484375e+01,2.729428708553314209e-01,1.000000000000000000e+00,8.451017737388610840e-01,2.383639961481094360e-01,6.665596961975097656e-01,1.000000000000000000e+00,8.451017737388610840e-01,2.383639961481094360e-01,6.665596961975097656e-01,1.992000007629394531e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.531544685363769531e+01,2.136803716421127319e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.531377971172332764e-01,6.902992725372314453e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.531377971172332764e-01,6.902992725372314453e-01,2.058399963378906250e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.016568578779697418e-02,3.207923507690429688e+01,2.196133136749267578e-01,1.000000000000000000e+00,9.005404710769653320e-01,2.472548037767410278e-01,6.769095659255981445e-01,1.000000000000000000e+00,9.005404710769653320e-01,2.472548037767410278e-01,6.769095659255981445e-01,2.095599937438964844e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.048804664611816406e+01,2.168619930744171143e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.416489720344543457e-01,6.705344915390014648e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.416489720344543457e-01,6.705344915390014648e-01,2.157399940490722656e+01,1.542000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.672700691223144531e+01,1.913514584302902222e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629982233047485352e-01,6.959418654441833496e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629982233047485352e-01,6.959418654441833496e-01,2.051799964904785156e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.326527404785156250e+01,3.690353631973266602e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.299130409955978394e-01,6.378630995750427246e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.299130409955978394e-01,6.378630995750427246e-01,2.137000083923339844e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.532483291625976562e+01,2.891218662261962891e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.386000454425811768e-01,6.684280037879943848e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.386000454425811768e-01,6.684280037879943848e-01,2.137000083923339844e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.826939773559570312e+01,5.255014896392822266e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.273809015750885010e-01,6.302774548530578613e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.273809015750885010e-01,6.302774548530578613e-01,2.156599998474121094e+01,1.670000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.974639511108398438e+01,2.155020833015441895e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.425522804260253906e-01,6.727030277252197266e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.425522804260253906e-01,6.727030277252197266e-01,2.098200035095214844e+01,1.376000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.337113142013549805e-02,3.338439025878906250e+02,2.781882584095001221e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.378777265548706055e-01,6.622571945190429688e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.378777265548706055e-01,6.622571945190429688e-01,2.032399940490722656e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.850864601135253906e+01,3.223921656608581543e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.403378039598464966e-01,6.586799025535583496e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.403378039598464966e-01,6.586799025535583496e-01,1.917799949645996094e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.429476547241210938e+01,1.869575530290603638e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.678814232349395752e-01,7.015125751495361328e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.678814232349395752e-01,7.015125751495361328e-01,1.915200042724609375e+01,1.489999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.707675170898437500e+01,2.001029551029205322e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.500047981739044189e-01,6.866005659103393555e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.500047981739044189e-01,6.866005659103393555e-01,1.923399925231933594e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.864247512817382812e+01,1.774279326200485229e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565741539001464844e-01,7.096588015556335449e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.565741539001464844e-01,7.096588015556335449e-01,1.938400077819824219e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,3.226994705200195312e+01,1.994130611419677734e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.571349442005157471e-01,6.908118128776550293e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.571349442005157471e-01,6.908118128776550293e-01,1.851000022888183594e+01,1.469999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.811909675598144531e+01,1.981544941663742065e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.644851207733154297e-01,6.962162852287292480e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.644851207733154297e-01,6.962162852287292480e-01,1.895599937438964844e+01,1.406000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.334084167480468750e+02,1.978793740272521973e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.589409947395324707e-01,6.932749748229980469e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.589409947395324707e-01,6.932749748229980469e-01,1.926399993896484375e+01,1.539999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.934952926635742188e+01,1.958615183830261230e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.608999907970428467e-01,6.909568905830383301e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.608999907970428467e-01,6.909568905830383301e-01,1.938999938964843750e+01,1.407999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.157362836513978307e-32,4.263733886718750000e+03,1.886787861585617065e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.549927532672882080e-01,6.956668496131896973e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.549927532672882080e-01,6.956668496131896973e-01,2.017799949645996094e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,3.448340148925781250e+02,2.059108614921569824e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.543273270130157471e-01,6.708695292472839355e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.543273270130157471e-01,6.708695292472839355e-01,1.946400070190429688e+01,1.472000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.222984166815876961e-03,2.884751701354980469e+01,3.291238248348236084e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.307061553001403809e-01,6.518482565879821777e-01,1.000000000000000000e+00,9.633494019508361816e-01,2.307061553001403809e-01,6.518482565879821777e-01,2.186000061035156250e+01,1.742000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.946896171569824219e+01,2.933258712291717529e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.360916435718536377e-01,6.612193584442138672e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.360916435718536377e-01,6.612193584442138672e-01,2.147999954223632812e+01,1.613999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.448704147338867188e+01,1.856735050678253174e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.559248805046081543e-01,7.056252956390380859e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.559248805046081543e-01,7.056252956390380859e-01,2.190200042724609375e+01,1.663999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.913311004638671875e+01,1.825325340032577515e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.592160403728485107e-01,7.090921998023986816e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.592160403728485107e-01,7.090921998023986816e-01,2.162999916076660156e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.652081108093261719e+01,2.407491207122802734e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.411064654588699341e-01,6.823907494544982910e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.411064654588699341e-01,6.823907494544982910e-01,2.288800048828125000e+01,1.842000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.572373199462890625e+01,2.026730477809906006e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.516308724880218506e-01,6.861425042152404785e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.516308724880218506e-01,6.861425042152404785e-01,2.185600090026855469e+01,1.565999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.130185890197753906e+01,2.333308905363082886e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.419279217720031738e-01,6.744801402091979980e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.419279217720031738e-01,6.744801402091979980e-01,2.287800025939941406e+01,1.510000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.119196891784667969e+01,1.833761334419250488e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.556919753551483154e-01,7.076702713966369629e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.556919753551483154e-01,7.076702713966369629e-01,2.265200042724609375e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,2.674863243103027344e+01,3.528155386447906494e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.401328682899475098e-01,6.393676996231079102e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.401328682899475098e-01,6.393676996231079102e-01,2.272800064086914062e+01,1.792000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.350477218627929688e+01,2.044906467199325562e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.543107271194458008e-01,6.864326000213623047e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.543107271194458008e-01,6.864326000213623047e-01,2.243400001525878906e+01,1.623999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.605177497863769531e+01,2.002751678228378296e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.520987689495086670e-01,6.869488954544067383e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.520987689495086670e-01,6.869488954544067383e-01,2.236400032043457031e+01,1.500000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.489795494079589844e+01,1.775626838207244873e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.669376730918884277e-01,7.197654843330383301e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.669376730918884277e-01,7.197654843330383301e-01,2.273999977111816406e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.671504783630371094e+01,2.388597875833511353e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.444800734519958496e-01,6.868265271186828613e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.444800734519958496e-01,6.868265271186828613e-01,2.189599990844726562e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.166248893737792969e+01,1.965955048799514771e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.633369565010070801e-01,6.951044797897338867e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.633369565010070801e-01,6.951044797897338867e-01,2.080400085449218750e+01,1.553999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.407853507995605469e+01,1.972334831953048706e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.835188806056976318e-01,6.930630803108215332e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.835188806056976318e-01,6.930630803108215332e-01,2.145800018310546875e+01,1.577999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.284518051147460938e+01,2.164645195007324219e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.527312934398651123e-01,6.836506128311157227e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.527312934398651123e-01,6.836506128311157227e-01,2.217600059509277344e+01,1.628000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.554562759399414062e+01,1.972124725580215454e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.502515316009521484e-01,7.009263634681701660e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.502515316009521484e-01,7.009263634681701660e-01,2.156599998474121094e+01,1.472000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.729556655883789062e+01,2.063599824905395508e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.472899705171585083e-01,6.793026924133300781e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.472899705171585083e-01,6.793026924133300781e-01,2.172800064086914062e+01,1.407999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.337113142013549805e-02,2.692893028259277344e+01,2.404964864253997803e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.499607056379318237e-01,6.684017777442932129e-01,1.000000000000000000e+00,8.097243905067443848e-01,2.499607056379318237e-01,6.684017777442932129e-01,2.211000061035156250e+01,1.729999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.434685707092285156e+01,1.999632567167282104e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.517070472240447998e-01,6.869432330131530762e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.517070472240447998e-01,6.869432330131530762e-01,2.147599983215332031e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.889589691162109375e+01,2.092193067073822021e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.557498812675476074e-01,6.827551126480102539e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.557498812675476074e-01,6.827551126480102539e-01,2.144400024414062500e+01,1.488000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.593697357177734375e+01,2.031286507844924927e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.537929117679595947e-01,6.974722146987915039e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.537929117679595947e-01,6.974722146987915039e-01,2.158600044250488281e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.333040618896484375e+01,3.008562028408050537e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.385724186897277832e-01,6.639955043792724609e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.385724186897277832e-01,6.639955043792724609e-01,2.207999992370605469e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,3.788065165281295776e-02,2.806250381469726562e+01,1.923062503337860107e-01,1.000000000000000000e+00,8.252217173576354980e-01,2.434858530759811401e-01,6.872536540031433105e-01,1.000000000000000000e+00,8.252217173576354980e-01,2.434858530759811401e-01,6.872536540031433105e-01,2.079800033569335938e+01,1.768000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.567517340183258057e-02,3.111320304870605469e+01,2.119845002889633179e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.520549297332763672e-01,6.705101728439331055e-01,1.000000000000000000e+00,8.138261437416076660e-01,2.520549297332763672e-01,6.705101728439331055e-01,2.140200042724609375e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.038490676879882812e+01,2.016894370317459106e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.494271248579025269e-01,6.862829923629760742e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.494271248579025269e-01,6.862829923629760742e-01,2.155800056457519531e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.114309501647949219e+01,3.057278096675872803e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.317507565021514893e-01,6.516270041465759277e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.317507565021514893e-01,6.516270041465759277e-01,2.132200050354003906e+01,1.557999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.435439819237217307e-04,3.136240196228027344e+01,2.498195469379425049e-01,1.000000000000000000e+00,9.840480089187622070e-01,2.382114529609680176e-01,6.817828416824340820e-01,1.000000000000000000e+00,9.840480089187622070e-01,2.382114529609680176e-01,6.817828416824340820e-01,2.267600059509277344e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.376309967041015625e+01,1.956896930932998657e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.507258355617523193e-01,6.906079649925231934e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.507258355617523193e-01,6.906079649925231934e-01,2.189999961853027344e+01,1.464000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.764716720581054688e+01,1.868821084499359131e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.520898282527923584e-01,7.003755569458007812e-01,1.000000000000000000e+00,1.000000000000000000e+00,2.520898282527923584e-01,7.003755569458007812e-01,2.155400085449218750e+01,1.786000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.509486961364746094e+01,1.916469037532806396e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.541963160037994385e-01,6.948997974395751953e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.541963160037994385e-01,6.948997974395751953e-01,2.094799995422363281e+01,1.534000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.679156684875488281e+01,2.181396782398223877e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.508166134357452393e-01,6.851266026496887207e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.508166134357452393e-01,6.851266026496887207e-01,2.110600090026855469e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.652329635620117188e+01,2.225229591131210327e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.528790235519409180e-01,6.892490386962890625e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.528790235519409180e-01,6.892490386962890625e-01,2.198999977111816406e+01,1.565999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.459251090884208679e-02,2.577269363403320312e+01,2.281517982482910156e-01,1.000000000000000000e+00,8.143110871315002441e-01,2.650015354156494141e-01,6.738142967224121094e-01,1.000000000000000000e+00,8.143110871315002441e-01,2.650015354156494141e-01,6.738142967224121094e-01,2.113400077819824219e+01,1.539999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.913370513916015625e+01,2.948204874992370605e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.494906038045883179e-01,6.601794958114624023e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.494906038045883179e-01,6.601794958114624023e-01,2.111000061035156250e+01,1.647999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.483114624023437500e+01,1.929854601621627808e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.668781876564025879e-01,7.009924650192260742e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.668781876564025879e-01,7.009924650192260742e-01,2.036199951171875000e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.592904090881347656e+01,1.819259971380233765e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.767887413501739502e-01,7.180962562561035156e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.767887413501739502e-01,7.180962562561035156e-01,2.156599998474121094e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.268133666992187500e+03,1.941005587577819824e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.659300863742828369e-01,7.038906216621398926e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.659300863742828369e-01,7.038906216621398926e-01,2.158200073242187500e+01,1.493999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.044585800170898438e+01,1.810758858919143677e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.689165472984313965e-01,7.049947381019592285e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.689165472984313965e-01,7.049947381019592285e-01,2.072800064086914062e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.975997734069824219e+01,1.879809200763702393e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.662532031536102295e-01,7.036354541778564453e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.662532031536102295e-01,7.036354541778564453e-01,2.059399986267089844e+01,1.605999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.064980506896972656e+01,2.163705378770828247e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.537827789783477783e-01,6.943824291229248047e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.537827789783477783e-01,6.943824291229248047e-01,2.186400032043457031e+01,1.621999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.401058959960937500e+01,1.943945288658142090e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.838179767131805420e-01,6.991286873817443848e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.838179767131805420e-01,6.991286873817443848e-01,2.101600074768066406e+01,1.576000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,8.914829231798648834e-03,2.510933303833007812e+01,2.027718573808670044e-01,1.000000000000000000e+00,9.084251523017883301e-01,2.763733565807342529e-01,6.938892006874084473e-01,1.000000000000000000e+00,9.084251523017883301e-01,2.763733565807342529e-01,6.938892006874084473e-01,2.057399940490722656e+01,1.502000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.053461647033691406e+01,2.020499110221862793e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.500599920749664307e-01,7.243201136589050293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.500599920749664307e-01,7.243201136589050293e-01,2.241600036621093750e+01,1.679999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.555242919921875000e+01,1.982941180467605591e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.609496116638183594e-01,6.988683938980102539e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.609496116638183594e-01,6.988683938980102539e-01,2.170400047302246094e+01,1.496000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.598755073547363281e+01,1.881841421127319336e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.694931924343109131e-01,6.951184868812561035e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.694931924343109131e-01,6.951184868812561035e-01,2.206599998474121094e+01,1.497999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.419184303283691406e+01,1.764146387577056885e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602268159389495850e-01,7.165606617927551270e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602268159389495850e-01,7.165606617927551270e-01,2.164399909973144531e+01,1.572000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.101971054077148438e+01,1.876754015684127808e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.618297338485717773e-01,6.923175454139709473e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.618297338485717773e-01,6.923175454139709473e-01,2.297200012207031250e+01,1.670000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.876257133483886719e+01,2.220611572265625000e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.510843276977539062e-01,6.917746663093566895e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.510843276977539062e-01,6.917746663093566895e-01,2.295400047302246094e+01,1.765999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.787744276225566864e-02,3.226422119140625000e+03,3.347666263580322266e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.356271147727966309e-01,6.499761343002319336e-01,1.000000000000000000e+00,8.739450573921203613e-01,2.356271147727966309e-01,6.499761343002319336e-01,2.347800064086914062e+01,1.679999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.876290321350097656e+01,1.887172162532806396e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.574349939823150635e-01,7.028787136077880859e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.574349939823150635e-01,7.028787136077880859e-01,2.271599960327148438e+01,1.535999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,7.140300750732421875e+01,1.975173950195312500e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.549225389957427979e-01,6.903566718101501465e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.549225389957427979e-01,6.903566718101501465e-01,2.271999931335449219e+01,1.700000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.779977607727050781e+01,2.065913081169128418e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.585788369178771973e-01,6.852828264236450195e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.585788369178771973e-01,6.852828264236450195e-01,2.218000030517578125e+01,1.569999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.752720642089843750e+01,2.557077705860137939e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.428798973560333252e-01,6.791333556175231934e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.428798973560333252e-01,6.791333556175231934e-01,2.238800048828125000e+01,1.815999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.591721153259277344e+01,1.874539703130722046e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602694332599639893e-01,6.931648254394531250e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.602694332599639893e-01,6.931648254394531250e-01,2.193799972534179688e+01,1.561999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,5.131448060274124146e-02,2.876470184326171875e+01,2.322566956281661987e-01,1.000000000000000000e+00,7.934312224388122559e-01,2.565725743770599365e-01,6.777392029762268066e-01,1.000000000000000000e+00,7.934312224388122559e-01,2.565725743770599365e-01,6.777392029762268066e-01,2.204599952697753906e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.510956001281738281e+01,2.183169871568679810e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.646311223506927490e-01,7.000470161437988281e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.646311223506927490e-01,7.000470161437988281e-01,2.244000053405761719e+01,1.610000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.870281066894531250e+02,1.737281978130340576e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.710506916046142578e-01,7.170230150222778320e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.710506916046142578e-01,7.170230150222778320e-01,2.189599990844726562e+01,1.650000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.785912704467773438e+01,2.087988704442977905e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.577584981918334961e-01,7.025918364524841309e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.577584981918334961e-01,7.025918364524841309e-01,2.190399932861328125e+01,1.823999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.297314697265625000e+03,2.148231565952301025e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.588378190994262695e-01,7.050382494926452637e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.588378190994262695e-01,7.050382494926452637e-01,2.135799980163574219e+01,1.644000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.881248855590820312e+01,2.153922319412231445e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.601031064987182617e-01,6.989589929580688477e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.601031064987182617e-01,6.989589929580688477e-01,2.210000038146972656e+01,1.673999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.777267646789550781e+01,1.754252165555953979e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629013359546661377e-01,7.183524370193481445e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629013359546661377e-01,7.183524370193481445e-01,2.113800048828125000e+01,1.629999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.152725219726562500e+01,1.916575282812118530e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.643612325191497803e-01,6.966592073440551758e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.643612325191497803e-01,6.966592073440551758e-01,2.157799911499023438e+01,1.628000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.801039505004882812e+01,1.841490119695663452e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.719793617725372314e-01,7.019311785697937012e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.719793617725372314e-01,7.019311785697937012e-01,2.198999977111816406e+01,1.542000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.192203903198242188e+01,1.832364052534103394e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.672675549983978271e-01,7.018957734107971191e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.672675549983978271e-01,7.018957734107971191e-01,2.179599952697753906e+01,1.497999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.501590728759765625e+01,1.894636750221252441e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.733777463436126709e-01,7.065709233283996582e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.733777463436126709e-01,7.065709233283996582e-01,2.207399940490722656e+01,1.572000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.786222839355468750e+01,1.733112186193466187e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.681729495525360107e-01,7.297239899635314941e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.681729495525360107e-01,7.297239899635314941e-01,2.198999977111816406e+01,1.489999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.595599174499511719e+01,1.697437018156051636e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.699039578437805176e-01,7.156883478164672852e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.699039578437805176e-01,7.156883478164672852e-01,2.156999969482421875e+01,1.457999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.029593467712402344e+01,1.781161725521087646e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.736155390739440918e-01,7.217049002647399902e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.736155390739440918e-01,7.217049002647399902e-01,2.225200080871582031e+01,1.731999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.255099487304687500e+01,1.860727816820144653e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.581438422203063965e-01,7.066107392311096191e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.581438422203063965e-01,7.066107392311096191e-01,2.257399940490722656e+01,1.686000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,7.923738303361460567e-05,3.030549430847167969e+01,1.488161087036132812e-01,1.000000000000000000e+00,9.906539320945739746e-01,2.928113341331481934e-01,7.460207343101501465e-01,1.000000000000000000e+00,9.906539320945739746e-01,2.928113341331481934e-01,7.460207343101501465e-01,2.275799942016601562e+01,1.569999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.811665344238281250e+01,1.850233525037765503e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.640508711338043213e-01,7.201116085052490234e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.640508711338043213e-01,7.201116085052490234e-01,2.338999938964843750e+01,1.918000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.050590705871582031e+01,1.694827079772949219e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.652093470096588135e-01,7.397678494453430176e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.652093470096588135e-01,7.397678494453430176e-01,2.303400039672851562e+01,1.631999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.296295928955078125e+01,1.895240396261215210e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.716239988803863525e-01,7.127150893211364746e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.716239988803863525e-01,7.127150893211364746e-01,2.277400016784667969e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.383711814880371094e+01,1.832874119281768799e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.715053260326385498e-01,7.165782451629638672e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.715053260326385498e-01,7.165782451629638672e-01,2.221400070190429688e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.817015457153320312e+01,1.427233666181564331e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.836209535598754883e-01,7.590098381042480469e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.836209535598754883e-01,7.590098381042480469e-01,2.228800010681152344e+01,1.904000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.944263267517089844e+01,1.751385927200317383e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.811159491539001465e-01,7.188512682914733887e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.811159491539001465e-01,7.188512682914733887e-01,2.305800056457519531e+01,1.776000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.042741966247558594e+01,1.783594936132431030e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.708344459533691406e-01,7.294782400131225586e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.708344459533691406e-01,7.294782400131225586e-01,2.240399932861328125e+01,1.720000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.738439941406250000e+01,1.724100708961486816e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.781793177127838135e-01,7.150074243545532227e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.781793177127838135e-01,7.150074243545532227e-01,2.222800064086914062e+01,1.652000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.659414482116699219e+01,1.896249949932098389e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629842460155487061e-01,7.045724391937255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.629842460155487061e-01,7.045724391937255859e-01,2.280200004577636719e+01,1.621999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.473661804199218750e+01,2.278435081243515015e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.760916948318481445e-01,6.795936822891235352e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.760916948318481445e-01,6.795936822891235352e-01,2.199600028991699219e+01,1.647999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.491006469726562500e+01,1.816604286432266235e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.689664363861083984e-01,7.177865505218505859e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.689664363861083984e-01,7.177865505218505859e-01,2.179599952697753906e+01,1.615999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.971532249450683594e+01,1.851907968521118164e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.737054824829101562e-01,7.030795216560363770e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.737054824829101562e-01,7.030795216560363770e-01,2.189800071716308594e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.638009452819824219e+01,1.796478778123855591e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.757616043090820312e-01,7.236315608024597168e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.757616043090820312e-01,7.236315608024597168e-01,2.172999954223632812e+01,1.863999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.692659759521484375e+01,1.747682094573974609e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.792568206787109375e-01,7.231127023696899414e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.792568206787109375e-01,7.231127023696899414e-01,2.229800033569335938e+01,1.547999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.699430656433105469e+01,1.559332311153411865e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.746169865131378174e-01,7.290640473365783691e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.746169865131378174e-01,7.290640473365783691e-01,2.235600090026855469e+01,1.695999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,1.690587960183620453e-02,2.483108901977539062e+01,1.845559179782867432e-01,1.000000000000000000e+00,8.799995183944702148e-01,2.708372175693511963e-01,6.995598077774047852e-01,1.000000000000000000e+00,8.799995183944702148e-01,2.708372175693511963e-01,6.995598077774047852e-01,2.245000076293945312e+01,1.773999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.561134643554687500e+02,1.557252854108810425e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.781929373741149902e-01,7.405400872230529785e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.781929373741149902e-01,7.405400872230529785e-01,2.229400062561035156e+01,1.542000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,6.575422363281250000e+02,2.118799984455108643e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.574332654476165771e-01,7.043730616569519043e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.574332654476165771e-01,7.043730616569519043e-01,2.242200088500976562e+01,1.602000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.498000907897949219e+01,1.972558200359344482e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.694300711154937744e-01,6.935487985610961914e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.694300711154937744e-01,6.935487985610961914e-01,2.266799926757812500e+01,1.776000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.245326423645019531e+01,1.584619879722595215e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.799058258533477783e-01,7.428901791572570801e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.799058258533477783e-01,7.428901791572570801e-01,2.279400062561035156e+01,1.839999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.472548294067382812e+01,1.654994338750839233e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.771235108375549316e-01,7.241303324699401855e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.771235108375549316e-01,7.241303324699401855e-01,2.282999992370605469e+01,1.829999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.273956298828125000e+01,1.756368130445480347e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.800548374652862549e-01,7.134363055229187012e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.800548374652862549e-01,7.134363055229187012e-01,2.301600074768066406e+01,1.729999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.944996643066406250e+01,1.610245108604431152e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.717091441154479980e-01,7.251167297363281250e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.717091441154479980e-01,7.251167297363281250e-01,2.226600074768066406e+01,1.854000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.059422874450683594e+01,2.143021523952484131e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.597740292549133301e-01,7.084358930587768555e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.597740292549133301e-01,7.084358930587768555e-01,2.275000000000000000e+01,1.718000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.703409576416015625e+01,1.447952985763549805e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.902409434318542480e-01,7.633242011070251465e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.902409434318542480e-01,7.633242011070251465e-01,2.212000083923339844e+01,1.676000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.842077827453613281e+01,1.389834135770797729e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.861109972000122070e-01,7.619938254356384277e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.861109972000122070e-01,7.619938254356384277e-01,2.226799964904785156e+01,1.710000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.404227256774902344e+01,1.552847772836685181e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.958112359046936035e-01,7.341772913932800293e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.958112359046936035e-01,7.341772913932800293e-01,2.239599990844726562e+01,1.910000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.053177185058593750e+02,1.618027091026306152e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.884835302829742432e-01,7.493279576301574707e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.884835302829742432e-01,7.493279576301574707e-01,2.282600021362304688e+01,1.736000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.485682296752929688e+01,1.571495383977890015e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.944154739379882812e-01,7.374614477157592773e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.944154739379882812e-01,7.374614477157592773e-01,2.194400024414062500e+01,1.589999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.381642761230468750e+02,1.556925326585769653e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.944170832633972168e-01,7.365190982818603516e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.944170832633972168e-01,7.365190982818603516e-01,2.186599922180175781e+01,1.556000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.246875953674316406e+01,1.387762278318405151e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.101200759410858154e-01,7.508991956710815430e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.101200759410858154e-01,7.508991956710815430e-01,2.201799964904785156e+01,1.770000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.735186767578125000e+01,1.504170894622802734e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.869532704353332520e-01,7.452915310859680176e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.869532704353332520e-01,7.452915310859680176e-01,2.229800033569335938e+01,1.721999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.263438796997070312e+01,1.293502449989318848e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.094721138477325439e-01,7.543138861656188965e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.094721138477325439e-01,7.543138861656188965e-01,2.184199905395507812e+01,1.863999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.072398948669433594e+01,1.294545531272888184e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.121790289878845215e-01,7.619091272354125977e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.121790289878845215e-01,7.619091272354125977e-01,2.183600044250488281e+01,1.723999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.737345123291015625e+01,1.096942648291587830e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.079496026039123535e-01,7.924705147743225098e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.079496026039123535e-01,7.924705147743225098e-01,2.161199951171875000e+01,1.678000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.449445152282714844e+01,1.370462030172348022e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.260322511196136475e-01,7.692006826400756836e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.260322511196136475e-01,7.692006826400756836e-01,2.129400062561035156e+01,1.829999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.839093017578125000e+01,1.143380701541900635e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.418641388416290283e-01,7.747923135757446289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.418641388416290283e-01,7.747923135757446289e-01,2.084600067138671875e+01,1.962000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.009575271606445312e+01,1.365330666303634644e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.430809974670410156e-01,7.924169301986694336e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.430809974670410156e-01,7.924169301986694336e-01,2.055800056457519531e+01,1.836000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.265817260742187500e+02,1.061482205986976624e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.535794317722320557e-01,8.129113912582397461e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.535794317722320557e-01,8.129113912582397461e-01,1.991399955749511719e+01,1.704000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.118346595764160156e+01,7.150626182556152344e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.554516136646270752e-01,8.181348443031311035e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.554516136646270752e-01,8.181348443031311035e-01,1.920199966430664062e+01,1.652000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.111300086975097656e+01,7.108353078365325928e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.686316311359405518e-01,8.231514096260070801e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.686316311359405518e-01,8.231514096260070801e-01,1.976000022888183594e+01,1.837999916076660156e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.383626403808593750e+02,8.388463407754898071e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.533569276332855225e-01,8.280059695243835449e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.533569276332855225e-01,8.280059695243835449e-01,2.015200042724609375e+01,1.655999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.536282444000244141e+01,5.142245814204216003e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.809653520584106445e-01,8.583492636680603027e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.809653520584106445e-01,8.583492636680603027e-01,1.974200057983398438e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.068630790710449219e+01,5.771291255950927734e-02,1.000000000000000000e+00,9.788492321968078613e-01,3.683514893054962158e-01,8.470495343208312988e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.683514893054962158e-01,8.470495343208312988e-01,1.973600006103515625e+01,1.721999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.139132690429687500e+01,9.434537589550018311e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.549142777919769287e-01,8.066719770431518555e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.549142777919769287e-01,8.066719770431518555e-01,1.982600021362304688e+01,1.770000076293945312e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.369751834869384766e+01,5.927784740924835205e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.875128924846649170e-01,8.463391661643981934e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.875128924846649170e-01,8.463391661643981934e-01,1.942000007629394531e+01,1.605999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.531840896606445312e+01,2.188857272267341614e-02,1.000000000000000000e+00,9.788492321968078613e-01,3.815945684909820557e-01,8.985458612442016602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.815945684909820557e-01,8.985458612442016602e-01,1.983399963378906250e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.293682575225830078e+01,1.923683099448680878e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.152718484401702881e-01,9.009429216384887695e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.152718484401702881e-01,9.009429216384887695e-01,1.901600074768066406e+01,1.535999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.380187320709228516e+01,1.902937516570091248e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.086601734161376953e-01,8.989058136940002441e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.086601734161376953e-01,8.989058136940002441e-01,1.906800079345703125e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.435128974914550781e+01,3.421961516141891479e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.887251913547515869e-01,8.680695891380310059e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.887251913547515869e-01,8.680695891380310059e-01,1.817000007629394531e+01,1.552000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.182937622070312500e+01,3.550615534186363220e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.219096302986145020e-01,8.553160429000854492e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.219096302986145020e-01,8.553160429000854492e-01,1.798200035095214844e+01,1.402000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.172690773010253906e+01,1.331104990094900131e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.454973340034484863e-01,9.207071661949157715e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.454973340034484863e-01,9.207071661949157715e-01,1.748800086975097656e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.073076915740966797e+01,1.357236690819263458e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.444086551666259766e-01,9.175010323524475098e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.444086551666259766e-01,9.175010323524475098e-01,1.762800025939941406e+01,1.353999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.302521514892578125e+01,2.209331095218658447e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.281711876392364502e-01,8.936591744422912598e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.281711876392364502e-01,8.936591744422912598e-01,1.785400009155273438e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.378364944458007812e+01,1.805956661701202393e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.312054514884948730e-01,9.016211628913879395e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.312054514884948730e-01,9.016211628913879395e-01,1.832399940490722656e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.206244754791259766e+01,1.872382126748561859e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.179496765136718750e-01,9.033598303794860840e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.179496765136718750e-01,9.033598303794860840e-01,1.852199935913085938e+01,1.527999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.319534111022949219e+01,2.478146925568580627e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.127814173698425293e-01,8.833593726158142090e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.127814173698425293e-01,8.833593726158142090e-01,1.878800010681152344e+01,1.612000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.305635452270507812e+01,1.340056210756301880e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.256548285484313965e-01,9.222915768623352051e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.256548285484313965e-01,9.222915768623352051e-01,1.801600074768066406e+01,1.464000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.310015964508056641e+01,1.414520852267742157e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.101583063602447510e-01,9.152373075485229492e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.101583063602447510e-01,9.152373075485229492e-01,1.852400016784667969e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.286613750457763672e+01,1.239344850182533264e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.199573397636413574e-01,9.189113974571228027e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.199573397636413574e-01,9.189113974571228027e-01,1.824200057983398438e+01,1.297999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.205305862426757812e+01,1.910298876464366913e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.291447997093200684e-01,9.054018855094909668e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.291447997093200684e-01,9.054018855094909668e-01,1.824600028991699219e+01,1.293999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.058254814147949219e+01,1.657645031809806824e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.409120380878448486e-01,9.048457145690917969e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.409120380878448486e-01,9.048457145690917969e-01,1.784799957275390625e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.129233360290527344e+01,1.994854211807250977e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.416371285915374756e-01,9.162329435348510742e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.416371285915374756e-01,9.162329435348510742e-01,1.740800094604492188e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.277258491516113281e+01,1.340451091527938843e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.449641406536102295e-01,9.174604415893554688e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.449641406536102295e-01,9.174604415893554688e-01,1.751600074768066406e+01,1.310000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.040190124511718750e+01,1.125556975603103638e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.503401815891265869e-01,9.277024269104003906e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.503401815891265869e-01,9.277024269104003906e-01,1.738400077819824219e+01,1.352000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.141169452667236328e+01,4.793930333107709885e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.547225832939147949e-01,9.489749670028686523e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.547225832939147949e-01,9.489749670028686523e-01,1.748399925231933594e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.374473094940185547e+01,5.700971465557813644e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.402251839637756348e-01,9.429431557655334473e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.402251839637756348e-01,9.429431557655334473e-01,1.725000000000000000e+01,1.384000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.276838588714599609e+01,7.695764768868684769e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.228546619415283203e-01,9.439845085144042969e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.228546619415283203e-01,9.439845085144042969e-01,1.826399993896484375e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.286509513854980469e+01,1.538916118443012238e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.049683809280395508e-01,9.164202809333801270e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.049683809280395508e-01,9.164202809333801270e-01,1.834600067138671875e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.374013805389404297e+01,7.874268107116222382e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.526740312576293945e-01,9.386625289916992188e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.526740312576293945e-01,9.386625289916992188e-01,1.742600059509277344e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.134979534149169922e+01,7.611222565174102783e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.552335739135742188e-01,9.395192861557006836e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.552335739135742188e-01,9.395192861557006836e-01,1.733600044250488281e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.037736129760742188e+01,3.864079015329480171e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.613856077194213867e-01,9.532163143157958984e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.613856077194213867e-01,9.532163143157958984e-01,1.698200035095214844e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.087750053405761719e+01,9.685186669230461121e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.613242149353027344e-01,9.298981428146362305e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.613242149353027344e-01,9.298981428146362305e-01,1.665999984741210938e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.122817993164062500e+00,3.527332330122590065e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.793880283832550049e-01,9.563125967979431152e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.793880283832550049e-01,9.563125967979431152e-01,1.577799987792968750e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.036341381072998047e+01,1.335073821246623993e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.644204676151275635e-01,9.214873909950256348e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.644204676151275635e-01,9.214873909950256348e-01,1.650799942016601562e+01,1.397999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.388652801513671875e+00,4.565052688121795654e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.803009629249572754e-01,9.497202038764953613e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.803009629249572754e-01,9.497202038764953613e-01,1.625000000000000000e+01,1.296000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.807918548583984375e+00,3.721607849001884460e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.579971730709075928e-01,9.548609852790832520e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.579971730709075928e-01,9.548609852790832520e-01,1.667799949645996094e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.129621028900146484e+01,1.047152327373623848e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.730214178562164307e-01,9.697616100311279297e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.730214178562164307e-01,9.697616100311279297e-01,1.689800071716308594e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.277604007720947266e+01,1.040240190923213959e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.303325712680816650e-01,9.272806644439697266e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.303325712680816650e-01,9.272806644439697266e-01,1.700000000000000000e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.097751522064208984e+01,7.917851209640502930e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.432193040847778320e-01,9.364058375358581543e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.432193040847778320e-01,9.364058375358581543e-01,1.744400024414062500e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.003395557403564453e+01,7.426277734339237213e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.618849754333496094e-01,9.716039299964904785e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.618849754333496094e-01,9.716039299964904785e-01,1.769799995422363281e+01,1.180000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.297948169708251953e+01,5.412827245891094208e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.505136907100677490e-01,9.451057314872741699e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.505136907100677490e-01,9.451057314872741699e-01,1.754800033569335938e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.075094699859619141e+01,6.243691314011812210e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.463685452938079834e-01,9.430265426635742188e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.463685452938079834e-01,9.430265426635742188e-01,1.727400016784667969e+01,1.303999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.233101081848144531e+01,6.626971298828721046e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.750812649726867676e-01,9.729374647140502930e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.750812649726867676e-01,9.729374647140502930e-01,1.735600090026855469e+01,1.076000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.237541961669921875e+01,8.820553310215473175e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.273710548877716064e-01,9.400129318237304688e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.273710548877716064e-01,9.400129318237304688e-01,1.764399909973144531e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.113067817687988281e+01,4.423113539814949036e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.559283554553985596e-01,9.533652067184448242e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.559283554553985596e-01,9.533652067184448242e-01,1.748200035095214844e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.097955989837646484e+01,6.154987495392560959e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.576952159404754639e-01,9.433515667915344238e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.576952159404754639e-01,9.433515667915344238e-01,1.706200027465820312e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.084414100646972656e+01,3.337174421176314354e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.578644037246704102e-01,9.565274119377136230e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.578644037246704102e-01,9.565274119377136230e-01,1.719799995422363281e+01,1.173999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.135423946380615234e+01,2.464776625856757164e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.755339920520782471e-01,9.601686596870422363e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.755339920520782471e-01,9.601686596870422363e-01,1.663199996948242188e+01,1.231999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.215924167633056641e+01,4.910766147077083588e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.617618024349212646e-01,9.476050138473510742e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.617618024349212646e-01,9.476050138473510742e-01,1.693199920654296875e+01,1.272000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.954099655151367188e+00,2.932113129645586014e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.922383427619934082e-01,9.592294692993164062e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.922383427619934082e-01,9.592294692993164062e-01,1.663599967956542969e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.256544685363769531e+01,1.138735795393586159e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.911211133003234863e-01,9.688592553138732910e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.911211133003234863e-01,9.688592553138732910e-01,1.635400009155273438e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.330948734283447266e+01,1.629349077120423317e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.691685438156127930e-01,9.663695096969604492e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.691685438156127930e-01,9.663695096969604492e-01,1.665999984741210938e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.041521072387695312e+01,1.981548732146620750e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.878521859645843506e-01,9.649569392204284668e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.878521859645843506e-01,9.649569392204284668e-01,1.639200019836425781e+01,1.165999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.228411102294921875e+01,6.930548232048749924e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.615613520145416260e-01,9.388729929924011230e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.615613520145416260e-01,9.388729929924011230e-01,1.710000038146972656e+01,1.293999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.599647521972656250e+00,6.786871235817670822e-04,1.000000000000000000e+00,9.736213684082031250e-01,5.002769231796264648e-01,9.726395010948181152e-01,1.000000000000000000e+00,9.736213684082031250e-01,5.002769231796264648e-01,9.726395010948181152e-01,1.656599998474121094e+01,1.100000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.988997459411621094e+00,2.633691299706697464e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.710490405559539795e-01,9.620514512062072754e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.710490405559539795e-01,9.620514512062072754e-01,1.671199989318847656e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.003506278991699219e+01,2.559258136898279190e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.627576768398284912e-01,9.603675007820129395e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.627576768398284912e-01,9.603675007820129395e-01,1.800600051879882812e+01,1.243999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.093703460693359375e+01,3.787658410146832466e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.656613767147064209e-01,9.578397274017333984e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.656613767147064209e-01,9.578397274017333984e-01,1.735600090026855469e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.153186035156250000e+01,5.355886649340391159e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.545949399471282959e-01,9.443048834800720215e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.545949399471282959e-01,9.443048834800720215e-01,1.745400047302246094e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.250327491760253906e+01,1.742479042150080204e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.497613608837127686e-01,9.659950137138366699e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.497613608837127686e-01,9.659950137138366699e-01,1.778199958801269531e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.567855834960937500e+00,1.110946410335600376e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.920727014541625977e-01,9.689208269119262695e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.920727014541625977e-01,9.689208269119262695e-01,1.732200050354003906e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.156103706359863281e+01,5.102264694869518280e-03,1.000000000000000000e+00,9.748692512512207031e-01,4.484462738037109375e-01,9.465669393539428711e-01,1.000000000000000000e+00,9.748692512512207031e-01,4.484462738037109375e-01,9.465669393539428711e-01,1.721400070190429688e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.350506782531738281e+00,3.402581904083490372e-03,1.000000000000000000e+00,9.748692512512207031e-01,4.719943106174468994e-01,9.561221599578857422e-01,1.000000000000000000e+00,9.748692512512207031e-01,4.719943106174468994e-01,9.561221599578857422e-01,1.696599960327148438e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.129616260528564453e+01,6.506682839244604111e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.699597954750061035e-01,9.731428623199462891e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.699597954750061035e-01,9.731428623199462891e-01,1.700799942016601562e+01,1.084000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,8.928158760070800781e+00,9.800598490983247757e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.917649626731872559e-01,9.703950881958007812e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.917649626731872559e-01,9.703950881958007812e-01,1.715600013732910156e+01,1.188000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.039778327941894531e+01,5.815430544316768646e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.633553624153137207e-01,9.427669644355773926e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.633553624153137207e-01,9.427669644355773926e-01,1.722200012207031250e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.959553909301757812e+01,6.490867817774415016e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.595147669315338135e-01,9.732141494750976562e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.595147669315338135e-01,9.732141494750976562e-01,1.701799964904785156e+01,1.077999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.047196483612060547e+01,6.483196746557950974e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.547526538372039795e-01,9.425283074378967285e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.547526538372039795e-01,9.425283074378967285e-01,1.741200065612792969e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.041673278808593750e+01,7.159057073295116425e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.602925777435302734e-01,9.465681910514831543e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.602925777435302734e-01,9.465681910514831543e-01,1.780200004577636719e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.293094730377197266e+01,7.228413014672696590e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.543329775333404541e-01,9.719102382659912109e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.543329775333404541e-01,9.719102382659912109e-01,1.779599952697753906e+01,1.111999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.145463943481445312e+01,2.876548329368233681e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.555473923683166504e-01,9.596965312957763672e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.555473923683166504e-01,9.596965312957763672e-01,1.790800094604492188e+01,1.126000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.117660999298095703e+01,6.274074548855423927e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.779894351959228516e-01,9.735907316207885742e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.779894351959228516e-01,9.735907316207885742e-01,1.747400093078613281e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.278488254547119141e+01,7.955981418490409851e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.280150234699249268e-01,9.430898427963256836e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.280150234699249268e-01,9.430898427963256836e-01,1.841200065612792969e+01,1.219999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.176758480072021484e+01,6.867547635920345783e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.593786001205444336e-01,9.725265502929687500e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.593786001205444336e-01,9.725265502929687500e-01,1.761000061035156250e+01,1.139999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.282615852355957031e+01,7.177732768468558788e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.633481502532958984e-01,9.719778299331665039e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.633481502532958984e-01,9.719778299331665039e-01,1.785799980163574219e+01,1.080000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.076111221313476562e+01,5.003213416785001755e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.633208215236663818e-01,9.479827284812927246e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.633208215236663818e-01,9.479827284812927246e-01,1.766799926757812500e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.056234169006347656e+01,6.370579358190298080e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.677228629589080811e-01,9.734196066856384277e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.677228629589080811e-01,9.734196066856384277e-01,1.713800048828125000e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.037223625183105469e+01,7.617517258040606976e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.727170169353485107e-01,9.719022512435913086e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.727170169353485107e-01,9.719022512435913086e-01,1.745800018310546875e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.148849105834960938e+01,1.068282220512628555e-02,1.000000000000000000e+00,9.788492321968078613e-01,4.387944340705871582e-01,9.298949241638183594e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.387944340705871582e-01,9.298949241638183594e-01,1.820000076293945312e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.968050003051757812e+00,7.936351932585239410e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.718974530696868896e-01,9.421495199203491211e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.718974530696868896e-01,9.421495199203491211e-01,1.796599960327148438e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.313982295989990234e+01,7.541332859545946121e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.592172801494598389e-01,9.396349191665649414e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.592172801494598389e-01,9.396349191665649414e-01,1.781999969482421875e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.001665973663330078e+01,7.057444308884441853e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.776451885700225830e-01,9.721832871437072754e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.776451885700225830e-01,9.721832871437072754e-01,1.718600082397460938e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.286327075958251953e+01,5.362911615520715714e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.506666362285614014e-01,9.494382143020629883e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.506666362285614014e-01,9.494382143020629883e-01,1.642600059509277344e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.163698673248291016e+01,4.744035191833972931e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.568046331405639648e-01,9.487004876136779785e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.568046331405639648e-01,9.487004876136779785e-01,1.648800086975097656e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.050295829772949219e+01,8.693788549862802029e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.861892759799957275e-01,9.712878465652465820e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.861892759799957275e-01,9.712878465652465820e-01,1.618199920654296875e+01,1.111999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.766219139099121094e+00,6.413290975615382195e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.972207844257354736e-01,9.733150601387023926e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.972207844257354736e-01,9.733150601387023926e-01,1.670599937438964844e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.715566635131835938e+00,4.140957724303007126e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.755437672138214111e-01,9.528952836990356445e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.755437672138214111e-01,9.528952836990356445e-01,1.657799911499023438e+01,1.180000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.079351234436035156e+01,8.873448707163333893e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.695263206958770752e-01,9.334753751754760742e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.695263206958770752e-01,9.334753751754760742e-01,1.676600074768066406e+01,1.272000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.518136978149414062e+00,2.867418574169278145e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.722671210765838623e-01,9.605837464332580566e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.722671210765838623e-01,9.605837464332580566e-01,1.704999923706054688e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.263083457946777344e+00,1.278034411370754242e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.855144321918487549e-01,9.679664969444274902e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.855144321918487549e-01,9.679664969444274902e-01,1.700600051879882812e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.093296527862548828e+01,2.123620593920350075e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.550877809524536133e-01,9.642581343650817871e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.550877809524536133e-01,9.642581343650817871e-01,1.780200004577636719e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.134013271331787109e+01,2.905050525441765785e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.458993673324584961e-01,9.602341055870056152e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.458993673324584961e-01,9.602341055870056152e-01,1.768000030517578125e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.057862663269042969e+01,8.835104294121265411e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.566006362438201904e-01,9.365254044532775879e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.566006362438201904e-01,9.365254044532775879e-01,1.775799942016601562e+01,1.376000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.630412483215332031e+01,7.461667992174625397e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.612411260604858398e-01,9.717673659324645996e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.612411260604858398e-01,9.717673659324645996e-01,1.766600036621093750e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.240602207183837891e+01,4.468425642699003220e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.430866539478302002e-01,9.529716372489929199e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.430866539478302002e-01,9.529716372489929199e-01,1.835000038146972656e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.455517578125000000e+01,6.533579435199499130e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.478097856044769287e-01,9.731096029281616211e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.478097856044769287e-01,9.731096029281616211e-01,1.794199943542480469e+01,1.089999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.342806243896484375e+01,4.831365775316953659e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.501104652881622314e-01,9.549133181571960449e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.501104652881622314e-01,9.549133181571960449e-01,1.752000045776367188e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.146550655364990234e+01,1.276949769817292690e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.504894316196441650e-01,9.687676429748535156e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.504894316196441650e-01,9.687676429748535156e-01,1.734199905395507812e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.030124568939208984e+01,9.081724565476179123e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.734014570713043213e-01,9.708358645439147949e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.734014570713043213e-01,9.708358645439147949e-01,1.724799919128417969e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.721698760986328125e+00,9.826722089201211929e-04,1.000000000000000000e+00,9.736213684082031250e-01,5.035037398338317871e-01,9.705884456634521484e-01,1.000000000000000000e+00,9.736213684082031250e-01,5.035037398338317871e-01,9.705884456634521484e-01,1.627000045776367188e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.048410415649414062e+01,3.606668673455715179e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.756071865558624268e-01,9.552258849143981934e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.756071865558624268e-01,9.552258849143981934e-01,1.717399978637695312e+01,1.227999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.106914615631103516e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.995105266571044922e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.995105266571044922e-01,9.736213684082031250e-01,1.690800094604492188e+01,1.022000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.997184753417968750e+00,3.241672413423657417e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.806395471096038818e-01,9.563995599746704102e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.806395471096038818e-01,9.563995599746704102e-01,1.694799995422363281e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.149141120910644531e+01,3.341754432767629623e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.741748273372650146e-01,9.570851325988769531e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.741748273372650146e-01,9.570851325988769531e-01,1.671400070190429688e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.215893173217773438e+01,3.438172861933708191e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.702386260032653809e-01,9.575430154800415039e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.702386260032653809e-01,9.575430154800415039e-01,1.746800041198730469e+01,1.218000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.936758995056152344e+00,2.237526467069983482e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.694020450115203857e-01,9.626713395118713379e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.694020450115203857e-01,9.626713395118713379e-01,1.671800041198730469e+01,1.243999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.292283821105957031e+01,1.729069626890122890e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.751394093036651611e-01,9.664081335067749023e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.751394093036651611e-01,9.664081335067749023e-01,1.729999923706054688e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.966508865356445312e+00,1.304926816374063492e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.749833345413208008e-01,9.689114093780517578e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.749833345413208008e-01,9.689114093780517578e-01,1.704599952697753906e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.639099121093750000e+00,2.036848803982138634e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.827791750431060791e-01,9.635267257690429688e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.827791750431060791e-01,9.635267257690429688e-01,1.797599983215332031e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.102681255340576172e+01,2.155411057174205780e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.571193456649780273e-01,9.636715650558471680e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.571193456649780273e-01,9.636715650558471680e-01,1.785799980163574219e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.136988735198974609e+01,3.132375655695796013e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.418239891529083252e-01,9.587460756301879883e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.418239891529083252e-01,9.587460756301879883e-01,1.775000000000000000e+01,1.168000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.454261589050292969e+01,1.959034241735935211e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.604479670524597168e-01,9.658084511756896973e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.604479670524597168e-01,9.658084511756896973e-01,1.769199943542480469e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.127638435363769531e+01,2.621485153213143349e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.689709842205047607e-01,9.610220193862915039e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.689709842205047607e-01,9.610220193862915039e-01,1.729599952697753906e+01,1.153999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,9.956217765808105469e+00,3.236641641706228256e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.617677330970764160e-01,9.572062492370605469e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.617677330970764160e-01,9.572062492370605469e-01,1.751000022888183594e+01,1.257999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.228319740295410156e+01,6.130003021098673344e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.732777476310729980e-01,9.738304615020751953e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.732777476310729980e-01,9.738304615020751953e-01,1.720800018310546875e+01,1.065999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.300857734680175781e+01,1.484886161051690578e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.594552218914031982e-01,9.680078625679016113e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.594552218914031982e-01,9.680078625679016113e-01,1.655800056457519531e+01,1.192000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.941719055175781250e+00,9.755792561918497086e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.939160645008087158e-01,9.704376459121704102e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.939160645008087158e-01,9.704376459121704102e-01,1.728800010681152344e+01,1.157999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.040452289581298828e+01,5.818591453135013580e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.578935801982879639e-01,9.445411562919616699e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.578935801982879639e-01,9.445411562919616699e-01,1.727199935913085938e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.308369827270507812e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.732027649879455566e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.732027649879455566e-01,9.730050563812255859e-01,1.692399978637695312e+01,1.046000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.008154106140136719e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.990879893302917480e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.990879893302917480e-01,9.736213684082031250e-01,1.670800018310546875e+01,1.018000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.012799930572509766e+01,6.867547635920345783e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.788455665111541748e-01,9.725265502929687500e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.788455665111541748e-01,9.725265502929687500e-01,1.692799949645996094e+01,1.127999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.447272396087646484e+01,1.555381109938025475e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.547375142574310303e-01,9.684863686561584473e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.547375142574310303e-01,9.684863686561584473e-01,1.729000091552734375e+01,1.139999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.133659076690673828e+01,3.105405485257506371e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.598844051361083984e-01,9.592460393905639648e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.598844051361083984e-01,9.592460393905639648e-01,1.743000030517578125e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.227033138275146484e+01,3.704064525663852692e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.522565603256225586e-01,9.596101641654968262e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.522565603256225586e-01,9.596101641654968262e-01,1.778800010681152344e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.295363712310791016e+01,1.180666615255177021e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.501708149909973145e-01,9.695769548416137695e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.501708149909973145e-01,9.695769548416137695e-01,1.782799911499023438e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.207722759246826172e+01,2.273029880598187447e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.441390335559844971e-01,9.630412459373474121e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.441390335559844971e-01,9.630412459373474121e-01,1.764599990844726562e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.226931095123291016e+01,2.383350627496838570e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.637415707111358643e-01,9.616100192070007324e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.637415707111358643e-01,9.616100192070007324e-01,1.764999961853027344e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.108931636810302734e+01,7.097342167980968952e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.733836054801940918e-01,9.721436500549316406e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.733836054801940918e-01,9.721436500549316406e-01,1.726000022888183594e+01,1.118000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.275951862335205078e+01,1.006591506302356720e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.326422512531280518e-01,9.359714388847351074e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.326422512531280518e-01,9.359714388847351074e-01,1.755400085449218750e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.164961624145507812e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.702953994274139404e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.702953994274139404e-01,9.732105135917663574e-01,1.655599975585937500e+01,1.019999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.049758911132812500e+01,3.950302954763174057e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.651527106761932373e-01,9.537062644958496094e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.651527106761932373e-01,9.537062644958496094e-01,1.733600044250488281e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,2.211437677033245564e-04,1.179844570159912109e+01,6.667179986834526062e-04,1.000000000000000000e+00,9.840153455734252930e-01,4.630124568939208984e-01,9.729399085044860840e-01,1.000000000000000000e+00,9.840153455734252930e-01,4.630124568939208984e-01,9.729399085044860840e-01,1.775200080871582031e+01,1.153999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.313825893402099609e+01,7.255309610627591610e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.816857278347015381e-01,9.718769788742065430e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.816857278347015381e-01,9.718769788742065430e-01,1.746999931335449219e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.159532451629638672e+01,7.038138573989272118e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.623543620109558105e-01,9.722372293472290039e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.623543620109558105e-01,9.722372293472290039e-01,1.839800071716308594e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.099916172027587891e+01,4.449827596545219421e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.511650502681732178e-01,9.511895775794982910e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.511650502681732178e-01,9.511895775794982910e-01,1.804800033569335938e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.398848342895507812e+01,6.851732614450156689e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.420358538627624512e-01,9.725978374481201172e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.420358538627624512e-01,9.725978374481201172e-01,1.853599929809570312e+01,1.164000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.838294982910156250e+01,7.014732691459357738e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.199637472629547119e-01,9.722878336906433105e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.199637472629547119e-01,9.722878336906433105e-01,1.935000038146972656e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.647458648681640625e+01,3.139731241390109062e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.137144386768341064e-01,9.619333148002624512e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.137144386768341064e-01,9.619333148002624512e-01,2.067799949645996094e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.628082656860351562e+01,3.127720206975936890e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.089154303073883057e-01,9.605802893638610840e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.089154303073883057e-01,9.605802893638610840e-01,1.983399963378906250e+01,1.231999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.477853202819824219e+01,1.013395562767982483e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.090038836002349854e-01,9.344603419303894043e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.090038836002349854e-01,9.344603419303894043e-01,1.985799980163574219e+01,1.253999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.529652214050292969e+01,1.064890995621681213e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.184064865112304688e-01,9.348613023757934570e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.184064865112304688e-01,9.348613023757934570e-01,1.975200080871582031e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.072364234924316406e+01,1.264177076518535614e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.373054206371307373e-01,9.215228557586669922e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.373054206371307373e-01,9.215228557586669922e-01,1.946599960327148438e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.444562435150146484e+01,3.993732854723930359e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.405578374862670898e-01,9.536785483360290527e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.405578374862670898e-01,9.536785483360290527e-01,1.897200012207031250e+01,1.252000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.465691280364990234e+01,3.286635736003518105e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.533939361572265625e-01,9.573528766632080078e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.533939361572265625e-01,9.573528766632080078e-01,1.810400009155273438e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.299367809295654297e+01,3.610471263527870178e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.390618801116943359e-01,9.553382396697998047e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.390618801116943359e-01,9.553382396697998047e-01,1.825600051879882812e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.262066745758056641e+01,9.968795813620090485e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.435718059539794922e-01,9.326847791671752930e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.435718059539794922e-01,9.326847791671752930e-01,1.750200080871582031e+01,1.372000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.272764587402343750e+01,9.578868048265576363e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.621824026107788086e-01,9.708401560783386230e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.621824026107788086e-01,9.708401560783386230e-01,1.753599929809570312e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.406497859954833984e+01,1.524120569229125977e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.361896812915802002e-01,9.667538404464721680e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.361896812915802002e-01,9.667538404464721680e-01,1.792200088500976562e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.242646217346191406e+01,2.713643480092287064e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.584788680076599121e-01,9.610890746116638184e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.584788680076599121e-01,9.610890746116638184e-01,1.777799987792968750e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.117420101165771484e+01,6.615520687773823738e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.740399718284606934e-01,9.729183912277221680e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.740399718284606934e-01,9.729183912277221680e-01,1.750399971008300781e+01,1.093999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.226927566528320312e+01,5.899268202483654022e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.559974074363708496e-01,9.440941810607910156e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.559974074363708496e-01,9.440941810607910156e-01,1.752799987792968750e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.169558525085449219e+01,4.036275669932365417e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.446412026882171631e-01,9.532426595687866211e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.446412026882171631e-01,9.532426595687866211e-01,1.772800064086914062e+01,1.243999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.311876296997070312e+01,4.552944563329219818e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.409480392932891846e-01,9.495767951011657715e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.409480392932891846e-01,9.495767951011657715e-01,1.821800041198730469e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.210557460784912109e+01,8.477008901536464691e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.454580843448638916e-01,9.368110299110412598e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.454580843448638916e-01,9.368110299110412598e-01,1.881200027465820312e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.463131999969482422e+01,2.704813145101070404e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.265948534011840820e-01,9.607385396957397461e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.265948534011840820e-01,9.607385396957397461e-01,1.849200057983398438e+01,1.234000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.512627315521240234e+01,3.121054964140057564e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.252319931983947754e-01,9.578810930252075195e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.252319931983947754e-01,9.578810930252075195e-01,1.854999923706054688e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.542328262329101562e+01,3.069950034841895103e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.246066808700561523e-01,9.591447710990905762e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.246066808700561523e-01,9.591447710990905762e-01,1.861599922180175781e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.518701934814453125e+01,4.815029446035623550e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.358792304992675781e-01,9.497394561767578125e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.358792304992675781e-01,9.497394561767578125e-01,1.863400077819824219e+01,1.256000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.312300205230712891e+01,6.293003098107874393e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.449825882911682129e-01,9.735204577445983887e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.449825882911682129e-01,9.735204577445983887e-01,1.839599990844726562e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.069482612609863281e+01,2.886840142309665680e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.247123003005981445e-01,9.580711126327514648e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.247123003005981445e-01,9.580711126327514648e-01,1.872999954223632812e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.374655723571777344e+01,1.205264125019311905e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.215543568134307861e-01,9.704253077507019043e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.215543568134307861e-01,9.704253077507019043e-01,1.764599990844726562e+01,1.110000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.664727592468261719e+01,1.294696587137877941e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.169890582561492920e-01,9.691358804702758789e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.169890582561492920e-01,9.691358804702758789e-01,1.900000000000000000e+01,1.123999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.557522201538085938e+01,1.055698376148939133e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.362680912017822266e-01,9.714192748069763184e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.362680912017822266e-01,9.714192748069763184e-01,1.793799972534179688e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.405284214019775391e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.431025683879852295e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.431025683879852295e-01,9.736213684082031250e-01,1.762199974060058594e+01,1.023999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.271054553985595703e+01,7.340981974266469479e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.514732658863067627e-01,9.717426896095275879e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.514732658863067627e-01,9.717426896095275879e-01,1.749799919128417969e+01,1.184000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.177999114990234375e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.703309535980224609e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.703309535980224609e-01,9.736213684082031250e-01,1.789999961853027344e+01,1.000000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.663278961181640625e+01,1.159820938482880592e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.350191652774810791e-01,9.703164696693420410e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.350191652774810791e-01,9.703164696693420410e-01,1.865200042724609375e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.584830379486083984e+01,6.875138496980071068e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.396265149116516113e-01,9.725472331047058105e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.396265149116516113e-01,9.725472331047058105e-01,1.900799942016601562e+01,1.215999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.325550842285156250e+02,6.370579358190298080e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.291744530200958252e-01,9.734196066856384277e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.291744530200958252e-01,9.734196066856384277e-01,1.922599983215332031e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.950119590759277344e+01,1.050684601068496704e-02,1.000000000000000000e+00,9.736213684082031250e-01,4.167197942733764648e-01,9.379346966743469238e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.167197942733764648e-01,9.379346966743469238e-01,1.959000015258789062e+01,1.384000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.790205574035644531e+01,8.118075202219188213e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.136466383934020996e-01,9.718377590179443359e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.136466383934020996e-01,9.718377590179443359e-01,1.917399978637695312e+01,1.193999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.994489669799804688e+01,5.005145911127328873e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.117060899734497070e-01,9.557458162307739258e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.117060899734497070e-01,9.557458162307739258e-01,2.000000000000000000e+01,1.307999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.644413757324218750e+01,1.022267621010541916e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.987364172935485840e-01,9.313381910324096680e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.987364172935485840e-01,9.313381910324096680e-01,2.022800064086914062e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.738019561767578125e+01,6.781238596886396408e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.954655230045318604e-01,9.474909901618957520e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.954655230045318604e-01,9.474909901618957520e-01,2.011599922180175781e+01,1.218000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.529487895965576172e+01,2.256046514958143234e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.326151609420776367e-01,9.649015069007873535e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.326151609420776367e-01,9.649015069007873535e-01,1.971400070190429688e+01,1.284000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.624082946777343750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.358713030815124512e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.358713030815124512e-01,9.736213684082031250e-01,1.879999923706054688e+01,1.073999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.662428665161132812e+01,6.786185316741466522e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.080021083354949951e-01,9.402700066566467285e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.080021083354949951e-01,9.402700066566467285e-01,1.913999938964843750e+01,1.368000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.749861335754394531e+01,4.189299885183572769e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.052549004554748535e-01,9.557864069938659668e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.052549004554748535e-01,9.557864069938659668e-01,1.860400009155273438e+01,1.327999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.426374340057373047e+01,3.673476632684469223e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.263652563095092773e-01,9.555443525314331055e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.263652563095092773e-01,9.555443525314331055e-01,1.896800041198730469e+01,1.265999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.508660411834716797e+01,2.222998766228556633e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.205344617366790771e-01,9.632780551910400391e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.205344617366790771e-01,9.632780551910400391e-01,1.877199935913085938e+01,1.230000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.614591789245605469e+01,7.969568832777440548e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.197292923927307129e-01,9.717878699302673340e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.197292923927307129e-01,9.717878699302673340e-01,1.833600044250488281e+01,1.114000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.788200569152832031e+01,3.649458056315779686e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.325949251651763916e-01,9.544180035591125488e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.325949251651763916e-01,9.544180035591125488e-01,1.864399909973144531e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.693783378601074219e+01,1.382198766805231571e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.154533445835113525e-01,9.694746732711791992e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.154533445835113525e-01,9.694746732711791992e-01,1.837400054931640625e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.761897659301757812e+01,8.281075279228389263e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.156343936920166016e-01,9.715277552604675293e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.156343936920166016e-01,9.715277552604675293e-01,1.931999969482421875e+01,1.153999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.780257987976074219e+01,1.973965205252170563e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.137523472309112549e-01,9.648916125297546387e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.137523472309112549e-01,9.648916125297546387e-01,1.901399993896484375e+01,1.319999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.920085906982421875e+01,8.608453907072544098e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.043740332126617432e-01,9.365303516387939453e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.043740332126617432e-01,9.365303516387939453e-01,1.852799987792968750e+01,1.330000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.038312149047851562e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.221098721027374268e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.221098721027374268e-01,9.734159111976623535e-01,1.892399978637695312e+01,1.150000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.782476806640625000e+01,2.549084834754467010e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.020260870456695557e-01,9.617335200309753418e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.020260870456695557e-01,9.617335200309753418e-01,1.963199996948242188e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.764156341552734375e+01,3.516982076689600945e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.997777998447418213e-01,9.594444036483764648e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.997777998447418213e-01,9.594444036483764648e-01,1.946400070190429688e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.133382415771484375e+01,4.605781286954879761e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.979602158069610596e-01,9.498972892761230469e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.979602158069610596e-01,9.498972892761230469e-01,1.952199935913085938e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.918620872497558594e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.212619662284851074e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.212619662284851074e-01,9.737259149551391602e-01,1.905999946594238281e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.668973731994628906e+01,1.562805729918181896e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.990359008312225342e-01,9.671455025672912598e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.990359008312225342e-01,9.671455025672912598e-01,1.902599906921386719e+01,1.160000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.535394859313964844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.266769886016845703e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.266769886016845703e-01,9.736213684082031250e-01,1.866200065612792969e+01,1.181999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.740690612792968750e+01,4.419101867824792862e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.892138600349426270e-01,9.533177018165588379e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.892138600349426270e-01,9.533177018165588379e-01,1.924200057983398438e+01,1.242000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.741156196594238281e+01,2.350330818444490433e-03,1.000000000000000000e+00,9.788492321968078613e-01,4.053142070770263672e-01,9.620252847671508789e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.053142070770263672e-01,9.620252847671508789e-01,1.858399963378906250e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.838819885253906250e+01,2.626607194542884827e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.048434793949127197e-01,9.616010785102844238e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.048434793949127197e-01,9.616010785102844238e-01,1.792799949645996094e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.500613784790039062e+01,2.206655219197273254e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.169308543205261230e-01,9.646440744400024414e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.169308543205261230e-01,9.646440744400024414e-01,1.850799942016601562e+01,1.130000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.691595268249511719e+01,4.250617232173681259e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.113918244838714600e-01,9.521767497062683105e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.113918244838714600e-01,9.521767497062683105e-01,1.801199913024902344e+01,1.143999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.920794486999511719e+01,4.997853189706802368e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.010767638683319092e-01,9.500793218612670898e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.010767638683319092e-01,9.500793218612670898e-01,1.854400062561035156e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.638611755371093750e+02,6.266106502152979374e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.137250483036041260e-01,9.735537767410278320e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.137250483036041260e-01,9.735537767410278320e-01,1.837000083923339844e+01,1.135999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.492204761505126953e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.273796081542968750e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.273796081542968750e-01,9.737259149551391602e-01,1.778199958801269531e+01,1.069999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.769992828369140625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.295562803745269775e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.295562803745269775e-01,9.736213684082031250e-01,1.827000045776367188e+01,1.146000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.859778976440429688e+01,4.151931498199701309e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.009315967559814453e-01,9.543972015380859375e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.009315967559814453e-01,9.543972015380859375e-01,1.809199905395507812e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.797741889953613281e+01,5.010878667235374451e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.981192111968994141e-01,9.474556446075439453e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.981192111968994141e-01,9.474556446075439453e-01,1.920599937438964844e+01,1.302000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.918025398254394531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.195449352264404297e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.195449352264404297e-01,9.736213684082031250e-01,1.889399909973144531e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.198223495483398438e+01,6.296382751315832138e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.720885217189788818e-01,9.456591010093688965e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.720885217189788818e-01,9.456591010093688965e-01,2.011599922180175781e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,6.758186340332031250e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.949556648731231689e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.949556648731231689e-01,9.732105135917663574e-01,1.993400001525878906e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.946978569030761719e+01,8.922155946493148804e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.713916838169097900e-01,9.398773908615112305e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.713916838169097900e-01,9.398773908615112305e-01,2.006999969482421875e+01,1.323999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.130614089965820312e+01,1.717040780931711197e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.795361518859863281e-01,9.666135907173156738e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.795361518859863281e-01,9.666135907173156738e-01,2.110600090026855469e+01,1.172000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.896665954589843750e+01,1.494285883381962776e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.831757903099060059e-01,9.679515957832336426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.831757903099060059e-01,9.679515957832336426e-01,2.035199928283691406e+01,1.310000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.032818222045898438e+01,5.048166494816541672e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.824220597743988037e-01,9.560252428054809570e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.824220597743988037e-01,9.560252428054809570e-01,2.060799980163574219e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.126798820495605469e+01,8.040498942136764526e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.754249513149261475e-01,9.719386696815490723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.754249513149261475e-01,9.719386696815490723e-01,2.016399955749511719e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.110120010375976562e+01,5.955461878329515457e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.613647818565368652e-01,9.472117424011230469e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.613647818565368652e-01,9.472117424011230469e-01,2.080999946594238281e+01,1.273999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.076107406616210938e+01,1.055805012583732605e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.574493527412414551e-01,9.310397505760192871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.574493527412414551e-01,9.310397505760192871e-01,2.082600021362304688e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.932675743103027344e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.069648683071136475e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.069648683071136475e-01,9.736213684082031250e-01,2.001600074768066406e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.244406127929687500e+01,1.650001970119774342e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.812740445137023926e-01,9.664368033409118652e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.812740445137023926e-01,9.664368033409118652e-01,2.004999923706054688e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.255286216735839844e+01,6.696579512208700180e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.843637406826019287e-01,9.727995991706848145e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.843637406826019287e-01,9.727995991706848145e-01,1.970400047302246094e+01,1.184000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.110002899169921875e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.809166252613067627e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.809166252613067627e-01,9.732105135917663574e-01,2.020199966430664062e+01,1.196000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.173734283447265625e+01,7.974338717758655548e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.566335737705230713e-01,9.420400261878967285e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.566335737705230713e-01,9.420400261878967285e-01,1.987400054931640625e+01,1.407999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.272126388549804688e+01,5.364190787076950073e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.776302337646484375e-01,9.518864750862121582e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.776302337646484375e-01,9.518864750862121582e-01,1.990399932861328125e+01,1.176000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.331721878051757812e+01,6.061937194317579269e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.665112257003784180e-01,9.501538276672363281e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.665112257003784180e-01,9.501538276672363281e-01,2.035799980163574219e+01,1.360000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,1.958535766601562500e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,4.068420231342315674e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,4.068420231342315674e-01,9.737259149551391602e-01,1.939599990844726562e+01,1.139999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.278693237304687500e+03,1.308409497141838074e-03,1.000000000000000000e+00,9.736213684082031250e-01,4.022285342216491699e-01,9.690311551094055176e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.022285342216491699e-01,9.690311551094055176e-01,1.977599906921386719e+01,1.330000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.282262992858886719e+01,2.728337189182639122e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.773978948593139648e-01,9.610438942909240723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.773978948593139648e-01,9.610438942909240723e-01,1.963599967956542969e+01,1.276000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.931159019470214844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.984659314155578613e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.984659314155578613e-01,9.736213684082031250e-01,2.016600036621093750e+01,1.152000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.945492744445800781e+01,8.281075279228389263e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.827846944332122803e-01,9.715277552604675293e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.827846944332122803e-01,9.715277552604675293e-01,1.967000007629394531e+01,1.169999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.329210472106933594e+01,3.488389076665043831e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.473153114318847656e-01,9.584886431694030762e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.473153114318847656e-01,9.584886431694030762e-01,2.083799934387207031e+01,1.202000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.634005355834960938e+01,1.187114883214235306e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.530250489711761475e-01,9.312829971313476562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.530250489711761475e-01,9.312829971313476562e-01,2.005800056457519531e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.825455474853515625e+01,4.790405277162790298e-03,1.000000000000000000e+00,9.788492321968078613e-01,3.574030995368957520e-01,9.510827660560607910e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.574030995368957520e-01,9.510827660560607910e-01,2.120000076293945312e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.325699424743652344e+01,2.792705316096544266e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.586528599262237549e-01,9.616076350212097168e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.586528599262237549e-01,9.616076350212097168e-01,2.070000076293945312e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.356049537658691406e+01,1.126988045871257782e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.452567756175994873e-01,9.326281547546386719e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.452567756175994873e-01,9.326281547546386719e-01,2.142799949645996094e+01,1.384000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.297159385681152344e+01,1.752395182847976685e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.841528892517089844e-01,9.662652611732482910e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.841528892517089844e-01,9.662652611732482910e-01,2.127400016784667969e+01,1.264000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.073443031311035156e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.822482526302337646e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.822482526302337646e-01,9.734159111976623535e-01,2.022599983215332031e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.999911308288574219e+01,8.040498942136764526e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.747591376304626465e-01,9.719386696815490723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.747591376304626465e-01,9.719386696815490723e-01,2.005200004577636719e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.059894180297851562e+01,9.662586380727589130e-04,1.000000000000000000e+00,1.000000000000000000e+00,3.800527453422546387e-01,9.719499945640563965e-01,1.000000000000000000e+00,1.000000000000000000e+00,3.800527453422546387e-01,9.719499945640563965e-01,2.053599929809570312e+01,1.200000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.499763870239257812e+01,2.882848726585507393e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.756579756736755371e-01,9.602138996124267578e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.756579756736755371e-01,9.602138996124267578e-01,2.019400024414062500e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.086568450927734375e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.873026669025421143e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.873026669025421143e-01,9.736213684082031250e-01,1.943000030517578125e+01,1.222000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.934623336791992188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.686412870883941650e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.686412870883941650e-01,9.736213684082031250e-01,1.976799964904785156e+01,1.226000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.209378623962402344e+01,1.680954359471797943e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.820641934871673584e-01,9.672299027442932129e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.820641934871673584e-01,9.672299027442932129e-01,2.011000061035156250e+01,1.272000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.306385040283203125e+01,6.946374662220478058e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.514374792575836182e-01,9.459498524665832520e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.514374792575836182e-01,9.459498524665832520e-01,2.001600074768066406e+01,1.435999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.355330848693847656e+01,1.055698376148939133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.579584062099456787e-01,9.714192748069763184e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.579584062099456787e-01,9.714192748069763184e-01,2.015600013732910156e+01,1.250000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.111497497558593750e+01,7.375508081167936325e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.696208000183105469e-01,9.441713094711303711e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.696208000183105469e-01,9.441713094711303711e-01,2.006200027465820312e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.626765632629394531e+01,3.670332254841923714e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.706131279468536377e-01,9.584611654281616211e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.706131279468536377e-01,9.584611654281616211e-01,1.989200019836425781e+01,1.307999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.183232116699218750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.028301835060119629e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.028301835060119629e-01,9.736213684082031250e-01,1.937400054931640625e+01,1.072000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.256299972534179688e+01,2.657322911545634270e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.807550072669982910e-01,9.638611078262329102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.807550072669982910e-01,9.638611078262329102e-01,2.042399978637695312e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.523770332336425781e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.915709555149078369e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.915709555149078369e-01,9.736213684082031250e-01,1.968600082397460938e+01,1.138000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.440865516662597656e+01,4.096780437976121902e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.526536226272583008e-01,9.532752037048339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.526536226272583008e-01,9.532752037048339844e-01,2.051399993896484375e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.235163497924804688e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.675521910190582275e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.675521910190582275e-01,9.730050563812255859e-01,2.102199935913085938e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.372861480712890625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.839671015739440918e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.839671015739440918e-01,9.736213684082031250e-01,2.025399971008300781e+01,1.223999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.324093437194824219e+01,1.178061473183333874e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.612071275711059570e-01,9.707637429237365723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.612071275711059570e-01,9.707637429237365723e-01,2.028400039672851562e+01,1.292000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.002296257019042969e+01,1.745934365317225456e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.458284139633178711e-01,9.674322009086608887e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.458284139633178711e-01,9.674322009086608887e-01,2.103400039672851562e+01,1.364000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.492068672180175781e+01,1.133496966212987900e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.244052231311798096e-01,9.329009056091308594e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.244052231311798096e-01,9.329009056091308594e-01,2.182200050354003906e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.675581741333007812e+01,1.380973146297037601e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.367669880390167236e-01,9.690966606140136719e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.367669880390167236e-01,9.690966606140136719e-01,2.165200042724609375e+01,1.319999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.424845886230468750e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.621332943439483643e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.621332943439483643e-01,9.737259149551391602e-01,2.233600044250488281e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.719524383544921875e+01,9.533934295177459717e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.402580022811889648e-01,9.379664063453674316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.402580022811889648e-01,9.379664063453674316e-01,2.182600021362304688e+01,1.464000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.321511268615722656e+01,4.185364581644535065e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.531608581542968750e-01,9.566456079483032227e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.531608581542968750e-01,9.566456079483032227e-01,2.167799949645996094e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.600643920898437500e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.548218905925750732e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.548218905925750732e-01,9.737259149551391602e-01,2.128599929809570312e+01,1.257999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.644353103637695312e+01,1.038833637721836567e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.446908891201019287e-01,9.703952074050903320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.446908891201019287e-01,9.703952074050903320e-01,2.049600028991699219e+01,1.293999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.534421157836914062e+01,1.241350546479225159e-03,1.000000000000000000e+00,9.788492321968078613e-01,3.607606589794158936e-01,9.698089957237243652e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.607606589794158936e-01,9.698089957237243652e-01,2.080999946594238281e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.683613586425781250e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.802968561649322510e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.802968561649322510e-01,9.732105135917663574e-01,2.063800048828125000e+01,1.193999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.847964859008789062e+01,1.555381109938025475e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.440319299697875977e-01,9.684863686561584473e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.440319299697875977e-01,9.684863686561584473e-01,2.093600082397460938e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.481596755981445312e+01,1.812095171771943569e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.669089376926422119e-01,9.657649993896484375e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.669089376926422119e-01,9.657649993896484375e-01,2.041200065612792969e+01,1.310000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.674281501770019531e+01,2.395248040556907654e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.491786420345306396e-01,9.628319740295410156e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.491786420345306396e-01,9.628319740295410156e-01,2.087000083923339844e+01,1.360000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.544417381286621094e+01,1.797991106286644936e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.655484318733215332e-01,9.663472771644592285e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.655484318733215332e-01,9.663472771644592285e-01,2.030599975585937500e+01,1.269999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.447084045410156250e+01,1.019611838273704052e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.607170283794403076e-01,9.720355868339538574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.607170283794403076e-01,9.720355868339538574e-01,2.074399948120117188e+01,1.373999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.032330894470214844e+01,2.359161619096994400e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.513205945491790771e-01,9.634482860565185547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.513205945491790771e-01,9.634482860565185547e-01,2.126399993896484375e+01,1.238000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.278930664062500000e+01,5.249210167676210403e-03,1.000000000000000000e+00,1.000000000000000000e+00,3.644121289253234863e-01,9.518057703971862793e-01,1.000000000000000000e+00,1.000000000000000000e+00,3.644121289253234863e-01,9.518057703971862793e-01,2.020999908447265625e+01,1.353999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.279455757141113281e+01,9.907182538881897926e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.666750788688659668e-01,9.712169766426086426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.666750788688659668e-01,9.712169766426086426e-01,2.136199951171875000e+01,1.203999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.051497268676757812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.871428072452545166e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.871428072452545166e-01,9.736213684082031250e-01,1.943400001525878906e+01,1.134000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.330785751342773438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.733314275741577148e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.733314275741577148e-01,9.736213684082031250e-01,1.975200080871582031e+01,1.197999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.174813461303710938e+01,1.412845216691493988e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.732711374759674072e-01,9.692202806472778320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.732711374759674072e-01,9.692202806472778320e-01,2.022800064086914062e+01,1.250000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.453083801269531250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.814010024070739746e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.814010024070739746e-01,9.736213684082031250e-01,1.925000000000000000e+01,1.246000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.624155998229980469e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.736148774623870850e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.736148774623870850e-01,9.730050563812255859e-01,2.044599914550781250e+01,1.335999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.463885307312011719e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.656012415885925293e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.656012415885925293e-01,9.736213684082031250e-01,2.034600067138671875e+01,1.207999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.983562088012695312e+01,3.004718106240034103e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.522212207317352295e-01,9.603821039199829102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.522212207317352295e-01,9.603821039199829102e-01,2.051399993896484375e+01,1.276000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.711578559875488281e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.453610539436340332e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.453610539436340332e-01,9.734159111976623535e-01,2.043000030517578125e+01,1.161999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.054372215270996094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.313131034374237061e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.313131034374237061e-01,9.736213684082031250e-01,2.195400047302246094e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.075366210937500000e+01,3.296995302662253380e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.353514671325683594e-01,9.599045515060424805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.353514671325683594e-01,9.599045515060424805e-01,2.168000030517578125e+01,1.368000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.121623802185058594e+01,2.615024335682392120e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.227806389331817627e-01,9.621889591217041016e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.227806389331817627e-01,9.621889591217041016e-01,2.209199905395507812e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.750890922546386719e+01,4.294393956661224365e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.107407093048095703e-01,9.014530777931213379e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.107407093048095703e-01,9.014530777931213379e-01,2.164599990844726562e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.162224578857421875e+01,6.014465820044279099e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.203277587890625000e-01,9.512659311294555664e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.203277587890625000e-01,9.512659311294555664e-01,2.177799987792968750e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.358482360839843750e+01,1.472772844135761261e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.451687991619110107e-01,9.287726879119873047e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.451687991619110107e-01,9.287726879119873047e-01,2.084199905395507812e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.509079551696777344e+01,1.043669530190527439e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.699715733528137207e-01,9.716246724128723145e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.699715733528137207e-01,9.716246724128723145e-01,2.059199905395507812e+01,1.334000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.406359672546386719e+01,1.031640684232115746e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.638957440853118896e-01,9.718301296234130859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.638957440853118896e-01,9.718301296234130859e-01,2.009600067138671875e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.131887817382812500e+01,2.371190348640084267e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.695659041404724121e-01,9.632428288459777832e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.695659041404724121e-01,9.632428288459777832e-01,1.955800056457519531e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,7.551104736328125000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.791415393352508545e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.791415393352508545e-01,9.736213684082031250e-01,1.931399917602539062e+01,1.230000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.226031494140625000e+01,9.786895243450999260e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.850933313369750977e-01,9.714223742485046387e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.850933313369750977e-01,9.714223742485046387e-01,1.930200004577636719e+01,1.261999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.650078010559082031e+01,7.799922022968530655e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.786540329456329346e-01,9.723495244979858398e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.786540329456329346e-01,9.723495244979858398e-01,1.938599967956542969e+01,1.239999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.004545974731445312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.933059871196746826e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.933059871196746826e-01,9.736213684082031250e-01,1.938800048828125000e+01,1.360000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.508080101013183594e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.903637230396270752e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.903637230396270752e-01,9.736213684082031250e-01,1.930200004577636719e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.511923980712890625e+01,1.680954359471797943e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.785035908222198486e-01,9.672299027442932129e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.785035908222198486e-01,9.672299027442932129e-01,1.881599998474121094e+01,1.289999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.511120605468750000e+01,3.037368645891547203e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.624267578125000000e-01,9.596666693687438965e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.624267578125000000e-01,9.596666693687438965e-01,2.040999984741210938e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.204579162597656250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.825187683105468750e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.825187683105468750e-01,9.736213684082031250e-01,2.024399948120117188e+01,1.352000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.354535102844238281e+01,4.214113112539052963e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.625918030738830566e-01,9.576179981231689453e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.625918030738830566e-01,9.576179981231689453e-01,2.006399917602539062e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.413204383850097656e+01,2.383219078183174133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.579123318195343018e-01,9.630374312400817871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.579123318195343018e-01,9.630374312400817871e-01,2.050799942016601562e+01,1.285999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.390250015258789062e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.825709223747253418e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.825709223747253418e-01,9.734159111976623535e-01,2.070999908447265625e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.585787773132324219e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.754150867462158203e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.754150867462158203e-01,9.736213684082031250e-01,2.067000007629394531e+01,1.350000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.345218658447265625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.786207139492034912e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.786207139492034912e-01,9.736213684082031250e-01,2.106999969482421875e+01,1.256000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.556740760803222656e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.672747313976287842e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.672747313976287842e-01,9.736213684082031250e-01,2.058799934387207031e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.835459136962890625e+01,1.007542130537331104e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.559928536415100098e-01,9.710360765457153320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.559928536415100098e-01,9.710360765457153320e-01,2.163400077819824219e+01,1.426000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.783498573303222656e+01,1.347865094430744648e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.424584567546844482e-01,9.690179824829101562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.424584567546844482e-01,9.690179824829101562e-01,2.172800064086914062e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.848458671569824219e+01,1.827375032007694244e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.533917069435119629e-01,9.661635160446166992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.533917069435119629e-01,9.661635160446166992e-01,2.229800033569335938e+01,1.426000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.389007186889648438e+01,2.614480676129460335e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.217356801033020020e-01,9.637960791587829590e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.217356801033020020e-01,9.637960791587829590e-01,2.295599937438964844e+01,1.373999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.040681266784667969e+01,2.038101200014352798e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.264195024967193604e-01,9.650309681892395020e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.264195024967193604e-01,9.650309681892395020e-01,2.297200012207031250e+01,1.381999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.802208328247070312e+01,9.666606201790273190e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.231264352798461914e-01,9.716278314590454102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.231264352798461914e-01,9.716278314590454102e-01,2.238400077819824219e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.998910140991210938e+01,1.721876673400402069e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.264673650264739990e-01,9.678430557250976562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.264673650264739990e-01,9.678430557250976562e-01,2.309399986267089844e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.721971511840820312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.510743677616119385e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.510743677616119385e-01,9.736213684082031250e-01,2.171199989318847656e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.003919792175292969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.483239710330963135e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.483239710330963135e-01,9.736213684082031250e-01,2.259000015258789062e+01,1.453999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.381946182250976562e+01,1.494285883381962776e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.199249505996704102e-01,9.679515957832336426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.199249505996704102e-01,9.679515957832336426e-01,2.305400085449218750e+01,1.647999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.683759689331054688e+01,1.499080914072692394e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.350994884967803955e-01,9.679761528968811035e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.350994884967803955e-01,9.679761528968811035e-01,2.237800025939941406e+01,1.430000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.961728096008300781e+01,2.156032482162117958e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.223687112331390381e-01,9.656409621238708496e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.223687112331390381e-01,9.656409621238708496e-01,2.244799995422363281e+01,1.343999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.013471794128417969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.396610915660858154e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.396610915660858154e-01,9.736213684082031250e-01,2.256399917602539062e+01,1.277999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.158319854736328125e+01,1.020535640418529510e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.113607168197631836e-01,9.385178685188293457e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.113607168197631836e-01,9.385178685188293457e-01,2.284799957275390625e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.096643066406250000e+01,1.055698376148939133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.413725197315216064e-01,9.714192748069763184e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.413725197315216064e-01,9.714192748069763184e-01,2.135799980163574219e+01,1.322000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.605625915527343750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.487028479576110840e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.487028479576110840e-01,9.736213684082031250e-01,2.165999984741210938e+01,1.411999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.824705696105957031e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.383139073848724365e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.383139073848724365e-01,9.732105135917663574e-01,2.122200012207031250e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.755186462402343750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.429346978664398193e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.429346978664398193e-01,9.736213684082031250e-01,2.148200035095214844e+01,1.393999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.807997131347656250e+01,1.547237159684300423e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.446560502052307129e-01,9.683593511581420898e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.446560502052307129e-01,9.683593511581420898e-01,2.183600044250488281e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.869892501831054688e+01,3.710336517542600632e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.217246830463409424e-01,9.595986604690551758e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.217246830463409424e-01,9.595986604690551758e-01,2.164999961853027344e+01,1.434000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.091621208190917969e+01,1.380138564854860306e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.234651386737823486e-01,9.361402392387390137e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.234651386737823486e-01,9.361402392387390137e-01,2.193199920654296875e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.683144187927246094e+01,1.835518982261419296e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.296509087085723877e-01,9.662905931472778320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.296509087085723877e-01,9.662905931472778320e-01,2.148999977111816406e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.588575935363769531e+01,1.993830781430006027e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.440471291542053223e-01,9.658143520355224609e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.440471291542053223e-01,9.658143520355224609e-01,2.054999923706054688e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.881081771850585938e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.536562919616699219e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.536562919616699219e-01,9.736213684082031250e-01,2.112400054931640625e+01,1.319999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.719978332519531250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.459222316741943359e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.459222316741943359e-01,9.736213684082031250e-01,2.137599945068359375e+01,1.365999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.394950866699218750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.751720786094665527e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.751720786094665527e-01,9.736213684082031250e-01,1.953199958801269531e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.663350105285644531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.676795363426208496e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.676795363426208496e-01,9.736213684082031250e-01,2.055999946594238281e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.873078369140625000e+03,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.611859679222106934e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.611859679222106934e-01,9.736213684082031250e-01,2.042799949645996094e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.166477775573730469e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.795079290866851807e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.795079290866851807e-01,9.734159111976623535e-01,2.054199981689453125e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.107483673095703125e+01,2.383219078183174133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.342483639717102051e-01,9.630374312400817871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.342483639717102051e-01,9.630374312400817871e-01,2.138199996948242188e+01,1.289999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.875467109680175781e+01,1.494285883381962776e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.416104912757873535e-01,9.679515957832336426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.416104912757873535e-01,9.679515957832336426e-01,2.153599929809570312e+01,1.403999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.666944503784179688e+01,1.174176577478647232e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.485216796398162842e-01,9.710962176322937012e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.485216796398162842e-01,9.710962176322937012e-01,2.084399986267089844e+01,1.502000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.064318466186523438e+01,1.680954359471797943e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.398534953594207764e-01,9.672299027442932129e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.398534953594207764e-01,9.672299027442932129e-01,2.156599998474121094e+01,1.447999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.083072090148925781e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.439053297042846680e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.439053297042846680e-01,9.736213684082031250e-01,2.168400001525878906e+01,1.314000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.064797782897949219e+01,7.200018037110567093e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.225175142288208008e-01,9.452794790267944336e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.225175142288208008e-01,9.452794790267944336e-01,2.150399971008300781e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.375176239013671875e+01,1.002747099846601486e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.069142699241638184e-01,9.710115194320678711e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.069142699241638184e-01,9.710115194320678711e-01,2.201199913024902344e+01,1.600000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.125201606750488281e+01,1.851432723924517632e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.337841033935546875e-01,9.657526612281799316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.337841033935546875e-01,9.657526612281799316e-01,2.184799957275390625e+01,1.430000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.428218841552734375e+01,1.881589181721210480e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.063121140003204346e-01,9.272831678390502930e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.063121140003204346e-01,9.272831678390502930e-01,2.189399909973144531e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.015153503417968750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.323217034339904785e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.323217034339904785e-01,9.736213684082031250e-01,2.212800025939941406e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.446677780151367188e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.426194787025451660e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.426194787025451660e-01,9.730050563812255859e-01,2.166799926757812500e+01,1.380000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.189432144165039062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.316521048545837402e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.316521048545837402e-01,9.736213684082031250e-01,2.156599998474121094e+01,1.347999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.144220733642578125e+01,5.144273862242698669e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.225860297679901123e-01,9.490129351615905762e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.225860297679901123e-01,9.490129351615905762e-01,2.215800094604492188e+01,1.400000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.360243988037109375e+01,1.482257037423551083e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.180965483188629150e-01,9.681570529937744141e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.180965483188629150e-01,9.681570529937744141e-01,2.155999946594238281e+01,1.407999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.084245109558105469e+01,1.815750380046665668e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.350505232810974121e-01,9.688639640808105469e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.350505232810974121e-01,9.688639640808105469e-01,2.159199905395507812e+01,1.485999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.927823448181152344e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.619822859764099121e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.619822859764099121e-01,9.736213684082031250e-01,2.112599945068359375e+01,1.461999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.927234954833984375e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.354289233684539795e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.354289233684539795e-01,9.736213684082031250e-01,2.135199928283691406e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.807228088378906250e+01,5.270831752568483353e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.372463881969451904e-01,9.552842974662780762e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.372463881969451904e-01,9.552842974662780762e-01,2.147999954223632812e+01,1.589999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.241162872314453125e+01,1.311778672970831394e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.343327641487121582e-01,9.696342945098876953e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.343327641487121582e-01,9.696342945098876953e-01,2.160799980163574219e+01,1.393999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.369974899291992188e+01,1.681629102677106857e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.229879438877105713e-01,9.674983620643615723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.229879438877105713e-01,9.674983620643615723e-01,2.164999961853027344e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.806796073913574219e+01,2.757230773568153381e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.439567685127258301e-01,9.618625044822692871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.439567685127258301e-01,9.618625044822692871e-01,2.101000022888183594e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.805867576599121094e+01,1.680954359471797943e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.438429534435272217e-01,9.672299027442932129e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.438429534435272217e-01,9.672299027442932129e-01,2.131200027465820312e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.470402526855468750e+01,5.120814591646194458e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.163154423236846924e-01,8.850333094596862793e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.163154423236846924e-01,8.850333094596862793e-01,2.119000053405761719e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.813700485229492188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.618451654911041260e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.618451654911041260e-01,9.736213684082031250e-01,2.087000083923339844e+01,1.210000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.591074180603027344e+01,1.709847943857312202e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.537181913852691650e-01,9.680485129356384277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.537181913852691650e-01,9.680485129356384277e-01,2.054199981689453125e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.222797393798828125e+01,2.371190348640084267e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.321711421012878418e-01,9.632428288459777832e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.321711421012878418e-01,9.632428288459777832e-01,2.089200019836425781e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.631878280639648438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.523665666580200195e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.523665666580200195e-01,9.736213684082031250e-01,2.057799911499023438e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.936792182922363281e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.653230369091033936e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.653230369091033936e-01,9.736213684082031250e-01,2.051199913024902344e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.080993652343750000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.732474148273468018e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.732474148273468018e-01,9.736213684082031250e-01,2.102199935913085938e+01,1.430000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.732809257507324219e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.703961372375488281e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.703961372375488281e-01,9.736213684082031250e-01,2.058399963378906250e+01,1.560000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.006813240051269531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.545295596122741699e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.545295596122741699e-01,9.736213684082031250e-01,2.075600051879882812e+01,1.485999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.975277709960937500e+01,1.482257037423551083e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.236792087554931641e-01,9.681570529937744141e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.236792087554931641e-01,9.681570529937744141e-01,2.202400016784667969e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.574863433837890625e+01,2.514707297086715698e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.925101518630981445e-01,9.263061881065368652e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.925101518630981445e-01,9.263061881065368652e-01,2.292799949645996094e+01,1.752000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.975810813903808594e+01,2.383219078183174133e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.277356326580047607e-01,9.630374312400817871e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.277356326580047607e-01,9.630374312400817871e-01,2.236599922180175781e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.199025344848632812e+01,1.839403877966105938e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.375517129898071289e-01,9.659580588340759277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.375517129898071289e-01,9.659580588340759277e-01,2.189399909973144531e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.994582748413085938e+01,1.033124048262834549e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.230670094490051270e-01,9.519352316856384277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.230670094490051270e-01,9.519352316856384277e-01,2.211199951171875000e+01,1.546000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.979261779785156250e+01,2.676060656085610390e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.261481225490570068e-01,9.609046578407287598e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.261481225490570068e-01,9.609046578407287598e-01,2.112999916076660156e+01,1.500000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.954028892517089844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.452787101268768311e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.452787101268768311e-01,9.736213684082031250e-01,2.139800071716308594e+01,1.597999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,0.000000000000000000e+00,2.548920822143554688e+01,6.091117975302040577e-04,1.000000000000000000e+00,1.000000000000000000e+00,3.595520257949829102e-01,9.741489291191101074e-01,1.000000000000000000e+00,1.000000000000000000e+00,3.595520257949829102e-01,9.741489291191101074e-01,2.027400016784667969e+01,1.311999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.556457519531250000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.498415648937225342e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.498415648937225342e-01,9.736213684082031250e-01,2.079999923706054688e+01,1.580000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,5.353510665893554688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.621639609336853027e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.621639609336853027e-01,9.736213684082031250e-01,1.956399917602539062e+01,1.406000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.942016983032226562e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.711458146572113037e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.711458146572113037e-01,9.736213684082031250e-01,1.955999946594238281e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.637836456298828125e+01,2.412112662568688393e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.552141487598419189e-01,9.638560414314270020e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.552141487598419189e-01,9.638560414314270020e-01,2.038400077819824219e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.553434753417968750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.557839989662170410e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.557839989662170410e-01,9.736213684082031250e-01,2.005800056457519531e+01,1.427999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.824765586853027344e+01,1.364729832857847214e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.456086814403533936e-01,9.700420498847961426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.456086814403533936e-01,9.700420498847961426e-01,2.140200042724609375e+01,1.684000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.902962875366210938e+01,2.359161619096994400e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.253328502178192139e-01,9.634482860565185547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.253328502178192139e-01,9.634482860565185547e-01,2.162999916076660156e+01,1.654000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.774303054809570312e+01,2.692250767722725868e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.383731544017791748e-01,9.616602063179016113e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.383731544017791748e-01,9.616602063179016113e-01,2.137999916076660156e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.077351760864257812e+01,9.666606201790273190e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.440245687961578369e-01,9.716278314590454102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.440245687961578369e-01,9.716278314590454102e-01,2.034799957275390625e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,9.714328765869140625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.223039209842681885e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.223039209842681885e-01,9.736213684082031250e-01,2.203400039672851562e+01,1.414000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.291829681396484375e+01,2.336783707141876221e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.139167726039886475e-01,9.208045005798339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139167726039886475e-01,9.208045005798339844e-01,2.243799972534179688e+01,1.679999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.558388137817382812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.249517679214477539e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.249517679214477539e-01,9.736213684082031250e-01,2.205800056457519531e+01,1.600000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.545463180541992188e+01,1.323807518929243088e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.236096501350402832e-01,9.694288969039916992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.236096501350402832e-01,9.694288969039916992e-01,2.190999984741210938e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.969291496276855469e+01,3.780555911362171173e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.248980939388275146e-01,9.560873508453369141e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.248980939388275146e-01,9.560873508453369141e-01,2.279199981689453125e+01,1.868000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.067319869995117188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.485324382781982422e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.485324382781982422e-01,9.736213684082031250e-01,2.202799987792968750e+01,1.613999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.369778076171875000e+03,9.893162176012992859e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.045544624328613281e-01,9.420229792594909668e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.045544624328613281e-01,9.420229792594909668e-01,2.268799972534179688e+01,1.644000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.713568687438964844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.405874967575073242e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.405874967575073242e-01,9.736213684082031250e-01,2.140800094604492188e+01,1.326000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.260775375366210938e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.386374711990356445e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.386374711990356445e-01,9.736213684082031250e-01,2.251799964904785156e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.183031654357910156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.315389752388000488e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.315389752388000488e-01,9.736213684082031250e-01,2.258399963378906250e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.213813018798828125e+01,1.161196734756231308e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.173066675662994385e-01,9.697396755218505859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.173066675662994385e-01,9.697396755218505859e-01,2.297599983215332031e+01,1.488000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.782134437561035156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.392836153507232666e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.392836153507232666e-01,9.736213684082031250e-01,2.260799980163574219e+01,1.353999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.128211593627929688e+01,1.494285883381962776e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.142083585262298584e-01,9.679515957832336426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.142083585262298584e-01,9.679515957832336426e-01,2.268199920654296875e+01,1.684000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.253351593017578125e+01,3.634568070992827415e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.149607479572296143e-01,9.613867998123168945e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.149607479572296143e-01,9.613867998123168945e-01,2.286599922180175781e+01,1.613999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.264027786254882812e+01,3.084747679531574249e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.003186881542205811e-01,9.186649322509765625e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.003186881542205811e-01,9.186649322509765625e-01,2.320999908447265625e+01,1.628000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.183939552307128906e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.324439525604248047e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.324439525604248047e-01,9.734159111976623535e-01,2.217000007629394531e+01,1.306000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.193885803222656250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.288978338241577148e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.288978338241577148e-01,9.736213684082031250e-01,2.207600021362304688e+01,1.503999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.972861862182617188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.482580780982971191e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.482580780982971191e-01,9.736213684082031250e-01,2.139599990844726562e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.132676696777343750e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.425418734550476074e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.425418734550476074e-01,9.737259149551391602e-01,2.173800086975097656e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.795673561096191406e+01,4.066464025527238846e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.315497636795043945e-01,9.570688605308532715e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.315497636795043945e-01,9.570688605308532715e-01,2.150600051879882812e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.969850730895996094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.352727890014648438e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.352727890014648438e-01,9.736213684082031250e-01,2.173600006103515625e+01,1.550000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.328437423706054688e+01,6.572303827852010727e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.218604028224945068e-01,9.464329481124877930e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.218604028224945068e-01,9.464329481124877930e-01,2.143799972534179688e+01,1.488000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.003092956542968750e+01,3.435438033193349838e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.278439044952392578e-01,9.580808877944946289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.278439044952392578e-01,9.580808877944946289e-01,2.147400093078613281e+01,1.637999916076660156e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.025202941894531250e+01,2.214643871411681175e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.205349445343017578e-01,9.663987159729003906e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.205349445343017578e-01,9.663987159729003906e-01,2.207200050354003906e+01,1.480000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.214566345214843750e+02,2.347132656723260880e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.283240199089050293e-01,9.636537432670593262e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.283240199089050293e-01,9.636537432670593262e-01,2.123999977111816406e+01,1.302000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.653269577026367188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.605730235576629639e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.605730235576629639e-01,9.736213684082031250e-01,2.062999916076660156e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.249260330200195312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.386021554470062256e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.386021554470062256e-01,9.736213684082031250e-01,2.098800086975097656e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.186631011962890625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.569496572017669678e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.569496572017669678e-01,9.736213684082031250e-01,2.123200035095214844e+01,1.561999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.329179382324218750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.461685478687286377e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.461685478687286377e-01,9.736213684082031250e-01,2.164599990844726562e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.801934814453125000e+01,5.730961915105581284e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.280184268951416016e-01,9.498832225799560547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.280184268951416016e-01,9.498832225799560547e-01,2.139599990844726562e+01,1.368000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.853596687316894531e+01,1.786856795661151409e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.349967300891876221e-01,9.680453538894653320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.349967300891876221e-01,9.680453538894653320e-01,2.155400085449218750e+01,1.605999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.576691436767578125e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.486377298831939697e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.486377298831939697e-01,9.736213684082031250e-01,2.141399955749511719e+01,1.534000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.216872024536132812e+01,3.640826791524887085e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.232589364051818848e-01,9.580039978027343750e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.232589364051818848e-01,9.580039978027343750e-01,2.220000076293945312e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.195900917053222656e+01,3.382486756891012192e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.157687783241271973e-01,9.576731324195861816e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.157687783241271973e-01,9.576731324195861816e-01,2.178400039672851562e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.860413551330566406e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.302151858806610107e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.302151858806610107e-01,9.736213684082031250e-01,2.177400016784667969e+01,1.318000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.415042114257812500e+01,2.512998413294553757e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.240731656551361084e-01,9.623498320579528809e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.240731656551361084e-01,9.623498320579528809e-01,2.139200019836425781e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.411209106445312500e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.210390806198120117e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.210390806198120117e-01,9.734159111976623535e-01,2.159399986267089844e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.010670661926269531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.377596139907836914e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.377596139907836914e-01,9.736213684082031250e-01,2.192399978637695312e+01,1.668000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.084389114379882812e+01,7.212157361209392548e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.162924945354461670e-01,9.469977617263793945e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.162924945354461670e-01,9.469977617263793945e-01,2.203199958801269531e+01,1.642000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.923360633850097656e+01,2.769259503111243248e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.318101167678833008e-01,9.616570472717285156e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.318101167678833008e-01,9.616570472717285156e-01,2.185799980163574219e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.121443748474121094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.299096524715423584e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.299096524715423584e-01,9.736213684082031250e-01,2.220400047302246094e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.639469146728515625e+01,9.265298023819923401e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.032850325107574463e-01,9.445770978927612305e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.032850325107574463e-01,9.445770978927612305e-01,2.260600090026855469e+01,1.604000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.502038955688476562e+01,2.260139398276805878e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.879703938961029053e-01,9.280459880828857422e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.879703938961029053e-01,9.280459880828857422e-01,2.248600006103515625e+01,1.612000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.320988082885742188e+01,3.219875972718000412e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.267734348773956299e-01,9.579839706420898438e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.267734348773956299e-01,9.579839706420898438e-01,2.276600074768066406e+01,1.602000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.981179046630859375e+01,2.840751782059669495e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.043718934059143066e-01,9.259921312332153320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.043718934059143066e-01,9.259921312332153320e-01,2.202599906921386719e+01,1.557999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.795663261413574219e+01,1.335836364887654781e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.485151231288909912e-01,9.692234396934509277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.485151231288909912e-01,9.692234396934509277e-01,2.118000030517578125e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.768586540222167969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.732662200927734375e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.732662200927734375e-01,9.736213684082031250e-01,1.995400047302246094e+01,1.376000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.633989906311035156e+01,1.178061473183333874e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.549654185771942139e-01,9.707637429237365723e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.549654185771942139e-01,9.707637429237365723e-01,1.995800018310546875e+01,1.560000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.150008201599121094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.964817225933074951e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.964817225933074951e-01,9.736213684082031250e-01,1.929199981689453125e+01,1.339999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.202823638916015625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.918987512588500977e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.918987512588500977e-01,9.736213684082031250e-01,1.918600082397460938e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.117323684692382812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.078474938869476318e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.078474938869476318e-01,9.736213684082031250e-01,1.963800048828125000e+01,1.319999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,8.425219726562500000e+01,3.090319922193884850e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.609219789505004883e-01,9.600744247436523438e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.609219789505004883e-01,9.600744247436523438e-01,1.951799964904785156e+01,1.569999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.098230361938476562e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.872752487659454346e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.872752487659454346e-01,9.736213684082031250e-01,1.934399986267089844e+01,1.280000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.995515441894531250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.926605880260467529e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.926605880260467529e-01,9.736213684082031250e-01,1.939999961853027344e+01,1.469999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.448505973815917969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.843812346458435059e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.843812346458435059e-01,9.736213684082031250e-01,1.925799942016601562e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.726979255676269531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.583475649356842041e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.583475649356842041e-01,9.736213684082031250e-01,2.065600013732910156e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.865531730651855469e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.515719473361968994e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.515719473361968994e-01,9.734159111976623535e-01,2.062599945068359375e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.747570419311523438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.636254370212554932e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.636254370212554932e-01,9.736213684082031250e-01,2.151199913024902344e+01,1.515999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.325558090209960938e+01,2.359161619096994400e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.263144195079803467e-01,9.634482860565185547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.263144195079803467e-01,9.634482860565185547e-01,2.178199958801269531e+01,1.755999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.258202362060546875e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.283550739288330078e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.283550739288330078e-01,9.736213684082031250e-01,2.289399909973144531e+01,1.744000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.114298057556152344e+01,2.359161619096994400e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.213226199150085449e-01,9.634482860565185547e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.213226199150085449e-01,9.634482860565185547e-01,2.250000000000000000e+01,1.729999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.869772720336914062e+01,2.729873731732368469e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.968122065067291260e-01,9.288147687911987305e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.968122065067291260e-01,9.288147687911987305e-01,2.302000045776367188e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.251794052124023438e+01,3.709317184984683990e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.056231737136840820e-01,9.592678546905517578e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.056231737136840820e-01,9.592678546905517578e-01,2.298399925231933594e+01,1.573999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.535332107543945312e+01,4.113410040736198425e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.860657274723052979e-01,9.130214452743530273e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.860657274723052979e-01,9.130214452743530273e-01,2.329000091552734375e+01,1.697999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.819061660766601562e+01,1.801770762540400028e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.109464645385742188e-01,9.664578437805175781e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.109464645385742188e-01,9.664578437805175781e-01,2.311199951171875000e+01,1.739999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.192453002929687500e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.175473213195800781e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.175473213195800781e-01,9.736213684082031250e-01,2.269599914550781250e+01,1.707999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.803879928588867188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.250184655189514160e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.250184655189514160e-01,9.736213684082031250e-01,2.249600028991699219e+01,1.610000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.164300346374511719e+01,1.031640684232115746e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.072831630706787109e-01,9.718301296234130859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.072831630706787109e-01,9.718301296234130859e-01,2.306599998474121094e+01,1.580000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.152111434936523438e+01,2.347132656723260880e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.114915788173675537e-01,9.636537432670593262e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.114915788173675537e-01,9.636537432670593262e-01,2.259600067138671875e+01,1.560000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.279257583618164062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.146173954010009766e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.146173954010009766e-01,9.736213684082031250e-01,2.235000038146972656e+01,1.422000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.172617721557617188e+01,8.724024519324302673e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.236598372459411621e-01,9.427472352981567383e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.236598372459411621e-01,9.427472352981567383e-01,2.248999977111816406e+01,1.515999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.209814071655273438e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.277809917926788330e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.277809917926788330e-01,9.732105135917663574e-01,2.237000083923339844e+01,1.626000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.509564208984375000e+02,2.603456191718578339e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.068551421165466309e-01,9.265758395195007324e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.068551421165466309e-01,9.265758395195007324e-01,2.291600036621093750e+01,1.731999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.079123497009277344e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.422603905200958252e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.422603905200958252e-01,9.734159111976623535e-01,2.199600028991699219e+01,1.369999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.540963745117187500e+01,2.462353324517607689e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.237854540348052979e-01,9.648278355598449707e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.237854540348052979e-01,9.648278355598449707e-01,2.201600074768066406e+01,1.514000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.043060607910156250e+02,1.726944698020815849e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.362182676792144775e-01,9.677754640579223633e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.362182676792144775e-01,9.677754640579223633e-01,2.154000091552734375e+01,1.288000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.926719284057617188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.444362282752990723e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.444362282752990723e-01,9.736213684082031250e-01,2.116200065612792969e+01,1.211999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.807762336730957031e+01,1.851432723924517632e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.471921384334564209e-01,9.657526612281799316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.471921384334564209e-01,9.657526612281799316e-01,2.186400032043457031e+01,1.602000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.580360221862792969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.605189621448516846e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.605189621448516846e-01,9.736213684082031250e-01,2.132200050354003906e+01,1.402000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,3.656308399513363838e-04,2.455734825134277344e+01,6.164244259707629681e-04,1.000000000000000000e+00,9.809807538986206055e-01,3.408997654914855957e-01,9.737685322761535645e-01,1.000000000000000000e+00,9.809807538986206055e-01,3.408997654914855957e-01,9.737685322761535645e-01,2.244599914550781250e+01,1.384000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.116421318054199219e+01,1.995002105832099915e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.248358070850372314e-01,9.350286722183227539e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.248358070850372314e-01,9.350286722183227539e-01,2.176600074768066406e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.418407440185546875e+01,6.696579512208700180e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.185309767723083496e-01,9.727995991706848145e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.185309767723083496e-01,9.727995991706848145e-01,2.171599960327148438e+01,1.576000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.851077461242675781e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.421872258186340332e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.421872258186340332e-01,9.736213684082031250e-01,2.176399993896484375e+01,1.443999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,2.924690055847167969e+01,6.533579435199499130e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.399361670017242432e-01,9.731096029281616211e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.399361670017242432e-01,9.731096029281616211e-01,2.139999961853027344e+01,1.565999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.003811416625976562e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.574299812316894531e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.574299812316894531e-01,9.736213684082031250e-01,2.166399955749511719e+01,1.468000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.014415740966796875e+01,6.293003098107874393e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.347639739513397217e-01,9.735204577445983887e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.347639739513397217e-01,9.735204577445983887e-01,2.172200012207031250e+01,1.356000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.739944458007812500e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.451787233352661133e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.451787233352661133e-01,9.736213684082031250e-01,2.188599967956542969e+01,1.550000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.275466156005859375e+01,1.002135220915079117e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.275093138217926025e-01,9.713729619979858398e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.275093138217926025e-01,9.713729619979858398e-01,2.245800018310546875e+01,1.492000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.175691223144531250e+01,2.026072237640619278e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.139112293720245361e-01,9.652363657951354980e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139112293720245361e-01,9.652363657951354980e-01,2.277599906921386719e+01,1.493999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.572514724731445312e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.074579536914825439e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.074579536914825439e-01,9.732105135917663574e-01,2.242000007629394531e+01,1.446000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.590195465087890625e+01,2.577669173479080200e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.002255260944366455e-01,9.274144172668457031e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.002255260944366455e-01,9.274144172668457031e-01,2.349399948120117188e+01,1.694000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.652920150756835938e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.390911519527435303e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.390911519527435303e-01,9.736213684082031250e-01,2.223999977111816406e+01,1.572000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.198495864868164062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.328272700309753418e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.328272700309753418e-01,9.736213684082031250e-01,2.304999923706054688e+01,1.546000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.790341567993164062e+01,7.839608006179332733e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.885714173316955566e-01,9.561565518379211426e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.885714173316955566e-01,9.561565518379211426e-01,2.310799980163574219e+01,1.665999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.660166931152343750e+01,1.656896667554974556e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.190147578716278076e-01,9.676407575607299805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.190147578716278076e-01,9.676407575607299805e-01,2.272200012207031250e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.891843605041503906e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.267578482627868652e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.267578482627868652e-01,9.736213684082031250e-01,2.261400032043457031e+01,1.615999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.114722633361816406e+01,2.205166406929492950e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.135169446468353271e-01,9.331229925155639648e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.135169446468353271e-01,9.331229925155639648e-01,2.254400062561035156e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.311460876464843750e+01,1.043669530190527439e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.351294398307800293e-01,9.716246724128723145e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.351294398307800293e-01,9.716246724128723145e-01,2.197200012207031250e+01,1.303999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.830307579040527344e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.604626953601837158e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.604626953601837158e-01,9.736213684082031250e-01,2.137999916076660156e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.825327873229980469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.574867546558380127e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.574867546558380127e-01,9.736213684082031250e-01,2.015600013732910156e+01,1.281999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.745344734191894531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.508733808994293213e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.508733808994293213e-01,9.736213684082031250e-01,2.164399909973144531e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.101904487609863281e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.330773711204528809e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.330773711204528809e-01,9.736213684082031250e-01,2.121599960327148438e+01,1.526000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.487368583679199219e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.556571304798126221e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.556571304798126221e-01,9.736213684082031250e-01,2.116200065612792969e+01,1.560000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.633472824096679688e+01,1.817032694816589355e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.277801573276519775e-01,9.360766410827636719e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.277801573276519775e-01,9.360766410827636719e-01,2.199600028991699219e+01,1.705999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.426603698730468750e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.226883113384246826e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.226883113384246826e-01,9.732105135917663574e-01,2.178000068664550781e+01,1.556000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.042564582824707031e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.285906612873077393e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.285906612873077393e-01,9.736213684082031250e-01,2.167799949645996094e+01,1.410000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.311841583251953125e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.203411400318145752e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.203411400318145752e-01,9.736213684082031250e-01,2.197999954223632812e+01,1.468000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.001435661315917969e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.455712795257568359e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.455712795257568359e-01,9.736213684082031250e-01,2.262400054931640625e+01,1.642000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.150729751586914062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.166193664073944092e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.166193664073944092e-01,9.736213684082031250e-01,2.285799980163574219e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.954759597778320312e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.361769914627075195e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.361769914627075195e-01,9.730050563812255859e-01,2.195000076293945312e+01,1.665999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.231270599365234375e+01,1.335836364887654781e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.066618144512176514e-01,9.692234396934509277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.066618144512176514e-01,9.692234396934509277e-01,2.302199935913085938e+01,1.668000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.237089538574218750e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.122462630271911621e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.122462630271911621e-01,9.734159111976623535e-01,2.326000022888183594e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.657218170166015625e+01,9.233240783214569092e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.513277828693389893e-01,8.305227160453796387e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.513277828693389893e-01,8.305227160453796387e-01,2.413599967956542969e+01,1.773999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.703154373168945312e+01,5.011427029967308044e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.715003192424774170e-01,8.996013998985290527e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.715003192424774170e-01,8.996013998985290527e-01,2.415800094604492188e+01,1.778000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.065032958984375000e+01,7.705890573561191559e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.905624210834503174e-01,9.572860002517700195e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.905624210834503174e-01,9.572860002517700195e-01,2.402199935913085938e+01,1.557999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.471963882446289062e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.137288689613342285e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.137288689613342285e-01,9.730050563812255859e-01,2.316799926757812500e+01,1.364000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.166679954528808594e+01,9.221765212714672089e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.030654788017272949e-01,9.414800405502319336e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.030654788017272949e-01,9.414800405502319336e-01,2.238800048828125000e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.161492156982421875e+01,2.215255750343203545e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.260502219200134277e-01,9.660372138023376465e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.260502219200134277e-01,9.660372138023376465e-01,2.145800018310546875e+01,1.326000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.332783889770507812e+01,1.121225301176309586e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.566859364509582520e-01,9.706885218620300293e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.566859364509582520e-01,9.706885218620300293e-01,2.113199996948242188e+01,1.300000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.382895088195800781e+01,1.733905519358813763e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.584758341312408447e-01,9.676376581192016602e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.584758341312408447e-01,9.676376581192016602e-01,2.016399955749511719e+01,1.628000068664550781e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.217517089843750000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.016188383102416992e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.016188383102416992e-01,9.736213684082031250e-01,1.904599952697753906e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.328961944580078125e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.945471644401550293e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.945471644401550293e-01,9.736213684082031250e-01,1.862599945068359375e+01,1.357999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.959569740295410156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.958173394203186035e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.958173394203186035e-01,9.736213684082031250e-01,1.918199920654296875e+01,1.565999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,7.017424011230468750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.012089073657989502e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.012089073657989502e-01,9.736213684082031250e-01,1.879199981689453125e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.257993530273437500e+03,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.098280668258666992e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.098280668258666992e-01,9.736213684082031250e-01,1.895999908447265625e+01,1.352000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.188255119323730469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,4.077587425708770752e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,4.077587425708770752e-01,9.736213684082031250e-01,1.842799949645996094e+01,1.396000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.813771057128906250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.691386878490447998e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.691386878490447998e-01,9.736213684082031250e-01,1.889200019836425781e+01,1.418000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.594683265686035156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.656358718872070312e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.656358718872070312e-01,9.736213684082031250e-01,1.938599967956542969e+01,1.426000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.424917030334472656e+01,3.727604635059833527e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.463470339775085449e-01,9.556796550750732422e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.463470339775085449e-01,9.556796550750732422e-01,1.953599929809570312e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.433089637756347656e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.636808693408966064e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.636808693408966064e-01,9.736213684082031250e-01,1.942399978637695312e+01,1.461999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.903574562072753906e+01,9.666606201790273190e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.758927285671234131e-01,9.716278314590454102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.758927285671234131e-01,9.716278314590454102e-01,1.888400077819824219e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.537748146057128906e+01,8.698379620909690857e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.442547917366027832e-01,9.416733384132385254e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.442547917366027832e-01,9.416733384132385254e-01,1.990800094604492188e+01,1.543999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.599035644531250000e+01,1.323807518929243088e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.484975993633270264e-01,9.694288969039916992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.484975993633270264e-01,9.694288969039916992e-01,2.045000076293945312e+01,1.568000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.881017875671386719e+01,2.347132656723260880e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.341228961944580078e-01,9.636537432670593262e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.341228961944580078e-01,9.636537432670593262e-01,2.042200088500976562e+01,1.660000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.056683158874511719e+01,1.668925513513386250e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.399975895881652832e-01,9.674353599548339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.399975895881652832e-01,9.674353599548339844e-01,2.088400077819824219e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.864506530761718750e+01,1.417681109160184860e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.361406922340393066e-01,9.704498052597045898e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.361406922340393066e-01,9.704498052597045898e-01,2.076600074768066406e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.713897514343261719e+01,3.792584873735904694e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.470241427421569824e-01,9.558819532394409180e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.470241427421569824e-01,9.558819532394409180e-01,2.077799987792968750e+01,1.447999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.153811073303222656e+01,9.907182538881897926e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.336485624313354492e-01,9.712169766426086426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.336485624313354492e-01,9.712169766426086426e-01,2.153400039672851562e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.390912246704101562e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.454424738883972168e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.454424738883972168e-01,9.736213684082031250e-01,2.133600044250488281e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.110015487670898438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.284634053707122803e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.284634053707122803e-01,9.736213684082031250e-01,2.251199913024902344e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.313030624389648438e+01,2.704279497265815735e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.033931851387023926e-01,9.614547491073608398e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.033931851387023926e-01,9.614547491073608398e-01,2.198999977111816406e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.848935699462890625e+01,1.323807518929243088e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.196576833724975586e-01,9.694288969039916992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.196576833724975586e-01,9.694288969039916992e-01,2.204999923706054688e+01,1.615999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.142389106750488281e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.324094116687774658e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.324094116687774658e-01,9.734159111976623535e-01,2.260799980163574219e+01,1.469999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.095122718811035156e+01,2.358126081526279449e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.938720285892486572e-01,9.366884231567382812e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.938720285892486572e-01,9.366884231567382812e-01,2.342799949645996094e+01,1.742000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.376315307617187500e+01,3.283679950982332230e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.132801949977874756e-01,9.602029919624328613e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.132801949977874756e-01,9.602029919624328613e-01,2.298999977111816406e+01,1.781999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.675146865844726562e+01,6.160636432468891144e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.949412167072296143e-01,9.517086148262023926e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.949412167072296143e-01,9.517086148262023926e-01,2.279800033569335938e+01,1.484000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.449139022827148438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.349273204803466797e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.349273204803466797e-01,9.736213684082031250e-01,2.231599998474121094e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.212322616577148438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.159763216972351074e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.159763216972351074e-01,9.736213684082031250e-01,2.234600067138671875e+01,1.331999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.682485198974609375e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.748629391193389893e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.748629391193389893e-01,9.736213684082031250e-01,2.210600090026855469e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.388949584960937500e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.428021371364593506e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.428021371364593506e-01,9.736213684082031250e-01,2.275000000000000000e+01,1.602000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.341049194335937500e+01,1.019611838273704052e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.261899054050445557e-01,9.720355868339538574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.261899054050445557e-01,9.720355868339538574e-01,2.187800025939941406e+01,1.322000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.516991424560546875e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.271640241146087646e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.271640241146087646e-01,9.736213684082031250e-01,2.232399940490722656e+01,1.550000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.352298355102539062e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.163375258445739746e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.163375258445739746e-01,9.732105135917663574e-01,2.315600013732910156e+01,1.485999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.531371688842773438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.284806311130523682e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.284806311130523682e-01,9.736213684082031250e-01,2.263999938964843750e+01,1.572000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.392790985107421875e+01,6.865048315376043320e-03,1.000000000000000000e+00,9.788492321968078613e-01,3.135176599025726318e-01,9.475978612899780273e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.135176599025726318e-01,9.475978612899780273e-01,2.274600028991699219e+01,1.639999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.152551460266113281e+01,1.347865094430744648e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.254642486572265625e-01,9.690179824829101562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.254642486572265625e-01,9.690179824829101562e-01,2.283600044250488281e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.785945892333984375e+01,2.704279497265815735e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.079928457736968994e-01,9.614547491073608398e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.079928457736968994e-01,9.614547491073608398e-01,2.321999931335449219e+01,1.702000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.394973754882812500e+01,1.892355154268443584e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.150903284549713135e-01,9.663658142089843750e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.150903284549713135e-01,9.663658142089843750e-01,2.341600036621093750e+01,1.443999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.180838203430175781e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.170098662376403809e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.170098662376403809e-01,9.736213684082031250e-01,2.294400024414062500e+01,1.315999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.461446380615234375e+01,1.347865094430744648e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.139503598213195801e-01,9.690179824829101562e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139503598213195801e-01,9.690179824829101562e-01,2.341399955749511719e+01,1.552000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.512239837646484375e+01,7.070643361657857895e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.982572317123413086e-01,9.539273381233215332e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.982572317123413086e-01,9.539273381233215332e-01,2.303000068664550781e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.177323722839355469e+01,1.137139042839407921e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.257801234722137451e-01,9.701505899429321289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.257801234722137451e-01,9.701505899429321289e-01,2.265600013732910156e+01,1.461999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.308013916015625000e+01,5.431665573269128799e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.164626955986022949e-01,9.533798694610595703e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.164626955986022949e-01,9.533798694610595703e-01,2.189800071716308594e+01,1.695999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.980170822143554688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.474661409854888916e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.474661409854888916e-01,9.736213684082031250e-01,2.148999977111816406e+01,1.460000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.987846374511718750e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.325868248939514160e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.325868248939514160e-01,9.734159111976623535e-01,2.140600013732910156e+01,1.522000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.380340576171875000e+01,9.666606201790273190e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.263322412967681885e-01,9.716278314590454102e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.263322412967681885e-01,9.716278314590454102e-01,2.143600082397460938e+01,1.442000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.655452537536621094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.554265797138214111e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.554265797138214111e-01,9.736213684082031250e-01,2.073600006103515625e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.850535392761230469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.615583777427673340e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.615583777427673340e-01,9.736213684082031250e-01,2.018000030517578125e+01,1.443999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.719151687622070312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.735327422618865967e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.735327422618865967e-01,9.736213684082031250e-01,2.044199943542480469e+01,1.338000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.666477775573730469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.646689057350158691e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.646689057350158691e-01,9.736213684082031250e-01,2.119599914550781250e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.036054229736328125e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.503139615058898926e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.503139615058898926e-01,9.736213684082031250e-01,2.084600067138671875e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.969235801696777344e+01,1.656896667554974556e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.475875258445739746e-01,9.676407575607299805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.475875258445739746e-01,9.676407575607299805e-01,2.085600090026855469e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.949925422668457031e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.625357747077941895e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.625357747077941895e-01,9.736213684082031250e-01,2.050000000000000000e+01,1.511999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.566363906860351562e+01,5.921709537506103516e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.000478446483612061e-01,8.951033949851989746e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.000478446483612061e-01,8.951033949851989746e-01,2.193600082397460938e+01,1.729999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.489804458618164062e+01,1.668925513513386250e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.148608207702636719e-01,9.674353599548339844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.148608207702636719e-01,9.674353599548339844e-01,2.152199935913085938e+01,1.506000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.467953491210937500e+01,7.461242377758026123e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.885805964469909668e-01,8.625303506851196289e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.885805964469909668e-01,8.625303506851196289e-01,2.165600013732910156e+01,1.523999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.386896896362304688e+01,8.825640194118022919e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.987977266311645508e-01,9.461520910263061523e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.987977266311645508e-01,9.461520910263061523e-01,2.259199905395507812e+01,1.813999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.323405075073242188e+01,2.692250767722725868e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.342622816562652588e-01,9.616602063179016113e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.342622816562652588e-01,9.616602063179016113e-01,2.115399932861328125e+01,1.539999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.657826423645019531e+01,1.125110196880996227e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.409961462020874023e-01,9.703559875488281250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.409961462020874023e-01,9.703559875488281250e-01,2.054400062561035156e+01,1.593999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.976888465881347656e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.698143661022186279e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.698143661022186279e-01,9.736213684082031250e-01,2.116399955749511719e+01,1.552000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.715235900878906250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.539780676364898682e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.539780676364898682e-01,9.736213684082031250e-01,2.147599983215332031e+01,1.522000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.693646812438964844e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.444994688034057617e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.444994688034057617e-01,9.734159111976623535e-01,2.073399925231933594e+01,1.381999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.931470298767089844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.480934202671051025e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.480934202671051025e-01,9.736213684082031250e-01,2.011199951171875000e+01,1.476000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.781152915954589844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.539423346519470215e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.539423346519470215e-01,9.736213684082031250e-01,2.203599929809570312e+01,1.642000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.995268440246582031e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.332463800907135010e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.332463800907135010e-01,9.736213684082031250e-01,2.190200042724609375e+01,1.431999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.227911758422851562e+01,2.172493143007159233e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.074817359447479248e-01,9.641699790954589844e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.074817359447479248e-01,9.641699790954589844e-01,2.292399978637695312e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.360738372802734375e+01,7.397556677460670471e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.127951920032501221e-01,9.507601261138916016e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.127951920032501221e-01,9.507601261138916016e-01,2.212999916076660156e+01,1.385999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.499258422851562500e+01,1.364729832857847214e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.186660706996917725e-01,9.700420498847961426e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.186660706996917725e-01,9.700420498847961426e-01,2.248200035095214844e+01,1.402000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.130464363098144531e+01,7.920210482552647591e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.275720477104187012e-01,9.721440672874450684e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.275720477104187012e-01,9.721440672874450684e-01,2.204599952697753906e+01,1.361999988555908203e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.226810073852539062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.695726096630096436e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.695726096630096436e-01,9.736213684082031250e-01,2.174200057983398438e+01,1.665999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.022088623046875000e+01,2.716308459639549255e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.292454481124877930e-01,9.612493515014648438e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.292454481124877930e-01,9.612493515014648438e-01,2.195400047302246094e+01,1.422000026702880859e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.014517593383789062e+02,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.402339518070220947e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.402339518070220947e-01,9.736213684082031250e-01,2.224399948120117188e+01,1.415999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.834200477600097656e+01,1.656896667554974556e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.290926516056060791e-01,9.676407575607299805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.290926516056060791e-01,9.676407575607299805e-01,2.262000083923339844e+01,1.503999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.907899093627929688e+01,9.786895243450999260e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.316721022129058838e-01,9.714223742485046387e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.316721022129058838e-01,9.714223742485046387e-01,2.184000015258789062e+01,1.397999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.910289573669433594e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.423901200294494629e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.423901200294494629e-01,9.736213684082031250e-01,2.192000007629394531e+01,1.497999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.284928894042968750e+01,4.012142773717641830e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.115252256393432617e-01,9.585161805152893066e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.115252256393432617e-01,9.585161805152893066e-01,2.191600036621093750e+01,1.695999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.476177978515625000e+01,2.939173718914389610e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.129819333553314209e-01,9.618350267410278320e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.129819333553314209e-01,9.618350267410278320e-01,2.261199951171875000e+01,1.557999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.315219497680664062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.527765274047851562e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.527765274047851562e-01,9.736213684082031250e-01,2.202199935913085938e+01,1.702000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.986253547668457031e+01,1.376758678816258907e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.230631351470947266e-01,9.698365926742553711e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.230631351470947266e-01,9.698365926742553711e-01,2.226199913024902344e+01,1.577999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.223104095458984375e+01,6.576291052624583244e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.302195370197296143e-01,9.730050563812255859e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.302195370197296143e-01,9.730050563812255859e-01,2.256800079345703125e+01,1.907999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.895104408264160156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.515053093433380127e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.515053093433380127e-01,9.736213684082031250e-01,2.171800041198730469e+01,1.686000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.051906013488769531e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.416321277618408203e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.416321277618408203e-01,9.736213684082031250e-01,2.154199981689453125e+01,1.346000003814697266e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,4.211423492431640625e+01,3.361684037372469902e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.207761943340301514e-01,9.570909142494201660e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.207761943340301514e-01,9.570909142494201660e-01,2.297200012207031250e+01,1.605999946594238281e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.266361999511718750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.214382231235504150e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.214382231235504150e-01,9.736213684082031250e-01,2.282600021362304688e+01,1.721999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.329474258422851562e+01,4.161306656897068024e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.110169172286987305e-01,9.570564627647399902e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.110169172286987305e-01,9.570564627647399902e-01,2.247400093078613281e+01,1.613999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.238962936401367188e+01,2.536315936595201492e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.195900917053222656e-01,9.644545912742614746e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.195900917053222656e-01,9.644545912742614746e-01,2.288199996948242188e+01,1.710000038146972656e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.559242630004882812e+01,2.225444419309496880e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.018840551376342773e-01,9.645777344703674316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.018840551376342773e-01,9.645777344703674316e-01,2.331800079345703125e+01,1.715999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.828765487670898438e+01,1.378753501921892166e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.978439033031463623e-01,9.462158083915710449e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.978439033031463623e-01,9.462158083915710449e-01,2.294799995422363281e+01,1.831999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.390339279174804688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.205125033855438232e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.205125033855438232e-01,9.736213684082031250e-01,2.286199951171875000e+01,1.679999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.453904724121093750e+01,2.867776202037930489e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.005412817001342773e-01,9.601185321807861328e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.005412817001342773e-01,9.601185321807861328e-01,2.314399909973144531e+01,1.886000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.301644515991210938e+01,2.066994784399867058e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.161149919033050537e-01,9.658495783805847168e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.161149919033050537e-01,9.658495783805847168e-01,2.304999923706054688e+01,1.757999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.993143081665039062e+01,3.061426337808370590e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.257904350757598877e-01,9.592558145523071289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.257904350757598877e-01,9.592558145523071289e-01,2.229400062561035156e+01,1.500000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.385649108886718750e+01,1.323807518929243088e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.139553368091583252e-01,9.694288969039916992e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139553368091583252e-01,9.694288969039916992e-01,2.275799942016601562e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.040879821777343750e+01,2.692250767722725868e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.174215257167816162e-01,9.616602063179016113e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.174215257167816162e-01,9.616602063179016113e-01,2.248200035095214844e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.271668243408203125e+01,6.172714638523757458e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.525104820728302002e-01,9.737259149551391602e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.525104820728302002e-01,9.737259149551391602e-01,2.213199996948242188e+01,1.342000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.170927238464355469e+01,3.292960580438375473e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.241643309593200684e-01,9.644418954849243164e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.241643309593200684e-01,9.644418954849243164e-01,2.225000000000000000e+01,1.636000061035156250e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.000161552429199219e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.536606132984161377e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.536606132984161377e-01,9.736213684082031250e-01,2.151600074768066406e+01,1.453999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,6.593824768066406250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.563082814216613770e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.563082814216613770e-01,9.736213684082031250e-01,2.233799934387207031e+01,1.564000034332275391e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.492798614501953125e+01,3.943599760532379150e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.086405098438262939e-01,9.600095748901367188e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.086405098438262939e-01,9.600095748901367188e-01,2.325200080871582031e+01,1.763999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.308463287353515625e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.195540606975555420e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.195540606975555420e-01,9.736213684082031250e-01,2.287199974060058594e+01,1.604000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.243560791015625000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.356374204158782959e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.356374204158782959e-01,9.736213684082031250e-01,2.233399963378906250e+01,1.481999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.348064422607421875e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.098102807998657227e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.098102807998657227e-01,9.734159111976623535e-01,2.331399917602539062e+01,1.763999938964843750e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.959397888183593750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.150028288364410400e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.150028288364410400e-01,9.736213684082031250e-01,2.346400070190429688e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.311184692382812500e+01,7.199406158179044724e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.023760616779327393e-01,9.456409811973571777e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.023760616779327393e-01,9.456409811973571777e-01,2.337999916076660156e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.651057052612304688e+01,1.730384118854999542e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.943854928016662598e-01,9.406124949455261230e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.943854928016662598e-01,9.406124949455261230e-01,2.361400032043457031e+01,1.527999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.574206542968750000e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.131559193134307861e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.131559193134307861e-01,9.736213684082031250e-01,2.390800094604492188e+01,1.604000091552734375e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.178632736206054688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.457536697387695312e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.457536697387695312e-01,9.736213684082031250e-01,2.227199935913085938e+01,1.568000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.183800315856933594e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.411993384361267090e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.411993384361267090e-01,9.736213684082031250e-01,2.288599967956542969e+01,1.652000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.885019683837890625e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.004744350910186768e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.004744350910186768e-01,9.734159111976623535e-01,2.264399909973144531e+01,1.580000019073486328e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.453130340576171875e+01,2.079023513942956924e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.066690564155578613e-01,9.656441211700439453e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.066690564155578613e-01,9.656441211700439453e-01,2.334799957275390625e+01,1.593999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.445149230957031250e+01,4.780304152518510818e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.976216077804565430e-01,9.562498927116394043e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.976216077804565430e-01,9.562498927116394043e-01,2.267399978637695312e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.043944931030273438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.476152122020721436e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.476152122020721436e-01,9.736213684082031250e-01,2.231200027465820312e+01,1.585999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.334209823608398438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.210976421833038330e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.210976421833038330e-01,9.736213684082031250e-01,2.286599922180175781e+01,1.518000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.836612701416015625e+01,5.553807597607374191e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.051287829875946045e-01,9.488769173622131348e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.051287829875946045e-01,9.488769173622131348e-01,2.368799972534179688e+01,1.747999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,1.261105957031250000e+02,2.079023513942956924e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.056713342666625977e-01,9.656441211700439453e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.056713342666625977e-01,9.656441211700439453e-01,2.327400016784667969e+01,1.762000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.384590911865234375e+01,2.461937628686428070e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.891612648963928223e-01,9.295593500137329102e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.891612648963928223e-01,9.295593500137329102e-01,2.312000083923339844e+01,1.519999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.431491851806640625e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.325954377651214600e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.325954377651214600e-01,9.734159111976623535e-01,2.222400093078613281e+01,1.438000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.609990310668945312e+01,9.786895243450999260e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.089629113674163818e-01,9.714223742485046387e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.089629113674163818e-01,9.714223742485046387e-01,2.253400039672851562e+01,1.645999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.054522514343261719e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.335833549499511719e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.335833549499511719e-01,9.736213684082031250e-01,2.248999977111816406e+01,1.553999996185302734e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.096010208129882812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.284168541431427002e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.284168541431427002e-01,9.736213684082031250e-01,2.243799972534179688e+01,1.465999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.182567596435546875e+01,2.184926066547632217e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.159659206867218018e-01,9.664595723152160645e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.159659206867218018e-01,9.664595723152160645e-01,2.225399971008300781e+01,1.419999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.842123794555664062e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.563469648361206055e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.563469648361206055e-01,9.736213684082031250e-01,2.111000061035156250e+01,1.481999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.467937088012695312e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.279574215412139893e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.279574215412139893e-01,9.734159111976623535e-01,2.213599967956542969e+01,1.500000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.096574783325195312e+01,3.061426337808370590e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.303312957286834717e-01,9.592558145523071289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.303312957286834717e-01,9.592558145523071289e-01,2.228199958801269531e+01,1.715999984741210938e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.516894531250000000e+01,1.335836364887654781e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.127284646034240723e-01,9.692234396934509277e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.127284646034240723e-01,9.692234396934509277e-01,2.198800086975097656e+01,1.637999916076660156e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.477623367309570312e+01,1.596680143848061562e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.125928342342376709e-01,9.670322537422180176e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.125928342342376709e-01,9.670322537422180176e-01,2.266799926757812500e+01,1.647999954223632812e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.062684059143066406e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.447378277778625488e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.447378277778625488e-01,9.736213684082031250e-01,2.196800041198730469e+01,1.631999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.802898788452148438e+01,2.188151888549327850e-02,1.000000000000000000e+00,9.788492321968078613e-01,2.851538956165313721e-01,9.347953796386718750e-01,1.000000000000000000e+00,9.788492321968078613e-01,2.851538956165313721e-01,9.347953796386718750e-01,2.305200004577636719e+01,1.629999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.631251907348632812e+01,2.852769382297992706e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.923585772514343262e-01,9.259743690490722656e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.923585772514343262e-01,9.259743690490722656e-01,2.244400024414062500e+01,1.507999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,4.079836944583803415e-04,3.405192947387695312e+01,6.293003098107874393e-04,1.000000000000000000e+00,9.788492321968078613e-01,3.187086880207061768e-01,9.735204577445983887e-01,1.000000000000000000e+00,9.788492321968078613e-01,3.187086880207061768e-01,9.735204577445983887e-01,2.196999931335449219e+01,1.629999923706054688e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.843846130371093750e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.484349548816680908e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.484349548816680908e-01,9.736213684082031250e-01,2.174600028991699219e+01,1.639999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.616248130798339844e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.627173900604248047e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.627173900604248047e-01,9.736213684082031250e-01,2.116799926757812500e+01,1.493999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.062310218811035156e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.384456932544708252e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.384456932544708252e-01,9.736213684082031250e-01,2.111599922180175781e+01,1.406000041961669922e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.931484985351562500e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.419086337089538574e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.419086337089538574e-01,9.736213684082031250e-01,2.163400077819824219e+01,1.684000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.625700187683105469e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.384611308574676514e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.384611308574676514e-01,9.736213684082031250e-01,2.200200080871582031e+01,1.469999980926513672e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.255927658081054688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.430715501308441162e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.430715501308441162e-01,9.736213684082031250e-01,2.165800094604492188e+01,1.534000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.752052879333496094e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.434762954711914062e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.434762954711914062e-01,9.736213684082031250e-01,2.247800064086914062e+01,1.543999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.123384475708007812e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.180676400661468506e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.180676400661468506e-01,9.736213684082031250e-01,2.235199928283691406e+01,1.535999965667724609e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.294521331787109375e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.199678063392639160e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.199678063392639160e-01,9.736213684082031250e-01,2.352400016784667969e+01,1.473999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.753097152709960938e+01,4.575948044657707214e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.746641039848327637e-01,8.941598534584045410e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.746641039848327637e-01,8.941598534584045410e-01,2.368000030517578125e+01,1.621999931335449219e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.698285293579101562e+01,1.636821776628494263e-03,1.000000000000000000e+00,9.736213684082031250e-01,2.905370593070983887e-01,9.672176837921142578e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.905370593070983887e-01,9.672176837921142578e-01,2.361000061035156250e+01,1.745999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.933977127075195312e+01,1.623195596039295197e-02,1.000000000000000000e+00,9.736213684082031250e-01,2.933334112167358398e-01,9.299747943878173828e-01,1.000000000000000000e+00,9.736213684082031250e-01,2.933334112167358398e-01,9.299747943878173828e-01,2.363199996948242188e+01,1.694000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.457263946533203125e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.079051077365875244e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.079051077365875244e-01,9.736213684082031250e-01,2.361400032043457031e+01,1.645999908447265625e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.239269638061523438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.247267603874206543e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.247267603874206543e-01,9.736213684082031250e-01,2.273600006103515625e+01,1.492000007629394531e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.182571029663085938e+01,5.045467056334018707e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.016755580902099609e-01,9.515427350997924805e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.016755580902099609e-01,9.515427350997924805e-01,2.335600090026855469e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.835467910766601562e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.150388002395629883e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.150388002395629883e-01,9.734159111976623535e-01,2.270599937438964844e+01,1.450000000000000000e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.478367996215820312e+01,4.985824227333068848e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.015377223491668701e-01,9.502847790718078613e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.015377223491668701e-01,9.502847790718078613e-01,2.318199920654296875e+01,1.618000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.507952499389648438e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.268116414546966553e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.268116414546966553e-01,9.736213684082031250e-01,2.254800033569335938e+01,1.631999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.724396514892578125e+01,2.769259503111243248e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.073591887950897217e-01,9.616570472717285156e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.073591887950897217e-01,9.616570472717285156e-01,2.252199935913085938e+01,1.593999958038330078e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.158105850219726562e+01,6.456003175117075443e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.400423228740692139e-01,9.732105135917663574e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.400423228740692139e-01,9.732105135917663574e-01,2.197999954223632812e+01,1.577999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.111070632934570312e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.126745820045471191e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.126745820045471191e-01,9.734159111976623535e-01,2.250799942016601562e+01,1.476000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.377737045288085938e+01,1.815346302464604378e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.200109004974365234e-01,9.663689732551574707e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.200109004974365234e-01,9.663689732551574707e-01,2.273600006103515625e+01,1.618000030517578125e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.421030807495117188e+01,2.002014778554439545e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.101641237735748291e-01,9.656472802162170410e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.101641237735748291e-01,9.656472802162170410e-01,2.249200057983398438e+01,1.612000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.948833274841308594e+01,6.683784537017345428e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.139306604862213135e-01,9.480074644088745117e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.139306604862213135e-01,9.480074644088745117e-01,2.138199996948242188e+01,1.452000045776367188e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.131084632873535156e+01,3.061426337808370590e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.208880722522735596e-01,9.592558145523071289e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.208880722522735596e-01,9.592558145523071289e-01,2.214200019836425781e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.853315544128417969e+01,6.335714715532958508e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.374231755733489990e-01,9.734159111976623535e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.374231755733489990e-01,9.734159111976623535e-01,2.191799926757812500e+01,1.634000015258789062e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.352967834472656250e+01,1.125110196880996227e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.330101966857910156e-01,9.703559875488281250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.330101966857910156e-01,9.703559875488281250e-01,2.265999984741210938e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.758446502685546875e+01,2.066994784399867058e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.120619654655456543e-01,9.658495783805847168e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.120619654655456543e-01,9.658495783805847168e-01,2.233200073242187500e+01,1.612000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.928156471252441406e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.180509209632873535e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.180509209632873535e-01,9.736213684082031250e-01,2.205800056457519531e+01,1.388000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.916744613647460938e+01,8.478258736431598663e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.052754104137420654e-01,9.452500939369201660e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.052754104137420654e-01,9.452500939369201660e-01,2.219199943542480469e+01,1.812000083923339844e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.221553802490234375e+01,2.014043508097529411e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.168683052062988281e-01,9.654418230056762695e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.168683052062988281e-01,9.654418230056762695e-01,2.230200004577636719e+01,1.581999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.486866760253906250e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.348454236984252930e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.348454236984252930e-01,9.736213684082031250e-01,2.239200019836425781e+01,1.477999973297119141e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.084129714965820312e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.319529294967651367e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.319529294967651367e-01,9.736213684082031250e-01,2.120199966430664062e+01,1.439999961853027344e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.354865646362304688e+01,1.940447837114334106e-02,1.000000000000000000e+00,9.736213684082031250e-01,3.094791769981384277e-01,9.327936768531799316e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.094791769981384277e-01,9.327936768531799316e-01,2.192000007629394531e+01,1.626000022888183594e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.026106834411621094e+01,2.014043508097529411e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.201099038124084473e-01,9.654418230056762695e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.201099038124084473e-01,9.654418230056762695e-01,2.223800086975097656e+01,1.538000011444091797e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.126061248779296875e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.312417566776275635e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.312417566776275635e-01,9.736213684082031250e-01,2.133799934387207031e+01,1.531999969482421875e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.150986289978027344e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.278427124023437500e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.278427124023437500e-01,9.736213684082031250e-01,2.252799987792968750e+01,1.423999977111816406e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,2.232902069091796875e+02,2.721103373914957047e-03,1.000000000000000000e+00,9.736213684082031250e-01,3.199158310890197754e-01,9.612738490104675293e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.199158310890197754e-01,9.612738490104675293e-01,2.265399932861328125e+01,1.744000053405761719e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.533155441284179688e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.375622034072875977e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.375622034072875977e-01,9.736213684082031250e-01,2.238400077819824219e+01,1.607999992370605469e+01,-1.000000000000000000e+00 -0.000000000000000000e+00,6.215426255948841572e-04,3.373936080932617188e+01,6.215426255948841572e-04,1.000000000000000000e+00,9.736213684082031250e-01,3.191057443618774414e-01,9.736213684082031250e-01,1.000000000000000000e+00,9.736213684082031250e-01,3.191057443618774414e-01,9.736213684082031250e-01,2.238800048828125000e+01,1.547999954223632812e+01,-1.000000000000000000e+00 diff --git a/demo-web/data/dsr_Nguyen-5_0_all_r.npy b/demo-web/data/dsr_Nguyen-5_0_all_r.npy deleted file mode 100644 index b5202bc1..00000000 Binary files a/demo-web/data/dsr_Nguyen-5_0_all_r.npy and /dev/null differ diff --git a/demo-web/data/traversals.txt b/demo-web/data/traversals.txt deleted file mode 100644 index 1dc082c1..00000000 --- a/demo-web/data/traversals.txt +++ /dev/null @@ -1,2000 +0,0 @@ -sub,x1,add,cos,add,exp,mul,x1,mul,add,x1,log,mul,mul,div,x1,add,log,div,div,exp,x1,x1,x1,x1,x1,x1,x1,x1,x1 -sub,cos,sub,exp,div,x1,mul,div,sub,x1,x1,exp,x1,sub,div,div,div,add,div,mul,x1,x1,x1,x1,x1,x1,x1,x1,x1,x1 -sub,cos,sub,exp,div,x1,mul,div,sub,x1,x1,exp,x1,sub,div,div,div,add,div,mul,x1,x1,x1,x1,x1,x1,x1,x1,x1,x1 -sub,sub,x1,sub,add,mul,sub,div,cos,exp,div,mul,exp,x1,mul,sub,log,mul,x1,log,x1,x1,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -cos,exp,exp,div,exp,x1,exp,add,exp,sub,exp,exp,add,exp,exp,div,exp,exp,sub,add,sub,log,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,log,cos,x1,exp,mul,x1,sub,cos,sub,x1,sub,log,log,div,mul,exp,div,sub,add,x1,mul,x1,x1,x1,x1,x1,x1,x1,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,x1,add,cos,x1,sin,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,sub,exp,sin,x1,exp,sin,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -sub,div,x1,sin,x1,add,div,x1,x1,cos,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -div,mul,cos,x1,sin,sub,div,sub,x1,x1,sub,div,x1,exp,div,mul,x1,div,sub,exp,mul,x1,x1,x1,exp,x1,x1,x1,x1,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,mul,sin,x1,mul,sin,x1,cos,sub,x1,exp,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,sub,cos,mul,x1,x1,cos,x1,cos,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 -sub,mul,sin,mul,x1,x1,cos,x1,cos,sub,x1,x1 \ No newline at end of file diff --git a/demo-web/plot.py b/demo-web/plot.py deleted file mode 100755 index 169d1a8c..00000000 --- a/demo-web/plot.py +++ /dev/null @@ -1,167 +0,0 @@ -import json - -import numpy as np -import pandas as pd -import plotly -import plotly.graph_objs as go -from scipy.stats import gaussian_kde - -from dsr.program import Program -from data import demo_utils - -RESOLUTION = 200 # Number of points in KDE estimate - -class MainPlot: - def __init__(self): - self.data_points = None - self.data_range = [-1,1,0.5] - - self.done = False - self.step = 0 - self.step_before = 0 - self.best_expr = None - self.expr_info = {'expression': None, 'fitness': None} - # self.diagnostics = [] - - # Load offline data files - with open("./data/traversals.txt", "r") as f: - self.traversal_text = f.readlines() - self.all_rewards = np.load("./data/dsr_Nguyen-5_0_all_r.npy") - pd_all_tinfo = pd.read_csv("./data/dsr_Nguyen-5_0.csv") - self.all_training_info = pd_all_tinfo.to_numpy() - - def scatter_data_points(self, data): - self.data_points = data - demo_utils.configure_program("./data/demo.json") - - data_x = Program.X_train.ravel() - data_y = Program.y_train - - x_min = np.amin(data_x) - x_max = np.amax(data_x) - self.data_range = [x_min, x_max, x_max-x_min] - - scatter_data = [ - go.Scatter( - x=data_x, - y=data_y, - mode='markers', - marker=dict( - # color='#8c6bb1', - color='#1a76b3', - size=12, - line=dict(width=1.2, - color='#efedf5') - # color='#efedf5') - ) - ) - ] - - graphJSON = json.dumps(scatter_data, cls=plotly.utils.PlotlyJSONEncoder) - - return graphJSON - - def line_expression(self, expr_program): - # Plot data points - N = 1000 - x = np.linspace(self.data_range[0]-self.data_range[2]*0.1, self.data_range[1]+self.data_range[2]*0.1, N) - y = expr_program.execute(x.reshape(N, -1)) - self.expr_info['expression'] = repr(expr_program.sympy_expr) - self.expr_info['fitness'] = expr_program.r - - line = [ - go.Scatter( - x=x, - y=y, - mode='lines', - name=self.expr_info['expression'], - line=dict(color='#3f007d', width=2.5) - ) - ] - - graphJSON = json.dumps(line, cls=plotly.utils.PlotlyJSONEncoder) - - return graphJSON - - def data_subplot(self): - rng = range(self.step_before, self.step) - best = self.all_training_info[rng,4] # base_r_best - top = self.all_training_info[rng,7] # r_best - mean = self.all_training_info[rng,6] # r_best - reward = self.all_rewards[self.step] # Shape: (batch_size,) - complexity = self.all_training_info[rng,12] # l_avg_full - - # Compute KDE for reward distribution - kernel = gaussian_kde(reward, bw_method=0.25) - reward_dist_x = np.linspace(0, 1, RESOLUTION) - reward_dist_y = kernel(reward_dist_x) - - reward_dist_line = [ - go.Scatter( - x=reward_dist_x, - y=reward_dist_y, - mode='lines', - name=self.step, - line=dict(color='#000', width=2) - ) - ] - graphJSON_reward_dist_line = json.dumps(reward_dist_line, cls=plotly.utils.PlotlyJSONEncoder) - - return { - 'subplot1': { - 'data': { - 'x': [list(rng), list(rng), list(rng)], - 'y': [best.tolist(), top.tolist(), mean.tolist()] - } - }, - 'subplot2': [{ - 'reward': { - 'data': { - 'x': [reward_dist_x.tolist()], - 'y': [reward_dist_y.tolist()], - 'line': graphJSON_reward_dist_line - } - } - }], - 'subplot3': { - 'data': { - 'x': [list(rng)], - 'y': [complexity.tolist()] - } - } - } - - def plot_main_lines(self): - try: - if self.best_expr != self.traversal_text[self.step]: - self.best_expr = self.traversal_text[self.step] - best_p = demo_utils.make_program(self.traversal_text, self.step) - - response = { - 'warn': False, - 'done': self.done, - 'plot': self.line_expression(best_p), - 'info': self.expr_info, - 'update': True - } - - else: - response = { - 'warn': False, - 'done': self.done, - 'plot': None, - 'update': False - } - except: - self.done = True - response = { - 'warn': False, - 'done': self.done, - 'plot': None, - 'update': False - } - - response['subplot'] = self.data_subplot() - self.step_before = self.step - - return json.dumps(response) \ No newline at end of file diff --git a/demo-web/requirements.txt b/demo-web/requirements.txt deleted file mode 100644 index 04440557..00000000 --- a/demo-web/requirements.txt +++ /dev/null @@ -1,2 +0,0 @@ -Flask -plotly \ No newline at end of file diff --git a/demo-web/static/css/bootstrap-theme.min.css b/demo-web/static/css/bootstrap-theme.min.css deleted file mode 100644 index ac8dd550..00000000 --- a/demo-web/static/css/bootstrap-theme.min.css +++ /dev/null @@ -1,5 +0,0 @@ -/*! - * Bootstrap v3.3.2 (http://getbootstrap.com) - * Copyright 2011-2015 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) - */.btn-danger,.btn-default,.btn-info,.btn-primary,.btn-success,.btn-warning{text-shadow:0 -1px 0 rgba(0,0,0,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 1px rgba(0,0,0,.075)}.btn-danger.active,.btn-danger:active,.btn-default.active,.btn-default:active,.btn-info.active,.btn-info:active,.btn-primary.active,.btn-primary:active,.btn-success.active,.btn-success:active,.btn-warning.active,.btn-warning:active{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.btn-danger .badge,.btn-default .badge,.btn-info .badge,.btn-primary .badge,.btn-success .badge,.btn-warning .badge{text-shadow:none}.btn.active,.btn:active{background-image:none}.btn-default{text-shadow:0 1px 0 #fff;background-image:-webkit-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-o-linear-gradient(top,#fff 0,#e0e0e0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#e0e0e0));background-image:linear-gradient(to bottom,#fff 0,#e0e0e0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe0e0e0', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#dbdbdb;border-color:#ccc}.btn-default:focus,.btn-default:hover{background-color:#e0e0e0;background-position:0 -15px}.btn-default.active,.btn-default:active{background-color:#e0e0e0;border-color:#dbdbdb}.btn-default.disabled,.btn-default:disabled,.btn-default[disabled]{background-color:#e0e0e0;background-image:none}.btn-primary{background-image:-webkit-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-o-linear-gradient(top,#337ab7 0,#265a88 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#265a88));background-image:linear-gradient(to bottom,#337ab7 0,#265a88 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff265a88', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#245580}.btn-primary:focus,.btn-primary:hover{background-color:#265a88;background-position:0 -15px}.btn-primary.active,.btn-primary:active{background-color:#265a88;border-color:#245580}.btn-primary.disabled,.btn-primary:disabled,.btn-primary[disabled]{background-color:#265a88;background-image:none}.btn-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#419641 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#419641));background-image:linear-gradient(to bottom,#5cb85c 0,#419641 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff419641', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#3e8f3e}.btn-success:focus,.btn-success:hover{background-color:#419641;background-position:0 -15px}.btn-success.active,.btn-success:active{background-color:#419641;border-color:#3e8f3e}.btn-success.disabled,.btn-success:disabled,.btn-success[disabled]{background-color:#419641;background-image:none}.btn-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#2aabd2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#2aabd2));background-image:linear-gradient(to bottom,#5bc0de 0,#2aabd2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2aabd2', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#28a4c9}.btn-info:focus,.btn-info:hover{background-color:#2aabd2;background-position:0 -15px}.btn-info.active,.btn-info:active{background-color:#2aabd2;border-color:#28a4c9}.btn-info.disabled,.btn-info:disabled,.btn-info[disabled]{background-color:#2aabd2;background-image:none}.btn-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#eb9316 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#eb9316));background-image:linear-gradient(to bottom,#f0ad4e 0,#eb9316 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffeb9316', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#e38d13}.btn-warning:focus,.btn-warning:hover{background-color:#eb9316;background-position:0 -15px}.btn-warning.active,.btn-warning:active{background-color:#eb9316;border-color:#e38d13}.btn-warning.disabled,.btn-warning:disabled,.btn-warning[disabled]{background-color:#eb9316;background-image:none}.btn-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c12e2a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c12e2a));background-image:linear-gradient(to bottom,#d9534f 0,#c12e2a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc12e2a', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-color:#b92c28}.btn-danger:focus,.btn-danger:hover{background-color:#c12e2a;background-position:0 -15px}.btn-danger.active,.btn-danger:active{background-color:#c12e2a;border-color:#b92c28}.btn-danger.disabled,.btn-danger:disabled,.btn-danger[disabled]{background-color:#c12e2a;background-image:none}.img-thumbnail,.thumbnail{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{background-color:#e8e8e8;background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{background-color:#2e6da4;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.navbar-default{background-image:-webkit-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-o-linear-gradient(top,#fff 0,#f8f8f8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fff),to(#f8f8f8));background-image:linear-gradient(to bottom,#fff 0,#f8f8f8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#fff8f8f8', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x;border-radius:4px;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 1px 5px rgba(0,0,0,.075)}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-o-linear-gradient(top,#dbdbdb 0,#e2e2e2 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dbdbdb),to(#e2e2e2));background-image:linear-gradient(to bottom,#dbdbdb 0,#e2e2e2 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdbdbdb', endColorstr='#ffe2e2e2', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.075);box-shadow:inset 0 3px 9px rgba(0,0,0,.075)}.navbar-brand,.navbar-nav>li>a{text-shadow:0 1px 0 rgba(255,255,255,.25)}.navbar-inverse{background-image:-webkit-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-o-linear-gradient(top,#3c3c3c 0,#222 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#3c3c3c),to(#222));background-image:linear-gradient(to bottom,#3c3c3c 0,#222 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff3c3c3c', endColorstr='#ff222222', GradientType=0);filter:progid:DXImageTransform.Microsoft.gradient(enabled=false);background-repeat:repeat-x}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.open>a{background-image:-webkit-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-o-linear-gradient(top,#080808 0,#0f0f0f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#080808),to(#0f0f0f));background-image:linear-gradient(to bottom,#080808 0,#0f0f0f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff080808', endColorstr='#ff0f0f0f', GradientType=0);background-repeat:repeat-x;-webkit-box-shadow:inset 0 3px 9px rgba(0,0,0,.25);box-shadow:inset 0 3px 9px rgba(0,0,0,.25)}.navbar-inverse .navbar-brand,.navbar-inverse .navbar-nav>li>a{text-shadow:0 -1px 0 rgba(0,0,0,.25)}.navbar-fixed-bottom,.navbar-fixed-top,.navbar-static-top{border-radius:0}@media (max-width:767px){.navbar .navbar-nav .open .dropdown-menu>.active>a,.navbar .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}}.alert{text-shadow:0 1px 0 rgba(255,255,255,.2);-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.25),0 1px 2px rgba(0,0,0,.05)}.alert-success{background-image:-webkit-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#c8e5bc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#c8e5bc));background-image:linear-gradient(to bottom,#dff0d8 0,#c8e5bc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffc8e5bc', GradientType=0);background-repeat:repeat-x;border-color:#b2dba1}.alert-info{background-image:-webkit-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#b9def0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#b9def0));background-image:linear-gradient(to bottom,#d9edf7 0,#b9def0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffb9def0', GradientType=0);background-repeat:repeat-x;border-color:#9acfea}.alert-warning{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#f8efc0 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#f8efc0));background-image:linear-gradient(to bottom,#fcf8e3 0,#f8efc0 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fff8efc0', GradientType=0);background-repeat:repeat-x;border-color:#f5e79e}.alert-danger{background-image:-webkit-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-o-linear-gradient(top,#f2dede 0,#e7c3c3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#e7c3c3));background-image:linear-gradient(to bottom,#f2dede 0,#e7c3c3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffe7c3c3', GradientType=0);background-repeat:repeat-x;border-color:#dca7a7}.progress{background-image:-webkit-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#ebebeb 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#ebebeb),to(#f5f5f5));background-image:linear-gradient(to bottom,#ebebeb 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffebebeb', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x}.progress-bar{background-image:-webkit-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-o-linear-gradient(top,#337ab7 0,#286090 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#286090));background-image:linear-gradient(to bottom,#337ab7 0,#286090 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff286090', GradientType=0);background-repeat:repeat-x}.progress-bar-success{background-image:-webkit-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-o-linear-gradient(top,#5cb85c 0,#449d44 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5cb85c),to(#449d44));background-image:linear-gradient(to bottom,#5cb85c 0,#449d44 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5cb85c', endColorstr='#ff449d44', GradientType=0);background-repeat:repeat-x}.progress-bar-info{background-image:-webkit-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-o-linear-gradient(top,#5bc0de 0,#31b0d5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#5bc0de),to(#31b0d5));background-image:linear-gradient(to bottom,#5bc0de 0,#31b0d5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff31b0d5', GradientType=0);background-repeat:repeat-x}.progress-bar-warning{background-image:-webkit-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-o-linear-gradient(top,#f0ad4e 0,#ec971f 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f0ad4e),to(#ec971f));background-image:linear-gradient(to bottom,#f0ad4e 0,#ec971f 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff0ad4e', endColorstr='#ffec971f', GradientType=0);background-repeat:repeat-x}.progress-bar-danger{background-image:-webkit-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-o-linear-gradient(top,#d9534f 0,#c9302c 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9534f),to(#c9302c));background-image:linear-gradient(to bottom,#d9534f 0,#c9302c 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9534f', endColorstr='#ffc9302c', GradientType=0);background-repeat:repeat-x}.progress-bar-striped{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.list-group{border-radius:4px;-webkit-box-shadow:0 1px 2px rgba(0,0,0,.075);box-shadow:0 1px 2px rgba(0,0,0,.075)}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{text-shadow:0 -1px 0 #286090;background-image:-webkit-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2b669a 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2b669a));background-image:linear-gradient(to bottom,#337ab7 0,#2b669a 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2b669a', GradientType=0);background-repeat:repeat-x;border-color:#2b669a}.list-group-item.active .badge,.list-group-item.active:focus .badge,.list-group-item.active:hover .badge{text-shadow:none}.panel{-webkit-box-shadow:0 1px 2px rgba(0,0,0,.05);box-shadow:0 1px 2px rgba(0,0,0,.05)}.panel-default>.panel-heading{background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-o-linear-gradient(top,#f5f5f5 0,#e8e8e8 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f5f5f5),to(#e8e8e8));background-image:linear-gradient(to bottom,#f5f5f5 0,#e8e8e8 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe8e8e8', GradientType=0);background-repeat:repeat-x}.panel-primary>.panel-heading{background-image:-webkit-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-o-linear-gradient(top,#337ab7 0,#2e6da4 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#337ab7),to(#2e6da4));background-image:linear-gradient(to bottom,#337ab7 0,#2e6da4 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff337ab7', endColorstr='#ff2e6da4', GradientType=0);background-repeat:repeat-x}.panel-success>.panel-heading{background-image:-webkit-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-o-linear-gradient(top,#dff0d8 0,#d0e9c6 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#dff0d8),to(#d0e9c6));background-image:linear-gradient(to bottom,#dff0d8 0,#d0e9c6 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffdff0d8', endColorstr='#ffd0e9c6', GradientType=0);background-repeat:repeat-x}.panel-info>.panel-heading{background-image:-webkit-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-o-linear-gradient(top,#d9edf7 0,#c4e3f3 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#d9edf7),to(#c4e3f3));background-image:linear-gradient(to bottom,#d9edf7 0,#c4e3f3 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffd9edf7', endColorstr='#ffc4e3f3', GradientType=0);background-repeat:repeat-x}.panel-warning>.panel-heading{background-image:-webkit-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-o-linear-gradient(top,#fcf8e3 0,#faf2cc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#fcf8e3),to(#faf2cc));background-image:linear-gradient(to bottom,#fcf8e3 0,#faf2cc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffcf8e3', endColorstr='#fffaf2cc', GradientType=0);background-repeat:repeat-x}.panel-danger>.panel-heading{background-image:-webkit-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-o-linear-gradient(top,#f2dede 0,#ebcccc 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#f2dede),to(#ebcccc));background-image:linear-gradient(to bottom,#f2dede 0,#ebcccc 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff2dede', endColorstr='#ffebcccc', GradientType=0);background-repeat:repeat-x}.well{background-image:-webkit-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-o-linear-gradient(top,#e8e8e8 0,#f5f5f5 100%);background-image:-webkit-gradient(linear,left top,left bottom,from(#e8e8e8),to(#f5f5f5));background-image:linear-gradient(to bottom,#e8e8e8 0,#f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffe8e8e8', endColorstr='#fff5f5f5', GradientType=0);background-repeat:repeat-x;border-color:#dcdcdc;-webkit-box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 3px rgba(0,0,0,.05),0 1px 0 rgba(255,255,255,.1)} \ No newline at end of file diff --git a/demo-web/static/css/bootstrap.css.map b/demo-web/static/css/bootstrap.css.map deleted file mode 100644 index ff579ff5..00000000 --- a/demo-web/static/css/bootstrap.css.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"sources":["bootstrap.css","less/normalize.less","less/print.less","less/glyphicons.less","less/scaffolding.less","less/mixins/vendor-prefixes.less","less/mixins/tab-focus.less","less/mixins/image.less","less/type.less","less/mixins/text-emphasis.less","less/mixins/background-variant.less","less/mixins/text-overflow.less","less/code.less","less/grid.less","less/mixins/grid.less","less/mixins/grid-framework.less","less/tables.less","less/mixins/table-row.less","less/forms.less","less/mixins/forms.less","less/buttons.less","less/mixins/buttons.less","less/mixins/opacity.less","less/component-animations.less","less/dropdowns.less","less/mixins/nav-divider.less","less/mixins/reset-filter.less","less/button-groups.less","less/mixins/border-radius.less","less/input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less/utilities.less","less/breadcrumbs.less","less/pagination.less","less/mixins/pagination.less","less/pager.less","less/labels.less","less/mixins/labels.less","less/badges.less","less/jumbotron.less","less/thumbnails.less","less/alerts.less","less/mixins/alerts.less","less/progress-bars.less","less/mixins/gradients.less","less/mixins/progress-bar.less","less/media.less","less/list-group.less","less/mixins/list-group.less","less/panels.less","less/mixins/panels.less","less/responsive-embed.less","less/wells.less","less/close.less","less/modals.less","less/tooltip.less","less/popovers.less","less/carousel.less","less/mixins/clearfix.less","less/mixins/center-block.less","less/mixins/hide-text.less","less/responsive-utilities.less","less/mixins/responsive-visibility.less"],"names":[],"mappings":"AAAA,6DAA4D;ACQ5D;EACE,yBAAA;EACA,4BAAA;EACA,gCAAA;EDND;ACaD;EACE,WAAA;EDXD;ACwBD;;;;;;;;;;;;;EAaE,gBAAA;EDtBD;AC8BD;;;;EAIE,uBAAA;EACA,0BAAA;ED5BD;ACoCD;EACE,eAAA;EACA,WAAA;EDlCD;AC0CD;;EAEE,eAAA;EDxCD;ACkDD;EACE,+BAAA;EDhDD;ACuDD;;EAEE,YAAA;EDrDD;AC+DD;EACE,2BAAA;ED7DD;ACoED;;EAEE,mBAAA;EDlED;ACyED;EACE,oBAAA;EDvED;AC+ED;EACE,gBAAA;EACA,kBAAA;ED7ED;ACoFD;EACE,kBAAA;EACA,aAAA;EDlFD;ACyFD;EACE,gBAAA;EDvFD;AC8FD;;EAEE,gBAAA;EACA,gBAAA;EACA,oBAAA;EACA,0BAAA;ED5FD;AC+FD;EACE,aAAA;ED7FD;ACgGD;EACE,iBAAA;ED9FD;ACwGD;EACE,WAAA;EDtGD;AC6GD;EACE,kBAAA;ED3GD;ACqHD;EACE,kBAAA;EDnHD;AC0HD;EACE,8BAAA;EACA,iCAAA;UAAA,yBAAA;EACA,WAAA;EDxHD;AC+HD;EACE,gBAAA;ED7HD;ACoID;;;;EAIE,mCAAA;EACA,gBAAA;EDlID;ACoJD;;;;;EAKE,gBAAA;EACA,eAAA;EACA,WAAA;EDlJD;ACyJD;EACE,mBAAA;EDvJD;ACiKD;;EAEE,sBAAA;ED/JD;AC0KD;;;;EAIE,4BAAA;EACA,iBAAA;EDxKD;AC+KD;;EAEE,iBAAA;ED7KD;ACoLD;;EAEE,WAAA;EACA,YAAA;EDlLD;AC0LD;EACE,qBAAA;EDxLD;ACmMD;;EAEE,gCAAA;KAAA,6BAAA;UAAA,wBAAA;EACA,YAAA;EDjMD;AC0MD;;EAEE,cAAA;EDxMD;ACiND;EACE,+BAAA;EACA,8BAAA;EACA,iCAAA;EACA,yBAAA;ED/MD;ACwND;;EAEE,0BAAA;EDtND;AC6ND;EACE,2BAAA;EACA,eAAA;EACA,gCAAA;ED3ND;ACmOD;EACE,WAAA;EACA,YAAA;EDjOD;ACwOD;EACE,gBAAA;EDtOD;AC8OD;EACE,mBAAA;ED5OD;ACsPD;EACE,2BAAA;EACA,mBAAA;EDpPD;ACuPD;;EAEE,YAAA;EDrPD;AACD,sFAAqF;AE1ErF;EAnGI;;;IAGI,oCAAA;IACA,wBAAA;IACA,qCAAA;YAAA,6BAAA;IACA,8BAAA;IFgLL;EE7KC;;IAEI,4BAAA;IF+KL;EE5KC;IACI,8BAAA;IF8KL;EE3KC;IACI,+BAAA;IF6KL;EExKC;;IAEI,aAAA;IF0KL;EEvKC;;IAEI,wBAAA;IACA,0BAAA;IFyKL;EEtKC;IACI,6BAAA;IFwKL;EErKC;;IAEI,0BAAA;IFuKL;EEpKC;IACI,4BAAA;IFsKL;EEnKC;;;IAGI,YAAA;IACA,WAAA;IFqKL;EElKC;;IAEI,yBAAA;IFoKL;EE7JC;IACI,6BAAA;IF+JL;EE3JC;IACI,eAAA;IF6JL;EE3JC;;IAGQ,mCAAA;IF4JT;EEzJC;IACI,wBAAA;IF2JL;EExJC;IACI,sCAAA;IF0JL;EE3JC;;IAKQ,mCAAA;IF0JT;EEvJC;;IAGQ,mCAAA;IFwJT;EACF;AGpPD;EACE,qCAAA;EACA,uDAAA;EACA,iYAAA;EHsPD;AG9OD;EACE,oBAAA;EACA,UAAA;EACA,uBAAA;EACA,qCAAA;EACA,oBAAA;EACA,qBAAA;EACA,gBAAA;EACA,qCAAA;EACA,oCAAA;EHgPD;AG5OmC;EAAW,gBAAA;EH+O9C;AG9OmC;EAAW,gBAAA;EHiP9C;AG/OmC;;EAAW,kBAAA;EHmP9C;AGlPmC;EAAW,kBAAA;EHqP9C;AGpPmC;EAAW,kBAAA;EHuP9C;AGtPmC;EAAW,kBAAA;EHyP9C;AGxPmC;EAAW,kBAAA;EH2P9C;AG1PmC;EAAW,kBAAA;EH6P9C;AG5PmC;EAAW,kBAAA;EH+P9C;AG9PmC;EAAW,kBAAA;EHiQ9C;AGhQmC;EAAW,kBAAA;EHmQ9C;AGlQmC;EAAW,kBAAA;EHqQ9C;AGpQmC;EAAW,kBAAA;EHuQ9C;AGtQmC;EAAW,kBAAA;EHyQ9C;AGxQmC;EAAW,kBAAA;EH2Q9C;AG1QmC;EAAW,kBAAA;EH6Q9C;AG5QmC;EAAW,kBAAA;EH+Q9C;AG9QmC;EAAW,kBAAA;EHiR9C;AGhRmC;EAAW,kBAAA;EHmR9C;AGlRmC;EAAW,kBAAA;EHqR9C;AGpRmC;EAAW,kBAAA;EHuR9C;AGtRmC;EAAW,kBAAA;EHyR9C;AGxRmC;EAAW,kBAAA;EH2R9C;AG1RmC;EAAW,kBAAA;EH6R9C;AG5RmC;EAAW,kBAAA;EH+R9C;AG9RmC;EAAW,kBAAA;EHiS9C;AGhSmC;EAAW,kBAAA;EHmS9C;AGlSmC;EAAW,kBAAA;EHqS9C;AGpSmC;EAAW,kBAAA;EHuS9C;AGtSmC;EAAW,kBAAA;EHyS9C;AGxSmC;EAAW,kBAAA;EH2S9C;AG1SmC;EAAW,kBAAA;EH6S9C;AG5SmC;EAAW,kBAAA;EH+S9C;AG9SmC;EAAW,kBAAA;EHiT9C;AGhTmC;EAAW,kBAAA;EHmT9C;AGlTmC;EAAW,kBAAA;EHqT9C;AGpTmC;EAAW,kBAAA;EHuT9C;AGtTmC;EAAW,kBAAA;EHyT9C;AGxTmC;EAAW,kBAAA;EH2T9C;AG1TmC;EAAW,kBAAA;EH6T9C;AG5TmC;EAAW,kBAAA;EH+T9C;AG9TmC;EAAW,kBAAA;EHiU9C;AGhUmC;EAAW,kBAAA;EHmU9C;AGlUmC;EAAW,kBAAA;EHqU9C;AGpUmC;EAAW,kBAAA;EHuU9C;AGtUmC;EAAW,kBAAA;EHyU9C;AGxUmC;EAAW,kBAAA;EH2U9C;AG1UmC;EAAW,kBAAA;EH6U9C;AG5UmC;EAAW,kBAAA;EH+U9C;AG9UmC;EAAW,kBAAA;EHiV9C;AGhVmC;EAAW,kBAAA;EHmV9C;AGlVmC;EAAW,kBAAA;EHqV9C;AGpVmC;EAAW,kBAAA;EHuV9C;AGtVmC;EAAW,kBAAA;EHyV9C;AGxVmC;EAAW,kBAAA;EH2V9C;AG1VmC;EAAW,kBAAA;EH6V9C;AG5VmC;EAAW,kBAAA;EH+V9C;AG9VmC;EAAW,kBAAA;EHiW9C;AGhWmC;EAAW,kBAAA;EHmW9C;AGlWmC;EAAW,kBAAA;EHqW9C;AGpWmC;EAAW,kBAAA;EHuW9C;AGtWmC;EAAW,kBAAA;EHyW9C;AGxWmC;EAAW,kBAAA;EH2W9C;AG1WmC;EAAW,kBAAA;EH6W9C;AG5WmC;EAAW,kBAAA;EH+W9C;AG9WmC;EAAW,kBAAA;EHiX9C;AGhXmC;EAAW,kBAAA;EHmX9C;AGlXmC;EAAW,kBAAA;EHqX9C;AGpXmC;EAAW,kBAAA;EHuX9C;AGtXmC;EAAW,kBAAA;EHyX9C;AGxXmC;EAAW,kBAAA;EH2X9C;AG1XmC;EAAW,kBAAA;EH6X9C;AG5XmC;EAAW,kBAAA;EH+X9C;AG9XmC;EAAW,kBAAA;EHiY9C;AGhYmC;EAAW,kBAAA;EHmY9C;AGlYmC;EAAW,kBAAA;EHqY9C;AGpYmC;EAAW,kBAAA;EHuY9C;AGtYmC;EAAW,kBAAA;EHyY9C;AGxYmC;EAAW,kBAAA;EH2Y9C;AG1YmC;EAAW,kBAAA;EH6Y9C;AG5YmC;EAAW,kBAAA;EH+Y9C;AG9YmC;EAAW,kBAAA;EHiZ9C;AGhZmC;EAAW,kBAAA;EHmZ9C;AGlZmC;EAAW,kBAAA;EHqZ9C;AGpZmC;EAAW,kBAAA;EHuZ9C;AGtZmC;EAAW,kBAAA;EHyZ9C;AGxZmC;EAAW,kBAAA;EH2Z9C;AG1ZmC;EAAW,kBAAA;EH6Z9C;AG5ZmC;EAAW,kBAAA;EH+Z9C;AG9ZmC;EAAW,kBAAA;EHia9C;AGhamC;EAAW,kBAAA;EHma9C;AGlamC;EAAW,kBAAA;EHqa9C;AGpamC;EAAW,kBAAA;EHua9C;AGtamC;EAAW,kBAAA;EHya9C;AGxamC;EAAW,kBAAA;EH2a9C;AG1amC;EAAW,kBAAA;EH6a9C;AG5amC;EAAW,kBAAA;EH+a9C;AG9amC;EAAW,kBAAA;EHib9C;AGhbmC;EAAW,kBAAA;EHmb9C;AGlbmC;EAAW,kBAAA;EHqb9C;AGpbmC;EAAW,kBAAA;EHub9C;AGtbmC;EAAW,kBAAA;EHyb9C;AGxbmC;EAAW,kBAAA;EH2b9C;AG1bmC;EAAW,kBAAA;EH6b9C;AG5bmC;EAAW,kBAAA;EH+b9C;AG9bmC;EAAW,kBAAA;EHic9C;AGhcmC;EAAW,kBAAA;EHmc9C;AGlcmC;EAAW,kBAAA;EHqc9C;AGpcmC;EAAW,kBAAA;EHuc9C;AGtcmC;EAAW,kBAAA;EHyc9C;AGxcmC;EAAW,kBAAA;EH2c9C;AG1cmC;EAAW,kBAAA;EH6c9C;AG5cmC;EAAW,kBAAA;EH+c9C;AG9cmC;EAAW,kBAAA;EHid9C;AGhdmC;EAAW,kBAAA;EHmd9C;AGldmC;EAAW,kBAAA;EHqd9C;AGpdmC;EAAW,kBAAA;EHud9C;AGtdmC;EAAW,kBAAA;EHyd9C;AGxdmC;EAAW,kBAAA;EH2d9C;AG1dmC;EAAW,kBAAA;EH6d9C;AG5dmC;EAAW,kBAAA;EH+d9C;AG9dmC;EAAW,kBAAA;EHie9C;AGhemC;EAAW,kBAAA;EHme9C;AGlemC;EAAW,kBAAA;EHqe9C;AGpemC;EAAW,kBAAA;EHue9C;AGtemC;EAAW,kBAAA;EHye9C;AGxemC;EAAW,kBAAA;EH2e9C;AG1emC;EAAW,kBAAA;EH6e9C;AG5emC;EAAW,kBAAA;EH+e9C;AG9emC;EAAW,kBAAA;EHif9C;AGhfmC;EAAW,kBAAA;EHmf9C;AGlfmC;EAAW,kBAAA;EHqf9C;AGpfmC;EAAW,kBAAA;EHuf9C;AGtfmC;EAAW,kBAAA;EHyf9C;AGxfmC;EAAW,kBAAA;EH2f9C;AG1fmC;EAAW,kBAAA;EH6f9C;AG5fmC;EAAW,kBAAA;EH+f9C;AG9fmC;EAAW,kBAAA;EHigB9C;AGhgBmC;EAAW,kBAAA;EHmgB9C;AGlgBmC;EAAW,kBAAA;EHqgB9C;AGpgBmC;EAAW,kBAAA;EHugB9C;AGtgBmC;EAAW,kBAAA;EHygB9C;AGxgBmC;EAAW,kBAAA;EH2gB9C;AG1gBmC;EAAW,kBAAA;EH6gB9C;AG5gBmC;EAAW,kBAAA;EH+gB9C;AG9gBmC;EAAW,kBAAA;EHihB9C;AGhhBmC;EAAW,kBAAA;EHmhB9C;AGlhBmC;EAAW,kBAAA;EHqhB9C;AGphBmC;EAAW,kBAAA;EHuhB9C;AGthBmC;EAAW,kBAAA;EHyhB9C;AGxhBmC;EAAW,kBAAA;EH2hB9C;AG1hBmC;EAAW,kBAAA;EH6hB9C;AG5hBmC;EAAW,kBAAA;EH+hB9C;AG9hBmC;EAAW,kBAAA;EHiiB9C;AGhiBmC;EAAW,kBAAA;EHmiB9C;AGliBmC;EAAW,kBAAA;EHqiB9C;AGpiBmC;EAAW,kBAAA;EHuiB9C;AGtiBmC;EAAW,kBAAA;EHyiB9C;AGxiBmC;EAAW,kBAAA;EH2iB9C;AG1iBmC;EAAW,kBAAA;EH6iB9C;AG5iBmC;EAAW,kBAAA;EH+iB9C;AG9iBmC;EAAW,kBAAA;EHijB9C;AGhjBmC;EAAW,kBAAA;EHmjB9C;AGljBmC;EAAW,kBAAA;EHqjB9C;AGpjBmC;EAAW,kBAAA;EHujB9C;AGtjBmC;EAAW,kBAAA;EHyjB9C;AGxjBmC;EAAW,kBAAA;EH2jB9C;AG1jBmC;EAAW,kBAAA;EH6jB9C;AG5jBmC;EAAW,kBAAA;EH+jB9C;AG9jBmC;EAAW,kBAAA;EHikB9C;AGhkBmC;EAAW,kBAAA;EHmkB9C;AGlkBmC;EAAW,kBAAA;EHqkB9C;AGpkBmC;EAAW,kBAAA;EHukB9C;AGtkBmC;EAAW,kBAAA;EHykB9C;AGxkBmC;EAAW,kBAAA;EH2kB9C;AG1kBmC;EAAW,kBAAA;EH6kB9C;AG5kBmC;EAAW,kBAAA;EH+kB9C;AG9kBmC;EAAW,kBAAA;EHilB9C;AGhlBmC;EAAW,kBAAA;EHmlB9C;AGllBmC;EAAW,kBAAA;EHqlB9C;AGplBmC;EAAW,kBAAA;EHulB9C;AGtlBmC;EAAW,kBAAA;EHylB9C;AGxlBmC;EAAW,kBAAA;EH2lB9C;AG1lBmC;EAAW,kBAAA;EH6lB9C;AG5lBmC;EAAW,kBAAA;EH+lB9C;AG9lBmC;EAAW,kBAAA;EHimB9C;AGhmBmC;EAAW,kBAAA;EHmmB9C;AGlmBmC;EAAW,kBAAA;EHqmB9C;AGpmBmC;EAAW,kBAAA;EHumB9C;AGtmBmC;EAAW,kBAAA;EHymB9C;AGxmBmC;EAAW,kBAAA;EH2mB9C;AG1mBmC;EAAW,kBAAA;EH6mB9C;AG5mBmC;EAAW,kBAAA;EH+mB9C;AG9mBmC;EAAW,kBAAA;EHinB9C;AGhnBmC;EAAW,kBAAA;EHmnB9C;AGlnBmC;EAAW,kBAAA;EHqnB9C;AGpnBmC;EAAW,kBAAA;EHunB9C;AGtnBmC;EAAW,kBAAA;EHynB9C;AGxnBmC;EAAW,kBAAA;EH2nB9C;AG1nBmC;EAAW,kBAAA;EH6nB9C;AG5nBmC;EAAW,kBAAA;EH+nB9C;AG9nBmC;EAAW,kBAAA;EHioB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGhoBmC;EAAW,kBAAA;EHmoB9C;AGloBmC;EAAW,kBAAA;EHqoB9C;AGpoBmC;EAAW,kBAAA;EHuoB9C;AGtoBmC;EAAW,kBAAA;EHyoB9C;AGxoBmC;EAAW,kBAAA;EH2oB9C;AG1oBmC;EAAW,kBAAA;EH6oB9C;AG5oBmC;EAAW,kBAAA;EH+oB9C;AG9oBmC;EAAW,kBAAA;EHipB9C;AGhpBmC;EAAW,kBAAA;EHmpB9C;AGlpBmC;EAAW,kBAAA;EHqpB9C;AGppBmC;EAAW,kBAAA;EHupB9C;AGtpBmC;EAAW,kBAAA;EHypB9C;AGxpBmC;EAAW,kBAAA;EH2pB9C;AG1pBmC;EAAW,kBAAA;EH6pB9C;AG5pBmC;EAAW,kBAAA;EH+pB9C;AG9pBmC;EAAW,kBAAA;EHiqB9C;AGhqBmC;EAAW,kBAAA;EHmqB9C;AGlqBmC;EAAW,kBAAA;EHqqB9C;AGpqBmC;EAAW,kBAAA;EHuqB9C;AGtqBmC;EAAW,kBAAA;EHyqB9C;AGxqBmC;EAAW,kBAAA;EH2qB9C;AG1qBmC;EAAW,kBAAA;EH6qB9C;AG5qBmC;EAAW,kBAAA;EH+qB9C;AG9qBmC;EAAW,kBAAA;EHirB9C;AGhrBmC;EAAW,kBAAA;EHmrB9C;AGlrBmC;EAAW,kBAAA;EHqrB9C;AGprBmC;EAAW,kBAAA;EHurB9C;AGtrBmC;EAAW,kBAAA;EHyrB9C;AGxrBmC;EAAW,kBAAA;EH2rB9C;AG1rBmC;EAAW,kBAAA;EH6rB9C;AG5rBmC;EAAW,kBAAA;EH+rB9C;AG9rBmC;EAAW,kBAAA;EHisB9C;AGhsBmC;EAAW,kBAAA;EHmsB9C;AGlsBmC;EAAW,kBAAA;EHqsB9C;AGpsBmC;EAAW,kBAAA;EHusB9C;AGtsBmC;EAAW,kBAAA;EHysB9C;AGxsBmC;EAAW,kBAAA;EH2sB9C;AG1sBmC;EAAW,kBAAA;EH6sB9C;AG5sBmC;EAAW,kBAAA;EH+sB9C;AG9sBmC;EAAW,kBAAA;EHitB9C;AGhtBmC;EAAW,kBAAA;EHmtB9C;AGltBmC;EAAW,kBAAA;EHqtB9C;AGptBmC;EAAW,kBAAA;EHutB9C;AGttBmC;EAAW,kBAAA;EHytB9C;AGxtBmC;EAAW,kBAAA;EH2tB9C;AG1tBmC;EAAW,kBAAA;EH6tB9C;AG5tBmC;EAAW,kBAAA;EH+tB9C;AG9tBmC;EAAW,kBAAA;EHiuB9C;AGhuBmC;EAAW,kBAAA;EHmuB9C;AGluBmC;EAAW,kBAAA;EHquB9C;AGpuBmC;EAAW,kBAAA;EHuuB9C;AGtuBmC;EAAW,kBAAA;EHyuB9C;AI3gCD;ECgEE,gCAAA;EACG,6BAAA;EACK,wBAAA;EL88BT;AI7gCD;;EC6DE,gCAAA;EACG,6BAAA;EACK,wBAAA;ELo9BT;AI3gCD;EACE,iBAAA;EACA,+CAAA;EJ6gCD;AI1gCD;EACE,6DAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,2BAAA;EJ4gCD;AIxgCD;;;;EAIE,sBAAA;EACA,oBAAA;EACA,sBAAA;EJ0gCD;AIpgCD;EACE,gBAAA;EACA,uBAAA;EJsgCD;AIpgCC;;EAEE,gBAAA;EACA,4BAAA;EJsgCH;AIngCC;EErDA,sBAAA;EAEA,4CAAA;EACA,sBAAA;EN0jCD;AI7/BD;EACE,WAAA;EJ+/BD;AIz/BD;EACE,wBAAA;EJ2/BD;AIv/BD;;;;;EGvEE,gBAAA;EACA,iBAAA;EACA,cAAA;EPqkCD;AI3/BD;EACE,oBAAA;EJ6/BD;AIv/BD;EACE,cAAA;EACA,yBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;EC6FA,0CAAA;EACK,qCAAA;EACG,kCAAA;EEvLR,uBAAA;EACA,iBAAA;EACA,cAAA;EPqlCD;AIv/BD;EACE,oBAAA;EJy/BD;AIn/BD;EACE,kBAAA;EACA,qBAAA;EACA,WAAA;EACA,+BAAA;EJq/BD;AI7+BD;EACE,oBAAA;EACA,YAAA;EACA,aAAA;EACA,cAAA;EACA,YAAA;EACA,kBAAA;EACA,wBAAA;EACA,WAAA;EJ++BD;AIv+BC;;EAEE,kBAAA;EACA,aAAA;EACA,cAAA;EACA,WAAA;EACA,mBAAA;EACA,YAAA;EJy+BH;AQpnCD;;;;;;;;;;;;EAEE,sBAAA;EACA,kBAAA;EACA,kBAAA;EACA,gBAAA;ERgoCD;AQroCD;;;;;;;;;;;;;;;;;;;;;;;;EASI,qBAAA;EACA,gBAAA;EACA,gBAAA;ERspCH;AQlpCD;;;;;;EAGE,kBAAA;EACA,qBAAA;ERupCD;AQ3pCD;;;;;;;;;;;;EAQI,gBAAA;ERiqCH;AQ9pCD;;;;;;EAGE,kBAAA;EACA,qBAAA;ERmqCD;AQvqCD;;;;;;;;;;;;EAQI,gBAAA;ER6qCH;AQzqCD;;EAAU,iBAAA;ER6qCT;AQ5qCD;;EAAU,iBAAA;ERgrCT;AQ/qCD;;EAAU,iBAAA;ERmrCT;AQlrCD;;EAAU,iBAAA;ERsrCT;AQrrCD;;EAAU,iBAAA;ERyrCT;AQxrCD;;EAAU,iBAAA;ER4rCT;AQtrCD;EACE,kBAAA;ERwrCD;AQrrCD;EACE,qBAAA;EACA,iBAAA;EACA,kBAAA;EACA,kBAAA;ERurCD;AQlrCD;EAAA;IAFI,iBAAA;IRwrCD;EACF;AQhrCD;;EAEE,gBAAA;ERkrCD;AQ/qCD;;EAEE,2BAAA;EACA,eAAA;ERirCD;AQ7qCD;EAAuB,kBAAA;ERgrCtB;AQ/qCD;EAAuB,mBAAA;ERkrCtB;AQjrCD;EAAuB,oBAAA;ERorCtB;AQnrCD;EAAuB,qBAAA;ERsrCtB;AQrrCD;EAAuB,qBAAA;ERwrCtB;AQrrCD;EAAuB,2BAAA;ERwrCtB;AQvrCD;EAAuB,2BAAA;ER0rCtB;AQzrCD;EAAuB,4BAAA;ER4rCtB;AQzrCD;EACE,gBAAA;ER2rCD;AQzrCD;ECrGE,gBAAA;ETiyCD;AShyCC;EACE,gBAAA;ETkyCH;AQ5rCD;ECxGE,gBAAA;ETuyCD;AStyCC;EACE,gBAAA;ETwyCH;AQ/rCD;EC3GE,gBAAA;ET6yCD;AS5yCC;EACE,gBAAA;ET8yCH;AQlsCD;EC9GE,gBAAA;ETmzCD;ASlzCC;EACE,gBAAA;ETozCH;AQrsCD;ECjHE,gBAAA;ETyzCD;ASxzCC;EACE,gBAAA;ET0zCH;AQpsCD;EAGE,aAAA;EE3HA,2BAAA;EVg0CD;AU/zCC;EACE,2BAAA;EVi0CH;AQrsCD;EE9HE,2BAAA;EVs0CD;AUr0CC;EACE,2BAAA;EVu0CH;AQxsCD;EEjIE,2BAAA;EV40CD;AU30CC;EACE,2BAAA;EV60CH;AQ3sCD;EEpIE,2BAAA;EVk1CD;AUj1CC;EACE,2BAAA;EVm1CH;AQ9sCD;EEvIE,2BAAA;EVw1CD;AUv1CC;EACE,2BAAA;EVy1CH;AQ5sCD;EACE,qBAAA;EACA,qBAAA;EACA,kCAAA;ER8sCD;AQtsCD;;EAEE,eAAA;EACA,qBAAA;ERwsCD;AQ3sCD;;;;EAMI,kBAAA;ER2sCH;AQpsCD;EACE,iBAAA;EACA,kBAAA;ERssCD;AQlsCD;EALE,iBAAA;EACA,kBAAA;EAMA,mBAAA;ERqsCD;AQvsCD;EAKI,uBAAA;EACA,mBAAA;EACA,oBAAA;ERqsCH;AQhsCD;EACE,eAAA;EACA,qBAAA;ERksCD;AQhsCD;;EAEE,yBAAA;ERksCD;AQhsCD;EACE,mBAAA;ERksCD;AQhsCD;EACE,gBAAA;ERksCD;AQzqCD;EAAA;IAVM,aAAA;IACA,cAAA;IACA,aAAA;IACA,mBAAA;IGtNJ,kBAAA;IACA,yBAAA;IACA,qBAAA;IX84CC;EQnrCH;IAHM,oBAAA;IRyrCH;EACF;AQhrCD;;EAGE,cAAA;EACA,mCAAA;ERirCD;AQ/qCD;EACE,gBAAA;EACA,2BAAA;ERirCD;AQ7qCD;EACE,oBAAA;EACA,kBAAA;EACA,mBAAA;EACA,gCAAA;ER+qCD;AQ1qCG;;;EACE,kBAAA;ER8qCL;AQxrCD;;;EAmBI,gBAAA;EACA,gBAAA;EACA,yBAAA;EACA,gBAAA;ER0qCH;AQxqCG;;;EACE,wBAAA;ER4qCL;AQpqCD;;EAEE,qBAAA;EACA,iBAAA;EACA,iCAAA;EACA,gBAAA;EACA,mBAAA;ERsqCD;AQhqCG;;;;;;EAAW,aAAA;ERwqCd;AQvqCG;;;;;;EACE,wBAAA;ER8qCL;AQxqCD;EACE,qBAAA;EACA,oBAAA;EACA,yBAAA;ER0qCD;AYh9CD;;;;EAIE,gEAAA;EZk9CD;AY98CD;EACE,kBAAA;EACA,gBAAA;EACA,gBAAA;EACA,2BAAA;EACA,oBAAA;EZg9CD;AY58CD;EACE,kBAAA;EACA,gBAAA;EACA,gBAAA;EACA,2BAAA;EACA,oBAAA;EACA,wDAAA;UAAA,gDAAA;EZ88CD;AYp9CD;EASI,YAAA;EACA,iBAAA;EACA,mBAAA;EACA,0BAAA;UAAA,kBAAA;EZ88CH;AYz8CD;EACE,gBAAA;EACA,gBAAA;EACA,kBAAA;EACA,iBAAA;EACA,yBAAA;EACA,uBAAA;EACA,uBAAA;EACA,gBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;EZ28CD;AYt9CD;EAeI,YAAA;EACA,oBAAA;EACA,gBAAA;EACA,uBAAA;EACA,+BAAA;EACA,kBAAA;EZ08CH;AYr8CD;EACE,mBAAA;EACA,oBAAA;EZu8CD;AajgDD;ECHE,oBAAA;EACA,mBAAA;EACA,oBAAA;EACA,qBAAA;EdugDD;AajgDC;EAAA;IAFE,cAAA;IbugDD;EACF;AangDC;EAAA;IAFE,cAAA;IbygDD;EACF;AargDD;EAAA;IAFI,eAAA;Ib2gDD;EACF;AalgDD;ECvBE,oBAAA;EACA,mBAAA;EACA,oBAAA;EACA,qBAAA;Ed4hDD;Aa//CD;ECvBE,oBAAA;EACA,qBAAA;EdyhDD;AezhDG;EACE,oBAAA;EAEA,iBAAA;EAEA,oBAAA;EACA,qBAAA;EfyhDL;AezgDG;EACE,aAAA;Ef2gDL;AepgDC;EACE,aAAA;EfsgDH;AevgDC;EACE,qBAAA;EfygDH;Ae1gDC;EACE,qBAAA;Ef4gDH;Ae7gDC;EACE,YAAA;Ef+gDH;AehhDC;EACE,qBAAA;EfkhDH;AenhDC;EACE,qBAAA;EfqhDH;AethDC;EACE,YAAA;EfwhDH;AezhDC;EACE,qBAAA;Ef2hDH;Ae5hDC;EACE,qBAAA;Ef8hDH;Ae/hDC;EACE,YAAA;EfiiDH;AeliDC;EACE,qBAAA;EfoiDH;AeriDC;EACE,oBAAA;EfuiDH;AezhDC;EACE,aAAA;Ef2hDH;Ae5hDC;EACE,qBAAA;Ef8hDH;Ae/hDC;EACE,qBAAA;EfiiDH;AeliDC;EACE,YAAA;EfoiDH;AeriDC;EACE,qBAAA;EfuiDH;AexiDC;EACE,qBAAA;Ef0iDH;Ae3iDC;EACE,YAAA;Ef6iDH;Ae9iDC;EACE,qBAAA;EfgjDH;AejjDC;EACE,qBAAA;EfmjDH;AepjDC;EACE,YAAA;EfsjDH;AevjDC;EACE,qBAAA;EfyjDH;Ae1jDC;EACE,oBAAA;Ef4jDH;AexjDC;EACE,aAAA;Ef0jDH;Ae1kDC;EACE,YAAA;Ef4kDH;Ae7kDC;EACE,oBAAA;Ef+kDH;AehlDC;EACE,oBAAA;EfklDH;AenlDC;EACE,WAAA;EfqlDH;AetlDC;EACE,oBAAA;EfwlDH;AezlDC;EACE,oBAAA;Ef2lDH;Ae5lDC;EACE,WAAA;Ef8lDH;Ae/lDC;EACE,oBAAA;EfimDH;AelmDC;EACE,oBAAA;EfomDH;AermDC;EACE,WAAA;EfumDH;AexmDC;EACE,oBAAA;Ef0mDH;Ae3mDC;EACE,mBAAA;Ef6mDH;AezmDC;EACE,YAAA;Ef2mDH;Ae7lDC;EACE,mBAAA;Ef+lDH;AehmDC;EACE,2BAAA;EfkmDH;AenmDC;EACE,2BAAA;EfqmDH;AetmDC;EACE,kBAAA;EfwmDH;AezmDC;EACE,2BAAA;Ef2mDH;Ae5mDC;EACE,2BAAA;Ef8mDH;Ae/mDC;EACE,kBAAA;EfinDH;AelnDC;EACE,2BAAA;EfonDH;AernDC;EACE,2BAAA;EfunDH;AexnDC;EACE,kBAAA;Ef0nDH;Ae3nDC;EACE,2BAAA;Ef6nDH;Ae9nDC;EACE,0BAAA;EfgoDH;AejoDC;EACE,iBAAA;EfmoDH;AanoDD;EElCI;IACE,aAAA;IfwqDH;EejqDD;IACE,aAAA;IfmqDD;EepqDD;IACE,qBAAA;IfsqDD;EevqDD;IACE,qBAAA;IfyqDD;Ee1qDD;IACE,YAAA;If4qDD;Ee7qDD;IACE,qBAAA;If+qDD;EehrDD;IACE,qBAAA;IfkrDD;EenrDD;IACE,YAAA;IfqrDD;EetrDD;IACE,qBAAA;IfwrDD;EezrDD;IACE,qBAAA;If2rDD;Ee5rDD;IACE,YAAA;If8rDD;Ee/rDD;IACE,qBAAA;IfisDD;EelsDD;IACE,oBAAA;IfosDD;EetrDD;IACE,aAAA;IfwrDD;EezrDD;IACE,qBAAA;If2rDD;Ee5rDD;IACE,qBAAA;If8rDD;Ee/rDD;IACE,YAAA;IfisDD;EelsDD;IACE,qBAAA;IfosDD;EersDD;IACE,qBAAA;IfusDD;EexsDD;IACE,YAAA;If0sDD;Ee3sDD;IACE,qBAAA;If6sDD;Ee9sDD;IACE,qBAAA;IfgtDD;EejtDD;IACE,YAAA;IfmtDD;EeptDD;IACE,qBAAA;IfstDD;EevtDD;IACE,oBAAA;IfytDD;EertDD;IACE,aAAA;IfutDD;EevuDD;IACE,YAAA;IfyuDD;Ee1uDD;IACE,oBAAA;If4uDD;Ee7uDD;IACE,oBAAA;If+uDD;EehvDD;IACE,WAAA;IfkvDD;EenvDD;IACE,oBAAA;IfqvDD;EetvDD;IACE,oBAAA;IfwvDD;EezvDD;IACE,WAAA;If2vDD;Ee5vDD;IACE,oBAAA;If8vDD;Ee/vDD;IACE,oBAAA;IfiwDD;EelwDD;IACE,WAAA;IfowDD;EerwDD;IACE,oBAAA;IfuwDD;EexwDD;IACE,mBAAA;If0wDD;EetwDD;IACE,YAAA;IfwwDD;Ee1vDD;IACE,mBAAA;If4vDD;Ee7vDD;IACE,2BAAA;If+vDD;EehwDD;IACE,2BAAA;IfkwDD;EenwDD;IACE,kBAAA;IfqwDD;EetwDD;IACE,2BAAA;IfwwDD;EezwDD;IACE,2BAAA;If2wDD;Ee5wDD;IACE,kBAAA;If8wDD;Ee/wDD;IACE,2BAAA;IfixDD;EelxDD;IACE,2BAAA;IfoxDD;EerxDD;IACE,kBAAA;IfuxDD;EexxDD;IACE,2BAAA;If0xDD;Ee3xDD;IACE,0BAAA;If6xDD;Ee9xDD;IACE,iBAAA;IfgyDD;EACF;AaxxDD;EE3CI;IACE,aAAA;Ifs0DH;Ee/zDD;IACE,aAAA;Ifi0DD;Eel0DD;IACE,qBAAA;Ifo0DD;Eer0DD;IACE,qBAAA;Ifu0DD;Eex0DD;IACE,YAAA;If00DD;Ee30DD;IACE,qBAAA;If60DD;Ee90DD;IACE,qBAAA;Ifg1DD;Eej1DD;IACE,YAAA;Ifm1DD;Eep1DD;IACE,qBAAA;Ifs1DD;Eev1DD;IACE,qBAAA;Ify1DD;Ee11DD;IACE,YAAA;If41DD;Ee71DD;IACE,qBAAA;If+1DD;Eeh2DD;IACE,oBAAA;Ifk2DD;Eep1DD;IACE,aAAA;Ifs1DD;Eev1DD;IACE,qBAAA;Ify1DD;Ee11DD;IACE,qBAAA;If41DD;Ee71DD;IACE,YAAA;If+1DD;Eeh2DD;IACE,qBAAA;Ifk2DD;Een2DD;IACE,qBAAA;Ifq2DD;Eet2DD;IACE,YAAA;Ifw2DD;Eez2DD;IACE,qBAAA;If22DD;Ee52DD;IACE,qBAAA;If82DD;Ee/2DD;IACE,YAAA;Ifi3DD;Eel3DD;IACE,qBAAA;Ifo3DD;Eer3DD;IACE,oBAAA;Ifu3DD;Een3DD;IACE,aAAA;Ifq3DD;Eer4DD;IACE,YAAA;Ifu4DD;Eex4DD;IACE,oBAAA;If04DD;Ee34DD;IACE,oBAAA;If64DD;Ee94DD;IACE,WAAA;Ifg5DD;Eej5DD;IACE,oBAAA;Ifm5DD;Eep5DD;IACE,oBAAA;Ifs5DD;Eev5DD;IACE,WAAA;Ify5DD;Ee15DD;IACE,oBAAA;If45DD;Ee75DD;IACE,oBAAA;If+5DD;Eeh6DD;IACE,WAAA;Ifk6DD;Een6DD;IACE,oBAAA;Ifq6DD;Eet6DD;IACE,mBAAA;Ifw6DD;Eep6DD;IACE,YAAA;Ifs6DD;Eex5DD;IACE,mBAAA;If05DD;Ee35DD;IACE,2BAAA;If65DD;Ee95DD;IACE,2BAAA;Ifg6DD;Eej6DD;IACE,kBAAA;Ifm6DD;Eep6DD;IACE,2BAAA;Ifs6DD;Eev6DD;IACE,2BAAA;Ify6DD;Ee16DD;IACE,kBAAA;If46DD;Ee76DD;IACE,2BAAA;If+6DD;Eeh7DD;IACE,2BAAA;Ifk7DD;Een7DD;IACE,kBAAA;Ifq7DD;Eet7DD;IACE,2BAAA;Ifw7DD;Eez7DD;IACE,0BAAA;If27DD;Ee57DD;IACE,iBAAA;If87DD;EACF;Aan7DD;EE9CI;IACE,aAAA;Ifo+DH;Ee79DD;IACE,aAAA;If+9DD;Eeh+DD;IACE,qBAAA;Ifk+DD;Een+DD;IACE,qBAAA;Ifq+DD;Eet+DD;IACE,YAAA;Ifw+DD;Eez+DD;IACE,qBAAA;If2+DD;Ee5+DD;IACE,qBAAA;If8+DD;Ee/+DD;IACE,YAAA;Ifi/DD;Eel/DD;IACE,qBAAA;Ifo/DD;Eer/DD;IACE,qBAAA;Ifu/DD;Eex/DD;IACE,YAAA;If0/DD;Ee3/DD;IACE,qBAAA;If6/DD;Ee9/DD;IACE,oBAAA;IfggED;Eel/DD;IACE,aAAA;Ifo/DD;Eer/DD;IACE,qBAAA;Ifu/DD;Eex/DD;IACE,qBAAA;If0/DD;Ee3/DD;IACE,YAAA;If6/DD;Ee9/DD;IACE,qBAAA;IfggED;EejgED;IACE,qBAAA;IfmgED;EepgED;IACE,YAAA;IfsgED;EevgED;IACE,qBAAA;IfygED;Ee1gED;IACE,qBAAA;If4gED;Ee7gED;IACE,YAAA;If+gED;EehhED;IACE,qBAAA;IfkhED;EenhED;IACE,oBAAA;IfqhED;EejhED;IACE,aAAA;IfmhED;EeniED;IACE,YAAA;IfqiED;EetiED;IACE,oBAAA;IfwiED;EeziED;IACE,oBAAA;If2iED;Ee5iED;IACE,WAAA;If8iED;Ee/iED;IACE,oBAAA;IfijED;EeljED;IACE,oBAAA;IfojED;EerjED;IACE,WAAA;IfujED;EexjED;IACE,oBAAA;If0jED;Ee3jED;IACE,oBAAA;If6jED;Ee9jED;IACE,WAAA;IfgkED;EejkED;IACE,oBAAA;IfmkED;EepkED;IACE,mBAAA;IfskED;EelkED;IACE,YAAA;IfokED;EetjED;IACE,mBAAA;IfwjED;EezjED;IACE,2BAAA;If2jED;Ee5jED;IACE,2BAAA;If8jED;Ee/jED;IACE,kBAAA;IfikED;EelkED;IACE,2BAAA;IfokED;EerkED;IACE,2BAAA;IfukED;EexkED;IACE,kBAAA;If0kED;Ee3kED;IACE,2BAAA;If6kED;Ee9kED;IACE,2BAAA;IfglED;EejlED;IACE,kBAAA;IfmlED;EeplED;IACE,2BAAA;IfslED;EevlED;IACE,0BAAA;IfylED;Ee1lED;IACE,iBAAA;If4lED;EACF;AgBhqED;EACE,+BAAA;EhBkqED;AgBhqED;EACE,kBAAA;EACA,qBAAA;EACA,gBAAA;EACA,kBAAA;EhBkqED;AgBhqED;EACE,kBAAA;EhBkqED;AgB5pED;EACE,aAAA;EACA,iBAAA;EACA,qBAAA;EhB8pED;AgBjqED;;;;;;EAWQ,cAAA;EACA,yBAAA;EACA,qBAAA;EACA,+BAAA;EhB8pEP;AgB5qED;EAoBI,wBAAA;EACA,kCAAA;EhB2pEH;AgBhrED;;;;;;EA8BQ,eAAA;EhB0pEP;AgBxrED;EAoCI,+BAAA;EhBupEH;AgB3rED;EAyCI,2BAAA;EhBqpEH;AgB9oED;;;;;;EAOQ,cAAA;EhB+oEP;AgBpoED;EACE,2BAAA;EhBsoED;AgBvoED;;;;;;EAQQ,2BAAA;EhBuoEP;AgB/oED;;EAeM,0BAAA;EhBooEL;AgB1nED;EAEI,2BAAA;EhB2nEH;AgBlnED;EAEI,2BAAA;EhBmnEH;AgB1mED;EACE,kBAAA;EACA,aAAA;EACA,uBAAA;EhB4mED;AgBvmEG;;EACE,kBAAA;EACA,aAAA;EACA,qBAAA;EhB0mEL;AiBtvEC;;;;;;;;;;;;EAOI,2BAAA;EjB6vEL;AiBvvEC;;;;;EAMI,2BAAA;EjBwvEL;AiB3wEC;;;;;;;;;;;;EAOI,2BAAA;EjBkxEL;AiB5wEC;;;;;EAMI,2BAAA;EjB6wEL;AiBhyEC;;;;;;;;;;;;EAOI,2BAAA;EjBuyEL;AiBjyEC;;;;;EAMI,2BAAA;EjBkyEL;AiBrzEC;;;;;;;;;;;;EAOI,2BAAA;EjB4zEL;AiBtzEC;;;;;EAMI,2BAAA;EjBuzEL;AiB10EC;;;;;;;;;;;;EAOI,2BAAA;EjBi1EL;AiB30EC;;;;;EAMI,2BAAA;EjB40EL;AgB1rED;EACE,kBAAA;EACA,mBAAA;EhB4rED;AgB/nED;EAAA;IA1DI,aAAA;IACA,qBAAA;IACA,oBAAA;IACA,8CAAA;IACA,2BAAA;IhB6rED;EgBvoEH;IAlDM,kBAAA;IhB4rEH;EgB1oEH;;;;;;IAzCY,qBAAA;IhB2rET;EgBlpEH;IAjCM,WAAA;IhBsrEH;EgBrpEH;;;;;;IAxBY,gBAAA;IhBqrET;EgB7pEH;;;;;;IApBY,iBAAA;IhByrET;EgBrqEH;;;;IAPY,kBAAA;IhBkrET;EACF;AkB54ED;EACE,YAAA;EACA,WAAA;EACA,WAAA;EAIA,cAAA;ElB24ED;AkBx4ED;EACE,gBAAA;EACA,aAAA;EACA,YAAA;EACA,qBAAA;EACA,iBAAA;EACA,sBAAA;EACA,gBAAA;EACA,WAAA;EACA,kCAAA;ElB04ED;AkBv4ED;EACE,uBAAA;EACA,iBAAA;EACA,oBAAA;EACA,mBAAA;ElBy4ED;AkB93ED;Eb4BE,gCAAA;EACG,6BAAA;EACK,wBAAA;ELq2ET;AkB93ED;;EAEE,iBAAA;EACA,oBAAA;EACA,qBAAA;ElBg4ED;AkB53ED;EACE,gBAAA;ElB83ED;AkB13ED;EACE,gBAAA;EACA,aAAA;ElB43ED;AkBx3ED;;EAEE,cAAA;ElB03ED;AkBt3ED;;;EZxEE,sBAAA;EAEA,4CAAA;EACA,sBAAA;ENk8ED;AkBt3ED;EACE,gBAAA;EACA,kBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;ElBw3ED;AkB91ED;EACE,gBAAA;EACA,aAAA;EACA,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,2BAAA;EACA,wBAAA;EACA,2BAAA;EACA,oBAAA;EbzDA,0DAAA;EACQ,kDAAA;EAyHR,wFAAA;EACK,2EAAA;EACG,wEAAA;ELkyET;AmB16EC;EACE,uBAAA;EACA,YAAA;EdUF,wFAAA;EACQ,gFAAA;ELm6ET;AKl4EC;EACE,gBAAA;EACA,YAAA;ELo4EH;AKl4EC;EAA0B,gBAAA;ELq4E3B;AKp4EC;EAAgC,gBAAA;ELu4EjC;AkBt2EC;;;EAGE,qBAAA;EACA,2BAAA;EACA,YAAA;ElBw2EH;AkBp2EC;EACE,cAAA;ElBs2EH;AkB11ED;EACE,0BAAA;ElB41ED;AkBxzED;EAxBE;;;;IAIE,mBAAA;IlBm1ED;EkBj1EC;;;;;;;;IAEE,mBAAA;IlBy1EH;EkBt1EC;;;;;;;;IAEE,mBAAA;IlB81EH;EACF;AkBp1ED;EACE,qBAAA;ElBs1ED;AkB90ED;;EAEE,oBAAA;EACA,gBAAA;EACA,kBAAA;EACA,qBAAA;ElBg1ED;AkBr1ED;;EAQI,kBAAA;EACA,oBAAA;EACA,kBAAA;EACA,qBAAA;EACA,iBAAA;ElBi1EH;AkB90ED;;;;EAIE,oBAAA;EACA,oBAAA;EACA,oBAAA;ElBg1ED;AkB70ED;;EAEE,kBAAA;ElB+0ED;AkB30ED;;EAEE,uBAAA;EACA,oBAAA;EACA,kBAAA;EACA,wBAAA;EACA,qBAAA;EACA,iBAAA;ElB60ED;AkB30ED;;EAEE,eAAA;EACA,mBAAA;ElB60ED;AkBp0EC;;;;;;EAGE,qBAAA;ElBy0EH;AkBn0EC;;;;EAEE,qBAAA;ElBu0EH;AkBj0EC;;;;EAGI,qBAAA;ElBo0EL;AkBzzED;EAEE,kBAAA;EACA,qBAAA;EAEA,kBAAA;ElByzED;AkBvzEC;;EAEE,iBAAA;EACA,kBAAA;ElByzEH;AkB5yED;ECpPE,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;EnBmiFD;AmBjiFC;EACE,cAAA;EACA,mBAAA;EnBmiFH;AmBhiFC;;EAEE,cAAA;EnBkiFH;AkBxzED;ECvPE,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;EnBkjFD;AmBhjFC;EACE,cAAA;EACA,mBAAA;EnBkjFH;AmB/iFC;;EAEE,cAAA;EnBijFH;AkBv0ED;EAKI,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;ElBq0EH;AkBj0ED;ECnQE,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;EnBukFD;AmBrkFC;EACE,cAAA;EACA,mBAAA;EnBukFH;AmBpkFC;;EAEE,cAAA;EnBskFH;AkB70ED;ECtQE,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;EnBslFD;AmBplFC;EACE,cAAA;EACA,mBAAA;EnBslFH;AmBnlFC;;EAEE,cAAA;EnBqlFH;AkB51ED;EAKI,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;ElB01EH;AkBj1ED;EAEE,oBAAA;ElBk1ED;AkBp1ED;EAMI,uBAAA;ElBi1EH;AkB70ED;EACE,oBAAA;EACA,QAAA;EACA,UAAA;EACA,YAAA;EACA,gBAAA;EACA,aAAA;EACA,cAAA;EACA,mBAAA;EACA,oBAAA;EACA,sBAAA;ElB+0ED;AkB70ED;EACE,aAAA;EACA,cAAA;EACA,mBAAA;ElB+0ED;AkB70ED;EACE,aAAA;EACA,cAAA;EACA,mBAAA;ElB+0ED;AkB30ED;;;;;;;;;;EC7WI,gBAAA;EnBosFH;AkBv1ED;ECzWI,uBAAA;Ed+CF,0DAAA;EACQ,kDAAA;ELqpFT;AmBnsFG;EACE,uBAAA;Ed4CJ,2EAAA;EACQ,mEAAA;EL0pFT;AkBj2ED;EC/VI,gBAAA;EACA,uBAAA;EACA,2BAAA;EnBmsFH;AkBt2ED;ECzVI,gBAAA;EnBksFH;AkBt2ED;;;;;;;;;;EChXI,gBAAA;EnBkuFH;AkBl3ED;EC5WI,uBAAA;Ed+CF,0DAAA;EACQ,kDAAA;ELmrFT;AmBjuFG;EACE,uBAAA;Ed4CJ,2EAAA;EACQ,mEAAA;ELwrFT;AkB53ED;EClWI,gBAAA;EACA,uBAAA;EACA,2BAAA;EnBiuFH;AkBj4ED;EC5VI,gBAAA;EnBguFH;AkBj4ED;;;;;;;;;;ECnXI,gBAAA;EnBgwFH;AkB74ED;EC/WI,uBAAA;Ed+CF,0DAAA;EACQ,kDAAA;ELitFT;AmB/vFG;EACE,uBAAA;Ed4CJ,2EAAA;EACQ,mEAAA;ELstFT;AkBv5ED;ECrWI,gBAAA;EACA,uBAAA;EACA,2BAAA;EnB+vFH;AkB55ED;EC/VI,gBAAA;EnB8vFH;AkBx5EC;EACG,WAAA;ElB05EJ;AkBx5EC;EACG,QAAA;ElB05EJ;AkBh5ED;EACE,gBAAA;EACA,iBAAA;EACA,qBAAA;EACA,gBAAA;ElBk5ED;AkB/zED;EAAA;IA9DM,uBAAA;IACA,kBAAA;IACA,wBAAA;IlBi4EH;EkBr0EH;IAvDM,uBAAA;IACA,aAAA;IACA,wBAAA;IlB+3EH;EkB10EH;IAhDM,uBAAA;IlB63EH;EkB70EH;IA5CM,uBAAA;IACA,wBAAA;IlB43EH;EkBj1EH;;;IAtCQ,aAAA;IlB43EL;EkBt1EH;IAhCM,aAAA;IlBy3EH;EkBz1EH;IA5BM,kBAAA;IACA,wBAAA;IlBw3EH;EkB71EH;;IApBM,uBAAA;IACA,eAAA;IACA,kBAAA;IACA,wBAAA;IlBq3EH;EkBp2EH;;IAdQ,iBAAA;IlBs3EL;EkBx2EH;;IATM,oBAAA;IACA,gBAAA;IlBq3EH;EkB72EH;IAHM,QAAA;IlBm3EH;EACF;AkBz2ED;;;;EASI,eAAA;EACA,kBAAA;EACA,kBAAA;ElBs2EH;AkBj3ED;;EAiBI,kBAAA;ElBo2EH;AkBr3ED;EJzeE,oBAAA;EACA,qBAAA;Edi2FD;AkBl1EC;EAAA;IAVI,mBAAA;IACA,kBAAA;IACA,kBAAA;IlBg2EH;EACF;AkBh4ED;EAwCI,aAAA;ElB21EH;AkB90EC;EAAA;IAHM,0BAAA;IlBq1EL;EACF;AkB50EC;EAAA;IAHM,kBAAA;IlBm1EL;EACF;AoB73FD;EACE,uBAAA;EACA,kBAAA;EACA,qBAAA;EACA,oBAAA;EACA,wBAAA;EACA,gCAAA;MAAA,4BAAA;EACA,iBAAA;EACA,wBAAA;EACA,+BAAA;EACA,qBAAA;EC6BA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,oBAAA;EhB4KA,2BAAA;EACG,wBAAA;EACC,uBAAA;EACI,mBAAA;ELwrFT;AoBh4FG;;;;;;EdrBF,sBAAA;EAEA,4CAAA;EACA,sBAAA;EN45FD;AoBp4FC;;;EAGE,gBAAA;EACA,uBAAA;EpBs4FH;AoBn4FC;;EAEE,YAAA;EACA,wBAAA;Ef2BF,0DAAA;EACQ,kDAAA;EL22FT;AoBn4FC;;;EAGE,qBAAA;EACA,sBAAA;EE9CF,eAAA;EAGA,2BAAA;EjB8DA,0BAAA;EACQ,kBAAA;ELq3FT;AoB/3FD;ECrDE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBu7FD;AqBr7FC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBu7FP;AqBr7FC;;;EAGE,wBAAA;ErBu7FH;AqBl7FG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBg8FT;AoBx6FD;ECnBI,gBAAA;EACA,2BAAA;ErB87FH;AoBz6FD;ECxDE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBo+FD;AqBl+FC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBo+FP;AqBl+FC;;;EAGE,wBAAA;ErBo+FH;AqB/9FG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErB6+FT;AoBl9FD;ECtBI,gBAAA;EACA,2BAAA;ErB2+FH;AoBl9FD;EC5DE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBihGD;AqB/gGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBihGP;AqB/gGC;;;EAGE,wBAAA;ErBihGH;AqB5gGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErB0hGT;AoB3/FD;EC1BI,gBAAA;EACA,2BAAA;ErBwhGH;AoB3/FD;EChEE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErB8jGD;AqB5jGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErB8jGP;AqB5jGC;;;EAGE,wBAAA;ErB8jGH;AqBzjGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBukGT;AoBpiGD;EC9BI,gBAAA;EACA,2BAAA;ErBqkGH;AoBpiGD;ECpEE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErB2mGD;AqBzmGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErB2mGP;AqBzmGC;;;EAGE,wBAAA;ErB2mGH;AqBtmGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBonGT;AoB7kGD;EClCI,gBAAA;EACA,2BAAA;ErBknGH;AoB7kGD;ECxEE,gBAAA;EACA,2BAAA;EACA,uBAAA;ErBwpGD;AqBtpGC;;;;;;EAME,gBAAA;EACA,2BAAA;EACI,uBAAA;ErBwpGP;AqBtpGC;;;EAGE,wBAAA;ErBwpGH;AqBnpGG;;;;;;;;;;;;;;;;;;EAME,2BAAA;EACI,uBAAA;ErBiqGT;AoBtnGD;ECtCI,gBAAA;EACA,2BAAA;ErB+pGH;AoBjnGD;EACE,gBAAA;EACA,qBAAA;EACA,kBAAA;EpBmnGD;AoBjnGC;;;;;EAKE,+BAAA;Ef7BF,0BAAA;EACQ,kBAAA;ELipGT;AoBlnGC;;;;EAIE,2BAAA;EpBonGH;AoBlnGC;;EAEE,gBAAA;EACA,4BAAA;EACA,+BAAA;EpBonGH;AoBhnGG;;;;EAEE,gBAAA;EACA,uBAAA;EpBonGL;AoB3mGD;;EC/EE,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;ErB8rGD;AoB9mGD;;ECnFE,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;ErBqsGD;AoBjnGD;;ECvFE,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;ErB4sGD;AoBhnGD;EACE,gBAAA;EACA,aAAA;EpBknGD;AoB9mGD;EACE,iBAAA;EpBgnGD;AoBzmGC;;;EACE,aAAA;EpB6mGH;AuBjwGD;EACE,YAAA;ElBoLA,0CAAA;EACK,qCAAA;EACG,kCAAA;ELglGT;AuBpwGC;EACE,YAAA;EvBswGH;AuBlwGD;EACE,eAAA;EACA,oBAAA;EvBowGD;AuBlwGC;EAAY,gBAAA;EAAgB,qBAAA;EvBswG7B;AuBrwGC;EAAY,oBAAA;EvBwwGb;AuBvwGC;EAAY,0BAAA;EvB0wGb;AuBvwGD;EACE,oBAAA;EACA,WAAA;EACA,kBAAA;ElBsKA,iDAAA;EACQ,4CAAA;KAAA,yCAAA;EAOR,oCAAA;EACQ,+BAAA;KAAA,4BAAA;EAGR,0CAAA;EACQ,qCAAA;KAAA,kCAAA;EL4lGT;AwBtyGD;EACE,uBAAA;EACA,UAAA;EACA,WAAA;EACA,kBAAA;EACA,wBAAA;EACA,uBAAA;EACA,qCAAA;EACA,oCAAA;ExBwyGD;AwBpyGD;;EAEE,oBAAA;ExBsyGD;AwBlyGD;EACE,YAAA;ExBoyGD;AwBhyGD;EACE,oBAAA;EACA,WAAA;EACA,SAAA;EACA,eAAA;EACA,eAAA;EACA,aAAA;EACA,kBAAA;EACA,gBAAA;EACA,iBAAA;EACA,kBAAA;EACA,iBAAA;EACA,kBAAA;EACA,2BAAA;EACA,2BAAA;EACA,uCAAA;EACA,oBAAA;EnBuBA,qDAAA;EACQ,6CAAA;EmBtBR,sCAAA;UAAA,8BAAA;ExBmyGD;AwB9xGC;EACE,UAAA;EACA,YAAA;ExBgyGH;AwBzzGD;ECxBE,aAAA;EACA,eAAA;EACA,kBAAA;EACA,2BAAA;EzBo1GD;AwB/zGD;EAmCI,gBAAA;EACA,mBAAA;EACA,aAAA;EACA,qBAAA;EACA,yBAAA;EACA,gBAAA;EACA,qBAAA;ExB+xGH;AwBzxGC;;EAEE,uBAAA;EACA,gBAAA;EACA,2BAAA;ExB2xGH;AwBrxGC;;;EAGE,gBAAA;EACA,uBAAA;EACA,YAAA;EACA,2BAAA;ExBuxGH;AwB9wGC;;;EAGE,gBAAA;ExBgxGH;AwB5wGC;;EAEE,uBAAA;EACA,+BAAA;EACA,wBAAA;EE1GF,qEAAA;EF4GE,qBAAA;ExB8wGH;AwBzwGD;EAGI,gBAAA;ExBywGH;AwB5wGD;EAQI,YAAA;ExBuwGH;AwB/vGD;EACE,YAAA;EACA,UAAA;ExBiwGD;AwBzvGD;EACE,SAAA;EACA,aAAA;ExB2vGD;AwBvvGD;EACE,gBAAA;EACA,mBAAA;EACA,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,qBAAA;ExByvGD;AwBrvGD;EACE,iBAAA;EACA,SAAA;EACA,UAAA;EACA,WAAA;EACA,QAAA;EACA,cAAA;ExBuvGD;AwBnvGD;EACE,UAAA;EACA,YAAA;ExBqvGD;AwB7uGD;;EAII,eAAA;EACA,0BAAA;EACA,aAAA;ExB6uGH;AwBnvGD;;EAUI,WAAA;EACA,cAAA;EACA,oBAAA;ExB6uGH;AwBxtGD;EAXE;IAnEA,YAAA;IACA,UAAA;IxB0yGC;EwBxuGD;IAzDA,SAAA;IACA,aAAA;IxBoyGC;EACF;A2Bn7GD;;EAEE,oBAAA;EACA,uBAAA;EACA,wBAAA;E3Bq7GD;A2Bz7GD;;EAMI,oBAAA;EACA,aAAA;E3Bu7GH;A2Br7GG;;;;;;;;EAIE,YAAA;E3B27GL;A2Br7GD;;;;EAKI,mBAAA;E3Bs7GH;A2Bj7GD;EACE,mBAAA;E3Bm7GD;A2Bp7GD;;EAMI,aAAA;E3Bk7GH;A2Bx7GD;;;EAWI,kBAAA;E3Bk7GH;A2B96GD;EACE,kBAAA;E3Bg7GD;A2B56GD;EACE,gBAAA;E3B86GD;A2B76GC;ECjDA,+BAAA;EACG,4BAAA;E5Bi+GJ;A2B56GD;;EC9CE,8BAAA;EACG,2BAAA;E5B89GJ;A2B36GD;EACE,aAAA;E3B66GD;A2B36GD;EACE,kBAAA;E3B66GD;A2B36GD;;EClEE,+BAAA;EACG,4BAAA;E5Bi/GJ;A2B16GD;EChEE,8BAAA;EACG,2BAAA;E5B6+GJ;A2Bz6GD;;EAEE,YAAA;E3B26GD;A2B15GD;EACE,mBAAA;EACA,oBAAA;E3B45GD;A2B15GD;EACE,oBAAA;EACA,qBAAA;E3B45GD;A2Bv5GD;EtB9CE,0DAAA;EACQ,kDAAA;ELw8GT;A2Bv5GC;EtBlDA,0BAAA;EACQ,kBAAA;EL48GT;A2Bp5GD;EACE,gBAAA;E3Bs5GD;A2Bn5GD;EACE,yBAAA;EACA,wBAAA;E3Bq5GD;A2Bl5GD;EACE,yBAAA;E3Bo5GD;A2B74GD;;;EAII,gBAAA;EACA,aAAA;EACA,aAAA;EACA,iBAAA;E3B84GH;A2Br5GD;EAcM,aAAA;E3B04GL;A2Bx5GD;;;;EAsBI,kBAAA;EACA,gBAAA;E3Bw4GH;A2Bn4GC;EACE,kBAAA;E3Bq4GH;A2Bn4GC;EACE,8BAAA;ECnKF,+BAAA;EACC,8BAAA;E5ByiHF;A2Bp4GC;EACE,gCAAA;EC/KF,4BAAA;EACC,2BAAA;E5BsjHF;A2Bp4GD;EACE,kBAAA;E3Bs4GD;A2Bp4GD;;EC9KE,+BAAA;EACC,8BAAA;E5BsjHF;A2Bn4GD;EC5LE,4BAAA;EACC,2BAAA;E5BkkHF;A2B/3GD;EACE,gBAAA;EACA,aAAA;EACA,qBAAA;EACA,2BAAA;E3Bi4GD;A2Br4GD;;EAOI,aAAA;EACA,qBAAA;EACA,WAAA;E3Bk4GH;A2B34GD;EAYI,aAAA;E3Bk4GH;A2B94GD;EAgBI,YAAA;E3Bi4GH;A2Bh3GD;;;;EAKM,oBAAA;EACA,wBAAA;EACA,sBAAA;E3Bi3GL;A6B1lHD;EACE,oBAAA;EACA,gBAAA;EACA,2BAAA;E7B4lHD;A6BzlHC;EACE,aAAA;EACA,iBAAA;EACA,kBAAA;E7B2lHH;A6BpmHD;EAeI,oBAAA;EACA,YAAA;EAKA,aAAA;EAEA,aAAA;EACA,kBAAA;E7BmlHH;A6B1kHD;;;EV8BE,cAAA;EACA,oBAAA;EACA,iBAAA;EACA,wBAAA;EACA,oBAAA;EnBijHD;AmB/iHC;;;EACE,cAAA;EACA,mBAAA;EnBmjHH;AmBhjHC;;;;;;EAEE,cAAA;EnBsjHH;A6B5lHD;;;EVyBE,cAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;EnBwkHD;AmBtkHC;;;EACE,cAAA;EACA,mBAAA;EnB0kHH;AmBvkHC;;;;;;EAEE,cAAA;EnB6kHH;A6B1mHD;;;EAGE,qBAAA;E7B4mHD;A6B1mHC;;;EACE,kBAAA;E7B8mHH;A6B1mHD;;EAEE,WAAA;EACA,qBAAA;EACA,wBAAA;E7B4mHD;A6BvmHD;EACE,mBAAA;EACA,iBAAA;EACA,qBAAA;EACA,gBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;E7BymHD;A6BtmHC;EACE,mBAAA;EACA,iBAAA;EACA,oBAAA;E7BwmHH;A6BtmHC;EACE,oBAAA;EACA,iBAAA;EACA,oBAAA;E7BwmHH;A6B5nHD;;EA0BI,eAAA;E7BsmHH;A6BjmHD;;;;;;;EDhGE,+BAAA;EACG,4BAAA;E5B0sHJ;A6BlmHD;EACE,iBAAA;E7BomHD;A6BlmHD;;;;;;;EDpGE,8BAAA;EACG,2BAAA;E5B+sHJ;A6BnmHD;EACE,gBAAA;E7BqmHD;A6BhmHD;EACE,oBAAA;EAGA,cAAA;EACA,qBAAA;E7BgmHD;A6BrmHD;EAUI,oBAAA;E7B8lHH;A6BxmHD;EAYM,mBAAA;E7B+lHL;A6B5lHG;;;EAGE,YAAA;E7B8lHL;A6BzlHC;;EAGI,oBAAA;E7B0lHL;A6BvlHC;;EAGI,mBAAA;E7BwlHL;A8BlvHD;EACE,kBAAA;EACA,iBAAA;EACA,kBAAA;E9BovHD;A8BvvHD;EAOI,oBAAA;EACA,gBAAA;E9BmvHH;A8B3vHD;EAWM,oBAAA;EACA,gBAAA;EACA,oBAAA;E9BmvHL;A8BlvHK;;EAEE,uBAAA;EACA,2BAAA;E9BovHP;A8B/uHG;EACE,gBAAA;E9BivHL;A8B/uHK;;EAEE,gBAAA;EACA,uBAAA;EACA,+BAAA;EACA,qBAAA;E9BivHP;A8B1uHG;;;EAGE,2BAAA;EACA,uBAAA;E9B4uHL;A8BrxHD;ELHE,aAAA;EACA,eAAA;EACA,kBAAA;EACA,2BAAA;EzB2xHD;A8B3xHD;EA0DI,iBAAA;E9BouHH;A8B3tHD;EACE,kCAAA;E9B6tHD;A8B9tHD;EAGI,aAAA;EAEA,qBAAA;E9B6tHH;A8BluHD;EASM,mBAAA;EACA,yBAAA;EACA,+BAAA;EACA,4BAAA;E9B4tHL;A8B3tHK;EACE,uCAAA;E9B6tHP;A8BvtHK;;;EAGE,gBAAA;EACA,2BAAA;EACA,2BAAA;EACA,kCAAA;EACA,iBAAA;E9BytHP;A8BptHC;EAqDA,aAAA;EA8BA,kBAAA;E9BqoHD;A8BxtHC;EAwDE,aAAA;E9BmqHH;A8B3tHC;EA0DI,oBAAA;EACA,oBAAA;E9BoqHL;A8B/tHC;EAgEE,WAAA;EACA,YAAA;E9BkqHH;A8BtpHD;EAAA;IAPM,qBAAA;IACA,WAAA;I9BiqHH;E8B3pHH;IAJQ,kBAAA;I9BkqHL;EACF;A8B5uHC;EAuFE,iBAAA;EACA,oBAAA;E9BwpHH;A8BhvHC;;;EA8FE,2BAAA;E9BupHH;A8BzoHD;EAAA;IATM,kCAAA;IACA,4BAAA;I9BspHH;E8B9oHH;;;IAHM,8BAAA;I9BspHH;EACF;A8BvvHD;EAEI,aAAA;E9BwvHH;A8B1vHD;EAMM,oBAAA;E9BuvHL;A8B7vHD;EASM,kBAAA;E9BuvHL;A8BlvHK;;;EAGE,gBAAA;EACA,2BAAA;E9BovHP;A8B5uHD;EAEI,aAAA;E9B6uHH;A8B/uHD;EAIM,iBAAA;EACA,gBAAA;E9B8uHL;A8BluHD;EACE,aAAA;E9BouHD;A8BruHD;EAII,aAAA;E9BouHH;A8BxuHD;EAMM,oBAAA;EACA,oBAAA;E9BquHL;A8B5uHD;EAYI,WAAA;EACA,YAAA;E9BmuHH;A8BvtHD;EAAA;IAPM,qBAAA;IACA,WAAA;I9BkuHH;E8B5tHH;IAJQ,kBAAA;I9BmuHL;EACF;A8B3tHD;EACE,kBAAA;E9B6tHD;A8B9tHD;EAKI,iBAAA;EACA,oBAAA;E9B4tHH;A8BluHD;;;EAYI,2BAAA;E9B2tHH;A8B7sHD;EAAA;IATM,kCAAA;IACA,4BAAA;I9B0tHH;E8BltHH;;;IAHM,8BAAA;I9B0tHH;EACF;A8BjtHD;EAEI,eAAA;EACA,oBAAA;E9BktHH;A8BrtHD;EAMI,gBAAA;EACA,qBAAA;E9BktHH;A8BzsHD;EAEE,kBAAA;EF7OA,4BAAA;EACC,2BAAA;E5Bw7HF;A+Bl7HD;EACE,oBAAA;EACA,kBAAA;EACA,qBAAA;EACA,+BAAA;E/Bo7HD;A+B56HD;EAAA;IAFI,oBAAA;I/Bk7HD;EACF;A+Bn6HD;EAAA;IAFI,aAAA;I/By6HD;EACF;A+B35HD;EACE,qBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mCAAA;EACA,4DAAA;UAAA,oDAAA;EAEA,mCAAA;E/B45HD;A+B15HC;EACE,kBAAA;E/B45HH;A+B/3HD;EAAA;IAzBI,aAAA;IACA,eAAA;IACA,0BAAA;YAAA,kBAAA;I/B45HD;E+B15HC;IACE,2BAAA;IACA,gCAAA;IACA,yBAAA;IACA,mBAAA;IACA,8BAAA;I/B45HH;E+Bz5HC;IACE,qBAAA;I/B25HH;E+Bt5HC;;;IAGE,iBAAA;IACA,kBAAA;I/Bw5HH;EACF;A+Bp5HD;;EAGI,mBAAA;E/Bq5HH;A+Bh5HC;EAAA;;IAFI,mBAAA;I/Bu5HH;EACF;A+B94HD;;;;EAII,qBAAA;EACA,oBAAA;E/Bg5HH;A+B14HC;EAAA;;;;IAHI,iBAAA;IACA,gBAAA;I/Bo5HH;EACF;A+Bx4HD;EACE,eAAA;EACA,uBAAA;E/B04HD;A+Br4HD;EAAA;IAFI,kBAAA;I/B24HD;EACF;A+Bv4HD;;EAEE,iBAAA;EACA,UAAA;EACA,SAAA;EACA,eAAA;E/By4HD;A+Bn4HD;EAAA;;IAFI,kBAAA;I/B04HD;EACF;A+Bx4HD;EACE,QAAA;EACA,uBAAA;E/B04HD;A+Bx4HD;EACE,WAAA;EACA,kBAAA;EACA,uBAAA;E/B04HD;A+Bp4HD;EACE,aAAA;EACA,oBAAA;EACA,iBAAA;EACA,mBAAA;EACA,cAAA;E/Bs4HD;A+Bp4HC;;EAEE,uBAAA;E/Bs4HH;A+B/4HD;EAaI,gBAAA;E/Bq4HH;A+B53HD;EALI;;IAEE,oBAAA;I/Bo4HH;EACF;A+B13HD;EACE,oBAAA;EACA,cAAA;EACA,oBAAA;EACA,mBAAA;EC/LA,iBAAA;EACA,oBAAA;EDgMA,+BAAA;EACA,wBAAA;EACA,+BAAA;EACA,oBAAA;E/B63HD;A+Bz3HC;EACE,YAAA;E/B23HH;A+Bz4HD;EAmBI,gBAAA;EACA,aAAA;EACA,aAAA;EACA,oBAAA;E/By3HH;A+B/4HD;EAyBI,iBAAA;E/By3HH;A+Bn3HD;EAAA;IAFI,eAAA;I/By3HD;EACF;A+Bh3HD;EACE,qBAAA;E/Bk3HD;A+Bn3HD;EAII,mBAAA;EACA,sBAAA;EACA,mBAAA;E/Bk3HH;A+Bt1HC;EAAA;IAtBI,kBAAA;IACA,aAAA;IACA,aAAA;IACA,eAAA;IACA,+BAAA;IACA,WAAA;IACA,0BAAA;YAAA,kBAAA;I/Bg3HH;E+Bh2HD;;IAbM,4BAAA;I/Bi3HL;E+Bp2HD;IAVM,mBAAA;I/Bi3HL;E+Bh3HK;;IAEE,wBAAA;I/Bk3HP;EACF;A+Bh2HD;EAAA;IAXI,aAAA;IACA,WAAA;I/B+2HD;E+Br2HH;IAPM,aAAA;I/B+2HH;E+Bx2HH;IALQ,mBAAA;IACA,sBAAA;I/Bg3HL;EACF;A+Br2HD;EACE,oBAAA;EACA,qBAAA;EACA,oBAAA;EACA,mCAAA;EACA,sCAAA;E1B/NA,8FAAA;EACQ,sFAAA;E2B/DR,iBAAA;EACA,oBAAA;EhCuoID;AkB9pHD;EAAA;IA9DM,uBAAA;IACA,kBAAA;IACA,wBAAA;IlBguHH;EkBpqHH;IAvDM,uBAAA;IACA,aAAA;IACA,wBAAA;IlB8tHH;EkBzqHH;IAhDM,uBAAA;IlB4tHH;EkB5qHH;IA5CM,uBAAA;IACA,wBAAA;IlB2tHH;EkBhrHH;;;IAtCQ,aAAA;IlB2tHL;EkBrrHH;IAhCM,aAAA;IlBwtHH;EkBxrHH;IA5BM,kBAAA;IACA,wBAAA;IlButHH;EkB5rHH;;IApBM,uBAAA;IACA,eAAA;IACA,kBAAA;IACA,wBAAA;IlBotHH;EkBnsHH;;IAdQ,iBAAA;IlBqtHL;EkBvsHH;;IATM,oBAAA;IACA,gBAAA;IlBotHH;EkB5sHH;IAHM,QAAA;IlBktHH;EACF;A+B94HC;EAAA;IANI,oBAAA;I/Bw5HH;E+Bt5HG;IACE,kBAAA;I/Bw5HL;EACF;A+Bv4HD;EAAA;IARI,aAAA;IACA,WAAA;IACA,gBAAA;IACA,iBAAA;IACA,gBAAA;IACA,mBAAA;I1B1PF,0BAAA;IACQ,kBAAA;IL8oIP;EACF;A+B74HD;EACE,eAAA;EHrUA,4BAAA;EACC,2BAAA;E5BqtIF;A+B74HD;EACE,kBAAA;EH1UA,8BAAA;EACC,6BAAA;EAOD,+BAAA;EACC,8BAAA;E5BotIF;A+Bz4HD;ECjVE,iBAAA;EACA,oBAAA;EhC6tID;A+B14HC;ECpVA,kBAAA;EACA,qBAAA;EhCiuID;A+B34HC;ECvVA,kBAAA;EACA,qBAAA;EhCquID;A+Br4HD;ECjWE,kBAAA;EACA,qBAAA;EhCyuID;A+Bj4HD;EAAA;IAJI,aAAA;IACA,mBAAA;IACA,oBAAA;I/By4HD;EACF;A+B52HD;EAhBE;IEzWA,wBAAA;IjCyuIC;E+B/3HD;IE7WA,yBAAA;IF+WE,qBAAA;I/Bi4HD;E+Bn4HD;IAKI,iBAAA;I/Bi4HH;EACF;A+Bx3HD;EACE,2BAAA;EACA,uBAAA;E/B03HD;A+B53HD;EAKI,gBAAA;E/B03HH;A+Bz3HG;;EAEE,gBAAA;EACA,+BAAA;E/B23HL;A+Bp4HD;EAcI,gBAAA;E/By3HH;A+Bv4HD;EAmBM,gBAAA;E/Bu3HL;A+Br3HK;;EAEE,gBAAA;EACA,+BAAA;E/Bu3HP;A+Bn3HK;;;EAGE,gBAAA;EACA,2BAAA;E/Bq3HP;A+Bj3HK;;;EAGE,gBAAA;EACA,+BAAA;E/Bm3HP;A+B35HD;EA8CI,uBAAA;E/Bg3HH;A+B/2HG;;EAEE,2BAAA;E/Bi3HL;A+Bl6HD;EAoDM,2BAAA;E/Bi3HL;A+Br6HD;;EA0DI,uBAAA;E/B+2HH;A+Bx2HK;;;EAGE,2BAAA;EACA,gBAAA;E/B02HP;A+Bz0HC;EAAA;IAzBQ,gBAAA;I/Bs2HP;E+Br2HO;;IAEE,gBAAA;IACA,+BAAA;I/Bu2HT;E+Bn2HO;;;IAGE,gBAAA;IACA,2BAAA;I/Bq2HT;E+Bj2HO;;;IAGE,gBAAA;IACA,+BAAA;I/Bm2HT;EACF;A+Br8HD;EA8GI,gBAAA;E/B01HH;A+Bz1HG;EACE,gBAAA;E/B21HL;A+B38HD;EAqHI,gBAAA;E/By1HH;A+Bx1HG;;EAEE,gBAAA;E/B01HL;A+Bt1HK;;;;EAEE,gBAAA;E/B01HP;A+Bl1HD;EACE,2BAAA;EACA,uBAAA;E/Bo1HD;A+Bt1HD;EAKI,gBAAA;E/Bo1HH;A+Bn1HG;;EAEE,gBAAA;EACA,+BAAA;E/Bq1HL;A+B91HD;EAcI,gBAAA;E/Bm1HH;A+Bj2HD;EAmBM,gBAAA;E/Bi1HL;A+B/0HK;;EAEE,gBAAA;EACA,+BAAA;E/Bi1HP;A+B70HK;;;EAGE,gBAAA;EACA,2BAAA;E/B+0HP;A+B30HK;;;EAGE,gBAAA;EACA,+BAAA;E/B60HP;A+Br3HD;EA+CI,uBAAA;E/By0HH;A+Bx0HG;;EAEE,2BAAA;E/B00HL;A+B53HD;EAqDM,2BAAA;E/B00HL;A+B/3HD;;EA2DI,uBAAA;E/Bw0HH;A+Bl0HK;;;EAGE,2BAAA;EACA,gBAAA;E/Bo0HP;A+B7xHC;EAAA;IA/BQ,uBAAA;I/Bg0HP;E+BjyHD;IA5BQ,2BAAA;I/Bg0HP;E+BpyHD;IAzBQ,gBAAA;I/Bg0HP;E+B/zHO;;IAEE,gBAAA;IACA,+BAAA;I/Bi0HT;E+B7zHO;;;IAGE,gBAAA;IACA,2BAAA;I/B+zHT;E+B3zHO;;;IAGE,gBAAA;IACA,+BAAA;I/B6zHT;EACF;A+Br6HD;EA+GI,gBAAA;E/ByzHH;A+BxzHG;EACE,gBAAA;E/B0zHL;A+B36HD;EAsHI,gBAAA;E/BwzHH;A+BvzHG;;EAEE,gBAAA;E/ByzHL;A+BrzHK;;;;EAEE,gBAAA;E/ByzHP;AkCp8ID;EACE,mBAAA;EACA,qBAAA;EACA,kBAAA;EACA,2BAAA;EACA,oBAAA;ElCs8ID;AkC38ID;EAQI,uBAAA;ElCs8IH;AkC98ID;EAWM,mBAAA;EACA,gBAAA;EACA,gBAAA;ElCs8IL;AkCn9ID;EAkBI,gBAAA;ElCo8IH;AmCx9ID;EACE,uBAAA;EACA,iBAAA;EACA,gBAAA;EACA,oBAAA;EnC09ID;AmC99ID;EAOI,iBAAA;EnC09IH;AmCj+ID;;EAUM,oBAAA;EACA,aAAA;EACA,mBAAA;EACA,yBAAA;EACA,uBAAA;EACA,gBAAA;EACA,2BAAA;EACA,2BAAA;EACA,mBAAA;EnC29IL;AmCz9IG;;EAGI,gBAAA;EPXN,gCAAA;EACG,6BAAA;E5Bs+IJ;AmCx9IG;;EPvBF,iCAAA;EACG,8BAAA;E5Bm/IJ;AmCn9IG;;;;EAEE,gBAAA;EACA,2BAAA;EACA,uBAAA;EnCu9IL;AmCj9IG;;;;;;EAGE,YAAA;EACA,gBAAA;EACA,2BAAA;EACA,uBAAA;EACA,iBAAA;EnCs9IL;AmC5gJD;;;;;;EAiEM,gBAAA;EACA,2BAAA;EACA,uBAAA;EACA,qBAAA;EnCm9IL;AmC18ID;;EC1EM,oBAAA;EACA,iBAAA;EpCwhJL;AoCthJG;;ERMF,gCAAA;EACG,6BAAA;E5BohJJ;AoCrhJG;;ERRF,iCAAA;EACG,8BAAA;E5BiiJJ;AmCp9ID;;EC/EM,mBAAA;EACA,iBAAA;EpCuiJL;AoCriJG;;ERMF,gCAAA;EACG,6BAAA;E5BmiJJ;AoCpiJG;;ERRF,iCAAA;EACG,8BAAA;E5BgjJJ;AqCnjJD;EACE,iBAAA;EACA,gBAAA;EACA,kBAAA;EACA,oBAAA;ErCqjJD;AqCzjJD;EAOI,iBAAA;ErCqjJH;AqC5jJD;;EAUM,uBAAA;EACA,mBAAA;EACA,2BAAA;EACA,2BAAA;EACA,qBAAA;ErCsjJL;AqCpkJD;;EAmBM,uBAAA;EACA,2BAAA;ErCqjJL;AqCzkJD;;EA2BM,cAAA;ErCkjJL;AqC7kJD;;EAkCM,aAAA;ErC+iJL;AqCjlJD;;;;EA2CM,gBAAA;EACA,2BAAA;EACA,qBAAA;ErC4iJL;AsC1lJD;EACE,iBAAA;EACA,yBAAA;EACA,gBAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBAAA;EACA,oBAAA;EACA,qBAAA;EACA,0BAAA;EACA,sBAAA;EtC4lJD;AsCxlJG;;EAEE,gBAAA;EACA,uBAAA;EACA,iBAAA;EtC0lJL;AsCrlJC;EACE,eAAA;EtCulJH;AsCnlJC;EACE,oBAAA;EACA,WAAA;EtCqlJH;AsC9kJD;ECtCE,2BAAA;EvCunJD;AuCpnJG;;EAEE,2BAAA;EvCsnJL;AsCjlJD;EC1CE,2BAAA;EvC8nJD;AuC3nJG;;EAEE,2BAAA;EvC6nJL;AsCplJD;EC9CE,2BAAA;EvCqoJD;AuCloJG;;EAEE,2BAAA;EvCooJL;AsCvlJD;EClDE,2BAAA;EvC4oJD;AuCzoJG;;EAEE,2BAAA;EvC2oJL;AsC1lJD;ECtDE,2BAAA;EvCmpJD;AuChpJG;;EAEE,2BAAA;EvCkpJL;AsC7lJD;EC1DE,2BAAA;EvC0pJD;AuCvpJG;;EAEE,2BAAA;EvCypJL;AwC3pJD;EACE,uBAAA;EACA,iBAAA;EACA,kBAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBAAA;EACA,0BAAA;EACA,qBAAA;EACA,oBAAA;EACA,2BAAA;EACA,qBAAA;ExC6pJD;AwC1pJC;EACE,eAAA;ExC4pJH;AwCxpJC;EACE,oBAAA;EACA,WAAA;ExC0pJH;AwCvpJC;EACE,QAAA;EACA,kBAAA;ExCypJH;AwCppJG;;EAEE,gBAAA;EACA,uBAAA;EACA,iBAAA;ExCspJL;AwCjpJC;;EAEE,gBAAA;EACA,2BAAA;ExCmpJH;AwChpJC;EACE,cAAA;ExCkpJH;AwC/oJC;EACE,mBAAA;ExCipJH;AwC9oJC;EACE,kBAAA;ExCgpJH;AyCzsJD;EACE,oBAAA;EACA,qBAAA;EACA,gBAAA;EACA,2BAAA;EzC2sJD;AyC/sJD;;EAQI,gBAAA;EzC2sJH;AyCntJD;EAYI,qBAAA;EACA,iBAAA;EACA,kBAAA;EzC0sJH;AyCxtJD;EAkBI,2BAAA;EzCysJH;AyCtsJC;;EAEE,oBAAA;EzCwsJH;AyC/tJD;EA2BI,iBAAA;EzCusJH;AyCtrJD;EAAA;IAbI,iBAAA;IzCusJD;EyCrsJC;;IAEE,oBAAA;IACA,qBAAA;IzCusJH;EyC/rJH;;IAHM,iBAAA;IzCssJH;EACF;A0C/uJD;EACE,gBAAA;EACA,cAAA;EACA,qBAAA;EACA,yBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;ErCiLA,6CAAA;EACK,wCAAA;EACG,qCAAA;ELikJT;A0C3vJD;;EAaI,mBAAA;EACA,oBAAA;E1CkvJH;A0C9uJC;;;EAGE,uBAAA;E1CgvJH;A0CrwJD;EA0BI,cAAA;EACA,gBAAA;E1C8uJH;A2CvwJD;EACE,eAAA;EACA,qBAAA;EACA,+BAAA;EACA,oBAAA;E3CywJD;A2C7wJD;EAQI,eAAA;EAEA,gBAAA;E3CuwJH;A2CjxJD;EAeI,mBAAA;E3CqwJH;A2CpxJD;;EAqBI,kBAAA;E3CmwJH;A2CxxJD;EAyBI,iBAAA;E3CkwJH;A2C1vJD;;EAEE,qBAAA;E3C4vJD;A2C9vJD;;EAMI,oBAAA;EACA,WAAA;EACA,cAAA;EACA,gBAAA;E3C4vJH;A2CpvJD;ECvDE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5C8yJD;A2CzvJD;EClDI,2BAAA;E5C8yJH;A2C5vJD;EC/CI,gBAAA;E5C8yJH;A2C3vJD;EC3DE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5CyzJD;A2ChwJD;ECtDI,2BAAA;E5CyzJH;A2CnwJD;ECnDI,gBAAA;E5CyzJH;A2ClwJD;EC/DE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5Co0JD;A2CvwJD;EC1DI,2BAAA;E5Co0JH;A2C1wJD;ECvDI,gBAAA;E5Co0JH;A2CzwJD;ECnEE,2BAAA;EACA,uBAAA;EACA,gBAAA;E5C+0JD;A2C9wJD;EC9DI,2BAAA;E5C+0JH;A2CjxJD;EC3DI,gBAAA;E5C+0JH;A6Cj1JD;EACE;IAAQ,6BAAA;I7Co1JP;E6Cn1JD;IAAQ,0BAAA;I7Cs1JP;EACF;A6Cn1JD;EACE;IAAQ,6BAAA;I7Cs1JP;E6Cr1JD;IAAQ,0BAAA;I7Cw1JP;EACF;A6C31JD;EACE;IAAQ,6BAAA;I7Cs1JP;E6Cr1JD;IAAQ,0BAAA;I7Cw1JP;EACF;A6Cj1JD;EACE,kBAAA;EACA,cAAA;EACA,qBAAA;EACA,2BAAA;EACA,oBAAA;ExCsCA,wDAAA;EACQ,gDAAA;EL8yJT;A6Ch1JD;EACE,aAAA;EACA,WAAA;EACA,cAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2BAAA;ExCyBA,wDAAA;EACQ,gDAAA;EAyHR,qCAAA;EACK,gCAAA;EACG,6BAAA;ELksJT;A6C70JD;;ECCI,+MAAA;EACA,0MAAA;EACA,uMAAA;EDAF,oCAAA;UAAA,4BAAA;E7Ci1JD;A6C10JD;;ExC5CE,4DAAA;EACK,uDAAA;EACG,oDAAA;EL03JT;A6Cv0JD;EErEE,2BAAA;E/C+4JD;A+C54JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9C+1JH;A6C30JD;EEzEE,2BAAA;E/Cu5JD;A+Cp5JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9Cu2JH;A6C/0JD;EE7EE,2BAAA;E/C+5JD;A+C55JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9C+2JH;A6Cn1JD;EEjFE,2BAAA;E/Cu6JD;A+Cp6JC;EDgDE,+MAAA;EACA,0MAAA;EACA,uMAAA;E9Cu3JH;AgD/6JD;EAEE,kBAAA;EhDg7JD;AgD96JC;EACE,eAAA;EhDg7JH;AgD56JD;;EAEE,SAAA;EACA,kBAAA;EhD86JD;AgD36JD;EACE,gBAAA;EhD66JD;AgD16JD;EACE,gBAAA;EhD46JD;AgDz6JD;;EAEE,oBAAA;EhD26JD;AgDx6JD;;EAEE,qBAAA;EhD06JD;AgDv6JD;;;EAGE,qBAAA;EACA,qBAAA;EhDy6JD;AgDt6JD;EACE,wBAAA;EhDw6JD;AgDr6JD;EACE,wBAAA;EhDu6JD;AgDn6JD;EACE,eAAA;EACA,oBAAA;EhDq6JD;AgD/5JD;EACE,iBAAA;EACA,kBAAA;EhDi6JD;AiDn9JD;EAEE,qBAAA;EACA,iBAAA;EjDo9JD;AiD58JD;EACE,oBAAA;EACA,gBAAA;EACA,oBAAA;EAEA,qBAAA;EACA,2BAAA;EACA,2BAAA;EjD68JD;AiD18JC;ErB3BA,8BAAA;EACC,6BAAA;E5Bw+JF;AiD38JC;EACE,kBAAA;ErBvBF,iCAAA;EACC,gCAAA;E5Bq+JF;AiDp8JD;EACE,gBAAA;EjDs8JD;AiDv8JD;EAII,gBAAA;EjDs8JH;AiDl8JC;;EAEE,uBAAA;EACA,gBAAA;EACA,2BAAA;EjDo8JH;AiD97JC;;;EAGE,2BAAA;EACA,gBAAA;EACA,qBAAA;EjDg8JH;AiDr8JC;;;EASI,gBAAA;EjDi8JL;AiD18JC;;;EAYI,gBAAA;EjDm8JL;AiD97JC;;;EAGE,YAAA;EACA,gBAAA;EACA,2BAAA;EACA,uBAAA;EjDg8JH;AiDt8JC;;;;;;;;;EAYI,gBAAA;EjDq8JL;AiDj9JC;;;EAeI,gBAAA;EjDu8JL;AkDniKC;EACE,gBAAA;EACA,2BAAA;ElDqiKH;AkDniKG;EACE,gBAAA;ElDqiKL;AkDtiKG;EAII,gBAAA;ElDqiKP;AkDliKK;;EAEE,gBAAA;EACA,2BAAA;ElDoiKP;AkDliKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElDoiKP;AkDzjKC;EACE,gBAAA;EACA,2BAAA;ElD2jKH;AkDzjKG;EACE,gBAAA;ElD2jKL;AkD5jKG;EAII,gBAAA;ElD2jKP;AkDxjKK;;EAEE,gBAAA;EACA,2BAAA;ElD0jKP;AkDxjKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElD0jKP;AkD/kKC;EACE,gBAAA;EACA,2BAAA;ElDilKH;AkD/kKG;EACE,gBAAA;ElDilKL;AkDllKG;EAII,gBAAA;ElDilKP;AkD9kKK;;EAEE,gBAAA;EACA,2BAAA;ElDglKP;AkD9kKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElDglKP;AkDrmKC;EACE,gBAAA;EACA,2BAAA;ElDumKH;AkDrmKG;EACE,gBAAA;ElDumKL;AkDxmKG;EAII,gBAAA;ElDumKP;AkDpmKK;;EAEE,gBAAA;EACA,2BAAA;ElDsmKP;AkDpmKK;;;EAGE,aAAA;EACA,2BAAA;EACA,uBAAA;ElDsmKP;AiD1gKD;EACE,eAAA;EACA,oBAAA;EjD4gKD;AiD1gKD;EACE,kBAAA;EACA,kBAAA;EjD4gKD;AmDhoKD;EACE,qBAAA;EACA,2BAAA;EACA,+BAAA;EACA,oBAAA;E9C0DA,mDAAA;EACQ,2CAAA;ELykKT;AmD/nKD;EACE,eAAA;EnDioKD;AmD5nKD;EACE,oBAAA;EACA,sCAAA;EvBpBA,8BAAA;EACC,6BAAA;E5BmpKF;AmDloKD;EAMI,gBAAA;EnD+nKH;AmD1nKD;EACE,eAAA;EACA,kBAAA;EACA,iBAAA;EACA,gBAAA;EnD4nKD;AmDhoKD;;;;;EAWI,gBAAA;EnD4nKH;AmDvnKD;EACE,oBAAA;EACA,2BAAA;EACA,+BAAA;EvBxCA,iCAAA;EACC,gCAAA;E5BkqKF;AmDjnKD;;EAGI,kBAAA;EnDknKH;AmDrnKD;;EAMM,qBAAA;EACA,kBAAA;EnDmnKL;AmD/mKG;;EAEI,eAAA;EvBvEN,8BAAA;EACC,6BAAA;E5ByrKF;AmD9mKG;;EAEI,kBAAA;EvBtEN,iCAAA;EACC,gCAAA;E5BurKF;AmD3mKD;EAEI,qBAAA;EnD4mKH;AmDzmKD;EACE,qBAAA;EnD2mKD;AmDnmKD;;;EAII,kBAAA;EnDomKH;AmDxmKD;;;EAOM,oBAAA;EACA,qBAAA;EnDsmKL;AmD9mKD;;EvBnGE,8BAAA;EACC,6BAAA;E5BqtKF;AmDnnKD;;;;EAmBQ,6BAAA;EACA,8BAAA;EnDsmKP;AmD1nKD;;;;;;;;EAwBU,6BAAA;EnD4mKT;AmDpoKD;;;;;;;;EA4BU,8BAAA;EnDknKT;AmD9oKD;;EvB3FE,iCAAA;EACC,gCAAA;E5B6uKF;AmDnpKD;;;;EAyCQ,gCAAA;EACA,iCAAA;EnDgnKP;AmD1pKD;;;;;;;;EA8CU,gCAAA;EnDsnKT;AmDpqKD;;;;;;;;EAkDU,iCAAA;EnD4nKT;AmD9qKD;;;;EA2DI,+BAAA;EnDynKH;AmDprKD;;EA+DI,eAAA;EnDynKH;AmDxrKD;;EAmEI,WAAA;EnDynKH;AmD5rKD;;;;;;;;;;;;EA0EU,gBAAA;EnDgoKT;AmD1sKD;;;;;;;;;;;;EA8EU,iBAAA;EnD0oKT;AmDxtKD;;;;;;;;EAuFU,kBAAA;EnD2oKT;AmDluKD;;;;;;;;EAgGU,kBAAA;EnD4oKT;AmD5uKD;EAsGI,WAAA;EACA,kBAAA;EnDyoKH;AmD/nKD;EACE,qBAAA;EnDioKD;AmDloKD;EAKI,kBAAA;EACA,oBAAA;EnDgoKH;AmDtoKD;EASM,iBAAA;EnDgoKL;AmDzoKD;EAcI,kBAAA;EnD8nKH;AmD5oKD;;EAkBM,+BAAA;EnD8nKL;AmDhpKD;EAuBI,eAAA;EnD4nKH;AmDnpKD;EAyBM,kCAAA;EnD6nKL;AmDtnKD;ECpPE,uBAAA;EpD62KD;AoD32KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpD62KH;AoDh3KC;EAMI,2BAAA;EpD62KL;AoDn3KC;EASI,gBAAA;EACA,2BAAA;EpD62KL;AoD12KC;EAEI,8BAAA;EpD22KL;AmDroKD;ECvPE,uBAAA;EpD+3KD;AoD73KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpD+3KH;AoDl4KC;EAMI,2BAAA;EpD+3KL;AoDr4KC;EASI,gBAAA;EACA,2BAAA;EpD+3KL;AoD53KC;EAEI,8BAAA;EpD63KL;AmDppKD;EC1PE,uBAAA;EpDi5KD;AoD/4KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDi5KH;AoDp5KC;EAMI,2BAAA;EpDi5KL;AoDv5KC;EASI,gBAAA;EACA,2BAAA;EpDi5KL;AoD94KC;EAEI,8BAAA;EpD+4KL;AmDnqKD;EC7PE,uBAAA;EpDm6KD;AoDj6KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDm6KH;AoDt6KC;EAMI,2BAAA;EpDm6KL;AoDz6KC;EASI,gBAAA;EACA,2BAAA;EpDm6KL;AoDh6KC;EAEI,8BAAA;EpDi6KL;AmDlrKD;EChQE,uBAAA;EpDq7KD;AoDn7KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDq7KH;AoDx7KC;EAMI,2BAAA;EpDq7KL;AoD37KC;EASI,gBAAA;EACA,2BAAA;EpDq7KL;AoDl7KC;EAEI,8BAAA;EpDm7KL;AmDjsKD;ECnQE,uBAAA;EpDu8KD;AoDr8KC;EACE,gBAAA;EACA,2BAAA;EACA,uBAAA;EpDu8KH;AoD18KC;EAMI,2BAAA;EpDu8KL;AoD78KC;EASI,gBAAA;EACA,2BAAA;EpDu8KL;AoDp8KC;EAEI,8BAAA;EpDq8KL;AqDr9KD;EACE,oBAAA;EACA,gBAAA;EACA,WAAA;EACA,YAAA;EACA,kBAAA;ErDu9KD;AqD59KD;;;;;EAYI,oBAAA;EACA,QAAA;EACA,SAAA;EACA,WAAA;EACA,cAAA;EACA,aAAA;EACA,WAAA;ErDu9KH;AqDn9KC;EACE,wBAAA;ErDq9KH;AqDj9KC;EACE,qBAAA;ErDm9KH;AsD7+KD;EACE,kBAAA;EACA,eAAA;EACA,qBAAA;EACA,2BAAA;EACA,2BAAA;EACA,oBAAA;EjDwDA,yDAAA;EACQ,iDAAA;ELw7KT;AsDv/KD;EASI,oBAAA;EACA,mCAAA;EtDi/KH;AsD5+KD;EACE,eAAA;EACA,oBAAA;EtD8+KD;AsD5+KD;EACE,cAAA;EACA,oBAAA;EtD8+KD;AuDpgLD;EACE,cAAA;EACA,iBAAA;EACA,mBAAA;EACA,gBAAA;EACA,gBAAA;EACA,8BAAA;EjCRA,cAAA;EAGA,2BAAA;EtB6gLD;AuDrgLC;;EAEE,gBAAA;EACA,uBAAA;EACA,iBAAA;EjCfF,cAAA;EAGA,2BAAA;EtBqhLD;AuDjgLC;EACE,YAAA;EACA,iBAAA;EACA,yBAAA;EACA,WAAA;EACA,0BAAA;EvDmgLH;AwDxhLD;EACE,kBAAA;ExD0hLD;AwDthLD;EACE,eAAA;EACA,kBAAA;EACA,iBAAA;EACA,QAAA;EACA,UAAA;EACA,WAAA;EACA,SAAA;EACA,eAAA;EACA,mCAAA;EAIA,YAAA;ExDqhLD;AwDlhLC;EnD+GA,uCAAA;EACI,mCAAA;EACC,kCAAA;EACG,+BAAA;EAkER,qDAAA;EAEK,2CAAA;EACG,qCAAA;ELq2KT;AwDxhLC;EnD2GA,oCAAA;EACI,gCAAA;EACC,+BAAA;EACG,4BAAA;ELg7KT;AwD5hLD;EACE,oBAAA;EACA,kBAAA;ExD8hLD;AwD1hLD;EACE,oBAAA;EACA,aAAA;EACA,cAAA;ExD4hLD;AwDxhLD;EACE,oBAAA;EACA,2BAAA;EACA,2BAAA;EACA,sCAAA;EACA,oBAAA;EnDaA,kDAAA;EACQ,0CAAA;EmDZR,sCAAA;UAAA,8BAAA;EAEA,YAAA;ExD0hLD;AwDthLD;EACE,oBAAA;EACA,QAAA;EACA,UAAA;EACA,SAAA;EACA,2BAAA;ExDwhLD;AwDthLC;ElCnEA,YAAA;EAGA,0BAAA;EtB0lLD;AwDzhLC;ElCpEA,cAAA;EAGA,2BAAA;EtB8lLD;AwDxhLD;EACE,eAAA;EACA,kCAAA;EACA,2BAAA;ExD0hLD;AwDvhLD;EACE,kBAAA;ExDyhLD;AwDrhLD;EACE,WAAA;EACA,yBAAA;ExDuhLD;AwDlhLD;EACE,oBAAA;EACA,eAAA;ExDohLD;AwDhhLD;EACE,eAAA;EACA,mBAAA;EACA,+BAAA;ExDkhLD;AwDrhLD;EAQI,kBAAA;EACA,kBAAA;ExDghLH;AwDzhLD;EAaI,mBAAA;ExD+gLH;AwD5hLD;EAiBI,gBAAA;ExD8gLH;AwDzgLD;EACE,oBAAA;EACA,cAAA;EACA,aAAA;EACA,cAAA;EACA,kBAAA;ExD2gLD;AwDz/KD;EAZE;IACE,cAAA;IACA,mBAAA;IxDwgLD;EwDtgLD;InDrEA,mDAAA;IACQ,2CAAA;IL8kLP;EwDrgLD;IAAY,cAAA;IxDwgLX;EACF;AwDngLD;EAFE;IAAY,cAAA;IxDygLX;EACF;AyDtpLD;EACE,oBAAA;EACA,eAAA;EACA,gBAAA;EACA,qBAAA;EAEA,6DAAA;EACA,iBAAA;EACA,qBAAA;EACA,kBAAA;EnCZA,YAAA;EAGA,0BAAA;EtBkqLD;AyDtpLC;EnCfA,cAAA;EAGA,2BAAA;EtBsqLD;AyDzpLC;EAAW,kBAAA;EAAmB,gBAAA;EzD6pL/B;AyD5pLC;EAAW,kBAAA;EAAmB,gBAAA;EzDgqL/B;AyD/pLC;EAAW,iBAAA;EAAmB,gBAAA;EzDmqL/B;AyDlqLC;EAAW,mBAAA;EAAmB,gBAAA;EzDsqL/B;AyDlqLD;EACE,kBAAA;EACA,kBAAA;EACA,gBAAA;EACA,oBAAA;EACA,uBAAA;EACA,2BAAA;EACA,oBAAA;EzDoqLD;AyDhqLD;EACE,oBAAA;EACA,UAAA;EACA,WAAA;EACA,2BAAA;EACA,qBAAA;EzDkqLD;AyD9pLC;EACE,WAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;EACA,2BAAA;EzDgqLH;AyD9pLC;EACE,WAAA;EACA,YAAA;EACA,qBAAA;EACA,yBAAA;EACA,2BAAA;EzDgqLH;AyD9pLC;EACE,WAAA;EACA,WAAA;EACA,qBAAA;EACA,yBAAA;EACA,2BAAA;EzDgqLH;AyD9pLC;EACE,UAAA;EACA,SAAA;EACA,kBAAA;EACA,6BAAA;EACA,6BAAA;EzDgqLH;AyD9pLC;EACE,UAAA;EACA,UAAA;EACA,kBAAA;EACA,6BAAA;EACA,4BAAA;EzDgqLH;AyD9pLC;EACE,QAAA;EACA,WAAA;EACA,mBAAA;EACA,yBAAA;EACA,8BAAA;EzDgqLH;AyD9pLC;EACE,QAAA;EACA,YAAA;EACA,kBAAA;EACA,yBAAA;EACA,8BAAA;EzDgqLH;AyD9pLC;EACE,QAAA;EACA,WAAA;EACA,kBAAA;EACA,yBAAA;EACA,8BAAA;EzDgqLH;A0D/vLD;EACE,oBAAA;EACA,QAAA;EACA,SAAA;EACA,eAAA;EACA,eAAA;EACA,kBAAA;EACA,cAAA;EAEA,6DAAA;EACA,iBAAA;EACA,qBAAA;EACA,yBAAA;EACA,kBAAA;EACA,2BAAA;EACA,sCAAA;UAAA,8BAAA;EACA,2BAAA;EACA,sCAAA;EACA,oBAAA;ErD6CA,mDAAA;EACQ,2CAAA;EqD1CR,qBAAA;E1D+vLD;A0D5vLC;EAAY,mBAAA;E1D+vLb;A0D9vLC;EAAY,mBAAA;E1DiwLb;A0DhwLC;EAAY,kBAAA;E1DmwLb;A0DlwLC;EAAY,oBAAA;E1DqwLb;A0DlwLD;EACE,WAAA;EACA,mBAAA;EACA,iBAAA;EACA,2BAAA;EACA,kCAAA;EACA,4BAAA;E1DowLD;A0DjwLD;EACE,mBAAA;E1DmwLD;A0D3vLC;;EAEE,oBAAA;EACA,gBAAA;EACA,UAAA;EACA,WAAA;EACA,2BAAA;EACA,qBAAA;E1D6vLH;A0D1vLD;EACE,oBAAA;E1D4vLD;A0D1vLD;EACE,oBAAA;EACA,aAAA;E1D4vLD;A0DxvLC;EACE,WAAA;EACA,oBAAA;EACA,wBAAA;EACA,2BAAA;EACA,uCAAA;EACA,eAAA;E1D0vLH;A0DzvLG;EACE,cAAA;EACA,aAAA;EACA,oBAAA;EACA,wBAAA;EACA,2BAAA;E1D2vLL;A0DxvLC;EACE,UAAA;EACA,aAAA;EACA,mBAAA;EACA,sBAAA;EACA,6BAAA;EACA,yCAAA;E1D0vLH;A0DzvLG;EACE,cAAA;EACA,WAAA;EACA,eAAA;EACA,sBAAA;EACA,6BAAA;E1D2vLL;A0DxvLC;EACE,WAAA;EACA,oBAAA;EACA,qBAAA;EACA,8BAAA;EACA,0CAAA;EACA,YAAA;E1D0vLH;A0DzvLG;EACE,cAAA;EACA,UAAA;EACA,oBAAA;EACA,qBAAA;EACA,8BAAA;E1D2vLL;A0DvvLC;EACE,UAAA;EACA,cAAA;EACA,mBAAA;EACA,uBAAA;EACA,4BAAA;EACA,wCAAA;E1DyvLH;A0DxvLG;EACE,cAAA;EACA,YAAA;EACA,uBAAA;EACA,4BAAA;EACA,eAAA;E1D0vLL;A2Dv3LD;EACE,oBAAA;E3Dy3LD;A2Dt3LD;EACE,oBAAA;EACA,kBAAA;EACA,aAAA;E3Dw3LD;A2D33LD;EAMI,eAAA;EACA,oBAAA;EtD6KF,2CAAA;EACK,sCAAA;EACG,mCAAA;EL4sLT;A2Dl4LD;;EAcM,gBAAA;E3Dw3LL;A2D91LC;EAAA;ItDiKA,wDAAA;IAEK,8CAAA;IACG,wCAAA;IA7JR,qCAAA;IAEQ,6BAAA;IA+GR,2BAAA;IAEQ,mBAAA;ILivLP;E2D53LG;;ItDmHJ,4CAAA;IACQ,oCAAA;IsDjHF,SAAA;I3D+3LL;E2D73LG;;ItD8GJ,6CAAA;IACQ,qCAAA;IsD5GF,SAAA;I3Dg4LL;E2D93LG;;;ItDyGJ,yCAAA;IACQ,iCAAA;IsDtGF,SAAA;I3Di4LL;EACF;A2Dv6LD;;;EA6CI,gBAAA;E3D+3LH;A2D56LD;EAiDI,SAAA;E3D83LH;A2D/6LD;;EAsDI,oBAAA;EACA,QAAA;EACA,aAAA;E3D63LH;A2Dr7LD;EA4DI,YAAA;E3D43LH;A2Dx7LD;EA+DI,aAAA;E3D43LH;A2D37LD;;EAmEI,SAAA;E3D43LH;A2D/7LD;EAuEI,aAAA;E3D23LH;A2Dl8LD;EA0EI,YAAA;E3D23LH;A2Dn3LD;EACE,oBAAA;EACA,QAAA;EACA,SAAA;EACA,WAAA;EACA,YAAA;ErC9FA,cAAA;EAGA,2BAAA;EqC6FA,iBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2CAAA;E3Ds3LD;A2Dj3LC;EblGE,oGAAA;EACA,+FAAA;EACA,sHAAA;EAAA,gGAAA;EACA,6BAAA;EACA,wHAAA;E9Cs9LH;A2Dr3LC;EACE,YAAA;EACA,UAAA;EbvGA,oGAAA;EACA,+FAAA;EACA,sHAAA;EAAA,gGAAA;EACA,6BAAA;EACA,wHAAA;E9C+9LH;A2Dv3LC;;EAEE,YAAA;EACA,gBAAA;EACA,uBAAA;ErCtHF,cAAA;EAGA,2BAAA;EtB8+LD;A2Dx5LD;;;;EAsCI,oBAAA;EACA,UAAA;EACA,YAAA;EACA,uBAAA;E3Dw3LH;A2Dj6LD;;EA6CI,WAAA;EACA,oBAAA;E3Dw3LH;A2Dt6LD;;EAkDI,YAAA;EACA,qBAAA;E3Dw3LH;A2D36LD;;EAuDI,aAAA;EACA,cAAA;EACA,mBAAA;EACA,gBAAA;EACA,oBAAA;E3Dw3LH;A2Dn3LG;EACE,kBAAA;E3Dq3LL;A2Dj3LG;EACE,kBAAA;E3Dm3LL;A2Dz2LD;EACE,oBAAA;EACA,cAAA;EACA,WAAA;EACA,aAAA;EACA,YAAA;EACA,mBAAA;EACA,iBAAA;EACA,kBAAA;EACA,oBAAA;E3D22LD;A2Dp3LD;EAYI,uBAAA;EACA,aAAA;EACA,cAAA;EACA,aAAA;EACA,qBAAA;EACA,2BAAA;EACA,qBAAA;EACA,iBAAA;EAWA,2BAAA;EACA,oCAAA;E3Di2LH;A2Dh4LD;EAkCI,WAAA;EACA,aAAA;EACA,cAAA;EACA,2BAAA;E3Di2LH;A2D11LD;EACE,oBAAA;EACA,WAAA;EACA,YAAA;EACA,cAAA;EACA,aAAA;EACA,mBAAA;EACA,sBAAA;EACA,gBAAA;EACA,oBAAA;EACA,2CAAA;E3D41LD;A2D31LC;EACE,mBAAA;E3D61LH;A2DpzLD;EAhCE;;;;IAKI,aAAA;IACA,cAAA;IACA,mBAAA;IACA,iBAAA;I3Ds1LH;E2D91LD;;IAYI,oBAAA;I3Ds1LH;E2Dl2LD;;IAgBI,qBAAA;I3Ds1LH;E2Dj1LD;IACE,WAAA;IACA,YAAA;IACA,sBAAA;I3Dm1LD;E2D/0LD;IACE,cAAA;I3Di1LD;EACF;A4D/kMC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAEE,cAAA;EACA,gBAAA;E5D6mMH;A4D3mMC;;;;;;;;;;;;;;;EACE,aAAA;E5D2nMH;AiCnoMD;E4BRE,gBAAA;EACA,mBAAA;EACA,oBAAA;E7D8oMD;AiCroMD;EACE,yBAAA;EjCuoMD;AiCroMD;EACE,wBAAA;EjCuoMD;AiC/nMD;EACE,0BAAA;EjCioMD;AiC/nMD;EACE,2BAAA;EjCioMD;AiC/nMD;EACE,oBAAA;EjCioMD;AiC/nMD;E6BzBE,aAAA;EACA,oBAAA;EACA,mBAAA;EACA,+BAAA;EACA,WAAA;E9D2pMD;AiC7nMD;EACE,0BAAA;EACA,+BAAA;EjC+nMD;AiCxnMD;EACE,iBAAA;EjC0nMD;A+D5pMD;EACE,qBAAA;E/D8pMD;A+DxpMD;;;;ECdE,0BAAA;EhE4qMD;A+DvpMD;;;;;;;;;;;;EAYE,0BAAA;E/DypMD;A+DlpMD;EAAA;IChDE,2BAAA;IhEssMC;EgErsMD;IAAU,gBAAA;IhEwsMT;EgEvsMD;IAAU,+BAAA;IhE0sMT;EgEzsMD;;IACU,gCAAA;IhE4sMT;EACF;A+D5pMD;EAAA;IAFI,2BAAA;I/DkqMD;EACF;A+D5pMD;EAAA;IAFI,4BAAA;I/DkqMD;EACF;A+D5pMD;EAAA;IAFI,kCAAA;I/DkqMD;EACF;A+D3pMD;EAAA;ICrEE,2BAAA;IhEouMC;EgEnuMD;IAAU,gBAAA;IhEsuMT;EgEruMD;IAAU,+BAAA;IhEwuMT;EgEvuMD;;IACU,gCAAA;IhE0uMT;EACF;A+DrqMD;EAAA;IAFI,2BAAA;I/D2qMD;EACF;A+DrqMD;EAAA;IAFI,4BAAA;I/D2qMD;EACF;A+DrqMD;EAAA;IAFI,kCAAA;I/D2qMD;EACF;A+DpqMD;EAAA;IC1FE,2BAAA;IhEkwMC;EgEjwMD;IAAU,gBAAA;IhEowMT;EgEnwMD;IAAU,+BAAA;IhEswMT;EgErwMD;;IACU,gCAAA;IhEwwMT;EACF;A+D9qMD;EAAA;IAFI,2BAAA;I/DorMD;EACF;A+D9qMD;EAAA;IAFI,4BAAA;I/DorMD;EACF;A+D9qMD;EAAA;IAFI,kCAAA;I/DorMD;EACF;A+D7qMD;EAAA;IC/GE,2BAAA;IhEgyMC;EgE/xMD;IAAU,gBAAA;IhEkyMT;EgEjyMD;IAAU,+BAAA;IhEoyMT;EgEnyMD;;IACU,gCAAA;IhEsyMT;EACF;A+DvrMD;EAAA;IAFI,2BAAA;I/D6rMD;EACF;A+DvrMD;EAAA;IAFI,4BAAA;I/D6rMD;EACF;A+DvrMD;EAAA;IAFI,kCAAA;I/D6rMD;EACF;A+DtrMD;EAAA;IC5HE,0BAAA;IhEszMC;EACF;A+DtrMD;EAAA;ICjIE,0BAAA;IhE2zMC;EACF;A+DtrMD;EAAA;ICtIE,0BAAA;IhEg0MC;EACF;A+DtrMD;EAAA;IC3IE,0BAAA;IhEq0MC;EACF;A+DnrMD;ECnJE,0BAAA;EhEy0MD;A+DhrMD;EAAA;ICjKE,2BAAA;IhEq1MC;EgEp1MD;IAAU,gBAAA;IhEu1MT;EgEt1MD;IAAU,+BAAA;IhEy1MT;EgEx1MD;;IACU,gCAAA;IhE21MT;EACF;A+D9rMD;EACE,0BAAA;E/DgsMD;A+D3rMD;EAAA;IAFI,2BAAA;I/DisMD;EACF;A+D/rMD;EACE,0BAAA;E/DisMD;A+D5rMD;EAAA;IAFI,4BAAA;I/DksMD;EACF;A+DhsMD;EACE,0BAAA;E/DksMD;A+D7rMD;EAAA;IAFI,kCAAA;I/DmsMD;EACF;A+D5rMD;EAAA;ICpLE,0BAAA;IhEo3MC;EACF","file":"bootstrap.css","sourcesContent":["/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\nhtml {\n font-family: sans-serif;\n -ms-text-size-adjust: 100%;\n -webkit-text-size-adjust: 100%;\n}\nbody {\n margin: 0;\n}\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block;\n vertical-align: baseline;\n}\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n[hidden],\ntemplate {\n display: none;\n}\na {\n background-color: transparent;\n}\na:active,\na:hover {\n outline: 0;\n}\nabbr[title] {\n border-bottom: 1px dotted;\n}\nb,\nstrong {\n font-weight: bold;\n}\ndfn {\n font-style: italic;\n}\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\nmark {\n background: #ff0;\n color: #000;\n}\nsmall {\n font-size: 80%;\n}\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\nsup {\n top: -0.5em;\n}\nsub {\n bottom: -0.25em;\n}\nimg {\n border: 0;\n}\nsvg:not(:root) {\n overflow: hidden;\n}\nfigure {\n margin: 1em 40px;\n}\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\npre {\n overflow: auto;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit;\n font: inherit;\n margin: 0;\n}\nbutton {\n overflow: visible;\n}\nbutton,\nselect {\n text-transform: none;\n}\nbutton,\nhtml input[type=\"button\"],\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button;\n cursor: pointer;\n}\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\ninput {\n line-height: normal;\n}\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box;\n padding: 0;\n}\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: textfield;\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box;\n box-sizing: content-box;\n}\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\nlegend {\n border: 0;\n padding: 0;\n}\ntextarea {\n overflow: auto;\n}\noptgroup {\n font-weight: bold;\n}\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\ntd,\nth {\n padding: 0;\n}\n/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important;\n box-shadow: none !important;\n text-shadow: none !important;\n }\n a,\n a:visited {\n text-decoration: underline;\n }\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n thead {\n display: table-header-group;\n }\n tr,\n img {\n page-break-inside: avoid;\n }\n img {\n max-width: 100% !important;\n }\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n h2,\n h3 {\n page-break-after: avoid;\n }\n select {\n background: #fff !important;\n }\n .navbar {\n display: none;\n }\n .btn > .caret,\n .dropup > .btn > .caret {\n border-top-color: #000 !important;\n }\n .label {\n border: 1px solid #000;\n }\n .table {\n border-collapse: collapse !important;\n }\n .table td,\n .table th {\n background-color: #fff !important;\n }\n .table-bordered th,\n .table-bordered td {\n border: 1px solid #ddd !important;\n }\n}\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('../fonts/glyphicons-halflings-regular.eot');\n src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');\n}\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n.glyphicon-asterisk:before {\n content: \"\\2a\";\n}\n.glyphicon-plus:before {\n content: \"\\2b\";\n}\n.glyphicon-euro:before,\n.glyphicon-eur:before {\n content: \"\\20ac\";\n}\n.glyphicon-minus:before {\n content: \"\\2212\";\n}\n.glyphicon-cloud:before {\n content: \"\\2601\";\n}\n.glyphicon-envelope:before {\n content: \"\\2709\";\n}\n.glyphicon-pencil:before {\n content: \"\\270f\";\n}\n.glyphicon-glass:before {\n content: \"\\e001\";\n}\n.glyphicon-music:before {\n content: \"\\e002\";\n}\n.glyphicon-search:before {\n content: \"\\e003\";\n}\n.glyphicon-heart:before {\n content: \"\\e005\";\n}\n.glyphicon-star:before {\n content: \"\\e006\";\n}\n.glyphicon-star-empty:before {\n content: \"\\e007\";\n}\n.glyphicon-user:before {\n content: \"\\e008\";\n}\n.glyphicon-film:before {\n content: \"\\e009\";\n}\n.glyphicon-th-large:before {\n content: \"\\e010\";\n}\n.glyphicon-th:before {\n content: \"\\e011\";\n}\n.glyphicon-th-list:before {\n content: \"\\e012\";\n}\n.glyphicon-ok:before {\n content: \"\\e013\";\n}\n.glyphicon-remove:before {\n content: \"\\e014\";\n}\n.glyphicon-zoom-in:before {\n content: \"\\e015\";\n}\n.glyphicon-zoom-out:before {\n content: \"\\e016\";\n}\n.glyphicon-off:before {\n content: \"\\e017\";\n}\n.glyphicon-signal:before {\n content: \"\\e018\";\n}\n.glyphicon-cog:before {\n content: \"\\e019\";\n}\n.glyphicon-trash:before {\n content: \"\\e020\";\n}\n.glyphicon-home:before {\n content: \"\\e021\";\n}\n.glyphicon-file:before {\n content: \"\\e022\";\n}\n.glyphicon-time:before {\n content: \"\\e023\";\n}\n.glyphicon-road:before {\n content: \"\\e024\";\n}\n.glyphicon-download-alt:before {\n content: \"\\e025\";\n}\n.glyphicon-download:before {\n content: \"\\e026\";\n}\n.glyphicon-upload:before {\n content: \"\\e027\";\n}\n.glyphicon-inbox:before {\n content: \"\\e028\";\n}\n.glyphicon-play-circle:before {\n content: \"\\e029\";\n}\n.glyphicon-repeat:before {\n content: \"\\e030\";\n}\n.glyphicon-refresh:before {\n content: \"\\e031\";\n}\n.glyphicon-list-alt:before {\n content: \"\\e032\";\n}\n.glyphicon-lock:before {\n content: \"\\e033\";\n}\n.glyphicon-flag:before {\n content: \"\\e034\";\n}\n.glyphicon-headphones:before {\n content: \"\\e035\";\n}\n.glyphicon-volume-off:before {\n content: \"\\e036\";\n}\n.glyphicon-volume-down:before {\n content: \"\\e037\";\n}\n.glyphicon-volume-up:before {\n content: \"\\e038\";\n}\n.glyphicon-qrcode:before {\n content: \"\\e039\";\n}\n.glyphicon-barcode:before {\n content: \"\\e040\";\n}\n.glyphicon-tag:before {\n content: \"\\e041\";\n}\n.glyphicon-tags:before {\n content: \"\\e042\";\n}\n.glyphicon-book:before {\n content: \"\\e043\";\n}\n.glyphicon-bookmark:before {\n content: \"\\e044\";\n}\n.glyphicon-print:before {\n content: \"\\e045\";\n}\n.glyphicon-camera:before {\n content: \"\\e046\";\n}\n.glyphicon-font:before {\n content: \"\\e047\";\n}\n.glyphicon-bold:before {\n content: \"\\e048\";\n}\n.glyphicon-italic:before {\n content: \"\\e049\";\n}\n.glyphicon-text-height:before {\n content: \"\\e050\";\n}\n.glyphicon-text-width:before {\n content: \"\\e051\";\n}\n.glyphicon-align-left:before {\n content: \"\\e052\";\n}\n.glyphicon-align-center:before {\n content: \"\\e053\";\n}\n.glyphicon-align-right:before {\n content: \"\\e054\";\n}\n.glyphicon-align-justify:before {\n content: \"\\e055\";\n}\n.glyphicon-list:before {\n content: \"\\e056\";\n}\n.glyphicon-indent-left:before {\n content: \"\\e057\";\n}\n.glyphicon-indent-right:before {\n content: \"\\e058\";\n}\n.glyphicon-facetime-video:before {\n content: \"\\e059\";\n}\n.glyphicon-picture:before {\n content: \"\\e060\";\n}\n.glyphicon-map-marker:before {\n content: \"\\e062\";\n}\n.glyphicon-adjust:before {\n content: \"\\e063\";\n}\n.glyphicon-tint:before {\n content: \"\\e064\";\n}\n.glyphicon-edit:before {\n content: \"\\e065\";\n}\n.glyphicon-share:before {\n content: \"\\e066\";\n}\n.glyphicon-check:before {\n content: \"\\e067\";\n}\n.glyphicon-move:before {\n content: \"\\e068\";\n}\n.glyphicon-step-backward:before {\n content: \"\\e069\";\n}\n.glyphicon-fast-backward:before {\n content: \"\\e070\";\n}\n.glyphicon-backward:before {\n content: \"\\e071\";\n}\n.glyphicon-play:before {\n content: \"\\e072\";\n}\n.glyphicon-pause:before {\n content: \"\\e073\";\n}\n.glyphicon-stop:before {\n content: \"\\e074\";\n}\n.glyphicon-forward:before {\n content: \"\\e075\";\n}\n.glyphicon-fast-forward:before {\n content: \"\\e076\";\n}\n.glyphicon-step-forward:before {\n content: \"\\e077\";\n}\n.glyphicon-eject:before {\n content: \"\\e078\";\n}\n.glyphicon-chevron-left:before {\n content: \"\\e079\";\n}\n.glyphicon-chevron-right:before {\n content: \"\\e080\";\n}\n.glyphicon-plus-sign:before {\n content: \"\\e081\";\n}\n.glyphicon-minus-sign:before {\n content: \"\\e082\";\n}\n.glyphicon-remove-sign:before {\n content: \"\\e083\";\n}\n.glyphicon-ok-sign:before {\n content: \"\\e084\";\n}\n.glyphicon-question-sign:before {\n content: \"\\e085\";\n}\n.glyphicon-info-sign:before {\n content: \"\\e086\";\n}\n.glyphicon-screenshot:before {\n content: \"\\e087\";\n}\n.glyphicon-remove-circle:before {\n content: \"\\e088\";\n}\n.glyphicon-ok-circle:before {\n content: \"\\e089\";\n}\n.glyphicon-ban-circle:before {\n content: \"\\e090\";\n}\n.glyphicon-arrow-left:before {\n content: \"\\e091\";\n}\n.glyphicon-arrow-right:before {\n content: \"\\e092\";\n}\n.glyphicon-arrow-up:before {\n content: \"\\e093\";\n}\n.glyphicon-arrow-down:before {\n content: \"\\e094\";\n}\n.glyphicon-share-alt:before {\n content: \"\\e095\";\n}\n.glyphicon-resize-full:before {\n content: \"\\e096\";\n}\n.glyphicon-resize-small:before {\n content: \"\\e097\";\n}\n.glyphicon-exclamation-sign:before {\n content: \"\\e101\";\n}\n.glyphicon-gift:before {\n content: \"\\e102\";\n}\n.glyphicon-leaf:before {\n content: \"\\e103\";\n}\n.glyphicon-fire:before {\n content: \"\\e104\";\n}\n.glyphicon-eye-open:before {\n content: \"\\e105\";\n}\n.glyphicon-eye-close:before {\n content: \"\\e106\";\n}\n.glyphicon-warning-sign:before {\n content: \"\\e107\";\n}\n.glyphicon-plane:before {\n content: \"\\e108\";\n}\n.glyphicon-calendar:before {\n content: \"\\e109\";\n}\n.glyphicon-random:before {\n content: \"\\e110\";\n}\n.glyphicon-comment:before {\n content: \"\\e111\";\n}\n.glyphicon-magnet:before {\n content: \"\\e112\";\n}\n.glyphicon-chevron-up:before {\n content: \"\\e113\";\n}\n.glyphicon-chevron-down:before {\n content: \"\\e114\";\n}\n.glyphicon-retweet:before {\n content: \"\\e115\";\n}\n.glyphicon-shopping-cart:before {\n content: \"\\e116\";\n}\n.glyphicon-folder-close:before {\n content: \"\\e117\";\n}\n.glyphicon-folder-open:before {\n content: \"\\e118\";\n}\n.glyphicon-resize-vertical:before {\n content: \"\\e119\";\n}\n.glyphicon-resize-horizontal:before {\n content: \"\\e120\";\n}\n.glyphicon-hdd:before {\n content: \"\\e121\";\n}\n.glyphicon-bullhorn:before {\n content: \"\\e122\";\n}\n.glyphicon-bell:before {\n content: \"\\e123\";\n}\n.glyphicon-certificate:before {\n content: \"\\e124\";\n}\n.glyphicon-thumbs-up:before {\n content: \"\\e125\";\n}\n.glyphicon-thumbs-down:before {\n content: \"\\e126\";\n}\n.glyphicon-hand-right:before {\n content: \"\\e127\";\n}\n.glyphicon-hand-left:before {\n content: \"\\e128\";\n}\n.glyphicon-hand-up:before {\n content: \"\\e129\";\n}\n.glyphicon-hand-down:before {\n content: \"\\e130\";\n}\n.glyphicon-circle-arrow-right:before {\n content: \"\\e131\";\n}\n.glyphicon-circle-arrow-left:before {\n content: \"\\e132\";\n}\n.glyphicon-circle-arrow-up:before {\n content: \"\\e133\";\n}\n.glyphicon-circle-arrow-down:before {\n content: \"\\e134\";\n}\n.glyphicon-globe:before {\n content: \"\\e135\";\n}\n.glyphicon-wrench:before {\n content: \"\\e136\";\n}\n.glyphicon-tasks:before {\n content: \"\\e137\";\n}\n.glyphicon-filter:before {\n content: \"\\e138\";\n}\n.glyphicon-briefcase:before {\n content: \"\\e139\";\n}\n.glyphicon-fullscreen:before {\n content: \"\\e140\";\n}\n.glyphicon-dashboard:before {\n content: \"\\e141\";\n}\n.glyphicon-paperclip:before {\n content: \"\\e142\";\n}\n.glyphicon-heart-empty:before {\n content: \"\\e143\";\n}\n.glyphicon-link:before {\n content: \"\\e144\";\n}\n.glyphicon-phone:before {\n content: \"\\e145\";\n}\n.glyphicon-pushpin:before {\n content: \"\\e146\";\n}\n.glyphicon-usd:before {\n content: \"\\e148\";\n}\n.glyphicon-gbp:before {\n content: \"\\e149\";\n}\n.glyphicon-sort:before {\n content: \"\\e150\";\n}\n.glyphicon-sort-by-alphabet:before {\n content: \"\\e151\";\n}\n.glyphicon-sort-by-alphabet-alt:before {\n content: \"\\e152\";\n}\n.glyphicon-sort-by-order:before {\n content: \"\\e153\";\n}\n.glyphicon-sort-by-order-alt:before {\n content: \"\\e154\";\n}\n.glyphicon-sort-by-attributes:before {\n content: \"\\e155\";\n}\n.glyphicon-sort-by-attributes-alt:before {\n content: \"\\e156\";\n}\n.glyphicon-unchecked:before {\n content: \"\\e157\";\n}\n.glyphicon-expand:before {\n content: \"\\e158\";\n}\n.glyphicon-collapse-down:before {\n content: \"\\e159\";\n}\n.glyphicon-collapse-up:before {\n content: \"\\e160\";\n}\n.glyphicon-log-in:before {\n content: \"\\e161\";\n}\n.glyphicon-flash:before {\n content: \"\\e162\";\n}\n.glyphicon-log-out:before {\n content: \"\\e163\";\n}\n.glyphicon-new-window:before {\n content: \"\\e164\";\n}\n.glyphicon-record:before {\n content: \"\\e165\";\n}\n.glyphicon-save:before {\n content: \"\\e166\";\n}\n.glyphicon-open:before {\n content: \"\\e167\";\n}\n.glyphicon-saved:before {\n content: \"\\e168\";\n}\n.glyphicon-import:before {\n content: \"\\e169\";\n}\n.glyphicon-export:before {\n content: \"\\e170\";\n}\n.glyphicon-send:before {\n content: \"\\e171\";\n}\n.glyphicon-floppy-disk:before {\n content: \"\\e172\";\n}\n.glyphicon-floppy-saved:before {\n content: \"\\e173\";\n}\n.glyphicon-floppy-remove:before {\n content: \"\\e174\";\n}\n.glyphicon-floppy-save:before {\n content: \"\\e175\";\n}\n.glyphicon-floppy-open:before {\n content: \"\\e176\";\n}\n.glyphicon-credit-card:before {\n content: \"\\e177\";\n}\n.glyphicon-transfer:before {\n content: \"\\e178\";\n}\n.glyphicon-cutlery:before {\n content: \"\\e179\";\n}\n.glyphicon-header:before {\n content: \"\\e180\";\n}\n.glyphicon-compressed:before {\n content: \"\\e181\";\n}\n.glyphicon-earphone:before {\n content: \"\\e182\";\n}\n.glyphicon-phone-alt:before {\n content: \"\\e183\";\n}\n.glyphicon-tower:before {\n content: \"\\e184\";\n}\n.glyphicon-stats:before {\n content: \"\\e185\";\n}\n.glyphicon-sd-video:before {\n content: \"\\e186\";\n}\n.glyphicon-hd-video:before {\n content: \"\\e187\";\n}\n.glyphicon-subtitles:before {\n content: \"\\e188\";\n}\n.glyphicon-sound-stereo:before {\n content: \"\\e189\";\n}\n.glyphicon-sound-dolby:before {\n content: \"\\e190\";\n}\n.glyphicon-sound-5-1:before {\n content: \"\\e191\";\n}\n.glyphicon-sound-6-1:before {\n content: \"\\e192\";\n}\n.glyphicon-sound-7-1:before {\n content: \"\\e193\";\n}\n.glyphicon-copyright-mark:before {\n content: \"\\e194\";\n}\n.glyphicon-registration-mark:before {\n content: \"\\e195\";\n}\n.glyphicon-cloud-download:before {\n content: \"\\e197\";\n}\n.glyphicon-cloud-upload:before {\n content: \"\\e198\";\n}\n.glyphicon-tree-conifer:before {\n content: \"\\e199\";\n}\n.glyphicon-tree-deciduous:before {\n content: \"\\e200\";\n}\n.glyphicon-cd:before {\n content: \"\\e201\";\n}\n.glyphicon-save-file:before {\n content: \"\\e202\";\n}\n.glyphicon-open-file:before {\n content: \"\\e203\";\n}\n.glyphicon-level-up:before {\n content: \"\\e204\";\n}\n.glyphicon-copy:before {\n content: \"\\e205\";\n}\n.glyphicon-paste:before {\n content: \"\\e206\";\n}\n.glyphicon-alert:before {\n content: \"\\e209\";\n}\n.glyphicon-equalizer:before {\n content: \"\\e210\";\n}\n.glyphicon-king:before {\n content: \"\\e211\";\n}\n.glyphicon-queen:before {\n content: \"\\e212\";\n}\n.glyphicon-pawn:before {\n content: \"\\e213\";\n}\n.glyphicon-bishop:before {\n content: \"\\e214\";\n}\n.glyphicon-knight:before {\n content: \"\\e215\";\n}\n.glyphicon-baby-formula:before {\n content: \"\\e216\";\n}\n.glyphicon-tent:before {\n content: \"\\26fa\";\n}\n.glyphicon-blackboard:before {\n content: \"\\e218\";\n}\n.glyphicon-bed:before {\n content: \"\\e219\";\n}\n.glyphicon-apple:before {\n content: \"\\f8ff\";\n}\n.glyphicon-erase:before {\n content: \"\\e221\";\n}\n.glyphicon-hourglass:before {\n content: \"\\231b\";\n}\n.glyphicon-lamp:before {\n content: \"\\e223\";\n}\n.glyphicon-duplicate:before {\n content: \"\\e224\";\n}\n.glyphicon-piggy-bank:before {\n content: \"\\e225\";\n}\n.glyphicon-scissors:before {\n content: \"\\e226\";\n}\n.glyphicon-bitcoin:before {\n content: \"\\e227\";\n}\n.glyphicon-yen:before {\n content: \"\\00a5\";\n}\n.glyphicon-ruble:before {\n content: \"\\20bd\";\n}\n.glyphicon-scale:before {\n content: \"\\e230\";\n}\n.glyphicon-ice-lolly:before {\n content: \"\\e231\";\n}\n.glyphicon-ice-lolly-tasted:before {\n content: \"\\e232\";\n}\n.glyphicon-education:before {\n content: \"\\e233\";\n}\n.glyphicon-option-horizontal:before {\n content: \"\\e234\";\n}\n.glyphicon-option-vertical:before {\n content: \"\\e235\";\n}\n.glyphicon-menu-hamburger:before {\n content: \"\\e236\";\n}\n.glyphicon-modal-window:before {\n content: \"\\e237\";\n}\n.glyphicon-oil:before {\n content: \"\\e238\";\n}\n.glyphicon-grain:before {\n content: \"\\e239\";\n}\n.glyphicon-sunglasses:before {\n content: \"\\e240\";\n}\n.glyphicon-text-size:before {\n content: \"\\e241\";\n}\n.glyphicon-text-color:before {\n content: \"\\e242\";\n}\n.glyphicon-text-background:before {\n content: \"\\e243\";\n}\n.glyphicon-object-align-top:before {\n content: \"\\e244\";\n}\n.glyphicon-object-align-bottom:before {\n content: \"\\e245\";\n}\n.glyphicon-object-align-horizontal:before {\n content: \"\\e246\";\n}\n.glyphicon-object-align-left:before {\n content: \"\\e247\";\n}\n.glyphicon-object-align-vertical:before {\n content: \"\\e248\";\n}\n.glyphicon-object-align-right:before {\n content: \"\\e249\";\n}\n.glyphicon-triangle-right:before {\n content: \"\\e250\";\n}\n.glyphicon-triangle-left:before {\n content: \"\\e251\";\n}\n.glyphicon-triangle-bottom:before {\n content: \"\\e252\";\n}\n.glyphicon-triangle-top:before {\n content: \"\\e253\";\n}\n.glyphicon-console:before {\n content: \"\\e254\";\n}\n.glyphicon-superscript:before {\n content: \"\\e255\";\n}\n.glyphicon-subscript:before {\n content: \"\\e256\";\n}\n.glyphicon-menu-left:before {\n content: \"\\e257\";\n}\n.glyphicon-menu-right:before {\n content: \"\\e258\";\n}\n.glyphicon-menu-down:before {\n content: \"\\e259\";\n}\n.glyphicon-menu-up:before {\n content: \"\\e260\";\n}\n* {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\n*:before,\n*:after {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0, 0, 0, 0);\n}\nbody {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n line-height: 1.42857143;\n color: #333333;\n background-color: #ffffff;\n}\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\na {\n color: #337ab7;\n text-decoration: none;\n}\na:hover,\na:focus {\n color: #23527c;\n text-decoration: underline;\n}\na:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\nfigure {\n margin: 0;\n}\nimg {\n vertical-align: middle;\n}\n.img-responsive,\n.thumbnail > img,\n.thumbnail a > img,\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n display: block;\n max-width: 100%;\n height: auto;\n}\n.img-rounded {\n border-radius: 6px;\n}\n.img-thumbnail {\n padding: 4px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: all 0.2s ease-in-out;\n -o-transition: all 0.2s ease-in-out;\n transition: all 0.2s ease-in-out;\n display: inline-block;\n max-width: 100%;\n height: auto;\n}\n.img-circle {\n border-radius: 50%;\n}\nhr {\n margin-top: 20px;\n margin-bottom: 20px;\n border: 0;\n border-top: 1px solid #eeeeee;\n}\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n border: 0;\n}\n.sr-only-focusable:active,\n.sr-only-focusable:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n}\nh1,\nh2,\nh3,\nh4,\nh5,\nh6,\n.h1,\n.h2,\n.h3,\n.h4,\n.h5,\n.h6 {\n font-family: inherit;\n font-weight: 500;\n line-height: 1.1;\n color: inherit;\n}\nh1 small,\nh2 small,\nh3 small,\nh4 small,\nh5 small,\nh6 small,\n.h1 small,\n.h2 small,\n.h3 small,\n.h4 small,\n.h5 small,\n.h6 small,\nh1 .small,\nh2 .small,\nh3 .small,\nh4 .small,\nh5 .small,\nh6 .small,\n.h1 .small,\n.h2 .small,\n.h3 .small,\n.h4 .small,\n.h5 .small,\n.h6 .small {\n font-weight: normal;\n line-height: 1;\n color: #777777;\n}\nh1,\n.h1,\nh2,\n.h2,\nh3,\n.h3 {\n margin-top: 20px;\n margin-bottom: 10px;\n}\nh1 small,\n.h1 small,\nh2 small,\n.h2 small,\nh3 small,\n.h3 small,\nh1 .small,\n.h1 .small,\nh2 .small,\n.h2 .small,\nh3 .small,\n.h3 .small {\n font-size: 65%;\n}\nh4,\n.h4,\nh5,\n.h5,\nh6,\n.h6 {\n margin-top: 10px;\n margin-bottom: 10px;\n}\nh4 small,\n.h4 small,\nh5 small,\n.h5 small,\nh6 small,\n.h6 small,\nh4 .small,\n.h4 .small,\nh5 .small,\n.h5 .small,\nh6 .small,\n.h6 .small {\n font-size: 75%;\n}\nh1,\n.h1 {\n font-size: 36px;\n}\nh2,\n.h2 {\n font-size: 30px;\n}\nh3,\n.h3 {\n font-size: 24px;\n}\nh4,\n.h4 {\n font-size: 18px;\n}\nh5,\n.h5 {\n font-size: 14px;\n}\nh6,\n.h6 {\n font-size: 12px;\n}\np {\n margin: 0 0 10px;\n}\n.lead {\n margin-bottom: 20px;\n font-size: 16px;\n font-weight: 300;\n line-height: 1.4;\n}\n@media (min-width: 768px) {\n .lead {\n font-size: 21px;\n }\n}\nsmall,\n.small {\n font-size: 85%;\n}\nmark,\n.mark {\n background-color: #fcf8e3;\n padding: .2em;\n}\n.text-left {\n text-align: left;\n}\n.text-right {\n text-align: right;\n}\n.text-center {\n text-align: center;\n}\n.text-justify {\n text-align: justify;\n}\n.text-nowrap {\n white-space: nowrap;\n}\n.text-lowercase {\n text-transform: lowercase;\n}\n.text-uppercase {\n text-transform: uppercase;\n}\n.text-capitalize {\n text-transform: capitalize;\n}\n.text-muted {\n color: #777777;\n}\n.text-primary {\n color: #337ab7;\n}\na.text-primary:hover {\n color: #286090;\n}\n.text-success {\n color: #3c763d;\n}\na.text-success:hover {\n color: #2b542c;\n}\n.text-info {\n color: #31708f;\n}\na.text-info:hover {\n color: #245269;\n}\n.text-warning {\n color: #8a6d3b;\n}\na.text-warning:hover {\n color: #66512c;\n}\n.text-danger {\n color: #a94442;\n}\na.text-danger:hover {\n color: #843534;\n}\n.bg-primary {\n color: #fff;\n background-color: #337ab7;\n}\na.bg-primary:hover {\n background-color: #286090;\n}\n.bg-success {\n background-color: #dff0d8;\n}\na.bg-success:hover {\n background-color: #c1e2b3;\n}\n.bg-info {\n background-color: #d9edf7;\n}\na.bg-info:hover {\n background-color: #afd9ee;\n}\n.bg-warning {\n background-color: #fcf8e3;\n}\na.bg-warning:hover {\n background-color: #f7ecb5;\n}\n.bg-danger {\n background-color: #f2dede;\n}\na.bg-danger:hover {\n background-color: #e4b9b9;\n}\n.page-header {\n padding-bottom: 9px;\n margin: 40px 0 20px;\n border-bottom: 1px solid #eeeeee;\n}\nul,\nol {\n margin-top: 0;\n margin-bottom: 10px;\n}\nul ul,\nol ul,\nul ol,\nol ol {\n margin-bottom: 0;\n}\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n.list-inline {\n padding-left: 0;\n list-style: none;\n margin-left: -5px;\n}\n.list-inline > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n}\ndl {\n margin-top: 0;\n margin-bottom: 20px;\n}\ndt,\ndd {\n line-height: 1.42857143;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0;\n}\n@media (min-width: 768px) {\n .dl-horizontal dt {\n float: left;\n width: 160px;\n clear: left;\n text-align: right;\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n }\n .dl-horizontal dd {\n margin-left: 180px;\n }\n}\nabbr[title],\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted #777777;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\nblockquote {\n padding: 10px 20px;\n margin: 0 0 20px;\n font-size: 17.5px;\n border-left: 5px solid #eeeeee;\n}\nblockquote p:last-child,\nblockquote ul:last-child,\nblockquote ol:last-child {\n margin-bottom: 0;\n}\nblockquote footer,\nblockquote small,\nblockquote .small {\n display: block;\n font-size: 80%;\n line-height: 1.42857143;\n color: #777777;\n}\nblockquote footer:before,\nblockquote small:before,\nblockquote .small:before {\n content: '\\2014 \\00A0';\n}\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid #eeeeee;\n border-left: 0;\n text-align: right;\n}\n.blockquote-reverse footer:before,\nblockquote.pull-right footer:before,\n.blockquote-reverse small:before,\nblockquote.pull-right small:before,\n.blockquote-reverse .small:before,\nblockquote.pull-right .small:before {\n content: '';\n}\n.blockquote-reverse footer:after,\nblockquote.pull-right footer:after,\n.blockquote-reverse small:after,\nblockquote.pull-right small:after,\n.blockquote-reverse .small:after,\nblockquote.pull-right .small:after {\n content: '\\00A0 \\2014';\n}\naddress {\n margin-bottom: 20px;\n font-style: normal;\n line-height: 1.42857143;\n}\ncode,\nkbd,\npre,\nsamp {\n font-family: Menlo, Monaco, Consolas, \"Courier New\", monospace;\n}\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: #c7254e;\n background-color: #f9f2f4;\n border-radius: 4px;\n}\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: #ffffff;\n background-color: #333333;\n border-radius: 3px;\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.25);\n}\nkbd kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n}\npre {\n display: block;\n padding: 9.5px;\n margin: 0 0 10px;\n font-size: 13px;\n line-height: 1.42857143;\n word-break: break-all;\n word-wrap: break-word;\n color: #333333;\n background-color: #f5f5f5;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\npre code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n}\n.pre-scrollable {\n max-height: 340px;\n overflow-y: scroll;\n}\n.container {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n@media (min-width: 768px) {\n .container {\n width: 750px;\n }\n}\n@media (min-width: 992px) {\n .container {\n width: 970px;\n }\n}\n@media (min-width: 1200px) {\n .container {\n width: 1170px;\n }\n}\n.container-fluid {\n margin-right: auto;\n margin-left: auto;\n padding-left: 15px;\n padding-right: 15px;\n}\n.row {\n margin-left: -15px;\n margin-right: -15px;\n}\n.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {\n position: relative;\n min-height: 1px;\n padding-left: 15px;\n padding-right: 15px;\n}\n.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {\n float: left;\n}\n.col-xs-12 {\n width: 100%;\n}\n.col-xs-11 {\n width: 91.66666667%;\n}\n.col-xs-10 {\n width: 83.33333333%;\n}\n.col-xs-9 {\n width: 75%;\n}\n.col-xs-8 {\n width: 66.66666667%;\n}\n.col-xs-7 {\n width: 58.33333333%;\n}\n.col-xs-6 {\n width: 50%;\n}\n.col-xs-5 {\n width: 41.66666667%;\n}\n.col-xs-4 {\n width: 33.33333333%;\n}\n.col-xs-3 {\n width: 25%;\n}\n.col-xs-2 {\n width: 16.66666667%;\n}\n.col-xs-1 {\n width: 8.33333333%;\n}\n.col-xs-pull-12 {\n right: 100%;\n}\n.col-xs-pull-11 {\n right: 91.66666667%;\n}\n.col-xs-pull-10 {\n right: 83.33333333%;\n}\n.col-xs-pull-9 {\n right: 75%;\n}\n.col-xs-pull-8 {\n right: 66.66666667%;\n}\n.col-xs-pull-7 {\n right: 58.33333333%;\n}\n.col-xs-pull-6 {\n right: 50%;\n}\n.col-xs-pull-5 {\n right: 41.66666667%;\n}\n.col-xs-pull-4 {\n right: 33.33333333%;\n}\n.col-xs-pull-3 {\n right: 25%;\n}\n.col-xs-pull-2 {\n right: 16.66666667%;\n}\n.col-xs-pull-1 {\n right: 8.33333333%;\n}\n.col-xs-pull-0 {\n right: auto;\n}\n.col-xs-push-12 {\n left: 100%;\n}\n.col-xs-push-11 {\n left: 91.66666667%;\n}\n.col-xs-push-10 {\n left: 83.33333333%;\n}\n.col-xs-push-9 {\n left: 75%;\n}\n.col-xs-push-8 {\n left: 66.66666667%;\n}\n.col-xs-push-7 {\n left: 58.33333333%;\n}\n.col-xs-push-6 {\n left: 50%;\n}\n.col-xs-push-5 {\n left: 41.66666667%;\n}\n.col-xs-push-4 {\n left: 33.33333333%;\n}\n.col-xs-push-3 {\n left: 25%;\n}\n.col-xs-push-2 {\n left: 16.66666667%;\n}\n.col-xs-push-1 {\n left: 8.33333333%;\n}\n.col-xs-push-0 {\n left: auto;\n}\n.col-xs-offset-12 {\n margin-left: 100%;\n}\n.col-xs-offset-11 {\n margin-left: 91.66666667%;\n}\n.col-xs-offset-10 {\n margin-left: 83.33333333%;\n}\n.col-xs-offset-9 {\n margin-left: 75%;\n}\n.col-xs-offset-8 {\n margin-left: 66.66666667%;\n}\n.col-xs-offset-7 {\n margin-left: 58.33333333%;\n}\n.col-xs-offset-6 {\n margin-left: 50%;\n}\n.col-xs-offset-5 {\n margin-left: 41.66666667%;\n}\n.col-xs-offset-4 {\n margin-left: 33.33333333%;\n}\n.col-xs-offset-3 {\n margin-left: 25%;\n}\n.col-xs-offset-2 {\n margin-left: 16.66666667%;\n}\n.col-xs-offset-1 {\n margin-left: 8.33333333%;\n}\n.col-xs-offset-0 {\n margin-left: 0%;\n}\n@media (min-width: 768px) {\n .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {\n float: left;\n }\n .col-sm-12 {\n width: 100%;\n }\n .col-sm-11 {\n width: 91.66666667%;\n }\n .col-sm-10 {\n width: 83.33333333%;\n }\n .col-sm-9 {\n width: 75%;\n }\n .col-sm-8 {\n width: 66.66666667%;\n }\n .col-sm-7 {\n width: 58.33333333%;\n }\n .col-sm-6 {\n width: 50%;\n }\n .col-sm-5 {\n width: 41.66666667%;\n }\n .col-sm-4 {\n width: 33.33333333%;\n }\n .col-sm-3 {\n width: 25%;\n }\n .col-sm-2 {\n width: 16.66666667%;\n }\n .col-sm-1 {\n width: 8.33333333%;\n }\n .col-sm-pull-12 {\n right: 100%;\n }\n .col-sm-pull-11 {\n right: 91.66666667%;\n }\n .col-sm-pull-10 {\n right: 83.33333333%;\n }\n .col-sm-pull-9 {\n right: 75%;\n }\n .col-sm-pull-8 {\n right: 66.66666667%;\n }\n .col-sm-pull-7 {\n right: 58.33333333%;\n }\n .col-sm-pull-6 {\n right: 50%;\n }\n .col-sm-pull-5 {\n right: 41.66666667%;\n }\n .col-sm-pull-4 {\n right: 33.33333333%;\n }\n .col-sm-pull-3 {\n right: 25%;\n }\n .col-sm-pull-2 {\n right: 16.66666667%;\n }\n .col-sm-pull-1 {\n right: 8.33333333%;\n }\n .col-sm-pull-0 {\n right: auto;\n }\n .col-sm-push-12 {\n left: 100%;\n }\n .col-sm-push-11 {\n left: 91.66666667%;\n }\n .col-sm-push-10 {\n left: 83.33333333%;\n }\n .col-sm-push-9 {\n left: 75%;\n }\n .col-sm-push-8 {\n left: 66.66666667%;\n }\n .col-sm-push-7 {\n left: 58.33333333%;\n }\n .col-sm-push-6 {\n left: 50%;\n }\n .col-sm-push-5 {\n left: 41.66666667%;\n }\n .col-sm-push-4 {\n left: 33.33333333%;\n }\n .col-sm-push-3 {\n left: 25%;\n }\n .col-sm-push-2 {\n left: 16.66666667%;\n }\n .col-sm-push-1 {\n left: 8.33333333%;\n }\n .col-sm-push-0 {\n left: auto;\n }\n .col-sm-offset-12 {\n margin-left: 100%;\n }\n .col-sm-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-sm-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-sm-offset-9 {\n margin-left: 75%;\n }\n .col-sm-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-sm-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-sm-offset-6 {\n margin-left: 50%;\n }\n .col-sm-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-sm-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-sm-offset-3 {\n margin-left: 25%;\n }\n .col-sm-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-sm-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-sm-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 992px) {\n .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {\n float: left;\n }\n .col-md-12 {\n width: 100%;\n }\n .col-md-11 {\n width: 91.66666667%;\n }\n .col-md-10 {\n width: 83.33333333%;\n }\n .col-md-9 {\n width: 75%;\n }\n .col-md-8 {\n width: 66.66666667%;\n }\n .col-md-7 {\n width: 58.33333333%;\n }\n .col-md-6 {\n width: 50%;\n }\n .col-md-5 {\n width: 41.66666667%;\n }\n .col-md-4 {\n width: 33.33333333%;\n }\n .col-md-3 {\n width: 25%;\n }\n .col-md-2 {\n width: 16.66666667%;\n }\n .col-md-1 {\n width: 8.33333333%;\n }\n .col-md-pull-12 {\n right: 100%;\n }\n .col-md-pull-11 {\n right: 91.66666667%;\n }\n .col-md-pull-10 {\n right: 83.33333333%;\n }\n .col-md-pull-9 {\n right: 75%;\n }\n .col-md-pull-8 {\n right: 66.66666667%;\n }\n .col-md-pull-7 {\n right: 58.33333333%;\n }\n .col-md-pull-6 {\n right: 50%;\n }\n .col-md-pull-5 {\n right: 41.66666667%;\n }\n .col-md-pull-4 {\n right: 33.33333333%;\n }\n .col-md-pull-3 {\n right: 25%;\n }\n .col-md-pull-2 {\n right: 16.66666667%;\n }\n .col-md-pull-1 {\n right: 8.33333333%;\n }\n .col-md-pull-0 {\n right: auto;\n }\n .col-md-push-12 {\n left: 100%;\n }\n .col-md-push-11 {\n left: 91.66666667%;\n }\n .col-md-push-10 {\n left: 83.33333333%;\n }\n .col-md-push-9 {\n left: 75%;\n }\n .col-md-push-8 {\n left: 66.66666667%;\n }\n .col-md-push-7 {\n left: 58.33333333%;\n }\n .col-md-push-6 {\n left: 50%;\n }\n .col-md-push-5 {\n left: 41.66666667%;\n }\n .col-md-push-4 {\n left: 33.33333333%;\n }\n .col-md-push-3 {\n left: 25%;\n }\n .col-md-push-2 {\n left: 16.66666667%;\n }\n .col-md-push-1 {\n left: 8.33333333%;\n }\n .col-md-push-0 {\n left: auto;\n }\n .col-md-offset-12 {\n margin-left: 100%;\n }\n .col-md-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-md-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-md-offset-9 {\n margin-left: 75%;\n }\n .col-md-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-md-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-md-offset-6 {\n margin-left: 50%;\n }\n .col-md-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-md-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-md-offset-3 {\n margin-left: 25%;\n }\n .col-md-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-md-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-md-offset-0 {\n margin-left: 0%;\n }\n}\n@media (min-width: 1200px) {\n .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {\n float: left;\n }\n .col-lg-12 {\n width: 100%;\n }\n .col-lg-11 {\n width: 91.66666667%;\n }\n .col-lg-10 {\n width: 83.33333333%;\n }\n .col-lg-9 {\n width: 75%;\n }\n .col-lg-8 {\n width: 66.66666667%;\n }\n .col-lg-7 {\n width: 58.33333333%;\n }\n .col-lg-6 {\n width: 50%;\n }\n .col-lg-5 {\n width: 41.66666667%;\n }\n .col-lg-4 {\n width: 33.33333333%;\n }\n .col-lg-3 {\n width: 25%;\n }\n .col-lg-2 {\n width: 16.66666667%;\n }\n .col-lg-1 {\n width: 8.33333333%;\n }\n .col-lg-pull-12 {\n right: 100%;\n }\n .col-lg-pull-11 {\n right: 91.66666667%;\n }\n .col-lg-pull-10 {\n right: 83.33333333%;\n }\n .col-lg-pull-9 {\n right: 75%;\n }\n .col-lg-pull-8 {\n right: 66.66666667%;\n }\n .col-lg-pull-7 {\n right: 58.33333333%;\n }\n .col-lg-pull-6 {\n right: 50%;\n }\n .col-lg-pull-5 {\n right: 41.66666667%;\n }\n .col-lg-pull-4 {\n right: 33.33333333%;\n }\n .col-lg-pull-3 {\n right: 25%;\n }\n .col-lg-pull-2 {\n right: 16.66666667%;\n }\n .col-lg-pull-1 {\n right: 8.33333333%;\n }\n .col-lg-pull-0 {\n right: auto;\n }\n .col-lg-push-12 {\n left: 100%;\n }\n .col-lg-push-11 {\n left: 91.66666667%;\n }\n .col-lg-push-10 {\n left: 83.33333333%;\n }\n .col-lg-push-9 {\n left: 75%;\n }\n .col-lg-push-8 {\n left: 66.66666667%;\n }\n .col-lg-push-7 {\n left: 58.33333333%;\n }\n .col-lg-push-6 {\n left: 50%;\n }\n .col-lg-push-5 {\n left: 41.66666667%;\n }\n .col-lg-push-4 {\n left: 33.33333333%;\n }\n .col-lg-push-3 {\n left: 25%;\n }\n .col-lg-push-2 {\n left: 16.66666667%;\n }\n .col-lg-push-1 {\n left: 8.33333333%;\n }\n .col-lg-push-0 {\n left: auto;\n }\n .col-lg-offset-12 {\n margin-left: 100%;\n }\n .col-lg-offset-11 {\n margin-left: 91.66666667%;\n }\n .col-lg-offset-10 {\n margin-left: 83.33333333%;\n }\n .col-lg-offset-9 {\n margin-left: 75%;\n }\n .col-lg-offset-8 {\n margin-left: 66.66666667%;\n }\n .col-lg-offset-7 {\n margin-left: 58.33333333%;\n }\n .col-lg-offset-6 {\n margin-left: 50%;\n }\n .col-lg-offset-5 {\n margin-left: 41.66666667%;\n }\n .col-lg-offset-4 {\n margin-left: 33.33333333%;\n }\n .col-lg-offset-3 {\n margin-left: 25%;\n }\n .col-lg-offset-2 {\n margin-left: 16.66666667%;\n }\n .col-lg-offset-1 {\n margin-left: 8.33333333%;\n }\n .col-lg-offset-0 {\n margin-left: 0%;\n }\n}\ntable {\n background-color: transparent;\n}\ncaption {\n padding-top: 8px;\n padding-bottom: 8px;\n color: #777777;\n text-align: left;\n}\nth {\n text-align: left;\n}\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: 20px;\n}\n.table > thead > tr > th,\n.table > tbody > tr > th,\n.table > tfoot > tr > th,\n.table > thead > tr > td,\n.table > tbody > tr > td,\n.table > tfoot > tr > td {\n padding: 8px;\n line-height: 1.42857143;\n vertical-align: top;\n border-top: 1px solid #dddddd;\n}\n.table > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid #dddddd;\n}\n.table > caption + thead > tr:first-child > th,\n.table > colgroup + thead > tr:first-child > th,\n.table > thead:first-child > tr:first-child > th,\n.table > caption + thead > tr:first-child > td,\n.table > colgroup + thead > tr:first-child > td,\n.table > thead:first-child > tr:first-child > td {\n border-top: 0;\n}\n.table > tbody + tbody {\n border-top: 2px solid #dddddd;\n}\n.table .table {\n background-color: #ffffff;\n}\n.table-condensed > thead > tr > th,\n.table-condensed > tbody > tr > th,\n.table-condensed > tfoot > tr > th,\n.table-condensed > thead > tr > td,\n.table-condensed > tbody > tr > td,\n.table-condensed > tfoot > tr > td {\n padding: 5px;\n}\n.table-bordered {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > tbody > tr > th,\n.table-bordered > tfoot > tr > th,\n.table-bordered > thead > tr > td,\n.table-bordered > tbody > tr > td,\n.table-bordered > tfoot > tr > td {\n border: 1px solid #dddddd;\n}\n.table-bordered > thead > tr > th,\n.table-bordered > thead > tr > td {\n border-bottom-width: 2px;\n}\n.table-striped > tbody > tr:nth-of-type(odd) {\n background-color: #f9f9f9;\n}\n.table-hover > tbody > tr:hover {\n background-color: #f5f5f5;\n}\ntable col[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-column;\n}\ntable td[class*=\"col-\"],\ntable th[class*=\"col-\"] {\n position: static;\n float: none;\n display: table-cell;\n}\n.table > thead > tr > td.active,\n.table > tbody > tr > td.active,\n.table > tfoot > tr > td.active,\n.table > thead > tr > th.active,\n.table > tbody > tr > th.active,\n.table > tfoot > tr > th.active,\n.table > thead > tr.active > td,\n.table > tbody > tr.active > td,\n.table > tfoot > tr.active > td,\n.table > thead > tr.active > th,\n.table > tbody > tr.active > th,\n.table > tfoot > tr.active > th {\n background-color: #f5f5f5;\n}\n.table-hover > tbody > tr > td.active:hover,\n.table-hover > tbody > tr > th.active:hover,\n.table-hover > tbody > tr.active:hover > td,\n.table-hover > tbody > tr:hover > .active,\n.table-hover > tbody > tr.active:hover > th {\n background-color: #e8e8e8;\n}\n.table > thead > tr > td.success,\n.table > tbody > tr > td.success,\n.table > tfoot > tr > td.success,\n.table > thead > tr > th.success,\n.table > tbody > tr > th.success,\n.table > tfoot > tr > th.success,\n.table > thead > tr.success > td,\n.table > tbody > tr.success > td,\n.table > tfoot > tr.success > td,\n.table > thead > tr.success > th,\n.table > tbody > tr.success > th,\n.table > tfoot > tr.success > th {\n background-color: #dff0d8;\n}\n.table-hover > tbody > tr > td.success:hover,\n.table-hover > tbody > tr > th.success:hover,\n.table-hover > tbody > tr.success:hover > td,\n.table-hover > tbody > tr:hover > .success,\n.table-hover > tbody > tr.success:hover > th {\n background-color: #d0e9c6;\n}\n.table > thead > tr > td.info,\n.table > tbody > tr > td.info,\n.table > tfoot > tr > td.info,\n.table > thead > tr > th.info,\n.table > tbody > tr > th.info,\n.table > tfoot > tr > th.info,\n.table > thead > tr.info > td,\n.table > tbody > tr.info > td,\n.table > tfoot > tr.info > td,\n.table > thead > tr.info > th,\n.table > tbody > tr.info > th,\n.table > tfoot > tr.info > th {\n background-color: #d9edf7;\n}\n.table-hover > tbody > tr > td.info:hover,\n.table-hover > tbody > tr > th.info:hover,\n.table-hover > tbody > tr.info:hover > td,\n.table-hover > tbody > tr:hover > .info,\n.table-hover > tbody > tr.info:hover > th {\n background-color: #c4e3f3;\n}\n.table > thead > tr > td.warning,\n.table > tbody > tr > td.warning,\n.table > tfoot > tr > td.warning,\n.table > thead > tr > th.warning,\n.table > tbody > tr > th.warning,\n.table > tfoot > tr > th.warning,\n.table > thead > tr.warning > td,\n.table > tbody > tr.warning > td,\n.table > tfoot > tr.warning > td,\n.table > thead > tr.warning > th,\n.table > tbody > tr.warning > th,\n.table > tfoot > tr.warning > th {\n background-color: #fcf8e3;\n}\n.table-hover > tbody > tr > td.warning:hover,\n.table-hover > tbody > tr > th.warning:hover,\n.table-hover > tbody > tr.warning:hover > td,\n.table-hover > tbody > tr:hover > .warning,\n.table-hover > tbody > tr.warning:hover > th {\n background-color: #faf2cc;\n}\n.table > thead > tr > td.danger,\n.table > tbody > tr > td.danger,\n.table > tfoot > tr > td.danger,\n.table > thead > tr > th.danger,\n.table > tbody > tr > th.danger,\n.table > tfoot > tr > th.danger,\n.table > thead > tr.danger > td,\n.table > tbody > tr.danger > td,\n.table > tfoot > tr.danger > td,\n.table > thead > tr.danger > th,\n.table > tbody > tr.danger > th,\n.table > tfoot > tr.danger > th {\n background-color: #f2dede;\n}\n.table-hover > tbody > tr > td.danger:hover,\n.table-hover > tbody > tr > th.danger:hover,\n.table-hover > tbody > tr.danger:hover > td,\n.table-hover > tbody > tr:hover > .danger,\n.table-hover > tbody > tr.danger:hover > th {\n background-color: #ebcccc;\n}\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%;\n}\n@media screen and (max-width: 767px) {\n .table-responsive {\n width: 100%;\n margin-bottom: 15px;\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid #dddddd;\n }\n .table-responsive > .table {\n margin-bottom: 0;\n }\n .table-responsive > .table > thead > tr > th,\n .table-responsive > .table > tbody > tr > th,\n .table-responsive > .table > tfoot > tr > th,\n .table-responsive > .table > thead > tr > td,\n .table-responsive > .table > tbody > tr > td,\n .table-responsive > .table > tfoot > tr > td {\n white-space: nowrap;\n }\n .table-responsive > .table-bordered {\n border: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:first-child,\n .table-responsive > .table-bordered > tbody > tr > th:first-child,\n .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n .table-responsive > .table-bordered > thead > tr > td:first-child,\n .table-responsive > .table-bordered > tbody > tr > td:first-child,\n .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n }\n .table-responsive > .table-bordered > thead > tr > th:last-child,\n .table-responsive > .table-bordered > tbody > tr > th:last-child,\n .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n .table-responsive > .table-bordered > thead > tr > td:last-child,\n .table-responsive > .table-bordered > tbody > tr > td:last-child,\n .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n }\n .table-responsive > .table-bordered > tbody > tr:last-child > th,\n .table-responsive > .table-bordered > tfoot > tr:last-child > th,\n .table-responsive > .table-bordered > tbody > tr:last-child > td,\n .table-responsive > .table-bordered > tfoot > tr:last-child > td {\n border-bottom: 0;\n }\n}\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n min-width: 0;\n}\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: 20px;\n font-size: 21px;\n line-height: inherit;\n color: #333333;\n border: 0;\n border-bottom: 1px solid #e5e5e5;\n}\nlabel {\n display: inline-block;\n max-width: 100%;\n margin-bottom: 5px;\n font-weight: bold;\n}\ninput[type=\"search\"] {\n -webkit-box-sizing: border-box;\n -moz-box-sizing: border-box;\n box-sizing: border-box;\n}\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9;\n line-height: normal;\n}\ninput[type=\"file\"] {\n display: block;\n}\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\nselect[multiple],\nselect[size] {\n height: auto;\n}\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\noutput {\n display: block;\n padding-top: 7px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n}\n.form-control {\n display: block;\n width: 100%;\n height: 34px;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n color: #555555;\n background-color: #ffffff;\n background-image: none;\n border: 1px solid #cccccc;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;\n}\n.form-control:focus {\n border-color: #66afe9;\n outline: 0;\n -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);\n}\n.form-control::-moz-placeholder {\n color: #999999;\n opacity: 1;\n}\n.form-control:-ms-input-placeholder {\n color: #999999;\n}\n.form-control::-webkit-input-placeholder {\n color: #999999;\n}\n.form-control[disabled],\n.form-control[readonly],\nfieldset[disabled] .form-control {\n cursor: not-allowed;\n background-color: #eeeeee;\n opacity: 1;\n}\ntextarea.form-control {\n height: auto;\n}\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: 34px;\n }\n input[type=\"date\"].input-sm,\n input[type=\"time\"].input-sm,\n input[type=\"datetime-local\"].input-sm,\n input[type=\"month\"].input-sm,\n .input-group-sm input[type=\"date\"],\n .input-group-sm input[type=\"time\"],\n .input-group-sm input[type=\"datetime-local\"],\n .input-group-sm input[type=\"month\"] {\n line-height: 30px;\n }\n input[type=\"date\"].input-lg,\n input[type=\"time\"].input-lg,\n input[type=\"datetime-local\"].input-lg,\n input[type=\"month\"].input-lg,\n .input-group-lg input[type=\"date\"],\n .input-group-lg input[type=\"time\"],\n .input-group-lg input[type=\"datetime-local\"],\n .input-group-lg input[type=\"month\"] {\n line-height: 46px;\n }\n}\n.form-group {\n margin-bottom: 15px;\n}\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.radio label,\n.checkbox label {\n min-height: 20px;\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px;\n}\n.radio-inline,\n.checkbox-inline {\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px;\n}\ninput[type=\"radio\"][disabled],\ninput[type=\"checkbox\"][disabled],\ninput[type=\"radio\"].disabled,\ninput[type=\"checkbox\"].disabled,\nfieldset[disabled] input[type=\"radio\"],\nfieldset[disabled] input[type=\"checkbox\"] {\n cursor: not-allowed;\n}\n.radio-inline.disabled,\n.checkbox-inline.disabled,\nfieldset[disabled] .radio-inline,\nfieldset[disabled] .checkbox-inline {\n cursor: not-allowed;\n}\n.radio.disabled label,\n.checkbox.disabled label,\nfieldset[disabled] .radio label,\nfieldset[disabled] .checkbox label {\n cursor: not-allowed;\n}\n.form-control-static {\n padding-top: 7px;\n padding-bottom: 7px;\n margin-bottom: 0;\n}\n.form-control-static.input-lg,\n.form-control-static.input-sm {\n padding-left: 0;\n padding-right: 0;\n}\n.input-sm {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-sm {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-sm,\nselect[multiple].input-sm {\n height: auto;\n}\n.form-group-sm .form-control {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.form-group-sm .form-control {\n height: 30px;\n line-height: 30px;\n}\ntextarea.form-group-sm .form-control,\nselect[multiple].form-group-sm .form-control {\n height: auto;\n}\n.form-group-sm .form-control-static {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n}\n.input-lg {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-lg {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-lg,\nselect[multiple].input-lg {\n height: auto;\n}\n.form-group-lg .form-control {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.form-group-lg .form-control {\n height: 46px;\n line-height: 46px;\n}\ntextarea.form-group-lg .form-control,\nselect[multiple].form-group-lg .form-control {\n height: auto;\n}\n.form-group-lg .form-control-static {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n}\n.has-feedback {\n position: relative;\n}\n.has-feedback .form-control {\n padding-right: 42.5px;\n}\n.form-control-feedback {\n position: absolute;\n top: 0;\n right: 0;\n z-index: 2;\n display: block;\n width: 34px;\n height: 34px;\n line-height: 34px;\n text-align: center;\n pointer-events: none;\n}\n.input-lg + .form-control-feedback {\n width: 46px;\n height: 46px;\n line-height: 46px;\n}\n.input-sm + .form-control-feedback {\n width: 30px;\n height: 30px;\n line-height: 30px;\n}\n.has-success .help-block,\n.has-success .control-label,\n.has-success .radio,\n.has-success .checkbox,\n.has-success .radio-inline,\n.has-success .checkbox-inline,\n.has-success.radio label,\n.has-success.checkbox label,\n.has-success.radio-inline label,\n.has-success.checkbox-inline label {\n color: #3c763d;\n}\n.has-success .form-control {\n border-color: #3c763d;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-success .form-control:focus {\n border-color: #2b542c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;\n}\n.has-success .input-group-addon {\n color: #3c763d;\n border-color: #3c763d;\n background-color: #dff0d8;\n}\n.has-success .form-control-feedback {\n color: #3c763d;\n}\n.has-warning .help-block,\n.has-warning .control-label,\n.has-warning .radio,\n.has-warning .checkbox,\n.has-warning .radio-inline,\n.has-warning .checkbox-inline,\n.has-warning.radio label,\n.has-warning.checkbox label,\n.has-warning.radio-inline label,\n.has-warning.checkbox-inline label {\n color: #8a6d3b;\n}\n.has-warning .form-control {\n border-color: #8a6d3b;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-warning .form-control:focus {\n border-color: #66512c;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;\n}\n.has-warning .input-group-addon {\n color: #8a6d3b;\n border-color: #8a6d3b;\n background-color: #fcf8e3;\n}\n.has-warning .form-control-feedback {\n color: #8a6d3b;\n}\n.has-error .help-block,\n.has-error .control-label,\n.has-error .radio,\n.has-error .checkbox,\n.has-error .radio-inline,\n.has-error .checkbox-inline,\n.has-error.radio label,\n.has-error.checkbox label,\n.has-error.radio-inline label,\n.has-error.checkbox-inline label {\n color: #a94442;\n}\n.has-error .form-control {\n border-color: #a94442;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);\n}\n.has-error .form-control:focus {\n border-color: #843534;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;\n}\n.has-error .input-group-addon {\n color: #a94442;\n border-color: #a94442;\n background-color: #f2dede;\n}\n.has-error .form-control-feedback {\n color: #a94442;\n}\n.has-feedback label ~ .form-control-feedback {\n top: 25px;\n}\n.has-feedback label.sr-only ~ .form-control-feedback {\n top: 0;\n}\n.help-block {\n display: block;\n margin-top: 5px;\n margin-bottom: 10px;\n color: #737373;\n}\n@media (min-width: 768px) {\n .form-inline .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .form-inline .form-control-static {\n display: inline-block;\n }\n .form-inline .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .form-inline .input-group .input-group-addon,\n .form-inline .input-group .input-group-btn,\n .form-inline .input-group .form-control {\n width: auto;\n }\n .form-inline .input-group > .form-control {\n width: 100%;\n }\n .form-inline .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio,\n .form-inline .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .form-inline .radio label,\n .form-inline .checkbox label {\n padding-left: 0;\n }\n .form-inline .radio input[type=\"radio\"],\n .form-inline .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .form-inline .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox,\n.form-horizontal .radio-inline,\n.form-horizontal .checkbox-inline {\n margin-top: 0;\n margin-bottom: 0;\n padding-top: 7px;\n}\n.form-horizontal .radio,\n.form-horizontal .checkbox {\n min-height: 27px;\n}\n.form-horizontal .form-group {\n margin-left: -15px;\n margin-right: -15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .control-label {\n text-align: right;\n margin-bottom: 0;\n padding-top: 7px;\n }\n}\n.form-horizontal .has-feedback .form-control-feedback {\n right: 15px;\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-lg .control-label {\n padding-top: 14.333333px;\n }\n}\n@media (min-width: 768px) {\n .form-horizontal .form-group-sm .control-label {\n padding-top: 6px;\n }\n}\n.btn {\n display: inline-block;\n margin-bottom: 0;\n font-weight: normal;\n text-align: center;\n vertical-align: middle;\n touch-action: manipulation;\n cursor: pointer;\n background-image: none;\n border: 1px solid transparent;\n white-space: nowrap;\n padding: 6px 12px;\n font-size: 14px;\n line-height: 1.42857143;\n border-radius: 4px;\n -webkit-user-select: none;\n -moz-user-select: none;\n -ms-user-select: none;\n user-select: none;\n}\n.btn:focus,\n.btn:active:focus,\n.btn.active:focus,\n.btn.focus,\n.btn:active.focus,\n.btn.active.focus {\n outline: thin dotted;\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n.btn:hover,\n.btn:focus,\n.btn.focus {\n color: #333333;\n text-decoration: none;\n}\n.btn:active,\n.btn.active {\n outline: 0;\n background-image: none;\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn.disabled,\n.btn[disabled],\nfieldset[disabled] .btn {\n cursor: not-allowed;\n pointer-events: none;\n opacity: 0.65;\n filter: alpha(opacity=65);\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-default {\n color: #333333;\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default:hover,\n.btn-default:focus,\n.btn-default.focus,\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n color: #333333;\n background-color: #e6e6e6;\n border-color: #adadad;\n}\n.btn-default:active,\n.btn-default.active,\n.open > .dropdown-toggle.btn-default {\n background-image: none;\n}\n.btn-default.disabled,\n.btn-default[disabled],\nfieldset[disabled] .btn-default,\n.btn-default.disabled:hover,\n.btn-default[disabled]:hover,\nfieldset[disabled] .btn-default:hover,\n.btn-default.disabled:focus,\n.btn-default[disabled]:focus,\nfieldset[disabled] .btn-default:focus,\n.btn-default.disabled.focus,\n.btn-default[disabled].focus,\nfieldset[disabled] .btn-default.focus,\n.btn-default.disabled:active,\n.btn-default[disabled]:active,\nfieldset[disabled] .btn-default:active,\n.btn-default.disabled.active,\n.btn-default[disabled].active,\nfieldset[disabled] .btn-default.active {\n background-color: #ffffff;\n border-color: #cccccc;\n}\n.btn-default .badge {\n color: #ffffff;\n background-color: #333333;\n}\n.btn-primary {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary:hover,\n.btn-primary:focus,\n.btn-primary.focus,\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n color: #ffffff;\n background-color: #286090;\n border-color: #204d74;\n}\n.btn-primary:active,\n.btn-primary.active,\n.open > .dropdown-toggle.btn-primary {\n background-image: none;\n}\n.btn-primary.disabled,\n.btn-primary[disabled],\nfieldset[disabled] .btn-primary,\n.btn-primary.disabled:hover,\n.btn-primary[disabled]:hover,\nfieldset[disabled] .btn-primary:hover,\n.btn-primary.disabled:focus,\n.btn-primary[disabled]:focus,\nfieldset[disabled] .btn-primary:focus,\n.btn-primary.disabled.focus,\n.btn-primary[disabled].focus,\nfieldset[disabled] .btn-primary.focus,\n.btn-primary.disabled:active,\n.btn-primary[disabled]:active,\nfieldset[disabled] .btn-primary:active,\n.btn-primary.disabled.active,\n.btn-primary[disabled].active,\nfieldset[disabled] .btn-primary.active {\n background-color: #337ab7;\n border-color: #2e6da4;\n}\n.btn-primary .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.btn-success {\n color: #ffffff;\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success:hover,\n.btn-success:focus,\n.btn-success.focus,\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n color: #ffffff;\n background-color: #449d44;\n border-color: #398439;\n}\n.btn-success:active,\n.btn-success.active,\n.open > .dropdown-toggle.btn-success {\n background-image: none;\n}\n.btn-success.disabled,\n.btn-success[disabled],\nfieldset[disabled] .btn-success,\n.btn-success.disabled:hover,\n.btn-success[disabled]:hover,\nfieldset[disabled] .btn-success:hover,\n.btn-success.disabled:focus,\n.btn-success[disabled]:focus,\nfieldset[disabled] .btn-success:focus,\n.btn-success.disabled.focus,\n.btn-success[disabled].focus,\nfieldset[disabled] .btn-success.focus,\n.btn-success.disabled:active,\n.btn-success[disabled]:active,\nfieldset[disabled] .btn-success:active,\n.btn-success.disabled.active,\n.btn-success[disabled].active,\nfieldset[disabled] .btn-success.active {\n background-color: #5cb85c;\n border-color: #4cae4c;\n}\n.btn-success .badge {\n color: #5cb85c;\n background-color: #ffffff;\n}\n.btn-info {\n color: #ffffff;\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info:hover,\n.btn-info:focus,\n.btn-info.focus,\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n color: #ffffff;\n background-color: #31b0d5;\n border-color: #269abc;\n}\n.btn-info:active,\n.btn-info.active,\n.open > .dropdown-toggle.btn-info {\n background-image: none;\n}\n.btn-info.disabled,\n.btn-info[disabled],\nfieldset[disabled] .btn-info,\n.btn-info.disabled:hover,\n.btn-info[disabled]:hover,\nfieldset[disabled] .btn-info:hover,\n.btn-info.disabled:focus,\n.btn-info[disabled]:focus,\nfieldset[disabled] .btn-info:focus,\n.btn-info.disabled.focus,\n.btn-info[disabled].focus,\nfieldset[disabled] .btn-info.focus,\n.btn-info.disabled:active,\n.btn-info[disabled]:active,\nfieldset[disabled] .btn-info:active,\n.btn-info.disabled.active,\n.btn-info[disabled].active,\nfieldset[disabled] .btn-info.active {\n background-color: #5bc0de;\n border-color: #46b8da;\n}\n.btn-info .badge {\n color: #5bc0de;\n background-color: #ffffff;\n}\n.btn-warning {\n color: #ffffff;\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning:hover,\n.btn-warning:focus,\n.btn-warning.focus,\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n color: #ffffff;\n background-color: #ec971f;\n border-color: #d58512;\n}\n.btn-warning:active,\n.btn-warning.active,\n.open > .dropdown-toggle.btn-warning {\n background-image: none;\n}\n.btn-warning.disabled,\n.btn-warning[disabled],\nfieldset[disabled] .btn-warning,\n.btn-warning.disabled:hover,\n.btn-warning[disabled]:hover,\nfieldset[disabled] .btn-warning:hover,\n.btn-warning.disabled:focus,\n.btn-warning[disabled]:focus,\nfieldset[disabled] .btn-warning:focus,\n.btn-warning.disabled.focus,\n.btn-warning[disabled].focus,\nfieldset[disabled] .btn-warning.focus,\n.btn-warning.disabled:active,\n.btn-warning[disabled]:active,\nfieldset[disabled] .btn-warning:active,\n.btn-warning.disabled.active,\n.btn-warning[disabled].active,\nfieldset[disabled] .btn-warning.active {\n background-color: #f0ad4e;\n border-color: #eea236;\n}\n.btn-warning .badge {\n color: #f0ad4e;\n background-color: #ffffff;\n}\n.btn-danger {\n color: #ffffff;\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger:hover,\n.btn-danger:focus,\n.btn-danger.focus,\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n color: #ffffff;\n background-color: #c9302c;\n border-color: #ac2925;\n}\n.btn-danger:active,\n.btn-danger.active,\n.open > .dropdown-toggle.btn-danger {\n background-image: none;\n}\n.btn-danger.disabled,\n.btn-danger[disabled],\nfieldset[disabled] .btn-danger,\n.btn-danger.disabled:hover,\n.btn-danger[disabled]:hover,\nfieldset[disabled] .btn-danger:hover,\n.btn-danger.disabled:focus,\n.btn-danger[disabled]:focus,\nfieldset[disabled] .btn-danger:focus,\n.btn-danger.disabled.focus,\n.btn-danger[disabled].focus,\nfieldset[disabled] .btn-danger.focus,\n.btn-danger.disabled:active,\n.btn-danger[disabled]:active,\nfieldset[disabled] .btn-danger:active,\n.btn-danger.disabled.active,\n.btn-danger[disabled].active,\nfieldset[disabled] .btn-danger.active {\n background-color: #d9534f;\n border-color: #d43f3a;\n}\n.btn-danger .badge {\n color: #d9534f;\n background-color: #ffffff;\n}\n.btn-link {\n color: #337ab7;\n font-weight: normal;\n border-radius: 0;\n}\n.btn-link,\n.btn-link:active,\n.btn-link.active,\n.btn-link[disabled],\nfieldset[disabled] .btn-link {\n background-color: transparent;\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn-link,\n.btn-link:hover,\n.btn-link:focus,\n.btn-link:active {\n border-color: transparent;\n}\n.btn-link:hover,\n.btn-link:focus {\n color: #23527c;\n text-decoration: underline;\n background-color: transparent;\n}\n.btn-link[disabled]:hover,\nfieldset[disabled] .btn-link:hover,\n.btn-link[disabled]:focus,\nfieldset[disabled] .btn-link:focus {\n color: #777777;\n text-decoration: none;\n}\n.btn-lg,\n.btn-group-lg > .btn {\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\n.btn-sm,\n.btn-group-sm > .btn {\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-xs,\n.btn-group-xs > .btn {\n padding: 1px 5px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\n.btn-block {\n display: block;\n width: 100%;\n}\n.btn-block + .btn-block {\n margin-top: 5px;\n}\ninput[type=\"submit\"].btn-block,\ninput[type=\"reset\"].btn-block,\ninput[type=\"button\"].btn-block {\n width: 100%;\n}\n.fade {\n opacity: 0;\n -webkit-transition: opacity 0.15s linear;\n -o-transition: opacity 0.15s linear;\n transition: opacity 0.15s linear;\n}\n.fade.in {\n opacity: 1;\n}\n.collapse {\n display: none;\n visibility: hidden;\n}\n.collapse.in {\n display: block;\n visibility: visible;\n}\ntr.collapse.in {\n display: table-row;\n}\ntbody.collapse.in {\n display: table-row-group;\n}\n.collapsing {\n position: relative;\n height: 0;\n overflow: hidden;\n -webkit-transition-property: height, visibility;\n transition-property: height, visibility;\n -webkit-transition-duration: 0.35s;\n transition-duration: 0.35s;\n -webkit-transition-timing-function: ease;\n transition-timing-function: ease;\n}\n.caret {\n display: inline-block;\n width: 0;\n height: 0;\n margin-left: 2px;\n vertical-align: middle;\n border-top: 4px solid;\n border-right: 4px solid transparent;\n border-left: 4px solid transparent;\n}\n.dropup,\n.dropdown {\n position: relative;\n}\n.dropdown-toggle:focus {\n outline: 0;\n}\n.dropdown-menu {\n position: absolute;\n top: 100%;\n left: 0;\n z-index: 1000;\n display: none;\n float: left;\n min-width: 160px;\n padding: 5px 0;\n margin: 2px 0 0;\n list-style: none;\n font-size: 14px;\n text-align: left;\n background-color: #ffffff;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.15);\n border-radius: 4px;\n -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);\n background-clip: padding-box;\n}\n.dropdown-menu.pull-right {\n right: 0;\n left: auto;\n}\n.dropdown-menu .divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.dropdown-menu > li > a {\n display: block;\n padding: 3px 20px;\n clear: both;\n font-weight: normal;\n line-height: 1.42857143;\n color: #333333;\n white-space: nowrap;\n}\n.dropdown-menu > li > a:hover,\n.dropdown-menu > li > a:focus {\n text-decoration: none;\n color: #262626;\n background-color: #f5f5f5;\n}\n.dropdown-menu > .active > a,\n.dropdown-menu > .active > a:hover,\n.dropdown-menu > .active > a:focus {\n color: #ffffff;\n text-decoration: none;\n outline: 0;\n background-color: #337ab7;\n}\n.dropdown-menu > .disabled > a,\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n color: #777777;\n}\n.dropdown-menu > .disabled > a:hover,\n.dropdown-menu > .disabled > a:focus {\n text-decoration: none;\n background-color: transparent;\n background-image: none;\n filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);\n cursor: not-allowed;\n}\n.open > .dropdown-menu {\n display: block;\n}\n.open > a {\n outline: 0;\n}\n.dropdown-menu-right {\n left: auto;\n right: 0;\n}\n.dropdown-menu-left {\n left: 0;\n right: auto;\n}\n.dropdown-header {\n display: block;\n padding: 3px 20px;\n font-size: 12px;\n line-height: 1.42857143;\n color: #777777;\n white-space: nowrap;\n}\n.dropdown-backdrop {\n position: fixed;\n left: 0;\n right: 0;\n bottom: 0;\n top: 0;\n z-index: 990;\n}\n.pull-right > .dropdown-menu {\n right: 0;\n left: auto;\n}\n.dropup .caret,\n.navbar-fixed-bottom .dropdown .caret {\n border-top: 0;\n border-bottom: 4px solid;\n content: \"\";\n}\n.dropup .dropdown-menu,\n.navbar-fixed-bottom .dropdown .dropdown-menu {\n top: auto;\n bottom: 100%;\n margin-bottom: 2px;\n}\n@media (min-width: 768px) {\n .navbar-right .dropdown-menu {\n left: auto;\n right: 0;\n }\n .navbar-right .dropdown-menu-left {\n left: 0;\n right: auto;\n }\n}\n.btn-group,\n.btn-group-vertical {\n position: relative;\n display: inline-block;\n vertical-align: middle;\n}\n.btn-group > .btn,\n.btn-group-vertical > .btn {\n position: relative;\n float: left;\n}\n.btn-group > .btn:hover,\n.btn-group-vertical > .btn:hover,\n.btn-group > .btn:focus,\n.btn-group-vertical > .btn:focus,\n.btn-group > .btn:active,\n.btn-group-vertical > .btn:active,\n.btn-group > .btn.active,\n.btn-group-vertical > .btn.active {\n z-index: 2;\n}\n.btn-group .btn + .btn,\n.btn-group .btn + .btn-group,\n.btn-group .btn-group + .btn,\n.btn-group .btn-group + .btn-group {\n margin-left: -1px;\n}\n.btn-toolbar {\n margin-left: -5px;\n}\n.btn-toolbar .btn-group,\n.btn-toolbar .input-group {\n float: left;\n}\n.btn-toolbar > .btn,\n.btn-toolbar > .btn-group,\n.btn-toolbar > .input-group {\n margin-left: 5px;\n}\n.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {\n border-radius: 0;\n}\n.btn-group > .btn:first-child {\n margin-left: 0;\n}\n.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn:last-child:not(:first-child),\n.btn-group > .dropdown-toggle:not(:first-child) {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group > .btn-group {\n float: left;\n}\n.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group .dropdown-toggle:active,\n.btn-group.open .dropdown-toggle {\n outline: 0;\n}\n.btn-group > .btn + .dropdown-toggle {\n padding-left: 8px;\n padding-right: 8px;\n}\n.btn-group > .btn-lg + .dropdown-toggle {\n padding-left: 12px;\n padding-right: 12px;\n}\n.btn-group.open .dropdown-toggle {\n -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);\n}\n.btn-group.open .dropdown-toggle.btn-link {\n -webkit-box-shadow: none;\n box-shadow: none;\n}\n.btn .caret {\n margin-left: 0;\n}\n.btn-lg .caret {\n border-width: 5px 5px 0;\n border-bottom-width: 0;\n}\n.dropup .btn-lg .caret {\n border-width: 0 5px 5px;\n}\n.btn-group-vertical > .btn,\n.btn-group-vertical > .btn-group,\n.btn-group-vertical > .btn-group > .btn {\n display: block;\n float: none;\n width: 100%;\n max-width: 100%;\n}\n.btn-group-vertical > .btn-group > .btn {\n float: none;\n}\n.btn-group-vertical > .btn + .btn,\n.btn-group-vertical > .btn + .btn-group,\n.btn-group-vertical > .btn-group + .btn,\n.btn-group-vertical > .btn-group + .btn-group {\n margin-top: -1px;\n margin-left: 0;\n}\n.btn-group-vertical > .btn:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.btn-group-vertical > .btn:first-child:not(:last-child) {\n border-top-right-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn:last-child:not(:first-child) {\n border-bottom-left-radius: 4px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {\n border-radius: 0;\n}\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,\n.btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.btn-group-justified {\n display: table;\n width: 100%;\n table-layout: fixed;\n border-collapse: separate;\n}\n.btn-group-justified > .btn,\n.btn-group-justified > .btn-group {\n float: none;\n display: table-cell;\n width: 1%;\n}\n.btn-group-justified > .btn-group .btn {\n width: 100%;\n}\n.btn-group-justified > .btn-group .dropdown-menu {\n left: auto;\n}\n[data-toggle=\"buttons\"] > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"radio\"],\n[data-toggle=\"buttons\"] > .btn input[type=\"checkbox\"],\n[data-toggle=\"buttons\"] > .btn-group > .btn input[type=\"checkbox\"] {\n position: absolute;\n clip: rect(0, 0, 0, 0);\n pointer-events: none;\n}\n.input-group {\n position: relative;\n display: table;\n border-collapse: separate;\n}\n.input-group[class*=\"col-\"] {\n float: none;\n padding-left: 0;\n padding-right: 0;\n}\n.input-group .form-control {\n position: relative;\n z-index: 2;\n float: left;\n width: 100%;\n margin-bottom: 0;\n}\n.input-group-lg > .form-control,\n.input-group-lg > .input-group-addon,\n.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n padding: 10px 16px;\n font-size: 18px;\n line-height: 1.3333333;\n border-radius: 6px;\n}\nselect.input-group-lg > .form-control,\nselect.input-group-lg > .input-group-addon,\nselect.input-group-lg > .input-group-btn > .btn {\n height: 46px;\n line-height: 46px;\n}\ntextarea.input-group-lg > .form-control,\ntextarea.input-group-lg > .input-group-addon,\ntextarea.input-group-lg > .input-group-btn > .btn,\nselect[multiple].input-group-lg > .form-control,\nselect[multiple].input-group-lg > .input-group-addon,\nselect[multiple].input-group-lg > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-sm > .form-control,\n.input-group-sm > .input-group-addon,\n.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n padding: 5px 10px;\n font-size: 12px;\n line-height: 1.5;\n border-radius: 3px;\n}\nselect.input-group-sm > .form-control,\nselect.input-group-sm > .input-group-addon,\nselect.input-group-sm > .input-group-btn > .btn {\n height: 30px;\n line-height: 30px;\n}\ntextarea.input-group-sm > .form-control,\ntextarea.input-group-sm > .input-group-addon,\ntextarea.input-group-sm > .input-group-btn > .btn,\nselect[multiple].input-group-sm > .form-control,\nselect[multiple].input-group-sm > .input-group-addon,\nselect[multiple].input-group-sm > .input-group-btn > .btn {\n height: auto;\n}\n.input-group-addon,\n.input-group-btn,\n.input-group .form-control {\n display: table-cell;\n}\n.input-group-addon:not(:first-child):not(:last-child),\n.input-group-btn:not(:first-child):not(:last-child),\n.input-group .form-control:not(:first-child):not(:last-child) {\n border-radius: 0;\n}\n.input-group-addon,\n.input-group-btn {\n width: 1%;\n white-space: nowrap;\n vertical-align: middle;\n}\n.input-group-addon {\n padding: 6px 12px;\n font-size: 14px;\n font-weight: normal;\n line-height: 1;\n color: #555555;\n text-align: center;\n background-color: #eeeeee;\n border: 1px solid #cccccc;\n border-radius: 4px;\n}\n.input-group-addon.input-sm {\n padding: 5px 10px;\n font-size: 12px;\n border-radius: 3px;\n}\n.input-group-addon.input-lg {\n padding: 10px 16px;\n font-size: 18px;\n border-radius: 6px;\n}\n.input-group-addon input[type=\"radio\"],\n.input-group-addon input[type=\"checkbox\"] {\n margin-top: 0;\n}\n.input-group .form-control:first-child,\n.input-group-addon:first-child,\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group > .btn,\n.input-group-btn:first-child > .dropdown-toggle,\n.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),\n.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {\n border-bottom-right-radius: 0;\n border-top-right-radius: 0;\n}\n.input-group-addon:first-child {\n border-right: 0;\n}\n.input-group .form-control:last-child,\n.input-group-addon:last-child,\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group > .btn,\n.input-group-btn:last-child > .dropdown-toggle,\n.input-group-btn:first-child > .btn:not(:first-child),\n.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {\n border-bottom-left-radius: 0;\n border-top-left-radius: 0;\n}\n.input-group-addon:last-child {\n border-left: 0;\n}\n.input-group-btn {\n position: relative;\n font-size: 0;\n white-space: nowrap;\n}\n.input-group-btn > .btn {\n position: relative;\n}\n.input-group-btn > .btn + .btn {\n margin-left: -1px;\n}\n.input-group-btn > .btn:hover,\n.input-group-btn > .btn:focus,\n.input-group-btn > .btn:active {\n z-index: 2;\n}\n.input-group-btn:first-child > .btn,\n.input-group-btn:first-child > .btn-group {\n margin-right: -1px;\n}\n.input-group-btn:last-child > .btn,\n.input-group-btn:last-child > .btn-group {\n margin-left: -1px;\n}\n.nav {\n margin-bottom: 0;\n padding-left: 0;\n list-style: none;\n}\n.nav > li {\n position: relative;\n display: block;\n}\n.nav > li > a {\n position: relative;\n display: block;\n padding: 10px 15px;\n}\n.nav > li > a:hover,\n.nav > li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.nav > li.disabled > a {\n color: #777777;\n}\n.nav > li.disabled > a:hover,\n.nav > li.disabled > a:focus {\n color: #777777;\n text-decoration: none;\n background-color: transparent;\n cursor: not-allowed;\n}\n.nav .open > a,\n.nav .open > a:hover,\n.nav .open > a:focus {\n background-color: #eeeeee;\n border-color: #337ab7;\n}\n.nav .nav-divider {\n height: 1px;\n margin: 9px 0;\n overflow: hidden;\n background-color: #e5e5e5;\n}\n.nav > li > a > img {\n max-width: none;\n}\n.nav-tabs {\n border-bottom: 1px solid #dddddd;\n}\n.nav-tabs > li {\n float: left;\n margin-bottom: -1px;\n}\n.nav-tabs > li > a {\n margin-right: 2px;\n line-height: 1.42857143;\n border: 1px solid transparent;\n border-radius: 4px 4px 0 0;\n}\n.nav-tabs > li > a:hover {\n border-color: #eeeeee #eeeeee #dddddd;\n}\n.nav-tabs > li.active > a,\n.nav-tabs > li.active > a:hover,\n.nav-tabs > li.active > a:focus {\n color: #555555;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-bottom-color: transparent;\n cursor: default;\n}\n.nav-tabs.nav-justified {\n width: 100%;\n border-bottom: 0;\n}\n.nav-tabs.nav-justified > li {\n float: none;\n}\n.nav-tabs.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-tabs.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-tabs.nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs.nav-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs.nav-justified > .active > a,\n.nav-tabs.nav-justified > .active > a:hover,\n.nav-tabs.nav-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs.nav-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs.nav-justified > .active > a,\n .nav-tabs.nav-justified > .active > a:hover,\n .nav-tabs.nav-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.nav-pills > li {\n float: left;\n}\n.nav-pills > li > a {\n border-radius: 4px;\n}\n.nav-pills > li + li {\n margin-left: 2px;\n}\n.nav-pills > li.active > a,\n.nav-pills > li.active > a:hover,\n.nav-pills > li.active > a:focus {\n color: #ffffff;\n background-color: #337ab7;\n}\n.nav-stacked > li {\n float: none;\n}\n.nav-stacked > li + li {\n margin-top: 2px;\n margin-left: 0;\n}\n.nav-justified {\n width: 100%;\n}\n.nav-justified > li {\n float: none;\n}\n.nav-justified > li > a {\n text-align: center;\n margin-bottom: 5px;\n}\n.nav-justified > .dropdown .dropdown-menu {\n top: auto;\n left: auto;\n}\n@media (min-width: 768px) {\n .nav-justified > li {\n display: table-cell;\n width: 1%;\n }\n .nav-justified > li > a {\n margin-bottom: 0;\n }\n}\n.nav-tabs-justified {\n border-bottom: 0;\n}\n.nav-tabs-justified > li > a {\n margin-right: 0;\n border-radius: 4px;\n}\n.nav-tabs-justified > .active > a,\n.nav-tabs-justified > .active > a:hover,\n.nav-tabs-justified > .active > a:focus {\n border: 1px solid #dddddd;\n}\n@media (min-width: 768px) {\n .nav-tabs-justified > li > a {\n border-bottom: 1px solid #dddddd;\n border-radius: 4px 4px 0 0;\n }\n .nav-tabs-justified > .active > a,\n .nav-tabs-justified > .active > a:hover,\n .nav-tabs-justified > .active > a:focus {\n border-bottom-color: #ffffff;\n }\n}\n.tab-content > .tab-pane {\n display: none;\n visibility: hidden;\n}\n.tab-content > .active {\n display: block;\n visibility: visible;\n}\n.nav-tabs .dropdown-menu {\n margin-top: -1px;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar {\n position: relative;\n min-height: 50px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n}\n@media (min-width: 768px) {\n .navbar {\n border-radius: 4px;\n }\n}\n@media (min-width: 768px) {\n .navbar-header {\n float: left;\n }\n}\n.navbar-collapse {\n overflow-x: visible;\n padding-right: 15px;\n padding-left: 15px;\n border-top: 1px solid transparent;\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);\n -webkit-overflow-scrolling: touch;\n}\n.navbar-collapse.in {\n overflow-y: auto;\n}\n@media (min-width: 768px) {\n .navbar-collapse {\n width: auto;\n border-top: 0;\n box-shadow: none;\n }\n .navbar-collapse.collapse {\n display: block !important;\n visibility: visible !important;\n height: auto !important;\n padding-bottom: 0;\n overflow: visible !important;\n }\n .navbar-collapse.in {\n overflow-y: visible;\n }\n .navbar-fixed-top .navbar-collapse,\n .navbar-static-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n padding-left: 0;\n padding-right: 0;\n }\n}\n.navbar-fixed-top .navbar-collapse,\n.navbar-fixed-bottom .navbar-collapse {\n max-height: 340px;\n}\n@media (max-device-width: 480px) and (orientation: landscape) {\n .navbar-fixed-top .navbar-collapse,\n .navbar-fixed-bottom .navbar-collapse {\n max-height: 200px;\n }\n}\n.container > .navbar-header,\n.container-fluid > .navbar-header,\n.container > .navbar-collapse,\n.container-fluid > .navbar-collapse {\n margin-right: -15px;\n margin-left: -15px;\n}\n@media (min-width: 768px) {\n .container > .navbar-header,\n .container-fluid > .navbar-header,\n .container > .navbar-collapse,\n .container-fluid > .navbar-collapse {\n margin-right: 0;\n margin-left: 0;\n }\n}\n.navbar-static-top {\n z-index: 1000;\n border-width: 0 0 1px;\n}\n@media (min-width: 768px) {\n .navbar-static-top {\n border-radius: 0;\n }\n}\n.navbar-fixed-top,\n.navbar-fixed-bottom {\n position: fixed;\n right: 0;\n left: 0;\n z-index: 1030;\n}\n@media (min-width: 768px) {\n .navbar-fixed-top,\n .navbar-fixed-bottom {\n border-radius: 0;\n }\n}\n.navbar-fixed-top {\n top: 0;\n border-width: 0 0 1px;\n}\n.navbar-fixed-bottom {\n bottom: 0;\n margin-bottom: 0;\n border-width: 1px 0 0;\n}\n.navbar-brand {\n float: left;\n padding: 15px 15px;\n font-size: 18px;\n line-height: 20px;\n height: 50px;\n}\n.navbar-brand:hover,\n.navbar-brand:focus {\n text-decoration: none;\n}\n.navbar-brand > img {\n display: block;\n}\n@media (min-width: 768px) {\n .navbar > .container .navbar-brand,\n .navbar > .container-fluid .navbar-brand {\n margin-left: -15px;\n }\n}\n.navbar-toggle {\n position: relative;\n float: right;\n margin-right: 15px;\n padding: 9px 10px;\n margin-top: 8px;\n margin-bottom: 8px;\n background-color: transparent;\n background-image: none;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.navbar-toggle:focus {\n outline: 0;\n}\n.navbar-toggle .icon-bar {\n display: block;\n width: 22px;\n height: 2px;\n border-radius: 1px;\n}\n.navbar-toggle .icon-bar + .icon-bar {\n margin-top: 4px;\n}\n@media (min-width: 768px) {\n .navbar-toggle {\n display: none;\n }\n}\n.navbar-nav {\n margin: 7.5px -15px;\n}\n.navbar-nav > li > a {\n padding-top: 10px;\n padding-bottom: 10px;\n line-height: 20px;\n}\n@media (max-width: 767px) {\n .navbar-nav .open .dropdown-menu {\n position: static;\n float: none;\n width: auto;\n margin-top: 0;\n background-color: transparent;\n border: 0;\n box-shadow: none;\n }\n .navbar-nav .open .dropdown-menu > li > a,\n .navbar-nav .open .dropdown-menu .dropdown-header {\n padding: 5px 15px 5px 25px;\n }\n .navbar-nav .open .dropdown-menu > li > a {\n line-height: 20px;\n }\n .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-nav .open .dropdown-menu > li > a:focus {\n background-image: none;\n }\n}\n@media (min-width: 768px) {\n .navbar-nav {\n float: left;\n margin: 0;\n }\n .navbar-nav > li {\n float: left;\n }\n .navbar-nav > li > a {\n padding-top: 15px;\n padding-bottom: 15px;\n }\n}\n.navbar-form {\n margin-left: -15px;\n margin-right: -15px;\n padding: 10px 15px;\n border-top: 1px solid transparent;\n border-bottom: 1px solid transparent;\n -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);\n margin-top: 8px;\n margin-bottom: 8px;\n}\n@media (min-width: 768px) {\n .navbar-form .form-group {\n display: inline-block;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .form-control {\n display: inline-block;\n width: auto;\n vertical-align: middle;\n }\n .navbar-form .form-control-static {\n display: inline-block;\n }\n .navbar-form .input-group {\n display: inline-table;\n vertical-align: middle;\n }\n .navbar-form .input-group .input-group-addon,\n .navbar-form .input-group .input-group-btn,\n .navbar-form .input-group .form-control {\n width: auto;\n }\n .navbar-form .input-group > .form-control {\n width: 100%;\n }\n .navbar-form .control-label {\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio,\n .navbar-form .checkbox {\n display: inline-block;\n margin-top: 0;\n margin-bottom: 0;\n vertical-align: middle;\n }\n .navbar-form .radio label,\n .navbar-form .checkbox label {\n padding-left: 0;\n }\n .navbar-form .radio input[type=\"radio\"],\n .navbar-form .checkbox input[type=\"checkbox\"] {\n position: relative;\n margin-left: 0;\n }\n .navbar-form .has-feedback .form-control-feedback {\n top: 0;\n }\n}\n@media (max-width: 767px) {\n .navbar-form .form-group {\n margin-bottom: 5px;\n }\n .navbar-form .form-group:last-child {\n margin-bottom: 0;\n }\n}\n@media (min-width: 768px) {\n .navbar-form {\n width: auto;\n border: 0;\n margin-left: 0;\n margin-right: 0;\n padding-top: 0;\n padding-bottom: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n }\n}\n.navbar-nav > li > .dropdown-menu {\n margin-top: 0;\n border-top-right-radius: 0;\n border-top-left-radius: 0;\n}\n.navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {\n margin-bottom: 0;\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n border-bottom-right-radius: 0;\n border-bottom-left-radius: 0;\n}\n.navbar-btn {\n margin-top: 8px;\n margin-bottom: 8px;\n}\n.navbar-btn.btn-sm {\n margin-top: 10px;\n margin-bottom: 10px;\n}\n.navbar-btn.btn-xs {\n margin-top: 14px;\n margin-bottom: 14px;\n}\n.navbar-text {\n margin-top: 15px;\n margin-bottom: 15px;\n}\n@media (min-width: 768px) {\n .navbar-text {\n float: left;\n margin-left: 15px;\n margin-right: 15px;\n }\n}\n@media (min-width: 768px) {\n .navbar-left {\n float: left !important;\n }\n .navbar-right {\n float: right !important;\n margin-right: -15px;\n }\n .navbar-right ~ .navbar-right {\n margin-right: 0;\n }\n}\n.navbar-default {\n background-color: #f8f8f8;\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-brand {\n color: #777777;\n}\n.navbar-default .navbar-brand:hover,\n.navbar-default .navbar-brand:focus {\n color: #5e5e5e;\n background-color: transparent;\n}\n.navbar-default .navbar-text {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a {\n color: #777777;\n}\n.navbar-default .navbar-nav > li > a:hover,\n.navbar-default .navbar-nav > li > a:focus {\n color: #333333;\n background-color: transparent;\n}\n.navbar-default .navbar-nav > .active > a,\n.navbar-default .navbar-nav > .active > a:hover,\n.navbar-default .navbar-nav > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .disabled > a,\n.navbar-default .navbar-nav > .disabled > a:hover,\n.navbar-default .navbar-nav > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n}\n.navbar-default .navbar-toggle {\n border-color: #dddddd;\n}\n.navbar-default .navbar-toggle:hover,\n.navbar-default .navbar-toggle:focus {\n background-color: #dddddd;\n}\n.navbar-default .navbar-toggle .icon-bar {\n background-color: #888888;\n}\n.navbar-default .navbar-collapse,\n.navbar-default .navbar-form {\n border-color: #e7e7e7;\n}\n.navbar-default .navbar-nav > .open > a,\n.navbar-default .navbar-nav > .open > a:hover,\n.navbar-default .navbar-nav > .open > a:focus {\n background-color: #e7e7e7;\n color: #555555;\n}\n@media (max-width: 767px) {\n .navbar-default .navbar-nav .open .dropdown-menu > li > a {\n color: #777777;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #333333;\n background-color: transparent;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #555555;\n background-color: #e7e7e7;\n }\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #cccccc;\n background-color: transparent;\n }\n}\n.navbar-default .navbar-link {\n color: #777777;\n}\n.navbar-default .navbar-link:hover {\n color: #333333;\n}\n.navbar-default .btn-link {\n color: #777777;\n}\n.navbar-default .btn-link:hover,\n.navbar-default .btn-link:focus {\n color: #333333;\n}\n.navbar-default .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-default .btn-link:hover,\n.navbar-default .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-default .btn-link:focus {\n color: #cccccc;\n}\n.navbar-inverse {\n background-color: #222222;\n border-color: #080808;\n}\n.navbar-inverse .navbar-brand {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-brand:hover,\n.navbar-inverse .navbar-brand:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-text {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-nav > li > a:hover,\n.navbar-inverse .navbar-nav > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n}\n.navbar-inverse .navbar-nav > .active > a,\n.navbar-inverse .navbar-nav > .active > a:hover,\n.navbar-inverse .navbar-nav > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n}\n.navbar-inverse .navbar-nav > .disabled > a,\n.navbar-inverse .navbar-nav > .disabled > a:hover,\n.navbar-inverse .navbar-nav > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n}\n.navbar-inverse .navbar-toggle {\n border-color: #333333;\n}\n.navbar-inverse .navbar-toggle:hover,\n.navbar-inverse .navbar-toggle:focus {\n background-color: #333333;\n}\n.navbar-inverse .navbar-toggle .icon-bar {\n background-color: #ffffff;\n}\n.navbar-inverse .navbar-collapse,\n.navbar-inverse .navbar-form {\n border-color: #101010;\n}\n.navbar-inverse .navbar-nav > .open > a,\n.navbar-inverse .navbar-nav > .open > a:hover,\n.navbar-inverse .navbar-nav > .open > a:focus {\n background-color: #080808;\n color: #ffffff;\n}\n@media (max-width: 767px) {\n .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {\n border-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu .divider {\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {\n color: #9d9d9d;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {\n color: #ffffff;\n background-color: transparent;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {\n color: #ffffff;\n background-color: #080808;\n }\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,\n .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {\n color: #444444;\n background-color: transparent;\n }\n}\n.navbar-inverse .navbar-link {\n color: #9d9d9d;\n}\n.navbar-inverse .navbar-link:hover {\n color: #ffffff;\n}\n.navbar-inverse .btn-link {\n color: #9d9d9d;\n}\n.navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link:focus {\n color: #ffffff;\n}\n.navbar-inverse .btn-link[disabled]:hover,\nfieldset[disabled] .navbar-inverse .btn-link:hover,\n.navbar-inverse .btn-link[disabled]:focus,\nfieldset[disabled] .navbar-inverse .btn-link:focus {\n color: #444444;\n}\n.breadcrumb {\n padding: 8px 15px;\n margin-bottom: 20px;\n list-style: none;\n background-color: #f5f5f5;\n border-radius: 4px;\n}\n.breadcrumb > li {\n display: inline-block;\n}\n.breadcrumb > li + li:before {\n content: \"/\\00a0\";\n padding: 0 5px;\n color: #cccccc;\n}\n.breadcrumb > .active {\n color: #777777;\n}\n.pagination {\n display: inline-block;\n padding-left: 0;\n margin: 20px 0;\n border-radius: 4px;\n}\n.pagination > li {\n display: inline;\n}\n.pagination > li > a,\n.pagination > li > span {\n position: relative;\n float: left;\n padding: 6px 12px;\n line-height: 1.42857143;\n text-decoration: none;\n color: #337ab7;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n margin-left: -1px;\n}\n.pagination > li:first-child > a,\n.pagination > li:first-child > span {\n margin-left: 0;\n border-bottom-left-radius: 4px;\n border-top-left-radius: 4px;\n}\n.pagination > li:last-child > a,\n.pagination > li:last-child > span {\n border-bottom-right-radius: 4px;\n border-top-right-radius: 4px;\n}\n.pagination > li > a:hover,\n.pagination > li > span:hover,\n.pagination > li > a:focus,\n.pagination > li > span:focus {\n color: #23527c;\n background-color: #eeeeee;\n border-color: #dddddd;\n}\n.pagination > .active > a,\n.pagination > .active > span,\n.pagination > .active > a:hover,\n.pagination > .active > span:hover,\n.pagination > .active > a:focus,\n.pagination > .active > span:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n cursor: default;\n}\n.pagination > .disabled > span,\n.pagination > .disabled > span:hover,\n.pagination > .disabled > span:focus,\n.pagination > .disabled > a,\n.pagination > .disabled > a:hover,\n.pagination > .disabled > a:focus {\n color: #777777;\n background-color: #ffffff;\n border-color: #dddddd;\n cursor: not-allowed;\n}\n.pagination-lg > li > a,\n.pagination-lg > li > span {\n padding: 10px 16px;\n font-size: 18px;\n}\n.pagination-lg > li:first-child > a,\n.pagination-lg > li:first-child > span {\n border-bottom-left-radius: 6px;\n border-top-left-radius: 6px;\n}\n.pagination-lg > li:last-child > a,\n.pagination-lg > li:last-child > span {\n border-bottom-right-radius: 6px;\n border-top-right-radius: 6px;\n}\n.pagination-sm > li > a,\n.pagination-sm > li > span {\n padding: 5px 10px;\n font-size: 12px;\n}\n.pagination-sm > li:first-child > a,\n.pagination-sm > li:first-child > span {\n border-bottom-left-radius: 3px;\n border-top-left-radius: 3px;\n}\n.pagination-sm > li:last-child > a,\n.pagination-sm > li:last-child > span {\n border-bottom-right-radius: 3px;\n border-top-right-radius: 3px;\n}\n.pager {\n padding-left: 0;\n margin: 20px 0;\n list-style: none;\n text-align: center;\n}\n.pager li {\n display: inline;\n}\n.pager li > a,\n.pager li > span {\n display: inline-block;\n padding: 5px 14px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 15px;\n}\n.pager li > a:hover,\n.pager li > a:focus {\n text-decoration: none;\n background-color: #eeeeee;\n}\n.pager .next > a,\n.pager .next > span {\n float: right;\n}\n.pager .previous > a,\n.pager .previous > span {\n float: left;\n}\n.pager .disabled > a,\n.pager .disabled > a:hover,\n.pager .disabled > a:focus,\n.pager .disabled > span {\n color: #777777;\n background-color: #ffffff;\n cursor: not-allowed;\n}\n.label {\n display: inline;\n padding: .2em .6em .3em;\n font-size: 75%;\n font-weight: bold;\n line-height: 1;\n color: #ffffff;\n text-align: center;\n white-space: nowrap;\n vertical-align: baseline;\n border-radius: .25em;\n}\na.label:hover,\na.label:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.label:empty {\n display: none;\n}\n.btn .label {\n position: relative;\n top: -1px;\n}\n.label-default {\n background-color: #777777;\n}\n.label-default[href]:hover,\n.label-default[href]:focus {\n background-color: #5e5e5e;\n}\n.label-primary {\n background-color: #337ab7;\n}\n.label-primary[href]:hover,\n.label-primary[href]:focus {\n background-color: #286090;\n}\n.label-success {\n background-color: #5cb85c;\n}\n.label-success[href]:hover,\n.label-success[href]:focus {\n background-color: #449d44;\n}\n.label-info {\n background-color: #5bc0de;\n}\n.label-info[href]:hover,\n.label-info[href]:focus {\n background-color: #31b0d5;\n}\n.label-warning {\n background-color: #f0ad4e;\n}\n.label-warning[href]:hover,\n.label-warning[href]:focus {\n background-color: #ec971f;\n}\n.label-danger {\n background-color: #d9534f;\n}\n.label-danger[href]:hover,\n.label-danger[href]:focus {\n background-color: #c9302c;\n}\n.badge {\n display: inline-block;\n min-width: 10px;\n padding: 3px 7px;\n font-size: 12px;\n font-weight: bold;\n color: #ffffff;\n line-height: 1;\n vertical-align: baseline;\n white-space: nowrap;\n text-align: center;\n background-color: #777777;\n border-radius: 10px;\n}\n.badge:empty {\n display: none;\n}\n.btn .badge {\n position: relative;\n top: -1px;\n}\n.btn-xs .badge {\n top: 0;\n padding: 1px 5px;\n}\na.badge:hover,\na.badge:focus {\n color: #ffffff;\n text-decoration: none;\n cursor: pointer;\n}\n.list-group-item.active > .badge,\n.nav-pills > .active > a > .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.list-group-item > .badge {\n float: right;\n}\n.list-group-item > .badge + .badge {\n margin-right: 5px;\n}\n.nav-pills > li > a > .badge {\n margin-left: 3px;\n}\n.jumbotron {\n padding: 30px 15px;\n margin-bottom: 30px;\n color: inherit;\n background-color: #eeeeee;\n}\n.jumbotron h1,\n.jumbotron .h1 {\n color: inherit;\n}\n.jumbotron p {\n margin-bottom: 15px;\n font-size: 21px;\n font-weight: 200;\n}\n.jumbotron > hr {\n border-top-color: #d5d5d5;\n}\n.container .jumbotron,\n.container-fluid .jumbotron {\n border-radius: 6px;\n}\n.jumbotron .container {\n max-width: 100%;\n}\n@media screen and (min-width: 768px) {\n .jumbotron {\n padding: 48px 0;\n }\n .container .jumbotron,\n .container-fluid .jumbotron {\n padding-left: 60px;\n padding-right: 60px;\n }\n .jumbotron h1,\n .jumbotron .h1 {\n font-size: 63px;\n }\n}\n.thumbnail {\n display: block;\n padding: 4px;\n margin-bottom: 20px;\n line-height: 1.42857143;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n border-radius: 4px;\n -webkit-transition: border 0.2s ease-in-out;\n -o-transition: border 0.2s ease-in-out;\n transition: border 0.2s ease-in-out;\n}\n.thumbnail > img,\n.thumbnail a > img {\n margin-left: auto;\n margin-right: auto;\n}\na.thumbnail:hover,\na.thumbnail:focus,\na.thumbnail.active {\n border-color: #337ab7;\n}\n.thumbnail .caption {\n padding: 9px;\n color: #333333;\n}\n.alert {\n padding: 15px;\n margin-bottom: 20px;\n border: 1px solid transparent;\n border-radius: 4px;\n}\n.alert h4 {\n margin-top: 0;\n color: inherit;\n}\n.alert .alert-link {\n font-weight: bold;\n}\n.alert > p,\n.alert > ul {\n margin-bottom: 0;\n}\n.alert > p + p {\n margin-top: 5px;\n}\n.alert-dismissable,\n.alert-dismissible {\n padding-right: 35px;\n}\n.alert-dismissable .close,\n.alert-dismissible .close {\n position: relative;\n top: -2px;\n right: -21px;\n color: inherit;\n}\n.alert-success {\n background-color: #dff0d8;\n border-color: #d6e9c6;\n color: #3c763d;\n}\n.alert-success hr {\n border-top-color: #c9e2b3;\n}\n.alert-success .alert-link {\n color: #2b542c;\n}\n.alert-info {\n background-color: #d9edf7;\n border-color: #bce8f1;\n color: #31708f;\n}\n.alert-info hr {\n border-top-color: #a6e1ec;\n}\n.alert-info .alert-link {\n color: #245269;\n}\n.alert-warning {\n background-color: #fcf8e3;\n border-color: #faebcc;\n color: #8a6d3b;\n}\n.alert-warning hr {\n border-top-color: #f7e1b5;\n}\n.alert-warning .alert-link {\n color: #66512c;\n}\n.alert-danger {\n background-color: #f2dede;\n border-color: #ebccd1;\n color: #a94442;\n}\n.alert-danger hr {\n border-top-color: #e4b9c0;\n}\n.alert-danger .alert-link {\n color: #843534;\n}\n@-webkit-keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n@keyframes progress-bar-stripes {\n from {\n background-position: 40px 0;\n }\n to {\n background-position: 0 0;\n }\n}\n.progress {\n overflow: hidden;\n height: 20px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);\n}\n.progress-bar {\n float: left;\n width: 0%;\n height: 100%;\n font-size: 12px;\n line-height: 20px;\n color: #ffffff;\n text-align: center;\n background-color: #337ab7;\n -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);\n -webkit-transition: width 0.6s ease;\n -o-transition: width 0.6s ease;\n transition: width 0.6s ease;\n}\n.progress-striped .progress-bar,\n.progress-bar-striped {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-size: 40px 40px;\n}\n.progress.active .progress-bar,\n.progress-bar.active {\n -webkit-animation: progress-bar-stripes 2s linear infinite;\n -o-animation: progress-bar-stripes 2s linear infinite;\n animation: progress-bar-stripes 2s linear infinite;\n}\n.progress-bar-success {\n background-color: #5cb85c;\n}\n.progress-striped .progress-bar-success {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-info {\n background-color: #5bc0de;\n}\n.progress-striped .progress-bar-info {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-warning {\n background-color: #f0ad4e;\n}\n.progress-striped .progress-bar-warning {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.progress-bar-danger {\n background-color: #d9534f;\n}\n.progress-striped .progress-bar-danger {\n background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);\n}\n.media {\n margin-top: 15px;\n}\n.media:first-child {\n margin-top: 0;\n}\n.media,\n.media-body {\n zoom: 1;\n overflow: hidden;\n}\n.media-body {\n width: 10000px;\n}\n.media-object {\n display: block;\n}\n.media-right,\n.media > .pull-right {\n padding-left: 10px;\n}\n.media-left,\n.media > .pull-left {\n padding-right: 10px;\n}\n.media-left,\n.media-right,\n.media-body {\n display: table-cell;\n vertical-align: top;\n}\n.media-middle {\n vertical-align: middle;\n}\n.media-bottom {\n vertical-align: bottom;\n}\n.media-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.media-list {\n padding-left: 0;\n list-style: none;\n}\n.list-group {\n margin-bottom: 20px;\n padding-left: 0;\n}\n.list-group-item {\n position: relative;\n display: block;\n padding: 10px 15px;\n margin-bottom: -1px;\n background-color: #ffffff;\n border: 1px solid #dddddd;\n}\n.list-group-item:first-child {\n border-top-right-radius: 4px;\n border-top-left-radius: 4px;\n}\n.list-group-item:last-child {\n margin-bottom: 0;\n border-bottom-right-radius: 4px;\n border-bottom-left-radius: 4px;\n}\na.list-group-item {\n color: #555555;\n}\na.list-group-item .list-group-item-heading {\n color: #333333;\n}\na.list-group-item:hover,\na.list-group-item:focus {\n text-decoration: none;\n color: #555555;\n background-color: #f5f5f5;\n}\n.list-group-item.disabled,\n.list-group-item.disabled:hover,\n.list-group-item.disabled:focus {\n background-color: #eeeeee;\n color: #777777;\n cursor: not-allowed;\n}\n.list-group-item.disabled .list-group-item-heading,\n.list-group-item.disabled:hover .list-group-item-heading,\n.list-group-item.disabled:focus .list-group-item-heading {\n color: inherit;\n}\n.list-group-item.disabled .list-group-item-text,\n.list-group-item.disabled:hover .list-group-item-text,\n.list-group-item.disabled:focus .list-group-item-text {\n color: #777777;\n}\n.list-group-item.active,\n.list-group-item.active:hover,\n.list-group-item.active:focus {\n z-index: 2;\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.list-group-item.active .list-group-item-heading,\n.list-group-item.active:hover .list-group-item-heading,\n.list-group-item.active:focus .list-group-item-heading,\n.list-group-item.active .list-group-item-heading > small,\n.list-group-item.active:hover .list-group-item-heading > small,\n.list-group-item.active:focus .list-group-item-heading > small,\n.list-group-item.active .list-group-item-heading > .small,\n.list-group-item.active:hover .list-group-item-heading > .small,\n.list-group-item.active:focus .list-group-item-heading > .small {\n color: inherit;\n}\n.list-group-item.active .list-group-item-text,\n.list-group-item.active:hover .list-group-item-text,\n.list-group-item.active:focus .list-group-item-text {\n color: #c7ddef;\n}\n.list-group-item-success {\n color: #3c763d;\n background-color: #dff0d8;\n}\na.list-group-item-success {\n color: #3c763d;\n}\na.list-group-item-success .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-success:hover,\na.list-group-item-success:focus {\n color: #3c763d;\n background-color: #d0e9c6;\n}\na.list-group-item-success.active,\na.list-group-item-success.active:hover,\na.list-group-item-success.active:focus {\n color: #fff;\n background-color: #3c763d;\n border-color: #3c763d;\n}\n.list-group-item-info {\n color: #31708f;\n background-color: #d9edf7;\n}\na.list-group-item-info {\n color: #31708f;\n}\na.list-group-item-info .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-info:hover,\na.list-group-item-info:focus {\n color: #31708f;\n background-color: #c4e3f3;\n}\na.list-group-item-info.active,\na.list-group-item-info.active:hover,\na.list-group-item-info.active:focus {\n color: #fff;\n background-color: #31708f;\n border-color: #31708f;\n}\n.list-group-item-warning {\n color: #8a6d3b;\n background-color: #fcf8e3;\n}\na.list-group-item-warning {\n color: #8a6d3b;\n}\na.list-group-item-warning .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-warning:hover,\na.list-group-item-warning:focus {\n color: #8a6d3b;\n background-color: #faf2cc;\n}\na.list-group-item-warning.active,\na.list-group-item-warning.active:hover,\na.list-group-item-warning.active:focus {\n color: #fff;\n background-color: #8a6d3b;\n border-color: #8a6d3b;\n}\n.list-group-item-danger {\n color: #a94442;\n background-color: #f2dede;\n}\na.list-group-item-danger {\n color: #a94442;\n}\na.list-group-item-danger .list-group-item-heading {\n color: inherit;\n}\na.list-group-item-danger:hover,\na.list-group-item-danger:focus {\n color: #a94442;\n background-color: #ebcccc;\n}\na.list-group-item-danger.active,\na.list-group-item-danger.active:hover,\na.list-group-item-danger.active:focus {\n color: #fff;\n background-color: #a94442;\n border-color: #a94442;\n}\n.list-group-item-heading {\n margin-top: 0;\n margin-bottom: 5px;\n}\n.list-group-item-text {\n margin-bottom: 0;\n line-height: 1.3;\n}\n.panel {\n margin-bottom: 20px;\n background-color: #ffffff;\n border: 1px solid transparent;\n border-radius: 4px;\n -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.panel-body {\n padding: 15px;\n}\n.panel-heading {\n padding: 10px 15px;\n border-bottom: 1px solid transparent;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel-heading > .dropdown .dropdown-toggle {\n color: inherit;\n}\n.panel-title {\n margin-top: 0;\n margin-bottom: 0;\n font-size: 16px;\n color: inherit;\n}\n.panel-title > a,\n.panel-title > small,\n.panel-title > .small,\n.panel-title > small > a,\n.panel-title > .small > a {\n color: inherit;\n}\n.panel-footer {\n padding: 10px 15px;\n background-color: #f5f5f5;\n border-top: 1px solid #dddddd;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .list-group,\n.panel > .panel-collapse > .list-group {\n margin-bottom: 0;\n}\n.panel > .list-group .list-group-item,\n.panel > .panel-collapse > .list-group .list-group-item {\n border-width: 1px 0;\n border-radius: 0;\n}\n.panel > .list-group:first-child .list-group-item:first-child,\n.panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {\n border-top: 0;\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .list-group:last-child .list-group-item:last-child,\n.panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {\n border-bottom: 0;\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel-heading + .list-group .list-group-item:first-child {\n border-top-width: 0;\n}\n.list-group + .panel-footer {\n border-top-width: 0;\n}\n.panel > .table,\n.panel > .table-responsive > .table,\n.panel > .panel-collapse > .table {\n margin-bottom: 0;\n}\n.panel > .table caption,\n.panel > .table-responsive > .table caption,\n.panel > .panel-collapse > .table caption {\n padding-left: 15px;\n padding-right: 15px;\n}\n.panel > .table:first-child,\n.panel > .table-responsive:first-child > .table:first-child {\n border-top-right-radius: 3px;\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {\n border-top-left-radius: 3px;\n border-top-right-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {\n border-top-left-radius: 3px;\n}\n.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,\n.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,\n.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,\n.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {\n border-top-right-radius: 3px;\n}\n.panel > .table:last-child,\n.panel > .table-responsive:last-child > .table:last-child {\n border-bottom-right-radius: 3px;\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {\n border-bottom-left-radius: 3px;\n border-bottom-right-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {\n border-bottom-left-radius: 3px;\n}\n.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,\n.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,\n.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,\n.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {\n border-bottom-right-radius: 3px;\n}\n.panel > .panel-body + .table,\n.panel > .panel-body + .table-responsive,\n.panel > .table + .panel-body,\n.panel > .table-responsive + .panel-body {\n border-top: 1px solid #dddddd;\n}\n.panel > .table > tbody:first-child > tr:first-child th,\n.panel > .table > tbody:first-child > tr:first-child td {\n border-top: 0;\n}\n.panel > .table-bordered,\n.panel > .table-responsive > .table-bordered {\n border: 0;\n}\n.panel > .table-bordered > thead > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,\n.panel > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,\n.panel > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,\n.panel > .table-bordered > thead > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,\n.panel > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,\n.panel > .table-bordered > tfoot > tr > td:first-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {\n border-left: 0;\n}\n.panel > .table-bordered > thead > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,\n.panel > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,\n.panel > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,\n.panel > .table-bordered > thead > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,\n.panel > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,\n.panel > .table-bordered > tfoot > tr > td:last-child,\n.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {\n border-right: 0;\n}\n.panel > .table-bordered > thead > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,\n.panel > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,\n.panel > .table-bordered > thead > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,\n.panel > .table-bordered > tbody > tr:first-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {\n border-bottom: 0;\n}\n.panel > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,\n.panel > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,\n.panel > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,\n.panel > .table-bordered > tfoot > tr:last-child > th,\n.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {\n border-bottom: 0;\n}\n.panel > .table-responsive {\n border: 0;\n margin-bottom: 0;\n}\n.panel-group {\n margin-bottom: 20px;\n}\n.panel-group .panel {\n margin-bottom: 0;\n border-radius: 4px;\n}\n.panel-group .panel + .panel {\n margin-top: 5px;\n}\n.panel-group .panel-heading {\n border-bottom: 0;\n}\n.panel-group .panel-heading + .panel-collapse > .panel-body,\n.panel-group .panel-heading + .panel-collapse > .list-group {\n border-top: 1px solid #dddddd;\n}\n.panel-group .panel-footer {\n border-top: 0;\n}\n.panel-group .panel-footer + .panel-collapse .panel-body {\n border-bottom: 1px solid #dddddd;\n}\n.panel-default {\n border-color: #dddddd;\n}\n.panel-default > .panel-heading {\n color: #333333;\n background-color: #f5f5f5;\n border-color: #dddddd;\n}\n.panel-default > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #dddddd;\n}\n.panel-default > .panel-heading .badge {\n color: #f5f5f5;\n background-color: #333333;\n}\n.panel-default > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #dddddd;\n}\n.panel-primary {\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading {\n color: #ffffff;\n background-color: #337ab7;\n border-color: #337ab7;\n}\n.panel-primary > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #337ab7;\n}\n.panel-primary > .panel-heading .badge {\n color: #337ab7;\n background-color: #ffffff;\n}\n.panel-primary > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #337ab7;\n}\n.panel-success {\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading {\n color: #3c763d;\n background-color: #dff0d8;\n border-color: #d6e9c6;\n}\n.panel-success > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #d6e9c6;\n}\n.panel-success > .panel-heading .badge {\n color: #dff0d8;\n background-color: #3c763d;\n}\n.panel-success > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #d6e9c6;\n}\n.panel-info {\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading {\n color: #31708f;\n background-color: #d9edf7;\n border-color: #bce8f1;\n}\n.panel-info > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #bce8f1;\n}\n.panel-info > .panel-heading .badge {\n color: #d9edf7;\n background-color: #31708f;\n}\n.panel-info > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #bce8f1;\n}\n.panel-warning {\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading {\n color: #8a6d3b;\n background-color: #fcf8e3;\n border-color: #faebcc;\n}\n.panel-warning > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #faebcc;\n}\n.panel-warning > .panel-heading .badge {\n color: #fcf8e3;\n background-color: #8a6d3b;\n}\n.panel-warning > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #faebcc;\n}\n.panel-danger {\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading {\n color: #a94442;\n background-color: #f2dede;\n border-color: #ebccd1;\n}\n.panel-danger > .panel-heading + .panel-collapse > .panel-body {\n border-top-color: #ebccd1;\n}\n.panel-danger > .panel-heading .badge {\n color: #f2dede;\n background-color: #a94442;\n}\n.panel-danger > .panel-footer + .panel-collapse > .panel-body {\n border-bottom-color: #ebccd1;\n}\n.embed-responsive {\n position: relative;\n display: block;\n height: 0;\n padding: 0;\n overflow: hidden;\n}\n.embed-responsive .embed-responsive-item,\n.embed-responsive iframe,\n.embed-responsive embed,\n.embed-responsive object,\n.embed-responsive video {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n height: 100%;\n width: 100%;\n border: 0;\n}\n.embed-responsive.embed-responsive-16by9 {\n padding-bottom: 56.25%;\n}\n.embed-responsive.embed-responsive-4by3 {\n padding-bottom: 75%;\n}\n.well {\n min-height: 20px;\n padding: 19px;\n margin-bottom: 20px;\n background-color: #f5f5f5;\n border: 1px solid #e3e3e3;\n border-radius: 4px;\n -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);\n}\n.well blockquote {\n border-color: #ddd;\n border-color: rgba(0, 0, 0, 0.15);\n}\n.well-lg {\n padding: 24px;\n border-radius: 6px;\n}\n.well-sm {\n padding: 9px;\n border-radius: 3px;\n}\n.close {\n float: right;\n font-size: 21px;\n font-weight: bold;\n line-height: 1;\n color: #000000;\n text-shadow: 0 1px 0 #ffffff;\n opacity: 0.2;\n filter: alpha(opacity=20);\n}\n.close:hover,\n.close:focus {\n color: #000000;\n text-decoration: none;\n cursor: pointer;\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\nbutton.close {\n padding: 0;\n cursor: pointer;\n background: transparent;\n border: 0;\n -webkit-appearance: none;\n}\n.modal-open {\n overflow: hidden;\n}\n.modal {\n display: none;\n overflow: hidden;\n position: fixed;\n top: 0;\n right: 0;\n bottom: 0;\n left: 0;\n z-index: 1040;\n -webkit-overflow-scrolling: touch;\n outline: 0;\n}\n.modal.fade .modal-dialog {\n -webkit-transform: translate(0, -25%);\n -ms-transform: translate(0, -25%);\n -o-transform: translate(0, -25%);\n transform: translate(0, -25%);\n -webkit-transition: -webkit-transform 0.3s ease-out;\n -moz-transition: -moz-transform 0.3s ease-out;\n -o-transition: -o-transform 0.3s ease-out;\n transition: transform 0.3s ease-out;\n}\n.modal.in .modal-dialog {\n -webkit-transform: translate(0, 0);\n -ms-transform: translate(0, 0);\n -o-transform: translate(0, 0);\n transform: translate(0, 0);\n}\n.modal-open .modal {\n overflow-x: hidden;\n overflow-y: auto;\n}\n.modal-dialog {\n position: relative;\n width: auto;\n margin: 10px;\n}\n.modal-content {\n position: relative;\n background-color: #ffffff;\n border: 1px solid #999999;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);\n background-clip: padding-box;\n outline: 0;\n}\n.modal-backdrop {\n position: absolute;\n top: 0;\n right: 0;\n left: 0;\n background-color: #000000;\n}\n.modal-backdrop.fade {\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.modal-backdrop.in {\n opacity: 0.5;\n filter: alpha(opacity=50);\n}\n.modal-header {\n padding: 15px;\n border-bottom: 1px solid #e5e5e5;\n min-height: 16.42857143px;\n}\n.modal-header .close {\n margin-top: -2px;\n}\n.modal-title {\n margin: 0;\n line-height: 1.42857143;\n}\n.modal-body {\n position: relative;\n padding: 15px;\n}\n.modal-footer {\n padding: 15px;\n text-align: right;\n border-top: 1px solid #e5e5e5;\n}\n.modal-footer .btn + .btn {\n margin-left: 5px;\n margin-bottom: 0;\n}\n.modal-footer .btn-group .btn + .btn {\n margin-left: -1px;\n}\n.modal-footer .btn-block + .btn-block {\n margin-left: 0;\n}\n.modal-scrollbar-measure {\n position: absolute;\n top: -9999px;\n width: 50px;\n height: 50px;\n overflow: scroll;\n}\n@media (min-width: 768px) {\n .modal-dialog {\n width: 600px;\n margin: 30px auto;\n }\n .modal-content {\n -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);\n }\n .modal-sm {\n width: 300px;\n }\n}\n@media (min-width: 992px) {\n .modal-lg {\n width: 900px;\n }\n}\n.tooltip {\n position: absolute;\n z-index: 1070;\n display: block;\n visibility: visible;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 12px;\n font-weight: normal;\n line-height: 1.4;\n opacity: 0;\n filter: alpha(opacity=0);\n}\n.tooltip.in {\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.tooltip.top {\n margin-top: -3px;\n padding: 5px 0;\n}\n.tooltip.right {\n margin-left: 3px;\n padding: 0 5px;\n}\n.tooltip.bottom {\n margin-top: 3px;\n padding: 5px 0;\n}\n.tooltip.left {\n margin-left: -3px;\n padding: 0 5px;\n}\n.tooltip-inner {\n max-width: 200px;\n padding: 3px 8px;\n color: #ffffff;\n text-align: center;\n text-decoration: none;\n background-color: #000000;\n border-radius: 4px;\n}\n.tooltip-arrow {\n position: absolute;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.tooltip.top .tooltip-arrow {\n bottom: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-left .tooltip-arrow {\n bottom: 0;\n right: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.top-right .tooltip-arrow {\n bottom: 0;\n left: 5px;\n margin-bottom: -5px;\n border-width: 5px 5px 0;\n border-top-color: #000000;\n}\n.tooltip.right .tooltip-arrow {\n top: 50%;\n left: 0;\n margin-top: -5px;\n border-width: 5px 5px 5px 0;\n border-right-color: #000000;\n}\n.tooltip.left .tooltip-arrow {\n top: 50%;\n right: 0;\n margin-top: -5px;\n border-width: 5px 0 5px 5px;\n border-left-color: #000000;\n}\n.tooltip.bottom .tooltip-arrow {\n top: 0;\n left: 50%;\n margin-left: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-left .tooltip-arrow {\n top: 0;\n right: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.tooltip.bottom-right .tooltip-arrow {\n top: 0;\n left: 5px;\n margin-top: -5px;\n border-width: 0 5px 5px;\n border-bottom-color: #000000;\n}\n.popover {\n position: absolute;\n top: 0;\n left: 0;\n z-index: 1060;\n display: none;\n max-width: 276px;\n padding: 1px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n font-size: 14px;\n font-weight: normal;\n line-height: 1.42857143;\n text-align: left;\n background-color: #ffffff;\n background-clip: padding-box;\n border: 1px solid #cccccc;\n border: 1px solid rgba(0, 0, 0, 0.2);\n border-radius: 6px;\n -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);\n white-space: normal;\n}\n.popover.top {\n margin-top: -10px;\n}\n.popover.right {\n margin-left: 10px;\n}\n.popover.bottom {\n margin-top: 10px;\n}\n.popover.left {\n margin-left: -10px;\n}\n.popover-title {\n margin: 0;\n padding: 8px 14px;\n font-size: 14px;\n background-color: #f7f7f7;\n border-bottom: 1px solid #ebebeb;\n border-radius: 5px 5px 0 0;\n}\n.popover-content {\n padding: 9px 14px;\n}\n.popover > .arrow,\n.popover > .arrow:after {\n position: absolute;\n display: block;\n width: 0;\n height: 0;\n border-color: transparent;\n border-style: solid;\n}\n.popover > .arrow {\n border-width: 11px;\n}\n.popover > .arrow:after {\n border-width: 10px;\n content: \"\";\n}\n.popover.top > .arrow {\n left: 50%;\n margin-left: -11px;\n border-bottom-width: 0;\n border-top-color: #999999;\n border-top-color: rgba(0, 0, 0, 0.25);\n bottom: -11px;\n}\n.popover.top > .arrow:after {\n content: \" \";\n bottom: 1px;\n margin-left: -10px;\n border-bottom-width: 0;\n border-top-color: #ffffff;\n}\n.popover.right > .arrow {\n top: 50%;\n left: -11px;\n margin-top: -11px;\n border-left-width: 0;\n border-right-color: #999999;\n border-right-color: rgba(0, 0, 0, 0.25);\n}\n.popover.right > .arrow:after {\n content: \" \";\n left: 1px;\n bottom: -10px;\n border-left-width: 0;\n border-right-color: #ffffff;\n}\n.popover.bottom > .arrow {\n left: 50%;\n margin-left: -11px;\n border-top-width: 0;\n border-bottom-color: #999999;\n border-bottom-color: rgba(0, 0, 0, 0.25);\n top: -11px;\n}\n.popover.bottom > .arrow:after {\n content: \" \";\n top: 1px;\n margin-left: -10px;\n border-top-width: 0;\n border-bottom-color: #ffffff;\n}\n.popover.left > .arrow {\n top: 50%;\n right: -11px;\n margin-top: -11px;\n border-right-width: 0;\n border-left-color: #999999;\n border-left-color: rgba(0, 0, 0, 0.25);\n}\n.popover.left > .arrow:after {\n content: \" \";\n right: 1px;\n border-right-width: 0;\n border-left-color: #ffffff;\n bottom: -10px;\n}\n.carousel {\n position: relative;\n}\n.carousel-inner {\n position: relative;\n overflow: hidden;\n width: 100%;\n}\n.carousel-inner > .item {\n display: none;\n position: relative;\n -webkit-transition: 0.6s ease-in-out left;\n -o-transition: 0.6s ease-in-out left;\n transition: 0.6s ease-in-out left;\n}\n.carousel-inner > .item > img,\n.carousel-inner > .item > a > img {\n line-height: 1;\n}\n@media all and (transform-3d), (-webkit-transform-3d) {\n .carousel-inner > .item {\n -webkit-transition: -webkit-transform 0.6s ease-in-out;\n -moz-transition: -moz-transform 0.6s ease-in-out;\n -o-transition: -o-transform 0.6s ease-in-out;\n transition: transform 0.6s ease-in-out;\n -webkit-backface-visibility: hidden;\n -moz-backface-visibility: hidden;\n backface-visibility: hidden;\n -webkit-perspective: 1000;\n -moz-perspective: 1000;\n perspective: 1000;\n }\n .carousel-inner > .item.next,\n .carousel-inner > .item.active.right {\n -webkit-transform: translate3d(100%, 0, 0);\n transform: translate3d(100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.prev,\n .carousel-inner > .item.active.left {\n -webkit-transform: translate3d(-100%, 0, 0);\n transform: translate3d(-100%, 0, 0);\n left: 0;\n }\n .carousel-inner > .item.next.left,\n .carousel-inner > .item.prev.right,\n .carousel-inner > .item.active {\n -webkit-transform: translate3d(0, 0, 0);\n transform: translate3d(0, 0, 0);\n left: 0;\n }\n}\n.carousel-inner > .active,\n.carousel-inner > .next,\n.carousel-inner > .prev {\n display: block;\n}\n.carousel-inner > .active {\n left: 0;\n}\n.carousel-inner > .next,\n.carousel-inner > .prev {\n position: absolute;\n top: 0;\n width: 100%;\n}\n.carousel-inner > .next {\n left: 100%;\n}\n.carousel-inner > .prev {\n left: -100%;\n}\n.carousel-inner > .next.left,\n.carousel-inner > .prev.right {\n left: 0;\n}\n.carousel-inner > .active.left {\n left: -100%;\n}\n.carousel-inner > .active.right {\n left: 100%;\n}\n.carousel-control {\n position: absolute;\n top: 0;\n left: 0;\n bottom: 0;\n width: 15%;\n opacity: 0.5;\n filter: alpha(opacity=50);\n font-size: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-control.left {\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);\n}\n.carousel-control.right {\n left: auto;\n right: 0;\n background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);\n background-repeat: repeat-x;\n filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);\n}\n.carousel-control:hover,\n.carousel-control:focus {\n outline: 0;\n color: #ffffff;\n text-decoration: none;\n opacity: 0.9;\n filter: alpha(opacity=90);\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-left,\n.carousel-control .glyphicon-chevron-right {\n position: absolute;\n top: 50%;\n z-index: 5;\n display: inline-block;\n}\n.carousel-control .icon-prev,\n.carousel-control .glyphicon-chevron-left {\n left: 50%;\n margin-left: -10px;\n}\n.carousel-control .icon-next,\n.carousel-control .glyphicon-chevron-right {\n right: 50%;\n margin-right: -10px;\n}\n.carousel-control .icon-prev,\n.carousel-control .icon-next {\n width: 20px;\n height: 20px;\n margin-top: -10px;\n line-height: 1;\n font-family: serif;\n}\n.carousel-control .icon-prev:before {\n content: '\\2039';\n}\n.carousel-control .icon-next:before {\n content: '\\203a';\n}\n.carousel-indicators {\n position: absolute;\n bottom: 10px;\n left: 50%;\n z-index: 15;\n width: 60%;\n margin-left: -30%;\n padding-left: 0;\n list-style: none;\n text-align: center;\n}\n.carousel-indicators li {\n display: inline-block;\n width: 10px;\n height: 10px;\n margin: 1px;\n text-indent: -999px;\n border: 1px solid #ffffff;\n border-radius: 10px;\n cursor: pointer;\n background-color: #000 \\9;\n background-color: rgba(0, 0, 0, 0);\n}\n.carousel-indicators .active {\n margin: 0;\n width: 12px;\n height: 12px;\n background-color: #ffffff;\n}\n.carousel-caption {\n position: absolute;\n left: 15%;\n right: 15%;\n bottom: 20px;\n z-index: 10;\n padding-top: 20px;\n padding-bottom: 20px;\n color: #ffffff;\n text-align: center;\n text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);\n}\n.carousel-caption .btn {\n text-shadow: none;\n}\n@media screen and (min-width: 768px) {\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-prev,\n .carousel-control .icon-next {\n width: 30px;\n height: 30px;\n margin-top: -15px;\n font-size: 30px;\n }\n .carousel-control .glyphicon-chevron-left,\n .carousel-control .icon-prev {\n margin-left: -15px;\n }\n .carousel-control .glyphicon-chevron-right,\n .carousel-control .icon-next {\n margin-right: -15px;\n }\n .carousel-caption {\n left: 20%;\n right: 20%;\n padding-bottom: 30px;\n }\n .carousel-indicators {\n bottom: 20px;\n }\n}\n.clearfix:before,\n.clearfix:after,\n.dl-horizontal dd:before,\n.dl-horizontal dd:after,\n.container:before,\n.container:after,\n.container-fluid:before,\n.container-fluid:after,\n.row:before,\n.row:after,\n.form-horizontal .form-group:before,\n.form-horizontal .form-group:after,\n.btn-toolbar:before,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:before,\n.btn-group-vertical > .btn-group:after,\n.nav:before,\n.nav:after,\n.navbar:before,\n.navbar:after,\n.navbar-header:before,\n.navbar-header:after,\n.navbar-collapse:before,\n.navbar-collapse:after,\n.pager:before,\n.pager:after,\n.panel-body:before,\n.panel-body:after,\n.modal-footer:before,\n.modal-footer:after {\n content: \" \";\n display: table;\n}\n.clearfix:after,\n.dl-horizontal dd:after,\n.container:after,\n.container-fluid:after,\n.row:after,\n.form-horizontal .form-group:after,\n.btn-toolbar:after,\n.btn-group-vertical > .btn-group:after,\n.nav:after,\n.navbar:after,\n.navbar-header:after,\n.navbar-collapse:after,\n.pager:after,\n.panel-body:after,\n.modal-footer:after {\n clear: both;\n}\n.center-block {\n display: block;\n margin-left: auto;\n margin-right: auto;\n}\n.pull-right {\n float: right !important;\n}\n.pull-left {\n float: left !important;\n}\n.hide {\n display: none !important;\n}\n.show {\n display: block !important;\n}\n.invisible {\n visibility: hidden;\n}\n.text-hide {\n font: 0/0 a;\n color: transparent;\n text-shadow: none;\n background-color: transparent;\n border: 0;\n}\n.hidden {\n display: none !important;\n visibility: hidden !important;\n}\n.affix {\n position: fixed;\n}\n@-ms-viewport {\n width: device-width;\n}\n.visible-xs,\n.visible-sm,\n.visible-md,\n.visible-lg {\n display: none !important;\n}\n.visible-xs-block,\n.visible-xs-inline,\n.visible-xs-inline-block,\n.visible-sm-block,\n.visible-sm-inline,\n.visible-sm-inline-block,\n.visible-md-block,\n.visible-md-inline,\n.visible-md-inline-block,\n.visible-lg-block,\n.visible-lg-inline,\n.visible-lg-inline-block {\n display: none !important;\n}\n@media (max-width: 767px) {\n .visible-xs {\n display: block !important;\n }\n table.visible-xs {\n display: table;\n }\n tr.visible-xs {\n display: table-row !important;\n }\n th.visible-xs,\n td.visible-xs {\n display: table-cell !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-block {\n display: block !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline {\n display: inline !important;\n }\n}\n@media (max-width: 767px) {\n .visible-xs-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm {\n display: block !important;\n }\n table.visible-sm {\n display: table;\n }\n tr.visible-sm {\n display: table-row !important;\n }\n th.visible-sm,\n td.visible-sm {\n display: table-cell !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-block {\n display: block !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline {\n display: inline !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .visible-sm-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md {\n display: block !important;\n }\n table.visible-md {\n display: table;\n }\n tr.visible-md {\n display: table-row !important;\n }\n th.visible-md,\n td.visible-md {\n display: table-cell !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-block {\n display: block !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline {\n display: inline !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .visible-md-inline-block {\n display: inline-block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg {\n display: block !important;\n }\n table.visible-lg {\n display: table;\n }\n tr.visible-lg {\n display: table-row !important;\n }\n th.visible-lg,\n td.visible-lg {\n display: table-cell !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-block {\n display: block !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline {\n display: inline !important;\n }\n}\n@media (min-width: 1200px) {\n .visible-lg-inline-block {\n display: inline-block !important;\n }\n}\n@media (max-width: 767px) {\n .hidden-xs {\n display: none !important;\n }\n}\n@media (min-width: 768px) and (max-width: 991px) {\n .hidden-sm {\n display: none !important;\n }\n}\n@media (min-width: 992px) and (max-width: 1199px) {\n .hidden-md {\n display: none !important;\n }\n}\n@media (min-width: 1200px) {\n .hidden-lg {\n display: none !important;\n }\n}\n.visible-print {\n display: none !important;\n}\n@media print {\n .visible-print {\n display: block !important;\n }\n table.visible-print {\n display: table;\n }\n tr.visible-print {\n display: table-row !important;\n }\n th.visible-print,\n td.visible-print {\n display: table-cell !important;\n }\n}\n.visible-print-block {\n display: none !important;\n}\n@media print {\n .visible-print-block {\n display: block !important;\n }\n}\n.visible-print-inline {\n display: none !important;\n}\n@media print {\n .visible-print-inline {\n display: inline !important;\n }\n}\n.visible-print-inline-block {\n display: none !important;\n}\n@media print {\n .visible-print-inline-block {\n display: inline-block !important;\n }\n}\n@media print {\n .hidden-print {\n display: none !important;\n }\n}\n/*# sourceMappingURL=bootstrap.css.map */","/*! normalize.css v3.0.2 | MIT License | git.io/normalize */\n\n//\n// 1. Set default font family to sans-serif.\n// 2. Prevent iOS text size adjust after orientation change, without disabling\n// user zoom.\n//\n\nhtml {\n font-family: sans-serif; // 1\n -ms-text-size-adjust: 100%; // 2\n -webkit-text-size-adjust: 100%; // 2\n}\n\n//\n// Remove default margin.\n//\n\nbody {\n margin: 0;\n}\n\n// HTML5 display definitions\n// ==========================================================================\n\n//\n// Correct `block` display not defined for any HTML5 element in IE 8/9.\n// Correct `block` display not defined for `details` or `summary` in IE 10/11\n// and Firefox.\n// Correct `block` display not defined for `main` in IE 11.\n//\n\narticle,\naside,\ndetails,\nfigcaption,\nfigure,\nfooter,\nheader,\nhgroup,\nmain,\nmenu,\nnav,\nsection,\nsummary {\n display: block;\n}\n\n//\n// 1. Correct `inline-block` display not defined in IE 8/9.\n// 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.\n//\n\naudio,\ncanvas,\nprogress,\nvideo {\n display: inline-block; // 1\n vertical-align: baseline; // 2\n}\n\n//\n// Prevent modern browsers from displaying `audio` without controls.\n// Remove excess height in iOS 5 devices.\n//\n\naudio:not([controls]) {\n display: none;\n height: 0;\n}\n\n//\n// Address `[hidden]` styling not present in IE 8/9/10.\n// Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.\n//\n\n[hidden],\ntemplate {\n display: none;\n}\n\n// Links\n// ==========================================================================\n\n//\n// Remove the gray background color from active links in IE 10.\n//\n\na {\n background-color: transparent;\n}\n\n//\n// Improve readability when focused and also mouse hovered in all browsers.\n//\n\na:active,\na:hover {\n outline: 0;\n}\n\n// Text-level semantics\n// ==========================================================================\n\n//\n// Address styling not present in IE 8/9/10/11, Safari, and Chrome.\n//\n\nabbr[title] {\n border-bottom: 1px dotted;\n}\n\n//\n// Address style set to `bolder` in Firefox 4+, Safari, and Chrome.\n//\n\nb,\nstrong {\n font-weight: bold;\n}\n\n//\n// Address styling not present in Safari and Chrome.\n//\n\ndfn {\n font-style: italic;\n}\n\n//\n// Address variable `h1` font-size and margin within `section` and `article`\n// contexts in Firefox 4+, Safari, and Chrome.\n//\n\nh1 {\n font-size: 2em;\n margin: 0.67em 0;\n}\n\n//\n// Address styling not present in IE 8/9.\n//\n\nmark {\n background: #ff0;\n color: #000;\n}\n\n//\n// Address inconsistent and variable font size in all browsers.\n//\n\nsmall {\n font-size: 80%;\n}\n\n//\n// Prevent `sub` and `sup` affecting `line-height` in all browsers.\n//\n\nsub,\nsup {\n font-size: 75%;\n line-height: 0;\n position: relative;\n vertical-align: baseline;\n}\n\nsup {\n top: -0.5em;\n}\n\nsub {\n bottom: -0.25em;\n}\n\n// Embedded content\n// ==========================================================================\n\n//\n// Remove border when inside `a` element in IE 8/9/10.\n//\n\nimg {\n border: 0;\n}\n\n//\n// Correct overflow not hidden in IE 9/10/11.\n//\n\nsvg:not(:root) {\n overflow: hidden;\n}\n\n// Grouping content\n// ==========================================================================\n\n//\n// Address margin not present in IE 8/9 and Safari.\n//\n\nfigure {\n margin: 1em 40px;\n}\n\n//\n// Address differences between Firefox and other browsers.\n//\n\nhr {\n -moz-box-sizing: content-box;\n box-sizing: content-box;\n height: 0;\n}\n\n//\n// Contain overflow in all browsers.\n//\n\npre {\n overflow: auto;\n}\n\n//\n// Address odd `em`-unit font size rendering in all browsers.\n//\n\ncode,\nkbd,\npre,\nsamp {\n font-family: monospace, monospace;\n font-size: 1em;\n}\n\n// Forms\n// ==========================================================================\n\n//\n// Known limitation: by default, Chrome and Safari on OS X allow very limited\n// styling of `select`, unless a `border` property is set.\n//\n\n//\n// 1. Correct color not being inherited.\n// Known issue: affects color of disabled elements.\n// 2. Correct font properties not being inherited.\n// 3. Address margins set differently in Firefox 4+, Safari, and Chrome.\n//\n\nbutton,\ninput,\noptgroup,\nselect,\ntextarea {\n color: inherit; // 1\n font: inherit; // 2\n margin: 0; // 3\n}\n\n//\n// Address `overflow` set to `hidden` in IE 8/9/10/11.\n//\n\nbutton {\n overflow: visible;\n}\n\n//\n// Address inconsistent `text-transform` inheritance for `button` and `select`.\n// All other form control elements do not inherit `text-transform` values.\n// Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.\n// Correct `select` style inheritance in Firefox.\n//\n\nbutton,\nselect {\n text-transform: none;\n}\n\n//\n// 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`\n// and `video` controls.\n// 2. Correct inability to style clickable `input` types in iOS.\n// 3. Improve usability and consistency of cursor style between image-type\n// `input` and others.\n//\n\nbutton,\nhtml input[type=\"button\"], // 1\ninput[type=\"reset\"],\ninput[type=\"submit\"] {\n -webkit-appearance: button; // 2\n cursor: pointer; // 3\n}\n\n//\n// Re-set default cursor for disabled elements.\n//\n\nbutton[disabled],\nhtml input[disabled] {\n cursor: default;\n}\n\n//\n// Remove inner padding and border in Firefox 4+.\n//\n\nbutton::-moz-focus-inner,\ninput::-moz-focus-inner {\n border: 0;\n padding: 0;\n}\n\n//\n// Address Firefox 4+ setting `line-height` on `input` using `!important` in\n// the UA stylesheet.\n//\n\ninput {\n line-height: normal;\n}\n\n//\n// It's recommended that you don't attempt to style these elements.\n// Firefox's implementation doesn't respect box-sizing, padding, or width.\n//\n// 1. Address box sizing set to `content-box` in IE 8/9/10.\n// 2. Remove excess padding in IE 8/9/10.\n//\n\ninput[type=\"checkbox\"],\ninput[type=\"radio\"] {\n box-sizing: border-box; // 1\n padding: 0; // 2\n}\n\n//\n// Fix the cursor style for Chrome's increment/decrement buttons. For certain\n// `font-size` values of the `input`, it causes the cursor style of the\n// decrement button to change from `default` to `text`.\n//\n\ninput[type=\"number\"]::-webkit-inner-spin-button,\ninput[type=\"number\"]::-webkit-outer-spin-button {\n height: auto;\n}\n\n//\n// 1. Address `appearance` set to `searchfield` in Safari and Chrome.\n// 2. Address `box-sizing` set to `border-box` in Safari and Chrome\n// (include `-moz` to future-proof).\n//\n\ninput[type=\"search\"] {\n -webkit-appearance: textfield; // 1\n -moz-box-sizing: content-box;\n -webkit-box-sizing: content-box; // 2\n box-sizing: content-box;\n}\n\n//\n// Remove inner padding and search cancel button in Safari and Chrome on OS X.\n// Safari (but not Chrome) clips the cancel button when the search input has\n// padding (and `textfield` appearance).\n//\n\ninput[type=\"search\"]::-webkit-search-cancel-button,\ninput[type=\"search\"]::-webkit-search-decoration {\n -webkit-appearance: none;\n}\n\n//\n// Define consistent border, margin, and padding.\n//\n\nfieldset {\n border: 1px solid #c0c0c0;\n margin: 0 2px;\n padding: 0.35em 0.625em 0.75em;\n}\n\n//\n// 1. Correct `color` not being inherited in IE 8/9/10/11.\n// 2. Remove padding so people aren't caught out if they zero out fieldsets.\n//\n\nlegend {\n border: 0; // 1\n padding: 0; // 2\n}\n\n//\n// Remove default vertical scrollbar in IE 8/9/10/11.\n//\n\ntextarea {\n overflow: auto;\n}\n\n//\n// Don't inherit the `font-weight` (applied by a rule above).\n// NOTE: the default cannot safely be changed in Chrome and Safari on OS X.\n//\n\noptgroup {\n font-weight: bold;\n}\n\n// Tables\n// ==========================================================================\n\n//\n// Remove most spacing between table cells.\n//\n\ntable {\n border-collapse: collapse;\n border-spacing: 0;\n}\n\ntd,\nth {\n padding: 0;\n}\n","/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */\n\n// ==========================================================================\n// Print styles.\n// Inlined to avoid the additional HTTP request: h5bp.com/r\n// ==========================================================================\n\n@media print {\n *,\n *:before,\n *:after {\n background: transparent !important;\n color: #000 !important; // Black prints faster: h5bp.com/s\n box-shadow: none !important;\n text-shadow: none !important;\n }\n\n a,\n a:visited {\n text-decoration: underline;\n }\n\n a[href]:after {\n content: \" (\" attr(href) \")\";\n }\n\n abbr[title]:after {\n content: \" (\" attr(title) \")\";\n }\n\n // Don't show links that are fragment identifiers,\n // or use the `javascript:` pseudo protocol\n a[href^=\"#\"]:after,\n a[href^=\"javascript:\"]:after {\n content: \"\";\n }\n\n pre,\n blockquote {\n border: 1px solid #999;\n page-break-inside: avoid;\n }\n\n thead {\n display: table-header-group; // h5bp.com/t\n }\n\n tr,\n img {\n page-break-inside: avoid;\n }\n\n img {\n max-width: 100% !important;\n }\n\n p,\n h2,\n h3 {\n orphans: 3;\n widows: 3;\n }\n\n h2,\n h3 {\n page-break-after: avoid;\n }\n\n // Bootstrap specific changes start\n //\n // Chrome (OSX) fix for https://github.com/twbs/bootstrap/issues/11245\n // Once fixed, we can just straight up remove this.\n select {\n background: #fff !important;\n }\n\n // Bootstrap components\n .navbar {\n display: none;\n }\n .btn,\n .dropup > .btn {\n > .caret {\n border-top-color: #000 !important;\n }\n }\n .label {\n border: 1px solid #000;\n }\n\n .table {\n border-collapse: collapse !important;\n\n td,\n th {\n background-color: #fff !important;\n }\n }\n .table-bordered {\n th,\n td {\n border: 1px solid #ddd !important;\n }\n }\n\n // Bootstrap specific changes end\n}\n","//\n// Glyphicons for Bootstrap\n//\n// Since icons are fonts, they can be placed anywhere text is placed and are\n// thus automatically sized to match the surrounding child. To use, create an\n// inline element with the appropriate classes, like so:\n//\n// Star\n\n// Import the fonts\n@font-face {\n font-family: 'Glyphicons Halflings';\n src: url('@{icon-font-path}@{icon-font-name}.eot');\n src: url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),\n url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),\n url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),\n url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),\n url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');\n}\n\n// Catchall baseclass\n.glyphicon {\n position: relative;\n top: 1px;\n display: inline-block;\n font-family: 'Glyphicons Halflings';\n font-style: normal;\n font-weight: normal;\n line-height: 1;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n}\n\n// Individual icons\n.glyphicon-asterisk { &:before { content: \"\\2a\"; } }\n.glyphicon-plus { &:before { content: \"\\2b\"; } }\n.glyphicon-euro,\n.glyphicon-eur { &:before { content: \"\\20ac\"; } }\n.glyphicon-minus { &:before { content: \"\\2212\"; } }\n.glyphicon-cloud { &:before { content: \"\\2601\"; } }\n.glyphicon-envelope { &:before { content: \"\\2709\"; } }\n.glyphicon-pencil { &:before { content: \"\\270f\"; } }\n.glyphicon-glass { &:before { content: \"\\e001\"; } }\n.glyphicon-music { &:before { content: \"\\e002\"; } }\n.glyphicon-search { &:before { content: \"\\e003\"; } }\n.glyphicon-heart { &:before { content: \"\\e005\"; } }\n.glyphicon-star { &:before { content: \"\\e006\"; } }\n.glyphicon-star-empty { &:before { content: \"\\e007\"; } }\n.glyphicon-user { &:before { content: \"\\e008\"; } }\n.glyphicon-film { &:before { content: \"\\e009\"; } }\n.glyphicon-th-large { &:before { content: \"\\e010\"; } }\n.glyphicon-th { &:before { content: \"\\e011\"; } }\n.glyphicon-th-list { &:before { content: \"\\e012\"; } }\n.glyphicon-ok { &:before { content: \"\\e013\"; } }\n.glyphicon-remove { &:before { content: \"\\e014\"; } }\n.glyphicon-zoom-in { &:before { content: \"\\e015\"; } }\n.glyphicon-zoom-out { &:before { content: \"\\e016\"; } }\n.glyphicon-off { &:before { content: \"\\e017\"; } }\n.glyphicon-signal { &:before { content: \"\\e018\"; } }\n.glyphicon-cog { &:before { content: \"\\e019\"; } }\n.glyphicon-trash { &:before { content: \"\\e020\"; } }\n.glyphicon-home { &:before { content: \"\\e021\"; } }\n.glyphicon-file { &:before { content: \"\\e022\"; } }\n.glyphicon-time { &:before { content: \"\\e023\"; } }\n.glyphicon-road { &:before { content: \"\\e024\"; } }\n.glyphicon-download-alt { &:before { content: \"\\e025\"; } }\n.glyphicon-download { &:before { content: \"\\e026\"; } }\n.glyphicon-upload { &:before { content: \"\\e027\"; } }\n.glyphicon-inbox { &:before { content: \"\\e028\"; } }\n.glyphicon-play-circle { &:before { content: \"\\e029\"; } }\n.glyphicon-repeat { &:before { content: \"\\e030\"; } }\n.glyphicon-refresh { &:before { content: \"\\e031\"; } }\n.glyphicon-list-alt { &:before { content: \"\\e032\"; } }\n.glyphicon-lock { &:before { content: \"\\e033\"; } }\n.glyphicon-flag { &:before { content: \"\\e034\"; } }\n.glyphicon-headphones { &:before { content: \"\\e035\"; } }\n.glyphicon-volume-off { &:before { content: \"\\e036\"; } }\n.glyphicon-volume-down { &:before { content: \"\\e037\"; } }\n.glyphicon-volume-up { &:before { content: \"\\e038\"; } }\n.glyphicon-qrcode { &:before { content: \"\\e039\"; } }\n.glyphicon-barcode { &:before { content: \"\\e040\"; } }\n.glyphicon-tag { &:before { content: \"\\e041\"; } }\n.glyphicon-tags { &:before { content: \"\\e042\"; } }\n.glyphicon-book { &:before { content: \"\\e043\"; } }\n.glyphicon-bookmark { &:before { content: \"\\e044\"; } }\n.glyphicon-print { &:before { content: \"\\e045\"; } }\n.glyphicon-camera { &:before { content: \"\\e046\"; } }\n.glyphicon-font { &:before { content: \"\\e047\"; } }\n.glyphicon-bold { &:before { content: \"\\e048\"; } }\n.glyphicon-italic { &:before { content: \"\\e049\"; } }\n.glyphicon-text-height { &:before { content: \"\\e050\"; } }\n.glyphicon-text-width { &:before { content: \"\\e051\"; } }\n.glyphicon-align-left { &:before { content: \"\\e052\"; } }\n.glyphicon-align-center { &:before { content: \"\\e053\"; } }\n.glyphicon-align-right { &:before { content: \"\\e054\"; } }\n.glyphicon-align-justify { &:before { content: \"\\e055\"; } }\n.glyphicon-list { &:before { content: \"\\e056\"; } }\n.glyphicon-indent-left { &:before { content: \"\\e057\"; } }\n.glyphicon-indent-right { &:before { content: \"\\e058\"; } }\n.glyphicon-facetime-video { &:before { content: \"\\e059\"; } }\n.glyphicon-picture { &:before { content: \"\\e060\"; } }\n.glyphicon-map-marker { &:before { content: \"\\e062\"; } }\n.glyphicon-adjust { &:before { content: \"\\e063\"; } }\n.glyphicon-tint { &:before { content: \"\\e064\"; } }\n.glyphicon-edit { &:before { content: \"\\e065\"; } }\n.glyphicon-share { &:before { content: \"\\e066\"; } }\n.glyphicon-check { &:before { content: \"\\e067\"; } }\n.glyphicon-move { &:before { content: \"\\e068\"; } }\n.glyphicon-step-backward { &:before { content: \"\\e069\"; } }\n.glyphicon-fast-backward { &:before { content: \"\\e070\"; } }\n.glyphicon-backward { &:before { content: \"\\e071\"; } }\n.glyphicon-play { &:before { content: \"\\e072\"; } }\n.glyphicon-pause { &:before { content: \"\\e073\"; } }\n.glyphicon-stop { &:before { content: \"\\e074\"; } }\n.glyphicon-forward { &:before { content: \"\\e075\"; } }\n.glyphicon-fast-forward { &:before { content: \"\\e076\"; } }\n.glyphicon-step-forward { &:before { content: \"\\e077\"; } }\n.glyphicon-eject { &:before { content: \"\\e078\"; } }\n.glyphicon-chevron-left { &:before { content: \"\\e079\"; } }\n.glyphicon-chevron-right { &:before { content: \"\\e080\"; } }\n.glyphicon-plus-sign { &:before { content: \"\\e081\"; } }\n.glyphicon-minus-sign { &:before { content: \"\\e082\"; } }\n.glyphicon-remove-sign { &:before { content: \"\\e083\"; } }\n.glyphicon-ok-sign { &:before { content: \"\\e084\"; } }\n.glyphicon-question-sign { &:before { content: \"\\e085\"; } }\n.glyphicon-info-sign { &:before { content: \"\\e086\"; } }\n.glyphicon-screenshot { &:before { content: \"\\e087\"; } }\n.glyphicon-remove-circle { &:before { content: \"\\e088\"; } }\n.glyphicon-ok-circle { &:before { content: \"\\e089\"; } }\n.glyphicon-ban-circle { &:before { content: \"\\e090\"; } }\n.glyphicon-arrow-left { &:before { content: \"\\e091\"; } }\n.glyphicon-arrow-right { &:before { content: \"\\e092\"; } }\n.glyphicon-arrow-up { &:before { content: \"\\e093\"; } }\n.glyphicon-arrow-down { &:before { content: \"\\e094\"; } }\n.glyphicon-share-alt { &:before { content: \"\\e095\"; } }\n.glyphicon-resize-full { &:before { content: \"\\e096\"; } }\n.glyphicon-resize-small { &:before { content: \"\\e097\"; } }\n.glyphicon-exclamation-sign { &:before { content: \"\\e101\"; } }\n.glyphicon-gift { &:before { content: \"\\e102\"; } }\n.glyphicon-leaf { &:before { content: \"\\e103\"; } }\n.glyphicon-fire { &:before { content: \"\\e104\"; } }\n.glyphicon-eye-open { &:before { content: \"\\e105\"; } }\n.glyphicon-eye-close { &:before { content: \"\\e106\"; } }\n.glyphicon-warning-sign { &:before { content: \"\\e107\"; } }\n.glyphicon-plane { &:before { content: \"\\e108\"; } }\n.glyphicon-calendar { &:before { content: \"\\e109\"; } }\n.glyphicon-random { &:before { content: \"\\e110\"; } }\n.glyphicon-comment { &:before { content: \"\\e111\"; } }\n.glyphicon-magnet { &:before { content: \"\\e112\"; } }\n.glyphicon-chevron-up { &:before { content: \"\\e113\"; } }\n.glyphicon-chevron-down { &:before { content: \"\\e114\"; } }\n.glyphicon-retweet { &:before { content: \"\\e115\"; } }\n.glyphicon-shopping-cart { &:before { content: \"\\e116\"; } }\n.glyphicon-folder-close { &:before { content: \"\\e117\"; } }\n.glyphicon-folder-open { &:before { content: \"\\e118\"; } }\n.glyphicon-resize-vertical { &:before { content: \"\\e119\"; } }\n.glyphicon-resize-horizontal { &:before { content: \"\\e120\"; } }\n.glyphicon-hdd { &:before { content: \"\\e121\"; } }\n.glyphicon-bullhorn { &:before { content: \"\\e122\"; } }\n.glyphicon-bell { &:before { content: \"\\e123\"; } }\n.glyphicon-certificate { &:before { content: \"\\e124\"; } }\n.glyphicon-thumbs-up { &:before { content: \"\\e125\"; } }\n.glyphicon-thumbs-down { &:before { content: \"\\e126\"; } }\n.glyphicon-hand-right { &:before { content: \"\\e127\"; } }\n.glyphicon-hand-left { &:before { content: \"\\e128\"; } }\n.glyphicon-hand-up { &:before { content: \"\\e129\"; } }\n.glyphicon-hand-down { &:before { content: \"\\e130\"; } }\n.glyphicon-circle-arrow-right { &:before { content: \"\\e131\"; } }\n.glyphicon-circle-arrow-left { &:before { content: \"\\e132\"; } }\n.glyphicon-circle-arrow-up { &:before { content: \"\\e133\"; } }\n.glyphicon-circle-arrow-down { &:before { content: \"\\e134\"; } }\n.glyphicon-globe { &:before { content: \"\\e135\"; } }\n.glyphicon-wrench { &:before { content: \"\\e136\"; } }\n.glyphicon-tasks { &:before { content: \"\\e137\"; } }\n.glyphicon-filter { &:before { content: \"\\e138\"; } }\n.glyphicon-briefcase { &:before { content: \"\\e139\"; } }\n.glyphicon-fullscreen { &:before { content: \"\\e140\"; } }\n.glyphicon-dashboard { &:before { content: \"\\e141\"; } }\n.glyphicon-paperclip { &:before { content: \"\\e142\"; } }\n.glyphicon-heart-empty { &:before { content: \"\\e143\"; } }\n.glyphicon-link { &:before { content: \"\\e144\"; } }\n.glyphicon-phone { &:before { content: \"\\e145\"; } }\n.glyphicon-pushpin { &:before { content: \"\\e146\"; } }\n.glyphicon-usd { &:before { content: \"\\e148\"; } }\n.glyphicon-gbp { &:before { content: \"\\e149\"; } }\n.glyphicon-sort { &:before { content: \"\\e150\"; } }\n.glyphicon-sort-by-alphabet { &:before { content: \"\\e151\"; } }\n.glyphicon-sort-by-alphabet-alt { &:before { content: \"\\e152\"; } }\n.glyphicon-sort-by-order { &:before { content: \"\\e153\"; } }\n.glyphicon-sort-by-order-alt { &:before { content: \"\\e154\"; } }\n.glyphicon-sort-by-attributes { &:before { content: \"\\e155\"; } }\n.glyphicon-sort-by-attributes-alt { &:before { content: \"\\e156\"; } }\n.glyphicon-unchecked { &:before { content: \"\\e157\"; } }\n.glyphicon-expand { &:before { content: \"\\e158\"; } }\n.glyphicon-collapse-down { &:before { content: \"\\e159\"; } }\n.glyphicon-collapse-up { &:before { content: \"\\e160\"; } }\n.glyphicon-log-in { &:before { content: \"\\e161\"; } }\n.glyphicon-flash { &:before { content: \"\\e162\"; } }\n.glyphicon-log-out { &:before { content: \"\\e163\"; } }\n.glyphicon-new-window { &:before { content: \"\\e164\"; } }\n.glyphicon-record { &:before { content: \"\\e165\"; } }\n.glyphicon-save { &:before { content: \"\\e166\"; } }\n.glyphicon-open { &:before { content: \"\\e167\"; } }\n.glyphicon-saved { &:before { content: \"\\e168\"; } }\n.glyphicon-import { &:before { content: \"\\e169\"; } }\n.glyphicon-export { &:before { content: \"\\e170\"; } }\n.glyphicon-send { &:before { content: \"\\e171\"; } }\n.glyphicon-floppy-disk { &:before { content: \"\\e172\"; } }\n.glyphicon-floppy-saved { &:before { content: \"\\e173\"; } }\n.glyphicon-floppy-remove { &:before { content: \"\\e174\"; } }\n.glyphicon-floppy-save { &:before { content: \"\\e175\"; } }\n.glyphicon-floppy-open { &:before { content: \"\\e176\"; } }\n.glyphicon-credit-card { &:before { content: \"\\e177\"; } }\n.glyphicon-transfer { &:before { content: \"\\e178\"; } }\n.glyphicon-cutlery { &:before { content: \"\\e179\"; } }\n.glyphicon-header { &:before { content: \"\\e180\"; } }\n.glyphicon-compressed { &:before { content: \"\\e181\"; } }\n.glyphicon-earphone { &:before { content: \"\\e182\"; } }\n.glyphicon-phone-alt { &:before { content: \"\\e183\"; } }\n.glyphicon-tower { &:before { content: \"\\e184\"; } }\n.glyphicon-stats { &:before { content: \"\\e185\"; } }\n.glyphicon-sd-video { &:before { content: \"\\e186\"; } }\n.glyphicon-hd-video { &:before { content: \"\\e187\"; } }\n.glyphicon-subtitles { &:before { content: \"\\e188\"; } }\n.glyphicon-sound-stereo { &:before { content: \"\\e189\"; } }\n.glyphicon-sound-dolby { &:before { content: \"\\e190\"; } }\n.glyphicon-sound-5-1 { &:before { content: \"\\e191\"; } }\n.glyphicon-sound-6-1 { &:before { content: \"\\e192\"; } }\n.glyphicon-sound-7-1 { &:before { content: \"\\e193\"; } }\n.glyphicon-copyright-mark { &:before { content: \"\\e194\"; } }\n.glyphicon-registration-mark { &:before { content: \"\\e195\"; } }\n.glyphicon-cloud-download { &:before { content: \"\\e197\"; } }\n.glyphicon-cloud-upload { &:before { content: \"\\e198\"; } }\n.glyphicon-tree-conifer { &:before { content: \"\\e199\"; } }\n.glyphicon-tree-deciduous { &:before { content: \"\\e200\"; } }\n.glyphicon-cd { &:before { content: \"\\e201\"; } }\n.glyphicon-save-file { &:before { content: \"\\e202\"; } }\n.glyphicon-open-file { &:before { content: \"\\e203\"; } }\n.glyphicon-level-up { &:before { content: \"\\e204\"; } }\n.glyphicon-copy { &:before { content: \"\\e205\"; } }\n.glyphicon-paste { &:before { content: \"\\e206\"; } }\n// The following 2 Glyphicons are omitted for the time being because\n// they currently use Unicode codepoints that are outside the\n// Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle\n// non-BMP codepoints in CSS string escapes, and thus can't display these two icons.\n// Notably, the bug affects some older versions of the Android Browser.\n// More info: https://github.com/twbs/bootstrap/issues/10106\n// .glyphicon-door { &:before { content: \"\\1f6aa\"; } }\n// .glyphicon-key { &:before { content: \"\\1f511\"; } }\n.glyphicon-alert { &:before { content: \"\\e209\"; } }\n.glyphicon-equalizer { &:before { content: \"\\e210\"; } }\n.glyphicon-king { &:before { content: \"\\e211\"; } }\n.glyphicon-queen { &:before { content: \"\\e212\"; } }\n.glyphicon-pawn { &:before { content: \"\\e213\"; } }\n.glyphicon-bishop { &:before { content: \"\\e214\"; } }\n.glyphicon-knight { &:before { content: \"\\e215\"; } }\n.glyphicon-baby-formula { &:before { content: \"\\e216\"; } }\n.glyphicon-tent { &:before { content: \"\\26fa\"; } }\n.glyphicon-blackboard { &:before { content: \"\\e218\"; } }\n.glyphicon-bed { &:before { content: \"\\e219\"; } }\n.glyphicon-apple { &:before { content: \"\\f8ff\"; } }\n.glyphicon-erase { &:before { content: \"\\e221\"; } }\n.glyphicon-hourglass { &:before { content: \"\\231b\"; } }\n.glyphicon-lamp { &:before { content: \"\\e223\"; } }\n.glyphicon-duplicate { &:before { content: \"\\e224\"; } }\n.glyphicon-piggy-bank { &:before { content: \"\\e225\"; } }\n.glyphicon-scissors { &:before { content: \"\\e226\"; } }\n.glyphicon-bitcoin { &:before { content: \"\\e227\"; } }\n.glyphicon-yen { &:before { content: \"\\00a5\"; } }\n.glyphicon-ruble { &:before { content: \"\\20bd\"; } }\n.glyphicon-scale { &:before { content: \"\\e230\"; } }\n.glyphicon-ice-lolly { &:before { content: \"\\e231\"; } }\n.glyphicon-ice-lolly-tasted { &:before { content: \"\\e232\"; } }\n.glyphicon-education { &:before { content: \"\\e233\"; } }\n.glyphicon-option-horizontal { &:before { content: \"\\e234\"; } }\n.glyphicon-option-vertical { &:before { content: \"\\e235\"; } }\n.glyphicon-menu-hamburger { &:before { content: \"\\e236\"; } }\n.glyphicon-modal-window { &:before { content: \"\\e237\"; } }\n.glyphicon-oil { &:before { content: \"\\e238\"; } }\n.glyphicon-grain { &:before { content: \"\\e239\"; } }\n.glyphicon-sunglasses { &:before { content: \"\\e240\"; } }\n.glyphicon-text-size { &:before { content: \"\\e241\"; } }\n.glyphicon-text-color { &:before { content: \"\\e242\"; } }\n.glyphicon-text-background { &:before { content: \"\\e243\"; } }\n.glyphicon-object-align-top { &:before { content: \"\\e244\"; } }\n.glyphicon-object-align-bottom { &:before { content: \"\\e245\"; } }\n.glyphicon-object-align-horizontal{ &:before { content: \"\\e246\"; } }\n.glyphicon-object-align-left { &:before { content: \"\\e247\"; } }\n.glyphicon-object-align-vertical { &:before { content: \"\\e248\"; } }\n.glyphicon-object-align-right { &:before { content: \"\\e249\"; } }\n.glyphicon-triangle-right { &:before { content: \"\\e250\"; } }\n.glyphicon-triangle-left { &:before { content: \"\\e251\"; } }\n.glyphicon-triangle-bottom { &:before { content: \"\\e252\"; } }\n.glyphicon-triangle-top { &:before { content: \"\\e253\"; } }\n.glyphicon-console { &:before { content: \"\\e254\"; } }\n.glyphicon-superscript { &:before { content: \"\\e255\"; } }\n.glyphicon-subscript { &:before { content: \"\\e256\"; } }\n.glyphicon-menu-left { &:before { content: \"\\e257\"; } }\n.glyphicon-menu-right { &:before { content: \"\\e258\"; } }\n.glyphicon-menu-down { &:before { content: \"\\e259\"; } }\n.glyphicon-menu-up { &:before { content: \"\\e260\"; } }\n","//\n// Scaffolding\n// --------------------------------------------------\n\n\n// Reset the box-sizing\n//\n// Heads up! This reset may cause conflicts with some third-party widgets.\n// For recommendations on resolving such conflicts, see\n// http://getbootstrap.com/getting-started/#third-box-sizing\n* {\n .box-sizing(border-box);\n}\n*:before,\n*:after {\n .box-sizing(border-box);\n}\n\n\n// Body reset\n\nhtml {\n font-size: 10px;\n -webkit-tap-highlight-color: rgba(0,0,0,0);\n}\n\nbody {\n font-family: @font-family-base;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @text-color;\n background-color: @body-bg;\n}\n\n// Reset fonts for relevant elements\ninput,\nbutton,\nselect,\ntextarea {\n font-family: inherit;\n font-size: inherit;\n line-height: inherit;\n}\n\n\n// Links\n\na {\n color: @link-color;\n text-decoration: none;\n\n &:hover,\n &:focus {\n color: @link-hover-color;\n text-decoration: @link-hover-decoration;\n }\n\n &:focus {\n .tab-focus();\n }\n}\n\n\n// Figures\n//\n// We reset this here because previously Normalize had no `figure` margins. This\n// ensures we don't break anyone's use of the element.\n\nfigure {\n margin: 0;\n}\n\n\n// Images\n\nimg {\n vertical-align: middle;\n}\n\n// Responsive images (ensure images don't scale beyond their parents)\n.img-responsive {\n .img-responsive();\n}\n\n// Rounded corners\n.img-rounded {\n border-radius: @border-radius-large;\n}\n\n// Image thumbnails\n//\n// Heads up! This is mixin-ed into thumbnails.less for `.thumbnail`.\n.img-thumbnail {\n padding: @thumbnail-padding;\n line-height: @line-height-base;\n background-color: @thumbnail-bg;\n border: 1px solid @thumbnail-border;\n border-radius: @thumbnail-border-radius;\n .transition(all .2s ease-in-out);\n\n // Keep them at most 100% wide\n .img-responsive(inline-block);\n}\n\n// Perfect circle\n.img-circle {\n border-radius: 50%; // set radius in percents\n}\n\n\n// Horizontal rules\n\nhr {\n margin-top: @line-height-computed;\n margin-bottom: @line-height-computed;\n border: 0;\n border-top: 1px solid @hr-border;\n}\n\n\n// Only display content to screen readers\n//\n// See: http://a11yproject.com/posts/how-to-hide-content/\n\n.sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n margin: -1px;\n padding: 0;\n overflow: hidden;\n clip: rect(0,0,0,0);\n border: 0;\n}\n\n// Use in conjunction with .sr-only to only display content when it's focused.\n// Useful for \"Skip to main content\" links; see http://www.w3.org/TR/2013/NOTE-WCAG20-TECHS-20130905/G1\n// Credit: HTML5 Boilerplate\n\n.sr-only-focusable {\n &:active,\n &:focus {\n position: static;\n width: auto;\n height: auto;\n margin: 0;\n overflow: visible;\n clip: auto;\n }\n}\n","// Vendor Prefixes\n//\n// All vendor mixins are deprecated as of v3.2.0 due to the introduction of\n// Autoprefixer in our Gruntfile. They will be removed in v4.\n\n// - Animations\n// - Backface visibility\n// - Box shadow\n// - Box sizing\n// - Content columns\n// - Hyphens\n// - Placeholder text\n// - Transformations\n// - Transitions\n// - User Select\n\n\n// Animations\n.animation(@animation) {\n -webkit-animation: @animation;\n -o-animation: @animation;\n animation: @animation;\n}\n.animation-name(@name) {\n -webkit-animation-name: @name;\n animation-name: @name;\n}\n.animation-duration(@duration) {\n -webkit-animation-duration: @duration;\n animation-duration: @duration;\n}\n.animation-timing-function(@timing-function) {\n -webkit-animation-timing-function: @timing-function;\n animation-timing-function: @timing-function;\n}\n.animation-delay(@delay) {\n -webkit-animation-delay: @delay;\n animation-delay: @delay;\n}\n.animation-iteration-count(@iteration-count) {\n -webkit-animation-iteration-count: @iteration-count;\n animation-iteration-count: @iteration-count;\n}\n.animation-direction(@direction) {\n -webkit-animation-direction: @direction;\n animation-direction: @direction;\n}\n.animation-fill-mode(@fill-mode) {\n -webkit-animation-fill-mode: @fill-mode;\n animation-fill-mode: @fill-mode;\n}\n\n// Backface visibility\n// Prevent browsers from flickering when using CSS 3D transforms.\n// Default value is `visible`, but can be changed to `hidden`\n\n.backface-visibility(@visibility){\n -webkit-backface-visibility: @visibility;\n -moz-backface-visibility: @visibility;\n backface-visibility: @visibility;\n}\n\n// Drop shadows\n//\n// Note: Deprecated `.box-shadow()` as of v3.1.0 since all of Bootstrap's\n// supported browsers that have box shadow capabilities now support it.\n\n.box-shadow(@shadow) {\n -webkit-box-shadow: @shadow; // iOS <4.3 & Android <4.1\n box-shadow: @shadow;\n}\n\n// Box sizing\n.box-sizing(@boxmodel) {\n -webkit-box-sizing: @boxmodel;\n -moz-box-sizing: @boxmodel;\n box-sizing: @boxmodel;\n}\n\n// CSS3 Content Columns\n.content-columns(@column-count; @column-gap: @grid-gutter-width) {\n -webkit-column-count: @column-count;\n -moz-column-count: @column-count;\n column-count: @column-count;\n -webkit-column-gap: @column-gap;\n -moz-column-gap: @column-gap;\n column-gap: @column-gap;\n}\n\n// Optional hyphenation\n.hyphens(@mode: auto) {\n word-wrap: break-word;\n -webkit-hyphens: @mode;\n -moz-hyphens: @mode;\n -ms-hyphens: @mode; // IE10+\n -o-hyphens: @mode;\n hyphens: @mode;\n}\n\n// Placeholder text\n.placeholder(@color: @input-color-placeholder) {\n // Firefox\n &::-moz-placeholder {\n color: @color;\n opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526\n }\n &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+\n &::-webkit-input-placeholder { color: @color; } // Safari and Chrome\n}\n\n// Transformations\n.scale(@ratio) {\n -webkit-transform: scale(@ratio);\n -ms-transform: scale(@ratio); // IE9 only\n -o-transform: scale(@ratio);\n transform: scale(@ratio);\n}\n.scale(@ratioX; @ratioY) {\n -webkit-transform: scale(@ratioX, @ratioY);\n -ms-transform: scale(@ratioX, @ratioY); // IE9 only\n -o-transform: scale(@ratioX, @ratioY);\n transform: scale(@ratioX, @ratioY);\n}\n.scaleX(@ratio) {\n -webkit-transform: scaleX(@ratio);\n -ms-transform: scaleX(@ratio); // IE9 only\n -o-transform: scaleX(@ratio);\n transform: scaleX(@ratio);\n}\n.scaleY(@ratio) {\n -webkit-transform: scaleY(@ratio);\n -ms-transform: scaleY(@ratio); // IE9 only\n -o-transform: scaleY(@ratio);\n transform: scaleY(@ratio);\n}\n.skew(@x; @y) {\n -webkit-transform: skewX(@x) skewY(@y);\n -ms-transform: skewX(@x) skewY(@y); // See https://github.com/twbs/bootstrap/issues/4885; IE9+\n -o-transform: skewX(@x) skewY(@y);\n transform: skewX(@x) skewY(@y);\n}\n.translate(@x; @y) {\n -webkit-transform: translate(@x, @y);\n -ms-transform: translate(@x, @y); // IE9 only\n -o-transform: translate(@x, @y);\n transform: translate(@x, @y);\n}\n.translate3d(@x; @y; @z) {\n -webkit-transform: translate3d(@x, @y, @z);\n transform: translate3d(@x, @y, @z);\n}\n.rotate(@degrees) {\n -webkit-transform: rotate(@degrees);\n -ms-transform: rotate(@degrees); // IE9 only\n -o-transform: rotate(@degrees);\n transform: rotate(@degrees);\n}\n.rotateX(@degrees) {\n -webkit-transform: rotateX(@degrees);\n -ms-transform: rotateX(@degrees); // IE9 only\n -o-transform: rotateX(@degrees);\n transform: rotateX(@degrees);\n}\n.rotateY(@degrees) {\n -webkit-transform: rotateY(@degrees);\n -ms-transform: rotateY(@degrees); // IE9 only\n -o-transform: rotateY(@degrees);\n transform: rotateY(@degrees);\n}\n.perspective(@perspective) {\n -webkit-perspective: @perspective;\n -moz-perspective: @perspective;\n perspective: @perspective;\n}\n.perspective-origin(@perspective) {\n -webkit-perspective-origin: @perspective;\n -moz-perspective-origin: @perspective;\n perspective-origin: @perspective;\n}\n.transform-origin(@origin) {\n -webkit-transform-origin: @origin;\n -moz-transform-origin: @origin;\n -ms-transform-origin: @origin; // IE9 only\n transform-origin: @origin;\n}\n\n\n// Transitions\n\n.transition(@transition) {\n -webkit-transition: @transition;\n -o-transition: @transition;\n transition: @transition;\n}\n.transition-property(@transition-property) {\n -webkit-transition-property: @transition-property;\n transition-property: @transition-property;\n}\n.transition-delay(@transition-delay) {\n -webkit-transition-delay: @transition-delay;\n transition-delay: @transition-delay;\n}\n.transition-duration(@transition-duration) {\n -webkit-transition-duration: @transition-duration;\n transition-duration: @transition-duration;\n}\n.transition-timing-function(@timing-function) {\n -webkit-transition-timing-function: @timing-function;\n transition-timing-function: @timing-function;\n}\n.transition-transform(@transition) {\n -webkit-transition: -webkit-transform @transition;\n -moz-transition: -moz-transform @transition;\n -o-transition: -o-transform @transition;\n transition: transform @transition;\n}\n\n\n// User select\n// For selecting text on the page\n\n.user-select(@select) {\n -webkit-user-select: @select;\n -moz-user-select: @select;\n -ms-user-select: @select; // IE10+\n user-select: @select;\n}\n","// WebKit-style focus\n\n.tab-focus() {\n // Default\n outline: thin dotted;\n // WebKit\n outline: 5px auto -webkit-focus-ring-color;\n outline-offset: -2px;\n}\n","// Image Mixins\n// - Responsive image\n// - Retina image\n\n\n// Responsive image\n//\n// Keep images from scaling beyond the width of their parents.\n.img-responsive(@display: block) {\n display: @display;\n max-width: 100%; // Part 1: Set a maximum relative to the parent\n height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching\n}\n\n\n// Retina image\n//\n// Short retina mixin for setting background-image and -size. Note that the\n// spelling of `min--moz-device-pixel-ratio` is intentional.\n.img-retina(@file-1x; @file-2x; @width-1x; @height-1x) {\n background-image: url(\"@{file-1x}\");\n\n @media\n only screen and (-webkit-min-device-pixel-ratio: 2),\n only screen and ( min--moz-device-pixel-ratio: 2),\n only screen and ( -o-min-device-pixel-ratio: 2/1),\n only screen and ( min-device-pixel-ratio: 2),\n only screen and ( min-resolution: 192dpi),\n only screen and ( min-resolution: 2dppx) {\n background-image: url(\"@{file-2x}\");\n background-size: @width-1x @height-1x;\n }\n}\n","//\n// Typography\n// --------------------------------------------------\n\n\n// Headings\n// -------------------------\n\nh1, h2, h3, h4, h5, h6,\n.h1, .h2, .h3, .h4, .h5, .h6 {\n font-family: @headings-font-family;\n font-weight: @headings-font-weight;\n line-height: @headings-line-height;\n color: @headings-color;\n\n small,\n .small {\n font-weight: normal;\n line-height: 1;\n color: @headings-small-color;\n }\n}\n\nh1, .h1,\nh2, .h2,\nh3, .h3 {\n margin-top: @line-height-computed;\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 65%;\n }\n}\nh4, .h4,\nh5, .h5,\nh6, .h6 {\n margin-top: (@line-height-computed / 2);\n margin-bottom: (@line-height-computed / 2);\n\n small,\n .small {\n font-size: 75%;\n }\n}\n\nh1, .h1 { font-size: @font-size-h1; }\nh2, .h2 { font-size: @font-size-h2; }\nh3, .h3 { font-size: @font-size-h3; }\nh4, .h4 { font-size: @font-size-h4; }\nh5, .h5 { font-size: @font-size-h5; }\nh6, .h6 { font-size: @font-size-h6; }\n\n\n// Body text\n// -------------------------\n\np {\n margin: 0 0 (@line-height-computed / 2);\n}\n\n.lead {\n margin-bottom: @line-height-computed;\n font-size: floor((@font-size-base * 1.15));\n font-weight: 300;\n line-height: 1.4;\n\n @media (min-width: @screen-sm-min) {\n font-size: (@font-size-base * 1.5);\n }\n}\n\n\n// Emphasis & misc\n// -------------------------\n\n// Ex: (12px small font / 14px base font) * 100% = about 85%\nsmall,\n.small {\n font-size: floor((100% * @font-size-small / @font-size-base));\n}\n\nmark,\n.mark {\n background-color: @state-warning-bg;\n padding: .2em;\n}\n\n// Alignment\n.text-left { text-align: left; }\n.text-right { text-align: right; }\n.text-center { text-align: center; }\n.text-justify { text-align: justify; }\n.text-nowrap { white-space: nowrap; }\n\n// Transformation\n.text-lowercase { text-transform: lowercase; }\n.text-uppercase { text-transform: uppercase; }\n.text-capitalize { text-transform: capitalize; }\n\n// Contextual colors\n.text-muted {\n color: @text-muted;\n}\n.text-primary {\n .text-emphasis-variant(@brand-primary);\n}\n.text-success {\n .text-emphasis-variant(@state-success-text);\n}\n.text-info {\n .text-emphasis-variant(@state-info-text);\n}\n.text-warning {\n .text-emphasis-variant(@state-warning-text);\n}\n.text-danger {\n .text-emphasis-variant(@state-danger-text);\n}\n\n// Contextual backgrounds\n// For now we'll leave these alongside the text classes until v4 when we can\n// safely shift things around (per SemVer rules).\n.bg-primary {\n // Given the contrast here, this is the only class to have its color inverted\n // automatically.\n color: #fff;\n .bg-variant(@brand-primary);\n}\n.bg-success {\n .bg-variant(@state-success-bg);\n}\n.bg-info {\n .bg-variant(@state-info-bg);\n}\n.bg-warning {\n .bg-variant(@state-warning-bg);\n}\n.bg-danger {\n .bg-variant(@state-danger-bg);\n}\n\n\n// Page header\n// -------------------------\n\n.page-header {\n padding-bottom: ((@line-height-computed / 2) - 1);\n margin: (@line-height-computed * 2) 0 @line-height-computed;\n border-bottom: 1px solid @page-header-border-color;\n}\n\n\n// Lists\n// -------------------------\n\n// Unordered and Ordered lists\nul,\nol {\n margin-top: 0;\n margin-bottom: (@line-height-computed / 2);\n ul,\n ol {\n margin-bottom: 0;\n }\n}\n\n// List options\n\n// Unstyled keeps list items block level, just removes default browser padding and list-style\n.list-unstyled {\n padding-left: 0;\n list-style: none;\n}\n\n// Inline turns list items into inline-block\n.list-inline {\n .list-unstyled();\n margin-left: -5px;\n\n > li {\n display: inline-block;\n padding-left: 5px;\n padding-right: 5px;\n }\n}\n\n// Description Lists\ndl {\n margin-top: 0; // Remove browser default\n margin-bottom: @line-height-computed;\n}\ndt,\ndd {\n line-height: @line-height-base;\n}\ndt {\n font-weight: bold;\n}\ndd {\n margin-left: 0; // Undo browser default\n}\n\n// Horizontal description lists\n//\n// Defaults to being stacked without any of the below styles applied, until the\n// grid breakpoint is reached (default of ~768px).\n\n.dl-horizontal {\n dd {\n &:extend(.clearfix all); // Clear the floated `dt` if an empty `dd` is present\n }\n\n @media (min-width: @grid-float-breakpoint) {\n dt {\n float: left;\n width: (@dl-horizontal-offset - 20);\n clear: left;\n text-align: right;\n .text-overflow();\n }\n dd {\n margin-left: @dl-horizontal-offset;\n }\n }\n}\n\n\n// Misc\n// -------------------------\n\n// Abbreviations and acronyms\nabbr[title],\n// Add data-* attribute to help out our tooltip plugin, per https://github.com/twbs/bootstrap/issues/5257\nabbr[data-original-title] {\n cursor: help;\n border-bottom: 1px dotted @abbr-border-color;\n}\n.initialism {\n font-size: 90%;\n text-transform: uppercase;\n}\n\n// Blockquotes\nblockquote {\n padding: (@line-height-computed / 2) @line-height-computed;\n margin: 0 0 @line-height-computed;\n font-size: @blockquote-font-size;\n border-left: 5px solid @blockquote-border-color;\n\n p,\n ul,\n ol {\n &:last-child {\n margin-bottom: 0;\n }\n }\n\n // Note: Deprecated small and .small as of v3.1.0\n // Context: https://github.com/twbs/bootstrap/issues/11660\n footer,\n small,\n .small {\n display: block;\n font-size: 80%; // back to default font-size\n line-height: @line-height-base;\n color: @blockquote-small-color;\n\n &:before {\n content: '\\2014 \\00A0'; // em dash, nbsp\n }\n }\n}\n\n// Opposite alignment of blockquote\n//\n// Heads up: `blockquote.pull-right` has been deprecated as of v3.1.0.\n.blockquote-reverse,\nblockquote.pull-right {\n padding-right: 15px;\n padding-left: 0;\n border-right: 5px solid @blockquote-border-color;\n border-left: 0;\n text-align: right;\n\n // Account for citation\n footer,\n small,\n .small {\n &:before { content: ''; }\n &:after {\n content: '\\00A0 \\2014'; // nbsp, em dash\n }\n }\n}\n\n// Addresses\naddress {\n margin-bottom: @line-height-computed;\n font-style: normal;\n line-height: @line-height-base;\n}\n","// Typography\n\n.text-emphasis-variant(@color) {\n color: @color;\n a&:hover {\n color: darken(@color, 10%);\n }\n}\n","// Contextual backgrounds\n\n.bg-variant(@color) {\n background-color: @color;\n a&:hover {\n background-color: darken(@color, 10%);\n }\n}\n","// Text overflow\n// Requires inline-block or block for proper styling\n\n.text-overflow() {\n overflow: hidden;\n text-overflow: ellipsis;\n white-space: nowrap;\n}\n","//\n// Code (inline and block)\n// --------------------------------------------------\n\n\n// Inline and block code styles\ncode,\nkbd,\npre,\nsamp {\n font-family: @font-family-monospace;\n}\n\n// Inline code\ncode {\n padding: 2px 4px;\n font-size: 90%;\n color: @code-color;\n background-color: @code-bg;\n border-radius: @border-radius-base;\n}\n\n// User input typically entered via keyboard\nkbd {\n padding: 2px 4px;\n font-size: 90%;\n color: @kbd-color;\n background-color: @kbd-bg;\n border-radius: @border-radius-small;\n box-shadow: inset 0 -1px 0 rgba(0,0,0,.25);\n\n kbd {\n padding: 0;\n font-size: 100%;\n font-weight: bold;\n box-shadow: none;\n }\n}\n\n// Blocks of code\npre {\n display: block;\n padding: ((@line-height-computed - 1) / 2);\n margin: 0 0 (@line-height-computed / 2);\n font-size: (@font-size-base - 1); // 14px to 13px\n line-height: @line-height-base;\n word-break: break-all;\n word-wrap: break-word;\n color: @pre-color;\n background-color: @pre-bg;\n border: 1px solid @pre-border-color;\n border-radius: @border-radius-base;\n\n // Account for some code outputs that place code tags in pre tags\n code {\n padding: 0;\n font-size: inherit;\n color: inherit;\n white-space: pre-wrap;\n background-color: transparent;\n border-radius: 0;\n }\n}\n\n// Enable scrollable blocks of code\n.pre-scrollable {\n max-height: @pre-scrollable-max-height;\n overflow-y: scroll;\n}\n","//\n// Grid system\n// --------------------------------------------------\n\n\n// Container widths\n//\n// Set the container width, and override it for fixed navbars in media queries.\n\n.container {\n .container-fixed();\n\n @media (min-width: @screen-sm-min) {\n width: @container-sm;\n }\n @media (min-width: @screen-md-min) {\n width: @container-md;\n }\n @media (min-width: @screen-lg-min) {\n width: @container-lg;\n }\n}\n\n\n// Fluid container\n//\n// Utilizes the mixin meant for fixed width containers, but without any defined\n// width for fluid, full width layouts.\n\n.container-fluid {\n .container-fixed();\n}\n\n\n// Row\n//\n// Rows contain and clear the floats of your columns.\n\n.row {\n .make-row();\n}\n\n\n// Columns\n//\n// Common styles for small and large grid columns\n\n.make-grid-columns();\n\n\n// Extra small grid\n//\n// Columns, offsets, pushes, and pulls for extra small devices like\n// smartphones.\n\n.make-grid(xs);\n\n\n// Small grid\n//\n// Columns, offsets, pushes, and pulls for the small device range, from phones\n// to tablets.\n\n@media (min-width: @screen-sm-min) {\n .make-grid(sm);\n}\n\n\n// Medium grid\n//\n// Columns, offsets, pushes, and pulls for the desktop device range.\n\n@media (min-width: @screen-md-min) {\n .make-grid(md);\n}\n\n\n// Large grid\n//\n// Columns, offsets, pushes, and pulls for the large desktop device range.\n\n@media (min-width: @screen-lg-min) {\n .make-grid(lg);\n}\n","// Grid system\n//\n// Generate semantic grid columns with these mixins.\n\n// Centered container element\n.container-fixed(@gutter: @grid-gutter-width) {\n margin-right: auto;\n margin-left: auto;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n &:extend(.clearfix all);\n}\n\n// Creates a wrapper for a series of columns\n.make-row(@gutter: @grid-gutter-width) {\n margin-left: (@gutter / -2);\n margin-right: (@gutter / -2);\n &:extend(.clearfix all);\n}\n\n// Generate the extra small columns\n.make-xs-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n float: left;\n width: percentage((@columns / @grid-columns));\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n}\n.make-xs-column-offset(@columns) {\n margin-left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-push(@columns) {\n left: percentage((@columns / @grid-columns));\n}\n.make-xs-column-pull(@columns) {\n right: percentage((@columns / @grid-columns));\n}\n\n// Generate the small columns\n.make-sm-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-sm-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-offset(@columns) {\n @media (min-width: @screen-sm-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-push(@columns) {\n @media (min-width: @screen-sm-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-sm-column-pull(@columns) {\n @media (min-width: @screen-sm-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the medium columns\n.make-md-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-md-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-offset(@columns) {\n @media (min-width: @screen-md-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-push(@columns) {\n @media (min-width: @screen-md-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-md-column-pull(@columns) {\n @media (min-width: @screen-md-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n\n// Generate the large columns\n.make-lg-column(@columns; @gutter: @grid-gutter-width) {\n position: relative;\n min-height: 1px;\n padding-left: (@gutter / 2);\n padding-right: (@gutter / 2);\n\n @media (min-width: @screen-lg-min) {\n float: left;\n width: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-offset(@columns) {\n @media (min-width: @screen-lg-min) {\n margin-left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-push(@columns) {\n @media (min-width: @screen-lg-min) {\n left: percentage((@columns / @grid-columns));\n }\n}\n.make-lg-column-pull(@columns) {\n @media (min-width: @screen-lg-min) {\n right: percentage((@columns / @grid-columns));\n }\n}\n","// Framework grid generation\n//\n// Used only by Bootstrap to generate the correct number of grid classes given\n// any value of `@grid-columns`.\n\n.make-grid-columns() {\n // Common styles for all sizes of grid columns, widths 1-12\n .col(@index) { // initial\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general; \"=<\" isn't a typo\n @item: ~\".col-xs-@{index}, .col-sm-@{index}, .col-md-@{index}, .col-lg-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n position: relative;\n // Prevent columns from collapsing when empty\n min-height: 1px;\n // Inner gutter via padding\n padding-left: (@grid-gutter-width / 2);\n padding-right: (@grid-gutter-width / 2);\n }\n }\n .col(1); // kickstart it\n}\n\n.float-grid-columns(@class) {\n .col(@index) { // initial\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), @item);\n }\n .col(@index, @list) when (@index =< @grid-columns) { // general\n @item: ~\".col-@{class}-@{index}\";\n .col((@index + 1), ~\"@{list}, @{item}\");\n }\n .col(@index, @list) when (@index > @grid-columns) { // terminal\n @{list} {\n float: left;\n }\n }\n .col(1); // kickstart it\n}\n\n.calc-grid-column(@index, @class, @type) when (@type = width) and (@index > 0) {\n .col-@{class}-@{index} {\n width: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index > 0) {\n .col-@{class}-push-@{index} {\n left: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = push) and (@index = 0) {\n .col-@{class}-push-0 {\n left: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index > 0) {\n .col-@{class}-pull-@{index} {\n right: percentage((@index / @grid-columns));\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = pull) and (@index = 0) {\n .col-@{class}-pull-0 {\n right: auto;\n }\n}\n.calc-grid-column(@index, @class, @type) when (@type = offset) {\n .col-@{class}-offset-@{index} {\n margin-left: percentage((@index / @grid-columns));\n }\n}\n\n// Basic looping in LESS\n.loop-grid-columns(@index, @class, @type) when (@index >= 0) {\n .calc-grid-column(@index, @class, @type);\n // next iteration\n .loop-grid-columns((@index - 1), @class, @type);\n}\n\n// Create grid for specific class\n.make-grid(@class) {\n .float-grid-columns(@class);\n .loop-grid-columns(@grid-columns, @class, width);\n .loop-grid-columns(@grid-columns, @class, pull);\n .loop-grid-columns(@grid-columns, @class, push);\n .loop-grid-columns(@grid-columns, @class, offset);\n}\n","//\n// Tables\n// --------------------------------------------------\n\n\ntable {\n background-color: @table-bg;\n}\ncaption {\n padding-top: @table-cell-padding;\n padding-bottom: @table-cell-padding;\n color: @text-muted;\n text-align: left;\n}\nth {\n text-align: left;\n}\n\n\n// Baseline styles\n\n.table {\n width: 100%;\n max-width: 100%;\n margin-bottom: @line-height-computed;\n // Cells\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-cell-padding;\n line-height: @line-height-base;\n vertical-align: top;\n border-top: 1px solid @table-border-color;\n }\n }\n }\n // Bottom align for column headings\n > thead > tr > th {\n vertical-align: bottom;\n border-bottom: 2px solid @table-border-color;\n }\n // Remove top border from thead by default\n > caption + thead,\n > colgroup + thead,\n > thead:first-child {\n > tr:first-child {\n > th,\n > td {\n border-top: 0;\n }\n }\n }\n // Account for multiple tbody instances\n > tbody + tbody {\n border-top: 2px solid @table-border-color;\n }\n\n // Nesting\n .table {\n background-color: @body-bg;\n }\n}\n\n\n// Condensed table w/ half padding\n\n.table-condensed {\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n padding: @table-condensed-cell-padding;\n }\n }\n }\n}\n\n\n// Bordered version\n//\n// Add borders all around the table and between all the columns.\n\n.table-bordered {\n border: 1px solid @table-border-color;\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n border: 1px solid @table-border-color;\n }\n }\n }\n > thead > tr {\n > th,\n > td {\n border-bottom-width: 2px;\n }\n }\n}\n\n\n// Zebra-striping\n//\n// Default zebra-stripe styles (alternating gray and transparent backgrounds)\n\n.table-striped {\n > tbody > tr:nth-of-type(odd) {\n background-color: @table-bg-accent;\n }\n}\n\n\n// Hover effect\n//\n// Placed here since it has to come after the potential zebra striping\n\n.table-hover {\n > tbody > tr:hover {\n background-color: @table-bg-hover;\n }\n}\n\n\n// Table cell sizing\n//\n// Reset default table behavior\n\ntable col[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-column;\n}\ntable {\n td,\n th {\n &[class*=\"col-\"] {\n position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)\n float: none;\n display: table-cell;\n }\n }\n}\n\n\n// Table backgrounds\n//\n// Exact selectors below required to override `.table-striped` and prevent\n// inheritance to nested tables.\n\n// Generate the contextual variants\n.table-row-variant(active; @table-bg-active);\n.table-row-variant(success; @state-success-bg);\n.table-row-variant(info; @state-info-bg);\n.table-row-variant(warning; @state-warning-bg);\n.table-row-variant(danger; @state-danger-bg);\n\n\n// Responsive tables\n//\n// Wrap your tables in `.table-responsive` and we'll make them mobile friendly\n// by enabling horizontal scrolling. Only applies <768px. Everything above that\n// will display normally.\n\n.table-responsive {\n overflow-x: auto;\n min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)\n\n @media screen and (max-width: @screen-xs-max) {\n width: 100%;\n margin-bottom: (@line-height-computed * 0.75);\n overflow-y: hidden;\n -ms-overflow-style: -ms-autohiding-scrollbar;\n border: 1px solid @table-border-color;\n\n // Tighten up spacing\n > .table {\n margin-bottom: 0;\n\n // Ensure the content doesn't wrap\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th,\n > td {\n white-space: nowrap;\n }\n }\n }\n }\n\n // Special overrides for the bordered tables\n > .table-bordered {\n border: 0;\n\n // Nuke the appropriate borders so that the parent can handle them\n > thead,\n > tbody,\n > tfoot {\n > tr {\n > th:first-child,\n > td:first-child {\n border-left: 0;\n }\n > th:last-child,\n > td:last-child {\n border-right: 0;\n }\n }\n }\n\n // Only nuke the last row's bottom-border in `tbody` and `tfoot` since\n // chances are there will be only one `tr` in a `thead` and that would\n // remove the border altogether.\n > tbody,\n > tfoot {\n > tr:last-child {\n > th,\n > td {\n border-bottom: 0;\n }\n }\n }\n\n }\n }\n}\n","// Tables\n\n.table-row-variant(@state; @background) {\n // Exact selectors below required to override `.table-striped` and prevent\n // inheritance to nested tables.\n .table > thead > tr,\n .table > tbody > tr,\n .table > tfoot > tr {\n > td.@{state},\n > th.@{state},\n &.@{state} > td,\n &.@{state} > th {\n background-color: @background;\n }\n }\n\n // Hover states for `.table-hover`\n // Note: this is not available for cells or rows within `thead` or `tfoot`.\n .table-hover > tbody > tr {\n > td.@{state}:hover,\n > th.@{state}:hover,\n &.@{state}:hover > td,\n &:hover > .@{state},\n &.@{state}:hover > th {\n background-color: darken(@background, 5%);\n }\n }\n}\n","//\n// Forms\n// --------------------------------------------------\n\n\n// Normalize non-controls\n//\n// Restyle and baseline non-control form elements.\n\nfieldset {\n padding: 0;\n margin: 0;\n border: 0;\n // Chrome and Firefox set a `min-width: min-content;` on fieldsets,\n // so we reset that to ensure it behaves more like a standard block element.\n // See https://github.com/twbs/bootstrap/issues/12359.\n min-width: 0;\n}\n\nlegend {\n display: block;\n width: 100%;\n padding: 0;\n margin-bottom: @line-height-computed;\n font-size: (@font-size-base * 1.5);\n line-height: inherit;\n color: @legend-color;\n border: 0;\n border-bottom: 1px solid @legend-border-color;\n}\n\nlabel {\n display: inline-block;\n max-width: 100%; // Force IE8 to wrap long content (see https://github.com/twbs/bootstrap/issues/13141)\n margin-bottom: 5px;\n font-weight: bold;\n}\n\n\n// Normalize form controls\n//\n// While most of our form styles require extra classes, some basic normalization\n// is required to ensure optimum display with or without those classes to better\n// address browser inconsistencies.\n\n// Override content-box in Normalize (* isn't specific enough)\ninput[type=\"search\"] {\n .box-sizing(border-box);\n}\n\n// Position radios and checkboxes better\ninput[type=\"radio\"],\ninput[type=\"checkbox\"] {\n margin: 4px 0 0;\n margin-top: 1px \\9; // IE8-9\n line-height: normal;\n}\n\n// Set the height of file controls to match text inputs\ninput[type=\"file\"] {\n display: block;\n}\n\n// Make range inputs behave like textual form controls\ninput[type=\"range\"] {\n display: block;\n width: 100%;\n}\n\n// Make multiple select elements height not fixed\nselect[multiple],\nselect[size] {\n height: auto;\n}\n\n// Focus for file, radio, and checkbox\ninput[type=\"file\"]:focus,\ninput[type=\"radio\"]:focus,\ninput[type=\"checkbox\"]:focus {\n .tab-focus();\n}\n\n// Adjust output element\noutput {\n display: block;\n padding-top: (@padding-base-vertical + 1);\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n}\n\n\n// Common form controls\n//\n// Shared size and type resets for form controls. Apply `.form-control` to any\n// of the following form controls:\n//\n// select\n// textarea\n// input[type=\"text\"]\n// input[type=\"password\"]\n// input[type=\"datetime\"]\n// input[type=\"datetime-local\"]\n// input[type=\"date\"]\n// input[type=\"month\"]\n// input[type=\"time\"]\n// input[type=\"week\"]\n// input[type=\"number\"]\n// input[type=\"email\"]\n// input[type=\"url\"]\n// input[type=\"search\"]\n// input[type=\"tel\"]\n// input[type=\"color\"]\n\n.form-control {\n display: block;\n width: 100%;\n height: @input-height-base; // Make inputs at least the height of their button counterpart (base line-height + padding + border)\n padding: @padding-base-vertical @padding-base-horizontal;\n font-size: @font-size-base;\n line-height: @line-height-base;\n color: @input-color;\n background-color: @input-bg;\n background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214\n border: 1px solid @input-border;\n border-radius: @input-border-radius; // Note: This has no effect on s in CSS.\n .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));\n .transition(~\"border-color ease-in-out .15s, box-shadow ease-in-out .15s\");\n\n // Customize the `:focus` state to imitate native WebKit styles.\n .form-control-focus();\n\n // Placeholder\n .placeholder();\n\n // Disabled and read-only inputs\n //\n // HTML5 says that controls under a fieldset > legend:first-child won't be\n // disabled if the fieldset is disabled. Due to implementation difficulty, we\n // don't honor that edge case; we style them as disabled anyway.\n &[disabled],\n &[readonly],\n fieldset[disabled] & {\n cursor: @cursor-disabled;\n background-color: @input-bg-disabled;\n opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655\n }\n\n // Reset height for `textarea`s\n textarea& {\n height: auto;\n }\n}\n\n\n// Search inputs in iOS\n//\n// This overrides the extra rounded corners on search inputs in iOS so that our\n// `.form-control` class can properly style them. Note that this cannot simply\n// be added to `.form-control` as it's not specific enough. For details, see\n// https://github.com/twbs/bootstrap/issues/11586.\n\ninput[type=\"search\"] {\n -webkit-appearance: none;\n}\n\n\n// Special styles for iOS temporal inputs\n//\n// In Mobile Safari, setting `display: block` on temporal inputs causes the\n// text within the input to become vertically misaligned. As a workaround, we\n// set a pixel line-height that matches the given height of the input, but only\n// for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848\n\n@media screen and (-webkit-min-device-pixel-ratio: 0) {\n input[type=\"date\"],\n input[type=\"time\"],\n input[type=\"datetime-local\"],\n input[type=\"month\"] {\n line-height: @input-height-base;\n\n &.input-sm,\n .input-group-sm & {\n line-height: @input-height-small;\n }\n\n &.input-lg,\n .input-group-lg & {\n line-height: @input-height-large;\n }\n }\n}\n\n\n// Form groups\n//\n// Designed to help with the organization and spacing of vertical forms. For\n// horizontal forms, use the predefined grid classes.\n\n.form-group {\n margin-bottom: 15px;\n}\n\n\n// Checkboxes and radios\n//\n// Indent the labels to position radios/checkboxes as hanging controls.\n\n.radio,\n.checkbox {\n position: relative;\n display: block;\n margin-top: 10px;\n margin-bottom: 10px;\n\n label {\n min-height: @line-height-computed; // Ensure the input doesn't jump when there is no text\n padding-left: 20px;\n margin-bottom: 0;\n font-weight: normal;\n cursor: pointer;\n }\n}\n.radio input[type=\"radio\"],\n.radio-inline input[type=\"radio\"],\n.checkbox input[type=\"checkbox\"],\n.checkbox-inline input[type=\"checkbox\"] {\n position: absolute;\n margin-left: -20px;\n margin-top: 4px \\9;\n}\n\n.radio + .radio,\n.checkbox + .checkbox {\n margin-top: -5px; // Move up sibling radios or checkboxes for tighter spacing\n}\n\n// Radios and checkboxes on same line\n.radio-inline,\n.checkbox-inline {\n display: inline-block;\n padding-left: 20px;\n margin-bottom: 0;\n vertical-align: middle;\n font-weight: normal;\n cursor: pointer;\n}\n.radio-inline + .radio-inline,\n.checkbox-inline + .checkbox-inline {\n margin-top: 0;\n margin-left: 10px; // space out consecutive inline controls\n}\n\n// Apply same disabled cursor tweak as for inputs\n// Some special care is needed because