diff --git a/.buildinfo b/.buildinfo new file mode 100644 index 0000000..cd458e4 --- /dev/null +++ b/.buildinfo @@ -0,0 +1,4 @@ +# Sphinx build info version 1 +# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done. +config: f00de67f5842cd54602bae746b2d95e8 +tags: 645f666f9bcd5a90fca523b33c5a78b7 diff --git a/_images/plot.png b/_images/plot.png new file mode 100644 index 0000000..eb3d3aa Binary files /dev/null and b/_images/plot.png differ diff --git a/_sources/community/community.rst b/_sources/community/community.rst new file mode 100644 index 0000000..8da042a --- /dev/null +++ b/_sources/community/community.rst @@ -0,0 +1,9 @@ + +PES-Learn Community +=================== + +.. toctree:: + + Support + Contribute + \ No newline at end of file diff --git a/_sources/community/contribute.rst b/_sources/community/contribute.rst new file mode 100644 index 0000000..90015f7 --- /dev/null +++ b/_sources/community/contribute.rst @@ -0,0 +1,5 @@ + +Contribute to PES-Learn! +======================== + +We welcome contributions and ideas for PES-Learn! to get started, check out the `developer documentation <../develop/dev_docs.html>`_. \ No newline at end of file diff --git a/_sources/community/support.rst b/_sources/community/support.rst new file mode 100644 index 0000000..710bd6e --- /dev/null +++ b/_sources/community/support.rst @@ -0,0 +1,5 @@ + +PES-Learn Support +================= + +WIP \ No newline at end of file diff --git a/_sources/develop/dev_docs.rst b/_sources/develop/dev_docs.rst new file mode 100644 index 0000000..624b15e --- /dev/null +++ b/_sources/develop/dev_docs.rst @@ -0,0 +1,3 @@ + +Developer Documentation coming soon! +==================================== \ No newline at end of file diff --git a/_sources/guides/api.rst b/_sources/guides/api.rst new file mode 100644 index 0000000..481acff --- /dev/null +++ b/_sources/guides/api.rst @@ -0,0 +1,396 @@ +###################################################### +PES-Learn Application Program Interface (CLI) Tutorial +###################################################### + +The following tutorial goes over an example of how to use PES-Learn with Python API. This allows the user to +import the peslearn python package and use python to excecute instead of the peslearn driver as with the CLI +option. Some of the differences between ML models and parsing methods are left out of this tutorial. For a +more detailed description on these differences, check out the `CLI `_ tutorial. + +First, import the PES-Learn python package ``peslearn``: + +.. note:: + + Check out the `Installation <../started/installation.html>`_ guide for information on how to install the + ``peslearn`` package. + +.. code-block:: python + + import peslearn + +Here we will generate a simple potential energy surface of water. First, we need to create an input object +which contains information such as the grid of geometries we wish to generate and the various keyword options. +The input object is initialized from a string. Here we use a multiline string with triple quotes. Anything can +go in this multiline string; only text patterns which match PES-Learn keyword options will be considered. Because +of this, if a keyword is spelled wrong it will be ignored. We choose to scan over the OH bond distances from 0.85 +to 1.2 angstroms and the bond angle from 90 to 120 degrees. Also, we will remove redundant geometries arising from +equivalent values of r1 and r2. + +.. code-block:: python + + input_string = (""" + O + H 1 r1 + H 1 r2 2 a2 + + r1 = [0.85,1.20, 5] + r2 = [0.85,1.20, 5] + a2 = [90.0,120.0, 5] + + remove_redundancy = true + input_name = input.dat + """) + +The ``input_name`` value tells PES-Learn what to call the produced input files based on our template file ``template.dat``. +Alternatively, schema can be used in the same way as described in the `CLI `_ tutorial, with all of the necessary +keywords in the ``input_string``. In this example, however, we will be using a template.dat, which will be a Psi4 input +file that computes a density-fitted MP2 energy with a 6-31g basis set. The only relevant part of this file from +PES-Learn's perspective is the Cartesian coordinates, which will be found and replaced by the Cartesian coordinates +corresponding to the internal coordinate grid given above to create a series of input files. The example ``template.dat`` +file looks like this: + +.. code-block:: + + molecule h2o { + 0 1 + H 0.00 0.00 0.00 + H 0.00 0.00 0.00 + O 0.00 0.00 0.00 + } + + set basis 6-31g + energy('mp2') + +We instantiate a PES-Learn InputProcessor object with the input string given above, as well as a template object with +the template file ``template.dat``: + +.. code-block:: python + + input_object = peslearn.InputProcessor(input_string) + template_object = peslearn.datagen.Template("./template.dat") + +If you are using schemas, ``template_object`` does not need to be instantiated. The input_object holds the Z-Matrix +connectivity information as well as the internal coordinate ranges and keyword options. A PES-Learn Molecule object +takes in this Z-Matrix information and derives obtains a bunch of information about the molecule, and is able to +update its internal coordinates and convert to Cartesian coordinates. + +.. code-block:: python + + molecule_object = peslearn.datagen.Molecule(input_object.zmat_string) + +We are now ready to generate all of the Psi4 input files for these geometries. To do this, we create a ``ConfigurationSpace`` +object. This object actually creates all of the internal coordinate displacements, uses the Molecule object to obtain +Cartesian coordinates, and also finds the interatomic distances. Each of the coordinate representations are kept in a +pandas DataFrame. The interatomic distances are used to remove redundant geometries using permutational symmetry of +the two identical hydrogen atoms. The ``generate_PES`` method of the Configuration space object creates a directory +``PES_data`` containing a series of subdirectories with integer values ``1``, ``2``, ``3``... which each contain a +unique cartesian coordinate Psi4 input file across the PES of water. + +.. code-block:: python + + config = peslearn.datagen.ConfigurationSpace(molecule_object, input_object) + config.generate_PES(template_object) + +.. note:: + + If you are using schemas instead of template objects, you can instead use the following line instead of the last one: + + .. code-block:: python + + config.generate_PES(template_object=None, schema_gen=true) + +Excecution of ``config.generate_PES()`` will generate input files (or python scripts with schemas) in a directory ``PES_data``, +along with the following output: + +.. code-block:: + + 125 internal coordinate displacements generated in 0.00139 seconds + Total displacements: 125 + Number of interatomic distances: 3 + Geometry grid generated in 0.01 seconds + Removing symmetry-redundant geometries... Redundancy removal took 0.01 seconds + Removed 50 redundant geometries from a set of 125 geometries + Your PES inputs are now generated. Run the jobs in the PES_data directory and then parse. + +We see here that 50 redundant geometries corresponding to identical molecular configurations were removed, +leaving just 75 energies needed to be explicitly computed. We proceed to compute the energies with Psi4 by +moving to each subdirectory created by PES-Learn, ``PES_data/1``, ``PES_data/2`` ..., and running Psi4 with +the command line: + +.. code-block:: python + + import os + os.chdir('PES_data') + for i in range(1,76): + os.chdir(str(i)) + if "output.dat" not in os.listdir('.'): + print(i, end=', ') + os.system('psi4 input.dat') + os.chdir('../') + os.chdir("../") + +.. note:: + + See the `Command line tutorial `_ for tips on doing this with schemas. + +Once the computations are complete, we wish to create a dataset of geometry, energy pairs for creating a +machine learning model of the potential energy surface. To do this, we use the parsing capabilities of PES-Learn +to extract the energies from the Psi4 output files. There are three schemes for doing this: exctracting from schemas, +regular expressions, and cclib. In this case, for my version of Psi4, cclib does not work for parsing MP2 energies. +Luckily we can use the general regular expression scheme. We first need to come up with a regular expression pattern +which matches the energy we want from the Psi4 output file. We observe that the MP2 energy in an output file is +printed as follows: + +.. code-block:: + + ==================> DF-MP2 Energies <==================== + ----------------------------------------------------------- + Reference Energy = -75.9381224063424440 [Eh] + Singles Energy = -0.0000000000000000 [Eh] + Same-Spin Energy = -0.0277202185419175 [Eh] + Opposite-Spin Energy = -0.0919994716794230 [Eh] + Correlation Energy = -0.1197196902213406 [Eh] + Total Energy = -76.0578420965637889 [Eh] + + +A regular expression which grabs the energy we want is ``Total Energy\s+=\s+(-\d+\.\d+)`` which matches the words +'Total Energy' followed by one or more whitespaces ``\s+``, an equal sign ``=``, one or more whitespaces ``\s+``, +and then a negative floating point number ``-\d+\.\d+`` which we have necessarily enclosed in parentheses to indicate +that we only want to capture the number itself, not the whole line. This is a bit cumbersome to use, so in practice +it is recommend trying out various regular expressions via trial and error using `Regex101 `_ +or `Pythex `_ to ensure that the pattern is matched. In the context of PES-Learn, we would set +the following keywords in the input: + +.. code-block:: + + energy = 'regex' + energy_regex = 'Total Energy\s+=\s+(-\d+\.\d+)' + +However, Psi4 will print out this same line 'Total Energy = (float)' for the Hartree-Fock, MP2, SCS-MP2, +and all other energies: + +.. code-block:: + + @DF-RHF Final Energy: -75.93812240634244 + + => Energetics <= + + Nuclear Repulsion Energy = 10.4012001939225183 + One-Electron Energy = -124.9779212700375410 + Two-Electron Energy = 38.6385986697725912 + Total Energy = -75.9381224063424298 + ... + ... + ... + ==================> DF-MP2 Energies <==================== + ----------------------------------------------------------- + Reference Energy = -75.9381224063424440 [Eh] + Singles Energy = -0.0000000000000000 [Eh] + Same-Spin Energy = -0.0277202185419175 [Eh] + Opposite-Spin Energy = -0.0919994716794230 [Eh] + Correlation Energy = -0.1197196902213406 [Eh] + Total Energy = -76.0578420965637889 [Eh] + ----------------------------------------------------------- + ================> DF-SCS-MP2 Energies <================== + ----------------------------------------------------------- + SCS Same-Spin Scale = 0.3333333333333333 [-] + SCS Opposite-Spin Scale = 1.2000000000000000 [-] + SCS Same-Spin Energy = -0.0092400728473058 [Eh] + SCS Opposite-Spin Energy = -0.1103993660153076 [Eh] + SCS Correlation Energy = -0.1196394388626135 [Eh] + SCS Total Energy = -76.0577618452050643 [Eh] + ----------------------------------------------------------- + +We note that PES-Learn by default takes the *last match occurance* of the regex pattern as the energy. +Thus, the Hartree-Fock line is not relavent as it occurs earlier. However, with our above regex we will +accidentally match the 'SCS Total Energy' line. To fix this, we just input some spaces before the word +'Total' to ensure the correct energy is matched. Using the set_keyword method, we can directly modify +our input_object with the new parsing-relevant keywords. We note here that these could have just as +easily been included at the very beginning in our multi-line input string, but this method is valid as well: + +.. code-block:: python + + input_object.set_keyword({'energy':'regex'}) + input_object.set_keyword({'energy_regex':'\s+Total Energy\s+=\s+(-\d+\.\d+)'}) + +Now at the begining of our regex we have ``\s+`` which will look for any amount of whitespace before +'Total Energy'. We will also choose to create a PES file using interatomic distances as the geometry +representation instead of the internal coordinates. The reason is because we plan to use a permutation-invariant +geometry representation when we do machine learning, and this requires the interatomic distances format. + +.. code-block:: python + + input_object.set_keyword({'pes_format':'interatomics'}) + +After a bit of work, we are ready to parse the output files and create the dataset, which si a simple csv file. + +.. code-block:: python + + peslearn.utils.parsing_helper.parse(input_object, molecule_object) + +Let's take a look at this dataset with the Python module pandas: + +.. code-block:: python + + import pandas as pd + data = pd.read_csv('PES.dat') + print(data) + +.. code-block:: + + r0 r1 r2 E + 0 1.559006 0.9375 0.9375 -75.985033 + 1 1.487538 0.9375 0.9375 -75.983615 + 2 1.623798 0.9375 0.9375 -75.983490 + 3 1.632483 1.0250 0.9375 -75.979965 + 4 1.557867 1.0250 0.9375 -75.979436 + 5 1.409700 0.9375 0.9375 -75.978781 + 6 1.700138 1.0250 0.9375 -75.977620 + 7 1.476613 1.0250 0.9375 -75.975593 + 8 1.626374 1.0250 1.0250 -75.975385 + 9 1.704513 1.0250 1.0250 -75.975163 + 10 1.541272 1.0250 1.0250 -75.972390 + 11 1.775352 1.0250 1.0250 -75.972145 + 12 1.487047 0.9375 0.8500 -75.971909 + 13 1.548639 0.9375 0.8500 -75.971168 + 14 1.325825 0.9375 0.9375 -75.970199 + 15 1.419119 0.9375 0.8500 -75.969622 + 16 1.389076 1.0250 0.9375 -75.968116 + 17 1.562034 1.0250 0.8500 -75.966560 + 18 1.449569 1.0250 1.0250 -75.965868 + 19 1.629860 1.1125 0.9375 -75.965474 + 20 1.491347 1.0250 0.8500 -75.965295 + 21 1.707283 1.1125 0.9375 -75.965147 + 22 1.626153 1.0250 0.8500 -75.964895 + 23 1.345151 0.9375 0.8500 -75.963847 + 24 1.545585 1.1125 0.9375 -75.962611 + 25 1.777507 1.1125 0.9375 -75.962048 + 26 1.696629 1.1125 1.0250 -75.961554 + 27 1.414414 1.0250 0.8500 -75.960651 + 28 1.777931 1.1125 1.0250 -75.960609 + 29 1.608093 1.1125 1.0250 -75.959401 + 30 1.472243 0.8500 0.8500 -75.959264 + 31 1.413498 0.8500 0.8500 -75.959080 + 32 1.851646 1.1125 1.0250 -75.956962 + 33 1.454841 1.1125 0.9375 -75.956255 + 34 1.348701 0.8500 0.8500 -75.955794 + 35 1.265467 0.9375 0.8500 -75.954234 + 36 1.512707 1.1125 1.0250 -75.953858 + 37 1.331587 1.0250 0.8500 -75.952297 + 38 1.638263 1.1125 0.8500 -75.951463 + 39 1.565135 1.1125 0.8500 -75.951179 + 40 1.278128 0.8500 0.8500 -75.948932 + 41 1.704635 1.1125 0.8500 -75.948923 + 42 1.765211 1.1125 1.1125 -75.947854 + 43 1.485602 1.1125 0.8500 -75.947648 + 44 1.703305 1.2000 0.9375 -75.946490 + 45 1.672844 1.1125 1.1125 -75.946405 + 46 1.850020 1.1125 1.1125 -75.946316 + 47 1.783240 1.2000 0.9375 -75.945385 + 48 1.616351 1.2000 0.9375 -75.944547 + 49 1.768423 1.2000 1.0250 -75.942713 + 50 1.926907 1.1125 1.1125 -75.942161 + 51 1.573313 1.1125 1.1125 -75.941700 + 52 1.855776 1.2000 0.9375 -75.941615 + 53 1.676818 1.2000 1.0250 -75.941350 + 54 1.852573 1.2000 1.0250 -75.941111 + 55 1.400056 1.1125 0.8500 -75.940553 + 56 1.522796 1.2000 0.9375 -75.939274 + 57 1.202082 0.8500 0.8500 -75.938122 + 58 1.928892 1.2000 1.0250 -75.936908 + 59 1.578171 1.2000 1.0250 -75.936758 + 60 1.640272 1.2000 0.8500 -75.932031 + 61 1.715568 1.2000 0.8500 -75.931421 + 62 1.558452 1.2000 0.8500 -75.929538 + 63 1.835403 1.2000 1.1125 -75.929147 + 64 1.739586 1.2000 1.1125 -75.928363 + 65 1.783956 1.2000 0.8500 -75.928100 + 66 1.923388 1.2000 1.1125 -75.927074 + 67 1.636355 1.2000 1.1125 -75.924477 + 68 1.470544 1.2000 0.8500 -75.923650 + 69 2.003162 1.2000 1.1125 -75.922477 + 70 1.904048 1.2000 1.2000 -75.910576 + 71 1.804416 1.2000 1.2000 -75.910336 + 72 1.995527 1.2000 1.2000 -75.908080 + 73 1.697056 1.2000 1.2000 -75.907144 + 74 2.078461 1.2000 1.2000 -75.903146 + +As expected, we obtain 75 geometry, energy pairs (interatomic distances in Angstroms, Hartrees) +with the energies sorted in increasing order. We are now ready to do some machine learning on this +dataset. However, we did not set any keywords related to ML so lets do that here: + +.. code-block:: + + input_object.set_keyword({'use_pips':'true'}) + input_object.set_keyword({'training_points':40}) + input_object.set_keyword({'sampling':'structure_based'}) + input_object.set_keyword({'hp_maxit':10}) + input_object.set_keyword({'rseed':0}) + +We set the use of permutation invariant polynomials (pips). We also choose 40 training points out +of our 75 point dataset. We sample the 40 training points with the structure-based sampling algorithm, +and train over 10 different hyperparamter configurations. For reproduciblity, we fix the random seed +of the hyperparameter search. + +We use Gaussian process regression here. We supply a dataset, and input_object for access to the various +keywords we have set, and a ``molecule_type`` which is required for using PIPs. The ``molecule_type`` must be a +string given in the order of most common element first, e.g. A3B2C, A4B, etc. We could alternatively supply +our Molecule object from before by passing ``molecule=molecule_object`` instead. + +.. code-block:: + + gp = peslearn.ml.GaussianProcess("PES.dat", input_object, molecule_type='A2B') + gp.optimize_model() + +.. code-block:: + + Using permutation invariant polynomial transformation for molecule type A2B + Beginning hyperparameter optimization... + Trying 10 combinations of hyperparameters + Training with 40 points (Full dataset contains 75 points). + Using structure_based training set point sampling. + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': None, 'scale_y': 'mm11'} + Test Dataset 84.45 + Full Dataset 73.93 + Median error: 48.46 + Max 5 errors: [148.2 153.1 154.5 171.6 225.3] + Hyperparameters: + {'morse_transform': {'morse': True, 'morse_alpha': 1.9000000000000001}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': 'std', 'scale_y': 'mm01'} + Test Dataset 1323.87 + Full Dataset 978.36 + Median error: 606.51 + Max 5 errors: [1405.8 2066.5 3306. 3561. 3768.6] + ... + ... + ... + + ################################################### + # # + # Hyperparameter Optimization Complete!!! # + # # + ################################################### + + Best performing hyperparameters are: + [('morse_transform', {'morse': False}), ('pip', {'degree_reduction': False, 'pip': True}), ('scale_X', None), ('scale_y', 'mm01')] + Fine-tuning final model architecture... + Hyperparameters: {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': None, 'scale_y': 'mm01'} + Final model performance (cm-1): + Test Dataset 9.38 Full Dataset 6.44 Median error: 1.09 Max 5 errors: [11.8 13.5 18.4 24.8 34.8] + + Saving ML model data... + +We have found a Gaussian process model which has a 9.38 cm-1 RMS prediction error on the test set of +35 points, and 6.44 cm-1 RMSE for the full 75 point dataset. Very nice! The model information is saved +in a directory called ``model1_data``, and if further models are trained (perhaps with different random +seeds and maybe constrained hyperparameters) additional models will be saved in this same format but with +increasing integer values, ``model2_data``, ``model3_data``, etc. + +A neural network can be trained with nearly identical syntax, though one may want to specify additional keywords. + +.. code-block:: + + nn = peslearn.ml.NeuralNetwork("PES.dat", input_object, molecule_type='A2B') + nn.optimize_model() + +More information on this can be found in the `CLI `_ tutorial page. \ No newline at end of file diff --git a/_sources/guides/cli.rst b/_sources/guides/cli.rst new file mode 100644 index 0000000..6b69d01 --- /dev/null +++ b/_sources/guides/cli.rst @@ -0,0 +1,955 @@ +############################################### +PES-Learn Command-Line Interface (CLI) Tutorial +############################################### + +PES-Learn is designed to work similarly to standard electronic structure theory packages: +users can generate an input file with appropriate keywords, run the software, and get a result. +This tutorial covers how to do exactly that. Here we generate a machine-learning model of the PES +of water from start to finish (no knowledge of Python required!). + +******************* +**Generating Data** +******************* + +Defining an internal coordinate grid +#################################### +Currently PES-Learn supports generating points across PESs by displacing in simple internal coordinates +(a 'Z-Matrix'). To do this, we must define a Z-Matrix in the input file. We first create an input file called ``input.dat``: + +.. code-block:: + + vi input.dat + +in the input file we define the Z-Matrix and the displacements: + +.. code-block:: + + O + H 1 r1 + H 1 r2 2 a1 + + r1 = [0.85, 1.30, 10] + r2 = [0.85, 1.30, 10] + a1 = [90.0, 120.0, 10] + +The syntax defining the internal coordinate ranges is of the form [start, stop, number of points], +with the bounds included in the number of points. The angles and dihedrals are always specified in degrees. +The units of length can be anything, though typically Angstrom or Bohr. Dummy atoms are supported (and in fact, +are required if there are 3 or more co-linear atoms, otherwise in that case those internal coordinate configurations +will just be deleted!). Labels for geometry parameters can be anything (RDUM, ROH1, A120, etc) as long as they do not +start with a number. Parameters can be fixed with ``r1 = 1.0``, etc. An equilibruim geometry can be specified in the +order the internal coordinates appear with + +.. code-block:: + + eq_geom = [0.96,0.96,104.5] + +and this will also be included. + +Schemas and Templates +##################### +Before we talk about building the rest of the input file by adding keywords that controll the program, lets first talk +about schemas and template files. PES-Learn has two options to interface to the electronic structure theory +program of choice. The first option is an interface to the QC program suite, namely `QCEngine `_. QCEngine excecutes +quantum chemistry programs with a standardized input and output system (QCSchema). With PES-Learn, all input +specifications are written in the previously defined input file and PES-Learn will create simple python scripts +that contain all the required information for QCEngine to pass to the quantum chemistry program. + +That's great but how do the specifications work? Let's return to the input file that we defined in the last section +and define some keywords to tell PES-Learn to create scripts to generate QCSchemas and run QCEngine. We will put +these and any other keyword after the Z-Matrix and internal coordinate ranges: + +.. code-block:: + + ... + schema_generate = true + schema_prog = psi4 + schema_driver = energy + schema_method = ccsd(t) + schema_basis = cc-pvdz + schema_keywords = "{'reference: 'rhf'}" + +The above keywords are all required for PES-Learn to utilize QCEngine/QCSchema. + +* ``schema_generate`` tells the program that you want to generate scripts to run QCEngine. +* ``schema_prog`` tells what electronic structure theory program to use, QCEngine has a limited number of programs that it can interface to. Check the `QCEngine Docs `_ to see which programs are currently available. +* ``schema_driver`` tells what kind of computation to run. +* ``schema_method`` tells what level of theory to run the computations. +* ``schema_basis`` tells the basis set to use for the computations. +* ``schema_keywords`` tells QCEngine which program specific keywords to pass to the quantum chemistry program. These must be interpretable by the program you are using, and it is best practice to put them in quotes or PES-Learn may change the case. + +For more information about these options and other schema related keywords, check out the `Keywords <../reference/keywords.html>`_ +section, all of the schema related keywords begin with `schema_`. + +The advantage to interfacing with QCEngine is the ease of specifications to run computations, and the parsing +that comes from the QCSchema outputs which is handled automatically by PES-Learn. When we run the code later on +the auto-generated scripts to run QCEngine with geometries corresponding to the defined internal coordinate +grid will be put into their own newly-created sub-directories like this: + +.. code-block:: + + PES_data/1/ + PES_data/2/ + PES_data/3/ + ... + +With each numbered sub-directory in ``PES_data/`` containing a different geometry. +This PES_data folder can then be zipped up and sent to whatever computing resources you want to use. + +Generating schemas is convenient, however, there are a limited number of programs that QCEngine interfaces to. +If you want to use a program that is not in the list of programs interfacable to QCEngine, you can instead use a +*template input file*. A template input file is a file named ``template.dat`` it is a cartesian coordinate input +file for an electronic structure theory package such as Gaussian, Molpro, Psi4, CFOUR, QChem, NWChem, and so on. +It does not matter what package you want to use, it only matters that the ``template.dat`` contains Cartesian +coordinates, and computes an electronic energy by whatever means you wish. PES-Learn will use the template file +to generate a bunch of (Guassian, Molpro, Psi4, etc) input files, each with different Cartesian geometries +corresponding to the above internal coordinate grid. The template input file we will use in this example is a +Psi4 input file which computes a CCSD(T)/cc-pvdz energy: + +.. code-block:: + + molecule h2o { + 0 1 + H 0.00 0.00 0.00 + H 0.00 0.00 0.00 + O 0.00 0.00 0.00 + } + + set { + reference rhf + basis cc-pvdz + } + energy('ccsd(t)') + +The actual contents of the Cartesian coordinates does not matter. Later on when we run the code, the auto-generated +input files with Cartesian geometries corresponding to our internal coordinate grid will be put into their own +sub-directories similarly as above. + +Data Generation Keywords +######################## + +Let's go back to our PES-Learn input file, add a few keywords, and discuss them. + +.. code-block:: python + + O + H 1 r1 + H 1 r2 2 a1 + + r1 = [0.85, 1.30, 10] + r2 = [0.85, 1.30, 10] + a1 = [90.0, 120.0, 10] + + ... + # Data generation-relevant keywords + eq_geom = [0.96,0.96,104.5] + input_name = 'input.dat' + remove_redundancy = true + remember_redundancy = false + grid_reduction = 300 + +Comments (ignored text) can be specified with a ``#`` sign. All entries are case-insensitive. Multiple word phrases +are seperated with an underscore. Text that doesn't match any keywords is simply ignored (in this way, the use of +comment lines is really not necessary unless your are commenting out keyword options). *This means if you spell a +keyword or its value incorrectly it will be ignored.* The first occurance of a keyword will be used. + +* We discussed ``eq_geom`` before, it is a geometry forced into the dataset, and it would typically correspond to the global minimum at the level of theory you are using. It is often a good idea to create your dataset such that the minimum of the dataset is the true minimum of the surface, especially for vibrational levels applications. + +* ``input_name`` tells PES-Learn what to call the electronic structure theory input files (when using template files). `'input.dat'`` is the default value, no need to set it normally. Note that it is surrounded in quotes; this is so PES-Learn doesn't touch it or change anything about it, such as lowering the case of all the letters. + +* ``remove_redundancy`` removes symmetry-redundant geometries from the internal coordinate grid. In this case, there is redundancy in the equivalent OH bonds and they will be removed. + +* ``remember_redundancy`` keeps a cache of redundant-geometry pairs, so that when the energies are parsed from the output files and the dataset is created later on, all of the original geometries are kept in the dataset, with duplicate energies for redundant geometries. If one does not use a permutation-invariant geometry for ML later, this may be useful. + +* ``grid_reduction`` reduces the grid size to the value entered. In this case it means only 300 geometries will be created. This is done by finding the Euclidean distances between all the points in the dataset, and extracting a maximally spaced 'sub-grid' of the size specified. + +Running PES-Learn and generating data +##################################### + +In the directory containing the PES-Learn input file ``input.dat`` (and ``template.dat`` if you so choose to use it), simply run + +.. code-block:: + + python path/to/PES-Learn/peslearn/driver.py + +The code will then ask what you want to do, here we type ``g`` or ``generate`` and hit enter, and this is the output: + +.. code-block:: + + Do you want to 'generate' data, 'parse' data, or 'learn'? g + + 1000 internal coordinate displacements generated in 0.00741 seconds + Total displacements: 1001 + Number of interatomic distances: 3 + Geometry grid generated in 0.06 seconds + Removing symmetry-redundant geometries... Redundancy removal took 0.01 seconds + Removed 450 redundant geometries from a set of 1001 geometries + Reducing size of configuration space from 551 datapoints to 300 datapoints + Configuration space reduction complete in 0.05 seconds + Your PES inputs are now generated. Run the jobs in the PES_data directory and then parse. + Data generation finished in 0.41 seconds + Total run time: 0.41 seconds + +Now the python scripts (for schemas) or input files (for templates) with Cartesian coordinates corresponding to the internal +coordinate grid are placed into a directory call ``PES_data`` with numbered sub-directories containing the unique coordinates. + +.. note:: + + You do not have to use the command line to specify whether you want to ``generate``, ``parse``, or ``learn``, you can instead specify the mode keyword in the input file: + + ``mode = generate`` + + This is at times convenient if computations are submitted remotely in an automated fashion, and the users are not directly interacting with a command line. + +Now that we have built our inputs we are ready to run the computations! + +If you are using schemas, then each of the numbered directories in ``PES_data`` will contain a python script that just needs to be excecuted. +To do this in an automated fashion one might create a simple python script like the following + +.. code-block:: + :linenos: + + import os + os.chdir('PES_data') + for i in range(1,300): + os.chdir(str(i)) + if "output.dat" not in os.listdir('.'): + print(i, end=', ') + os.system('python input.py') + os.chdir('../') + os.chdir('../') + print('Your input scripts have been submitted.') + +If you are working with this method and have compiled PES-Learn from source, make sure than you have QCEngine and QCSchema in your active environemnt, +if you have installed PES-Learn from pip then it should have installed these dependencies already. + +If you are instead working with templates, line 7 of this script can be changed to run your electronic sctructure program instead of Python. +If using Psi4, for example, we can change line 7 to be + +.. code-block:: + + os.system('psi4 input.dat') + +and then run your script. When your jobs have finished you are then able to move on to parsing the data. + +************************ +**Parsing output files** +************************ + +Now that every Psi4 input file has been run, and there is a corresponding ``output.dat`` in each sub-directory +of ``PES_data``, we are ready to use PES-Learn to grab all of the energies, match them with the appropriate +geometries, and create a dataset. + +There are three schemes for parsing output files with PES-Learn +* Automatic parsing from schemas +* User-supplied Python regular expressions (regex) +* cclib + +**Schemas** are very useful and actually parse the data for us. The output is standardized, regardless of +electronic structure program being utilized by QCEngine. The output is a JSON type strucure and the desired +output (energy, gradient, Hessian, etc.) will be in the ``return_result`` object. PES-Learn is able to +pull the result from this using regex. + +**Regular expressions** are a pattern-matching syntax. Though they are somewhat tedious to use, they are +completely general. Using the regular expression scheme requires + +#. Inspecting the electronic structure theory software output file +#. Finding the line where the desired energy is +#. Writing a regular expression to match the line's text and grab the desired energy. + +**cclib** is a Python library of hard-coded parsing routines. It works in a lot of cases. At the time of +writing, cclib supports parsing ``scfenergies``, ``mpenergies``, and ``ccenergies``. These different modes +attempt to find the highest level of theory SCF energy (Hartree-Fock or DFT), highest level of Moller-Plesset +perturbation theory energy, or the highest level of theory coupled cluster energy. Since these are hard-coded +routines that are version-dependent, there is no gurantee it will work! It is also a bit slower than regular +expressions (i.e. milliseconds --> seconds slower) + +Setting parsing keywords in the PES-Learn input file +#################################################### + +When using schemas, parsing the output files is as simple as adding a single keyword to our PES-Learn +``input.dat`` file. + +.. code-block:: + + # Parsing-relevent keywords + energy = schema + +When you are parsing with regex or cclib, it is often a good idea to take a look at a successful output +file in ``PES_data/``. Here is the output file in ``PES_data/1/``, which is the geometry corresponding +to ``eq_geom`` that we defined earlier: + +.. code-block:: + + ************************** + * * + * CCTRIPLES * + * * + ************************** + + + Wave function = CCSD_T + Reference wfn = RHF + + Nuclear Rep. energy (wfn) = 9.168193296244223 + SCF energy (wfn) = -76.026653661887252 + Reference energy (file100) = -76.026653661887366 + CCSD energy (file100) = -0.213480496782495 + Total CCSD energy (file100) = -76.240134158669861 + + Number of ijk index combinations: 35 + Memory available in words : 65536000 + ~Words needed per explicit thread: 2048 + Number of threads for explicit ijk threading: 1 + + MKL num_threads set to 1 for explicit threading. + + (T) energy = -0.003068821713392 + * CCSD(T) total energy = -76.243202980383259 + + + Psi4 stopped on: Thursday, 09 May 2019 01:51PM + Psi4 wall time for execution: 0:00:01.05 + + *** Psi4 exiting successfully. Buy a developer a beer! + +If we were to use cclib, we would put into our PES-Learn ``input.dat`` file: + +.. code-block:: + + # Parsing-relevant keywords + energy = cclib + energy_cclib = ccenergies + +to grab coupled cluster energies. When using cclib, however, the CCSD energies might be +grabbed instead of the CCSD(T) energies. It is always a good idea to check a few of your +enegies after you parse, regardless of which method you are using. + +Let's not look at using Regular expressions (regex) to parse our outputs. One fact is +always very important to keep in mind when using regular expressions in PES-Learn: +**PES-Learn always grabs the last matching entry in the output file.** + +This is good to know, since a pattern may match multiple entries in the output file, +but it's okay as long as you want the *last one*. + +We observe that the energy we want is always contained in a line like + +.. code-block:: + + * CCSD(T) total energy = -76.243202980383259 + +So the general pattern we want to match is ``total energy`` (whitespace) ``=`` (whitespace) +(negative floating point number). We may put into our PES-Learn input file the following regular expression: + + +.. code-block:: + + # Parsing-relevant keywords + energy = regex + energy_regex = 'total energy\s+=\s+(-\d+\.\d+)' + +Here we have taken advantage of the fact that the pattern ``total energy`` does not appear +anymore after the CCSD(T) energy in the output file. The above ``energy_regex`` line matches +the words 'total energy' followed by one or more whitespaces ``\s+``, an equal sign ``=``, +one or more whitespaces ``\s+``, and then a negative floating point number ``-\d+\.\d+`` +which we have necessarily enclosed in parentheses to indicate that we only want to capture +the number itself, not the whole line. This is a bit cumbersome to use, so if this in foreign +to you I recommend trying out various regular expressions via trial and error using +`Regex101 `_ or `Pythex `_ to ensure that the +pattern is matched. + +A few other valid ``energy_regex`` lines would be: + +.. code-block:: + + energy_regex = 'CCSD\(T\) total energy\s+=\s+(-\d+\.\d+)' + +or + +.. code-block:: + + energy_regex = '=\s+(-\d+\.\d+)' + +Note that above we had to "escape" the parentheses with backward slashes since it is a `reserved +character `_. If you want to be safe from parsing +the wrong energy, more verbose is probably better. + +Setting up the input file +######################### + +Here we have added out parsin keywords to out PES-Learn input file. (We could have had these +keywords earlier as well, but to keep things simple I am only adding them when needed.) + +.. code-block:: + + O + H 1 r1 + H 1 r2 2 a1 + + r1 = [0.85, 1.30, 10] + r2 = [0.85, 1.30, 10] + a1 = [90.0, 120.0, 10] + + # Data generation-relevant keywords + eq_geom = [0.96,0.96,104.5] + input_name = 'input.dat' + remove_redundancy = true + remember_redundancy = false + grid_reduction = 300 + schema_generate = true + schema_prog = psi4 + schema_driver = energy + schema_method = ccsd(t) + schema_basis = cc-pvdz + schema_keywords = "{'reference: 'rhf'}" + + # Parsing-relevant keywords + energy = schema + pes_name = 'PES.dat' # name for the output file containing parsed data + sort_pes = true # sort in terms of increasing energy + pes_format = interatomics # could also choose internal coordinates r1, r2, a1 + +Note that the example above is for parsing from schemas, and if you are parsing with cclib +or regex, then you should include the appropriate ``energy``, ``energy_cclib``, and/or ``energy_regex`` +keywords, instead of the schema keywords. + +Parsing the output files and creating a dataset +############################################### + +Just as before, we run PES-Learn + +.. code-block:: + + python path/to/PES-Learn/peslearn/driver.py + +This time choose ``parse`` or ``p`` when prompted: + +.. code-block:: + + Do you want to 'generate' data, 'parse' data, or 'learn'? p + Parsed data has been written to PES.dat + Total run time: 0.38 seconds + +This will compile all of the data necessary for generating machine learning models in +the ``PES.dat`` file, which looks like this: + +.. code-block:: + + r0,r1,r2,E + 1.518123981600,0.960000000000,0.960000000000,-76.243202980383 + 1.455484441900,0.950000000000,0.950000000000,-76.242743191056 + 1.494132369500,1.000000000000,0.950000000000,-76.242037809799 + 1.568831329800,1.000000000000,1.000000000000,-76.241196021922 + 1.494050142500,1.000000000000,1.000000000000,-76.240995054410 + ... + +If you are working with schemas and one of the outputs failed (i.e. the QCSchema ``success`` entry is ``False``) +then PES-Learn will ommit this entry from your ``PES.dat`` file and write the failed directory number +in a file ``errors.txt``. + +************************************************************** +**Creating Auto-Generated Machine Learning models of the PES** +************************************************************** + +Gaussian Process Regression +########################### + +We now have in our working directory a file called ``PES.dat``, created with the routine above. +An auto-optimized machine learning model of the surface can be produced by this dataset. Below +we have added keywords to our PES-Learn input file which are relevant to training a ML model + +.. code-block:: + + O + H 1 r1 + H 1 r2 2 a1 + + r1 = [0.85, 1.30, 10] + r2 = [0.85, 1.30, 10] + a1 = [90.0, 120.0, 10] + + # Data generation-relevant keywords + eq_geom = [0.96,0.96,104.5] + input_name = 'input.dat' + remove_redundancy = true + remember_redundancy = false + grid_reduction = 300 + + # Parsing-relevant keywords + energy = regex + energy_regex = 'total energy\s+=\s+(-\d+\.\d+)' + pes_name = 'PES.dat' + sort_pes = true # sort in terms of increasing energy + pes_format = interatomics # could also choose internal coordinates r1, r2, a1 + + # ML-relevant keywords + ml_model = gp # Use Gaussian Process regression + pes_format = interatomics # Geometry values in the PES file + use_pips = true # Transform interatomic distances into permutation invariant polynomials + hp_maxit = 15 # Train 15 models with hyperparameter optimization, select the best + training_points = 200 # Train with 200 points (out of 300 total) + sampling = structure_based # Sample training set by maximizing Euclidean distances + n_low_energy_train = 1 # Force lowest energy point into training set + + +Note that a minimal working input file would only need the internal coordinate definition (because we +are using PIPs and need to know the atom types!) and the ML relevant keywords: + +.. code-block:: + + O + H 1 r1 + H 1 r2 2 a1 + + # ML-relevant keywords + ml_model = gp # Use Gaussian Process regression + pes_format = interatomics # Geometry values in the PES file + use_pips = true # Transform interatomic distances into permutation invariant polynomials + hp_maxit = 15 # Train 15 models with hyperparameter optimization, select the best + training_points = 200 # Train with 200 points (out of 300 total) + sampling = structure_based # Sample training set by maximizing Euclidean distances + n_low_energy_train = 1 # Force lowest energy point into training set + + +running this input in the same way that we ``generated`` and ``parsed``, now we select ``learn`` or ``l``. +This will try out several models and print the performance statistics in units of wavenumbers (cm :math:`^{-1}`) + +.. code-block:: + + Do you want to 'generate' data, 'parse' data, or 'learn'? l + Using permutation invariant polynomial transformation for molecule type A2B + Beginning hyperparameter optimization... + Trying 15 combinations of hyperparameters + Training with 200 points (Full dataset contains 300 points). + Using structure_based training set point sampling. + Errors are root-mean-square error in wavenumbers (cm-1) + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': 'mm01', 'scale_y': None} + Test Dataset 5.38 + Full Dataset 5.36 + Median error: 4.18 + Max 5 errors: [11.3 11.4 11.9 12.7 13.9] + Hyperparameters: + {'morse_transform': {'morse': True, 'morse_alpha': 2.0}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': 'mm11', 'scale_y': 'mm11'} + Test Dataset 0.94 + Full Dataset 0.77 + Median error: 0.53 + Max 5 errors: [1.9 2. 2. 2. 2.2] + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': 'mm11', 'scale_y': 'mm11'} + Test Dataset 0.55 + Full Dataset 0.51 + Median error: 0.33 + Max 5 errors: [1.2 1.3 1.3 1.5 1.8] + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': 'mm01', 'scale_y': 'std'} + Test Dataset 0.52 + Full Dataset 0.42 + Median error: 0.26 + Max 5 errors: [1.1 1.1 1.1 1.2 1.2] + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': 'std', 'scale_y': None} + Test Dataset 5.38 + Full Dataset 5.36 + Median error: 4.17 + Max 5 errors: [11.4 11.5 11.9 12.7 13.9] + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': 'std', 'scale_y': 'mm01'} + Test Dataset 0.86 + Full Dataset 0.81 + Median error: 0.52 + Max 5 errors: [2. 2. 2.2 2.3 3. ] + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': 'mm11', 'scale_y': 'mm11'} + Test Dataset 0.54 + Full Dataset 0.49 + Median error: 0.35 + Max 5 errors: [1.2 1.2 1.2 1.2 1.4] + Hyperparameters: + {'morse_transform': {'morse': True, 'morse_alpha': 1.2000000000000002}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': 'mm01', 'scale_y': None} + Test Dataset 9.84 + Full Dataset 8.51 + Median error: 6.29 + Max 5 errors: [19.4 20.4 20.5 21.1 25.2] + Hyperparameters: + {'morse_transform': {'morse': True, 'morse_alpha': 1.8}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': None, 'scale_y': 'std'} + Test Dataset 0.28 + Full Dataset 0.24 + Median error: 0.15 + Max 5 errors: [0.7 0.8 0.8 1.2 1.4] + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': None, 'scale_y': 'mm01'} + Test Dataset 0.91 + Full Dataset 0.87 + Median error: 0.57 + Max 5 errors: [2.2 2.2 2.3 2.4 2.8] + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': None, 'scale_y': 'mm01'} + Test Dataset 0.97 + Full Dataset 0.9 + Median error: 0.61 + Max 5 errors: [2.2 2.3 2.4 2.5 2.8] + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': 'mm11', 'scale_y': None} + Test Dataset 5.38 + Full Dataset 5.37 + Median error: 4.15 + Max 5 errors: [11.4 11.5 12. 12.7 13.9] + Hyperparameters: + {'morse_transform': {'morse': True, 'morse_alpha': 1.3}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': 'mm01', 'scale_y': 'mm01'} + Test Dataset 1.37 + Full Dataset 1.06 + Median error: 0.57 + Max 5 errors: [3.2 3.2 3.3 3.5 3.7] + Hyperparameters: + {'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': 'mm11', 'scale_y': None} + Test Dataset 5.7 + Full Dataset 5.68 + Median error: 4.33 + Max 5 errors: [13. 13.8 14.7 14.7 15.1] + Hyperparameters: + {'morse_transform': {'morse': True, 'morse_alpha': 1.5}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': 'mm01', 'scale_y': 'mm01'} + Test Dataset 1.3 + Full Dataset 1.03 + Median error: 0.65 + Max 5 errors: [2.9 2.9 3. 3. 3.1] + + ################################################### + # # + # Hyperparameter Optimization Complete!!! # + # # + ################################################### + + Best performing hyperparameters are: + [('morse_transform', {'morse': True, 'morse_alpha': 1.8}), ('pip', {'degree_reduction': True, 'pip': True}), ('scale_X', None), ('scale_y', 'std')] + Fine-tuning final model architecture... + Hyperparameters: {'morse_transform': {'morse': True, 'morse_alpha': 1.8}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': None, 'scale_y': 'std'} + Final model performance (cm-1): + Test Dataset 0.28 Full Dataset 0.24 Median error: 0.15 Max 5 errors: [0.7 0.8 0.8 1.2 1.4] + + Saving ML model data... + Total run time: 66.25 seconds + +Training with just 200 points, the best model had a RMSE on the 100-point test set of 0.28 cm :math:`^{-1}`, +and the full 300 point dataset had a RMSE of 0.24 cm :math:`^{-1}`. This is absurdly accurate; it's a good +thing we used ``grid_reduction`` back when generating our data to reduce our dataset from 551 points to just 300! +We clearly did not need more than a few hundred points to model this portion of the PES of water; any more +computations would have been unnecessary! This is why it is important to probe how much data one needs along +the surface at a *meaningful but low level of theory*. + +Using the GP Model +------------------ + +After running the above, PES-Learn creates a directory called ``model1data`` (subsequently trained models will +not overwrite this, but instead create new directories ``model2data``, ``model3data``, etc.). Inside this +directory is a variety of files which are self-explanatory. + +The most important file is the auto-generated Python script ``compute_energy.py`` which can be used to evaluate +new energies using the model. It needs to be in the same directory as ``PES.dat`` and ``model.json`` to work. +It contains a function ``pes()`` which takes one or more cartesian or internal coordinate arguments and outputs +one or more energies corresponding to the geometries. If the argument ``cartesian=False`` is set, you must supply +coordinates in the exact same format and exact same order as the model was trained on (i.e. the format in ``PES.dat``). +If the argument ``cartesian=True`` is set, cartesian coordinates are supplied in the same order as given in a +typical ``PES_data`` input file (not the ``template.dat`` file). **Cartesians can only be supplied if the model +was trained on interatomic distances or PIPs of the interatomic distances.** + +The ``compute_energy.py`` file can be imported and used. Here's an example python script ``use_model.py`` which +imports the pes function and evaluates some energies at some cartesian geometries. + +.. code-block:: + + from compute_energy import pes + + cart_geoms = [[0.0000000000, 0.0000000000, 1.1000000000, 0.0000000000, 0.7361215932, -0.4250000000, 0.0000000000, 0.0000000000, 0.0000000000], + [0.0000000000, 0.2000000000, 1.2000000000, 0.0000000000, 0.7461215932, -0.4150000000, 0.0000000000, 0.0000000000, 0.1000000000], + [0.0000000000, 0.1000000000, 1.3000000000, 0.0000000000, 0.7561215932, -0.4350000000, 0.0000000000, 0.0000000000, 0.2000000000]] + + energies1 = pes(cart_geoms) + print(energies1) + + interatomic_geoms = [[1.494050142500,1.000000000000,1.000000000000], + [1.597603916000,1.000000000000,0.950000000000], + [1.418793563200,1.000000000000,0.950000000000]] + + energies2 = pes(interatomic_geoms, cartesian=False) + print(energies2) + +The print statements yield the following output. The energies are in units of Hartrees (which are the unit of +energy in our ``PES.dat`` which the model was trained on). + +.. code-block:: + + [[-76.20462724] + [-76.21835841] + [-76.21467994]] + [[-76.24099496] + [-76.24031118] + [-76.24024971]] + +.. note:: + + Just as in the above example, it is possible to feed in multiple geometric parameters into the ``pes()`` function. + If you have multiple geometries that you would like to feed into this function, it is *much* more efficient to + feed them all into the function at once, rather than in some loop feeding them in one at a time. + +Neural Network Regression +######################### + +Neural networks (NNs) are recommended for training sets of size 1000 and above for efficiency. This is because +the hyperparameter tuning of NNs takes much longer than GPs, so there is an initial up-front cost to training +NNs that GPs do not have. The NN building code can be broken down into three steps: + +* Neural architecture search (NAS) +* Hyperparameter tuning +* Learning rate optimization + +Early stopping is used more aggressively in the first steps than in the last. Therefore, the performance of +models during the NAS and hyperparameter tuning steps should not be taken as final; the training of the models +is being stopped early to save time. + +Batch learning with the L-BFGS optimizer is currently the only option. For high-level regression tasks, it +is far superior to 1st order optimizers such as Adam, SGD, and RMSProp. + +The Neural Architecture Search (NAS) tries out several hidden layer structures. One can override default NAS +hidden layer strucutres with the keyword ``nas_trial_layers`` with the syntax ``nas_trial_layers = [[32], [32,32], [256]]``, +which would try out NNs with a single hidden layer of 32 nodes, two hidden layers with 32 nodes, and a single +hidden layer with 256 nodes. The default NAS space is very large, so if you observe on your first run with the +default NAS space that your dataset does better with a large number of nodes ([256,256] for example) you may +consider restricting the NAS space on future runs using the ``nas_trial_layers`` keyword. There should be at +least 3 hidden layer structures in the NAS space. + +Hyperparameter tuning is similar to the GP model optimizer. The learning rate optimizer is self-explanatory. +There are checks in place to detect performance plateaus (in which learning rate decay triggers), or overfitting +(in which case training is halted). + +For neural networks, a validation set must be specified since they are more prone to overfitting. The validation +points are sampled from all points which are not training set points. If one does not specify a number of validation +points, by default half of the test set points are converted to validation set points. If you dataset has 1000 points +and 800 are used for training, there would by default be 100 validation points and 100 test points. The validation error +is used to optimize hyperparameters, while the test set error is not used for anything, though it is printed in all cases. + +A neural network can be trained with minimal modification of the GP input used previously: + +.. code-block:: + + O + H 1 r1 + H 1 r2 2 a1 + + # ML-relevant keywords + ml_model = nn # Use Neural Network regression + pes_format = interatomics # Geometry values in the PES file + use_pips = true # Transform interatomic distances into permutation invariant polynomials + hp_maxit = 15 # Train 15 models with hyperparameter optimization, select the best + training_points = 200 # Train with 200 points (out of 300 total) + validation_points = 50 # Validate with 50 points (50 left over for testing) + sampling = structure_based # Sample training set by maximizing Euclidean distances + n_low_energy_train = 1 # Force lowest energy point into training set + nas_trial_layers = [[32], [32,32], [64], [16,16,16]] # NAS hidden layer trial structures + +The output from running PES-Learn gives: + +.. code-block:: + + Do you want to 'generate' data, 'parse' data, or 'learn'? l + Using permutation invariant polynomial transformation for molecule type A2B + Number of validation points not specified. Splitting test set in half --> 50% test, 50% validation + Training with 200 points. Validating with 50 points. Full dataset contains 300 points. + Using structure_based training set point sampling. + Errors are root-mean-square error in wavenumbers (cm-1) + + Performing neural architecture search... + + Hidden layer structure: [32] + Hyperparameters: {'morse_transform': {'morse': False}, 'scale_X': {'scale_X': 'std', 'activation': 'tanh'}, 'scale_y': 'std', 'pip': {'degree_reduction': False, 'pip': True}, 'layers': [32]} + Test set RMSE (cm-1): 5.11 Validation set RMSE (cm-1): 5.03 Full dataset RMSE (cm-1): 4.40 + Hidden layer structure: [64] + Hyperparameters: {'morse_transform': {'morse': False}, 'scale_X': {'scale_X': 'std', 'activation': 'tanh'}, 'scale_y': 'std', 'pip': {'degree_reduction': False, 'pip': True}, 'layers': [64]} + Test set RMSE (cm-1): 6.30 Validation set RMSE (cm-1): 4.59 Full dataset RMSE (cm-1): 5.06 + Hidden layer structure: [16, 16, 16] + Hyperparameters: {'morse_transform': {'morse': False}, 'scale_X': {'scale_X': 'std', 'activation': 'tanh'}, 'scale_y': 'std', 'pip': {'degree_reduction': False, 'pip': True}, 'layers': [16, 16, 16]} + Test set RMSE (cm-1): 5.83 Validation set RMSE (cm-1): 6.52 Full dataset RMSE (cm-1): 4.99 + Hidden layer structure: [32, 32] + Hyperparameters: {'morse_transform': {'morse': False}, 'scale_X': {'scale_X': 'std', 'activation': 'tanh'}, 'scale_y': 'std', 'pip': {'degree_reduction': False, 'pip': True}, 'layers': [32, 32]} + Test set RMSE (cm-1): 1.67 Validation set RMSE (cm-1): 1.69 Full dataset RMSE (cm-1): 1.57 + + Neural architecture search complete. Best hidden layer structures: [[32, 32], [32], [16, 16, 16]] + + Beginning hyperparameter optimization... + Trying 15 combinations of hyperparameters + Hyperparameters: + {'layers': (32,), 'morse_transform': {'morse': True, 'morse_alpha': 1.6}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'mm11'} + Test set RMSE (cm-1): 2.98 Validation set RMSE (cm-1): 2.67 Full dataset RMSE (cm-1): 2.94 + Hyperparameters: + {'layers': (32,), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'mm11'}, 'scale_y': 'mm01'} + Test set RMSE (cm-1): 17.35 Validation set RMSE (cm-1): 16.15 Full dataset RMSE (cm-1): 17.24 + Hyperparameters: + {'layers': (32, 32), 'morse_transform': {'morse': True, 'morse_alpha': 1.6}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'mm11'}, 'scale_y': 'mm01'} + Test set RMSE (cm-1): inf Validation set RMSE (cm-1): inf Full dataset RMSE (cm-1): inf + Hyperparameters: + {'layers': (16, 16, 16), 'morse_transform': {'morse': True, 'morse_alpha': 1.9000000000000001}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std'} + Test set RMSE (cm-1): 4.13 Validation set RMSE (cm-1): 4.00 Full dataset RMSE (cm-1): 3.65 + Hyperparameters: + {'layers': (32,), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'mm11'}, 'scale_y': 'std'} + Test set RMSE (cm-1): 1.49 Validation set RMSE (cm-1): 1.42 Full dataset RMSE (cm-1): 1.31 + Hyperparameters: + {'layers': (32, 32), 'morse_transform': {'morse': True, 'morse_alpha': 1.6}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'mm11'}, 'scale_y': 'std'} + Test set RMSE (cm-1): inf Validation set RMSE (cm-1): inf Full dataset RMSE (cm-1): inf + Hyperparameters: + {'layers': (32,), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'mm11'} + Test set RMSE (cm-1): 25623.45 Validation set RMSE (cm-1): 44170.74 Full dataset RMSE (cm-1): 20903.16 + Hyperparameters: + {'layers': (16, 16, 16), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'mm11'} + Test set RMSE (cm-1): 4.87 Validation set RMSE (cm-1): 3.20 Full dataset RMSE (cm-1): 3.10 + Hyperparameters: + {'layers': (32, 32), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std'} + Test set RMSE (cm-1): 0.81 Validation set RMSE (cm-1): 0.82 Full dataset RMSE (cm-1): 0.71 + Hyperparameters: + {'layers': (16, 16, 16), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'mm11'}, 'scale_y': 'std'} + Test set RMSE (cm-1): 2.61 Validation set RMSE (cm-1): 2.43 Full dataset RMSE (cm-1): 2.11 + Hyperparameters: + {'layers': (32, 32), 'morse_transform': {'morse': True, 'morse_alpha': 1.5}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'mm11'}, 'scale_y': 'std'} + Test set RMSE (cm-1): 4.09 Validation set RMSE (cm-1): 3.02 Full dataset RMSE (cm-1): 3.41 + Hyperparameters: + {'layers': (32,), 'morse_transform': {'morse': True, 'morse_alpha': 1.8}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'mm11'}, 'scale_y': 'mm11'} + Test set RMSE (cm-1): 1.99 Validation set RMSE (cm-1): 1.93 Full dataset RMSE (cm-1): 2.23 + Hyperparameters: + {'layers': (16, 16, 16), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'mm01'} + Test set RMSE (cm-1): inf Validation set RMSE (cm-1): inf Full dataset RMSE (cm-1): inf + Hyperparameters: + {'layers': (16, 16, 16), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std'} + Test set RMSE (cm-1): 5.83 Validation set RMSE (cm-1): 6.52 Full dataset RMSE (cm-1): 4.99 + Hyperparameters: + {'layers': (16, 16, 16), 'morse_transform': {'morse': True, 'morse_alpha': 1.6}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'mm11'} + Test set RMSE (cm-1): 2.82 Validation set RMSE (cm-1): 2.70 Full dataset RMSE (cm-1): 2.61 + + ################################################### + # # + # Hyperparameter Optimization Complete!!! # + # # + ################################################### + + Best performing hyperparameters are: + [('layers', (32, 32)), ('morse_transform', {'morse': False}), ('pip', {'degree_reduction': True, 'pip': True}), ('scale_X', {'activation': 'tanh', 'scale_X': 'std'}), ('scale_y', 'std')] + Optimizing learning rate... + Hyperparameters: {'layers': (32, 32), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std', 'lr': 1.0} + Test set RMSE (cm-1): 316275944698408704.00 Validation set RMSE (cm-1): 278706602952744288.00 Full dataset RMSE (cm-1): 269540779801922272.00 + Hyperparameters: {'layers': (32, 32), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std', 'lr': 0.8} + Test set RMSE (cm-1): 5.71 Validation set RMSE (cm-1): 4.43 Full dataset RMSE (cm-1): 3.70 + Hyperparameters: {'layers': (32, 32), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std', 'lr': 0.6} + Test set RMSE (cm-1): 42.92 Validation set RMSE (cm-1): 27.75 Full dataset RMSE (cm-1): 21.25 + Hyperparameters: {'layers': (32, 32), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std', 'lr': 0.5} + Test set RMSE (cm-1): 0.81 Validation set RMSE (cm-1): 0.82 Full dataset RMSE (cm-1): 0.71 + Hyperparameters: {'layers': (32, 32), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std', 'lr': 0.4} + Test set RMSE (cm-1): 1.30 Validation set RMSE (cm-1): 0.98 Full dataset RMSE (cm-1): 1.06 + Hyperparameters: {'layers': (32, 32), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std', 'lr': 0.2} + Test set RMSE (cm-1): 1.50 Validation set RMSE (cm-1): 1.12 Full dataset RMSE (cm-1): 1.19 + Fine-tuning final model... + Hyperparameters: {'layers': (32, 32), 'morse_transform': {'morse': False}, 'pip': {'degree_reduction': True, 'pip': True}, 'scale_X': {'activation': 'tanh', 'scale_X': 'std'}, 'scale_y': 'std', 'lr': 0.5} + Epoch 1 Validation RMSE (cm-1): 2008.26 + Epoch 2 Validation RMSE (cm-1): 719.83 + Epoch 3 Validation RMSE (cm-1): 411.05 + ... + Epoch 355 Validation RMSE (cm-1): 0.95 + Test set RMSE (cm-1): 1.04 Validation set RMSE (cm-1): 0.95 Full dataset RMSE (cm-1): 0.80 + Model optimization complete. Saving final model... + Saving ML model data... + Total run time: 957.76 seconds + +The final results is a Test/Validation/Full dataset RMSE (cm-1) of 1.04, 0.95, and 0.80, respectively. +Not quite as good as the GP models, but still about as accurate as you would ever want it to be! + +Using the NN model +------------------------------- + +The neural networks can be used in the exact same way as the GP models outlined above. The trained +model is easily accessible using the ``compute_energy.py`` file. Model performance and the datasets +are also saved. + +Kernel Ridge Regression +####################### + +Kernel ridge regression (KRR) models have the advantage that they are typically pretty quick to train, even +though the hyperparameter space is considerably larger than the GP or NN space. The disadvantage compared +to GP and NN models is that the KRR models are typically less accurate when generated completely automatically. + +The automated default procedure for KRR models is over a large space, however if a user notices that a +particular type of model is better than others, the ability to reduce the hyperparameter space is available. + +To run the default KRR hyperparameter optimization scheme, we can slightly modify the GP or NN schemes from above: + +.. code-block:: + + O + H 1 r1 + H 1 r2 2 a1 + + # ML-relevant keywords + ml_model = krr # Use Kernel Ridge Regression + kernel = verbose # Use all types of available kernels in hyperparameter optimization + pes_format = interatomics # Geometry values in the PES file + use_pips = true # Transform interatomic distances into permutation invariant polynomials + hp_maxit = 200 # Train 15 models with hyperparameter optimization, select the best + training_points = 200 # Train with 200 points (out of 300 total) + sampling = structure_based # Sample training set by maximizing Euclidean distances + n_low_energy_train = 1 # Force lowest energy point into training set + +Here we set the ``ml_model`` keyword to ``krr`` and the ``kernel = verbose`` option was added. +``kernel = verbose`` tells PES-Learn to use every type of available kernel for hyperparameter optimization. +This does include quite a few options so it might be good to start with this option and then look at the +results and see which kernels work best and then narrow your search. Alternatively you could increase the number of +hyperparameter optimizations with ``hp_maxit``. Note that the extent of the hyperparameter space for KRR gives +over 100,000 possibilities with the ``kernel`` keyword set to ``verbose``! + +This can be excecuted in the same way as the GP or NN models and gives similar output which has been ommited here to reduce +space. The main difference is the added R :math:`^2` calculation that gets printed with each hyperparameter optimization. + +If you find a kernel that works well and you want to reduce the hyperparameter space to optimize over, you can +modify the ``kernel`` keyword to be ``precomputed`` and add an additional keyword ``precomputed_kernel =``. +For more information about using precomputed kernels, check out the KRR Examples page (link to be added). + +Using the KRR model +------------------- + +The neural networks can be used in the exact same way as the GP or NN models outlined above. The trained model +is easily accessible using the ``compute_energy.py`` file. Model performance and the datasets are also saved. + +Analyzing model performance using Python +######################################## + +One can use Python to further analyze the performance of a PES-Learn ML model. Here's a simple example +of how to evaluate the error of a PES-Learn ML model as a function of energy relative to the global minimum. +The following python file ``analyze.py`` must be in the same directory as the auto-generated ``compute_energy.py`` +file, the dataset file ``PES.dat``, and the saved ML model file ``model.json``, ``model.pt``, or ``model.joblib`` +depending on the type of ML method used to build the model. + +.. code-block:: + + from compute_energy import pes + import pandas as pd + + # load data + full_dataset = pd.read_csv('PES.dat') + # Split data into column arrays of geometries and energies + geoms = full_dataset.values[:, :-1] + energies = full_dataset.values[:, -1].reshape(-1,1) + + # Geometries are ready to be sent through the model + predicted_energies = pes(geoms, cartesian=False) + + # Prepare a plot of energy vs prediction error + relative_energies = (energies - energies.min()) + errors = predicted_energies - energies + + + # Plot error distribution + import matplotlib.pyplot as plt + relative_energies *= 627.509 # convert to kcal/mol + errors *= 627.509 + plt.scatter(relative_energies, errors) + plt.axhline(color='black') + plt.xlabel('Energy (kcal/mol)') + plt.ylabel('Prediction Error (kcal/mol)') + plt.show() + +.. figure:: plot.png diff --git a/_sources/guides/data_gen.rst b/_sources/guides/data_gen.rst new file mode 100644 index 0000000..af6bb69 --- /dev/null +++ b/_sources/guides/data_gen.rst @@ -0,0 +1,13 @@ +######################## +Data Generation Examples +######################## + +*************************** +**Generating with Schemas** +*************************** + + + +***************************** +**Generating with Templates** +***************************** diff --git a/_sources/guides/examples.rst b/_sources/guides/examples.rst new file mode 100644 index 0000000..3a5c309 --- /dev/null +++ b/_sources/guides/examples.rst @@ -0,0 +1,18 @@ +######## +Examples +######## + +The following examples cover some specifics for each machine learning model type (GP, NN, KRR) +along with some other useful examples. Each example has some different keyword specifics and methods covered as well. + +Before checking out the examples, it is recommended to take a look at the +`Tutorials `_ page to get an understanding of how PES-Learn works and the +different methods of which to use PES-Learn. + +.. toctree:: + :maxdepth: 1 + + Gaussian Process (GP) + Neural Network (NN) + Kernel Ridge Regression (KRR) + Data Generation diff --git a/_sources/guides/ext_data.rst b/_sources/guides/ext_data.rst new file mode 100644 index 0000000..5036014 --- /dev/null +++ b/_sources/guides/ext_data.rst @@ -0,0 +1,203 @@ +###################################################### +Training models with datasets Not created by PES-Learn +###################################################### + +PES-Learn supports builting machine learning (ML) models from user-supplied datasets in many flexible formats. +This tutorial covers all of the different kinds of datasets which can be loaded in and used. + +*************************** +**Supported Dataset Types** +*************************** + +Cartesian Coordinates +##################### + +When PES-Learn imports Cartesian coordinate files, it re-orders the atoms to its standard ordering scheme. +This was found to be necessary in order to enable the use of permutation invariant polynomials with externally +supplied datasets. PES-Learn's standard atom order sorts elements by most common occurance, with an alphabetical +tiebraker. For example, if the Cartesian coordinates of acetate (:math:`C_2H_3O_2`) were given in the order +C,C,H,H,H,O,O, they would be automatically re-ordered to :math:`H_3C_2O_2`. + +PES-Learn uses the set of interatomic distances for the geometries, which are defined to be the row-wise order +of the interatomic distance matrix in standard order: + +.. code-block:: + + H H H C C O O + H + H r0 + H r1 r2 + C r3 r4 r5 + C r6 r7 r8 r9 + O r10 r11 r12 r13 r14 + O r15 r16 r17 r18 r19 r20 + +Thus, in all the following water examples, the HOH atom order is internally reordered to HHO. + +The "standard" way to express geometry, energy pairs with Cartesian coordinates is the following: + +.. code-block:: + + 3 + -76.02075832627291 + H 0.000000000000 -0.671751442127 0.596572464600 + O -0.000000000000 0.000000000000 -0.075178977527 + H -0.000000000000 0.671751442127 0.596572464600 + + 3 + -76.0264333762269331 + H 0.000000000000 -0.727742220982 0.542307610016 + O -0.000000000000 0.000000000000 -0.068340619196 + H -0.000000000000 0.727742220982 0.542307610016 + + 3 + -76.0261926533675592 + H 0.000000000000 -0.778194442078 0.483915467021 + O -0.000000000000 0.000000000000 -0.060982147482 + H -0.000000000000 0.778194442078 0.483915467021 + +Here, there is a number indicating the number of atoms, an energy on its own line in Hartrees, +and Cartesian coordinates in Angstroms. + +Flexibility of Cartesian Coordinate input +----------------------------------------- + +* The **atom number** is optional + +.. code-block:: + + -76.02075832627291 + H 0.000000000000 -0.671751442127 0.596572464600 + O -0.000000000000 0.000000000000 -0.075178977527 + H -0.000000000000 0.671751442127 0.596572464600 + + -76.0264333762269331 + H 0.000000000000 -0.727742220982 0.542307610016 + O -0.000000000000 0.000000000000 -0.068340619196 + H -0.000000000000 0.727742220982 0.542307610016 + + -76.0261926533675592 + H 0.000000000000 -0.778194442078 0.483915467021 + O -0.000000000000 0.000000000000 -0.060982147482 + H -0.000000000000 0.778194442078 0.483915467021 + +* **Blank lines** between each datablock are optional + +.. code-block:: + + -76.02075832627291 + H 0.000000000000 -0.671751442127 0.596572464600 + O -0.000000000000 0.000000000000 -0.075178977527 + H -0.000000000000 0.671751442127 0.596572464600 + -76.0264333762269331 + H 0.000000000000 -0.727742220982 0.542307610016 + O -0.000000000000 0.000000000000 -0.068340619196 + H -0.000000000000 0.727742220982 0.542307610016 + -76.0261926533675592 + H 0.000000000000 -0.778194442078 0.483915467021 + O -0.000000000000 0.000000000000 -0.060982147482 + H -0.000000000000 0.778194442078 0.483915467021 + +* Your **whitespace delimiters** do not matter at all, and can be completely erratic, if you're into that: + +.. code-block:: + + -76.02075832627291 + H 0.000000000000 -0.671751442127 0.596572464600 + O -0.000000000000 0.000000000000 -0.075178977527 + H -0.000000000000 0.671751442127 0.596572464600 + -76.0264333762269331 + H 0.000000000000 -0.727742220982 0.542307610016 + O -0.000000000000 0.000000000000 -0.068340619196 + H -0.000000000000 0.727742220982 0.542307610016 + -76.0261926533675592 + H 0.000000000000 -0.778194442078 0.483915467021 + O -0.000000000000 0.000000000000 -0.060982147482 + H -0.000000000000 0.778194442078 0.483915467021 + +* You can use Bohr instead of Angstroms (just remember the model is trained in terms of Bohr when using it in the future!), and you can use whatever energy unit you want (though, keep in mind PES-Learn assumes it is Hartrees when converting units to wavenumbers (cm :math:`^{-1}`)) + +Note that you don't need to use the ``units=bohr`` keyword when training a ML model on this dataset, this keyword is for using Bohr units +when generating schemas. + +Arbitrary Internal Coordinates +############################## + +.. note:: + + The keyword option ``use_pips`` should be set to ``false`` when using your own internal coordinates, + unless the coordinates correspond to the standard order PES-Learn uses for interatomic distances, described above. + +For internal coordinates, the first line requires a series of geometry parameter labels, with the last column being +the energies labeled with E. One can use internal coordinates with comma or whitespace delimiters. A few examples: + + + +.. code-block:: + + a1,r1,r2,E + 104.5,0.95,0.95,-76.026433 + 123.0,0.95,0.95,-76.026193 + 95.0,0.95,0.95,-76.021038 + +.. code-block:: + + a1 r1 r2 E + 104.5 0.95 0.95 -76.026433 + 123.0 0.95 0.95 -76.026193 + 95.0 0.95 0.95 -76.021038 + +.. code-block:: + + r0 r1 r2 E + 1.4554844420 0.9500000000 0.9500000000 -76.0264333762 + 1.5563888842 0.9500000000 0.9500000000 -76.0261926534 + 1.6454482672 0.9500000000 0.9500000000 -76.0210378425 + +**************************************** +**Creating ML models with the datasets** +**************************************** + +Using an external dataset called ``dataset_name`` is the same whether it is a Cartesian coordinate or +internal coordinate file. + +With the Python API: + +.. code-block:: python + + import peslearn + + input_string = (""" + use_pips = false + hp_maxit = 15 + training_points = 500 + sampling = structure_based + """) + + gp = peslearn.ml.GaussianProcess("dataset_name", input_obj) + gp.optimize_model() + +Using a Neural Network: + +.. code-block:: python + + nn = peslearn.ml.NeuralNetwork("dataset_name", input_obj) + nn.optimize_model() + +Using the commane line interface: + +.. code-block:: + + use_pips = false + hp_maxit = 15 + training_points = 1000 + sampling = smart_random + ml_model = gp + pes_name = 'dataset_name' + +Using the Python API, one can even partition and supply their own training, validation, and testing datasets: + +.. code-block:: python + + nn = peslearn.ml.NeuralNetwork('full_dataset_name', input_obj, train_path='my_training_set', valid_path='my_validation_set', test_path='my_test_set') + nn.optimize_model() \ No newline at end of file diff --git a/_sources/guides/faq.rst b/_sources/guides/faq.rst new file mode 100644 index 0000000..e014b0f --- /dev/null +++ b/_sources/guides/faq.rst @@ -0,0 +1,59 @@ + +Frequently Asked Questions +========================== +#. **How do I install PES-Learn?** + + * Check out the installation guide `here <../started/instalation.html>`_ for information on several different ways to install PES-Learn. + +#. **How do I use PES-Learn?** + + * The code can be used in two formats, either with an input file ``input.dat`` or with the Python API. See Tutorials section for examples. If an input file is created, one just needs to run ``python path/to/PES-Learn/peslearn/driver.py`` while in the directory containing the input file. To use the Python API, create a python file which imports peslearn ``import peslearn``. If you have compiled from source, this may require the package to be in your Python path: ``export PYTHONPATH="absolute/path/to/directory/containing/peslearn"``. This can be executed on the command line or added to your shell intializer (e.g. ``.bashrc```) for more permanent access. + +#. **Why is data generation so slow?** + + * First off, the data generation code performance was improved 100-fold in `this pull request `_, July 17th, 2019. Update to this version if data generation is slow. Also, if one is generating a lot of points (1-10 million) one can expect slow performance when using ``grid_reduction = x`` for large values of x (20,000-100,000). Multiplying the grid increments together gives the total number of points, so if there are 6 geometry parameters with 10 increments each thats 10^6 internal coordinate configurations. If you are not removing redundancies with ``remove_redundancy=false`` and reducing the grid size to some value (e.g. ``grid_reduction=1000``) it is recommended to only generate tens of thousands of points at a time. This is because writing many directories/files can be quite expensive. If you are removing redundancies and/or filtering geometries, it is not recommended to generate more than a few million internal coordinate configurations. Finally, the algorithm behind ``remember_redundancies=true`` and ``grid_reduction = 10000`` can be slow in some circumstances. + +#. **Why is my Machine learning model so bad?** + + * 95% of the time it means the dataset is bad. Open the dataset and look at the energies. If it is a PES-Learn generated dataset, the energies are in increasing order by default (can be disabled with ``sort_pes=false``.) Scrolling through the dataset, the energies should be smoothly increasing. If there are large jumps in the energy values (typcially towards the end of the file) these points are probably best deleted. If the dataset looks good, the ML algorithm probably just needs more training points in order to model the dimensionality and features of the surface. Either that, or PES-Learn's automated ML model optimization routines are just not working for your use case. + +#. **Why is training machine learning models so slow?** + + * Machine learning can be slow sometimes, especially when working with very large datasets. However there are a few things you can do to speed up the process: + - Train over less hyperparameter iterations + + * Ensure multiple cores/threads are being used by your CPU. This can be done by checking which BLAS library NumPy is using: + * Open an interactive python session with ``python`` and then ``import numpy as np`` followed by ``np.show_config()``. If this displays a bunch of references to ``mkl``, then NumPy is using Intel MKL. If this displays a bunch of references to ``openblas`` then Numpy is using OpenBLAS. If Numpy is using MKL, you can control CPU usage with the environment variable ``MKL_NUM_THREADS=4`` or however many physical cores your CPU has (this is recommended by Intel; do not use hyperthreading). If Numpy is using OpenBLAS, you can control CPU usage with ``OMP_NUM_THREADS=8`` or however many threads are available. In bash, environment variables can be set by typing ``export OMP_NUM_THREADS=8`` into the command line. Note that instabilities such as memory leaks due to thread-overallocation can occur if *both* of these environment variables are set depending on your configuration (i.e., if one is set to 4 or 8 or whatever, make sure to set the other to =1). + + * Use an appropriate number of training points for the ML algorithm. + * Gaussian processes scale poorly with the number of training points. Any more than 1000-2000 is unreasonable on a personal computer. If submitting to some external computing resource, anything less than 5000 or so is reasonable. Use neural networks, or kernel ridge regression for large training sets. If it is still way too slow, you can try to constrain the neural networks to use the Adam optimizer instead of the BFGS optimizer. + +#. **How do I use this machine learning model?** + + * When a model is finished training PES-Learn exports a folder ``model1_data`` which contains a bunch of stuff including a Python code ``compute_energy.py`` with convenience function ``pes()`` for evaluating energies with the ML model. Directions for use are written directly into the ``compute_energy.py`` file. The convenience function can be imported into other Python codes that are in the same directory with ``from compute_energy import pes``. This is also in principle accessible from codes written in other programming languages such as C, C++ through their respective Python APIs, though these can be tricky to use. + +#. **What are all these hyperparameters?** + + * ``scale_X`` is how each individual input (geometry parameter) is scaled. ``scale_y`` is how the energies (outputs) are scaled. + * ``std`` is standard scaling, each column of data is scaled to a mean of 0 and variance of 1. + + * ``mm01`` is minmax scaling, each column of data is scaled such that it runs from 0 to 1 + + * ``mm11`` is minmax scaling with a range -1 to 1 + + * ``morse`` is whether interatomic distances are transformed into morse variables :math:`r_1 \rightarrow e^{r_1/\alpha}` + + * ``pip`` stands for permutation invariant polynomials; i.e. the geometries are being transformed into a permutation invariant representation using the fundamental invariants library. + + * ``degree_reduce`` is when each fundamental invariant polynomial result is taken to the :math:`1/n` power where :math:`n` is the degree of the polynomial. + + * ``layers`` is a list of the number of nodes in each hidden layer of the neural network. + +#. **How many points do I need to generate?** + + * It's very hard to say what size of training set is required for a given target accuracy; it depends on a lot of things. First, the application: if you are doing some variational computation of the vibrational energy levels and only want the fundamentals, you might be able to get away with less points because you really just need a good description of the surface around the minimum. If one wants high-lying vibrational states with VCI, the surface needs a lot more coverage, and therefore more points. If the application involves a reactive potential energy surface across several stationary points, even more points are needed. The structure of the surface itself can also influence the number of points needed. You don't know until you try. For a given system, one should try out a few internal coordinate grids, reduce them to some size with ``grid_reduction``, compute the points at a low level of theory, and see how well the models perform. This process can be automated with the Python API. + +#. **How big can the molecular system be?** + + * No more than 5-6 atoms for 'full' PESs. Any larger than that, and generating data by displacing in internal coordinates is impractical (if you have 6 atoms and want 5 increments along each internal coordinate, that's already ~240 million points). This is just an unfortunate reality of high-dimensional spaces: ample coverage over each coordinate and all possible coordinate displacement couplings requires an impossibly large grid of points for meaningful results. One can still do large systems if they only scan over some of the coordinates. For example, you can do relaxed scans across the surface, fixing just a few internal coordinates and relaxing all others through geometry optimization at each point, and creating a model of this 'sub-manifold' of the surface is no problem (i.e., train on the fixed coordinate parameters and 'learn' the relaxed energies). This is useful for inspecting reaction coordinates/reaction entrance channels, for example. Future releases will support including gradient information in training the model, and this may allow for slightly larger systems and smaller dataset sizes. In theory, gradients can give the models more indication of the curvature of the surface with less points. + diff --git a/_sources/guides/gp_ex.rst b/_sources/guides/gp_ex.rst new file mode 100644 index 0000000..2cbd79c --- /dev/null +++ b/_sources/guides/gp_ex.rst @@ -0,0 +1,4 @@ +########################### +Gaussian Process Regression +########################### + diff --git a/_sources/guides/guide.rst b/_sources/guides/guide.rst new file mode 100644 index 0000000..6dbe212 --- /dev/null +++ b/_sources/guides/guide.rst @@ -0,0 +1,12 @@ + + +User Guides +=========== + +.. toctree:: + :maxdepth: 2 + + Tutorials + Frequently Asked Questions + Examples + diff --git a/_sources/guides/krr_ex.rst b/_sources/guides/krr_ex.rst new file mode 100644 index 0000000..f4bbae8 --- /dev/null +++ b/_sources/guides/krr_ex.rst @@ -0,0 +1,153 @@ +####################### +Kernel Ridge Regression +####################### + +Kernel Ridge Regression in PES-Learn is done via interface to `scikit-learn `_ . +At the time of writing this, scikit-learn has six options for kernel functions to use with kernel ridge regresstion (KRR). +PES-Learn implements five of these options, polynomial, RBF, Laplacian, Sigmoid, and cosine. When chosing a verbose +kernel with the keyword ``kernel = verbose``, PES-Learn will search the hyperparameter space of all five of these kernels, some of which +have additional options (such as degree of polynomial) which makes the hyperparameter space very large. Because of this it is recommended +to do an initial search with the verbose space and then narrow down the search with a ``precomputed`` kernel. The following +example covers just this. If you would like to work along with this example, the ``PES.dat`` file is available `here `_ to copy. + +.. note:: + + PES-Learn does not support the sixth kernel available with scikit-learn, chi^2, with the ``kernel`` keyword set to ``verbose``, + but if the user so chooses the option is still available with a ``precomputed kernel``. This kernel is not in the ``verbose`` set + because it typically is a poor description of potential energy surfaces, and was left out to reduce the hyperparameter space. + +********************* +Verbose Kernel Search +********************* + +Let us assume that we have already generated data and parsed it to a file ``PES.dat`` (see `CLI `_ for tips on doing this). +In this example we are examining the PES of the water dimer at MP2/6-31+G**, our single point energies were run with Psi4, and our ``PES.dat`` +looks like this: + +.. code-block:: + + r0,r1,r2,r3,r4,r5,r6,r7,r8,r9,r10,r11,r12,r13,r14,E + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.963684516800,5.230357990000,5.312408594200,5.375381443600,5.694425695800,5.744200549400,-148.80832244761734 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.957842687500,5.168189668400,5.317748361000,5.379703357400,5.650727044700,5.699458003200,-148.80832802926432 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.964853815800,5.259243598200,5.308560352700,5.372087089700,5.726738564900,5.778198657600,-148.80833921708614 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.856548656300,5.125227560200,5.206358341000,5.270299165700,5.580693108000,5.648377814800,-148.80842398247543 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.850737828400,5.063478368600,5.210650713200,5.274891032200,5.534120397300,5.601491987300,-148.80842822074243 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.846094655800,5.030456998800,5.211506356100,5.272612122600,5.510508312600,5.557029710400,-148.80842874416982 + ... + +In the generation of this data, the number of data points was reduced to 1500. Let's examine this dataset with KRR using a ``verbose`` +hyperparameter space since we don't know much about the PES initially. We add the following keywords to our ``input.dat`` file to generate a +KRR surface: + +.. code-block:: + + # Machine learning keywords + ml_model = krr + hp_maxit = 500 + kernel = verbose + sampling = structure_based + use_pips = true + +Here we tell PES-Learn that we want to create a machine learning model with KRR, allow it to run over 500 hyperparameter optimizations, do a verbose +kernel hyperparameter search, use structure based sampling to split training and test sets, and use permutationally invariant polynomials (PIPs). + +We run this with PES-Learn and it will print the hyperparameter optimizations and run over the iterations given in ``hp_maxit``. Of the iterations +it will find the one with the lowest dataset error and return that collection of hyperparameters at the end: + +.. code-block:: + + Best performing hyperparameters are: + [('alpha', 1e-06), ('kernel', {'degree': None, 'gamma': None, 'ktype': 'laplacian'}), ('morse_transform', {'morse': True, 'morse_alpha': 1.0}), ('pip', {'degree_reduction': False, 'pip': True}), ('scale_X', None), ('scale_y', 'std')] + Fine-tuning final model... + Hyperparameters: {'alpha': 1e-06, 'kernel': {'degree': None, 'gamma': None, 'ktype': 'laplacian'}, 'morse_transform': {'morse': True, 'morse_alpha': 1.0}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': None, 'scale_y': 'std'} + Final model performance (cm-1): + R^2 0.9999999878503739 + Test Dataset 22.87 Full Dataset 10.23 Median error: 0.25 Max 5 errors: [ 80.1 139.7 149.3 150.1 155.9] + + Model optimization complete. Saving final model... + Saving ML model data... + Total run time: 495.87 seconds + +The errors are printed in wavenumbers (cm^-1) and we see that the best performing hyperparameters tested give an average error of 10.23 cm^-1 for the full dataset. + +PES-Learn generated a model that uses these hyperparameters that can be used to make predictions about the given PES. Before we get to that, however, lets see if we can +generate a better ML model with a bit of fine-tuning. + +Let's now build a ``precomputed`` kernel with some of the best performing hyperparameters to narrow our hyperparameter space and hopefully build a +better model. From the hyperparameter optimizations, (not shown because of length) it appears the polynomial and Laplacian kernels performed well +with respect to errors, so lets examine them separately. It is important to note that when using a precomputed kernel that includes a polynomial type +kernel it is recommended to optimize the hyperparameters for that kernel separately. The polynomial kernel takes another hyperparameter, the degree +of the polynomial. If you try to optimize multiple kernel functions at once with the degree hyperparameter, the optimization scheme will try and +find trends between degree and performance with other kernels being used. This will a.) build a larger hyperparameter space and b.) could skew +results with trends that don't exist. This is explicitly accounted for with the ``verbose`` kernel option, but not with a ``precomputed`` kernel. +As such we will try to build two separate models, one with a polynomial kernel and one with a Laplacian. Let us first do this for a polynomial kernel, +we change our input to the following for a precomputed kernel: + +.. code-block:: + + # Machine learning keywords + ml_model = krr + hp_maxit = 500 + kernel = precomputed + precomputed_kernel = {'kernel': ['polynomial'], 'degree': ['uniform', 1, 6, 1]} + sampling = structure_based + use_pips = true + +We have changed ``kernel`` to ``precomputed`` and set the ``precomputed_kernel`` option to a dicitonary of options for our kernel. By setting the +first option in degree to 'uniform' that tells PES-Learn (and by extension HyperOpt) to use degrees from 1 to 6, stepping by 1 each time. This +means that hyperparameter optimizations will examine polynomials of degree 1, 2, 3, 4, 5, and 6. Equivalently, we could leave out the 'uniform' option +and set ``precomputed_kernel = {'kernel': ['polynomial'], 'degree': [1, 2, 3, 4, 5, 6]}``. Leaving out 'uniform' allows specifications for exactly +which degree(s) to examine. + +Let's now run this with the precomputed polynomial kernel and see what that results us. + +.. code-block:: + + Best performing hyperparameters are: + [('alpha', 1e-06), ('degree', 6.0), ('gamma', None), ('kernel', 'polynomial'), ('morse_transform', {'morse': True, 'morse_alpha': 1.2000000000000002}), ('pip', {'degree_reduction': False, 'pip': True}), ('scale_X', 'std'), ('scale_y', 'mm01')] + Fine-tuning final model... + Hyperparameters: {'alpha': 1e-06, 'degree': 6.0, 'gamma': None, 'kernel': 'polynomial', 'morse_transform': {'morse': True, 'morse_alpha': 1.2000000000000002}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': 'std', 'scale_y': 'mm01'} + Final model performance (cm-1): + R^2 0.999999887725274 + Test Dataset 69.53 Full Dataset 45.16 Median error: 21.14 Max 5 errors: [162.8 183.3 205.6 293.8 740.3] + + Model optimization complete. Saving final model... + Saving ML model data... + Total run time: 494.81 seconds + +It looks like this didn't do quite as well as we had hoped, so let's try the Laplacian kernel now. Let's change the keywords in our input.dat again: + +.. code-block:: + + ... + precomputed_kernel = {'kernel': ['laplacian']} + ... + +Let's run it and see what it gets us: + +.. code-block:: + + Best performing hyperparameters are: + [('alpha', 1e-06), ('degree', 1), ('gamma', None), ('kernel', 'laplacian'), ('morse_transform', {'morse': True, 'morse_alpha': 1.0}), ('pip', {'degree_reduction': False, 'pip': True}), ('scale_X', None), ('scale_y', 'std')] + Fine-tuning final model... + Hyperparameters: {'alpha': 1e-06, 'degree': 1, 'gamma': None, 'kernel': 'laplacian', 'morse_transform': {'morse': True, 'morse_alpha': 1.0}, 'pip': {'degree_reduction': False, 'pip': True}, 'scale_X': None, 'scale_y': 'std'} + Final model performance (cm-1): + R^2 0.9999999878503739 + Test Dataset 22.87 Full Dataset 10.23 Median error: 0.25 Max 5 errors: [ 80.1 139.7 149.3 150.1 155.9] + + Model optimization complete. Saving final model... + Saving ML model data... + Total run time: 515.5 seconds + +We get the same answer as we initially did. This is a good indication that this may be the best model KRR can make, unless we drastically expand the hyperparameter space. +You may notice some of the other hyperparameters, like gamma and alpha which can also be set with a precomputed kernel. show how to do this along with other hps bellow ian + + + + +KRR example with precomputed_kernel (then link from cli (and maybe api)) + +{'kernel': ['rbf','polynomial'] + + + diff --git a/_sources/guides/nn_ex.rst b/_sources/guides/nn_ex.rst new file mode 100644 index 0000000..9557376 --- /dev/null +++ b/_sources/guides/nn_ex.rst @@ -0,0 +1,3 @@ +############## +Neural Network +############## diff --git a/_sources/guides/pes.rst b/_sources/guides/pes.rst new file mode 100644 index 0000000..8df5c25 --- /dev/null +++ b/_sources/guides/pes.rst @@ -0,0 +1,1512 @@ +######## +PES file +######## + +The following file ``PES.dat`` is the dataset used in the `GP `_, `NN `_, and `KRR `_ examples. +To follow along with the examples copy it (with the copy button) and paste it by itself into a file ``PES.dat`` in the same directory +of your file ``input.dat`` or ``input.py``. + +.. code-block:: + + r0,r1,r2,r3,r4,r5,r6,r7,r8,r9,r10,r11,r12,r13,r14,E + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.963684516800,5.230357990000,5.312408594200,5.375381443600,5.694425695800,5.744200549400,-148.80832244761734 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.957842687500,5.168189668400,5.317748361000,5.379703357400,5.650727044700,5.699458003200,-148.80832802926432 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.964853815800,5.259243598200,5.308560352700,5.372087089700,5.726738564900,5.778198657600,-148.80833921708614 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.856548656300,5.125227560200,5.206358341000,5.270299165700,5.580693108000,5.648377814800,-148.80842398247543 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.850737828400,5.063478368600,5.210650713200,5.274891032200,5.534120397300,5.601491987300,-148.80842822074243 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.846094655800,5.030456998800,5.211506356100,5.272612122600,5.510508312600,5.557029710400,-148.80842874416982 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.741469700200,4.942651067900,5.106001289700,5.170204019600,5.420213009000,5.487501744200,-148.80855570275 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.749413111500,5.020182224600,5.101506783000,5.164177441600,5.485811813500,5.534327013400,-148.8085565926984 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.643427685400,4.943491802700,4.991990033200,5.055501822300,5.396921559300,5.464756032900,-148.80869002630072 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.636533377600,4.854374132700,4.999769657000,5.063895925100,5.325536117500,5.393662184200,-148.8086909051618 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.529434035100,4.749995211800,4.895431882900,4.959369219900,5.229126997700,5.296664787900,-148.80885587979483 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.535143058400,4.810369130100,4.890871676100,4.954435963500,5.277199073200,5.344603846400,-148.80885656725226 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.420211670800,4.629897885800,4.794754963700,4.855581387700,5.141035858900,5.187268545000,-148.80905854048086 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.429143795300,4.733415163100,4.782091721300,4.845271036300,5.213455755700,5.278451136500,-148.80906368741884 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.310740536000,4.509866759600,4.687582133700,4.751339130900,5.008120186100,5.074920649000,-148.80924034101912 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.317071723500,4.556984234600,4.688307746100,4.749552991000,5.068688076700,5.115533949800,-148.8092673830063 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.322001918100,4.628521560200,4.677257949100,4.739946865800,5.121045297000,5.170009454300,-148.80927918454822 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.203680724200,4.406183819900,4.581903924700,4.645686708900,4.900841745600,4.968588774300,-148.80945762679085 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.212761947200,4.482265340100,4.578564681000,4.640081952400,4.972421172500,5.018009080600,-148.8094748536118 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.214860090800,4.523733385600,4.571975768000,4.634876790800,5.003406990500,5.069476426500,-148.80947847064718 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.096625254600,4.302670415400,4.481549736700,4.544632096200,4.826366691600,4.890575599700,-148.8097241750633 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.106607855300,4.392038771600,4.471987965800,4.534889636000,4.883431989000,4.949374168600,-148.80972691014503 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.102861942100,4.348897709600,4.478343271200,4.539071516400,4.861581271200,4.906416274300,-148.80973578601086 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,3.989574476800,4.199339083300,4.375675784700,4.435047040600,4.716918693700,4.758851004800,-148.80999944463474 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,3.997273347200,4.259657255400,4.372675730700,4.433533308400,4.777164745100,4.822158084500,-148.81002157563245 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,4.000576601500,4.314504040700,4.362686569700,4.425213676400,4.813229832200,4.877534079100,-148.81002628125688 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.882528778900,4.096203602500,4.272456853300,4.335368816100,4.623445399500,4.688391361200,-148.81030113102202 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.888660527900,4.141443468000,4.269532068700,4.329759077200,4.661418572100,4.704717728200,-148.81032242541306 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.892343245200,4.183651081900,4.263471971600,4.324732746200,4.692132980000,4.736934380900,-148.81033269016734 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.779807698500,4.023413438100,4.166064914200,4.228734114000,4.544993168400,4.610364891500,-148.8106444149455 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.775488593000,3.993279147900,4.168753480600,4.227607163700,4.526364477600,4.567150507500,-148.81065021373584 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.785211836100,4.079686391400,4.158276950100,4.220691032700,4.578575684600,4.645048024800,-148.81065112734495 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.668454401600,3.890582467500,4.062282333000,4.125195621400,4.411586337200,4.478533057000,-148.81099990690146 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.674468944100,3.934721520300,4.060805554300,4.120445320900,4.458371912100,4.499730154200,-148.81103553100192 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.679151853500,4.001663535800,4.049392570500,4.110913584700,4.516475198800,4.561308198800,-148.8110731435702 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.565657610200,3.817482730700,3.959853660700,4.021936699800,4.359267622200,4.422958456500,-148.811416352903 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.570951078700,3.872276844200,3.951368861100,4.013183344900,4.401379472400,4.464694989700,-148.81145134733853 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.454406230900,3.685948542200,3.858033772200,3.915873849800,4.233527842700,4.271608439200,-148.81182693593473 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.460289016300,3.728853660400,3.855085491900,3.916803833200,4.276963002400,4.339811487300,-148.8118368350436 + 0.107393696300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.464869082300,3.793900929500,3.841350263900,3.902393275800,4.323932883500,4.367700899800,-148.81191340395497 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.959740428900,5.184275050400,5.315942583000,5.328862616000,5.654645258300,5.654719079500,-148.85407335701626 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.953174825600,5.134948398300,5.316462387400,5.332824674200,5.611021803400,5.636949087200,-148.8540808832824 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.962661635200,5.215361800900,5.313995983700,5.329274709400,5.682604332900,5.706458375200,-148.85409222774035 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.964853815800,5.259243598200,5.308352171700,5.323074204800,5.716891446900,5.740119538100,-148.85409595195793 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.268440703600,4.846094655800,5.030456998800,5.209754660500,5.226372607600,5.499389951800,5.527064377200,-148.85418421745192 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.268440703600,4.857711736400,5.153915020100,5.203146792400,5.217423686700,5.625216886700,5.628590697400,-148.85421345778096 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.750569692200,5.048662795900,5.097528474400,5.111730541600,5.510865808500,5.511937388900,-148.85431855463932 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.745511855200,4.974736532600,5.105386006100,5.121141440900,5.449744398400,5.475338194600,-148.85432521022997 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.739017319800,4.926079512600,5.109672314800,5.122019196800,5.429406518200,5.430175070600,-148.8543302830751 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.631943013900,4.821823337200,5.000047353600,5.016695551800,5.298720578100,5.326811829100,-148.85445471167517 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.639979217600,4.885515372100,4.999668503400,5.012689555900,5.364089584000,5.364747642400,-148.85445975939274 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.642277904200,4.915227438900,4.996153699500,5.011289746600,5.381503924000,5.407039008500,-148.8544682192728 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.643427685400,4.943491802700,4.992540550000,5.006752264500,5.422822460300,5.425707821400,-148.8544878703287 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.524871953500,4.717696515200,4.897787490700,4.909580101700,5.211796289800,5.214213467300,-148.85461794143012 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.532858593200,4.780892427700,4.895346453600,4.908392439000,5.270639074600,5.270713880800,-148.85463001346434 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.536285718800,4.838407337400,4.887304631300,4.901471890700,5.319503828700,5.321682705700,-148.85464592902213 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.417804374400,4.613707804700,4.790745264500,4.807424947000,5.099159383900,5.127693890200,-148.85479482067913 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.422336800700,4.645742135200,4.791202421600,4.807242595400,5.133023461800,5.159934544000,-148.85480477124273 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.427015532900,4.691176198700,4.789080198900,4.802382256900,5.184952700600,5.185375806700,-148.85481698438034 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.429143795300,4.733415163100,4.782261230700,4.796401076200,5.221377077400,5.223735657700,-148.85483293469008 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.313131308100,4.525916969800,4.690730035500,4.703015497400,5.044912380400,5.045093911200,-148.8550172796641 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.319888341600,4.586658779700,4.684291998800,4.697536011000,5.085112856500,5.085216550800,-148.85501988791987 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.322001918100,4.628521560200,4.677202824500,4.691294076100,5.118477752200,5.120091214600,-148.85503225365045 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.203680724200,4.406183819900,4.584516180300,4.596024765400,4.913615516600,4.917196192500,-148.85522436235664 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.213740965300,4.496440530600,4.576212077900,4.591311158800,4.975957918100,5.002729861300,-148.85523547232316 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.209965866700,4.452867470500,4.583468151500,4.596139458200,4.966336317600,4.966745641700,-148.8552449619676 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.096625254600,4.302670415400,4.480349213500,4.491753662800,4.814886787000,4.818886683400,-148.85547553566605 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.104387701900,4.363623730400,4.476041166400,4.488724790000,4.863271642000,4.865710327200,-148.8554839920719 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.106607855300,4.392038771600,4.471987965800,4.487003140400,4.883431989000,4.909340803800,-148.85549902562977 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,3.989574476800,4.199339083300,4.376325939300,4.387620935700,4.716525340000,4.720961610000,-148.85575565565287 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,3.998511804800,4.273886728100,4.369213468100,4.384496792600,4.770027948300,4.796956387500,-148.85577393321813 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,4.000576601500,4.314504040700,4.362872374200,4.376844020400,4.821808694300,4.822980628600,-148.85580530521196 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.333284299000,3.882528778900,4.096203602500,4.272456853300,4.283636675300,4.618554641500,4.623445399500,-148.85606766699846 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.333284299000,3.890160562300,4.155852137600,4.267430440100,4.279953503100,4.665115963100,4.668372217700,-148.85608216699117 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.333284299000,3.892343245200,4.183651081900,4.263471971600,4.278370908200,4.692132980000,4.717272503600,-148.85610670194754 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.230435460900,3.775488593000,3.993279147900,4.168753480600,4.179811962300,4.521000094500,4.526364477600,-148.85641382359634 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.230435460900,3.781563402800,4.037983918800,4.167134643700,4.179540384500,4.576068904200,4.577387436700,-148.85644320530392 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.230435460900,3.786293364000,4.105796296000,4.153880943500,4.167753451100,4.623972798100,4.624474154600,-148.85647773132806 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.127874917600,3.668454401600,3.890582467500,4.067173645300,4.078386667700,4.437635634000,4.441704418000,-148.8567979921592 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.127874917600,3.674468944100,3.934721520300,4.060805554300,4.076509988800,4.458371912100,4.485907154300,-148.85681559443876 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.127874917600,3.679151853500,4.001663535800,4.049592749700,4.063411156900,4.525616630800,4.525760655800,-148.85686846341238 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.561426745100,3.788132086400,3.961895906200,3.972691196300,4.327251918000,4.333625385400,-148.85720185482126 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.565657610200,3.817482730700,3.960870460200,3.972616233100,4.363178698500,4.366926055800,-148.85722455183824 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.572010423800,3.897693942100,3.945457535800,3.959218460000,4.427439102300,4.427668294300,-148.85729076334954 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.923739987900,3.460289016300,3.728853660400,3.856344164200,3.868454157100,4.285142184500,4.287716420900,-148.85766403998284 + 0.108426768400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.923739987900,3.463821858000,3.768860595300,3.847369707800,3.862147778800,4.300560452300,4.326434513100,-148.857697076229 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.957842687500,5.168189668400,5.228638675200,5.316589082700,5.554028829500,5.641668119400,-148.91618271321673 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.962661635200,5.215361800900,5.227269024400,5.314217446100,5.609744744900,5.685430081300,-148.91620996367686 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.846094655800,5.030456998800,5.124223840200,5.209754660500,5.426701810000,5.499389951800,-148.91629109037822 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.856548656300,5.120413276300,5.125227560200,5.207435055500,5.522777091300,5.598546666900,-148.91632976433988 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.739017319800,4.926079512600,5.019521869400,5.104853473800,5.326737497900,5.398924449600,-148.91641752400415 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.741469700200,4.942651067900,5.021826389800,5.109211975700,5.357381901300,5.442564950800,-148.91643764175964 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.750569692200,5.010281730400,5.048662795900,5.097805336800,5.437893230400,5.523907551400,-148.91645687028853 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.631943013900,4.821823337200,4.913638245300,5.001283586100,5.218938344000,5.306538328900,-148.91655214063036 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.638399548000,4.870122198700,4.915215477700,5.002486457300,5.282384708200,5.367549055800,-148.9165856120049 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.642277904200,4.910053740100,4.915227438900,4.997388667200,5.316338565700,5.401876582100,-148.91659478242065 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.524871953500,4.717696515200,4.810440417900,4.895342406000,5.127678772600,5.198793466000,-148.91672092755837 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.529434035100,4.749995211800,4.811775934300,4.897274435500,5.170868320200,5.243423663200,-148.91674422691696 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.535857187800,4.802428843500,4.824569128900,4.889151669300,5.217449512400,5.291620828100,-148.91674476247888 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.417804374400,4.613707804700,4.704731277100,4.792035492300,5.020178585400,5.107282613400,-148.9168920068726 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.425739045200,4.676383596700,4.703462833300,4.789222772900,5.084838112800,5.157273857300,-148.91691918238473 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.428718064600,4.697829478300,4.719694097300,4.784859474300,5.123401772500,5.208889084600,-148.9169379462204 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.310740536000,4.509866759600,4.600463341600,4.687582133700,4.921287392500,5.008120186100,-148.91709333247894 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.318620653600,4.571996704500,4.598212050800,4.683739274100,4.978029599800,5.049704476300,-148.91711281521296 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.322001918100,4.590523287100,4.628521560200,4.677145036500,5.041537347900,5.115784805000,-148.91716239241293 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.203680724200,4.406183819900,4.496330582600,4.583252943600,4.822748734300,4.909293135100,-148.91731768611703 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.212761947200,4.482265340100,4.492394891800,4.577980931500,4.893436391200,4.965080438800,-148.9173486259389 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.206054128400,4.422087017100,4.500432601000,4.584992116600,4.866272337100,4.936861004300,-148.91735268771686 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.214860090800,4.485693552700,4.523733385600,4.572353939600,4.936318562300,5.020994967800,-148.91737958920433 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.096625254600,4.302670415400,4.393782158000,4.477676187800,4.733551969300,4.802197443500,-148.91757947741362 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.104387701900,4.363623730400,4.389872890900,4.476382718700,4.783812888100,4.869213646600,-148.91759294006044 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.098980381100,4.318418916600,4.396944840600,4.481265166000,4.771780693500,4.841915890100,-148.91760468120634 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.107301863900,4.384185503200,4.405723862200,4.470129215400,4.830734443600,4.903337371400,-148.91763576069116 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.989574476800,4.199339083300,4.288509969900,4.375002590300,4.626819038500,4.712729486500,-148.917841289015 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.993972335500,4.230174195400,4.290289803000,4.374555175000,4.675223715200,4.744640244200,-148.91787819956002 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,4.000576601500,4.276563151400,4.314504040700,4.362813277300,4.734671035100,4.819081722800,-148.9179076353624 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.886888348700,4.126697846600,4.186520118400,4.270497935900,4.577909596000,4.646633842100,-148.91818263386637 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.893434948700,4.172427533900,4.210080115500,4.258186856200,4.644972974300,4.717006615100,-148.91823831750474 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.775488593000,3.993279147900,4.082907243500,4.165880525200,4.442145220800,4.508592552400,-148.9184912641474 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.779807698500,4.023413438100,4.084341874700,4.168076247200,4.491747838600,4.560269424800,-148.91852126464428 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.785211836100,4.074302019700,4.079686391400,4.160005646000,4.523500937900,4.606443298800,-148.9185418097008 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.678081093900,3.969292324100,3.975890455400,4.053880955300,4.407169177200,4.475951094300,-148.91889841920326 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.679151853500,3.964218758500,4.001663535800,4.049462335800,4.448917462100,4.519663165100,-148.9189486456505 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.561426745100,3.788132086400,3.874982073900,3.960434081000,4.240290407400,4.324656017600,-148.91920840182036 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.568833039900,3.845535497400,3.870346961900,3.955652094900,4.291353483100,4.375355562900,-148.91925436603708 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.572010423800,3.859989768100,3.897693942100,3.944935893300,4.334585665400,4.403907166200,-148.91932275402218 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.454406230900,3.685948542200,3.772124880000,3.857270236900,4.144950274700,4.228859804300,-148.91959306651808 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.456627839900,3.700569538700,3.776960196500,3.859323137900,4.195358446400,4.260941702700,-148.91962842223114 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.462905707800,3.755849630000,3.764364924200,3.849408086100,4.199612576900,4.283808065200,-148.91966007907877 + 0.109863669700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.464869082300,3.756472740000,3.793900929500,3.841420625100,4.244671884000,4.327118661400,-148.9197198297111 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.962661635200,5.215361800900,5.276886291700,5.313765685200,5.633334158200,5.679664474700,-149.12900378331642 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.957842687500,5.168189668400,5.280877991900,5.318103067500,5.608687195700,5.653496314300,-149.12901720391883 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.964853815800,5.259243598200,5.272357168800,5.308560352700,5.683397249600,5.726738564900,-149.12903073395364 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.846094655800,5.030456998800,5.176513058900,5.209754660500,5.481327163400,5.499389951800,-149.1291188447737 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.854223410500,5.095075474700,5.174066176800,5.208526283300,5.533240226300,5.552881001100,-149.12912227216054 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.857275545700,5.139755549300,5.169159903900,5.204533372100,5.568141390000,5.588990376100,-149.1291253891011 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.743634685400,4.958870951400,5.069589631800,5.106948893700,5.396964282600,5.443599091400,-149.12924668808049 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.749413111500,5.020182224600,5.066766002900,5.101873502800,5.469753427500,5.491879106000,-149.12927573058332 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.631943013900,4.821823337200,4.967058300700,5.000047353600,5.281528963400,5.298720578100,-149.12938943674143 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.641272085200,4.900551235400,4.963319241400,4.997995937600,5.352785890000,5.373298582700,-149.12940957949507 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.643427685400,4.943491802700,4.956518378400,4.992540550000,5.379326104400,5.422822460300,-149.1294194362658 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.529434035100,4.749995211800,4.859487108300,4.896838013300,5.192625928900,5.240040431400,-149.12954596510056 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.524871953500,4.717696515200,4.862488796300,4.895342406000,5.182064002600,5.198793466000,-149.12955015961754 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.535143058400,4.810369130100,4.855849929300,4.890656790900,5.254375555800,5.273652953400,-149.1295590735376 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.536285718800,4.838407337400,4.851632191200,4.887131262800,5.289204228000,5.311376906500,-149.12958907569796 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.422336800700,4.645742135200,4.756818909100,4.790196748000,5.108121249700,5.125229160800,-149.12973356649013 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.428008600300,4.705613747800,4.750752504900,4.787056471400,5.150717551100,5.195758122900,-149.12974845448457 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.315241831300,4.541623569300,4.652325702200,4.685570167100,5.008880751400,5.025508156600,-149.12993598254 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.320874558700,4.600968322200,4.646163037200,4.680771889600,5.053992368200,5.072409787500,-149.12994478169225 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.322001918100,4.628521560200,4.641687776900,4.677021668000,5.088597614100,5.110031130900,-149.12997712882188 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.203680724200,4.406183819900,4.549498850600,4.581903924700,4.885617651300,4.900841745600,-149.1301575106839 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.208149299900,4.437648982000,4.546952744000,4.584010925100,4.902257730800,4.948825634800,-149.130161580118 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.212761947200,4.482265340100,4.543522361900,4.579848614600,4.943730827900,4.988532095500,-149.130179914522 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.214860090800,4.523733385600,4.536621588200,4.572353939600,4.977292231900,5.020994967800,-149.13019673254394 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.096625254600,4.302670415400,4.445436498100,4.477676187800,4.787518742000,4.802197443500,-149.1304087634941 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.101059397400,4.333828736100,4.442691293400,4.479693899700,4.803543786200,4.850211522400,-149.1304127904963 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.105636411900,4.378004748700,4.438747007200,4.475050149100,4.840891278800,4.886361307500,-149.13042818704403 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.107718317100,4.419058139300,4.432158915500,4.467308823000,4.889151943400,4.909780892200,-149.1304620643315 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,3.989574476800,4.199339083300,4.338735779400,4.376325939300,4.672480643900,4.720961610000,-149.13067811738478 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,3.997273347200,4.259657255400,4.335048911300,4.371667182100,4.719280440500,4.766858345300,-149.13069138715935 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,4.000576601500,4.314504040700,4.327239533900,4.362242393700,4.774701630400,4.792660844100,-149.13071943473332 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.882528778900,4.096203602500,4.237772403400,4.269653678100,4.592533614000,4.606048065400,-149.13099909677297 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.888660527900,4.141443468000,4.232303564900,4.269102640000,4.609748668200,4.657685078800,-149.13100038226636 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.891388202600,4.169921957700,4.230754698100,4.266803701200,4.650748413700,4.695117006300,-149.1310323164564 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.893434948700,4.210080115500,4.223107460300,4.258051349100,4.691015296000,4.710765903100,-149.13106505090812 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.779807698500,4.023413438100,4.131895898800,4.164357102700,4.518096118300,4.531987576500,-149.13135469807665 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.785211836100,4.079686391400,4.123289734000,4.159209009100,4.546881121300,4.593620598400,-149.1313687359352 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.786293364000,4.105796296000,4.118783483100,4.153614889900,4.592490846300,4.611771640300,-149.13141773853633 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.668454401600,3.890582467500,4.027798209500,4.065228503400,4.380860147300,4.429747463500,-149.1317048272051 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.672730676700,3.920336140500,4.029342652700,4.061753789600,4.429137180600,4.443464941400,-149.13173953749103 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.677144364200,3.962500400100,4.022796525900,4.056304349100,4.455080149300,4.470391338400,-149.13176195901858 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.679151853500,4.001663535800,4.014329746700,4.049592749700,4.481671605000,4.525616630800,-149.13178962460066 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.561426745100,3.788132086400,3.924528022800,3.961895906200,4.284601197100,4.333625385400,-149.13210581161326 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.565657610200,3.817482730700,3.924304709000,3.960870460200,4.320467126200,4.366926055800,-149.13213174932312 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.570024329900,3.859070916700,3.918757465200,3.952065323900,4.354027375400,4.368239906300,-149.13217174580853 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.572010423800,3.897693942100,3.910228048400,3.945392186600,4.380078160600,4.424698418000,-149.1322014289677 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.454406230900,3.685948542200,3.826726082600,3.858033772200,4.220918158600,4.233527842700,-149.13253356515844 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.460289016300,3.728853660400,3.819781354300,3.855943870300,4.238673048300,4.284299072000,-149.1325640204097 + 0.115095094700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.464869082300,3.793900929500,3.806535968400,3.840951980300,4.289664751200,4.305856261800,-149.13264693285635 + 0.125551767900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.953174825600,5.134948398300,5.229600898300,5.314745284500,5.530589673200,5.600103004100,-149.49921165912392 + 0.125551767900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.964853815800,5.220694384200,5.259243598200,5.308560352700,5.637668411400,5.726738564900,-149.4992430537071 + 0.125551767900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.850737828400,5.063478368600,5.124609917100,5.212699360100,5.460472191300,5.550106169800,-149.49933521709954 + 0.125551767900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.747100845500,4.990245252500,5.016360471900,5.104384242100,5.370699362700,5.462150497400,-149.499447293544 + 0.125551767900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.749413111500,5.014857652700,5.020182224600,5.101506783000,5.413972315500,5.485811813500,-149.49947566601284 + 0.125551767900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.634381062500,4.838273660400,4.917659783000,5.002671423900,5.260944072000,5.330530501700,-149.49961498089152 + 0.125551767900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.420211670800,4.629897885800,4.709237806000,4.793836182800,5.065991434400,5.134688907500,-149.49996067505293 + 0.125551767900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.882528778900,4.096203602500,4.184844210300,4.271790890100,4.529477643200,4.619317135900,-149.501181148044 + 0.125551767900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.892343245200,4.176666815400,4.183651081900,4.263033130500,4.595044010400,4.685030100300,-149.50120970983627 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.953174825600,5.134948398300,5.314745284500,5.424853585300,5.600103004100,5.700915089600,-149.57070747016425 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.957842687500,5.168189668400,5.316589082700,5.426914612500,5.641668119400,5.742236104800,-149.57072030272676 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.964853815800,5.259243598200,5.308560352700,5.419922021200,5.726738564900,5.828466084200,-149.57073855536973 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.856548656300,5.125227560200,5.207435055500,5.318208321100,5.598546666900,5.699435605600,-149.57084519331374 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.850737828400,5.063478368600,5.213406372000,5.323360380900,5.555613824600,5.654762285500,-149.57084913117743 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.739017319800,4.926079512600,5.104853473800,5.214443613000,5.398924449600,5.498730638700,-149.57094947791526 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.748401348200,5.005394622700,5.102833495500,5.213250787000,5.470895615300,5.571908462700,-149.57095402346062 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.741469700200,4.942651067900,5.108809841600,5.218318882900,5.439769662600,5.538192148900,-149.57097442205983 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.642996483300,4.929541700000,4.994666863000,5.105163056300,5.401878293700,5.502498000300,-149.57111177203777 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.536285718800,4.838407337400,4.886795020000,4.997250209000,5.295580260900,5.397068461600,-149.57124937261872 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.424179372000,4.661238151200,4.789492994300,4.898776517700,5.137708454500,5.236912678200,-149.57143506791115 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.417804374400,4.613707804700,4.791400367700,4.900069593000,5.103285233600,5.201133552800,-149.57144121306675 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.425739045200,4.676383596700,4.791367617400,4.900643587800,5.179446617600,5.277112876300,-149.571468675675 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.319888341600,4.586658779700,4.684742519700,4.793941499800,5.090773894100,5.188238763300,-149.5716737845186 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.322001918100,4.628521560200,4.677257949100,4.787129232400,5.121045297000,5.219742321700,-149.5716794130128 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.214860090800,4.523733385600,4.571903824900,4.681511103900,5.000054226800,5.099512641800,-149.57187451045667 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.211503506700,4.467740298100,4.580543011500,4.689296694100,4.964906311000,5.062329851600,-149.57188162099763 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.203680724200,4.406183819900,4.587272147100,4.694956920500,4.934401660100,5.029081401300,-149.57189002379786 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.106607855300,4.392038771600,4.471539529000,4.580442494600,4.876117097800,4.974423589100,-149.57212005768764 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.107718317100,4.419058139300,4.467556195400,4.576821708100,4.921243255900,5.018726370100,-149.57215840577337 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,3.989574476800,4.199339083300,4.373589337700,4.480902440300,4.703924950700,4.799361743700,-149.57239133716192 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,3.999475267600,4.287772251600,4.366746135800,4.475326101900,4.772674648400,4.870596578300,-149.5723922263241 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,4.000576601500,4.314504040700,4.362548870700,4.471508554800,4.806862428600,4.904665265900,-149.57241474825116 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.882528778900,4.096203602500,4.269653678100,4.376566305500,4.606048065400,4.700726443500,-149.57269363894932 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.892343245200,4.183651081900,4.262316149600,4.370537492600,4.673403729100,4.770657947900,-149.57269760611715 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.884844319000,4.111617223800,4.274248057700,4.381029272000,4.653147197300,4.745982372400,-149.5727139208393 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.893434948700,4.210080115500,4.258310877700,4.366900999800,4.722711315500,4.818854177700,-149.5727409875369 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.775488593000,3.993279147900,4.170650340000,4.276805397900,4.538066871600,4.630018315100,-149.57303506147872 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.786293364000,4.105796296000,4.153880943500,4.262103566900,4.623972798100,4.719392436000,-149.57307503112492 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.668454401600,3.890582467500,4.067768702700,4.173421359500,4.445357002900,4.536177355400,-149.57338884028312 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.561426745100,3.788132086400,3.958872837000,4.064434225000,4.315059721500,4.407204561800,-149.57376128360553 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.563673959300,3.802968768800,3.963578437600,4.068996975800,4.363708854800,4.453884388100,-149.57377056168212 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.568833039900,3.845535497400,3.957432980700,4.063726936700,4.393280774400,4.485049152200,-149.57379506588592 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.572010423800,3.897693942100,3.945457535800,4.052876671100,4.427668294300,4.521522008700,-149.57382475593386 + 0.127803160800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.456627839900,3.700569538700,3.860413396200,3.965319792700,4.268246952300,4.357436210800,-149.57415385624944 + 0.128307727500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.857711736400,5.153915020100,5.203146792400,5.266495633000,5.625216886700,5.673720684600,-149.58652173849094 + 0.128307727500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.745511855200,4.974736532600,5.105386006100,5.169696674100,5.449744398400,5.519361397300,-149.58663168370174 + 0.128307727500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.750569692200,5.048662795900,5.097588548700,5.161232831800,5.513698201900,5.581836490700,-149.5866437435535 + 0.128307727500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.425739045200,4.676383596700,4.790215972700,4.853903463000,5.167551852800,5.235642318800,-149.58712882131152 + 0.128307727500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.208149299900,4.437648982000,4.583096251200,4.646798008400,4.941791028200,5.010415768500,-149.58755102233263 + 0.128307727500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.893434948700,4.210080115500,4.258310877700,4.320210963800,4.722711315500,4.766530718100,-149.58843923152065 + 0.128307727500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.677144364200,3.962500400100,4.056639153200,4.119188376400,4.474535635300,4.543747610300,-149.58912550771026 + 0.130471946400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.524871953500,4.717696515200,4.895983513700,5.005540676500,5.202840306500,5.304956180300,-149.65261977083767 + 0.130471946400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.101059397400,4.333828736100,4.480134002300,4.588399401700,4.853583436900,4.951843852600,-149.65349812080797 + 0.130471946400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.784265690600,4.066122192600,4.160354250900,4.267640937900,4.568588990000,4.660515202300,-149.6544018429123 + 0.130471946400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.464869082300,3.793900929500,3.841420625100,3.948466706900,4.327118661400,4.423160431800,-149.6555867638341 + 0.134945780900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.268440703600,4.855531211200,5.110333397100,5.207487540200,5.223174584300,5.565302821800,5.594659965100,-149.78101060726254 + 0.134945780900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.268440703600,4.848560733400,5.047144373700,5.214088574100,5.226273560300,5.540751491700,5.542656977600,-149.78102468679538 + 0.134945780900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.529434035100,4.749995211800,4.894932191700,4.911537470700,5.225243999400,5.256378652700,-149.78144515861143 + 0.134945780900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.310740536000,4.509866759600,4.686263147800,4.703539239300,4.999835850000,5.032240259900,-149.78182768840122 + 0.134945780900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.214860090800,4.523733385600,4.572353939600,4.586347739800,5.019689874400,5.020994967800,-149.78209540820345 + 0.134945780900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.107718317100,4.419058139300,4.467556195400,4.481505356100,4.919572949700,4.921243255900,-149.78235261250836 + 0.134945780900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,3.993972335500,4.230174195400,4.375964023600,4.387597297100,4.749380617100,4.755408290700,-149.7826059963992 + 0.134945780900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.568833039900,3.845535497400,3.955652094900,3.971338739400,4.375355562900,4.405442718800,-149.7840945551853 + 0.134945780900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.923739987900,3.454406230900,3.685948542200,3.862045039400,3.872501238200,4.249960691600,4.257982609400,-149.7844785325004 + 0.138167247400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.750569692200,5.048662795900,5.097701739200,5.208717229000,5.519031063000,5.624714318400,-149.86847064087576 + 0.138167247400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.631943013900,4.821823337200,5.001872491000,5.112105617800,5.310259107300,5.415395617800,-149.86859910488448 + 0.138167247400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.531288685300,4.765620219300,4.896664680900,5.006710238700,5.258884173600,5.362892445800,-149.86877185287338 + 0.138167247400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.317071723500,4.556984234600,4.686099258300,4.795731802000,5.049272248900,5.153717896600,-149.86914677128402 + 0.138167247400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.677144364200,3.962500400100,4.056639153200,4.163172320000,4.474535635300,4.561467134700,-149.87092061760575 + 0.138167247400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.454406230900,3.685948542200,3.857270236900,3.960720673200,4.228859804300,4.310248802000,-149.87168677269204 + 0.140720676600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.953174825600,5.134948398300,5.283804013400,5.316997505300,5.596955432300,5.614420917300,-149.93442037256875 + 0.140720676600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.739017319800,4.926079512600,5.069348643400,5.107735174000,5.366187925200,5.417170098500,-149.93464531677037 + 0.140720676600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.747100845500,4.990245252500,5.069328549900,5.103387226700,5.435672113900,5.451749684500,-149.9346547608482 + 0.140720676600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.638399548000,4.870122198700,4.965625521900,4.999196250300,5.323260990600,5.338382718200,-149.93479849944168 + 0.140720676600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.425739045200,4.676383596700,4.753039539500,4.790215972700,5.117153056400,5.167551852800,-149.93513857773678 + 0.144669898900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.534143464500,4.795809491400,4.805365515700,4.893249094200,5.181528487300,5.275956121800,-150.0324555996718 + 0.144669898900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.313131308100,4.525916969800,4.603043828700,4.690730035500,4.954103157600,5.045093911200,-150.03285194038915 + 0.144669898900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.998511804800,4.273886728100,4.282822420000,4.369804859100,4.683582709600,4.777415640100,-150.03360376860823 + 0.144669898900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.777782652200,4.008511207200,4.081961353600,4.168961217800,4.453511341700,4.545683620500,-150.03423993181488 + 0.144669898900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.784265690600,4.066122192600,4.074763088100,4.161301709300,4.486841327300,4.580350353900,-150.03425935736723 + 0.144669898900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.668454401600,3.890582467500,3.981143095000,4.062282333000,4.355080851100,4.411586337200,-150.03461723277277 + 0.144669898900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.672730676700,3.920336140500,3.978988752400,4.065288303600,4.380675815200,4.470205485400,-150.03462495919933 + 0.144669898900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.563673959300,3.802968768800,3.879232255000,3.960740014300,4.286489573500,4.344587583200,-150.0350265505272 + 0.150112215100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.638399548000,4.870122198700,5.001516229400,5.112117414000,5.358962892600,5.465984726800,-150.1578566408754 + 0.150112215100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,3.995760105000,4.245085753200,4.372815760700,4.481847784300,4.752136240500,4.858284842200,-150.15915333445147 + 0.150112215100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.679151853500,4.001663535800,4.049392570500,4.157425702400,4.516475198800,4.620274183200,-150.1602019224673 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.962661635200,5.215361800900,5.312760113300,5.377391221300,5.666811551500,5.740834175000,-150.17647577381777 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.953174825600,5.134948398300,5.314745284500,5.380411787000,5.600103004100,5.675012514100,-150.17647652197937 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.852625511300,5.079456279200,5.210443765500,5.275165656200,5.550518255800,5.622860132300,-150.17660390517264 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.739017319800,4.926079512600,5.107735174000,5.167565375500,5.417170098500,5.456279182800,-150.17672964577366 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.639979217600,4.885515372100,5.001077628300,5.062566651500,5.379377001800,5.422078908200,-150.17689297344657 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.524871953500,4.717696515200,4.898347363300,4.957741026900,5.217738989900,5.255536766700,-150.1770394551404 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.532858593200,4.780892427700,4.895046105300,4.956167052600,5.267601673500,5.307722125100,-150.17704154546482 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.536285718800,4.838407337400,4.887131262800,4.949971502300,5.311376906500,5.353860779900,-150.1770444032073 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.317071723500,4.556984234600,4.684796891600,4.749190631800,5.037791777900,5.112340720500,-150.17741851068317 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.321579126500,4.614923254800,4.678862698800,4.742318023600,5.083198902100,5.156968823600,-150.1774213595359 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.096625254600,4.302670415400,4.480961243100,4.539342975900,4.822701209000,4.857524604500,-150.17791016940498 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.107718317100,4.419058139300,4.467556195400,4.529774373100,4.921243255900,4.963199804900,-150.17794588191862 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,3.993972335500,4.230174195400,4.375043696700,4.434115211800,4.748376463200,4.783684299500,-150.17819802800403 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.884844319000,4.111617223800,4.274248057700,4.332881123800,4.653147197300,4.689364338600,-150.17852083087024 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.781563402800,4.037983918800,4.167134643700,4.226411465900,4.577387436700,4.614052742800,-150.17888129236997 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.786293364000,4.105796296000,4.153541162500,4.215827738100,4.608384940500,4.678914397700,-150.17889057988904 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.561426745100,3.788132086400,3.958872837000,4.022933136700,4.315059721500,4.390143175700,-150.17963249956154 + 0.150975514500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.456627839900,3.700569538700,3.860413396200,3.917739878500,4.268246952300,4.300874666600,-150.18008923287482 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.953174825600,5.134948398300,5.318009161200,5.329113389800,5.613363813200,5.620842357800,-150.39119356986052 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.964415292200,5.244986058000,5.310744452500,5.324539304100,5.707517559900,5.711130544500,-150.39120240000327 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.961346851800,5.199999970100,5.314702944900,5.330752150300,5.664262778200,5.694451313700,-150.39120622126106 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.748401348200,5.005394622700,5.104031457500,5.116972124400,5.480818349900,5.486125667600,-150.3914492133327 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.743634685400,4.958870951400,5.108106635100,5.119986495000,5.446617325500,5.452605293300,-150.3914498606598 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.634381062500,4.838273660400,5.004431391300,5.015958965500,5.336651835600,5.342746419300,-150.3915985759905 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.641272085200,4.900551235400,4.997995937600,5.013737769800,5.373298582700,5.403894181000,-150.39160304306708 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.534143464500,4.795809491400,4.892989618200,4.908728683700,5.272670817400,5.303532696500,-150.39176789962787 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.417804374400,4.613707804700,4.794893523100,4.805596027700,5.116184954500,5.125238584700,-150.3919375660662 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.428718064600,4.719694097300,4.784859474300,4.798457898000,5.204007325800,5.208889084600,-150.39195492682467 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.318620653600,4.571996704500,4.684112856500,4.700339952800,5.053567957200,5.086983875100,-150.39214752165938 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.321579126500,4.614923254800,4.679012488200,4.694122874700,5.086796123000,5.118945317100,-150.39215388969896 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.211503506700,4.467740298100,4.579085568900,4.595396230900,4.949888728700,4.984440395800,-150.39237286310941 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.206054128400,4.422087017100,4.583395646400,4.600507694200,4.925874303600,4.959114597200,-150.3923775260376 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.104387701900,4.363623730400,4.474549685800,4.490868915700,4.850385627700,4.885299911600,-150.39263002845934 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.098980381100,4.318418916600,4.482204144700,4.493217006200,4.839907553700,4.848345835300,-150.39263564536054 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,3.989574476800,4.199339083300,4.373589337700,4.391554618100,4.703924950700,4.741011468900,-150.39290457735632 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,4.000576601500,4.314504040700,4.362476043300,4.377095272300,4.803491452100,4.834591865300,-150.39294842125383 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.333284299000,3.884844319000,4.111617223800,4.271023363400,4.288216007900,4.631174919000,4.665443347700,-150.3932347471917 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.333284299000,3.893434948700,4.210080115500,4.258310877700,4.272089046600,4.716848594600,4.722711315500,-150.39327720112024 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.230435460900,3.775488593000,3.993279147900,4.168070948000,4.185667186100,4.522147589900,4.557181098800,-150.39358074094892 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.230435460900,3.784265690600,4.066122192600,4.162409328400,4.174741004500,4.585263112000,4.594065091500,-150.39361489618057 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.127874917600,3.672730676700,3.920336140500,4.064381577900,4.075098360800,4.451416636000,4.463358669200,-150.39398393135158 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.127874917600,3.677144364200,3.962500400100,4.058412115200,4.070649431000,4.487058949900,4.496423848200,-150.39401086876995 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.127874917600,3.679151853500,4.001663535800,4.049000589400,4.063552461000,4.498522409100,4.532224414500,-150.3940234872209 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.923739987900,3.462905707800,3.755849630000,3.848349798600,3.864250742600,4.270811586200,4.307678220500,-150.39487382072622 + 0.161516107800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.923739987900,3.464869082300,3.793900929500,3.841350263900,3.854853795500,4.314361166700,4.323932883500,-150.39491913853422 + 0.165379811200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.961346851800,5.199999970100,5.315001384700,5.424511614500,5.667385255700,5.756285030500,-150.4625432088645 + 0.165379811200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.963684516800,5.230357990000,5.312056408800,5.423736548200,5.688574438600,5.801183728200,-150.46254615525433 + 0.165379811200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.846094655800,5.030456998800,5.212052249800,5.319609921400,5.513969389000,5.599710363600,-150.46266154509547 + 0.165379811200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.854223410500,5.095075474700,5.211159945500,5.320528044400,5.580373045200,5.669892308300,-150.46267843585014 + 0.165379811200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.534143464500,4.795809491400,4.894401587800,5.003341955400,5.290525636700,5.378489932200,-150.46312379788696 + 0.165379811200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.429143795300,4.733415163100,4.782030137900,4.892412465600,5.210574997900,5.320638725200,-150.46330016269135 + 0.165379811200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.310740536000,4.509866759600,4.688817262600,4.794653683100,5.015867532900,5.097328751200,-150.46349397713834 + 0.165379811200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.096625254600,4.302670415400,4.482114205500,4.587266226400,4.829880372600,4.910257942000,-150.46398472183333 + 0.165379811200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.462905707800,3.755849630000,3.848349798600,3.955952800900,4.270811586200,4.380424501200,-150.46611324499264 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.962661635200,5.215361800900,5.225320940500,5.313995983700,5.584920334700,5.682604332900,-150.47403813297984 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.848560733400,5.047144373700,5.125627917400,5.209886743700,5.450824668000,5.513328784500,-150.4741565077324 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.857275545700,5.117701306600,5.139755549300,5.204533372100,5.522885400600,5.588990376100,-150.47416667257735 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.750569692200,5.009828398800,5.048662795900,5.097588548700,5.416557167000,5.513698201900,-150.47428766595036 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.638399548000,4.870122198700,4.914496474100,4.999196250300,5.276033108600,5.338382718200,-150.47443501721594 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.641272085200,4.900551235400,4.910789506400,4.998956085600,5.289291525200,5.385474495900,-150.47443848618573 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.524871953500,4.717696515200,4.809125596800,4.898347363300,5.119401883200,5.217738989900,-150.4745811900257 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.529434035100,4.749995211800,4.809505516800,4.898096639000,5.153311426600,5.249792442300,-150.47459417808173 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.427015532900,4.691176198700,4.702048532900,4.787227188800,5.099335007500,5.161545958900,-150.4747881834677 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.321579126500,4.592524278900,4.614923254800,4.679811463000,5.010223612100,5.105942785700,-150.47499792432794 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.203680724200,4.406183819900,4.496330582600,4.585114305500,4.822748734300,4.920934512800,-150.47519261909102 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.213740965300,4.490775999900,4.496440530600,4.575982416500,4.910812096300,4.972196960900,-150.47522915547137 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.101059397400,4.333828736100,4.391641902500,4.479693899700,4.753218084300,4.850211522400,-150.47545644854745 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.105636411900,4.378004748700,4.387720114100,4.475050149100,4.790565567200,4.886361307500,-150.47547474726895 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.107718317100,4.380892816500,4.419058139300,4.467556195400,4.827349087900,4.921243255900,-150.47550207551652 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.993972335500,4.230174195400,4.287647784500,4.375513443300,4.655068469500,4.751966713300,-150.47573753880863 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.679151853500,3.963854540000,4.001663535800,4.049592749700,4.432341118200,4.525616630800,-150.47684267825738 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.570024329900,3.859070916700,3.869431499600,3.952419719200,4.316896758000,4.372613779000,-150.47723524484877 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.572010423800,3.859989768100,3.897693942100,3.945457535800,4.334585665400,4.427668294300,-150.4772575622604 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.454406230900,3.685948542200,3.774599364000,3.861447160900,4.160028483500,4.254344937400,-150.47755333376543 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.460289016300,3.728853660400,3.771179058400,3.852619810800,4.202864702300,4.255829040800,-150.4776296997449 + 0.166024258700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.463821858000,3.763807153900,3.768860595300,3.847131034200,4.239461593400,4.296758126100,-150.47768687349927 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.848560733400,5.047144373700,5.175846262700,5.214088574100,5.491426732000,5.542656977600,-150.48696236969 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.857711736400,5.153915020100,5.166814571800,5.203097239400,5.573020168400,5.622879563700,-150.48696954551212 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.750569692200,5.048662795900,5.061391645600,5.097646320000,5.464990289000,5.516420666500,-150.48708982698065 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.741469700200,4.942651067900,5.073735263200,5.106514577000,5.410235798600,5.423791619800,-150.48709663072447 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.631943013900,4.821823337200,4.964621397100,5.003516517100,5.266142117400,5.320634823100,-150.487225160911 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.642277904200,4.915227438900,4.960445701400,4.997233963300,5.348452493900,5.399328444200,-150.4872442377272 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.524871953500,4.717696515200,4.859999459800,4.898885717300,5.166380932100,5.221127144300,-150.48738832899244 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.536285718800,4.838407337400,4.851059590900,4.887191521900,5.262359398300,5.314203021200,-150.48740210882536 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.531288685300,4.765620219300,4.862221436200,4.895541634700,5.235419909800,5.248953587000,-150.4874116799951 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.417804374400,4.613707804700,4.755489781800,4.794365879700,5.066921181000,5.121927525600,-150.48757106541078 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.429143795300,4.733415163100,4.746611483700,4.781899659500,5.188764200700,5.204466315500,-150.48761178888103 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.310740536000,4.509866759600,4.651099930500,4.689964423000,4.967780969100,5.023054218500,-150.48777541303875 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.318620653600,4.571996704500,4.650464287900,4.683739274100,5.038901044500,5.049704476300,-150.48779151318823 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.322001918100,4.628521560200,4.641311248300,4.677257949100,5.071057151700,5.121045297000,-150.48781271487505 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.211503506700,4.467740298100,4.546262831600,4.579467688700,4.942917475500,4.953830056300,-150.48802704168185 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.096625254600,4.302670415400,4.443427496400,4.482114205500,4.774995995500,4.829880372600,-150.48826162015837 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.104387701900,4.363623730400,4.441559432600,4.474549685800,4.840836701700,4.850385627700,-150.48827973539272 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,3.993972335500,4.230174195400,4.341496098300,4.373523450500,4.727539605900,4.736741294000,-150.48856574745406 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.882528778900,4.096203602500,4.234915866700,4.273715775500,4.574830008300,4.631241079500,-150.48885685303603 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.892343245200,4.183651081900,4.228805950900,4.262562711000,4.667161867900,4.677404942900,-150.4889041636015 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.775488593000,3.993279147900,4.131265643300,4.170043710700,4.477613541300,4.534327067900,-150.48920651470576 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.783049480500,4.052220777600,4.130226787800,4.162960248300,4.556523540300,4.566402983700,-150.48925551070903 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.786293364000,4.105796296000,4.118195010200,4.153753803900,4.565505523900,4.618146129600,-150.48926445481285 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.668454401600,3.890582467500,4.030088040400,4.068336260600,4.394958943300,4.448838493100,-150.48959584442093 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.674468944100,3.934721520300,4.025145296800,4.062575726200,4.418781513600,4.473648018400,-150.4896188202769 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.563673959300,3.802968768800,3.928189010200,3.958754858800,4.326499112500,4.331172438000,-150.4900271481912 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.567377392000,3.831672212000,3.921582986100,3.958953724000,4.321789858800,4.376932568900,-150.49003799680028 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.570951078700,3.872276844200,3.915418143000,3.951583237600,4.350854270000,4.404804044000,-150.49007085121914 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.458588866300,3.714871805000,3.819197485400,3.857046530100,4.210317358800,4.267171728500,-150.49045668440215 + 0.166742889300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.462905707800,3.755849630000,3.815850398000,3.848349798600,4.265011473700,4.270811586200,-150.49051324558462 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.957842687500,5.168189668400,5.315740199400,5.381163844500,5.635026726500,5.710887071200,-150.6206258726353 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.846094655800,5.030456998800,5.213084271400,5.272612122600,5.520507675700,5.557029710400,-150.62074219790344 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.855531211200,5.110333397100,5.208269666800,5.272833430600,5.575282542800,5.649778092200,-150.62074892296178 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.749413111500,5.020182224600,5.102046582100,5.164177441600,5.494740487300,5.534327013400,-150.62087637883485 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.631943013900,4.821823337200,5.003516517100,5.062606483600,5.320634823100,5.355776789700,-150.62102154646593 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.417804374400,4.613707804700,4.794365879700,4.852975062200,5.121927525600,5.155574417600,-150.62137174378043 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.429143795300,4.733415163100,4.782150797500,4.844787954200,5.216217769700,5.255795433200,-150.62138533673973 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.313131308100,4.525916969800,4.689352773700,4.748218685100,5.035606595400,5.069135024400,-150.62157935781087 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.212761947200,4.482265340100,4.577980931500,4.641948037600,4.965080438800,5.041508427100,-150.62180850819647 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.206054128400,4.422087017100,4.585952738900,4.644755213700,4.943461955100,4.977569960600,-150.6218167617083 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.214860090800,4.523733385600,4.572353939600,4.634683362700,5.020994967800,5.060452284300,-150.62183793202163 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.101059397400,4.333828736100,4.480555019600,4.539605144000,4.856807245600,4.890780860400,-150.6220762486043 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.105636411900,4.378004748700,4.475050149100,4.535595176600,4.886361307500,4.921747425600,-150.62208036590064 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,3.997273347200,4.259657255400,4.370540468000,4.434504030800,4.755320812900,4.832103386600,-150.62235123008352 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,4.000576601500,4.314504040700,4.362686569700,4.424607411700,4.813229832200,4.849411578400,-150.62237339642925 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.882528778900,4.096203602500,4.269653678100,4.334799181200,4.606048065400,4.684858072700,-150.6226551778883 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.888660527900,4.141443468000,4.268657070400,4.332535817600,4.653808485200,4.728911274300,-150.62267526239486 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.893434948700,4.210080115500,4.257665426000,4.320277501700,4.692948012800,4.769604468400,-150.62267834254814 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.668454401600,3.890582467500,4.062282333000,4.127141269700,4.411586337200,4.490537416200,-150.62339422593325 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.678081093900,3.975890455400,4.055722658200,4.115888854500,4.505551507700,4.539008593100,-150.62345682286258 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.568833039900,3.845535497400,3.956410209300,4.014987948800,4.382994213200,4.412470866600,-150.62386372650732 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.572010423800,3.897693942100,3.945457535800,4.006538678000,4.427668294300,4.462497178400,-150.62390818426428 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.454406230900,3.685948542200,3.855667219800,3.920196795200,4.219045623600,4.298115185300,-150.62424379962982 + 0.174700454200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.463821858000,3.768860595300,3.848230900300,3.907880619500,4.314254265400,4.346580287000,-150.62433890601315 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.953174825600,5.134948398300,5.314745284500,5.427440134600,5.600103004100,5.717399955800,-150.7485038509191 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.850737828400,5.063478368600,5.211516714200,5.323360380900,5.540882739400,5.654762285500,-150.74863486588873 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.743634685400,4.958870951400,5.108106635100,5.215944774700,5.452605293300,5.536735163000,-150.7487725738598 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.643427685400,4.943491802700,4.992540550000,5.102947371600,5.422822460300,5.510697147700,-150.74892948130176 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.527294990600,4.734019817300,4.899333654300,5.006035837100,5.240315379700,5.322048341100,-150.74908641544565 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.428008600300,4.705613747800,4.787056471400,4.895903109000,5.195758122900,5.279841514400,-150.7492731942088 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.420211670800,4.629897885800,4.795183435200,4.901593232200,5.143993484200,5.225273424000,-150.7492749471749 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.320874558700,4.600968322200,4.681214101900,4.791642256800,5.079668697600,5.193950505100,-150.74946555496822 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.213740965300,4.496440530600,4.575982416500,4.686225751100,4.972196960900,5.087824861800,-150.74968573506283 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.107718317100,4.419058139300,4.467556195400,4.576527575600,4.921243255900,5.005032503300,-150.7499856728758 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,3.999475267600,4.287772251600,4.367874323800,4.475326101900,4.791015840700,4.870596578300,-150.75025048464389 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,4.000576601500,4.314504040700,4.362548870700,4.471809594900,4.806862428600,4.918638570800,-150.75025187637482 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.882528778900,4.096203602500,4.273098659100,4.376566305500,4.627421036100,4.700726443500,-150.75055388264502 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.784265690600,4.066122192600,4.161301709300,4.270094882500,4.580350353900,4.691091137200,-150.7509096210955 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.672730676700,3.920336140500,4.061169812400,4.170179260400,4.439033575200,4.552003680400,-150.75126987048424 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.668454401600,3.890582467500,4.065903020600,4.168321253400,4.433896782100,4.504621909600,-150.75128181379034 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.570024329900,3.859070916700,3.953726548200,4.058843128500,4.388708092800,4.462793079900,-150.75172562160068 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.454406230900,3.685948542200,3.858033772200,3.966087747900,4.233527842700,4.343216686500,-150.7520883517282 + 0.183129809600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.458588866300,3.714871805000,3.858512998500,3.961353975300,4.278158645900,4.350017682300,-150.75213535563213 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.959740428900,5.184275050400,5.315942583000,5.472119693900,5.654719079500,5.796667284100,-150.75336094597634 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.964853815800,5.259243598200,5.308560352700,5.466016380500,5.726738564900,5.869883630400,-150.75337814532745 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.855531211200,5.110333397100,5.207487540200,5.363953513700,5.565302821800,5.708777821300,-150.75345899326808 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.846094655800,5.030456998800,5.213569538300,5.368407839100,5.523579814700,5.662428124500,-150.7534878619584 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.857711736400,5.153915020100,5.203146792400,5.360279896700,5.625216886700,5.767703723300,-150.75349551723303 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.750569692200,5.048662795900,5.097466147600,5.254294928800,5.507925715000,5.651245568300,-150.75360189427246 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.745511855200,4.974736532600,5.107413194000,5.262697941000,5.467738342600,5.606857173900,-150.75362472855488 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.643427685400,4.943491802700,4.992257849800,5.148726920700,5.409537018800,5.551886126600,-150.75375431316206 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.631943013900,4.821823337200,5.004505770200,5.158479436400,5.326870060200,5.463795228400,-150.75376821690378 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.641272085200,4.900551235400,4.999172150300,5.154711344200,5.388211002800,5.527889545000,-150.75377003726564 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.534143464500,4.795809491400,4.892720973100,5.048011435800,5.269267447000,5.409930892300,-150.75391162830815 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.536285718800,4.838407337400,4.887357386100,5.043426629900,5.321974391000,5.462305242300,-150.7539414631675 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.417804374400,4.613707804700,4.794365879700,4.947541858700,5.121927525600,5.257670746800,-150.75411201660876 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.425739045200,4.676383596700,4.791367617400,4.945742402400,5.179446617600,5.316650851700,-150.75412279680947 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.315241831300,4.541623569300,4.687561109800,4.841011624900,5.040890903500,5.177535060500,-150.75431159933711 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.319888341600,4.586658779700,4.684291998800,4.838605095900,5.085112856500,5.222572031300,-150.75432342708663 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.203680724200,4.406183819900,4.581903924700,4.734473918600,4.900841745600,5.036922452200,-150.75452650262082 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.213740965300,4.496440530600,4.576434754400,4.730725682100,4.979601956200,5.118348708300,-150.7545316992613 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.106607855300,4.392038771600,4.471304491200,4.625171697300,4.872279073100,5.010867150400,-150.75477468229087 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.102861942100,4.348897709600,4.475752116800,4.628724401400,4.838886154600,4.975736673200,-150.75477658829732 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.107718317100,4.419058139300,4.467556195400,4.621938577100,4.921243255900,5.058198318100,-150.75481793847436 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,3.999475267600,4.287772251600,4.366746135800,4.520117605300,4.772674648400,4.910341282100,-150.7550543082615 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,3.989574476800,4.199339083300,4.373589337700,4.525082027500,4.703924950700,4.837967741300,-150.75505634747236 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.775488593000,3.993279147900,4.165880525200,4.316170543400,4.508592552400,4.640378505800,-150.75569404715114 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.785887763700,4.092911650800,4.155757966900,4.308371193800,4.584210763500,4.720522584400,-150.755699595706 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.781563402800,4.037983918800,4.167134643700,4.318033000600,4.577387436700,4.707784861600,-150.75572079714772 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.786293364000,4.105796296000,4.153880943500,4.306740144000,4.623972798100,4.757928688200,-150.7557414612227 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.672730676700,3.920336140500,4.064845657100,4.214739786000,4.466864118400,4.595609986400,-150.7560745206515 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.679151853500,4.001663535800,4.049592749700,4.201883766500,4.525616630800,4.658466360100,-150.75610737042146 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.572010423800,3.897693942100,3.945457535800,4.097145700500,4.427668294300,4.559352085400,-150.75649866602708 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.053823188200,3.458588866300,3.714871805000,3.854173557800,4.003066542800,4.245576921800,4.374487798400,-150.75684784966143 + 0.183467902900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.053823188200,3.464869082300,3.793900929500,3.841487743000,3.992535257000,4.330155464100,4.460609065200,-150.75690361395732 + 0.185287069500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.739017319800,4.926079512600,5.105468272600,5.260769512300,5.402821389300,5.546257752000,-150.7794184336854 + 0.185287069500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.310740536000,4.509866759600,4.686263147800,4.839932542600,4.999835850000,5.140664224200,-150.78011672632172 + 0.185287069500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.206054128400,4.422087017100,4.585483075100,4.737522405100,4.940235572500,5.071270254100,-150.780367356131 + 0.185287069500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.884844319000,4.111617223800,4.273767359500,4.424076031100,4.649877372400,4.777268185600,-150.78120191871454 + 0.185287069500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.893434948700,4.210080115500,4.258120510600,4.411595275100,4.713952110700,4.852569773200,-150.7812119725072 + 0.185287069500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.563673959300,3.802968768800,3.963060057000,4.112304095200,4.360221979100,4.490025784100,-150.78226978986987 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.957842687500,5.168189668400,5.318441408100,5.330140226900,5.648311488400,5.656136720900,-150.81800214309857 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.268440703600,4.852625511300,5.079456279200,5.210065820400,5.226803359600,5.547150846000,5.581299974200,-150.8181200098873 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.268440703600,4.857711736400,5.153915020100,5.203146792400,5.217241944700,5.619995231200,5.625216886700,-150.8181281268908 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.739017319800,4.926079512600,5.106064331600,5.123941503700,5.406597310900,5.442322691500,-150.8182488624245 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.750569692200,5.048662795900,5.097805336800,5.111864931100,5.518288037900,5.523907551400,-150.8182617967399 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.643427685400,4.943491802700,4.991990033200,5.006866945600,5.396921559300,5.431100624400,-150.81839836951102 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.531288685300,4.765620219300,4.894295000700,4.911291581100,5.237910796500,5.274889743500,-150.81855849691735 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.524871953500,4.717696515200,4.900367276900,4.910832959300,5.219705439000,5.230441991800,-150.81856405522194 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.536285718800,4.838407337400,4.887357386100,4.901340607700,5.315514402300,5.321974391000,-150.8185793049558 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.422336800700,4.645742135200,4.790707363500,4.808041132500,5.129187874900,5.166104584800,-150.81874710150322 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.427015532900,4.691176198700,4.787227188800,4.803376626000,5.161545958900,5.197930385100,-150.81874765459725 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.310740536000,4.509866759600,4.687582133700,4.705632503300,5.008120186100,5.045346074800,-150.81895396844232 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.213740965300,4.496440530600,4.576434754400,4.592029309500,4.979601956200,5.014449073400,-150.81920230248966 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.106607855300,4.392038771600,4.471767417800,4.487354322100,4.879835693100,4.915051079400,-150.81946324308456 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,3.995760105000,4.245085753200,4.374829569100,4.386003987400,4.756857112000,4.769691169900,-150.81974107196345 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,3.999475267600,4.287772251600,4.368270413200,4.380927121600,4.785579144900,4.797439640000,-150.81974826693755 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.333284299000,3.891388202600,4.169921957700,4.264875782800,4.280895390400,4.671149924700,4.707645099800,-150.82007557804405 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.230435460900,3.786293364000,4.105796296000,4.153880943500,4.167525934300,4.614008492300,4.623972798100,-150.82046274871803 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.563673959300,3.802968768800,3.963578437600,3.973275352500,4.347978853800,4.363708854800,-150.82123345169936 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.570024329900,3.859070916700,3.954843393300,3.966720346800,4.389272994100,4.402420218200,-150.82127774137464 + 0.188098291400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.572010423800,3.897693942100,3.944935893300,3.959496212600,4.403907166200,4.440084837600,-150.8213032823243 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.955654007100,5.151746525400,5.227902036100,5.317840977100,5.533146974200,5.634527477400,-150.82800377275984 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.854223410500,5.095075474700,5.123270941300,5.208526283300,5.491642353800,5.552881001100,-150.8281334128628 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.747100845500,4.990245252500,5.016360471900,5.105282466900,5.370699362700,5.471505537200,-150.82825423928458 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.741469700200,4.942651067900,5.022265100200,5.106001289700,5.360425543400,5.420213009000,-150.82826671293506 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.631943013900,4.821823337200,4.913638245300,5.003516517100,5.218938344000,5.320634823100,-150.82839324337294 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.643427685400,4.904708650300,4.943491802700,4.992378180300,5.315306652400,5.415195819900,-150.82840935165717 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.532858593200,4.780892427700,4.808748435200,4.893369904200,5.191156742200,5.250202528700,-150.82857725912632 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.536285718800,4.799753074700,4.838407337400,4.887249327600,5.217796219600,5.316912699600,-150.82858149705615 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.417804374400,4.613707804700,4.708502696900,4.790745264500,5.043833301200,5.099159383900,-150.82875123885 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.422336800700,4.645742135200,4.705487010600,4.794199181200,5.057700366400,5.156189121400,-150.82875811324195 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.428718064600,4.697429548400,4.719694097300,4.784967222100,5.113822334000,5.211471697400,-150.8287760678359 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.317071723500,4.556984234600,4.601939374500,4.685679019900,4.987569703600,5.045570318900,-150.8289759216874 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.209965866700,4.452867470500,4.495643185500,4.583804912700,4.871453372200,4.969693736700,-150.82919697484718 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.214860090800,4.485419665300,4.523733385600,4.572353939600,4.923613461000,5.020994967800,-150.82922084175775 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.989574476800,4.199339083300,4.292647087600,4.373589337700,4.652474154300,4.703924950700,-150.82972499628346 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.999475267600,4.282447260800,4.287772251600,4.366986801100,4.719603202100,4.776592706500,-150.8297643595127 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.882528778900,4.096203602500,4.189083709000,4.269653678100,4.555680965800,4.606048065400,-150.8300392172201 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.886888348700,4.126697846600,4.184953608900,4.272803781800,4.566009042100,4.664190122500,-150.8300447787004 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.893434948700,4.172427533900,4.210080115500,4.257904814100,4.644972974300,4.704008207300,-150.83011230087897 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.775488593000,3.993279147900,4.085704933900,4.165880525200,4.459361114700,4.508592552400,-150.83038604827325 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.781563402800,4.037983918800,4.082341002400,4.164649790200,4.501823779300,4.555878309400,-150.83042149639462 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.786293364000,4.067809457700,4.105796296000,4.153880943500,4.526862196900,4.623972798100,-150.83044602714136 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.668454401600,3.890582467500,3.979654913200,4.067768702700,4.345950510000,4.445357002900,-150.83074762624054 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.677144364200,3.962500400100,3.972976088500,4.055959030900,4.413649352900,4.466113224800,-150.8308167327419 + 0.188842943600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.561426745100,3.788132086400,3.874982073900,3.963253479000,4.240290407400,4.341941450000,-150.8311464597588 + 0.190638953700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.527294990600,4.734019817300,4.898434488900,5.051506051100,5.234088817800,5.365170507300,-150.85254986653007 + 0.190638953700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.214860090800,4.523733385600,4.572238436400,4.727191177100,5.015629542200,5.158854866400,-150.85317997711707 + 0.190638953700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,4.000576601500,4.314504040700,4.362751325000,4.516774864800,4.816221373900,4.957813641100,-150.85371510422019 + 0.190638953700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.882528778900,4.096203602500,4.269653678100,4.421859925600,4.606048065400,4.747104846000,-150.8539864848103 + 0.190638953700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.568833039900,3.845535497400,3.956766683900,4.107453695300,4.386581906300,4.521920031900,-150.8551042666668 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.961346851800,5.199999970100,5.277914952600,5.315830961800,5.620844815900,5.676056743500,-150.8824501041541 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.957842687500,5.168189668400,5.282057658100,5.314833779800,5.617897218800,5.627927709200,-150.88245177781633 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.964415292200,5.244986058000,5.274800359400,5.309908423400,5.677817623200,5.690805869500,-150.88245800739335 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.854223410500,5.095075474700,5.172762086400,5.210653967800,5.519624069500,5.575100732900,-150.88256789457256 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.856548656300,5.125227560200,5.171763318200,5.206358341000,5.568083383000,5.580693108000,-150.88258015315031 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.745511855200,4.974736532600,5.068542528700,5.106794107100,5.406085477300,5.462248666400,-150.88269847443843 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.639979217600,4.885515372100,4.962711745200,5.000550393600,5.317878737700,5.373907496800,-150.88284792108615 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.428008600300,4.705613747800,4.750102221400,4.787056471400,5.140030792000,5.195758122900,-150.88320430185072 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.424179372000,4.661238151200,4.757249404800,4.789931089600,5.133086506200,5.141582412400,-150.88320790540928 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.320874558700,4.600968322200,4.645290832900,4.682193937700,5.039700816800,5.095718286200,-150.88341293645962 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.313131308100,4.525916969800,4.655597960300,4.687232704300,5.013483052500,5.020972853100,-150.8834137398356 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.208149299900,4.437648982000,4.545881638400,4.584441013300,4.894008078900,4.952130403200,-150.88363363396883 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.203680724200,4.406183819900,4.551255715500,4.581903924700,4.896578004600,4.900841745600,-150.883634250915 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.214440387800,4.510263862200,4.538562096200,4.574978752600,4.950140866100,5.005991291700,-150.8836494465068 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.107301863900,4.405723862200,4.433906374900,4.470255588700,4.850193424800,4.906343351000,-150.8839105648545 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,3.989574476800,4.199339083300,4.343364997900,4.373589337700,4.701232506300,4.703924950700,-150.884178588705 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,3.997273347200,4.259657255400,4.335048911300,4.372675730700,4.719280440500,4.777164745100,-150.8841885085738 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,4.000576601500,4.314504040700,4.327445835200,4.362242393700,4.784224715800,4.792660844100,-150.884217213988 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.888660527900,4.141443468000,4.235476771900,4.267227301300,4.637321027100,4.641349929900,-150.8845152915173 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.893434948700,4.210080115500,4.222614876100,4.258310877700,4.668352978300,4.722711315500,-150.884546912111 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.779807698500,4.023413438100,4.130211426900,4.168528782100,4.505297907700,4.563700435900,-150.8848607264691 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.678750292300,3.988945369200,4.017712234700,4.051532482300,4.479969600600,4.485429893000,-150.88530584151954 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.561426745100,3.788132086400,3.924528022800,3.963891755300,4.284601197100,4.345846813600,-150.88564992989802 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.572010423800,3.897693942100,3.910592851700,3.944935893300,4.396651573300,4.403907166200,-150.88576377094327 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.454406230900,3.685948542200,3.826726082600,3.855667219800,4.219045623600,4.220918158600,-150.88609383139178 + 0.192983829000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.464869082300,3.793900929500,3.806021413200,3.841350263900,4.266323399100,4.323932883500,-150.8861951868028 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.964853815800,5.259243598200,5.308460868200,5.371734997300,5.722034937700,5.761485627100,-150.95811321760394 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.953174825600,5.134948398300,5.319373987200,5.378863546800,5.629495855200,5.665162274900,-150.95811720276802 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.962661635200,5.215361800900,5.314826992700,5.376699968900,5.693200950100,5.731991198200,-150.95812036380738 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.857711736400,5.153915020100,5.203045292300,5.266191066900,5.620428298600,5.659289267200,-150.95823321570322 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.852625511300,5.079456279200,5.212133950200,5.272794433500,5.565555490300,5.601716435200,-150.9582347393666 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.741469700200,4.942651067900,5.106001289700,5.171866299200,5.420213009000,5.499085772800,-150.95836387119252 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.750569692200,5.048662795900,5.097334949400,5.161184069800,5.501731783100,5.579537280500,-150.95836402855332 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.638399548000,4.870122198700,4.999196250300,5.064609843900,5.338382718200,5.418770936800,-150.95850585779706 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.642277904200,4.915227438900,4.997071781700,5.058872350200,5.396655933000,5.432830594700,-150.9585165041171 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.643427685400,4.943491802700,4.992128321600,5.055835656400,5.403439204800,5.480479482300,-150.95851929666722 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.529434035100,4.749995211800,4.894932191700,4.960582293600,5.225243999400,5.306082445700,-150.958672199248 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.535143058400,4.810369130100,4.890871676100,4.955117366100,5.277199073200,5.355836536100,-150.95867994488273 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.424179372000,4.661238151200,4.789492994300,4.854705836700,5.137708454500,5.218372589100,-150.95885945955945 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.428008600300,4.705613747800,4.785665583000,4.849843824000,5.172900411800,5.252581560900,-150.95886207328985 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.318620653600,4.571996704500,4.686105239500,4.746214525100,5.074128109000,5.106605404600,-150.95908024718244 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.322001918100,4.628521560200,4.676817930800,4.740113796800,5.100515340400,5.177806552700,-150.95908554492402 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,3.991910342400,4.214924610800,4.373144847700,4.438613504400,4.716289475000,4.798166935000,-150.95984524621463 + 0.199234803200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.953174825600,5.134948398300,5.318009161200,5.474505870900,5.620842357800,5.768577816800,-150.95985742119603 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.891388202600,4.169921957700,4.266803701200,4.326685786800,4.695117006300,4.726562093100,-150.9602050868657 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.775488593000,3.993279147900,4.166633874600,4.232029518900,4.513258308200,4.594533139600,-150.96052262961618 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.783049480500,4.052220777600,4.162158140600,4.226110813000,4.558240513100,4.638286483500,-150.96054201449272 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.779807698500,4.023413438100,4.168528782100,4.226176446400,4.563700435900,4.590863217100,-150.96054776422153 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.785211836100,4.079686391400,4.159819800000,4.220006897400,4.603454887900,4.633970419000,-150.9605699767085 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.674468944100,3.934721520300,4.062575726200,4.120445320900,4.473648018400,4.499730154200,-150.9609489699487 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.563673959300,3.802968768800,3.959438873000,4.023989992900,4.335798748600,4.415741556000,-150.96134843929207 + 0.199088582300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.460289016300,3.728853660400,3.855943870300,3.913224664800,4.284299072000,4.309064975900,-150.9618332792164 + 0.199234803200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.890160562300,4.155852137600,4.266276197500,4.419484994600,4.656590674800,4.802269609400,-150.96186869282238 + 0.199234803200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.668454401600,3.890582467500,4.062282333000,4.213928415800,4.411586337200,4.554642971800,-150.96256737914578 + 0.199234803200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.561426745100,3.788132086400,3.958872837000,4.109874822300,4.315059721500,4.457102305900,-150.9629598505634 + 0.199234803200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.053823188200,3.460289016300,3.728853660400,3.856344164200,4.004098426000,4.287716420900,4.404521291600,-150.9634121502276 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.857275545700,5.139755549300,5.204668032700,5.316348250800,5.592262256200,5.710918715800,-151.00054874765178 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.750569692200,5.048662795900,5.097466147600,5.208717229000,5.507925715000,5.624714318400,-151.00069201224807 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.749413111500,5.020182224600,5.102212611500,5.211720049000,5.497484008900,5.580859310000,-151.00069426568464 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.642277904200,4.915227438900,4.996153699500,5.107504920400,5.381503924000,5.499057224000,-151.00083621583238 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.631943013900,4.821823337200,5.003516517100,5.109359436800,5.320634823100,5.397988542200,-151.0008391027245 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.639979217600,4.885515372100,5.000268332000,5.108359131300,5.370979355400,5.451480561800,-151.0008395236183 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.531288685300,4.765620219300,4.895541634700,5.007004291000,5.248953587000,5.365496772100,-151.00100646072784 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.536285718800,4.838407337400,4.887357386100,4.997444747000,5.321974391000,5.406244403900,-151.0010237996076 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.425739045200,4.676383596700,4.788868486000,4.900130405100,5.153603123400,5.271794986700,-151.0011850309077 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.203680724200,4.406183819900,4.585689432800,4.689954406700,4.924526877800,4.997683343000,-151.0016345207351 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.209965866700,4.452867470500,4.582746045200,4.688870047400,4.960418959600,5.036187394700,-151.00163760752014 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.105636411900,4.378004748700,4.473067050900,4.583399617800,4.861517150600,4.979961136900,-151.001879721477 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,3.989574476800,4.199339083300,4.373589337700,4.484594449900,4.703924950700,4.822430614900,-151.00216136121418 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.888660527900,4.141443468000,4.267227301300,4.377335054500,4.641349929900,4.759438337500,-151.00248363844153 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.892343245200,4.183651081900,4.264249130500,4.371204421400,4.704687191000,4.781522266900,-151.00252751773726 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.779807698500,4.023413438100,4.167603191100,4.271308134800,4.556680465000,4.626767752300,-151.00285779247628 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.786293364000,4.105796296000,4.153880943500,4.261716608600,4.623972798100,4.701542444000,-151.00289523990745 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.677144364200,3.962500400100,4.056963162500,4.165687806000,4.478542985400,4.592702529800,-151.00324641683096 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.565657610200,3.817482730700,3.958173952600,4.067092173800,4.346590992100,4.461441930100,-151.00364504068878 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.561426745100,3.788132086400,3.963253479000,4.064434225000,4.341941450000,4.407204561800,-151.00365229975745 + 0.202698245700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.464869082300,3.793900929500,3.840951980300,3.948404424300,4.305856261800,4.420324916800,-151.00413089352264 + 0.210671191500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.639979217600,4.885515372100,4.998333273300,5.155014682500,5.350852363500,5.505017500600,-151.08853328834104 + 0.210671191500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.429143795300,4.733415163100,4.782030137900,4.937940299900,5.210574997900,5.360922280800,-151.08890979331645 + 0.210671191500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.209965866700,4.452867470500,4.582361303400,4.736908003600,4.957045183200,5.104434395300,-151.08934546710407 + 0.210671191500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.096625254600,4.302670415400,4.478377087500,4.632671389400,4.806578204800,4.955801666000,-151.0895855213136 + 0.210671191500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,3.993972335500,4.230174195400,4.376806200500,4.526907448000,4.761835201200,4.881685042100,-151.08989581691117 + 0.210671191500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.677144364200,3.962500400100,4.057276105500,4.209526520100,4.482410369700,4.627380490800,-151.0909148647413 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.959740428900,5.184275050400,5.230114179200,5.314831487200,5.585766330400,5.644800110400,-151.10860964068243 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.963684516800,5.225247678800,5.230357990000,5.311481034300,5.618523418600,5.679002951100,-151.10861071175196 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.964853815800,5.220449963900,5.259243598200,5.308560352700,5.626117011700,5.726738564900,-151.1086162932573 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.846094655800,5.030456998800,5.122989552600,5.213569538300,5.418881672600,5.523579814700,-151.1087092262399 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.850737828400,5.063478368600,5.123708993500,5.213406372000,5.453452399100,5.555613824600,-151.10872133502198 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.857711736400,5.115170165000,5.153915020100,5.203146792400,5.524551341700,5.625216886700,-151.1087349134467 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.749413111500,5.015353453400,5.020182224600,5.101313451400,5.422141358700,5.482610660400,-151.10887275023873 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.527294990600,4.734019817300,4.813166102400,4.895851843400,5.161769293200,5.216169500700,-151.10916928667717 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.310740536000,4.509866759600,4.604882209200,4.686263147800,4.948923051200,4.999835850000,-151.10955523947013 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.322001918100,4.590523287100,4.628521560200,4.676817930800,5.041537347900,5.100515340400,-151.10959795765515 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.213740965300,4.489653483700,4.496440530600,4.577437019200,4.892508176800,4.995973020100,-151.1097952264497 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.206054128400,4.422087017100,4.500899577700,4.582823768900,4.869468610200,4.921933683300,-151.10979826534114 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.096625254600,4.302670415400,4.396970644300,4.477676187800,4.753364078200,4.802197443500,-151.11004370959736 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.104387701900,4.363623730400,4.391584187800,4.474940732000,4.801299640800,4.854407743300,-151.11006837248692 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.107718317100,4.381099054600,4.419058139300,4.466940978800,4.836882274000,4.892687816100,-151.11008461684065 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.995760105000,4.245085753200,4.289851854000,4.372365412100,4.696094130800,4.748202654500,-151.11035584727443 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,4.000576601500,4.276264767300,4.314504040700,4.362872374200,4.720910645500,4.821808694300,-151.1103705574012 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.891388202600,4.169921957700,4.180885565600,4.264228873300,4.611952715500,4.663082650400,-151.11068279547953 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.777782652200,4.008511207200,4.081961353600,4.170510336400,4.453511341700,4.556191212600,-151.11099319050388 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.784265690600,4.066122192600,4.075455623300,4.162656858500,4.495417313900,4.597124957800,-151.11102900396563 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.672730676700,3.920336140500,3.980023907000,4.060567458700,4.388471811600,4.434458791800,-151.11140367149787 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.567377392000,3.831672212000,3.874732916500,3.955594830700,4.302323884500,4.348021156900,-151.1118348149475 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.454406230900,3.685948542200,3.777512847600,3.855667219800,4.177724565700,4.219045623600,-151.112218306522 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.461728035200,3.742513467300,3.766139137900,3.853223058200,4.185643091300,4.290069723700,-151.11225832135855 + 0.212638982500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.464869082300,3.756040482200,3.793900929500,3.841420625100,4.225124493000,4.327118661400,-151.11232493700075 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.268440703600,4.848560733400,5.047144373700,5.213694529100,5.224244653100,5.526568481100,5.539912193300,-151.12948363058013 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.747100845500,4.990245252500,5.105823018100,5.117774458000,5.465047467000,5.477128485300,-151.12962079776244 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.636533377600,4.854374132700,4.999769657000,5.017533015300,5.325536117500,5.365506859500,-151.12976682663427 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.639979217600,4.885515372100,5.001077628300,5.013036919300,5.367709027700,5.379377001800,-151.1297759705428 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.429143795300,4.733415163100,4.781759803100,4.796630351300,5.197910788000,5.234458002700,-151.13013969648063 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.319888341600,4.586658779700,4.682696642600,4.698999529000,5.065019873900,5.103636948600,-151.13034395524457 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.322001918100,4.628521560200,4.677257949100,4.691084819600,5.110306842500,5.121045297000,-151.13035474874042 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.230435460900,3.783049480500,4.052220777600,4.162158140600,4.179045887900,4.558240513100,4.599812448500,-151.1318268691656 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.127874917600,3.670725723300,3.905622509300,4.062248350000,4.080809899900,4.427870458200,4.471784160300,-151.13220589226802 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.127874917600,3.679151853500,4.001663535800,4.049592749700,4.063094563600,4.511245738400,4.525616630800,-151.13226938128855 + 0.214669613600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.923739987900,3.454406230900,3.685948542200,3.862045039400,3.870230535700,4.236067721100,4.257982609400,-151.13307527781163 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.953174825600,5.134948398300,5.279093987000,5.318939923100,5.567071985900,5.626744931900,-151.17539038663313 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.741469700200,4.942651067900,5.073325961900,5.104923822800,5.407393549100,5.412694445300,-151.1756475688315 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.748401348200,5.005394622700,5.068537376800,5.102292830100,5.456017779300,5.464009244100,-151.17565436698905 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.636533377600,4.854374132700,4.968148394400,5.000258871400,5.323066247300,5.329346042800,-151.175803216582 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.527294990600,4.734019817300,4.859887011300,4.899333654300,5.179688628100,5.240315379700,-151.1759596240095 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.534143464500,4.795809491400,4.858849003700,4.892443384900,5.258087833500,5.265748664200,-151.1759785444533 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.317071723500,4.556984234600,4.649471469500,4.687978491800,5.005406878200,5.065797592800,-151.17636083268332 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.101059397400,4.333828736100,4.441595044800,4.480555019600,4.795124307400,4.856807245600,-151.17685252561228 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.882528778900,4.096203602500,4.240235436300,4.269653678100,4.606048065400,4.607753374000,-151.1774642427855 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.775488593000,3.993279147900,4.137282603900,4.166633874600,4.513258308200,4.514714015400,-151.1778253266962 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.783049480500,4.052220777600,4.129911767300,4.161737704800,4.553337664000,4.553956826200,-151.17785350916668 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.785211836100,4.079686391400,4.123032102600,4.159819800000,4.542720658100,4.603454887900,-151.17785823096312 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.668454401600,3.890582467500,4.033390952400,4.062282333000,4.411586337200,4.415230139100,-151.17821705725265 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.460289016300,3.728853660400,3.818218270000,3.856344164200,4.225288663000,4.287716420900,-151.17912083047256 + 0.219346810500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.462905707800,3.755849630000,3.816708376800,3.848713744100,4.275285135000,4.275476071600,-151.17916452536184 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.959740428900,5.184275050400,5.314831487200,5.427661784900,5.644800110400,5.766463749400,-151.21533492139054 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.964853815800,5.259243598200,5.308172666200,5.419922021200,5.708387372500,5.828466084200,-151.2153391413413 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.854223410500,5.095075474700,5.210653967800,5.319057183800,5.575100732900,5.654478976000,-151.21546162928635 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.848560733400,5.047144373700,5.214088574100,5.320899742900,5.542656977600,5.620884752400,-151.21546829054648 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.747100845500,4.990245252500,5.103387226700,5.215699006500,5.451749684500,5.574068919300,-151.2155849339875 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.739017319800,4.926079512600,5.108746685500,5.214443613000,5.423562421400,5.498730638700,-151.2155964436297 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.636533377600,4.854374132700,4.999769657000,5.112334170100,5.325536117500,5.448042986100,-151.21573578692096 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.534143464500,4.795809491400,4.894401587800,5.002615998500,5.290525636700,5.369266126200,-151.2159272437646 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.429143795300,4.733415163100,4.781759803100,4.892362199900,5.197910788000,5.318281734600,-151.21609915383368 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.310740536000,4.509866759600,4.690503810700,4.794653683100,5.026430408800,5.097328751200,-151.21631572557177 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.319888341600,4.586658779700,4.684291998800,4.791755834000,5.085112856500,5.160609204200,-151.2163204588819 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.315241831300,4.541623569300,4.689661895600,4.795312912900,5.057078656400,5.131191588900,-151.21632455076494 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.322001918100,4.628521560200,4.677257949100,4.786719176800,5.121045297000,5.200534255200,-151.21633405580653 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.214860090800,4.523733385600,4.572238436400,4.681370452700,5.015629542200,5.092925324600,-151.21656105292598 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.101059397400,4.333828736100,4.477220489700,4.588399401700,4.831223514900,4.951843852600,-151.21680000659785 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.096625254600,4.302670415400,4.482114205500,4.585368024100,4.829880372600,4.898354456300,-151.2168107770748 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,3.993972335500,4.230174195400,4.376806200500,4.481193043000,4.761835201200,4.832465044000,-151.21711144628426 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.884844319000,4.111617223800,4.274248057700,4.377457581300,4.653147197300,4.721521139500,-151.2174306642514 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.775488593000,3.993279147900,4.165880525200,4.276805397900,4.508592552400,4.630018315100,-151.21775832283942 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.674468944100,3.934721520300,4.062575726200,4.166055138100,4.473648018400,4.539800863100,-151.21818992847247 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.959740428900,5.184275050400,5.317531818700,5.378082403200,5.668879921800,5.703105921900,-151.21820764090808 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.679151853500,4.001663535800,4.049592749700,4.156953531300,4.525616630800,4.598562836600,-151.21822710947322 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.745511855200,4.974736532600,5.107413194000,5.167582715700,5.467738342600,5.500545070100,-151.21846407972814 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.572010423800,3.897693942100,3.944935893300,4.052876671100,4.403907166200,4.521522008700,-151.21863071538044 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.417804374400,4.613707804700,4.790745264500,4.857458780100,5.099159383900,5.183811985600,-151.2189584248852 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.460289016300,3.728853660400,3.853147890800,3.961858432000,4.260363028000,4.378010563800,-151.21904276035593 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.456627839900,3.700569538700,3.859323137900,3.960048585500,4.260941702700,4.321802685200,-151.21904712694854 + 0.223593937200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.463821858000,3.768860595300,3.847819377700,3.952645548900,4.307715696000,4.374315261100,-151.2190994416684 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.310740536000,4.509866759600,4.691019799200,4.748315175300,5.029658378100,5.055906212300,-151.2191776271814 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.214860090800,4.523733385600,4.571752825500,4.634993208200,4.993010048900,5.074900179800,-151.21941605529787 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.209965866700,4.452867470500,4.583804912700,4.642849212200,4.969693736700,4.998422657400,-151.21942273164186 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.102861942100,4.348897709600,4.476220918500,4.541297048700,4.842999149000,4.925918796500,-151.21967431389882 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.106607855300,4.392038771600,4.471304491200,4.535246400200,4.872279073100,4.955189672200,-151.21967641661422 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.098980381100,4.318418916600,4.481745751300,4.539097080500,4.845207743400,4.870341934400,-151.2196770141894 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,3.999475267600,4.287772251600,4.366746135800,4.430538998800,4.772674648400,4.855773117400,-151.21997132721057 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.884844319000,4.111617223800,4.274248057700,4.331109903500,4.653147197300,4.677235491800,-151.22029922261473 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.670725723300,3.905622509300,4.062248350000,4.127627543800,4.427870458200,4.512255272900,-151.22104785355472 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.679151853500,4.001663535800,4.049000589400,4.111324118900,4.498522409100,4.580134205500,-151.22109451277092 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.570951078700,3.872276844200,3.949898162600,4.012995301800,4.377818505400,4.461685323600,-151.22151986948757 + 0.223906091100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.464869082300,3.793900929500,3.840863498600,3.902746282800,4.301830345300,4.383752466900,-151.22200997667557 + 0.224505627400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.962661635200,5.215361800900,5.314633125400,5.470256933200,5.690730466800,5.819807925900,-151.22368267262732 + 0.224505627400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.857275545700,5.139755549300,5.204533372100,5.362050551000,5.588990376100,5.747255810000,-151.22377718862907 + 0.224505627400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.850737828400,5.063478368600,5.213406372000,5.367062602900,5.555613824600,5.681633555600,-151.22380598865146 + 0.224505627400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.422336800700,4.645742135200,4.794199181200,4.946055870200,5.156189121400,5.277856482200,-151.22444782256306 + 0.224505627400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.322001918100,4.628521560200,4.676956191500,4.832526857000,5.106974863500,5.259767677900,-151.2246473604046 + 0.224505627400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.777782652200,4.008511207200,4.166576367200,4.319693358500,4.529467318000,4.678967067400,-151.22606746191653 + 0.224505627400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.053823188200,3.454406230900,3.685948542200,3.856481168700,4.007889436700,4.224031217500,4.371738670700,-151.2272633316012 + 0.224505627400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.053823188200,3.464476348700,3.781544851600,3.843562846900,3.995101941100,4.289072729200,4.440014241900,-151.22730573455704 + 0.237101264600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.743634685400,4.958870951400,5.017890728700,5.108106635100,5.345485603600,5.452605293300,-151.331550516169 + 0.237101264600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.636533377600,4.854374132700,4.913642410100,5.003604453500,5.249244556800,5.355338200800,-151.33170435349456 + 0.237101264600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.641272085200,4.900551235400,4.910506585800,4.999378250600,5.285705514200,5.390820125300,-151.33171227248314 + 0.237101264600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.420211670800,4.629897885800,4.709237806000,4.791197155000,5.065991434400,5.116421472400,-151.33206652836293 + 0.237101264600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.315241831300,4.541623569300,4.603383807400,4.685570167100,4.976178161800,5.025508156600,-151.33227558535276 + 0.237101264600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.319888341600,4.586658779700,4.598428298000,4.682696642600,5.012096825500,5.065019873900,-151.3322930682741 + 0.237101264600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.677144364200,3.962500400100,3.971342573700,4.058665987900,4.393539870700,4.499550114800,-151.33415166145375 + 0.237101264600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.572010423800,3.860363786100,3.897693942100,3.944849743900,4.351534406000,4.399970965900,-151.33465039836057 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.959740428900,5.184275050400,5.314436662200,5.514751180300,5.641271731300,5.824029393000,-151.34624833630264 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.953174825600,5.134948398300,5.314745284500,5.514062804500,5.600103004100,5.781050139900,-151.3462530667535 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.963684516800,5.230357990000,5.313032323000,5.514108696200,5.704774637800,5.886019211900,-151.34628056165374 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.451188559500,4.855531211200,5.110333397100,5.207756502900,5.408232952600,5.568736560400,5.751394510900,-151.34636890248933 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.345977262600,4.743634685400,4.958870951400,5.105182016900,5.304128726500,5.429829510600,5.609642328500,-151.34650652949367 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.345977262600,4.750569692200,5.048662795900,5.097805336800,5.298770623300,5.523907551400,5.704718446100,-151.34653479804737 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.240862686600,4.639979217600,4.885515372100,5.001077628300,5.199905057500,5.379377001800,5.556303836100,-151.34668427046256 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.240862686600,4.643427685400,4.943491802700,4.992540550000,5.193035840900,5.422822460300,5.602684230100,-151.3466855424009 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.135852205900,4.535857187800,4.824569128900,4.889286192900,5.088962253100,5.294863819200,5.475190571200,-151.3468281459802 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.135852205900,4.524871953500,4.717696515200,4.897206565900,5.094154222300,5.210553283800,5.385925901900,-151.34683420098528 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.135852205900,4.531288685300,4.765620219300,4.896664680900,5.094651682300,5.258884173600,5.435104889900,-151.34684262502932 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.030953956100,4.417804374400,4.613707804700,4.790745264500,4.987349750600,5.099159383900,5.274927455300,-151.34701051868802 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.030953956100,4.425739045200,4.676383596700,4.791367617400,4.989093833300,5.179446617600,5.354166706900,-151.34704015480995 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.821531106800,4.203680724200,4.406183819900,4.581903924700,4.777225072100,4.900841745600,5.074179886500,-151.34745018272787 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.821531106800,4.214860090800,4.523733385600,4.572353939600,4.770725059000,5.020994967800,5.196604136600,-151.34748516873697 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.717027559400,4.096625254600,4.302670415400,4.483169216000,4.677040596800,4.836441896100,5.003987209000,-151.34772906025975 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.717027559400,4.107718317100,4.419058139300,4.467556195400,4.665325780000,4.921243255900,5.095659771200,-151.34774169656686 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.612678637600,3.989574476800,4.199339083300,4.373589337700,4.567487052900,4.703924950700,4.874585122500,-151.3479854453156 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.612678637600,3.997273347200,4.259657255400,4.373278661500,4.568441399700,4.783316646900,4.952957595600,-151.34801555589453 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.612678637600,4.000576601500,4.314504040700,4.362872374200,4.560007770000,4.821808694300,4.994973637500,-151.34802392481674 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.508498137900,3.892343245200,4.183651081900,4.262316149600,4.458045370200,4.673403729100,4.847579004700,-151.34829062896736 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.508498137900,3.882528778900,4.096203602500,4.269653678100,4.462780080700,4.606048065400,4.775265248200,-151.3482928047465 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.508498137900,3.893434948700,4.210080115500,4.258310877700,4.454776792900,4.722711315500,4.894561671700,-151.34833376866388 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.404501521800,3.779807698500,4.023413438100,4.164357102700,4.357584485200,4.531987576500,4.701415661500,-151.3486295667393 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.404501521800,3.781563402800,4.037983918800,4.167134643700,4.360258240800,4.577387436700,4.743141874900,-151.34865535281313 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.300706170600,3.668454401600,3.890582467500,4.068336260600,4.258931719600,4.448838493100,4.610002022800,-151.3490036334319 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.567377392000,3.831672212000,3.956125271700,4.148044040000,4.352598019700,4.519181630800,-151.34939358161932 + 0.238977412900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.572010423800,3.897693942100,3.945457535800,4.139672404200,4.427668294300,4.595150271400,-151.34943764195782 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.964853815800,5.259243598200,5.308407649200,5.465549626900,5.719517193200,5.847682954200,-151.3567335288761 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.957842687500,5.168189668400,5.316172015500,5.474168284200,5.638405963400,5.796239542900,-151.35673663390426 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.743634685400,4.958870951400,5.107737345500,5.260481694900,5.449733942400,5.570831618100,-151.35699633672357 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.748401348200,5.005394622700,5.104444932100,5.259122262100,5.491373318000,5.616003214300,-151.3570037878948 + 0.240333739900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.451188559500,4.857711736400,5.153915020100,5.203146792400,5.404517952000,5.625216886700,5.804899926400,-151.35701275052253 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.631943013900,4.821823337200,5.000047353600,5.157588568600,5.298720578100,5.458152716300,-151.35713257485713 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.642277904200,4.915227438900,4.997233963300,5.152105813000,5.399328444200,5.523429590600,-151.3571524817141 + 0.240333739900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.240862686600,4.631943013900,4.821823337200,5.002441261100,5.200360269300,5.313850613800,5.492884953600,-151.3572832613527 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.532858593200,4.780892427700,4.893727483600,5.050488918300,5.253918575000,5.412289121200,-151.35730306575437 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.524871953500,4.717696515200,4.898885717300,5.049331743800,5.221127144300,5.337580496200,-151.35731473516 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.535143058400,4.810369130100,4.892183492800,5.046647236100,5.298799077400,5.421820767100,-151.35732305543087 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.417804374400,4.613707804700,4.790745264500,4.947541858700,5.099159383900,5.257670746800,-151.35748964953737 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.313131308100,4.525916969800,4.686058950800,4.842380952700,5.012855522300,5.170993833300,-151.35769896164163 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.320874558700,4.600968322200,4.682013014100,4.835554870900,5.092758333800,5.212709788200,-151.35771705715018 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.317071723500,4.556984234600,4.687978491800,4.839529268400,5.065797592800,5.183493574000,-151.35772346691155 + 0.240333739900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.926176932600,4.318620653600,4.571996704500,4.686393186000,4.883801632800,5.077093373200,5.253459270300,-151.35785943270633 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.206054128400,4.422087017100,4.584992116600,4.734496050300,4.936861004300,5.050303789500,-151.3579501748188 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.213740965300,4.496440530600,4.577614068100,4.730725682100,4.998859750700,5.118348708300,-151.3579623887887 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.106607855300,4.392038771600,4.472603742200,4.625171697300,4.893459896700,5.010867150400,-151.35821568310732 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.102861942100,4.348897709600,4.479082209100,4.629553173300,4.868036408100,4.983047541500,-151.3582196288601 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,3.989574476800,4.199339083300,4.377554990400,4.525082027500,4.728596525100,4.837967741300,-151.3584973695498 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,3.999475267600,4.287772251600,4.368632910000,4.520745203500,4.803311612700,4.920614899100,-151.35851929521849 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.892343245200,4.183651081900,4.262562711000,4.416563341000,4.677404942900,4.832915768800,-151.3588057242185 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.884844319000,4.111617223800,4.274248057700,4.422067652200,4.653147197300,4.763482512100,-151.35882492682063 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.785887763700,4.092911650800,4.156090125900,4.309444043000,4.592063245100,4.746012852300,-151.35916742247605 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.679151853500,4.001663535800,4.049084522900,4.201826807200,4.502372451600,4.655846255000,-151.35956113851927 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.672730676700,3.920336140500,4.064381577900,4.211449183900,4.463358669200,4.570509296700,-151.35956360298638 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.571613143900,3.885151698400,3.947463212600,4.099766002600,4.387041544000,4.541905641100,-151.35997054861735 + 0.240313733000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.565657610200,3.817482730700,3.961346666000,4.107717944600,4.370508851300,4.476372164500,-151.35998232139005 + 0.240333739900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.570024329900,3.859070916700,3.954024199200,4.146930368000,4.392366324500,4.561210549000,-151.3600289595185 + 0.240333739900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.093800252100,3.460289016300,3.728853660400,3.855943870300,4.046808471400,4.284299072000,4.448354629500,-151.36042315863332 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.953174825600,5.134948398300,5.319373987200,5.329113389800,5.613363813200,5.629495855200,-151.36369929961543 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.957842687500,5.168189668400,5.314833779800,5.332820986600,5.627927709200,5.669269337700,-151.3636994976218 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.962661635200,5.215361800900,5.314826992700,5.327223505600,5.680259463600,5.693200950100,-151.36370381942717 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.373128036900,4.964853815800,5.259243598200,5.308560352700,5.322560397600,5.715776414600,5.726738564900,-151.36370692753553 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.268440703600,4.852625511300,5.079456279200,5.212430095100,5.223669829700,5.553393716300,5.568186552500,-151.36382343678846 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.268440703600,4.856548656300,5.125227560200,5.207739140600,5.220611176600,5.590771913800,5.603579225000,-151.3638268770543 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.743634685400,4.958870951400,5.104702857900,5.122777229800,5.426090140200,5.468348237200,-151.3639565162745 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.163878292600,4.749413111500,5.020182224600,5.100907658900,5.116936854300,5.475885921800,5.515790899200,-151.36396153231394 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.631943013900,4.821823337200,5.000047353600,5.019201922500,5.298720578100,5.342620863100,-151.3641058427617 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.059450457400,4.642996483300,4.929541700000,4.995109280000,5.008425153800,5.399338452700,5.412544596400,-151.36411799286824 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.529434035100,4.749995211800,4.898849055200,4.909213442100,5.238332681100,5.255614822100,-151.36428030181943 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.534143464500,4.795809491400,4.894401587800,4.906501670400,5.275333112600,5.290525636700,-151.36428561056323 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,3.955167857300,4.536285718800,4.838407337400,4.886795020000,4.901758420400,5.295580260900,5.335121044600,-151.3642889603334 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.417804374400,4.613707804700,4.795879728000,4.804946050500,5.112089625800,5.131422449000,-151.36446671703283 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.851042290900,4.424179372000,4.661238151200,4.792927158800,4.803760731300,5.150771659700,5.168007448200,-151.36447250024952 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.310740536000,4.509866759600,4.691511959600,4.700425034400,5.012689827000,5.032735683000,-151.36467842733583 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.747086849500,4.317071723500,4.556984234600,4.688307746100,4.699027855900,5.050783442200,5.068688076700,-151.36468535204529 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.206054128400,4.422087017100,4.581623267200,4.600507694200,4.913652743000,4.959114597200,-151.36491491998606 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.211503506700,4.467740298100,4.579085568900,4.596272515400,4.949888728700,4.993443981000,-151.36492326910417 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.643316095600,4.214860090800,4.523733385600,4.571752825500,4.586653955500,4.993010048900,5.033934462800,-151.36493528521757 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.098980381100,4.318418916600,4.477315514800,4.496267380400,4.814790260600,4.860833922100,-151.36517886334764 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.104387701900,4.363623730400,4.474549685800,4.491765592100,4.850385627700,4.894485872700,-151.36518903823705 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.539746272000,4.107718317100,4.419058139300,4.466940978800,4.481818735000,4.892687816100,4.934106580500,-151.36520342267042 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,3.989574476800,4.199339083300,4.379212928300,4.387620935700,4.716525340000,4.738879600700,-151.36547228324653 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,3.995760105000,4.245085753200,4.371420059200,4.389259806200,4.739936139100,4.785268036800,-151.36548185457147 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.436395546500,4.000576601500,4.314504040700,4.362872374200,4.376470406500,4.805663972200,4.821808694300,-151.36550729285932 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.333284299000,3.882528778900,4.096203602500,4.275413980800,4.283636675300,4.618554641500,4.641739836400,-151.36580049561923 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.333284299000,3.888660527900,4.141443468000,4.271081414300,4.281289191200,4.654015897600,4.674867056200,-151.36581645327817 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.333284299000,3.893434948700,4.210080115500,4.257665426000,4.272491785400,4.692948012800,4.735410060800,-151.3658395664761 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.230435460900,3.777782652200,4.008511207200,4.170510336400,4.179214944900,4.532930588900,4.556191212600,-151.36617259749315 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.230435460900,3.785887763700,4.092911650800,4.155757966900,4.171186127400,4.584210763500,4.627944128200,-151.36620884042395 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.127874917600,3.677144364200,3.962500400100,4.055959030900,4.072659429800,4.466113224800,4.511882492800,-151.36660780218378 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.561426745100,3.788132086400,3.958872837000,3.978851227800,4.315059721500,4.365039160700,-151.36700088898627 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.567377392000,3.831672212000,3.959752273900,3.969501143400,4.360392568400,4.383781564100,-151.3670385115274 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.025631986300,3.570951078700,3.872276844200,3.949898162600,3.965956975300,4.377818505400,4.423488769000,-151.36706597260837 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.923739987900,3.461728035200,3.742513467300,3.853907256500,3.864222520700,4.273477380700,4.296919056300,-151.36751662393232 + 0.241214894500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.923739987900,3.464869082300,3.793900929500,3.840772243700,3.855472736900,4.297674397300,4.342467045300,-151.36756377183747 + 0.244356429300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.717027559400,4.105636411900,4.378004748700,4.473067050900,4.670277740500,4.861517150600,5.044135710600,-151.3889812870997 + 0.244356429300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.093800252100,3.464869082300,3.793900929500,3.841350263900,4.034859323600,4.323932883500,4.496022138600,-151.3911354687278 + 0.245462828600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.527294990600,4.734019817300,4.895851843400,5.008660262800,5.216169500700,5.340296968600,-151.3963634725766 + 0.245462828600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.417804374400,4.613707804700,4.795879728000,4.900069593000,5.131422449000,5.201133552800,-151.39656551037788 + 0.245462828600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,4.000163572100,4.301311959900,4.365891743300,4.473564066800,4.812748066100,4.884753329600,-151.39759161663116 + 0.245462828600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.882528778900,4.096203602500,4.269653678100,4.381424015000,4.606048065400,4.730974059100,-151.39787420001434 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.962661635200,5.215361800900,5.276886291700,5.314826992700,5.633334158200,5.693200950100,-151.3980499126172 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.959740428900,5.184275050400,5.281799805300,5.314436662200,5.636040921900,5.641271731300,-151.39805080090903 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.323508978500,4.358877312500,4.964853815800,5.259243598200,5.272042143200,5.308560352700,5.668478456900,5.726738564900,-151.3980543821588 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.850737828400,5.063478368600,5.174052830600,5.213406372000,5.493818858700,5.555613824600,-151.39816639337252 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.846094655800,5.030456998800,5.178980250300,5.209754660500,5.496932935400,5.499389951800,-151.39816722588475 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.855531211200,5.110333397100,5.173824790700,5.207487540200,5.559274175100,5.565302821800,-151.39817524994498 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.218960256100,4.254231044800,4.857711736400,5.153915020100,5.166679522000,5.203146792400,5.566633079800,5.625216886700,-151.3981761128594 + 0.245462828600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.783049480500,4.052220777600,4.161737704800,4.271916872200,4.553956826200,4.677989619300,-151.39824881638677 + 0.245462828600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.785211836100,4.079686391400,4.160005646000,4.266100820900,4.606443298800,4.674857080800,-151.39828800001504 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.743634685400,4.958870951400,5.069101918900,5.108458884200,5.393161651300,5.455342932800,-151.39830140460145 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.114545003000,4.149712197600,4.750569692200,5.048662795900,5.061940453500,5.097266188800,5.490844542300,5.498482837900,-151.3983173970834 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.631943013900,4.821823337200,4.964621397100,5.004967104300,5.266142117400,5.329775763900,-151.39844897484767 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.641272085200,4.900551235400,4.961512074100,4.999378250600,5.329871902600,5.390820125300,-151.39845862571445 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.010273644700,4.045330647500,4.643427685400,4.943491802700,4.956743734000,4.991990033200,5.389902409600,5.396921559300,-151.39847055722635 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.524871953500,4.717696515200,4.865115237900,4.895342406000,5.198568221200,5.198793466000,-151.39862217664916 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.531288685300,4.765620219300,4.858799830000,4.897655680100,5.205190749100,5.267633466100,-151.3986240831605 + 0.245462828600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.668454401600,3.890582467500,4.062282333000,4.173421359500,4.411586337200,4.536177355400,-151.39863160266592 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.906157704400,3.941097303600,4.536285718800,4.838407337400,4.851059590900,4.887357386100,5.262359398300,5.321974391000,-151.398636263377 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.417804374400,4.613707804700,4.755489781800,4.795879728000,5.066921181000,5.131422449000,-151.39880636012919 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.422336800700,4.645742135200,4.758911380500,4.790196748000,5.124268150800,5.125229160800,-151.39881643026592 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.425739045200,4.676383596700,4.753039539500,4.791367617400,5.117153056400,5.179446617600,-151.39881644499283 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.802209949700,3.837024243900,4.429143795300,4.733415163100,4.746611483700,4.781686504500,5.188764200700,5.194471817800,-151.39883419005048 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.310740536000,4.509866759600,4.656445220600,4.686263147800,4.999835850000,5.001246581900,-151.39902239582398 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.320874558700,4.600968322200,4.647083586500,4.680771889600,5.069035270600,5.072409787500,-151.39904188200313 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.698444561700,3.733124873800,4.322001918100,4.628521560200,4.641089274500,4.677257949100,5.060688762300,5.121045297000,-151.39904201707932 + 0.245462828600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.561426745100,3.788132086400,3.958872837000,4.069664524500,4.315059721500,4.439452500100,-151.39906076399598 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.203680724200,4.406183819900,4.546838159300,4.587272147100,4.868979815500,4.934401660100,-151.39925228109067 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.211503506700,4.467740298100,4.546848980300,4.579085568900,4.948927240400,4.949888728700,-151.39927287474495 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.213740965300,4.496440530600,4.540588278400,4.577782952900,4.939657000900,5.001611916900,-151.39927371085128 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.594877332200,3.629414110100,4.214860090800,4.523733385600,4.536867801000,4.571752825500,4.988720939300,4.993010048900,-151.39928914768723 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.096625254600,4.302670415400,4.448309189200,4.477676187800,4.802197443500,4.805378229500,-151.3995207787252 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.104387701900,4.363623730400,4.442480308500,4.474549685800,4.850252420300,4.850385627700,-151.39953846286866 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.106607855300,4.392038771600,4.436002264400,4.473147162900,4.839917089500,4.902293597500,-151.39954001890354 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.491525894900,3.525908595800,4.107718317100,4.419058139300,4.432158915500,4.466940978800,4.889151943400,4.892687816100,-151.3995575254852 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,3.989574476800,4.199339083300,4.338735779400,4.379212928300,4.672480643900,4.738879600700,-151.39980693711644 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,3.993972335500,4.230174195400,4.341914997900,4.372421710300,4.728293791400,4.730730799900,-151.39982420990265 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,3.998511804800,4.273886728100,4.335994515800,4.368582009200,4.761995575000,4.762128181100,-151.39984063904242 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.388409995800,3.422626952000,4.000576601500,4.314504040700,4.326927233100,4.362872374200,4.760250108500,4.821808694300,-151.39984839334664 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.882528778900,4.096203602500,4.234915866700,4.275413980800,4.574830008300,4.641739836400,-151.40013286496497 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.886888348700,4.126697846600,4.238026768300,4.268312459700,4.629941381200,4.633317851800,-151.40015314959697 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.891388202600,4.169921957700,4.229185593300,4.266803701200,4.631230329600,4.695117006300,-151.40016401355356 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.285551811800,3.319590074500,3.893434948700,4.210080115500,4.223107460300,4.257665426000,4.691015296000,4.692948012800,-151.40019335298499 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.775488593000,3.993279147900,4.131265643300,4.171784117900,4.477613541300,4.545049695200,-151.4004950786808 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.781563402800,4.037983918800,4.128376624600,4.167134643700,4.511773701700,4.577387436700,-151.40051822612696 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.182976327400,3.216821483500,3.786293364000,4.105796296000,4.118783483100,4.153219262400,4.592490846300,4.593569779500,-151.40056813423112 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.672730676700,3.920336140500,4.025948964900,4.065288303600,4.403455137500,4.470205485400,-151.40091348101566 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.675940250800,3.948776855400,4.026463174500,4.057766343800,4.455917618400,4.459463108700,-151.40094323973915 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.080711780800,3.114347738200,3.679151853500,4.001663535800,4.013915988100,4.049592749700,4.462737287200,4.525616630800,-151.4009710358203 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.561426745100,3.788132086400,3.930861448900,3.958872837000,4.315059721500,4.323358305000,-151.40133331258968 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.565657610200,3.817482730700,3.922472136100,3.961800876300,4.306636171400,4.373923827500,-151.40134925544345 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.568833039900,3.845535497400,3.922881244100,3.953964322400,4.358307016700,4.362874608200,-151.40138503560587 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.978790196700,3.012198930300,3.572010423800,3.897693942100,3.909882439000,3.945457535800,4.364320122100,4.427668294300,-151.40142109636707 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.454406230900,3.685948542200,3.821471074100,3.862045039400,4.188870777500,4.257982609400,-151.40177098876424 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.463821858000,3.768860595300,3.811470057800,3.848230900300,4.249053679800,4.314254265400,-151.40186509054257 + 0.245773857400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.877248021900,2.910409273700,3.464869082300,3.793900929500,3.806751208400,3.840772243700,4.297674397300,4.299391849400,-151.40190823854834 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.953174825600,5.134948398300,5.314745284500,5.382206861700,5.600103004100,5.686415345500,-151.4215510985136 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.421347611400,4.963684516800,5.230357990000,5.311481034300,5.376501884900,5.679002951100,5.762835906000,-151.4215531768492 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.850737828400,5.063478368600,5.209726009600,5.276318039700,5.526891772300,5.612633077600,-151.42167364219443 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.855531211200,5.110333397100,5.207487540200,5.272833430600,5.565302821800,5.649778092200,-151.42167507260777 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.857711736400,5.153915020100,5.202618561000,5.266700455500,5.600252128600,5.683405761200,-151.42167669338033 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.316513987700,4.846094655800,5.030456998800,5.214476560400,5.272612122600,5.529318201200,5.557029710400,-151.4216790713135 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.739017319800,4.926079512600,5.104853473800,5.172212113500,5.398924449600,5.485723920600,-151.42180910038394 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.748401348200,5.005394622700,5.102292830100,5.167547385200,5.464009244100,5.548702727800,-151.42181190295943 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.211796587500,4.750569692200,5.048662795900,5.097805336800,5.160713033100,5.523907551400,5.557279242000,-151.4218225705741 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.631943013900,4.821823337200,5.000047353600,5.067349469400,5.298720578100,5.385771015800,-151.42196144894902 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.641272085200,4.900551235400,4.997180900400,5.062339257000,5.362943009600,5.447859268900,-151.4219650265353 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.636533377600,4.854374132700,5.003604453500,5.062524571200,5.355338200800,5.382969491900,-151.42197033831377 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.107204300700,4.643427685400,4.943491802700,4.992540550000,5.055305020500,5.422822460300,5.455466003900,-151.4219769498108 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.524871953500,4.717696515200,4.895342406000,4.962584238800,5.198793466000,5.286099802300,-151.42213179764497 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.532858593200,4.780892427700,4.893369904200,4.958868639900,5.250202528700,5.335792141900,-151.42213532356013 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.529434035100,4.749995211800,4.898849055200,4.957532402400,5.255614822100,5.282377155500,-151.4221416664028 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.002746934700,4.536285718800,4.838407337400,4.887357386100,4.949971502300,5.321974391000,5.353860779900,-151.4221497133392 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.420211670800,4.629897885800,4.795183435200,4.852948448600,5.143993484200,5.168995873400,-151.4223317042329 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.429143795300,4.733415163100,4.781686504500,4.845271036300,5.194471817800,5.278451136500,-151.42233182976065 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.898435335300,4.427015532900,4.691176198700,4.789520863000,4.849967081200,5.190504848700,5.218961921800,-151.4223378305131 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.313131308100,4.525916969800,4.686058950800,4.752718597000,5.012855522300,5.100258371600,-151.4225358147217 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.318620653600,4.571996704500,4.683739274100,4.749035549600,5.049704476300,5.135774759700,-151.42254019973504 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.794281524500,4.321579126500,4.614923254800,4.680037114200,4.741641661500,5.111337902300,5.140711121100,-151.4225567235114 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.208149299900,4.437648982000,4.581059908100,4.647175973600,4.926098831400,5.013323726400,-151.42277481949125 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.203680724200,4.406183819900,4.587272147100,4.643768538200,4.934401660100,4.956549895200,-151.42278101112453 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.690298862500,4.213740965300,4.496440530600,4.577782952900,4.638493777100,5.001611916900,5.029187928600,-151.42279489154052 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.096625254600,4.302670415400,4.477676187800,4.544632096200,4.802197443500,4.890575599700,-151.42303533703733 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.586502235500,4.107718317100,4.419058139300,4.467556195400,4.529486262900,4.921243255900,4.949775834100,-151.42306922338287 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,3.993972335500,4.230174195400,4.372421710300,4.438335516500,4.728293791400,4.816050577300,-151.42333575263484 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,3.989574476800,4.199339083300,4.379212928300,4.435047040600,4.738879600700,4.758851004800,-151.42334118078352 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,3.997273347200,4.259657255400,4.373278661500,4.432063502700,4.783316646900,4.807064544800,-151.42335547278253 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.482908276100,4.000576601500,4.314504040700,4.362872374200,4.424607411700,4.821808694300,4.849411578400,-151.42337037468226 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.882528778900,4.096203602500,4.269653678100,4.336433473900,4.606048065400,4.694989253100,-151.42365839044132 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.891388202600,4.169921957700,4.264228873300,4.328540784300,4.663082650400,4.749685076900,-151.42367815913542 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.379535621700,3.893434948700,4.210080115500,4.258310877700,4.319839681500,4.722711315500,4.749343500900,-151.4237074621163 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.775488593000,3.993279147900,4.171784117900,4.226882421300,4.545049695200,4.562650068100,-151.4240374004619 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.781563402800,4.037983918800,4.163184302000,4.228362478500,4.543151210800,4.630982999400,-151.42403985363444 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.786293364000,4.105796296000,4.153219262400,4.215827738100,4.593569779500,4.678914397700,-151.42406516308455 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.276405219200,3.784265690600,4.066122192600,4.162656858500,4.221638355100,4.597124957800,4.619700046700,-151.4240669311843 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.668454401600,3.890582467500,4.068336260600,4.123035308400,4.448838493100,4.465173098300,-151.42444218441824 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.675940250800,3.948776855400,4.057766343800,4.122285828600,4.455917618400,4.543535693100,-151.42445568377948 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.173540686000,3.678081093900,3.975890455400,4.055913274100,4.115397913100,4.508604811800,4.531077856500,-151.42448794302476 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.561426745100,3.788132086400,3.958872837000,4.025333616800,4.315059721500,4.404873386300,-151.42486523116472 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.561426745100,3.788132086400,3.965084654400,4.019361204100,4.353137986300,4.368148937000,-151.42488018943402 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.567377392000,3.831672212000,3.955594830700,4.020484060100,4.348021156900,4.436404455600,-151.42489305943707 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.570024329900,3.859070916700,3.954843393300,4.013218215000,4.402420218200,4.422667782900,-151.42493030624064 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.070968738900,3.572010423800,3.897693942100,3.945457535800,4.006290348100,4.427668294300,4.451115802600,-151.42495797360593 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.454406230900,3.685948542200,3.855667219800,3.922003855800,4.219045623600,4.309155726000,-151.42532125996036 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.456627839900,3.700569538700,3.860413396200,3.915084620900,4.268246952300,4.282937421000,-151.42535084868788 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.461728035200,3.742513467300,3.850345336300,3.914530349400,4.261154475700,4.349318122900,-151.42537022085756 + 0.249006804500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,2.968719705200,3.463821858000,3.768860595300,3.848230900300,3.907117153900,4.314254265400,4.334345966400,-151.42541483987765 + 0.250913985600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.451188559500,4.846094655800,5.030456998800,5.209754660500,5.410096661600,5.499389951800,5.689077821300,-151.43516597777716 + 0.250913985600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.345977262600,4.748401348200,5.005394622700,5.102833495500,5.303447281500,5.470895615300,5.660476845600,-151.43530242478099 + 0.250913985600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.821531106800,4.213740965300,4.496440530600,4.575982416500,4.774255510100,4.972196960900,5.159507145100,-151.43624160051522 + 0.250913985600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.404501521800,3.785887763700,4.092911650800,4.156090125900,4.351864805800,4.592063245100,4.774071282800,-151.43744938872368 + 0.250913985600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.300706170600,3.675940250800,3.948776855400,4.059787562800,4.253717431500,4.476405100000,4.652477340300,-151.43782763057126 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.855531211200,5.110333397100,5.209191057700,5.363953513700,5.587018285200,5.708777821300,-151.48148948019931 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.750569692200,5.048662795900,5.097401621100,5.254600389600,5.504880238600,5.665707178200,-151.48162028048446 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.529434035100,4.749995211800,4.898849055200,5.050358880600,5.255614822100,5.371974264000,-151.48195873483394 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.427015532900,4.691176198700,4.789080198900,4.942163784300,5.184952700600,5.302119698800,-151.48214381163947 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.098980381100,4.318418916600,4.477939257700,4.633650915600,4.819082595000,4.977940027300,-151.48283854212755 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.107718317100,4.419058139300,4.467095521100,4.621938577100,4.899876221700,5.058198318100,-151.48284853331546 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.888660527900,4.141443468000,4.268195731700,4.422577566200,4.649791717600,4.806433456900,-151.4834561953803 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.783049480500,4.052220777600,4.161737704800,4.315764571900,4.553956826200,4.712766017500,-151.48380732718013 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.668454401600,3.890582467500,4.062282333000,4.216296785000,4.411586337200,4.569317033700,-151.484187669438 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.561426745100,3.788132086400,3.958872837000,4.112303118700,4.315059721500,4.472096434400,-151.48460728782567 + 0.257720535700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.053823188200,3.458588866300,3.714871805000,3.858512998500,4.003616498000,4.278158645900,4.378662065100,-151.48509487713858 + 0.259809255900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.961346851800,5.199999970100,5.316326929400,5.515724151000,5.681235367200,5.851675500200,-151.49499603894623 + 0.259809255900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.240862686600,4.636533377600,4.854374132700,5.003244822300,5.199873339300,5.352549412700,5.517477593000,-151.49540204509472 + 0.259809255900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.030953956100,4.422336800700,4.645742135200,4.791202421600,4.990003250300,5.133023461800,5.321410217500,-151.49574332891365 + 0.259809255900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.030953956100,4.429143795300,4.733415163100,4.782261230700,4.981547224100,5.221377077400,5.389813780900,-151.4957676619925 + 0.259809255900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.926176932600,4.310740536000,4.509866759600,4.686263147800,4.884447719000,4.999835850000,5.188356818500,-151.49594759973178 + 0.259809255900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.821531106800,4.208149299900,4.437648982000,4.584852452400,4.778946844400,4.955290099700,5.114578250900,-151.49620651890163 + 0.259809255900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.300706170600,3.679151853500,4.001663535800,4.049319844000,4.244601824800,4.513149578100,4.694630565600,-151.49778548336369 + 0.259809255900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.093800252100,3.456627839900,3.700569538700,3.857499062800,4.044807462200,4.248696075900,4.393689695000,-151.49858988001415 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.957842687500,5.168189668400,5.227695981200,5.318441408100,5.546660571500,5.656136720900,-151.50910211927769 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.953174825600,5.134948398300,5.232628810500,5.314745284500,5.549761308700,5.600103004100,-151.50910648381816 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.962661635200,5.215361800900,5.225320940500,5.314826992700,5.584920334700,5.693200950100,-151.50910765427622 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.272612550200,4.358877312500,4.964853815800,5.220853220100,5.259243598200,5.308042611600,5.645162680300,5.702218294000,-151.5091232525234 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.855531211200,5.110333397100,5.120198224500,5.209596186100,5.483714247600,5.592171259600,-151.5092282269472 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.850737828400,5.063478368600,5.126575748000,5.209726009600,5.475762526700,5.526891772300,-151.5092308096538 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.168192993200,4.254231044800,4.857711736400,5.115581720300,5.153915020100,5.202618561000,5.543945939900,5.600252128600,-151.5092452729824 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.739017319800,4.926079512600,5.018261829400,5.109672314800,5.318770385900,5.429406518200,-151.50935234618754 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.748401348200,5.005394622700,5.015161011200,5.104444932100,5.382737959200,5.491373318000,-151.50936335733402 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.745511855200,4.974736532600,5.020624090300,5.104190624200,5.388005565900,5.439109280200,-151.5093683774396 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.063915210200,4.149712197600,4.750569692200,5.009828398800,5.048662795900,5.097805336800,5.416557167000,5.523907551400,-151.5093708185525 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.631943013900,4.821823337200,4.918759372800,5.000047353600,5.251187493600,5.298720578100,-151.50951195656515 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,3.959790401900,4.045330647500,4.643427685400,4.904708650300,4.943491802700,4.992540550000,5.315306652400,5.422822460300,-151.50952321518164 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.527294990600,4.734019817300,4.808946386700,4.899752980700,5.132570424700,5.243217003000,-151.50967319007424 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.535143058400,4.803755174200,4.810369130100,4.892341518500,5.192829259300,5.301395535400,-151.50968767721477 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.531288685300,4.765620219300,4.811228202400,4.894295000700,5.188669642800,5.237910796500,-151.5096900165561 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.855830961300,3.941097303600,4.536285718800,4.800264098300,4.838407337400,4.886795020000,5.241709299500,5.295580260900,-151.5097073034808 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.417804374400,4.613707804700,4.704731277100,4.795879728000,5.020178585400,5.131422449000,-151.50985869697433 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.425739045200,4.676383596700,4.704995076400,4.788503076300,5.100624392900,5.149814691200,-151.50988396074578 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.752050634100,3.837024243900,4.429143795300,4.694743572700,4.733415163100,4.782261230700,5.113526072100,5.221377077400,-151.5098853292251 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.310740536000,4.509866759600,4.600463341600,4.691511959600,4.921287392500,5.032735683000,-151.51006877480845 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.317071723500,4.556984234600,4.598623763100,4.688307746100,4.958466683000,5.068688076700,-151.51007943073904 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.648464704900,3.733124873800,4.322001918100,4.589910796800,4.628521560200,4.677257949100,5.013025005600,5.121045297000,-151.51009928295383 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.208149299900,4.437648982000,4.495227281500,4.585244899200,4.847466777500,4.958302330700,-151.51031118290788 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.203680724200,4.406183819900,4.501926439900,4.581903924700,4.857628846400,4.900841745600,-151.51031613250868 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.214860090800,4.485187199700,4.523733385600,4.572353939600,4.912804668100,5.020994967800,-151.51033829525468 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.545090214500,3.629414110100,4.212761947200,4.482265340100,4.493968050600,4.577674966300,4.913110674000,4.961228918600,-151.51034000846082 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.101059397400,4.333828736100,4.391072084700,4.480956600900,4.748847783900,4.859880518200,-151.51057357141198 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.107718317100,4.380580611400,4.419058139300,4.467556195400,4.812882596800,4.921243255900,-151.51060511745493 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.441946213700,3.525908595800,4.106607855300,4.387110891100,4.392038771600,4.471304491200,4.824216045300,4.872279073100,-151.51061204068304 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.993972335500,4.230174195400,4.287064144300,4.376806200500,4.650605936200,4.761835201200,-151.51086585219605 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.989574476800,4.199339083300,4.294376639700,4.373589337700,4.663164919800,4.703924950700,-151.51086980244978 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.339054062400,3.422626952000,3.999475267600,4.282825515800,4.287772251600,4.366746135800,4.725708925800,4.772674648400,-151.51090977854278 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.886888348700,4.126697846600,4.183214444000,4.272803781800,4.552765649100,4.664190122500,-151.51119120268467 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.882528778900,4.096203602500,4.190856001600,4.269653678100,4.566598337400,4.606048065400,-151.511193965069 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.888660527900,4.141443468000,4.186011096800,4.267227301300,4.598736687500,4.641349929900,-151.51121745229813 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.892343245200,4.176666815400,4.183651081900,4.264249130500,4.595044010400,4.704687191000,-151.5112204790681 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.236437780700,3.319590074500,3.893434948700,4.172427533900,4.210080115500,4.257665426000,4.644972974300,4.692948012800,-151.511258326859 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.775488593000,3.993279147900,4.081358052200,4.171784117900,4.432588432200,4.545049695200,-151.5115347868867 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.781563402800,4.037983918800,4.082341002400,4.163184302000,4.501823779300,4.543151210800,-151.51158184778146 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.134124466100,3.216821483500,3.785887763700,4.070226704900,4.092911650800,4.157080167100,4.506043534900,4.615392984100,-151.5115967127398 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.668454401600,3.890582467500,3.978065512200,4.068336260600,4.336181717000,4.448838493100,-151.51192750071831 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.668454401600,3.890582467500,3.984389311000,4.062282333000,4.374942803900,4.411586337200,-151.51194729694728 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.675940250800,3.948776855400,3.976467769900,4.057766343800,4.414814937400,4.455917618400,-151.51199480424262 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.032144787600,3.114347738200,3.679151853500,3.964218758500,4.001663535800,4.048914025600,4.448917462100,4.494548338900,-151.51204201295917 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.561426745100,3.788132086400,3.874982073900,3.965084654400,4.240290407400,4.353137986300,-151.5123499043632 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.563673959300,3.802968768800,3.879774001200,3.958049299200,4.290117824800,4.326396061800,-151.51238616445914 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.568833039900,3.845535497400,3.873061651100,3.953964322400,4.318584678900,4.358307016700,-151.51243055343235 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,2.930533576200,3.012198930300,3.570951078700,3.865066056700,3.872276844200,3.951983955300,4.301029563800,4.411198705100,-151.51243192230385 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.458588866300,3.714871805000,3.769659315200,3.858512998500,4.165984256200,4.278158645900,-151.51282311472673 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.456627839900,3.700569538700,3.776960196500,3.854736283300,4.195358446400,4.230092192900,-151.51282932347434 + 0.262025508800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.829330530900,2.910409273700,3.462905707800,3.755849630000,3.766968035700,3.848349798600,4.231348128400,4.270811586200,-151.51290313717772 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.953174825600,5.134948398300,5.314745284500,5.429178996000,5.600103004100,5.728459985300,-151.546287440349 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.957842687500,5.168189668400,5.318441408100,5.425274461900,5.656136720900,5.729361266000,-151.5462969943629 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.468052439600,4.963684516800,5.230357990000,5.313032323000,5.422565691600,5.704774637800,5.781667427800,-151.54629786108575 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.855531211200,5.110333397100,5.207487540200,5.320152205800,5.565302821800,5.692388467400,-151.54640981191986 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.846094655800,5.030456998800,5.209754660500,5.324020836200,5.499389951800,5.627750625200,-151.54641023393987 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.363066590300,4.857711736400,5.153915020100,5.203146792400,5.313795502400,5.625216886700,5.703107946500,-151.54642267012875 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.743634685400,4.958870951400,5.104702857900,5.218150920400,5.426090140200,5.553957612600,-151.54654743179356 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.750569692200,5.048662795900,5.097266188800,5.208717229000,5.498482837900,5.624714318400,-151.54654781498726 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.258188197300,4.748401348200,5.005394622700,5.104444932100,5.212746024600,5.491373318000,5.565459638700,-151.5465601759865 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.642277904200,4.915227438900,4.995739365000,5.107649291600,5.374652682600,5.501443608100,-151.5467018834532 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.631943013900,4.821823337200,5.004967104300,5.109359436800,5.329775763900,5.397988542200,-151.54671245246806 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.639979217600,4.885515372100,5.001077628300,5.108359131300,5.379377001800,5.451480561800,-151.54671463925666 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.153425400800,4.643427685400,4.943491802700,4.992540550000,5.102697469500,5.422822460300,5.498886513200,-151.54671742193204 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.534143464500,4.795809491400,4.892157086800,5.004183780400,5.262117217800,5.389167831200,-151.5468740530256 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.536285718800,4.838407337400,4.886795020000,4.997774741100,5.295580260900,5.421774817100,-151.54687517141855 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.048787173900,4.531288685300,4.765620219300,4.897655680100,5.003868970200,5.267633466100,5.337670712700,-151.54688709789568 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.427015532900,4.691176198700,4.787227188800,4.899018842000,5.161545958900,5.288572217300,-151.54706664853796 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.424179372000,4.661238151200,4.792927158800,4.898776517700,5.168007448200,5.236912678200,-151.5470804387162 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.944283430800,4.428718064600,4.719694097300,4.784967222100,4.893831899900,5.211471697400,5.284511933300,-151.54708500647027 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.310740536000,4.509866759600,4.686263147800,4.799547071300,4.999835850000,5.128116744100,-151.54727811731325 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.318620653600,4.571996704500,4.683739274100,4.795638285100,5.049704476300,5.176971254000,-151.54728078536903 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.839925151500,4.321579126500,4.614923254800,4.678862698800,4.789686555400,5.083198902100,5.209625951000,-151.54728318289966 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.203680724200,4.406183819900,4.581903924700,4.694956920500,4.900841745600,5.029081401300,-151.54751609367452 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.212761947200,4.482265340100,4.577674966300,4.688957642900,4.961228918600,5.088182977800,-151.54752115086407 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.214860090800,4.523733385600,4.571752825500,4.681930373900,4.993010048900,5.119099779200,-151.54752451251468 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.735724526800,4.208149299900,4.437648982000,4.585244899200,4.689516450500,4.958302330700,5.023720702100,-151.54753470400274 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.096625254600,4.302670415400,4.477676187800,4.590484513100,4.802197443500,4.930385109000,-151.54778097826315 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.105636411900,4.378004748700,4.473067050900,4.584073694100,4.861517150600,4.988421569100,-151.54778818240567 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.107718317100,4.419058139300,4.466940978800,4.576821708100,4.892687816100,5.018726370100,-151.54779272991377 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.631695126800,4.102861942100,4.348897709600,4.479426818000,4.584068779200,4.871044245200,4.936252301900,-151.54780415227253 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,3.989574476800,4.199339083300,4.373589337700,4.486138075000,4.703924950700,4.832048643200,-151.54807592040325 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.527852099000,3.997273347200,4.259657255400,4.370140079900,4.481229588600,4.751214816600,4.878331644500,-151.54808396238633 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.893025531600,4.197037715700,4.260128200800,4.369757645100,4.683359318700,4.809562810100,-151.54842399601748 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.424212399100,3.888660527900,4.141443468000,4.271081414300,4.374806581500,4.674867056200,4.737327407400,-151.54843518840943 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.775488593000,3.993279147900,4.171784117900,4.272369103600,4.545049695200,4.602471535000,-151.5487903057889 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.786293364000,4.105796296000,4.153219262400,4.262103566900,4.593569779500,4.719392436000,-151.54880011572405 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.320795064300,3.781563402800,4.037983918800,4.167134643700,4.270362329800,4.577387436700,4.638378146400,-151.54880567752355 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.674468944100,3.934721520300,4.059302576400,4.169820465300,4.445365661100,4.572484975400,-151.54918936207116 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.670725723300,3.905622509300,4.066949182900,4.167840525200,4.459701455900,4.516703361600,-151.5492016020535 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.217621535900,3.678081093900,3.975890455400,4.053880955300,4.163208412200,4.475951094300,4.602261673800,-151.54920473705494 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.567377392000,3.831672212000,3.955594830700,4.065757356600,4.348021156900,4.475021573300,-151.549632102115 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.561426745100,3.788132086400,3.965084654400,4.064434225000,4.353137986300,4.407204561800,-151.5496323078734 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.114716041700,3.570951078700,3.872276844200,3.951983955300,4.056909642200,4.411198705100,4.472843730900,-151.54968555252685 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.454406230900,3.685948542200,3.855667219800,3.966642963500,4.219045623600,4.346615427900,-151.55006517339638 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.463821858000,3.768860595300,3.846088841200,3.954633621600,4.280118072800,4.406184205800,-151.55012458104923 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.461728035200,3.742513467300,3.853907256500,3.956414404000,4.296919056300,4.354367346700,-151.55013770864747 + 0.268050655900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.012106053400,3.464869082300,3.793900929500,3.841487743000,3.947802759100,4.330155464100,4.392841223800,-151.55018029695583 + 0.270804882900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.451188559500,4.850737828400,5.063478368600,5.211091237600,5.412124979300,5.537561211400,5.730822313600,-151.56270712117714 + 0.270804882900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.926176932600,4.322001918100,4.628521560200,4.677202824500,4.875881339900,5.118477752200,5.282801762600,-151.56358315037124 + 0.270804882900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.612678637600,3.993972335500,4.230174195400,4.372981108000,4.569842021900,4.732584545800,4.921120997100,-151.56433717198468 + 0.270804882900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.508498137900,3.886888348700,4.126697846600,4.272803781800,4.464206762400,4.664190122500,4.815313685100,-151.5646811900642 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.953174825600,5.134948398300,5.314745284500,5.474114364300,5.600103004100,5.766085870400,-151.5945639426815 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.857711736400,5.153915020100,5.202618561000,5.360235246800,5.600252128600,5.765587720400,-151.59468147951372 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.846094655800,5.030456998800,5.209754660500,5.368826336400,5.499389951800,5.665088209800,-151.59468658052572 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.739017319800,4.926079512600,5.104853473800,5.263613167000,5.398924449600,5.564320423000,-151.5948237755288 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.636533377600,4.854374132700,4.999769657000,5.157852482100,5.325536117500,5.490579526600,-151.59497606708496 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.536285718800,4.838407337400,4.886866742100,5.043426629900,5.298953613100,5.462305242300,-151.59515118688054 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.422336800700,4.645742135200,4.790707363500,4.947904107200,5.129187874900,5.292211859200,-151.59534385921978 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,3.997273347200,4.259657255400,4.370540468000,4.525715238000,4.755320812900,4.916665034100,-151.59635452859214 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.893434948700,4.210080115500,4.258250329700,4.411128085200,4.719927090000,4.830867754100,-151.59671660792668 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.777782652200,4.008511207200,4.170510336400,4.316490560000,4.556191212600,4.657033893100,-151.5970606669249 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.677144364200,3.962500400100,4.058412115200,4.207331244100,4.496423848200,4.600051931600,-151.59747871858238 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.568833039900,3.845535497400,3.957432980700,4.104747385500,4.393280774400,4.494427109700,-151.59791258567756 + 0.276410916000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.053823188200,3.464476348700,3.781544851600,3.844858315600,3.994338411700,4.319270446700,4.422048840200,-151.59839570466528 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.964853815800,5.259243598200,5.308234630500,5.510403380500,5.711324332900,5.909329406400,-151.63356681905026 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.345977262600,4.739017319800,4.926079512600,5.104853473800,5.306103835300,5.398924449600,5.596672080400,-151.63382026813073 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.345977262600,4.745511855200,4.974736532600,5.104601711000,5.305802360200,5.442768716600,5.640196933300,-151.63382092710063 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.345977262600,4.750135939400,5.034605709200,5.099991795100,5.299941050500,5.505775834500,5.670847183300,-151.63382793666324 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.135852205900,4.529434035100,4.749995211800,4.894932191700,5.095262454600,5.225243999400,5.422158091600,-151.63414162578295 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.135852205900,4.534143464500,4.795809491400,4.893970367400,5.091432593500,5.285078564700,5.445571470400,-151.6341601044274 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.030953956100,4.428008600300,4.705613747800,4.787056471400,4.984703532900,5.195758122900,5.356008773400,-151.63435262436946 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.926176932600,4.320874558700,4.600968322200,4.680771889600,4.880130290900,5.072409787500,5.269013221100,-151.63454114017526 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.926176932600,4.315241831300,4.541623569300,4.687088070600,4.885867688900,5.037239694500,5.228999296200,-151.6345570490921 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.717027559400,4.101059397400,4.333828736100,4.478262826800,4.675827724200,4.839233188600,5.029159594000,-151.63505315843605 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.612678637600,4.000163572100,4.301311959900,4.364632799900,4.562221335700,4.782852692200,4.977397103000,-151.63532859395676 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.300706170600,3.668454401600,3.890582467500,4.062282333000,4.257398151700,4.411586337200,4.600493399500,-151.63637910863486 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.561426745100,3.788132086400,3.963253479000,4.149405422700,4.341941450000,4.479469557100,-151.63681638900596 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.571613143900,3.885151698400,3.947812897100,4.142406976900,4.395246299200,4.583457004900,-151.6368242466353 + 0.283648016100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.093800252100,3.463821858000,3.768860595300,3.846362084000,4.040104393800,4.284486585500,4.472378907200,-151.6372555863676 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.492563170300,4.857711736400,5.153915020100,5.203146792400,5.447025356900,5.625216886700,5.844101321800,-151.686769544562 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.492563170300,4.852625511300,5.079456279200,5.212430095100,5.453773157000,5.568186552500,5.782706821400,-151.68677090187 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.387183368700,4.750569692200,5.048662795900,5.097701739200,5.341036960300,5.519031063000,5.737586525600,-151.6868983784978 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.281891073600,4.641272085200,4.900551235400,4.998249962400,5.239587319900,5.376522399300,5.592691613700,-151.68704060129105 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.281891073600,4.643427685400,4.943491802700,4.992540550000,5.235270661600,5.422822460300,5.639388950500,-151.687059487199 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.176692902900,4.535143058400,4.810369130100,4.890656790900,5.131981772400,5.273652953400,5.491699849600,-151.6871898796462 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.176692902900,4.524871953500,4.717696515200,4.895342406000,5.133893729300,5.198793466000,5.411749754400,-151.68720152820526 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.176692902900,4.527294990600,4.734019817300,4.899752980700,5.138006594300,5.243217003000,5.451884905200,-151.6872303824795 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.176692902900,4.536285718800,4.838407337400,4.887357386100,5.129472147000,5.321974391000,5.537304420700,-151.68723079957763 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.071596152300,4.417804374400,4.613707804700,4.790745264500,5.028553695800,5.099159383900,5.310709261100,-151.68739157447573 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.071596152300,4.424179372000,4.661238151200,4.792267445300,5.031041153200,5.162199036800,5.372310676800,-151.68741430382545 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.071596152300,4.429143795300,4.733415163100,4.782261230700,5.023730615500,5.221377077400,5.435414606400,-151.68742187033217 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.966608883300,4.317071723500,4.556984234600,4.686099258300,4.924388150800,5.049272248900,5.260154660600,-151.68761075734741 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.966608883300,4.322001918100,4.628521560200,4.677257949100,4.918049742600,5.121045297000,5.333730666600,-151.6876341805523 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.861740025300,4.203680724200,4.406183819900,4.581903924700,4.818112152900,4.900841745600,5.109374258100,-151.6878364344717 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.861740025300,4.214860090800,4.523733385600,4.572353939600,4.812433524500,5.020994967800,5.232264604200,-151.6878690996956 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.756999493800,4.102861942100,4.348897709600,4.479426818000,4.715702543900,4.871044245200,5.075474406400,-151.688122327301 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.756999493800,4.107718317100,4.419058139300,4.467556195400,4.706886313600,4.921243255900,5.131029344700,-151.68812802451296 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.652398329000,4.000576601500,4.314504040700,4.362242393700,4.600894471100,4.792660844100,5.005804502700,-151.68836614759735 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.652398329000,3.989574476800,4.199339083300,4.373589337700,4.608024945600,4.703924950700,4.909135819800,-151.68837666039485 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.652398329000,3.993972335500,4.230174195400,4.376806200500,4.611556826700,4.761835201200,4.963421952700,-151.68840298644804 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.547948857400,3.882528778900,4.096203602500,4.269653678100,4.503129719000,4.606048065400,4.809470643100,-151.6886864600863 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.547948857400,3.893434948700,4.210080115500,4.258310877700,4.496018349800,4.722711315500,4.929308083500,-151.6887247538117 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.443664881900,3.775488593000,3.993279147900,4.165880525200,4.398342848800,4.508592552400,4.710133800600,-151.68902490061157 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.339561906500,3.674468944100,3.934721520300,4.059302576400,4.292478257900,4.445365661100,4.648268654800,-151.68939476377014 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.339561906500,3.675940250800,3.948776855400,4.061146344900,4.294298087200,4.490131148700,4.688338987100,-151.68942270031962 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.235657401400,3.563673959300,3.802968768800,3.961948409700,4.192123027700,4.352736631200,4.546899881500,-151.68979655710893 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.235657401400,3.570951078700,3.872276844200,3.951983955300,4.185490800300,4.411198705100,4.609867819100,-151.68982731489223 + 0.294284724100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.131971119700,3.454406230900,3.685948542200,3.855667219800,4.084715726600,4.219045623600,4.414314576600,-151.6901898405687 + 0.295348400600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.598024461800,4.957842687500,5.168189668400,5.316172015500,5.558338377500,5.638405963400,5.858914609900,-151.6916789694724 + 0.295348400600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.387183368700,4.739017319800,4.926079512600,5.106641153000,5.346732513200,5.410249276400,5.626905910700,-151.69193912860962 + 0.295348400600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.387183368700,4.745511855200,4.974736532600,5.107110959500,5.347618187500,5.465058921500,5.676417005100,-151.69195201588212 + 0.295348400600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.861740025300,4.208149299900,4.437648982000,4.583562546400,4.819973963300,4.945378302600,5.149575857900,-151.69290158084448 + 0.295348400600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.756999493800,4.096625254600,4.302670415400,4.482114205500,4.717126289800,4.829880372600,5.034954158400,-151.6931635669513 + 0.295348400600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.547948857400,3.884844319000,4.111617223800,4.274248057700,4.506984585800,4.653147197300,4.849005119300,-151.69375963084488 + 0.295348400600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.443664881900,3.781563402800,4.037983918800,4.165546635900,4.398954925600,4.563651702000,4.761780538700,-151.69409327216124 + 0.295348400600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.339561906500,3.679151853500,4.001663535800,4.049529080900,4.285489466800,4.522711073600,4.728692310000,-151.69448421359317 + 0.295348400600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.131971119700,3.456627839900,3.700569538700,3.859881160600,4.088186025900,4.264682026100,4.452171036700,-151.69525432345037 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.964853815800,5.259243598200,5.308042611600,5.466016380500,5.702218294000,5.869883630400,-151.69536298169277 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.962661635200,5.215361800900,5.314826992700,5.469565692300,5.693200950100,5.810934511800,-151.69537869355193 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.513133911600,4.957842687500,5.168189668400,5.318441408100,5.470914853600,5.656136720900,5.770694481900,-151.6953790855417 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.854223410500,5.095075474700,5.208526283300,5.367120675400,5.552881001100,5.720778307200,-151.69548932288959 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.407991610200,4.850737828400,5.063478368600,5.213406372000,5.365448564500,5.555613824600,5.668969848300,-151.69550393955558 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.748401348200,5.005394622700,5.102292830100,5.260341730300,5.464009244100,5.631568740700,-151.69562767092623 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.745511855200,4.974736532600,5.107413194000,5.259794925000,5.467738342600,5.580949214800,-151.69564361112776 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.302948007100,4.750135939400,5.034605709200,5.100309617700,5.255837445400,5.513454331000,5.631126171600,-151.69564405571572 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.642996483300,4.929541700000,4.994008959100,5.151245531500,5.385979477800,5.553077528600,-151.6957823158944 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.631943013900,4.821823337200,5.004967104300,5.154464603700,5.329775763900,5.438327853400,-151.69579952459952 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.198010511000,4.639979217600,4.885515372100,5.001077628300,5.153812606800,5.379377001800,5.492449596300,-151.6958001420387 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.531288685300,4.765620219300,4.894295000700,5.052131747500,5.237910796500,5.405120819100,-151.6959572739759 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.524871953500,4.717696515200,4.895342406000,5.053854198700,5.198793466000,5.366205155700,-151.69595834558055 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.093187283000,4.534143464500,4.795809491400,4.894401587800,5.047504106200,5.290525636700,5.403466688400,-151.69597548498155 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.428008600300,4.705613747800,4.785665583000,4.942420246300,5.172900411800,5.339559199900,-151.69615058683962 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.417804374400,4.613707804700,4.795879728000,4.944285181000,5.131422449000,5.237087019400,-151.69616811355402 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,3.988487332300,4.429143795300,4.733415163100,4.782261230700,4.937423625600,5.221377077400,5.336604707100,-151.69617311189634 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.317071723500,4.556984234600,4.684796891600,4.841891934400,5.037791777900,5.204387716400,-151.6963667470365 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.321579126500,4.614923254800,4.678862698800,4.834975400200,5.083198902100,5.249460172800,-151.69636706341294 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.310740536000,4.509866759600,4.691511959600,4.839330535000,5.032735683000,5.136862323200,-151.6963846014626 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.883920628800,4.319888341600,4.586658779700,4.684742519700,4.836902647800,5.090773894100,5.201005050100,-151.69638889101546 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.203680724200,4.406183819900,4.581903924700,4.739296834800,4.900841745600,5.067245801200,-151.69660614577577 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.212761947200,4.482265340100,4.577674966300,4.733880117300,4.961228918600,5.127345484500,-151.69660752065815 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.209965866700,4.452867470500,4.583804912700,4.733682548500,4.969693736700,5.075962693400,-151.69662881032409 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.779498231800,4.214860090800,4.523733385600,4.572353939600,4.726651465700,5.020994967800,5.133580196300,-151.6966354775391 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.105636411900,4.378004748700,4.473067050900,4.628842585900,4.861517150600,5.027282597600,-151.69687517747047 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.098980381100,4.318418916600,4.482204144700,4.629673561000,4.848345835300,4.950467888600,-151.6968941961551 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.675232441900,4.107301863900,4.405723862200,4.470491817400,4.623420594500,4.911957705300,5.021830706700,-151.69690474657054 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,4.000576601500,4.314504040700,4.362242393700,4.516774864800,4.792660844100,4.957813641100,-151.69717620313364 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,3.991910342400,4.214924610800,4.378149795800,4.524959767300,4.750540863700,4.850943768900,-151.69719171085168 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.571136976300,3.999475267600,4.287772251600,4.368632910000,4.520117605300,4.803311612700,4.910341282100,-151.69720357594005 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.882528778900,4.096203602500,4.269653678100,4.425726987600,4.606048065400,4.771208955800,-151.69749562027084 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.892343245200,4.183651081900,4.262316149600,4.416896155900,4.673403729100,4.838326783900,-151.69750635632732 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.884844319000,4.111617223800,4.274248057700,4.420362394000,4.653147197300,4.751751021000,-151.69752235561097 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.467227175800,3.890160562300,4.155852137600,4.269081266800,4.418082799900,4.685176498700,4.787857379600,-151.69753198726136 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.775488593000,3.993279147900,4.165880525200,4.321460327500,4.508592552400,4.673275606800,-151.6978598659178 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.786293364000,4.105796296000,4.153219262400,4.306740144000,4.593569779500,4.757928688200,-151.69788084952975 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.363520247700,3.785211836100,4.079686391400,4.160005646000,4.310317921900,4.606443298800,4.710164845500,-151.69791088427885 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.674468944100,3.934721520300,4.059302576400,4.213618972300,4.445365661100,4.609515507500,-151.69827378266154 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.668454401600,3.890582467500,4.068336260600,4.211917299500,4.448838493100,4.542151677200,-151.69828761710872 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.260035553400,3.679151853500,4.001663535800,4.049592749700,4.201276572700,4.525616630800,4.630461200300,-151.69833343165755 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.567377392000,3.831672212000,3.955594830700,4.109345431600,4.348021156900,4.511650175800,-151.69871383910683 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.561426745100,3.788132086400,3.965084654400,4.107812763400,4.353137986300,4.444336871000,-151.69872322177073 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.156794948300,3.571613143900,3.885151698400,3.948855157000,4.098888609000,4.419615094300,4.521190396700,-151.69877772317062 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.053823188200,3.460289016300,3.728853660400,3.852075116900,4.005223351200,4.251147996100,4.414215738700,-151.6991758293635 + 0.296127680900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.053823188200,3.454406230900,3.685948542200,3.862045039400,4.003868534800,4.257982609400,4.346961901300,-151.69917846080077 + 0.298089855300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.963684516800,5.230357990000,5.311481034300,5.513850345400,5.679002951100,5.881709581900,-151.70448557571197 + 0.298089855300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.953174825600,5.134948398300,5.314745284500,5.517305460500,5.600103004100,5.801759252800,-151.7044923968651 + 0.298089855300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.451188559500,4.855531211200,5.110333397100,5.207756502900,5.409655270400,5.568736560400,5.769621161800,-151.70461433566584 + 0.298089855300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.240862686600,4.642277904200,4.915227438900,4.995739365000,5.196783078100,5.374652682600,5.575728853700,-151.70490029001624 + 0.298089855300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.240862686600,4.634381062500,4.838273660400,5.000053377200,5.201243902300,5.312314675800,5.512373041800,-151.70490570408725 + 0.298515801600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.598024461800,4.964415292200,5.244986058000,5.310168389100,5.554430342500,5.697133311300,5.924299425200,-151.7064362803321 + 0.298515801600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.598024461800,4.953174825600,5.134948398300,5.314745284500,5.556908955800,5.600103004100,5.824276058500,-151.70643862332898 + 0.298089855300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.508498137900,3.884844319000,4.111617223800,4.269121301000,4.466258577500,4.618173530100,4.812770588100,-151.70659480374115 + 0.298089855300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.508498137900,3.892343245200,4.183651081900,4.263877759400,4.458045370200,4.698691968600,4.847579004700,-151.70662986060475 + 0.298515801600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.281891073600,4.631943013900,4.821823337200,5.001872491000,5.239826754000,5.310259107300,5.516332920500,-151.70685794096198 + 0.298089855300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.404501521800,3.779807698500,4.023413438100,4.164944445800,4.361171186800,4.536464008300,4.728931746900,-151.70695443690263 + 0.298515801600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.966608883300,4.320874558700,4.600968322200,4.681424782600,4.920915746400,5.083123614200,5.290974649300,-151.70742440027414 + 0.298515801600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.861740025300,4.213740965300,4.496440530600,4.576650258500,4.816093224200,4.983126251900,5.200980674100,-151.70766092976962 + 0.298089855300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.568833039900,3.845535497400,3.954835890400,4.149409994900,4.367118310500,4.556733885200,-151.7077770638597 + 0.298515801600,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.131971119700,3.464869082300,3.793900929500,3.841200052100,4.075239748300,4.317123992700,4.524166797500,-151.71006662455684 + 0.303718497100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.387183368700,4.749413111500,5.020182224600,5.101113687300,5.344125872900,5.479301161000,5.707126329700,-151.73011598032875 + 0.303718497100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.547948857400,3.890160562300,4.155852137600,4.268133176200,4.504208279800,4.675532176500,4.887215412400,-151.7319572382752 + 0.310850047100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.598024461800,4.961346851800,5.199999970100,5.316326929400,5.557908558000,5.681235367200,5.888749689200,-151.76040080004765 + 0.310850047100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.492563170300,4.846094655800,5.030456998800,5.210941142700,5.453097836700,5.506922835200,5.733843720800,-151.76050888378012 + 0.310850047100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.281891073600,4.636533377600,4.854374132700,5.002062810300,5.243122561300,5.343374570200,5.566361743500,-151.7608077696899 + 0.310850047100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.443664881900,3.785211836100,4.079686391400,4.158024204800,4.394679563300,4.574488027700,4.795365033600,-151.7628028824382 + 0.310850047100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.443664881900,3.786293364000,4.105796296000,4.153614889900,4.390708472900,4.611771640300,4.828853381500,-151.76282987669475 + 0.310850047100,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.339561906500,3.668454401600,3.890582467500,4.062282333000,4.296091553700,4.411586337200,4.626232185200,-151.76317628676514 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.240862686600,4.638399548000,4.870122198700,4.999615970200,5.200888161300,5.342111154400,5.543737736400,-151.77332500064762 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.135852205900,4.536285718800,4.838407337400,4.887357386100,5.086935957500,5.321974391000,5.480815345300,-151.77351725692648 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.030953956100,4.424179372000,4.661238151200,4.792927158800,4.987615478300,5.168007448200,5.318955622900,-151.77371174229367 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.821531106800,4.213740965300,4.496440530600,4.575982416500,4.775086670100,4.972196960900,5.173180413900,-151.77414090895346 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.821531106800,4.208149299900,4.437648982000,4.581059908100,4.780462005400,4.926098831400,5.126314156600,-151.77414288042291 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.717027559400,4.096625254600,4.302670415400,4.477676187800,4.676596487800,4.802197443500,5.001203076600,-151.77440844848797 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.717027559400,4.107301863900,4.405723862200,4.470376489900,4.666730058500,4.909217528400,5.060090218800,-151.774437383964 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.612678637600,3.997273347200,4.259657255400,4.370140079900,4.568187923000,4.751214816600,4.950349291700,-151.77470188262325 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.404501521800,3.785211836100,4.079686391400,4.158024204800,4.354565403900,4.574488027700,4.772444932200,-151.77539245116844 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.300706170600,3.672730676700,3.920336140500,4.060567458700,4.256637330500,4.434458791800,4.630455494300,-151.7757826499287 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.300706170600,3.678081093900,3.975890455400,4.053880955300,4.249686412300,4.475951094300,4.673032992500,-151.77579241666558 + 0.313898503500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.093800252100,3.458588866300,3.714871805000,3.853538848300,4.047978927900,4.240793451000,4.434708656900,-151.77665907580877 + 0.319775631400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.492563170300,4.856548656300,5.125227560200,5.206358341000,5.450228406400,5.580693108000,5.814268155900,-151.79627857784692 + 0.319775631400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.071596152300,4.428008600300,4.705613747800,4.785885182300,5.027327083800,5.176515551600,5.406328698800,-151.79693467656296 + 0.319775631400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.071596152300,4.420211670800,4.629897885800,4.794754963700,5.030310762800,5.141035858900,5.334601692600,-151.79696168865686 + 0.319775631400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.235657401400,3.568833039900,3.845535497400,3.954835890400,4.188962916500,4.367118310500,4.583856622200,-151.7993972374899 + 0.319775631400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.131971119700,3.461728035200,3.742513467300,3.851240354100,4.084282090100,4.270166244000,4.485193806000,-151.79982513927584 + 0.330342656700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.492563170300,4.850737828400,5.063478368600,5.210195510100,5.453644307300,5.530562988300,5.764655011000,-151.83548086233603 + 0.330342656700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.966608883300,4.310740536000,4.509866759600,4.686263147800,4.926349291000,4.999835850000,5.229259522300,-151.83635253332955 + 0.330342656700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.756999493800,4.106607855300,4.392038771600,4.471987965800,4.711271478600,4.883431989000,5.109947862500,-151.83686098737792 + 0.330342656700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.652398329000,3.998511804800,4.273886728100,4.369514299400,4.607765618700,4.773787254100,4.998425802100,-151.83715121781452 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.957842687500,5.168189668400,5.314833779800,5.517946899100,5.627927709200,5.834673624100,-151.8372245828418 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.964853815800,5.259243598200,5.308560352700,5.509954691000,5.726738564900,5.887959973000,-151.83723662758013 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.556489877100,4.961346851800,5.199999970100,5.316326929400,5.514386009400,5.681235367200,5.837592049800,-151.83723837110588 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.451188559500,4.857275545700,5.139755549300,5.205589194100,5.405697602000,5.614595043000,5.773317709800,-151.8373635532575 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.451188559500,4.852625511300,5.079456279200,5.212430095100,5.409119398700,5.568186552500,5.721942810000,-151.83736498065176 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.451188559500,4.846094655800,5.030456998800,5.214476560400,5.408578743900,5.529318201200,5.679391353000,-151.8373662928965 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.345977262600,4.750135939400,5.034605709200,5.099231997100,5.300873769200,5.487377751500,5.693554873100,-151.83748500272992 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.345977262600,4.745511855200,4.974736532600,5.107413194000,5.303548240700,5.467738342600,5.620044471000,-151.8375060515181 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.345977262600,4.739017319800,4.926079512600,5.109672314800,5.303161192100,5.429406518200,5.577937857700,-151.83750710601151 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.240862686600,4.643427685400,4.943491802700,4.992540550000,5.192559727700,5.422822460300,5.580140606800,-151.83766319799093 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.240862686600,4.631943013900,4.821823337200,5.004967104300,5.197814195800,5.329775763900,5.476701062900,-151.83766451498752 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.135852205900,4.532858593200,4.780892427700,4.893369904200,5.094463205300,5.250202528700,5.455119350700,-151.83781931361378 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.135852205900,4.527294990600,4.734019817300,4.899752980700,5.092854086200,5.243217003000,5.389787499000,-151.8378401744466 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.030953956100,4.428008600300,4.705613747800,4.785665583000,4.986000920800,5.172900411800,5.377461528300,-151.83801313350963 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.030953956100,4.417804374400,4.613707804700,4.795879728000,4.987349750600,5.131422449000,5.274927455300,-151.83803633247294 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.030953956100,4.429143795300,4.733415163100,4.782261230700,4.981250478600,5.221377077400,5.375812758100,-151.83803789038933 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.926176932600,4.322001918100,4.628521560200,4.676670318800,4.876200337100,5.093610096500,5.297791972500,-151.8382296115192 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.926176932600,4.313131308100,4.525916969800,4.690730035500,4.882432816400,5.045093911200,5.188166900300,-151.83825469016756 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.926176932600,4.319888341600,4.586658779700,4.684742519700,4.880310427700,5.090773894100,5.239445769100,-151.83825643816917 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.821531106800,4.203680724200,4.406183819900,4.587272147100,4.777225072100,4.934401660100,5.074179886500,-151.83849643761798 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.821531106800,4.211503506700,4.467740298100,4.582081031700,4.776007984100,4.980710224200,5.126225182500,-151.8384993372454 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.821531106800,4.214860090800,4.523733385600,4.572353939600,4.770206795300,5.020994967800,5.172290900800,-151.83850269005217 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.717027559400,4.105636411900,4.378004748700,4.473067050900,4.671861613100,4.861517150600,5.064113577900,-151.83874119863492 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.717027559400,4.102861942100,4.348897709600,4.479426818000,4.671624389000,4.871044245200,5.013248918500,-151.8387681564864 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.612678637600,3.989574476800,4.199339083300,4.373589337700,4.572331749800,4.703924950700,4.904947184000,-151.83903727087582 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.612678637600,3.993972335500,4.230174195400,4.376806200500,4.567179174400,4.761835201200,4.900565430300,-151.83906536600412 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.612678637600,3.999475267600,4.287772251600,4.368632910000,4.563166898500,4.803311612700,4.948124276600,-151.83907260052575 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.508498137900,3.890160562300,4.155852137600,4.265866023300,4.463513713200,4.652397544500,4.853386328900,-151.83936880617864 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.508498137900,3.893434948700,4.210080115500,4.257665426000,4.454776792900,4.692948012800,4.894561671700,-151.83937175714215 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.508498137900,3.882528778900,4.096203602500,4.275413980800,4.462780080700,4.641739836400,4.775265248200,-151.839391144868 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.404501521800,3.775488593000,3.993279147900,4.171784117900,4.358191517500,4.545049695200,4.676290778800,-151.83975543028 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.404501521800,3.783049480500,4.052220777600,4.165033332000,4.355861026000,4.587439229700,4.725097449700,-151.8397701549286 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.404501521800,3.786293364000,4.105796296000,4.153880943500,4.349070722800,4.623972798100,4.768077607400,-151.83978390848787 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.300706170600,3.668454401600,3.890582467500,4.068336260600,4.253730097300,4.448838493100,4.577684118500,-151.84015584095772 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.300706170600,3.675940250800,3.948776855400,4.061146344900,4.251087095100,4.490131148700,4.625584740400,-151.84017655980296 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.300706170600,3.679151853500,4.001663535800,4.049592749700,4.244019313300,4.525616630800,4.667703370700,-151.84019528519318 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.561426745100,3.788132086400,3.958872837000,4.154737658800,4.315059721500,4.512490916800,-151.84055859827947 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.565657610200,3.817482730700,3.961800876300,4.148469141300,4.373923827500,4.503655586400,-151.8406033988427 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.570024329900,3.859070916700,3.954843393300,4.145005223500,4.402420218200,4.537265866800,-151.84062412399297 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.197131686400,3.572010423800,3.897693942100,3.945457535800,4.139075125600,4.427668294300,4.567636656600,-151.84064271227703 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.093800252100,3.454406230900,3.685948542200,3.862045039400,4.045228073500,4.257982609400,4.381673461300,-151.8410410332124 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.093800252100,3.461728035200,3.742513467300,3.853907256500,4.041911857900,4.296919056300,4.427627841600,-151.84108079413764 + 0.330865739200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.093800252100,3.464869082300,3.793900929500,3.841487743000,4.034246527200,4.330155464100,4.467898127800,-151.8411146282926 + 0.342390695900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.861740025300,4.203680724200,4.406183819900,4.582588882900,4.822127687600,4.905134408700,5.134714050000,-151.8775177464884 + 0.342390695900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.756999493800,4.101059397400,4.333828736100,4.480956600900,4.713962429900,4.859880518200,5.042760713400,-151.87780577053115 + 0.342390695900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.547948857400,3.893434948700,4.210080115500,4.257665426000,4.495916406700,4.692948012800,4.924565251400,-151.87838690240795 + 0.342390695900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.547948857400,3.884844319000,4.111617223800,4.269775457700,4.506984585800,4.622648435500,4.849005119300,-151.878392546788 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.637647893500,4.963684516800,5.230357990000,5.311481034300,5.595675917400,5.679002951100,5.937372508300,-151.89819145098747 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.637647893500,4.953174825600,5.134948398300,5.314745284500,5.595874316200,5.600103004100,5.853010678300,-151.89820433661757 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.637647893500,4.964853815800,5.259243598200,5.308511783700,5.593593391900,5.724442694000,5.980108911100,-151.8982246770015 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.532027213700,4.856548656300,5.125227560200,5.206926453200,5.490293827000,5.590119914500,5.844636547700,-151.89833388620804 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.532027213700,4.848560733400,5.047144373700,5.214088574100,5.494131229200,5.542656977600,5.789147351900,-151.89835665098997 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.426479699600,4.749413111500,5.020182224600,5.101693519200,5.384360900400,5.488902103900,5.742055759600,-151.89847199190874 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.426479699600,4.743634685400,4.958870951400,5.106096166100,5.386507969100,5.436957395200,5.686704560200,-151.89847379106726 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.426479699600,4.750569692200,5.048662795900,5.097805336800,5.381558098600,5.523907551400,5.776441179700,-151.89849103314876 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.321010712800,4.641272085200,4.900551235400,4.997995937600,5.279390492900,5.373298582700,5.624637625400,-151.89862337504903 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.321010712800,4.636533377600,4.854374132700,5.001192199200,5.280813931700,5.336608140700,5.584828718000,-151.89862818549406 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.321010712800,4.643427685400,4.943491802700,4.992540550000,5.275588288100,5.422822460300,5.673935479500,-151.89864615378102 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.215626147100,4.534143464500,4.795809491400,4.892157086800,5.172947189500,5.262117217800,5.514114120600,-151.89878069314128 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.215626147100,4.536285718800,4.838407337400,4.887357386100,5.169666835100,5.321974391000,5.571604269200,-151.89881942528024 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.215626147100,4.527294990600,4.734019817300,4.899752980700,5.177335661300,5.243217003000,5.484794636500,-151.89882158849397 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.110332496100,4.424179372000,4.661238151200,4.789492994300,5.068318777300,5.137708454500,5.386079853300,-151.8989773397076 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.110332496100,4.429143795300,4.733415163100,4.782261230700,5.063796774100,5.221377077400,5.469457342600,-151.8990124431666 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.005136930100,4.319888341600,4.586658779700,4.682397520000,4.961519207500,5.061244406500,5.310123963900,-151.89918625939757 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.005136930100,4.313131308100,4.525916969800,4.690730035500,4.966469389100,5.045093911200,5.283016646300,-151.89922621675828 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.900047385900,4.213740965300,4.496440530600,4.577251954800,4.855801864300,4.992953936500,5.236999417500,-151.89945091941027 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.900047385900,4.206054128400,4.422087017100,4.586400717200,4.861148402300,4.946537714800,5.182504221000,-151.89946111916956 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.795072671200,4.098980381100,4.318418916600,4.477939257700,4.752560187000,4.819082595000,5.059019599500,-151.89969457956255 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.795072671200,4.107718317100,4.419058139300,4.467556195400,4.746529323900,4.921243255900,5.164231520400,-151.89972409953634 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.690222585500,3.993972335500,4.230174195400,4.376806200500,4.650205745000,4.761835201200,4.994950654700,-151.90000370692246 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.585508062300,3.892343245200,4.183651081900,4.262316149600,4.538206738100,4.673403729100,4.916324180000,-151.90028034066486 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.585508062300,3.893434948700,4.210080115500,4.258310877700,4.535343255300,4.722711315500,4.961884604600,-151.90032415882436 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.480941335800,3.785211836100,4.079686391400,4.159819800000,4.434231999300,4.603454887900,4.838369329800,-151.90065992042628 + 0.350203788200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.321010712800,4.631943013900,4.821823337200,5.000047353600,5.279343020800,5.298720578100,5.550365750600,-151.90125901208523 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.168274173800,3.454406230900,3.685948542200,3.856481168700,4.122887880000,4.224031217500,4.448765192900,-151.9018031406331 + 0.350203788200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.005136930100,4.310740536000,4.509866759600,4.686263147800,4.962914310800,4.999835850000,5.246612783500,-151.90183661000754 + 0.349343041000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.168274173800,3.464869082300,3.793900929500,3.841487743000,4.113932946500,4.330155464100,4.560464044500,-151.90186115044907 + 0.350203788200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.795072671200,4.102861942100,4.348897709600,4.479082209100,4.754666652300,4.868036408100,5.107569480500,-151.90235681235757 + 0.350203788200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.690222585500,3.999475267600,4.287772251600,4.366746135800,4.643854245700,4.772674648400,5.020589224600,-151.9026058343647 + 0.350203788200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.585508062300,3.886888348700,4.126697846600,4.268312459700,4.542000548700,4.629941381200,4.871401473300,-151.90292507815423 + 0.350203788200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.480941335800,3.777782652200,4.008511207200,4.165255897300,4.437149735400,4.520467484700,4.758630822800,-151.90326728654557 + 0.350203788200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.376536137100,3.677144364200,3.962500400100,4.058665987900,4.330837001700,4.499550114800,4.727649777100,-151.90367310862987 + 0.350203788200,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.272307927300,3.572010423800,3.897693942100,3.944760894600,4.218676719300,4.395907802300,4.638457602500,-151.9040407439623 + 0.352772706800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.637647893500,4.959740428900,5.184275050400,5.314436662200,5.597733896200,5.641271731300,5.902456684700,-151.90861196695627 + 0.352772706800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.690222585500,4.000576601500,4.314504040700,4.362751325000,4.640900768300,4.816221373900,5.062935257400,-151.91041735258358 + 0.352772706800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.376536137100,3.668454401600,3.890582467500,4.062282333000,4.332851178700,4.411586337200,4.649905695500,-151.91141535564128 + 0.352772706800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.168274173800,3.458588866300,3.714871805000,3.857557670200,4.125556342500,4.271003971900,4.499023291900,-151.9122405506607 + 0.352772706800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.168274173800,3.463821858000,3.768860595300,3.846362084000,4.117859044400,4.284486585500,4.524477650300,-151.91224537324584 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.387183368700,4.739017319800,4.926079512600,5.104853473800,5.348408940600,5.398924449600,5.637579367000,-151.91775562541622 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.387183368700,4.748401348200,5.005394622700,5.104243074200,5.344431881400,5.488811994000,5.683594691800,-151.9177675402705 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.281891073600,4.639979217600,4.885515372100,4.998683344100,5.241683231200,5.354498558800,5.592255437400,-151.91791115639384 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.176692902900,4.524871953500,4.717696515200,4.895342406000,5.137662458800,5.198793466000,5.435680129500,-151.91808701404332 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.176692902900,4.534143464500,4.795809491400,4.894401587800,5.133268081700,5.290525636700,5.482349679400,-151.91810626179912 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.071596152300,4.417804374400,4.613707804700,4.790745264500,5.032401314300,5.099159383900,5.335092869100,-151.91828182197466 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.966608883300,4.321579126500,4.614923254800,4.679926950600,4.919291810500,5.108704668900,5.299584840600,-151.91851753681908 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.861740025300,4.211503506700,4.467740298100,4.582081031700,4.817639636200,4.980710224200,5.165446692800,-151.91876425389725 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.652398329000,3.993972335500,4.230174195400,4.372421710300,4.611218180600,4.728293791400,4.960810541500,-151.9192957850766 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.547948857400,3.888660527900,4.141443468000,4.270719993900,4.502378479100,4.671732914600,4.847886729000,-151.91965165060864 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.443664881900,3.779807698500,4.023413438100,4.168528782100,4.397978143800,4.563700435900,4.735684027200,-151.9200103254307 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.339561906500,3.677144364200,3.962500400100,4.056304349100,4.292513538500,4.470391338400,4.698982508400,-151.92038249973737 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.235657401400,3.561426745100,3.788132086400,3.958872837000,4.193744530000,4.315059721500,4.541203160300,-151.9207912105242 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.235657401400,3.565657610200,3.817482730700,3.961346666000,4.188447924300,4.370508851300,4.537172932200,-151.92083277056554 + 0.355759680000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.235657401400,3.572010423800,3.897693942100,3.945457535800,4.179870360800,4.427668294300,4.605865938100,-151.92086863556727 + 0.357010784900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.900047385900,4.203680724200,4.406183819900,4.581903924700,4.858611107300,4.900841745600,5.152337449900,-151.92235405237489 + 0.357010784900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.272307927300,3.565657610200,3.817482730700,3.959853660700,4.229909916800,4.359267622200,4.594787829900,-151.92434085996507 + 0.362856034500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.532027213700,4.854223410500,5.095075474700,5.208526283300,5.492039440600,5.552881001100,5.818801400300,-151.93785322476288 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.598024461800,4.964853815800,5.259243598200,5.308042611600,5.552975525200,5.702218294000,5.946710460200,-151.95788723702876 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.598024461800,4.957842687500,5.168189668400,5.314833779800,5.559876085400,5.627927709200,5.871008842400,-151.95789551261132 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.598024461800,4.962661635200,5.215361800900,5.314826992700,5.556053542800,5.693200950100,5.888578410800,-151.95790946884313 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.598024461800,4.953174825600,5.134948398300,5.319373987200,5.555943382500,5.629495855200,5.818095688100,-151.9579133685116 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.492563170300,4.855531211200,5.110333397100,5.207487540200,5.451965284400,5.565302821800,5.808441696300,-151.9580175805554 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.492563170300,4.857275545700,5.139755549300,5.205589194100,5.448093311500,5.614595043000,5.811228714800,-151.95803546039713 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.492563170300,4.852625511300,5.079456279200,5.212430095100,5.451154212000,5.568186552500,5.759227765300,-151.95803820635652 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.492563170300,4.846094655800,5.030456998800,5.214476560400,5.450335547700,5.529318201200,5.716204873200,-151.95804046133412 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.387183368700,4.750569692200,5.048662795900,5.097805336800,5.340676185500,5.523907551400,5.720439017900,-151.9581774107621 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.387183368700,4.743634685400,4.958870951400,5.108458884200,5.345531981600,5.455342932800,5.643281425400,-151.9581810637108 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.281891073600,4.642996483300,4.929541700000,4.994008959100,5.237314825200,5.385979477800,5.628192377200,-151.9583136504252 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.281891073600,4.631943013900,4.821823337200,5.000047353600,5.243382003300,5.298720578100,5.538939766200,-151.95832315298924 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.281891073600,4.636533377600,4.854374132700,5.003604453500,5.239946760500,5.355338200800,5.541491722200,-151.95833991558501 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.176692902900,4.531288685300,4.765620219300,4.894295000700,5.137034057100,5.237910796500,5.478214364500,-151.9584950755784 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.176692902900,4.536285718800,4.838407337400,4.887357386100,5.129007130800,5.321974391000,5.515299484100,-151.95851512130832 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.071596152300,4.425739045200,4.676383596700,4.788503076300,5.030598210800,5.149814691200,5.389577003400,-151.95869010388267 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.071596152300,4.428718064600,4.719694097300,4.784967222100,5.024934956000,5.211471697400,5.401540248300,-151.95871399566485 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.071596152300,4.422336800700,4.645742135200,4.794199181200,5.028973988400,5.156189121400,5.338540866200,-151.95871490587797 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.966608883300,4.318620653600,4.571996704500,4.683739274100,4.925159364400,5.049704476300,5.288580977000,-151.95890843720764 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,3.966608883300,4.313131308100,4.525916969800,4.690730035500,4.923587865100,5.045093911200,5.223843281100,-151.95893465110902 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.861740025300,4.213740965300,4.496440530600,4.575982416500,4.816690319800,4.972196960900,5.210813936200,-151.95914876325432 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.861740025300,4.206054128400,4.422087017100,4.586400717200,4.818346736000,4.946537714800,5.123126579300,-151.95917795145786 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.861740025300,4.214860090800,4.523733385600,4.572353939600,4.811937870400,5.020994967800,5.208971207500,-151.95918030557854 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.756999493800,4.104387701900,4.363623730400,4.474549685800,4.714512183600,4.850385627700,5.087343437600,-151.95941901944408 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.756999493800,4.096625254600,4.302670415400,4.483169216000,4.713021293900,4.836441896100,5.009109732400,-151.95944655868175 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.756999493800,4.107718317100,4.419058139300,4.467556195400,4.706379543700,4.921243255900,5.107274252300,-151.95945226974487 + 0.370227532900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.690222585500,3.989574476800,4.199339083300,4.374306915300,4.649719584400,4.708397147100,4.961128048200,-151.959492908789 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.652398329000,3.989574476800,4.199339083300,4.379212928300,4.608024945600,4.738879600700,4.909135819800,-151.9597436719981 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.652398329000,3.997273347200,4.259657255400,4.373278661500,4.606730202100,4.783316646900,4.960429042100,-151.9597486373527 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.652398329000,4.000576601500,4.314504040700,4.362872374200,4.600894471100,4.821808694300,5.005804502700,-151.95975359145396 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.547948857400,3.882528778900,4.096203602500,4.275413980800,4.503129719000,4.641739836400,4.809470643100,-151.96007204338045 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.547948857400,3.892343245200,4.183651081900,4.264249130500,4.499088708700,4.704687191000,4.883011505600,-151.96008393843587 + 0.370227532900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.480941335800,3.783049480500,4.052220777600,4.162158140600,4.437007204500,4.558240513100,4.811075934700,-151.96015496636986 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.443664881900,3.775488593000,3.993279147900,4.165880525200,4.403196349100,4.508592552400,4.740444812100,-151.96040579937525 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.443664881900,3.786293364000,4.105796296000,4.153219262400,4.390708472900,4.593569779500,4.828853381500,-151.96041148156243 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.443664881900,3.784265690600,4.066122192600,4.162656858500,4.395330131600,4.597124957800,4.771293991700,-151.96044955359062 + 0.370227532900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.376536137100,3.674468944100,3.934721520300,4.059819467300,4.333086360500,4.449842401800,4.699816353900,-151.9605349412871 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.339561906500,3.668454401600,3.890582467500,4.062282333000,4.298643951500,4.411586337200,4.642103914500,-151.96080240675536 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.339561906500,3.672730676700,3.920336140500,4.065288303600,4.293154352200,4.470205485400,4.636252918000,-151.96084127604772 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.339561906500,3.679151853500,4.001663535800,4.049592749700,4.284932859500,4.525616630800,4.702905390800,-151.96086576143938 + 0.370227532900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.272307927300,3.561426745100,3.788132086400,3.959665571000,4.230315822200,4.319934507900,4.564746571900,-151.9609360792402 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.235657401400,3.570024329900,3.859070916700,3.954843393300,4.185361414600,4.402420218200,4.571459429600,-151.9612929320487 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.131971119700,3.454406230900,3.685948542200,3.855667219800,4.089941422600,4.219045623600,4.446642528700,-151.96167939535042 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.131971119700,3.463821858000,3.768860595300,3.846088841200,4.080644759000,4.280118072800,4.510833813300,-151.961711211277 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.131971119700,3.456627839900,3.700569538700,3.860413396200,4.084428605400,4.268246952300,4.426566880000,-151.96171995700223 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.131971119700,3.461728035200,3.742513467300,3.853907256500,4.081926101500,4.296919056300,4.461207702700,-151.96174642508026 + 0.370295905500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.131971119700,3.464869082300,3.793900929500,3.841487743000,4.074766902900,4.330155464100,4.502400318800,-151.96177654034227 + 0.379030211500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.532027213700,4.846094655800,5.030456998800,5.210357081500,5.493158412000,5.503215750300,5.770170078300,-151.9803189465159 + 0.379030211500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.532027213700,4.857711736400,5.153915020100,5.203097239400,5.487260981500,5.622879563700,5.864223171800,-151.98032612479628 + 0.379030211500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.426479699600,4.739017319800,4.926079512600,5.104853473800,5.387149639300,5.398924449600,5.666084230700,-151.98045480240114 + 0.379030211500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.426479699600,4.747100845500,4.990245252500,5.105558726900,5.385436621400,5.474379909300,5.708486744700,-151.9804669824836 + 0.379030211500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.215626147100,4.524871953500,4.717696515200,4.895342406000,5.176086762100,5.198793466000,5.463444284400,-151.98078531169705 + 0.379030211500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.110332496100,4.427015532900,4.691176198700,4.787519761700,5.068661897300,5.165248112800,5.430629854200,-151.9809750102982 + 0.379030211500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.110332496100,4.417804374400,4.613707804700,4.790745264500,5.070656704000,5.099159383900,5.362463864100,-151.9809794406678 + 0.379030211500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.005136930100,4.321579126500,4.614923254800,4.679690748700,4.959142221800,5.103054382400,5.334229788700,-151.98120558994887 + 0.379030211500,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.900047385900,4.211503506700,4.467740298100,4.579085568900,4.858364700100,4.949888728700,5.213255988600,-151.98142619931068 + 0.389159796000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.795072671200,4.106607855300,4.392038771600,4.472793136500,4.749200000300,4.896540326300,5.118886572800,-152.00591950120867 + 0.389159796000,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.376536137100,3.679151853500,4.001663535800,4.049084522900,4.324462162900,4.502372451600,4.760582653200,-152.00726357851354 + 0.400507401800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.637647893500,4.964853815800,5.259243598200,5.308108641800,5.593631797600,5.705351222000,5.981940154200,-152.02952609994944 + 0.400507401800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.321010712800,4.638399548000,4.870122198700,5.002177883100,5.279671446800,5.364819596100,5.589856296900,-152.02997489186603 + 0.400507401800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.900047385900,4.214860090800,4.523733385600,4.571752825500,4.852180008500,4.993010048900,5.263678821400,-152.03077716715634 + 0.400507401800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.480941335800,3.777782652200,4.008511207200,4.170017679800,4.436625255400,4.552851755100,4.755009213700,-152.03205694692718 + 0.400507401800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.480941335800,3.786293364000,4.105796296000,4.153880943500,4.429410834300,4.623972798100,4.840095267100,-152.03207529196825 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.675276338600,4.963684516800,5.230357990000,5.312056408800,5.634583728200,5.688574438600,5.978280474900,-152.03708716027936 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.675276338600,4.959740428900,5.184275050400,5.316287452800,5.636692907100,5.657794683300,5.942614261600,-152.03710069663308 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.675276338600,4.964853815800,5.259243598200,5.308560352700,5.632277559800,5.726738564900,6.014938087400,-152.03710925260626 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.569498329500,4.850737828400,5.063478368600,5.210195510100,5.529498148300,5.530562988300,5.815844543700,-152.03721109424836 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.569498329500,4.856548656300,5.125227560200,5.207102799300,5.528759491900,5.593043041900,5.879789051500,-152.03722085220656 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.463785423500,4.739017319800,4.926079512600,5.105468272600,5.402821389300,5.422560971500,5.684122626600,-152.03735512314023 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.463785423500,4.748401348200,5.005394622700,5.104444932100,5.424360814300,5.491373318000,5.772623856600,-152.03737716185904 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.358142358300,4.642277904200,4.915227438900,4.996541766400,5.316572042100,5.387913430700,5.672120327900,-152.0375118215231 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.358142358300,4.634381062500,4.838273660400,5.002183621200,5.318617351900,5.327140471200,5.605152344300,-152.03752049197973 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.358142358300,4.643427685400,4.943491802700,4.992540550000,5.313897438500,5.422822460300,5.706247137200,-152.03753105782985 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.252574338800,4.531288685300,4.765620219300,4.895930153100,5.212870499400,5.252390944500,5.531047316400,-152.0376908883627 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.252574338800,4.536285718800,4.838407337400,4.887357386100,5.207853957800,5.321974391000,5.603668455300,-152.03770562839082 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.252574338800,4.534143464500,4.795809491400,4.894401587800,5.212520565700,5.290525636700,5.568171903900,-152.0377075846615 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.147087096100,4.417804374400,4.613707804700,4.791400367700,5.103285233600,5.105505463800,5.378903103300,-152.03787806030408 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.147087096100,4.422336800700,4.645742135200,4.792590178600,5.107659987000,5.143762320400,5.418336569200,-152.0378898563882 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.147087096100,4.427015532900,4.691176198700,4.789305731900,5.106516411200,5.187794981700,5.464181017700,-152.03789780591066 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.041686954900,4.310740536000,4.509866759600,4.686263147800,4.999444857400,4.999835850000,5.274416664000,-152.03808822826403 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.041686954900,4.320874558700,4.600968322200,4.682193937700,4.999267357900,5.095718286200,5.372218427500,-152.03810802693613 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.041686954900,4.315241831300,4.541623569300,4.689661895600,5.003247298500,5.057078656400,5.326482450000,-152.03811720343475 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.936380912000,4.214860090800,4.523733385600,4.572353939600,4.890011096700,5.020994967800,5.297016760000,-152.03835299077315 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.675276338600,4.953174825600,5.134948398300,5.318009161200,5.620842357800,5.635841322700,5.899041158700,-152.03858240596978 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.831176726700,4.106607855300,4.392038771600,4.472200987600,4.787302919900,4.886903216200,5.161621822500,-152.0385928797214 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.831176726700,4.107718317100,4.419058139300,4.467556195400,4.784169951000,4.921243255900,5.195196536900,-152.03861457044323 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.569498329500,4.846094655800,5.030456998800,5.209754660500,5.499389951800,5.528358376600,5.786252576600,-152.03868686124773 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.463785423500,4.743634685400,4.958870951400,5.106096166100,5.424618726100,5.436957395200,5.721391533300,-152.0388341178176 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.726083026600,3.989574476800,4.199339083300,4.373589337700,4.683158937900,4.703924950700,4.971753202900,-152.03887071904742 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.726083026600,3.991910342400,4.214924610800,4.377188495800,4.686509158400,4.743978356400,5.006392574500,-152.03889248518033 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.726083026600,3.997273347200,4.259657255400,4.373278661500,4.685156109200,4.783316646900,5.048849175800,-152.0388992186504 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.726083026600,4.000576601500,4.314504040700,4.362872374200,4.678388066100,4.821808694300,5.093594677700,-152.03890160598118 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.252574338800,4.524871953500,4.717696515200,4.896605073100,5.206761255600,5.211131099900,5.480437016400,-152.03916272746537 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.621109431500,3.893434948700,4.210080115500,4.258310877700,4.572669554900,4.722711315500,4.992224515100,-152.03921613746508 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.516266698100,3.777782652200,4.008511207200,4.170510336400,4.476817817600,4.556191212600,4.811617023900,-152.0395468218307 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.516266698100,3.786293364000,4.105796296000,4.153880943500,4.467018916900,4.623972798100,4.891100454900,-152.03956026451817 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.936380912000,4.212761947200,4.482265340100,4.578841975000,4.894441409800,4.975904718500,5.253840398800,-152.03980824141672 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.936380912000,4.208149299900,4.437648982000,4.583096251200,4.896446375300,4.941791028200,5.215718405900,-152.03981220713612 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.411566891200,3.670725723300,3.905622509300,4.065360602300,4.370580376000,4.448965979500,4.704152426500,-152.0399099546375 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.831176726700,4.101059397400,4.333828736100,4.478757921700,4.790941886900,4.843033678900,5.114765969400,-152.04007246261665 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.307023586000,3.561426745100,3.788132086400,3.958872837000,4.262641342700,4.315059721500,4.572188043200,-152.04029019472685 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.307023586000,3.570951078700,3.872276844200,3.950164224600,4.259092899400,4.382089621500,4.647786101400,-152.0402997325986 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.307023586000,3.572010423800,3.897693942100,3.945457535800,4.255941475700,4.427668294300,4.689654285200,-152.04033728808122 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.621109431500,3.891388202600,4.169921957700,4.266309046300,4.577802617700,4.688978313600,4.952701804500,-152.04068182531773 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.621109431500,3.886888348700,4.126697846600,4.272382635300,4.580860670700,4.660987821200,4.919055933600,-152.04068261370924 + 0.404105778900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.202652108300,3.464869082300,3.793900929500,3.841487743000,4.150526055900,4.330155464100,4.589367376500,-152.04075735398206 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.516266698100,3.775488593000,3.993279147900,4.165880525200,4.473267385500,4.508592552400,4.774850120900,-152.0409992068696 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.307023586000,3.565657610200,3.817482730700,3.961800876300,4.265748216000,4.373923827500,4.622647371200,-152.04178970208858 + 0.404816662300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.202652108300,3.462905707800,3.755849630000,3.850935134300,4.157081150600,4.302498308000,4.559479156300,-152.04221442767204 + 0.406941263900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.411566891200,3.678081093900,3.975890455400,4.055913274100,4.365502735500,4.508604811800,4.765096292900,-152.04577617827215 + 0.406941263900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.202652108300,3.454406230900,3.685948542200,3.862045039400,4.161572277100,4.257982609400,4.496790196600,-152.04655839380246 + 0.410455853700,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.358142358300,4.638399548000,4.870122198700,5.001516229400,5.319950169300,5.358962892600,5.644401306900,-152.05044994409513 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.637647893500,4.953174825600,5.134948398300,5.314745284500,5.599537633700,5.600103004100,5.876457364300,-152.05498389155463 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.637647893500,4.963684516800,5.230357990000,5.313032323000,5.595675917400,5.704774637800,5.937372508300,-152.05499370213343 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.637647893500,4.959740428900,5.184275050400,5.317531818700,5.597118678400,5.668879921800,5.896918105900,-152.05499684453008 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.532027213700,4.855531211200,5.110333397100,5.209596186100,5.490504637200,5.592171259600,5.821486532400,-152.05512290824007 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.532027213700,4.850737828400,5.063478368600,5.213406372000,5.491178900600,5.555613824600,5.780268448200,-152.055125932355 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.426479699600,4.750135939400,5.034605709200,5.099231997100,5.383434877400,5.487377751500,5.764905836900,-152.05524040160427 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.426479699600,4.743634685400,4.958870951400,5.108458884200,5.385407525400,5.455342932800,5.678049595100,-152.05526893112022 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.321010712800,4.642996483300,4.929541700000,4.994008959100,5.277513801700,5.385979477800,5.662545538900,-152.0553988842019 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.321010712800,4.631943013900,4.821823337200,5.004967104300,5.278847642700,5.329775763900,5.547205339900,-152.05543052206897 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.215626147100,4.535857187800,4.824569128900,4.888869316100,5.171643061700,5.284807893000,5.560365440800,-152.05557581741036 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.215626147100,4.532858593200,4.780892427700,4.896173092600,5.173602626300,5.279271020100,5.501181166700,-152.05560532524058 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.215626147100,4.527294990600,4.734019817300,4.899752980700,5.173810026700,5.243217003000,5.460110120500,-152.05560763138362 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.110332496100,4.429143795300,4.733415163100,4.782261230700,5.063344538000,5.221377077400,5.448069774600,-152.05580181027017 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.110332496100,4.422336800700,4.645742135200,4.794199181200,5.068439089600,5.156189121400,5.372544454800,-152.0558052097292 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.005136930100,4.319888341600,4.586658779700,4.682397520000,4.963363281200,5.061244406500,5.333591574300,-152.0559953536308 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.005136930100,4.317071723500,4.556984234600,4.688307746100,4.962736777700,5.068688076700,5.284503415100,-152.0560250900021 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.005136930100,4.310740536000,4.509866759600,4.691511959600,4.962387344800,5.032735683000,5.243269287100,-152.05602644466907 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.900047385900,4.212761947200,4.482265340100,4.580073584300,4.855899168300,4.991350146100,5.208438948200,-152.0562691230547 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.900047385900,4.206054128400,4.422087017100,4.586400717200,4.857393275400,4.946537714800,5.156372787500,-152.05626958283898 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.795072671200,4.107718317100,4.419058139300,4.466940978800,4.746529323900,4.892687816100,5.164231520400,-152.05650211928713 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.795072671200,4.104387701900,4.363623730400,4.474549685800,4.753613800300,4.850385627700,5.119660418500,-152.056507717169 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.795072671200,4.096625254600,4.302670415400,4.477676187800,4.756097865900,4.802197443500,5.069050836200,-152.05651298265698 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.795072671200,4.101059397400,4.333828736100,4.480956600900,4.752069869900,4.859880518200,5.069009103000,-152.05653894879802 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.690222585500,3.997273347200,4.259657255400,4.370140079900,4.648246541900,4.751214816600,5.019118111800,-152.05680412368338 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.690222585500,3.991910342400,4.214924610800,4.378149795800,4.646830982200,4.750540863700,4.955121401700,-152.05683575712138 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.690222585500,4.000163572100,4.301311959900,4.365891743300,4.642178569700,4.812748066100,5.028841139700,-152.0568402610621 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.585508062300,3.893434948700,4.210080115500,4.257665426000,4.535343255300,4.692948012800,4.961884604600,-152.05712846242253 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.585508062300,3.886888348700,4.126697846600,4.268312459700,4.545069354400,4.629941381200,4.895094420300,-152.05713293420382 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.585508062300,3.882528778900,4.096203602500,4.275413980800,4.541525921700,4.641739836400,4.841537190700,-152.05716204422956 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.585508062300,3.890160562300,4.155852137600,4.269081266800,4.540445131200,4.685176498700,4.892862607400,-152.0571678488854 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.480941335800,3.784265690600,4.066122192600,4.162656858500,4.434149762200,4.597124957800,4.804071936400,-152.05753423972428 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.376536137100,3.668454401600,3.890582467500,4.068336260600,4.331662217700,4.448838493100,4.642471566600,-152.05791670807085 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.376536137100,3.677144364200,3.962500400100,4.058665987900,4.328921796300,4.499550114800,4.703649950100,-152.05793529836535 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.272307927300,3.567377392000,3.831672212000,3.955594830700,4.229106294500,4.348021156900,4.608887759900,-152.05831984982868 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.272307927300,3.572010423800,3.897693942100,3.944760894600,4.219150276000,4.395907802300,4.660365882400,-152.05832783327256 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.272307927300,3.563673959300,3.802968768800,3.963578437600,4.226829292800,4.363708854800,4.556186330100,-152.05834802816747 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.272307927300,3.570024329900,3.859070916700,3.954843393300,4.223790111600,4.402420218200,4.603531005600,-152.0583697225379 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.168274173800,3.458588866300,3.714871805000,3.853538848300,4.125556342500,4.240793451000,4.499023291900,-152.05876651608017 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.168274173800,3.464476348700,3.781544851600,3.843562846900,4.116557708700,4.289072729200,4.551135846000,-152.05878414407013 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.168274173800,3.454406230900,3.685948542200,3.862045039400,4.122253531000,4.257982609400,4.444821577800,-152.05878687188073 + 0.412963455800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.168274173800,3.461728035200,3.742513467300,3.853907256500,4.120009413400,4.296919056300,4.492663836200,-152.05881933903657 + 0.421489509900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.621109431500,3.882528778900,4.096203602500,4.269653678100,4.580446522000,4.606048065400,4.887491130500,-152.0733092554136 + 0.421489509900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.516266698100,3.783049480500,4.052220777600,4.163341249000,4.474315114000,4.570275596200,4.847909870100,-152.07366893997553 + 0.428896518800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.936380912000,4.203680724200,4.406183819900,4.581903924700,4.896762300400,4.900841745600,5.191144100100,-152.0858266120809 + 0.428896518800,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.202652108300,3.460289016300,3.728853660400,3.853658917100,4.160070069000,4.264746596300,4.537729495100,-152.0882755104362 + 0.437474190400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.569498329500,4.854223410500,5.095075474700,5.210653967800,5.529194046800,5.575100732900,5.841256934400,-152.0994222876162 + 0.437474190400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.463785423500,4.750569692200,5.048662795900,5.097805336800,5.419682011600,5.523907551400,5.794599979700,-152.09956763761843 + 0.437474190400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.147087096100,4.429143795300,4.733415163100,4.782261230700,5.101535424300,5.221377077400,5.486066006000,-152.10010203955548 + 0.437474190400,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.411566891200,3.675940250800,3.948776855400,4.060497066800,4.366520592200,4.483576986100,4.722159527300,-152.10218340077628 + 0.447148129300,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.569498329500,4.857711736400,5.153915020100,5.202685929200,5.526111636500,5.603442067000,5.911890256900,-152.11504928303464 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.675276338600,4.964853815800,5.259243598200,5.308042611600,5.632277559800,5.702218294000,6.014938087400,-152.13113811074356 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.675276338600,4.962661635200,5.215361800900,5.312760113300,5.636385949600,5.666811551500,5.977764696200,-152.13114451594706 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,4.000000000000,4.358877312500,4.675276338600,4.955654007100,5.151746525400,5.314936661200,5.614204003800,5.637667884500,5.922712645600,-152.1311527767246 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.569498329500,4.850737828400,5.063478368600,5.209726009600,5.526891772300,5.531905812400,5.834812490800,-152.1312782372415 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.892857142900,4.254231044800,4.569498329500,4.846094655800,5.030456998800,5.214476560400,5.527906592600,5.529318201200,5.783357462800,-152.13130055584685 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.463785423500,4.747100845500,4.990245252500,5.103387226700,5.425225723500,5.451749684500,5.759718734900,-152.13141632066828 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.785714285700,4.149712197600,4.463785423500,4.739017319800,4.926079512600,5.109672314800,5.422100372200,5.429406518200,5.681175467800,-152.13144399180604 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.358142358300,4.642277904200,4.915227438900,4.995739365000,5.317205398300,5.374652682600,5.682678378000,-152.13157084408869 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.358142358300,4.631943013900,4.821823337200,5.000047353600,5.298720578100,5.320030115700,5.602668308300,-152.13158391752995 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.358142358300,4.643427685400,4.943491802700,4.992540550000,5.313485873300,5.422822460300,5.686673862600,-152.13159446678162 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.678571428600,4.045330647500,4.358142358300,4.639979217600,4.885515372100,5.001077628300,5.317278236100,5.379377001800,5.635981524400,-152.1315991503382 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.252574338800,4.536285718800,4.838407337400,4.886795020000,5.207853957800,5.295580260900,5.603668455300,-152.1317435607744 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.252574338800,4.527294990600,4.734019817300,4.895281350000,5.212204184000,5.214620800600,5.515437795400,-152.13175892818208 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.571428571400,3.941097303600,4.252574338800,4.534143464500,4.795809491400,4.894401587800,5.210843660100,5.290525636700,5.546709904800,-152.13177682629785 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.147087096100,4.425739045200,4.676383596700,4.788503076300,5.107698310100,5.149814691200,5.453777038600,-152.131949599942 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.147087096100,4.417804374400,4.613707804700,4.790745264500,5.099159383900,5.108851010700,5.400162071400,-152.13195828283472 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.464285714300,3.837024243900,4.147087096100,4.422336800700,4.645742135200,4.794199181200,5.105873074100,5.156189121400,5.404343623300,-152.1319786572472 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.041686954900,4.319888341600,4.586658779700,4.682397520000,5.000888699800,5.061244406500,5.364487603400,-152.13216635214025 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.041686954900,4.310740536000,4.509866759600,4.686263147800,4.999835850000,5.003360524100,5.299256389800,-152.1321769530427 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.041686954900,4.322001918100,4.628521560200,4.677257949100,4.995469973400,5.121045297000,5.378351835600,-152.1321944538877 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.357142857100,3.733124873800,4.041686954900,4.315241831300,4.541623569300,4.689661895600,5.000195850000,5.057078656400,5.302652549800,-152.1321989370901 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.936380912000,4.214860090800,4.523733385600,4.571752825500,4.890011096700,4.993010048900,5.297016760000,-152.13240234871554 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.936380912000,4.212761947200,4.482265340100,4.577674966300,4.895159357300,4.961228918600,5.262961188400,-152.13240866026007 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.250000000000,3.629414110100,3.936380912000,4.209965866700,4.452867470500,4.583804912700,4.894468717900,4.969693736700,5.214576945000,-152.13244202508756 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.831176726700,4.107718317100,4.419058139300,4.466940978800,4.784169951000,4.892687816100,5.195196536900,-152.13267032547984 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.831176726700,4.096625254600,4.302670415400,4.477676187800,4.792599488100,4.802197443500,5.098208667000,-152.13268567277683 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.142857142900,3.525908595800,3.831176726700,4.104387701900,4.363623730400,4.477615082200,4.788411650800,4.881835377100,5.126020521200,-152.13271100523252 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.726083026600,3.999475267600,4.287772251600,4.366746135800,4.682344280400,4.772674648400,5.071979898300,-152.13296992599587 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.726083026600,3.989574476800,4.199339083300,4.373589337700,4.687338828100,4.703924950700,4.998097343100,-152.13297980949025 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.726083026600,3.995760105000,4.245085753200,4.375182389400,4.683337384900,4.772760985400,5.011993203300,-152.1330078694142 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,3.035714285700,3.422626952000,3.726083026600,4.000576601500,4.314504040700,4.362872374200,4.677920589000,4.821808694300,5.071657517000,-152.13300917333328 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.621109431500,3.893434948700,4.210080115500,4.257665426000,4.572669554900,4.692948012800,4.992224515100,-152.13329303701911 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.621109431500,3.888660527900,4.141443468000,4.267227301300,4.580740767600,4.641349929900,4.936305878300,-152.1333002974581 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.621109431500,3.884844319000,4.111617223800,4.274248057700,4.578170934600,4.653147197300,4.884987756100,-152.13333302300055 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.928571428600,3.319590074500,3.621109431500,3.891388202600,4.169921957700,4.266803701200,4.576456410000,4.695117006300,4.935693229800,-152.1333367623142 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.516266698100,3.786293364000,4.105796296000,4.153219262400,4.467018916900,4.593569779500,4.891100454900,-152.13365387828483 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.516266698100,3.777782652200,4.008511207200,4.170510336400,4.472923529100,4.556191212600,4.784729949200,-152.13369136842434 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.821428571400,3.216821483500,3.516266698100,3.785211836100,4.079686391400,4.160005646000,4.469764870400,4.606443298800,4.846227187300,-152.1337003291095 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.411566891200,3.679151853500,4.001663535800,4.048914025600,4.361441084300,4.494548338900,4.790238083400,-152.13405049652783 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.714285714300,3.114347738200,3.411566891200,3.668454401600,3.890582467500,4.062282333000,4.372105522200,4.411586337200,4.699624290200,-152.13405105482195 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.307023586000,3.561426745100,3.788132086400,3.958872837000,4.267233163000,4.315059721500,4.600820648800,-152.13447211606425 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.307023586000,3.568833039900,3.845535497400,3.953964322400,4.263817590700,4.358307016700,4.648162965400,-152.13447836958906 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.307023586000,3.563673959300,3.802968768800,3.963578437600,4.262712051000,4.363708854800,4.585148727900,-152.1345063544235 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.607142857100,3.012198930300,3.307023586000,3.571613143900,3.885151698400,3.948855157000,4.257300597200,4.419615094300,4.655383057600,-152.1345334690629 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.202652108300,3.454406230900,3.685948542200,3.855667219800,4.162476453000,4.219045623600,4.502398471900,-152.13491260561935 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.202652108300,3.464476348700,3.781544851600,3.843562846900,4.152986850200,4.289072729200,4.579771329600,-152.13493258946633 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.202652108300,3.456627839900,3.700569538700,3.860413396200,4.157762303400,4.268246952300,4.485866885800,-152.1349487679602 + 0.457840943900,1.511209005600,0.958000000000,0.960000000000,0.960000000000,0.965000000000,2.500000000000,2.910409273700,3.202652108300,3.462905707800,3.755849630000,3.851202684000,4.154978302600,4.305765379500,4.533244157700,-152.13497680336488 + diff --git a/_sources/guides/tutorials.rst b/_sources/guides/tutorials.rst new file mode 100644 index 0000000..953210e --- /dev/null +++ b/_sources/guides/tutorials.rst @@ -0,0 +1,13 @@ +######### +Tutorials +######### + +The following tutorials cover the basics for several different methods of using PES-Learn. +For more examples, check out the `Examples `_ pages. + +.. toctree:: + :maxdepth: 2 + + Command line interface (CLI) + Application porgram interface (API) + Loading external datasets \ No newline at end of file diff --git a/_sources/index.rst b/_sources/index.rst new file mode 100644 index 0000000..3433c3c --- /dev/null +++ b/_sources/index.rst @@ -0,0 +1,39 @@ +.. PES-Learn documentation master file, created by + sphinx-quickstart on Thu May 2 11:10:40 2024. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to PES-Learn's documentation! +===================================== + +**Version**: |release| + +**PES-Learn** is a Python library designed to fit system-specific Born-Oppenheimer +potential energy surfaces using modern machine learning models. PES-Learn assists in +generating datasets, and features Gaussian process, neural network, and kernel ridge regression +model optimization routines. The goal is to provide high-performance models for a given dataset +*without* requiring user expertise in machine learning. + +This project is under active development and welcomes community suggestions and contributions. + +**Useful Links**: +`Source Repository `_ | +`Issue Tracker `_ + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + + Getting Started + User Guides + PES-Learn Community + Reference + Developers Documentation + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/_sources/reference/keywords.rst b/_sources/reference/keywords.rst new file mode 100644 index 0000000..4df8e42 --- /dev/null +++ b/_sources/reference/keywords.rst @@ -0,0 +1,5 @@ + +Input Keywords (alphabetical) +============================= + +WIP \ No newline at end of file diff --git a/_sources/started/installation.rst b/_sources/started/installation.rst new file mode 100644 index 0000000..91825d2 --- /dev/null +++ b/_sources/started/installation.rst @@ -0,0 +1,92 @@ + +Instalation +=========== + +Currently PES-Learn best works with Python 3.8 (because of package dependency conflicts), support for newer vesions of Python is coming soon! + +PES-Learn can either be installed with ``pip`` or compiled from source. It is reccomended to install with ``pip`` because it will handle all of the dependencies for you. + + +**Installing With pip** + +Make sure that you have Python and it is at least version 3.8 or greater. To check this you can run the following from a command line: + +.. code-block:: + + python --version + +Now that you have ensured you have a working version Python you can install the ``peslearn`` application with ``pip``: + +.. code-block:: + + pip install peslearn + +This should install the ``peslearn`` package and all its dependencies. + +.. note:: + If you don't have ``pip`` in your environment checkout the `pip instalation guide `_ . + + +**Installing with conda** + +*Coming Soon!* + +**Compiling from source** + +Compiling from source can be done with pip to install dependencies or with an Anaconda package manager. It is strongly recommended to install dependencies using an Anaconda package manager, for performance and stability reasons. +We recommend using Mamba as a package manager, because it is much faster and more efficient at resolving dependencies than Conda. More information can be found `here `_ + +*Install dependencies with Anaconda package manager:* + +If you are utilizing Mamba, in the following commands you can substitute ``mamba`` wherever you see ``conda``. +It is recommended to start with a clean environment. After installing your prefered package manager create the environment and activate it. + +.. code-block:: + + conda create -n peslearn python=3.8 + conda activate peslearn + +Then install the required dependencies into your environment. + +.. code-block:: + + conda install -c conda-forge -c pytorch numpy gpy scikit-learn pandas hyperopt cclib joblib qcelemental qcengine matplotlib pytorch + +Then install the ``peslearn`` package from GitHub + +.. code-block:: + + git clone https://github.com/CCQC/PES-Learn.git + cd PES-Learn/ + pip install . + +Now you should be all setup and ready to use the ``peslearn`` package! +To update the ``peslearn`` package in the future, move to the top-level directory and run + +.. code-block:: + + git pull + + +*Install dependencies with pip*: + +To compile PES-Learn from source and install the dependencies with ``pip`` first check the python version you are using (Python 3.8 is recommended). + +Then clone the repository from GitHub in your desired location and move to the top-level directory. + +.. code-block:: + + git clone https://github.com/CCQC/PES-Learn.git + cd PES-Learn/ + +Then install the ``peslearn`` dependencies with pip + +.. code-block:: bash + + pip install . + +To update the ``peslearn`` package in the future, move to the top-level directory and run + +.. code-block:: + + git pull diff --git a/_sources/started/main.rst b/_sources/started/main.rst new file mode 100644 index 0000000..6c637f8 --- /dev/null +++ b/_sources/started/main.rst @@ -0,0 +1,10 @@ + +Getting Started +=============== + +These pages contain information about getting started with PES-Learn including detailed tutorials for many uses. + + +.. toctree:: + + Installation diff --git a/_static/basic.css b/_static/basic.css new file mode 100644 index 0000000..6157296 --- /dev/null +++ b/_static/basic.css @@ -0,0 +1,903 @@ +/* + * basic.css + * ~~~~~~~~~ + * + * Sphinx stylesheet -- basic theme. + * + * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +/* -- main layout ----------------------------------------------------------- */ + +div.clearer { + clear: both; +} + +div.section::after { + display: block; + content: ''; + clear: left; +} + +/* -- relbar ---------------------------------------------------------------- */ + +div.related { + width: 100%; + font-size: 90%; +} + +div.related h3 { + display: none; +} + +div.related ul { + margin: 0; + padding: 0 0 0 10px; + list-style: none; +} + +div.related li { + display: inline; +} + +div.related li.right { + float: right; + margin-right: 5px; +} + +/* -- sidebar --------------------------------------------------------------- */ + +div.sphinxsidebarwrapper { + padding: 10px 5px 0 10px; +} + +div.sphinxsidebar { + float: left; + width: 270px; + margin-left: -100%; + font-size: 90%; + word-wrap: break-word; + overflow-wrap : break-word; +} + +div.sphinxsidebar ul { + list-style: none; +} + +div.sphinxsidebar ul ul, +div.sphinxsidebar ul.want-points { + margin-left: 20px; + list-style: square; +} + +div.sphinxsidebar ul ul { + margin-top: 0; + margin-bottom: 0; +} + +div.sphinxsidebar form { + margin-top: 10px; +} + +div.sphinxsidebar input { + border: 1px solid #98dbcc; + font-family: sans-serif; + font-size: 1em; +} + +div.sphinxsidebar #searchbox form.search { + overflow: hidden; +} + +div.sphinxsidebar #searchbox input[type="text"] { + float: left; + width: 80%; + padding: 0.25em; + box-sizing: border-box; +} + +div.sphinxsidebar #searchbox input[type="submit"] { + float: left; + width: 20%; + border-left: none; + padding: 0.25em; + box-sizing: border-box; +} + + +img { + border: 0; + max-width: 100%; +} + +/* -- search page ----------------------------------------------------------- */ + +ul.search { + margin: 10px 0 0 20px; + padding: 0; +} + +ul.search li { + padding: 5px 0 5px 20px; + background-image: url(file.png); + background-repeat: no-repeat; + background-position: 0 7px; +} + +ul.search li a { + font-weight: bold; +} + +ul.search li p.context { + color: #888; + margin: 2px 0 0 30px; + text-align: left; +} + +ul.keywordmatches li.goodmatch a { + font-weight: bold; +} + +/* -- index page ------------------------------------------------------------ */ + +table.contentstable { + width: 90%; + margin-left: auto; + margin-right: auto; +} + +table.contentstable p.biglink { + line-height: 150%; +} + +a.biglink { + font-size: 1.3em; +} + +span.linkdescr { + font-style: italic; + padding-top: 5px; + font-size: 90%; +} + +/* -- general index --------------------------------------------------------- */ + +table.indextable { + width: 100%; +} + +table.indextable td { + text-align: left; + vertical-align: top; +} + +table.indextable ul { + margin-top: 0; + margin-bottom: 0; + list-style-type: none; +} + +table.indextable > tbody > tr > td > ul { + padding-left: 0em; +} + +table.indextable tr.pcap { + height: 10px; +} + +table.indextable tr.cap { + margin-top: 10px; + background-color: #f2f2f2; +} + +img.toggler { + margin-right: 3px; + margin-top: 3px; + cursor: pointer; +} + +div.modindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +div.genindex-jumpbox { + border-top: 1px solid #ddd; + border-bottom: 1px solid #ddd; + margin: 1em 0 1em 0; + padding: 0.4em; +} + +/* -- domain module index --------------------------------------------------- */ + +table.modindextable td { + padding: 2px; + border-collapse: collapse; +} + +/* -- general body styles --------------------------------------------------- */ + +div.body { + min-width: 360px; + max-width: 800px; +} + +div.body p, div.body dd, div.body li, div.body blockquote { + -moz-hyphens: auto; + -ms-hyphens: auto; + -webkit-hyphens: auto; + hyphens: auto; +} + +a.headerlink { + visibility: hidden; +} + +h1:hover > a.headerlink, +h2:hover > a.headerlink, +h3:hover > a.headerlink, +h4:hover > a.headerlink, +h5:hover > a.headerlink, +h6:hover > a.headerlink, +dt:hover > a.headerlink, +caption:hover > a.headerlink, +p.caption:hover > a.headerlink, +div.code-block-caption:hover > a.headerlink { + visibility: visible; +} + +div.body p.caption { + text-align: inherit; +} + +div.body td { + text-align: left; +} + +.first { + margin-top: 0 !important; +} + +p.rubric { + margin-top: 30px; + font-weight: bold; +} + +img.align-left, figure.align-left, .figure.align-left, object.align-left { + clear: left; + float: left; + margin-right: 1em; +} + +img.align-right, figure.align-right, .figure.align-right, object.align-right { + clear: right; + float: right; + margin-left: 1em; +} + +img.align-center, figure.align-center, .figure.align-center, object.align-center { + display: block; + margin-left: auto; + margin-right: auto; +} + +img.align-default, figure.align-default, .figure.align-default { + display: block; + margin-left: auto; + margin-right: auto; +} + +.align-left { + text-align: left; +} + +.align-center { + text-align: center; +} + +.align-default { + text-align: center; +} + +.align-right { + text-align: right; +} + +/* -- sidebars -------------------------------------------------------------- */ + +div.sidebar, +aside.sidebar { + margin: 0 0 0.5em 1em; + border: 1px solid #ddb; + padding: 7px; + background-color: #ffe; + width: 40%; + float: right; + clear: right; + overflow-x: auto; +} + +p.sidebar-title { + font-weight: bold; +} + +nav.contents, +aside.topic, +div.admonition, div.topic, blockquote { + clear: left; +} + +/* -- topics ---------------------------------------------------------------- */ + +nav.contents, +aside.topic, +div.topic { + border: 1px solid #ccc; + padding: 7px; + margin: 10px 0 10px 0; +} + +p.topic-title { + font-size: 1.1em; + font-weight: bold; + margin-top: 10px; +} + +/* -- admonitions ----------------------------------------------------------- */ + +div.admonition { + margin-top: 10px; + margin-bottom: 10px; + padding: 7px; +} + +div.admonition dt { + font-weight: bold; +} + +p.admonition-title { + margin: 0px 10px 5px 0px; + font-weight: bold; +} + +div.body p.centered { + text-align: center; + margin-top: 25px; +} + +/* -- content of sidebars/topics/admonitions -------------------------------- */ + +div.sidebar > :last-child, +aside.sidebar > :last-child, +nav.contents > :last-child, +aside.topic > :last-child, +div.topic > :last-child, +div.admonition > :last-child { + margin-bottom: 0; +} + +div.sidebar::after, +aside.sidebar::after, +nav.contents::after, +aside.topic::after, +div.topic::after, +div.admonition::after, +blockquote::after { + display: block; + content: ''; + clear: both; +} + +/* -- tables ---------------------------------------------------------------- */ + +table.docutils { + margin-top: 10px; + margin-bottom: 10px; + border: 0; + border-collapse: collapse; +} + +table.align-center { + margin-left: auto; + margin-right: auto; +} + +table.align-default { + margin-left: auto; + margin-right: auto; +} + +table caption span.caption-number { + font-style: italic; +} + +table caption span.caption-text { +} + +table.docutils td, table.docutils th { + padding: 1px 8px 1px 5px; + border-top: 0; + border-left: 0; + border-right: 0; + border-bottom: 1px solid #aaa; +} + +th { + text-align: left; + padding-right: 5px; +} + +table.citation { + border-left: solid 1px gray; + margin-left: 1px; +} + +table.citation td { + border-bottom: none; +} + +th > :first-child, +td > :first-child { + margin-top: 0px; +} + +th > :last-child, +td > :last-child { + margin-bottom: 0px; +} + +/* -- figures --------------------------------------------------------------- */ + +div.figure, figure { + margin: 0.5em; + padding: 0.5em; +} + +div.figure p.caption, figcaption { + padding: 0.3em; +} + +div.figure p.caption span.caption-number, +figcaption span.caption-number { + font-style: italic; +} + +div.figure p.caption span.caption-text, +figcaption span.caption-text { +} + +/* -- field list styles ----------------------------------------------------- */ + +table.field-list td, table.field-list th { + border: 0 !important; +} + +.field-list ul { + margin: 0; + padding-left: 1em; +} + +.field-list p { + margin: 0; +} + +.field-name { + -moz-hyphens: manual; + -ms-hyphens: manual; + -webkit-hyphens: manual; + hyphens: manual; +} + +/* -- hlist styles ---------------------------------------------------------- */ + +table.hlist { + margin: 1em 0; +} + +table.hlist td { + vertical-align: top; +} + +/* -- object description styles --------------------------------------------- */ + +.sig { + font-family: 'Consolas', 'Menlo', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace; +} + +.sig-name, code.descname { + background-color: transparent; + font-weight: bold; +} + +.sig-name { + font-size: 1.1em; +} + +code.descname { + font-size: 1.2em; +} + +.sig-prename, code.descclassname { + background-color: transparent; +} + +.optional { + font-size: 1.3em; +} + +.sig-paren { + font-size: larger; +} + +.sig-param.n { + font-style: italic; +} + +/* C++ specific styling */ + +.sig-inline.c-texpr, +.sig-inline.cpp-texpr { + font-family: unset; +} + +.sig.c .k, .sig.c .kt, +.sig.cpp .k, .sig.cpp .kt { + color: #0033B3; +} + +.sig.c .m, +.sig.cpp .m { + color: #1750EB; +} + +.sig.c .s, .sig.c .sc, +.sig.cpp .s, .sig.cpp .sc { + color: #067D17; +} + + +/* -- other body styles ----------------------------------------------------- */ + +ol.arabic { + list-style: decimal; +} + +ol.loweralpha { + list-style: lower-alpha; +} + +ol.upperalpha { + list-style: upper-alpha; +} + +ol.lowerroman { + list-style: lower-roman; +} + +ol.upperroman { + list-style: upper-roman; +} + +:not(li) > ol > li:first-child > :first-child, +:not(li) > ul > li:first-child > :first-child { + margin-top: 0px; +} + +:not(li) > ol > li:last-child > :last-child, +:not(li) > ul > li:last-child > :last-child { + margin-bottom: 0px; +} + +ol.simple ol p, +ol.simple ul p, +ul.simple ol p, +ul.simple ul p { + margin-top: 0; +} + +ol.simple > li:not(:first-child) > p, +ul.simple > li:not(:first-child) > p { + margin-top: 0; +} + +ol.simple p, +ul.simple p { + margin-bottom: 0; +} + +aside.footnote > span, +div.citation > span { + float: left; +} +aside.footnote > span:last-of-type, +div.citation > span:last-of-type { + padding-right: 0.5em; +} +aside.footnote > p { + margin-left: 2em; +} +div.citation > p { + margin-left: 4em; +} +aside.footnote > p:last-of-type, +div.citation > p:last-of-type { + margin-bottom: 0em; +} +aside.footnote > p:last-of-type:after, +div.citation > p:last-of-type:after { + content: ""; + clear: both; +} + +dl.field-list { + display: grid; + grid-template-columns: fit-content(30%) auto; +} + +dl.field-list > dt { + font-weight: bold; + word-break: break-word; + padding-left: 0.5em; + padding-right: 5px; +} + +dl.field-list > dd { + padding-left: 0.5em; + margin-top: 0em; + margin-left: 0em; + margin-bottom: 0em; +} + +dl { + margin-bottom: 15px; +} + +dd > :first-child { + margin-top: 0px; +} + +dd ul, dd table { + margin-bottom: 10px; +} + +dd { + margin-top: 3px; + margin-bottom: 10px; + margin-left: 30px; +} + +dl > dd:last-child, +dl > dd:last-child > :last-child { + margin-bottom: 0; +} + +dt:target, span.highlighted { + background-color: #fbe54e; +} + +rect.highlighted { + fill: #fbe54e; +} + +dl.glossary dt { + font-weight: bold; + font-size: 1.1em; +} + +.versionmodified { + font-style: italic; +} + +.system-message { + background-color: #fda; + padding: 5px; + border: 3px solid red; +} + +.footnote:target { + background-color: #ffa; +} + +.line-block { + display: block; + margin-top: 1em; + margin-bottom: 1em; +} + +.line-block .line-block { + margin-top: 0; + margin-bottom: 0; + margin-left: 1.5em; +} + +.guilabel, .menuselection { + font-family: sans-serif; +} + +.accelerator { + text-decoration: underline; +} + +.classifier { + font-style: oblique; +} + +.classifier:before { + font-style: normal; + margin: 0 0.5em; + content: ":"; + display: inline-block; +} + +abbr, acronym { + border-bottom: dotted 1px; + cursor: help; +} + +/* -- code displays --------------------------------------------------------- */ + +pre { + overflow: auto; + overflow-y: hidden; /* fixes display issues on Chrome browsers */ +} + +pre, div[class*="highlight-"] { + clear: both; +} + +span.pre { + -moz-hyphens: none; + -ms-hyphens: none; + -webkit-hyphens: none; + hyphens: none; + white-space: nowrap; +} + +div[class*="highlight-"] { + margin: 1em 0; +} + +td.linenos pre { + border: 0; + background-color: transparent; + color: #aaa; +} + +table.highlighttable { + display: block; +} + +table.highlighttable tbody { + display: block; +} + +table.highlighttable tr { + display: flex; +} + +table.highlighttable td { + margin: 0; + padding: 0; +} + +table.highlighttable td.linenos { + padding-right: 0.5em; +} + +table.highlighttable td.code { + flex: 1; + overflow: hidden; +} + +.highlight .hll { + display: block; +} + +div.highlight pre, +table.highlighttable pre { + margin: 0; +} + +div.code-block-caption + div { + margin-top: 0; +} + +div.code-block-caption { + margin-top: 1em; + padding: 2px 5px; + font-size: small; +} + +div.code-block-caption code { + background-color: transparent; +} + +table.highlighttable td.linenos, +span.linenos, +div.highlight span.gp { /* gp: Generic.Prompt */ + user-select: none; + -webkit-user-select: text; /* Safari fallback only */ + -webkit-user-select: none; /* Chrome/Safari */ + -moz-user-select: none; /* Firefox */ + -ms-user-select: none; /* IE10+ */ +} + +div.code-block-caption span.caption-number { + padding: 0.1em 0.3em; + font-style: italic; +} + +div.code-block-caption span.caption-text { +} + +div.literal-block-wrapper { + margin: 1em 0; +} + +code.xref, a code { + background-color: transparent; + font-weight: bold; +} + +h1 code, h2 code, h3 code, h4 code, h5 code, h6 code { + background-color: transparent; +} + +.viewcode-link { + float: right; +} + +.viewcode-back { + float: right; + font-family: sans-serif; +} + +div.viewcode-block:target { + margin: -1px -10px; + padding: 0 10px; +} + +/* -- math display ---------------------------------------------------------- */ + +img.math { + vertical-align: middle; +} + +div.body div.math p { + text-align: center; +} + +span.eqno { + float: right; +} + +span.eqno a.headerlink { + position: absolute; + z-index: 1; +} + +div.math:hover a.headerlink { + visibility: visible; +} + +/* -- printout stylesheet --------------------------------------------------- */ + +@media print { + div.document, + div.documentwrapper, + div.bodywrapper { + margin: 0 !important; + width: 100%; + } + + div.sphinxsidebar, + div.related, + div.footer, + #top-link { + display: none; + } +} \ No newline at end of file diff --git a/_static/check-solid.svg b/_static/check-solid.svg new file mode 100644 index 0000000..92fad4b --- /dev/null +++ b/_static/check-solid.svg @@ -0,0 +1,4 @@ + + + + diff --git a/_static/clipboard.min.js b/_static/clipboard.min.js new file mode 100644 index 0000000..54b3c46 --- /dev/null +++ b/_static/clipboard.min.js @@ -0,0 +1,7 @@ +/*! + * clipboard.js v2.0.8 + * https://clipboardjs.com/ + * + * Licensed MIT © Zeno Rocha + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ClipboardJS=e():t.ClipboardJS=e()}(this,function(){return n={686:function(t,e,n){"use strict";n.d(e,{default:function(){return o}});var e=n(279),i=n.n(e),e=n(370),u=n.n(e),e=n(817),c=n.n(e);function a(t){try{return document.execCommand(t)}catch(t){return}}var f=function(t){t=c()(t);return a("cut"),t};var l=function(t){var e,n,o,r=1 + + + + diff --git a/_static/copybutton.css b/_static/copybutton.css new file mode 100644 index 0000000..f1916ec --- /dev/null +++ b/_static/copybutton.css @@ -0,0 +1,94 @@ +/* Copy buttons */ +button.copybtn { + position: absolute; + display: flex; + top: .3em; + right: .3em; + width: 1.7em; + height: 1.7em; + opacity: 0; + transition: opacity 0.3s, border .3s, background-color .3s; + user-select: none; + padding: 0; + border: none; + outline: none; + border-radius: 0.4em; + /* The colors that GitHub uses */ + border: #1b1f2426 1px solid; + background-color: #f6f8fa; + color: #57606a; +} + +button.copybtn.success { + border-color: #22863a; + color: #22863a; +} + +button.copybtn svg { + stroke: currentColor; + width: 1.5em; + height: 1.5em; + padding: 0.1em; +} + +div.highlight { + position: relative; +} + +/* Show the copybutton */ +.highlight:hover button.copybtn, button.copybtn.success { + opacity: 1; +} + +.highlight button.copybtn:hover { + background-color: rgb(235, 235, 235); +} + +.highlight button.copybtn:active { + background-color: rgb(187, 187, 187); +} + +/** + * A minimal CSS-only tooltip copied from: + * https://codepen.io/mildrenben/pen/rVBrpK + * + * To use, write HTML like the following: + * + *

Short

+ */ + .o-tooltip--left { + position: relative; + } + + .o-tooltip--left:after { + opacity: 0; + visibility: hidden; + position: absolute; + content: attr(data-tooltip); + padding: .2em; + font-size: .8em; + left: -.2em; + background: grey; + color: white; + white-space: nowrap; + z-index: 2; + border-radius: 2px; + transform: translateX(-102%) translateY(0); + transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); +} + +.o-tooltip--left:hover:after { + display: block; + opacity: 1; + visibility: visible; + transform: translateX(-100%) translateY(0); + transition: opacity 0.2s cubic-bezier(0.64, 0.09, 0.08, 1), transform 0.2s cubic-bezier(0.64, 0.09, 0.08, 1); + transition-delay: .5s; +} + +/* By default the copy button shouldn't show up when printing a page */ +@media print { + button.copybtn { + display: none; + } +} diff --git a/_static/copybutton.js b/_static/copybutton.js new file mode 100644 index 0000000..2ea7ff3 --- /dev/null +++ b/_static/copybutton.js @@ -0,0 +1,248 @@ +// Localization support +const messages = { + 'en': { + 'copy': 'Copy', + 'copy_to_clipboard': 'Copy to clipboard', + 'copy_success': 'Copied!', + 'copy_failure': 'Failed to copy', + }, + 'es' : { + 'copy': 'Copiar', + 'copy_to_clipboard': 'Copiar al portapapeles', + 'copy_success': '¡Copiado!', + 'copy_failure': 'Error al copiar', + }, + 'de' : { + 'copy': 'Kopieren', + 'copy_to_clipboard': 'In die Zwischenablage kopieren', + 'copy_success': 'Kopiert!', + 'copy_failure': 'Fehler beim Kopieren', + }, + 'fr' : { + 'copy': 'Copier', + 'copy_to_clipboard': 'Copier dans le presse-papier', + 'copy_success': 'Copié !', + 'copy_failure': 'Échec de la copie', + }, + 'ru': { + 'copy': 'Скопировать', + 'copy_to_clipboard': 'Скопировать в буфер', + 'copy_success': 'Скопировано!', + 'copy_failure': 'Не удалось скопировать', + }, + 'zh-CN': { + 'copy': '复制', + 'copy_to_clipboard': '复制到剪贴板', + 'copy_success': '复制成功!', + 'copy_failure': '复制失败', + }, + 'it' : { + 'copy': 'Copiare', + 'copy_to_clipboard': 'Copiato negli appunti', + 'copy_success': 'Copiato!', + 'copy_failure': 'Errore durante la copia', + } +} + +let locale = 'en' +if( document.documentElement.lang !== undefined + && messages[document.documentElement.lang] !== undefined ) { + locale = document.documentElement.lang +} + +let doc_url_root = DOCUMENTATION_OPTIONS.URL_ROOT; +if (doc_url_root == '#') { + doc_url_root = ''; +} + +/** + * SVG files for our copy buttons + */ +let iconCheck = ` + ${messages[locale]['copy_success']} + + +` + +// If the user specified their own SVG use that, otherwise use the default +let iconCopy = ``; +if (!iconCopy) { + iconCopy = ` + ${messages[locale]['copy_to_clipboard']} + + + +` +} + +/** + * Set up copy/paste for code blocks + */ + +const runWhenDOMLoaded = cb => { + if (document.readyState != 'loading') { + cb() + } else if (document.addEventListener) { + document.addEventListener('DOMContentLoaded', cb) + } else { + document.attachEvent('onreadystatechange', function() { + if (document.readyState == 'complete') cb() + }) + } +} + +const codeCellId = index => `codecell${index}` + +// Clears selected text since ClipboardJS will select the text when copying +const clearSelection = () => { + if (window.getSelection) { + window.getSelection().removeAllRanges() + } else if (document.selection) { + document.selection.empty() + } +} + +// Changes tooltip text for a moment, then changes it back +// We want the timeout of our `success` class to be a bit shorter than the +// tooltip and icon change, so that we can hide the icon before changing back. +var timeoutIcon = 2000; +var timeoutSuccessClass = 1500; + +const temporarilyChangeTooltip = (el, oldText, newText) => { + el.setAttribute('data-tooltip', newText) + el.classList.add('success') + // Remove success a little bit sooner than we change the tooltip + // So that we can use CSS to hide the copybutton first + setTimeout(() => el.classList.remove('success'), timeoutSuccessClass) + setTimeout(() => el.setAttribute('data-tooltip', oldText), timeoutIcon) +} + +// Changes the copy button icon for two seconds, then changes it back +const temporarilyChangeIcon = (el) => { + el.innerHTML = iconCheck; + setTimeout(() => {el.innerHTML = iconCopy}, timeoutIcon) +} + +const addCopyButtonToCodeCells = () => { + // If ClipboardJS hasn't loaded, wait a bit and try again. This + // happens because we load ClipboardJS asynchronously. + if (window.ClipboardJS === undefined) { + setTimeout(addCopyButtonToCodeCells, 250) + return + } + + // Add copybuttons to all of our code cells + const COPYBUTTON_SELECTOR = 'div.highlight pre'; + const codeCells = document.querySelectorAll(COPYBUTTON_SELECTOR) + codeCells.forEach((codeCell, index) => { + const id = codeCellId(index) + codeCell.setAttribute('id', id) + + const clipboardButton = id => + `` + codeCell.insertAdjacentHTML('afterend', clipboardButton(id)) + }) + +function escapeRegExp(string) { + return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string +} + +/** + * Removes excluded text from a Node. + * + * @param {Node} target Node to filter. + * @param {string} exclude CSS selector of nodes to exclude. + * @returns {DOMString} Text from `target` with text removed. + */ +function filterText(target, exclude) { + const clone = target.cloneNode(true); // clone as to not modify the live DOM + if (exclude) { + // remove excluded nodes + clone.querySelectorAll(exclude).forEach(node => node.remove()); + } + return clone.innerText; +} + +// Callback when a copy button is clicked. Will be passed the node that was clicked +// should then grab the text and replace pieces of text that shouldn't be used in output +function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") { + var regexp; + var match; + + // Do we check for line continuation characters and "HERE-documents"? + var useLineCont = !!lineContinuationChar + var useHereDoc = !!hereDocDelim + + // create regexp to capture prompt and remaining line + if (isRegexp) { + regexp = new RegExp('^(' + copybuttonPromptText + ')(.*)') + } else { + regexp = new RegExp('^(' + escapeRegExp(copybuttonPromptText) + ')(.*)') + } + + const outputLines = []; + var promptFound = false; + var gotLineCont = false; + var gotHereDoc = false; + const lineGotPrompt = []; + for (const line of textContent.split('\n')) { + match = line.match(regexp) + if (match || gotLineCont || gotHereDoc) { + promptFound = regexp.test(line) + lineGotPrompt.push(promptFound) + if (removePrompts && promptFound) { + outputLines.push(match[2]) + } else { + outputLines.push(line) + } + gotLineCont = line.endsWith(lineContinuationChar) & useLineCont + if (line.includes(hereDocDelim) & useHereDoc) + gotHereDoc = !gotHereDoc + } else if (!onlyCopyPromptLines) { + outputLines.push(line) + } else if (copyEmptyLines && line.trim() === '') { + outputLines.push(line) + } + } + + // If no lines with the prompt were found then just use original lines + if (lineGotPrompt.some(v => v === true)) { + textContent = outputLines.join('\n'); + } + + // Remove a trailing newline to avoid auto-running when pasting + if (textContent.endsWith("\n")) { + textContent = textContent.slice(0, -1) + } + return textContent +} + + +var copyTargetText = (trigger) => { + var target = document.querySelector(trigger.attributes['data-clipboard-target'].value); + + // get filtered text + let exclude = '.linenos'; + + let text = filterText(target, exclude); + return formatCopyText(text, '', false, true, true, true, '', '') +} + + // Initialize with a callback so we can modify the text before copy + const clipboard = new ClipboardJS('.copybtn', {text: copyTargetText}) + + // Update UI with error/success messages + clipboard.on('success', event => { + clearSelection() + temporarilyChangeTooltip(event.trigger, messages[locale]['copy'], messages[locale]['copy_success']) + temporarilyChangeIcon(event.trigger) + }) + + clipboard.on('error', event => { + temporarilyChangeTooltip(event.trigger, messages[locale]['copy'], messages[locale]['copy_failure']) + }) +} + +runWhenDOMLoaded(addCopyButtonToCodeCells) \ No newline at end of file diff --git a/_static/copybutton_funcs.js b/_static/copybutton_funcs.js new file mode 100644 index 0000000..dbe1aaa --- /dev/null +++ b/_static/copybutton_funcs.js @@ -0,0 +1,73 @@ +function escapeRegExp(string) { + return string.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'); // $& means the whole matched string +} + +/** + * Removes excluded text from a Node. + * + * @param {Node} target Node to filter. + * @param {string} exclude CSS selector of nodes to exclude. + * @returns {DOMString} Text from `target` with text removed. + */ +export function filterText(target, exclude) { + const clone = target.cloneNode(true); // clone as to not modify the live DOM + if (exclude) { + // remove excluded nodes + clone.querySelectorAll(exclude).forEach(node => node.remove()); + } + return clone.innerText; +} + +// Callback when a copy button is clicked. Will be passed the node that was clicked +// should then grab the text and replace pieces of text that shouldn't be used in output +export function formatCopyText(textContent, copybuttonPromptText, isRegexp = false, onlyCopyPromptLines = true, removePrompts = true, copyEmptyLines = true, lineContinuationChar = "", hereDocDelim = "") { + var regexp; + var match; + + // Do we check for line continuation characters and "HERE-documents"? + var useLineCont = !!lineContinuationChar + var useHereDoc = !!hereDocDelim + + // create regexp to capture prompt and remaining line + if (isRegexp) { + regexp = new RegExp('^(' + copybuttonPromptText + ')(.*)') + } else { + regexp = new RegExp('^(' + escapeRegExp(copybuttonPromptText) + ')(.*)') + } + + const outputLines = []; + var promptFound = false; + var gotLineCont = false; + var gotHereDoc = false; + const lineGotPrompt = []; + for (const line of textContent.split('\n')) { + match = line.match(regexp) + if (match || gotLineCont || gotHereDoc) { + promptFound = regexp.test(line) + lineGotPrompt.push(promptFound) + if (removePrompts && promptFound) { + outputLines.push(match[2]) + } else { + outputLines.push(line) + } + gotLineCont = line.endsWith(lineContinuationChar) & useLineCont + if (line.includes(hereDocDelim) & useHereDoc) + gotHereDoc = !gotHereDoc + } else if (!onlyCopyPromptLines) { + outputLines.push(line) + } else if (copyEmptyLines && line.trim() === '') { + outputLines.push(line) + } + } + + // If no lines with the prompt were found then just use original lines + if (lineGotPrompt.some(v => v === true)) { + textContent = outputLines.join('\n'); + } + + // Remove a trailing newline to avoid auto-running when pasting + if (textContent.endsWith("\n")) { + textContent = textContent.slice(0, -1) + } + return textContent +} diff --git a/_static/doctools.js b/_static/doctools.js new file mode 100644 index 0000000..d06a71d --- /dev/null +++ b/_static/doctools.js @@ -0,0 +1,156 @@ +/* + * doctools.js + * ~~~~~~~~~~~ + * + * Base JavaScript utilities for all Sphinx HTML documentation. + * + * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ +"use strict"; + +const BLACKLISTED_KEY_CONTROL_ELEMENTS = new Set([ + "TEXTAREA", + "INPUT", + "SELECT", + "BUTTON", +]); + +const _ready = (callback) => { + if (document.readyState !== "loading") { + callback(); + } else { + document.addEventListener("DOMContentLoaded", callback); + } +}; + +/** + * Small JavaScript module for the documentation. + */ +const Documentation = { + init: () => { + Documentation.initDomainIndexTable(); + Documentation.initOnKeyListeners(); + }, + + /** + * i18n support + */ + TRANSLATIONS: {}, + PLURAL_EXPR: (n) => (n === 1 ? 0 : 1), + LOCALE: "unknown", + + // gettext and ngettext don't access this so that the functions + // can safely bound to a different name (_ = Documentation.gettext) + gettext: (string) => { + const translated = Documentation.TRANSLATIONS[string]; + switch (typeof translated) { + case "undefined": + return string; // no translation + case "string": + return translated; // translation exists + default: + return translated[0]; // (singular, plural) translation tuple exists + } + }, + + ngettext: (singular, plural, n) => { + const translated = Documentation.TRANSLATIONS[singular]; + if (typeof translated !== "undefined") + return translated[Documentation.PLURAL_EXPR(n)]; + return n === 1 ? singular : plural; + }, + + addTranslations: (catalog) => { + Object.assign(Documentation.TRANSLATIONS, catalog.messages); + Documentation.PLURAL_EXPR = new Function( + "n", + `return (${catalog.plural_expr})` + ); + Documentation.LOCALE = catalog.locale; + }, + + /** + * helper function to focus on search bar + */ + focusSearchBar: () => { + document.querySelectorAll("input[name=q]")[0]?.focus(); + }, + + /** + * Initialise the domain index toggle buttons + */ + initDomainIndexTable: () => { + const toggler = (el) => { + const idNumber = el.id.substr(7); + const toggledRows = document.querySelectorAll(`tr.cg-${idNumber}`); + if (el.src.substr(-9) === "minus.png") { + el.src = `${el.src.substr(0, el.src.length - 9)}plus.png`; + toggledRows.forEach((el) => (el.style.display = "none")); + } else { + el.src = `${el.src.substr(0, el.src.length - 8)}minus.png`; + toggledRows.forEach((el) => (el.style.display = "")); + } + }; + + const togglerElements = document.querySelectorAll("img.toggler"); + togglerElements.forEach((el) => + el.addEventListener("click", (event) => toggler(event.currentTarget)) + ); + togglerElements.forEach((el) => (el.style.display = "")); + if (DOCUMENTATION_OPTIONS.COLLAPSE_INDEX) togglerElements.forEach(toggler); + }, + + initOnKeyListeners: () => { + // only install a listener if it is really needed + if ( + !DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS && + !DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS + ) + return; + + document.addEventListener("keydown", (event) => { + // bail for input elements + if (BLACKLISTED_KEY_CONTROL_ELEMENTS.has(document.activeElement.tagName)) return; + // bail with special keys + if (event.altKey || event.ctrlKey || event.metaKey) return; + + if (!event.shiftKey) { + switch (event.key) { + case "ArrowLeft": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const prevLink = document.querySelector('link[rel="prev"]'); + if (prevLink && prevLink.href) { + window.location.href = prevLink.href; + event.preventDefault(); + } + break; + case "ArrowRight": + if (!DOCUMENTATION_OPTIONS.NAVIGATION_WITH_KEYS) break; + + const nextLink = document.querySelector('link[rel="next"]'); + if (nextLink && nextLink.href) { + window.location.href = nextLink.href; + event.preventDefault(); + } + break; + } + } + + // some keyboard layouts may need Shift to get / + switch (event.key) { + case "/": + if (!DOCUMENTATION_OPTIONS.ENABLE_SEARCH_SHORTCUTS) break; + Documentation.focusSearchBar(); + event.preventDefault(); + } + }); + }, +}; + +// quick alias for translations +const _ = Documentation.gettext; + +_ready(Documentation.init); diff --git a/_static/documentation_options.js b/_static/documentation_options.js new file mode 100644 index 0000000..d371afe --- /dev/null +++ b/_static/documentation_options.js @@ -0,0 +1,14 @@ +var DOCUMENTATION_OPTIONS = { + URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'), + VERSION: '1.0.0', + LANGUAGE: 'en', + COLLAPSE_INDEX: false, + BUILDER: 'html', + FILE_SUFFIX: '.html', + LINK_SUFFIX: '.html', + HAS_SOURCE: true, + SOURCELINK_SUFFIX: '', + NAVIGATION_WITH_KEYS: false, + SHOW_SEARCH_SUMMARY: true, + ENABLE_SEARCH_SHORTCUTS: true, +}; \ No newline at end of file diff --git a/_static/file.png b/_static/file.png new file mode 100644 index 0000000..a858a41 Binary files /dev/null and b/_static/file.png differ diff --git a/_static/images/logo_binder.svg b/_static/images/logo_binder.svg new file mode 100644 index 0000000..45fecf7 --- /dev/null +++ b/_static/images/logo_binder.svg @@ -0,0 +1,19 @@ + + + + +logo + + + + + + + + diff --git a/_static/images/logo_colab.png b/_static/images/logo_colab.png new file mode 100644 index 0000000..b7560ec Binary files /dev/null and b/_static/images/logo_colab.png differ diff --git a/_static/images/logo_deepnote.svg b/_static/images/logo_deepnote.svg new file mode 100644 index 0000000..fa77ebf --- /dev/null +++ b/_static/images/logo_deepnote.svg @@ -0,0 +1 @@ + diff --git a/_static/images/logo_jupyterhub.svg b/_static/images/logo_jupyterhub.svg new file mode 100644 index 0000000..60cfe9f --- /dev/null +++ b/_static/images/logo_jupyterhub.svg @@ -0,0 +1 @@ +logo_jupyterhubHub diff --git a/_static/language_data.js b/_static/language_data.js new file mode 100644 index 0000000..250f566 --- /dev/null +++ b/_static/language_data.js @@ -0,0 +1,199 @@ +/* + * language_data.js + * ~~~~~~~~~~~~~~~~ + * + * This script contains the language-specific data used by searchtools.js, + * namely the list of stopwords, stemmer, scorer and splitter. + * + * :copyright: Copyright 2007-2023 by the Sphinx team, see AUTHORS. + * :license: BSD, see LICENSE for details. + * + */ + +var stopwords = ["a", "and", "are", "as", "at", "be", "but", "by", "for", "if", "in", "into", "is", "it", "near", "no", "not", "of", "on", "or", "such", "that", "the", "their", "then", "there", "these", "they", "this", "to", "was", "will", "with"]; + + +/* Non-minified version is copied as a separate JS file, is available */ + +/** + * Porter Stemmer + */ +var Stemmer = function() { + + var step2list = { + ational: 'ate', + tional: 'tion', + enci: 'ence', + anci: 'ance', + izer: 'ize', + bli: 'ble', + alli: 'al', + entli: 'ent', + eli: 'e', + ousli: 'ous', + ization: 'ize', + ation: 'ate', + ator: 'ate', + alism: 'al', + iveness: 'ive', + fulness: 'ful', + ousness: 'ous', + aliti: 'al', + iviti: 'ive', + biliti: 'ble', + logi: 'log' + }; + + var step3list = { + icate: 'ic', + ative: '', + alize: 'al', + iciti: 'ic', + ical: 'ic', + ful: '', + ness: '' + }; + + var c = "[^aeiou]"; // consonant + var v = "[aeiouy]"; // vowel + var C = c + "[^aeiouy]*"; // consonant sequence + var V = v + "[aeiou]*"; // vowel sequence + + var mgr0 = "^(" + C + ")?" + V + C; // [C]VC... is m>0 + var meq1 = "^(" + C + ")?" + V + C + "(" + V + ")?$"; // [C]VC[V] is m=1 + var mgr1 = "^(" + C + ")?" + V + C + V + C; // [C]VCVC... is m>1 + var s_v = "^(" + C + ")?" + v; // vowel in stem + + this.stemWord = function (w) { + var stem; + var suffix; + var firstch; + var origword = w; + + if (w.length < 3) + return w; + + var re; + var re2; + var re3; + var re4; + + firstch = w.substr(0,1); + if (firstch == "y") + w = firstch.toUpperCase() + w.substr(1); + + // Step 1a + re = /^(.+?)(ss|i)es$/; + re2 = /^(.+?)([^s])s$/; + + if (re.test(w)) + w = w.replace(re,"$1$2"); + else if (re2.test(w)) + w = w.replace(re2,"$1$2"); + + // Step 1b + re = /^(.+?)eed$/; + re2 = /^(.+?)(ed|ing)$/; + if (re.test(w)) { + var fp = re.exec(w); + re = new RegExp(mgr0); + if (re.test(fp[1])) { + re = /.$/; + w = w.replace(re,""); + } + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1]; + re2 = new RegExp(s_v); + if (re2.test(stem)) { + w = stem; + re2 = /(at|bl|iz)$/; + re3 = new RegExp("([^aeiouylsz])\\1$"); + re4 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re2.test(w)) + w = w + "e"; + else if (re3.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + else if (re4.test(w)) + w = w + "e"; + } + } + + // Step 1c + re = /^(.+?)y$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(s_v); + if (re.test(stem)) + w = stem + "i"; + } + + // Step 2 + re = /^(.+?)(ational|tional|enci|anci|izer|bli|alli|entli|eli|ousli|ization|ation|ator|alism|iveness|fulness|ousness|aliti|iviti|biliti|logi)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step2list[suffix]; + } + + // Step 3 + re = /^(.+?)(icate|ative|alize|iciti|ical|ful|ness)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + suffix = fp[2]; + re = new RegExp(mgr0); + if (re.test(stem)) + w = stem + step3list[suffix]; + } + + // Step 4 + re = /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/; + re2 = /^(.+?)(s|t)(ion)$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + if (re.test(stem)) + w = stem; + } + else if (re2.test(w)) { + var fp = re2.exec(w); + stem = fp[1] + fp[2]; + re2 = new RegExp(mgr1); + if (re2.test(stem)) + w = stem; + } + + // Step 5 + re = /^(.+?)e$/; + if (re.test(w)) { + var fp = re.exec(w); + stem = fp[1]; + re = new RegExp(mgr1); + re2 = new RegExp(meq1); + re3 = new RegExp("^" + C + v + "[^aeiouwxy]$"); + if (re.test(stem) || (re2.test(stem) && !(re3.test(stem)))) + w = stem; + } + re = /ll$/; + re2 = new RegExp(mgr1); + if (re.test(w) && re2.test(w)) { + re = /.$/; + w = w.replace(re,""); + } + + // and turn initial Y back to y + if (firstch == "y") + w = firstch.toLowerCase() + w.substr(1); + return w; + } +} + diff --git a/_static/locales/ar/LC_MESSAGES/booktheme.mo b/_static/locales/ar/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..15541a6 Binary files /dev/null and b/_static/locales/ar/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ar/LC_MESSAGES/booktheme.po b/_static/locales/ar/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..2e8d682 --- /dev/null +++ b/_static/locales/ar/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ar\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "أقترح تحرير" + +msgid "Last updated on" +msgstr "آخر تحديث في" + +msgid "Edit this page" +msgstr "قم بتحرير هذه الصفحة" + +msgid "Launch" +msgstr "إطلاق" + +msgid "Print to PDF" +msgstr "طباعة إلى PDF" + +msgid "open issue" +msgstr "قضية مفتوحة" + +msgid "Download notebook file" +msgstr "تنزيل ملف دفتر الملاحظات" + +msgid "Toggle navigation" +msgstr "تبديل التنقل" + +msgid "Source repository" +msgstr "مستودع المصدر" + +msgid "By the" +msgstr "بواسطة" + +msgid "next page" +msgstr "الصفحة التالية" + +msgid "repository" +msgstr "مخزن" + +msgid "Sphinx Book Theme" +msgstr "موضوع كتاب أبو الهول" + +msgid "Download source file" +msgstr "تنزيل ملف المصدر" + +msgid "Contents" +msgstr "محتويات" + +msgid "By" +msgstr "بواسطة" + +msgid "Copyright" +msgstr "حقوق النشر" + +msgid "Fullscreen mode" +msgstr "وضع ملء الشاشة" + +msgid "Open an issue" +msgstr "افتح قضية" + +msgid "previous page" +msgstr "الصفحة السابقة" + +msgid "Download this page" +msgstr "قم بتنزيل هذه الصفحة" + +msgid "Theme by the" +msgstr "موضوع بواسطة" diff --git a/_static/locales/bg/LC_MESSAGES/booktheme.mo b/_static/locales/bg/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..da95120 Binary files /dev/null and b/_static/locales/bg/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/bg/LC_MESSAGES/booktheme.po b/_static/locales/bg/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..56ef0eb --- /dev/null +++ b/_static/locales/bg/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "предложи редактиране" + +msgid "Last updated on" +msgstr "Последна актуализация на" + +msgid "Edit this page" +msgstr "Редактирайте тази страница" + +msgid "Launch" +msgstr "Стартиране" + +msgid "Print to PDF" +msgstr "Печат в PDF" + +msgid "open issue" +msgstr "отворен брой" + +msgid "Download notebook file" +msgstr "Изтеглете файла на бележника" + +msgid "Toggle navigation" +msgstr "Превключване на навигацията" + +msgid "Source repository" +msgstr "Хранилище на източника" + +msgid "By the" +msgstr "По" + +msgid "next page" +msgstr "Следваща страница" + +msgid "repository" +msgstr "хранилище" + +msgid "Sphinx Book Theme" +msgstr "Тема на книгата Sphinx" + +msgid "Download source file" +msgstr "Изтеглете изходния файл" + +msgid "Contents" +msgstr "Съдържание" + +msgid "By" +msgstr "От" + +msgid "Copyright" +msgstr "Авторско право" + +msgid "Fullscreen mode" +msgstr "Режим на цял екран" + +msgid "Open an issue" +msgstr "Отворете проблем" + +msgid "previous page" +msgstr "предишна страница" + +msgid "Download this page" +msgstr "Изтеглете тази страница" + +msgid "Theme by the" +msgstr "Тема от" diff --git a/_static/locales/bn/LC_MESSAGES/booktheme.mo b/_static/locales/bn/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..6b96639 Binary files /dev/null and b/_static/locales/bn/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/bn/LC_MESSAGES/booktheme.po b/_static/locales/bn/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..243ca31 --- /dev/null +++ b/_static/locales/bn/LC_MESSAGES/booktheme.po @@ -0,0 +1,63 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "Last updated on" +msgstr "সর্বশেষ আপডেট" + +msgid "Edit this page" +msgstr "এই পৃষ্ঠাটি সম্পাদনা করুন" + +msgid "Launch" +msgstr "শুরু করা" + +msgid "Print to PDF" +msgstr "পিডিএফ প্রিন্ট করুন" + +msgid "open issue" +msgstr "খোলা সমস্যা" + +msgid "Download notebook file" +msgstr "নোটবুক ফাইল ডাউনলোড করুন" + +msgid "Toggle navigation" +msgstr "নেভিগেশন টগল করুন" + +msgid "Source repository" +msgstr "উত্স সংগ্রহস্থল" + +msgid "By the" +msgstr "দ্বারা" + +msgid "next page" +msgstr "পরবর্তী পৃষ্ঠা" + +msgid "Sphinx Book Theme" +msgstr "স্পিনিক্স বুক থিম" + +msgid "Download source file" +msgstr "উত্স ফাইল ডাউনলোড করুন" + +msgid "By" +msgstr "দ্বারা" + +msgid "Copyright" +msgstr "কপিরাইট" + +msgid "Open an issue" +msgstr "একটি সমস্যা খুলুন" + +msgid "previous page" +msgstr "আগের পৃষ্ঠা" + +msgid "Download this page" +msgstr "এই পৃষ্ঠাটি ডাউনলোড করুন" + +msgid "Theme by the" +msgstr "থিম দ্বারা" diff --git a/_static/locales/ca/LC_MESSAGES/booktheme.mo b/_static/locales/ca/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..a4dd30e Binary files /dev/null and b/_static/locales/ca/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ca/LC_MESSAGES/booktheme.po b/_static/locales/ca/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..b27a13d --- /dev/null +++ b/_static/locales/ca/LC_MESSAGES/booktheme.po @@ -0,0 +1,66 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "suggerir edició" + +msgid "Last updated on" +msgstr "Darrera actualització el" + +msgid "Edit this page" +msgstr "Editeu aquesta pàgina" + +msgid "Launch" +msgstr "Llançament" + +msgid "Print to PDF" +msgstr "Imprimeix a PDF" + +msgid "open issue" +msgstr "número obert" + +msgid "Download notebook file" +msgstr "Descarregar fitxer de quadern" + +msgid "Toggle navigation" +msgstr "Commuta la navegació" + +msgid "Source repository" +msgstr "Dipòsit de fonts" + +msgid "By the" +msgstr "Per la" + +msgid "next page" +msgstr "pàgina següent" + +msgid "Sphinx Book Theme" +msgstr "Tema del llibre Esfinx" + +msgid "Download source file" +msgstr "Baixeu el fitxer font" + +msgid "By" +msgstr "Per" + +msgid "Copyright" +msgstr "Copyright" + +msgid "Open an issue" +msgstr "Obriu un número" + +msgid "previous page" +msgstr "Pàgina anterior" + +msgid "Download this page" +msgstr "Descarregueu aquesta pàgina" + +msgid "Theme by the" +msgstr "Tema del" diff --git a/_static/locales/cs/LC_MESSAGES/booktheme.mo b/_static/locales/cs/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..c39e01a Binary files /dev/null and b/_static/locales/cs/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/cs/LC_MESSAGES/booktheme.po b/_static/locales/cs/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..3818df9 --- /dev/null +++ b/_static/locales/cs/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: cs\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "navrhnout úpravy" + +msgid "Last updated on" +msgstr "Naposledy aktualizováno" + +msgid "Edit this page" +msgstr "Upravit tuto stránku" + +msgid "Launch" +msgstr "Zahájení" + +msgid "Print to PDF" +msgstr "Tisk do PDF" + +msgid "open issue" +msgstr "otevřené číslo" + +msgid "Download notebook file" +msgstr "Stáhnout soubor poznámkového bloku" + +msgid "Toggle navigation" +msgstr "Přepnout navigaci" + +msgid "Source repository" +msgstr "Zdrojové úložiště" + +msgid "By the" +msgstr "Podle" + +msgid "next page" +msgstr "další strana" + +msgid "repository" +msgstr "úložiště" + +msgid "Sphinx Book Theme" +msgstr "Téma knihy Sfinga" + +msgid "Download source file" +msgstr "Stáhněte si zdrojový soubor" + +msgid "Contents" +msgstr "Obsah" + +msgid "By" +msgstr "Podle" + +msgid "Copyright" +msgstr "autorská práva" + +msgid "Fullscreen mode" +msgstr "Režim celé obrazovky" + +msgid "Open an issue" +msgstr "Otevřete problém" + +msgid "previous page" +msgstr "předchozí stránka" + +msgid "Download this page" +msgstr "Stáhněte si tuto stránku" + +msgid "Theme by the" +msgstr "Téma od" diff --git a/_static/locales/da/LC_MESSAGES/booktheme.mo b/_static/locales/da/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..f43157d Binary files /dev/null and b/_static/locales/da/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/da/LC_MESSAGES/booktheme.po b/_static/locales/da/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..7f20a3b --- /dev/null +++ b/_static/locales/da/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "foreslå redigering" + +msgid "Last updated on" +msgstr "Sidst opdateret den" + +msgid "Edit this page" +msgstr "Rediger denne side" + +msgid "Launch" +msgstr "Start" + +msgid "Print to PDF" +msgstr "Udskriv til PDF" + +msgid "open issue" +msgstr "åbent nummer" + +msgid "Download notebook file" +msgstr "Download notesbog-fil" + +msgid "Toggle navigation" +msgstr "Skift navigation" + +msgid "Source repository" +msgstr "Kildelager" + +msgid "By the" +msgstr "Ved" + +msgid "next page" +msgstr "Næste side" + +msgid "repository" +msgstr "lager" + +msgid "Sphinx Book Theme" +msgstr "Sphinx bogtema" + +msgid "Download source file" +msgstr "Download kildefil" + +msgid "Contents" +msgstr "Indhold" + +msgid "By" +msgstr "Ved" + +msgid "Copyright" +msgstr "ophavsret" + +msgid "Fullscreen mode" +msgstr "Fuldskærmstilstand" + +msgid "Open an issue" +msgstr "Åbn et problem" + +msgid "previous page" +msgstr "forrige side" + +msgid "Download this page" +msgstr "Download denne side" + +msgid "Theme by the" +msgstr "Tema af" diff --git a/_static/locales/de/LC_MESSAGES/booktheme.mo b/_static/locales/de/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..648b565 Binary files /dev/null and b/_static/locales/de/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/de/LC_MESSAGES/booktheme.po b/_static/locales/de/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..c0027d3 --- /dev/null +++ b/_static/locales/de/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "vorschlagen zu bearbeiten" + +msgid "Last updated on" +msgstr "Zuletzt aktualisiert am" + +msgid "Edit this page" +msgstr "Bearbeite diese Seite" + +msgid "Launch" +msgstr "Starten" + +msgid "Print to PDF" +msgstr "In PDF drucken" + +msgid "open issue" +msgstr "offenes Thema" + +msgid "Download notebook file" +msgstr "Notebook-Datei herunterladen" + +msgid "Toggle navigation" +msgstr "Navigation umschalten" + +msgid "Source repository" +msgstr "Quell-Repository" + +msgid "By the" +msgstr "Bis zum" + +msgid "next page" +msgstr "Nächste Seite" + +msgid "repository" +msgstr "Repository" + +msgid "Sphinx Book Theme" +msgstr "Sphinx-Buch-Thema" + +msgid "Download source file" +msgstr "Quelldatei herunterladen" + +msgid "Contents" +msgstr "Inhalt" + +msgid "By" +msgstr "Durch" + +msgid "Copyright" +msgstr "Urheberrechte ©" + +msgid "Fullscreen mode" +msgstr "Vollbildmodus" + +msgid "Open an issue" +msgstr "Öffnen Sie ein Problem" + +msgid "previous page" +msgstr "vorherige Seite" + +msgid "Download this page" +msgstr "Laden Sie diese Seite herunter" + +msgid "Theme by the" +msgstr "Thema von der" diff --git a/_static/locales/el/LC_MESSAGES/booktheme.mo b/_static/locales/el/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..fca6e93 Binary files /dev/null and b/_static/locales/el/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/el/LC_MESSAGES/booktheme.po b/_static/locales/el/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..bdeb327 --- /dev/null +++ b/_static/locales/el/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "προτείνω επεξεργασία" + +msgid "Last updated on" +msgstr "Τελευταία ενημέρωση στις" + +msgid "Edit this page" +msgstr "Επεξεργαστείτε αυτήν τη σελίδα" + +msgid "Launch" +msgstr "Εκτόξευση" + +msgid "Print to PDF" +msgstr "Εκτύπωση σε PDF" + +msgid "open issue" +msgstr "ανοιχτό ζήτημα" + +msgid "Download notebook file" +msgstr "Λήψη αρχείου σημειωματάριου" + +msgid "Toggle navigation" +msgstr "Εναλλαγή πλοήγησης" + +msgid "Source repository" +msgstr "Αποθήκη πηγής" + +msgid "By the" +msgstr "Από το" + +msgid "next page" +msgstr "επόμενη σελίδα" + +msgid "repository" +msgstr "αποθήκη" + +msgid "Sphinx Book Theme" +msgstr "Θέμα βιβλίου Sphinx" + +msgid "Download source file" +msgstr "Λήψη αρχείου προέλευσης" + +msgid "Contents" +msgstr "Περιεχόμενα" + +msgid "By" +msgstr "Με" + +msgid "Copyright" +msgstr "Πνευματική ιδιοκτησία" + +msgid "Fullscreen mode" +msgstr "ΛΕΙΤΟΥΡΓΙΑ ΠΛΗΡΟΥΣ ΟΘΟΝΗΣ" + +msgid "Open an issue" +msgstr "Ανοίξτε ένα ζήτημα" + +msgid "previous page" +msgstr "προηγούμενη σελίδα" + +msgid "Download this page" +msgstr "Λήψη αυτής της σελίδας" + +msgid "Theme by the" +msgstr "Θέμα από το" diff --git a/_static/locales/eo/LC_MESSAGES/booktheme.mo b/_static/locales/eo/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..d1072bb Binary files /dev/null and b/_static/locales/eo/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/eo/LC_MESSAGES/booktheme.po b/_static/locales/eo/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..6749f3a --- /dev/null +++ b/_static/locales/eo/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "sugesti redaktadon" + +msgid "Last updated on" +msgstr "Laste ĝisdatigita la" + +msgid "Edit this page" +msgstr "Redaktu ĉi tiun paĝon" + +msgid "Launch" +msgstr "Lanĉo" + +msgid "Print to PDF" +msgstr "Presi al PDF" + +msgid "open issue" +msgstr "malferma numero" + +msgid "Download notebook file" +msgstr "Elŝutu kajeran dosieron" + +msgid "Toggle navigation" +msgstr "Ŝalti navigadon" + +msgid "Source repository" +msgstr "Fonto-deponejo" + +msgid "By the" +msgstr "Per la" + +msgid "next page" +msgstr "sekva paĝo" + +msgid "repository" +msgstr "deponejo" + +msgid "Sphinx Book Theme" +msgstr "Sfinksa Libro-Temo" + +msgid "Download source file" +msgstr "Elŝutu fontodosieron" + +msgid "Contents" +msgstr "Enhavo" + +msgid "By" +msgstr "De" + +msgid "Copyright" +msgstr "Kopirajto" + +msgid "Fullscreen mode" +msgstr "Plenekrana reĝimo" + +msgid "Open an issue" +msgstr "Malfermu numeron" + +msgid "previous page" +msgstr "antaŭa paĝo" + +msgid "Download this page" +msgstr "Elŝutu ĉi tiun paĝon" + +msgid "Theme by the" +msgstr "Temo de la" diff --git a/_static/locales/es/LC_MESSAGES/booktheme.mo b/_static/locales/es/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..ba2ee4d Binary files /dev/null and b/_static/locales/es/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/es/LC_MESSAGES/booktheme.po b/_static/locales/es/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..71dde37 --- /dev/null +++ b/_static/locales/es/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "sugerir editar" + +msgid "Last updated on" +msgstr "Ultima actualización en" + +msgid "Edit this page" +msgstr "Edita esta página" + +msgid "Launch" +msgstr "Lanzamiento" + +msgid "Print to PDF" +msgstr "Imprimir en PDF" + +msgid "open issue" +msgstr "Tema abierto" + +msgid "Download notebook file" +msgstr "Descargar archivo de cuaderno" + +msgid "Toggle navigation" +msgstr "Navegación de palanca" + +msgid "Source repository" +msgstr "Repositorio de origen" + +msgid "By the" +msgstr "Por el" + +msgid "next page" +msgstr "siguiente página" + +msgid "repository" +msgstr "repositorio" + +msgid "Sphinx Book Theme" +msgstr "Tema del libro de la esfinge" + +msgid "Download source file" +msgstr "Descargar archivo fuente" + +msgid "Contents" +msgstr "Contenido" + +msgid "By" +msgstr "Por" + +msgid "Copyright" +msgstr "Derechos de autor" + +msgid "Fullscreen mode" +msgstr "Modo de pantalla completa" + +msgid "Open an issue" +msgstr "Abrir un problema" + +msgid "previous page" +msgstr "pagina anterior" + +msgid "Download this page" +msgstr "Descarga esta pagina" + +msgid "Theme by the" +msgstr "Tema por el" diff --git a/_static/locales/et/LC_MESSAGES/booktheme.mo b/_static/locales/et/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..983b823 Binary files /dev/null and b/_static/locales/et/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/et/LC_MESSAGES/booktheme.po b/_static/locales/et/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..cdcd07c --- /dev/null +++ b/_static/locales/et/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "soovita muuta" + +msgid "Last updated on" +msgstr "Viimati uuendatud" + +msgid "Edit this page" +msgstr "Muutke seda lehte" + +msgid "Launch" +msgstr "Käivitage" + +msgid "Print to PDF" +msgstr "Prindi PDF-i" + +msgid "open issue" +msgstr "avatud küsimus" + +msgid "Download notebook file" +msgstr "Laadige sülearvuti fail alla" + +msgid "Toggle navigation" +msgstr "Lülita navigeerimine sisse" + +msgid "Source repository" +msgstr "Allikahoidla" + +msgid "By the" +msgstr "Autor" + +msgid "next page" +msgstr "järgmine leht" + +msgid "repository" +msgstr "hoidla" + +msgid "Sphinx Book Theme" +msgstr "Sfinksiraamatu teema" + +msgid "Download source file" +msgstr "Laadige alla lähtefail" + +msgid "Contents" +msgstr "Sisu" + +msgid "By" +msgstr "Kõrval" + +msgid "Copyright" +msgstr "Autoriõigus" + +msgid "Fullscreen mode" +msgstr "Täisekraanirežiim" + +msgid "Open an issue" +msgstr "Avage probleem" + +msgid "previous page" +msgstr "eelmine leht" + +msgid "Download this page" +msgstr "Laadige see leht alla" + +msgid "Theme by the" +msgstr "Teema" diff --git a/_static/locales/fi/LC_MESSAGES/booktheme.mo b/_static/locales/fi/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..d8ac054 Binary files /dev/null and b/_static/locales/fi/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/fi/LC_MESSAGES/booktheme.po b/_static/locales/fi/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..3c3dd08 --- /dev/null +++ b/_static/locales/fi/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "ehdottaa muokkausta" + +msgid "Last updated on" +msgstr "Viimeksi päivitetty" + +msgid "Edit this page" +msgstr "Muokkaa tätä sivua" + +msgid "Launch" +msgstr "Tuoda markkinoille" + +msgid "Print to PDF" +msgstr "Tulosta PDF-tiedostoon" + +msgid "open issue" +msgstr "avoin ongelma" + +msgid "Download notebook file" +msgstr "Lataa muistikirjatiedosto" + +msgid "Toggle navigation" +msgstr "Vaihda navigointia" + +msgid "Source repository" +msgstr "Lähteen arkisto" + +msgid "By the" +msgstr "Mukaan" + +msgid "next page" +msgstr "seuraava sivu" + +msgid "repository" +msgstr "arkisto" + +msgid "Sphinx Book Theme" +msgstr "Sphinx-kirjan teema" + +msgid "Download source file" +msgstr "Lataa lähdetiedosto" + +msgid "Contents" +msgstr "Sisällys" + +msgid "By" +msgstr "Tekijä" + +msgid "Copyright" +msgstr "Tekijänoikeus" + +msgid "Fullscreen mode" +msgstr "Koko näytön tila" + +msgid "Open an issue" +msgstr "Avaa ongelma" + +msgid "previous page" +msgstr "Edellinen sivu" + +msgid "Download this page" +msgstr "Lataa tämä sivu" + +msgid "Theme by the" +msgstr "Teeman tekijä" diff --git a/_static/locales/fr/LC_MESSAGES/booktheme.mo b/_static/locales/fr/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..f663d39 Binary files /dev/null and b/_static/locales/fr/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/fr/LC_MESSAGES/booktheme.po b/_static/locales/fr/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..b57d2fe --- /dev/null +++ b/_static/locales/fr/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "suggestion de modification" + +msgid "Last updated on" +msgstr "Dernière mise à jour le" + +msgid "Edit this page" +msgstr "Modifier cette page" + +msgid "Launch" +msgstr "lancement" + +msgid "Print to PDF" +msgstr "Imprimer au format PDF" + +msgid "open issue" +msgstr "signaler un problème" + +msgid "Download notebook file" +msgstr "Télécharger le fichier notebook" + +msgid "Toggle navigation" +msgstr "Basculer la navigation" + +msgid "Source repository" +msgstr "Dépôt source" + +msgid "By the" +msgstr "Par le" + +msgid "next page" +msgstr "page suivante" + +msgid "repository" +msgstr "dépôt" + +msgid "Sphinx Book Theme" +msgstr "Thème du livre Sphinx" + +msgid "Download source file" +msgstr "Télécharger le fichier source" + +msgid "Contents" +msgstr "Contenu" + +msgid "By" +msgstr "Par" + +msgid "Copyright" +msgstr "droits d'auteur" + +msgid "Fullscreen mode" +msgstr "Mode plein écran" + +msgid "Open an issue" +msgstr "Ouvrez un problème" + +msgid "previous page" +msgstr "page précédente" + +msgid "Download this page" +msgstr "Téléchargez cette page" + +msgid "Theme by the" +msgstr "Thème par le" diff --git a/_static/locales/hr/LC_MESSAGES/booktheme.mo b/_static/locales/hr/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..eca4a1a Binary files /dev/null and b/_static/locales/hr/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/hr/LC_MESSAGES/booktheme.po b/_static/locales/hr/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..4c425e8 --- /dev/null +++ b/_static/locales/hr/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: hr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "predloži uređivanje" + +msgid "Last updated on" +msgstr "Posljednje ažuriranje:" + +msgid "Edit this page" +msgstr "Uredite ovu stranicu" + +msgid "Launch" +msgstr "Pokrenite" + +msgid "Print to PDF" +msgstr "Ispis u PDF" + +msgid "open issue" +msgstr "otvoreno izdanje" + +msgid "Download notebook file" +msgstr "Preuzmi datoteku bilježnice" + +msgid "Toggle navigation" +msgstr "Uključi / isključi navigaciju" + +msgid "Source repository" +msgstr "Izvorno spremište" + +msgid "By the" +msgstr "Od strane" + +msgid "next page" +msgstr "sljedeća stranica" + +msgid "repository" +msgstr "spremište" + +msgid "Sphinx Book Theme" +msgstr "Tema knjige Sphinx" + +msgid "Download source file" +msgstr "Preuzmi izvornu datoteku" + +msgid "Contents" +msgstr "Sadržaj" + +msgid "By" +msgstr "Po" + +msgid "Copyright" +msgstr "Autorska prava" + +msgid "Fullscreen mode" +msgstr "Način preko cijelog zaslona" + +msgid "Open an issue" +msgstr "Otvorite izdanje" + +msgid "previous page" +msgstr "Prethodna stranica" + +msgid "Download this page" +msgstr "Preuzmite ovu stranicu" + +msgid "Theme by the" +msgstr "Tema autora" diff --git a/_static/locales/id/LC_MESSAGES/booktheme.mo b/_static/locales/id/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..d07a06a Binary files /dev/null and b/_static/locales/id/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/id/LC_MESSAGES/booktheme.po b/_static/locales/id/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..5db2ae1 --- /dev/null +++ b/_static/locales/id/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: id\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "menyarankan edit" + +msgid "Last updated on" +msgstr "Terakhir diperbarui saat" + +msgid "Edit this page" +msgstr "Edit halaman ini" + +msgid "Launch" +msgstr "Meluncurkan" + +msgid "Print to PDF" +msgstr "Cetak ke PDF" + +msgid "open issue" +msgstr "masalah terbuka" + +msgid "Download notebook file" +msgstr "Unduh file notebook" + +msgid "Toggle navigation" +msgstr "Alihkan navigasi" + +msgid "Source repository" +msgstr "Repositori sumber" + +msgid "By the" +msgstr "Oleh" + +msgid "next page" +msgstr "halaman selanjutnya" + +msgid "repository" +msgstr "gudang" + +msgid "Sphinx Book Theme" +msgstr "Tema Buku Sphinx" + +msgid "Download source file" +msgstr "Unduh file sumber" + +msgid "Contents" +msgstr "Isi" + +msgid "By" +msgstr "Oleh" + +msgid "Copyright" +msgstr "hak cipta" + +msgid "Fullscreen mode" +msgstr "Mode layar penuh" + +msgid "Open an issue" +msgstr "Buka masalah" + +msgid "previous page" +msgstr "halaman sebelumnya" + +msgid "Download this page" +msgstr "Unduh halaman ini" + +msgid "Theme by the" +msgstr "Tema oleh" diff --git a/_static/locales/it/LC_MESSAGES/booktheme.mo b/_static/locales/it/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..53ba476 Binary files /dev/null and b/_static/locales/it/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/it/LC_MESSAGES/booktheme.po b/_static/locales/it/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..7d54fde --- /dev/null +++ b/_static/locales/it/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "suggerisci modifica" + +msgid "Last updated on" +msgstr "Ultimo aggiornamento il" + +msgid "Edit this page" +msgstr "Modifica questa pagina" + +msgid "Launch" +msgstr "Lanciare" + +msgid "Print to PDF" +msgstr "Stampa in PDF" + +msgid "open issue" +msgstr "questione aperta" + +msgid "Download notebook file" +msgstr "Scarica il file del taccuino" + +msgid "Toggle navigation" +msgstr "Attiva / disattiva la navigazione" + +msgid "Source repository" +msgstr "Repository di origine" + +msgid "By the" +msgstr "Dal" + +msgid "next page" +msgstr "pagina successiva" + +msgid "repository" +msgstr "repository" + +msgid "Sphinx Book Theme" +msgstr "Tema del libro della Sfinge" + +msgid "Download source file" +msgstr "Scarica il file sorgente" + +msgid "Contents" +msgstr "Contenuti" + +msgid "By" +msgstr "Di" + +msgid "Copyright" +msgstr "Diritto d'autore" + +msgid "Fullscreen mode" +msgstr "Modalità schermo intero" + +msgid "Open an issue" +msgstr "Apri un problema" + +msgid "previous page" +msgstr "pagina precedente" + +msgid "Download this page" +msgstr "Scarica questa pagina" + +msgid "Theme by the" +msgstr "Tema di" diff --git a/_static/locales/iw/LC_MESSAGES/booktheme.mo b/_static/locales/iw/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..a45c657 Binary files /dev/null and b/_static/locales/iw/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/iw/LC_MESSAGES/booktheme.po b/_static/locales/iw/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..32b017c --- /dev/null +++ b/_static/locales/iw/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: iw\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "מציע לערוך" + +msgid "Last updated on" +msgstr "עודכן לאחרונה ב" + +msgid "Edit this page" +msgstr "ערוך דף זה" + +msgid "Launch" +msgstr "לְהַשִׁיק" + +msgid "Print to PDF" +msgstr "הדפס לקובץ PDF" + +msgid "open issue" +msgstr "בעיה פתוחה" + +msgid "Download notebook file" +msgstr "הורד קובץ מחברת" + +msgid "Toggle navigation" +msgstr "החלף ניווט" + +msgid "Source repository" +msgstr "מאגר המקורות" + +msgid "By the" +msgstr "דרך" + +msgid "next page" +msgstr "עמוד הבא" + +msgid "repository" +msgstr "מאגר" + +msgid "Sphinx Book Theme" +msgstr "נושא ספר ספינקס" + +msgid "Download source file" +msgstr "הורד את קובץ המקור" + +msgid "Contents" +msgstr "תוכן" + +msgid "By" +msgstr "על ידי" + +msgid "Copyright" +msgstr "זכויות יוצרים" + +msgid "Fullscreen mode" +msgstr "מצב מסך מלא" + +msgid "Open an issue" +msgstr "פתח גיליון" + +msgid "previous page" +msgstr "עמוד קודם" + +msgid "Download this page" +msgstr "הורד דף זה" + +msgid "Theme by the" +msgstr "נושא מאת" diff --git a/_static/locales/ja/LC_MESSAGES/booktheme.mo b/_static/locales/ja/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..1cefd29 Binary files /dev/null and b/_static/locales/ja/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ja/LC_MESSAGES/booktheme.po b/_static/locales/ja/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..16924e1 --- /dev/null +++ b/_static/locales/ja/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ja\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "編集を提案する" + +msgid "Last updated on" +msgstr "最終更新日" + +msgid "Edit this page" +msgstr "このページを編集" + +msgid "Launch" +msgstr "起動" + +msgid "Print to PDF" +msgstr "PDFに印刷" + +msgid "open issue" +msgstr "未解決の問題" + +msgid "Download notebook file" +msgstr "ノートブックファイルをダウンロード" + +msgid "Toggle navigation" +msgstr "ナビゲーションを切り替え" + +msgid "Source repository" +msgstr "ソースリポジトリ" + +msgid "By the" +msgstr "によって" + +msgid "next page" +msgstr "次のページ" + +msgid "repository" +msgstr "リポジトリ" + +msgid "Sphinx Book Theme" +msgstr "スフィンクスの本のテーマ" + +msgid "Download source file" +msgstr "ソースファイルをダウンロード" + +msgid "Contents" +msgstr "目次" + +msgid "By" +msgstr "著者" + +msgid "Copyright" +msgstr "Copyright" + +msgid "Fullscreen mode" +msgstr "全画面モード" + +msgid "Open an issue" +msgstr "問題を報告" + +msgid "previous page" +msgstr "前のページ" + +msgid "Download this page" +msgstr "このページをダウンロード" + +msgid "Theme by the" +msgstr "のテーマ" diff --git a/_static/locales/ko/LC_MESSAGES/booktheme.mo b/_static/locales/ko/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..06c7ec9 Binary files /dev/null and b/_static/locales/ko/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ko/LC_MESSAGES/booktheme.po b/_static/locales/ko/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..69dd18f --- /dev/null +++ b/_static/locales/ko/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ko\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "편집 제안" + +msgid "Last updated on" +msgstr "마지막 업데이트" + +msgid "Edit this page" +msgstr "이 페이지 편집" + +msgid "Launch" +msgstr "시작하다" + +msgid "Print to PDF" +msgstr "PDF로 인쇄" + +msgid "open issue" +msgstr "열린 문제" + +msgid "Download notebook file" +msgstr "노트북 파일 다운로드" + +msgid "Toggle navigation" +msgstr "탐색 전환" + +msgid "Source repository" +msgstr "소스 저장소" + +msgid "By the" +msgstr "에 의해" + +msgid "next page" +msgstr "다음 페이지" + +msgid "repository" +msgstr "저장소" + +msgid "Sphinx Book Theme" +msgstr "스핑크스 도서 테마" + +msgid "Download source file" +msgstr "소스 파일 다운로드" + +msgid "Contents" +msgstr "내용" + +msgid "By" +msgstr "으로" + +msgid "Copyright" +msgstr "저작권" + +msgid "Fullscreen mode" +msgstr "전체 화면으로보기" + +msgid "Open an issue" +msgstr "이슈 열기" + +msgid "previous page" +msgstr "이전 페이지" + +msgid "Download this page" +msgstr "이 페이지 다운로드" + +msgid "Theme by the" +msgstr "테마별" diff --git a/_static/locales/lt/LC_MESSAGES/booktheme.mo b/_static/locales/lt/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..4468ba0 Binary files /dev/null and b/_static/locales/lt/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/lt/LC_MESSAGES/booktheme.po b/_static/locales/lt/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..9f03775 --- /dev/null +++ b/_static/locales/lt/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "pasiūlyti redaguoti" + +msgid "Last updated on" +msgstr "Paskutinį kartą atnaujinta" + +msgid "Edit this page" +msgstr "Redaguoti šį puslapį" + +msgid "Launch" +msgstr "Paleiskite" + +msgid "Print to PDF" +msgstr "Spausdinti į PDF" + +msgid "open issue" +msgstr "atviras klausimas" + +msgid "Download notebook file" +msgstr "Atsisiųsti nešiojamojo kompiuterio failą" + +msgid "Toggle navigation" +msgstr "Perjungti naršymą" + +msgid "Source repository" +msgstr "Šaltinio saugykla" + +msgid "By the" +msgstr "Prie" + +msgid "next page" +msgstr "Kitas puslapis" + +msgid "repository" +msgstr "saugykla" + +msgid "Sphinx Book Theme" +msgstr "Sfinkso knygos tema" + +msgid "Download source file" +msgstr "Atsisiųsti šaltinio failą" + +msgid "Contents" +msgstr "Turinys" + +msgid "By" +msgstr "Iki" + +msgid "Copyright" +msgstr "Autorių teisės" + +msgid "Fullscreen mode" +msgstr "Pilno ekrano režimas" + +msgid "Open an issue" +msgstr "Atidarykite problemą" + +msgid "previous page" +msgstr "Ankstesnis puslapis" + +msgid "Download this page" +msgstr "Atsisiųskite šį puslapį" + +msgid "Theme by the" +msgstr "Tema" diff --git a/_static/locales/lv/LC_MESSAGES/booktheme.mo b/_static/locales/lv/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..74aa4d8 Binary files /dev/null and b/_static/locales/lv/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/lv/LC_MESSAGES/booktheme.po b/_static/locales/lv/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..c9633b5 --- /dev/null +++ b/_static/locales/lv/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: lv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "ieteikt rediģēt" + +msgid "Last updated on" +msgstr "Pēdējoreiz atjaunināts" + +msgid "Edit this page" +msgstr "Rediģēt šo lapu" + +msgid "Launch" +msgstr "Uzsākt" + +msgid "Print to PDF" +msgstr "Drukāt PDF formātā" + +msgid "open issue" +msgstr "atklāts jautājums" + +msgid "Download notebook file" +msgstr "Lejupielādēt piezīmju grāmatiņu" + +msgid "Toggle navigation" +msgstr "Pārslēgt navigāciju" + +msgid "Source repository" +msgstr "Avota krātuve" + +msgid "By the" +msgstr "Ar" + +msgid "next page" +msgstr "nākamā lapaspuse" + +msgid "repository" +msgstr "krātuve" + +msgid "Sphinx Book Theme" +msgstr "Sfinksa grāmatas tēma" + +msgid "Download source file" +msgstr "Lejupielādēt avota failu" + +msgid "Contents" +msgstr "Saturs" + +msgid "By" +msgstr "Autors" + +msgid "Copyright" +msgstr "Autortiesības" + +msgid "Fullscreen mode" +msgstr "Pilnekrāna režīms" + +msgid "Open an issue" +msgstr "Atveriet problēmu" + +msgid "previous page" +msgstr "iepriekšējā lapa" + +msgid "Download this page" +msgstr "Lejupielādējiet šo lapu" + +msgid "Theme by the" +msgstr "Autora tēma" diff --git a/_static/locales/ml/LC_MESSAGES/booktheme.mo b/_static/locales/ml/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..2736e8f Binary files /dev/null and b/_static/locales/ml/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ml/LC_MESSAGES/booktheme.po b/_static/locales/ml/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..9a6a41e --- /dev/null +++ b/_static/locales/ml/LC_MESSAGES/booktheme.po @@ -0,0 +1,66 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ml\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "എഡിറ്റുചെയ്യാൻ നിർദ്ദേശിക്കുക" + +msgid "Last updated on" +msgstr "അവസാനം അപ്‌ഡേറ്റുചെയ്‌തത്" + +msgid "Edit this page" +msgstr "ഈ പേജ് എഡിറ്റുചെയ്യുക" + +msgid "Launch" +msgstr "സമാരംഭിക്കുക" + +msgid "Print to PDF" +msgstr "PDF- ലേക്ക് പ്രിന്റുചെയ്യുക" + +msgid "open issue" +msgstr "തുറന്ന പ്രശ്നം" + +msgid "Download notebook file" +msgstr "നോട്ട്ബുക്ക് ഫയൽ ഡൺലോഡ് ചെയ്യുക" + +msgid "Toggle navigation" +msgstr "നാവിഗേഷൻ ടോഗിൾ ചെയ്യുക" + +msgid "Source repository" +msgstr "ഉറവിട ശേഖരം" + +msgid "By the" +msgstr "എഴുതിയത്" + +msgid "next page" +msgstr "അടുത്ത പേജ്" + +msgid "Sphinx Book Theme" +msgstr "സ്ഫിങ്ക്സ് പുസ്തക തീം" + +msgid "Download source file" +msgstr "ഉറവിട ഫയൽ ഡൗൺലോഡുചെയ്യുക" + +msgid "By" +msgstr "എഴുതിയത്" + +msgid "Copyright" +msgstr "പകർപ്പവകാശം" + +msgid "Open an issue" +msgstr "ഒരു പ്രശ്നം തുറക്കുക" + +msgid "previous page" +msgstr "മുൻപത്തെ താൾ" + +msgid "Download this page" +msgstr "ഈ പേജ് ഡൗൺലോഡുചെയ്യുക" + +msgid "Theme by the" +msgstr "പ്രമേയം" diff --git a/_static/locales/mr/LC_MESSAGES/booktheme.mo b/_static/locales/mr/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..fe53010 Binary files /dev/null and b/_static/locales/mr/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/mr/LC_MESSAGES/booktheme.po b/_static/locales/mr/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..ef72d8c --- /dev/null +++ b/_static/locales/mr/LC_MESSAGES/booktheme.po @@ -0,0 +1,66 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: mr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "संपादन सुचवा" + +msgid "Last updated on" +msgstr "अखेरचे अद्यतनित" + +msgid "Edit this page" +msgstr "हे पृष्ठ संपादित करा" + +msgid "Launch" +msgstr "लाँच करा" + +msgid "Print to PDF" +msgstr "पीडीएफवर मुद्रित करा" + +msgid "open issue" +msgstr "खुला मुद्दा" + +msgid "Download notebook file" +msgstr "नोटबुक फाईल डाउनलोड करा" + +msgid "Toggle navigation" +msgstr "नेव्हिगेशन टॉगल करा" + +msgid "Source repository" +msgstr "स्त्रोत भांडार" + +msgid "By the" +msgstr "द्वारा" + +msgid "next page" +msgstr "पुढील पृष्ठ" + +msgid "Sphinx Book Theme" +msgstr "स्फिंक्स बुक थीम" + +msgid "Download source file" +msgstr "स्त्रोत फाइल डाउनलोड करा" + +msgid "By" +msgstr "द्वारा" + +msgid "Copyright" +msgstr "कॉपीराइट" + +msgid "Open an issue" +msgstr "एक मुद्दा उघडा" + +msgid "previous page" +msgstr "मागील पान" + +msgid "Download this page" +msgstr "हे पृष्ठ डाउनलोड करा" + +msgid "Theme by the" +msgstr "द्वारा थीम" diff --git a/_static/locales/ms/LC_MESSAGES/booktheme.mo b/_static/locales/ms/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..f02603f Binary files /dev/null and b/_static/locales/ms/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ms/LC_MESSAGES/booktheme.po b/_static/locales/ms/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..e29cbe2 --- /dev/null +++ b/_static/locales/ms/LC_MESSAGES/booktheme.po @@ -0,0 +1,66 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ms\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "cadangkan edit" + +msgid "Last updated on" +msgstr "Terakhir dikemas kini pada" + +msgid "Edit this page" +msgstr "Edit halaman ini" + +msgid "Launch" +msgstr "Lancarkan" + +msgid "Print to PDF" +msgstr "Cetak ke PDF" + +msgid "open issue" +msgstr "isu terbuka" + +msgid "Download notebook file" +msgstr "Muat turun fail buku nota" + +msgid "Toggle navigation" +msgstr "Togol navigasi" + +msgid "Source repository" +msgstr "Repositori sumber" + +msgid "By the" +msgstr "Oleh" + +msgid "next page" +msgstr "muka surat seterusnya" + +msgid "Sphinx Book Theme" +msgstr "Tema Buku Sphinx" + +msgid "Download source file" +msgstr "Muat turun fail sumber" + +msgid "By" +msgstr "Oleh" + +msgid "Copyright" +msgstr "hak cipta" + +msgid "Open an issue" +msgstr "Buka masalah" + +msgid "previous page" +msgstr "halaman sebelumnya" + +msgid "Download this page" +msgstr "Muat turun halaman ini" + +msgid "Theme by the" +msgstr "Tema oleh" diff --git a/_static/locales/nl/LC_MESSAGES/booktheme.mo b/_static/locales/nl/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..e59e7ec Binary files /dev/null and b/_static/locales/nl/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/nl/LC_MESSAGES/booktheme.po b/_static/locales/nl/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..e4844d7 --- /dev/null +++ b/_static/locales/nl/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "suggereren bewerken" + +msgid "Last updated on" +msgstr "Laatst geupdate op" + +msgid "Edit this page" +msgstr "bewerk deze pagina" + +msgid "Launch" +msgstr "Lancering" + +msgid "Print to PDF" +msgstr "Afdrukken naar pdf" + +msgid "open issue" +msgstr "open probleem" + +msgid "Download notebook file" +msgstr "Download notebookbestand" + +msgid "Toggle navigation" +msgstr "Schakel navigatie" + +msgid "Source repository" +msgstr "Bronopslagplaats" + +msgid "By the" +msgstr "Door de" + +msgid "next page" +msgstr "volgende bladzijde" + +msgid "repository" +msgstr "repository" + +msgid "Sphinx Book Theme" +msgstr "Sphinx-boekthema" + +msgid "Download source file" +msgstr "Download het bronbestand" + +msgid "Contents" +msgstr "Inhoud" + +msgid "By" +msgstr "Door" + +msgid "Copyright" +msgstr "auteursrechten" + +msgid "Fullscreen mode" +msgstr "Volledig scherm" + +msgid "Open an issue" +msgstr "Open een probleem" + +msgid "previous page" +msgstr "vorige pagina" + +msgid "Download this page" +msgstr "Download deze pagina" + +msgid "Theme by the" +msgstr "Thema door de" diff --git a/_static/locales/no/LC_MESSAGES/booktheme.mo b/_static/locales/no/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..6cd15c8 Binary files /dev/null and b/_static/locales/no/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/no/LC_MESSAGES/booktheme.po b/_static/locales/no/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..d079dd9 --- /dev/null +++ b/_static/locales/no/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: no\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "foreslå redigering" + +msgid "Last updated on" +msgstr "Sist oppdatert den" + +msgid "Edit this page" +msgstr "Rediger denne siden" + +msgid "Launch" +msgstr "Start" + +msgid "Print to PDF" +msgstr "Skriv ut til PDF" + +msgid "open issue" +msgstr "åpent nummer" + +msgid "Download notebook file" +msgstr "Last ned notatbokfilen" + +msgid "Toggle navigation" +msgstr "Bytt navigasjon" + +msgid "Source repository" +msgstr "Kildedepot" + +msgid "By the" +msgstr "Ved" + +msgid "next page" +msgstr "neste side" + +msgid "repository" +msgstr "oppbevaringssted" + +msgid "Sphinx Book Theme" +msgstr "Sphinx boktema" + +msgid "Download source file" +msgstr "Last ned kildefilen" + +msgid "Contents" +msgstr "Innhold" + +msgid "By" +msgstr "Av" + +msgid "Copyright" +msgstr "opphavsrett" + +msgid "Fullscreen mode" +msgstr "Fullskjerm-modus" + +msgid "Open an issue" +msgstr "Åpne et problem" + +msgid "previous page" +msgstr "forrige side" + +msgid "Download this page" +msgstr "Last ned denne siden" + +msgid "Theme by the" +msgstr "Tema av" diff --git a/_static/locales/pl/LC_MESSAGES/booktheme.mo b/_static/locales/pl/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..9ebb584 Binary files /dev/null and b/_static/locales/pl/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/pl/LC_MESSAGES/booktheme.po b/_static/locales/pl/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..fcac51d --- /dev/null +++ b/_static/locales/pl/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "zaproponuj edycję" + +msgid "Last updated on" +msgstr "Ostatnia aktualizacja" + +msgid "Edit this page" +msgstr "Edytuj tę strone" + +msgid "Launch" +msgstr "Uruchomić" + +msgid "Print to PDF" +msgstr "Drukuj do PDF" + +msgid "open issue" +msgstr "otwarty problem" + +msgid "Download notebook file" +msgstr "Pobierz plik notatnika" + +msgid "Toggle navigation" +msgstr "Przełącz nawigację" + +msgid "Source repository" +msgstr "Repozytorium źródłowe" + +msgid "By the" +msgstr "Przez" + +msgid "next page" +msgstr "Następna strona" + +msgid "repository" +msgstr "magazyn" + +msgid "Sphinx Book Theme" +msgstr "Motyw książki Sphinx" + +msgid "Download source file" +msgstr "Pobierz plik źródłowy" + +msgid "Contents" +msgstr "Zawartość" + +msgid "By" +msgstr "Przez" + +msgid "Copyright" +msgstr "prawa autorskie" + +msgid "Fullscreen mode" +msgstr "Pełny ekran" + +msgid "Open an issue" +msgstr "Otwórz problem" + +msgid "previous page" +msgstr "Poprzednia strona" + +msgid "Download this page" +msgstr "Pobierz tę stronę" + +msgid "Theme by the" +msgstr "Motyw autorstwa" diff --git a/_static/locales/pt/LC_MESSAGES/booktheme.mo b/_static/locales/pt/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..d0ddb87 Binary files /dev/null and b/_static/locales/pt/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/pt/LC_MESSAGES/booktheme.po b/_static/locales/pt/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..1761db0 --- /dev/null +++ b/_static/locales/pt/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "sugerir edição" + +msgid "Last updated on" +msgstr "Última atualização em" + +msgid "Edit this page" +msgstr "Edite essa página" + +msgid "Launch" +msgstr "Lançamento" + +msgid "Print to PDF" +msgstr "Imprimir em PDF" + +msgid "open issue" +msgstr "questão aberta" + +msgid "Download notebook file" +msgstr "Baixar arquivo de notebook" + +msgid "Toggle navigation" +msgstr "Alternar de navegação" + +msgid "Source repository" +msgstr "Repositório fonte" + +msgid "By the" +msgstr "Pelo" + +msgid "next page" +msgstr "próxima página" + +msgid "repository" +msgstr "repositório" + +msgid "Sphinx Book Theme" +msgstr "Tema do livro Sphinx" + +msgid "Download source file" +msgstr "Baixar arquivo fonte" + +msgid "Contents" +msgstr "Conteúdo" + +msgid "By" +msgstr "De" + +msgid "Copyright" +msgstr "direito autoral" + +msgid "Fullscreen mode" +msgstr "Modo tela cheia" + +msgid "Open an issue" +msgstr "Abra um problema" + +msgid "previous page" +msgstr "página anterior" + +msgid "Download this page" +msgstr "Baixe esta página" + +msgid "Theme by the" +msgstr "Tema por" diff --git a/_static/locales/ro/LC_MESSAGES/booktheme.mo b/_static/locales/ro/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..3c36ab1 Binary files /dev/null and b/_static/locales/ro/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ro/LC_MESSAGES/booktheme.po b/_static/locales/ro/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..db865c8 --- /dev/null +++ b/_static/locales/ro/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ro\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "sugerează editare" + +msgid "Last updated on" +msgstr "Ultima actualizare la" + +msgid "Edit this page" +msgstr "Editați această pagină" + +msgid "Launch" +msgstr "Lansa" + +msgid "Print to PDF" +msgstr "Imprimați în PDF" + +msgid "open issue" +msgstr "problema deschisă" + +msgid "Download notebook file" +msgstr "Descărcați fișierul notebook" + +msgid "Toggle navigation" +msgstr "Comutare navigare" + +msgid "Source repository" +msgstr "Depozit sursă" + +msgid "By the" +msgstr "Langa" + +msgid "next page" +msgstr "pagina următoare" + +msgid "repository" +msgstr "repertoriu" + +msgid "Sphinx Book Theme" +msgstr "Tema Sphinx Book" + +msgid "Download source file" +msgstr "Descărcați fișierul sursă" + +msgid "Contents" +msgstr "Cuprins" + +msgid "By" +msgstr "De" + +msgid "Copyright" +msgstr "Drepturi de autor" + +msgid "Fullscreen mode" +msgstr "Modul ecran întreg" + +msgid "Open an issue" +msgstr "Deschideți o problemă" + +msgid "previous page" +msgstr "pagina anterioară" + +msgid "Download this page" +msgstr "Descarcă această pagină" + +msgid "Theme by the" +msgstr "Tema de" diff --git a/_static/locales/ru/LC_MESSAGES/booktheme.mo b/_static/locales/ru/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..6b8ca41 Binary files /dev/null and b/_static/locales/ru/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ru/LC_MESSAGES/booktheme.po b/_static/locales/ru/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..84ab6eb --- /dev/null +++ b/_static/locales/ru/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ru\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "предложить редактировать" + +msgid "Last updated on" +msgstr "Последнее обновление" + +msgid "Edit this page" +msgstr "Редактировать эту страницу" + +msgid "Launch" +msgstr "Запуск" + +msgid "Print to PDF" +msgstr "Распечатать в PDF" + +msgid "open issue" +msgstr "открытый вопрос" + +msgid "Download notebook file" +msgstr "Скачать файл записной книжки" + +msgid "Toggle navigation" +msgstr "Переключить навигацию" + +msgid "Source repository" +msgstr "Исходный репозиторий" + +msgid "By the" +msgstr "Посредством" + +msgid "next page" +msgstr "Следующая страница" + +msgid "repository" +msgstr "хранилище" + +msgid "Sphinx Book Theme" +msgstr "Тема книги Сфинкс" + +msgid "Download source file" +msgstr "Скачать исходный файл" + +msgid "Contents" +msgstr "Содержание" + +msgid "By" +msgstr "По" + +msgid "Copyright" +msgstr "авторское право" + +msgid "Fullscreen mode" +msgstr "Полноэкранный режим" + +msgid "Open an issue" +msgstr "Открыть вопрос" + +msgid "previous page" +msgstr "Предыдущая страница" + +msgid "Download this page" +msgstr "Загрузите эту страницу" + +msgid "Theme by the" +msgstr "Тема от" diff --git a/_static/locales/sk/LC_MESSAGES/booktheme.mo b/_static/locales/sk/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..59bd0dd Binary files /dev/null and b/_static/locales/sk/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/sk/LC_MESSAGES/booktheme.po b/_static/locales/sk/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..e44878b --- /dev/null +++ b/_static/locales/sk/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sk\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "navrhnúť úpravu" + +msgid "Last updated on" +msgstr "Posledná aktualizácia dňa" + +msgid "Edit this page" +msgstr "Upraviť túto stránku" + +msgid "Launch" +msgstr "Spustiť" + +msgid "Print to PDF" +msgstr "Tlač do PDF" + +msgid "open issue" +msgstr "otvorené vydanie" + +msgid "Download notebook file" +msgstr "Stiahnite si zošit" + +msgid "Toggle navigation" +msgstr "Prepnúť navigáciu" + +msgid "Source repository" +msgstr "Zdrojové úložisko" + +msgid "By the" +msgstr "Podľa" + +msgid "next page" +msgstr "ďalšia strana" + +msgid "repository" +msgstr "Úložisko" + +msgid "Sphinx Book Theme" +msgstr "Téma knihy Sfinga" + +msgid "Download source file" +msgstr "Stiahnite si zdrojový súbor" + +msgid "Contents" +msgstr "Obsah" + +msgid "By" +msgstr "Autor:" + +msgid "Copyright" +msgstr "Autorské práva" + +msgid "Fullscreen mode" +msgstr "Režim celej obrazovky" + +msgid "Open an issue" +msgstr "Otvorte problém" + +msgid "previous page" +msgstr "predchádzajúca strana" + +msgid "Download this page" +msgstr "Stiahnite si túto stránku" + +msgid "Theme by the" +msgstr "Téma od" diff --git a/_static/locales/sl/LC_MESSAGES/booktheme.mo b/_static/locales/sl/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..87bf26d Binary files /dev/null and b/_static/locales/sl/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/sl/LC_MESSAGES/booktheme.po b/_static/locales/sl/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..228939b --- /dev/null +++ b/_static/locales/sl/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "predlagajte urejanje" + +msgid "Last updated on" +msgstr "Nazadnje posodobljeno dne" + +msgid "Edit this page" +msgstr "Uredite to stran" + +msgid "Launch" +msgstr "Kosilo" + +msgid "Print to PDF" +msgstr "Natisni v PDF" + +msgid "open issue" +msgstr "odprto vprašanje" + +msgid "Download notebook file" +msgstr "Prenesite datoteko zvezka" + +msgid "Toggle navigation" +msgstr "Preklopi navigacijo" + +msgid "Source repository" +msgstr "Izvorno skladišče" + +msgid "By the" +msgstr "Avtor" + +msgid "next page" +msgstr "Naslednja stran" + +msgid "repository" +msgstr "odlagališče" + +msgid "Sphinx Book Theme" +msgstr "Tema knjige Sphinx" + +msgid "Download source file" +msgstr "Prenesite izvorno datoteko" + +msgid "Contents" +msgstr "Vsebina" + +msgid "By" +msgstr "Avtor" + +msgid "Copyright" +msgstr "avtorske pravice" + +msgid "Fullscreen mode" +msgstr "Celozaslonski način" + +msgid "Open an issue" +msgstr "Odprite številko" + +msgid "previous page" +msgstr "Prejšnja stran" + +msgid "Download this page" +msgstr "Prenesite to stran" + +msgid "Theme by the" +msgstr "Tema avtorja" diff --git a/_static/locales/sr/LC_MESSAGES/booktheme.mo b/_static/locales/sr/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..ec740f4 Binary files /dev/null and b/_static/locales/sr/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/sr/LC_MESSAGES/booktheme.po b/_static/locales/sr/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..1a712a1 --- /dev/null +++ b/_static/locales/sr/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "предложи уређивање" + +msgid "Last updated on" +msgstr "Последње ажурирање" + +msgid "Edit this page" +msgstr "Уредите ову страницу" + +msgid "Launch" +msgstr "Лансирање" + +msgid "Print to PDF" +msgstr "Испис у ПДФ" + +msgid "open issue" +msgstr "отворено издање" + +msgid "Download notebook file" +msgstr "Преузмите датотеку бележнице" + +msgid "Toggle navigation" +msgstr "Укључи / искључи навигацију" + +msgid "Source repository" +msgstr "Изворно спремиште" + +msgid "By the" +msgstr "Од" + +msgid "next page" +msgstr "Следећа страна" + +msgid "repository" +msgstr "спремиште" + +msgid "Sphinx Book Theme" +msgstr "Тема књиге Спхинк" + +msgid "Download source file" +msgstr "Преузми изворну датотеку" + +msgid "Contents" +msgstr "Садржај" + +msgid "By" +msgstr "Од стране" + +msgid "Copyright" +msgstr "Ауторско право" + +msgid "Fullscreen mode" +msgstr "Режим целог екрана" + +msgid "Open an issue" +msgstr "Отворите издање" + +msgid "previous page" +msgstr "Претходна страница" + +msgid "Download this page" +msgstr "Преузмите ову страницу" + +msgid "Theme by the" +msgstr "Тхеме би" diff --git a/_static/locales/sv/LC_MESSAGES/booktheme.mo b/_static/locales/sv/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..be951be Binary files /dev/null and b/_static/locales/sv/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/sv/LC_MESSAGES/booktheme.po b/_static/locales/sv/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..7d2b56d --- /dev/null +++ b/_static/locales/sv/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "föreslå redigering" + +msgid "Last updated on" +msgstr "Senast uppdaterad den" + +msgid "Edit this page" +msgstr "Redigera den här sidan" + +msgid "Launch" +msgstr "Lansera" + +msgid "Print to PDF" +msgstr "Skriv ut till PDF" + +msgid "open issue" +msgstr "öppet problem" + +msgid "Download notebook file" +msgstr "Ladda ner anteckningsbokfilen" + +msgid "Toggle navigation" +msgstr "Växla navigering" + +msgid "Source repository" +msgstr "Källförvar" + +msgid "By the" +msgstr "Vid" + +msgid "next page" +msgstr "nästa sida" + +msgid "repository" +msgstr "förvar" + +msgid "Sphinx Book Theme" +msgstr "Sphinx boktema" + +msgid "Download source file" +msgstr "Ladda ner källfil" + +msgid "Contents" +msgstr "Innehåll" + +msgid "By" +msgstr "Förbi" + +msgid "Copyright" +msgstr "upphovsrätt" + +msgid "Fullscreen mode" +msgstr "Fullskärmsläge" + +msgid "Open an issue" +msgstr "Öppna ett problem" + +msgid "previous page" +msgstr "föregående sida" + +msgid "Download this page" +msgstr "Ladda ner den här sidan" + +msgid "Theme by the" +msgstr "Tema av" diff --git a/_static/locales/ta/LC_MESSAGES/booktheme.mo b/_static/locales/ta/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..29f52e1 Binary files /dev/null and b/_static/locales/ta/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ta/LC_MESSAGES/booktheme.po b/_static/locales/ta/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..c75ffe1 --- /dev/null +++ b/_static/locales/ta/LC_MESSAGES/booktheme.po @@ -0,0 +1,66 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ta\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "திருத்த பரிந்துரைக்கவும்" + +msgid "Last updated on" +msgstr "கடைசியாக புதுப்பிக்கப்பட்டது" + +msgid "Edit this page" +msgstr "இந்தப் பக்கத்தைத் திருத்தவும்" + +msgid "Launch" +msgstr "தொடங்க" + +msgid "Print to PDF" +msgstr "PDF இல் அச்சிடுக" + +msgid "open issue" +msgstr "திறந்த பிரச்சினை" + +msgid "Download notebook file" +msgstr "நோட்புக் கோப்பைப் பதிவிறக்கவும்" + +msgid "Toggle navigation" +msgstr "வழிசெலுத்தலை நிலைமாற்று" + +msgid "Source repository" +msgstr "மூல களஞ்சியம்" + +msgid "By the" +msgstr "மூலம்" + +msgid "next page" +msgstr "அடுத்த பக்கம்" + +msgid "Sphinx Book Theme" +msgstr "ஸ்பிங்க்ஸ் புத்தக தீம்" + +msgid "Download source file" +msgstr "மூல கோப்பைப் பதிவிறக்குக" + +msgid "By" +msgstr "வழங்கியவர்" + +msgid "Copyright" +msgstr "பதிப்புரிமை" + +msgid "Open an issue" +msgstr "சிக்கலைத் திறக்கவும்" + +msgid "previous page" +msgstr "முந்தைய பக்கம்" + +msgid "Download this page" +msgstr "இந்தப் பக்கத்தைப் பதிவிறக்கவும்" + +msgid "Theme by the" +msgstr "வழங்கிய தீம்" diff --git a/_static/locales/te/LC_MESSAGES/booktheme.mo b/_static/locales/te/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..0a5f4b4 Binary files /dev/null and b/_static/locales/te/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/te/LC_MESSAGES/booktheme.po b/_static/locales/te/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..2595c03 --- /dev/null +++ b/_static/locales/te/LC_MESSAGES/booktheme.po @@ -0,0 +1,66 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: te\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "సవరించమని సూచించండి" + +msgid "Last updated on" +msgstr "చివరిగా నవీకరించబడింది" + +msgid "Edit this page" +msgstr "ఈ పేజీని సవరించండి" + +msgid "Launch" +msgstr "ప్రారంభించండి" + +msgid "Print to PDF" +msgstr "PDF కి ముద్రించండి" + +msgid "open issue" +msgstr "ఓపెన్ ఇష్యూ" + +msgid "Download notebook file" +msgstr "నోట్బుక్ ఫైల్ను డౌన్లోడ్ చేయండి" + +msgid "Toggle navigation" +msgstr "నావిగేషన్‌ను టోగుల్ చేయండి" + +msgid "Source repository" +msgstr "మూల రిపోజిటరీ" + +msgid "By the" +msgstr "ద్వారా" + +msgid "next page" +msgstr "తరువాతి పేజీ" + +msgid "Sphinx Book Theme" +msgstr "సింహిక పుస్తక థీమ్" + +msgid "Download source file" +msgstr "మూల ఫైల్‌ను డౌన్‌లోడ్ చేయండి" + +msgid "By" +msgstr "ద్వారా" + +msgid "Copyright" +msgstr "కాపీరైట్" + +msgid "Open an issue" +msgstr "సమస్యను తెరవండి" + +msgid "previous page" +msgstr "ముందు పేజి" + +msgid "Download this page" +msgstr "ఈ పేజీని డౌన్‌లోడ్ చేయండి" + +msgid "Theme by the" +msgstr "ద్వారా థీమ్" diff --git a/_static/locales/tg/LC_MESSAGES/booktheme.mo b/_static/locales/tg/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..b21c6c6 Binary files /dev/null and b/_static/locales/tg/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/tg/LC_MESSAGES/booktheme.po b/_static/locales/tg/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..73cd30e --- /dev/null +++ b/_static/locales/tg/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tg\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "пешниҳод вироиш" + +msgid "Last updated on" +msgstr "Last навсозӣ дар" + +msgid "Edit this page" +msgstr "Ин саҳифаро таҳрир кунед" + +msgid "Launch" +msgstr "Оғоз" + +msgid "Print to PDF" +msgstr "Чоп ба PDF" + +msgid "open issue" +msgstr "барориши кушод" + +msgid "Download notebook file" +msgstr "Файли дафтарро зеркашӣ кунед" + +msgid "Toggle navigation" +msgstr "Гузаришро иваз кунед" + +msgid "Source repository" +msgstr "Анбори манбаъ" + +msgid "By the" +msgstr "Бо" + +msgid "next page" +msgstr "саҳифаи оянда" + +msgid "repository" +msgstr "анбор" + +msgid "Sphinx Book Theme" +msgstr "Сфинкс Мавзӯи китоб" + +msgid "Download source file" +msgstr "Файли манбаъро зеркашӣ кунед" + +msgid "Contents" +msgstr "Мундариҷа" + +msgid "By" +msgstr "Бо" + +msgid "Copyright" +msgstr "Ҳуқуқи муаллиф" + +msgid "Fullscreen mode" +msgstr "Ҳолати экрани пурра" + +msgid "Open an issue" +msgstr "Масъаларо кушоед" + +msgid "previous page" +msgstr "саҳифаи қаблӣ" + +msgid "Download this page" +msgstr "Ин саҳифаро зеркашӣ кунед" + +msgid "Theme by the" +msgstr "Мавзӯъи аз" diff --git a/_static/locales/th/LC_MESSAGES/booktheme.mo b/_static/locales/th/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..abede98 Binary files /dev/null and b/_static/locales/th/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/th/LC_MESSAGES/booktheme.po b/_static/locales/th/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..0392b4a --- /dev/null +++ b/_static/locales/th/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: th\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "แนะนำแก้ไข" + +msgid "Last updated on" +msgstr "ปรับปรุงล่าสุดเมื่อ" + +msgid "Edit this page" +msgstr "แก้ไขหน้านี้" + +msgid "Launch" +msgstr "เปิด" + +msgid "Print to PDF" +msgstr "พิมพ์เป็น PDF" + +msgid "open issue" +msgstr "เปิดปัญหา" + +msgid "Download notebook file" +msgstr "ดาวน์โหลดไฟล์สมุดบันทึก" + +msgid "Toggle navigation" +msgstr "ไม่ต้องสลับช่องทาง" + +msgid "Source repository" +msgstr "ที่เก็บซอร์ส" + +msgid "By the" +msgstr "โดย" + +msgid "next page" +msgstr "หน้าต่อไป" + +msgid "repository" +msgstr "ที่เก็บ" + +msgid "Sphinx Book Theme" +msgstr "ธีมหนังสือสฟิงซ์" + +msgid "Download source file" +msgstr "ดาวน์โหลดไฟล์ต้นฉบับ" + +msgid "Contents" +msgstr "สารบัญ" + +msgid "By" +msgstr "โดย" + +msgid "Copyright" +msgstr "ลิขสิทธิ์" + +msgid "Fullscreen mode" +msgstr "โหมดเต็มหน้าจอ" + +msgid "Open an issue" +msgstr "เปิดปัญหา" + +msgid "previous page" +msgstr "หน้าที่แล้ว" + +msgid "Download this page" +msgstr "ดาวน์โหลดหน้านี้" + +msgid "Theme by the" +msgstr "ธีมโดย" diff --git a/_static/locales/tl/LC_MESSAGES/booktheme.mo b/_static/locales/tl/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..8df1b73 Binary files /dev/null and b/_static/locales/tl/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/tl/LC_MESSAGES/booktheme.po b/_static/locales/tl/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..c8375b5 --- /dev/null +++ b/_static/locales/tl/LC_MESSAGES/booktheme.po @@ -0,0 +1,66 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "iminumungkahi i-edit" + +msgid "Last updated on" +msgstr "Huling na-update noong" + +msgid "Edit this page" +msgstr "I-edit ang pahinang ito" + +msgid "Launch" +msgstr "Ilunsad" + +msgid "Print to PDF" +msgstr "I-print sa PDF" + +msgid "open issue" +msgstr "bukas na isyu" + +msgid "Download notebook file" +msgstr "Mag-download ng file ng notebook" + +msgid "Toggle navigation" +msgstr "I-toggle ang pag-navigate" + +msgid "Source repository" +msgstr "Pinagmulan ng imbakan" + +msgid "By the" +msgstr "Sa pamamagitan ng" + +msgid "next page" +msgstr "Susunod na pahina" + +msgid "Sphinx Book Theme" +msgstr "Tema ng Sphinx Book" + +msgid "Download source file" +msgstr "Mag-download ng file ng pinagmulan" + +msgid "By" +msgstr "Ni" + +msgid "Copyright" +msgstr "Copyright" + +msgid "Open an issue" +msgstr "Magbukas ng isyu" + +msgid "previous page" +msgstr "Nakaraang pahina" + +msgid "Download this page" +msgstr "I-download ang pahinang ito" + +msgid "Theme by the" +msgstr "Tema ng" diff --git a/_static/locales/tr/LC_MESSAGES/booktheme.mo b/_static/locales/tr/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..029ae18 Binary files /dev/null and b/_static/locales/tr/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/tr/LC_MESSAGES/booktheme.po b/_static/locales/tr/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..47d7bdf --- /dev/null +++ b/_static/locales/tr/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "düzenleme öner" + +msgid "Last updated on" +msgstr "Son güncelleme tarihi" + +msgid "Edit this page" +msgstr "Bu sayfayı düzenle" + +msgid "Launch" +msgstr "Başlatmak" + +msgid "Print to PDF" +msgstr "PDF olarak yazdır" + +msgid "open issue" +msgstr "Açık konu" + +msgid "Download notebook file" +msgstr "Defter dosyasını indirin" + +msgid "Toggle navigation" +msgstr "Gezinmeyi değiştir" + +msgid "Source repository" +msgstr "Kaynak kod deposu" + +msgid "By the" +msgstr "Tarafından" + +msgid "next page" +msgstr "sonraki Sayfa" + +msgid "repository" +msgstr "depo" + +msgid "Sphinx Book Theme" +msgstr "Sfenks Kitap Teması" + +msgid "Download source file" +msgstr "Kaynak dosyayı indirin" + +msgid "Contents" +msgstr "İçindekiler" + +msgid "By" +msgstr "Tarafından" + +msgid "Copyright" +msgstr "Telif hakkı" + +msgid "Fullscreen mode" +msgstr "Tam ekran modu" + +msgid "Open an issue" +msgstr "Bir sorunu açın" + +msgid "previous page" +msgstr "önceki sayfa" + +msgid "Download this page" +msgstr "Bu sayfayı indirin" + +msgid "Theme by the" +msgstr "Tarafından tema" diff --git a/_static/locales/uk/LC_MESSAGES/booktheme.mo b/_static/locales/uk/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..16ab789 Binary files /dev/null and b/_static/locales/uk/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/uk/LC_MESSAGES/booktheme.po b/_static/locales/uk/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..e85f6f1 --- /dev/null +++ b/_static/locales/uk/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: uk\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "запропонувати редагувати" + +msgid "Last updated on" +msgstr "Останнє оновлення:" + +msgid "Edit this page" +msgstr "Редагувати цю сторінку" + +msgid "Launch" +msgstr "Запуск" + +msgid "Print to PDF" +msgstr "Друк у форматі PDF" + +msgid "open issue" +msgstr "відкритий випуск" + +msgid "Download notebook file" +msgstr "Завантажте файл блокнота" + +msgid "Toggle navigation" +msgstr "Переключити навігацію" + +msgid "Source repository" +msgstr "Джерело сховища" + +msgid "By the" +msgstr "По" + +msgid "next page" +msgstr "Наступна сторінка" + +msgid "repository" +msgstr "сховище" + +msgid "Sphinx Book Theme" +msgstr "Тема книги \"Сфінкс\"" + +msgid "Download source file" +msgstr "Завантажити вихідний файл" + +msgid "Contents" +msgstr "Зміст" + +msgid "By" +msgstr "Автор" + +msgid "Copyright" +msgstr "Авторське право" + +msgid "Fullscreen mode" +msgstr "Повноекранний режим" + +msgid "Open an issue" +msgstr "Відкрийте випуск" + +msgid "previous page" +msgstr "Попередня сторінка" + +msgid "Download this page" +msgstr "Завантажте цю сторінку" + +msgid "Theme by the" +msgstr "Тема від" diff --git a/_static/locales/ur/LC_MESSAGES/booktheme.mo b/_static/locales/ur/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..de8c84b Binary files /dev/null and b/_static/locales/ur/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/ur/LC_MESSAGES/booktheme.po b/_static/locales/ur/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..0f90726 --- /dev/null +++ b/_static/locales/ur/LC_MESSAGES/booktheme.po @@ -0,0 +1,66 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "ترمیم کی تجویز کریں" + +msgid "Last updated on" +msgstr "آخری بار تازہ کاری ہوئی" + +msgid "Edit this page" +msgstr "اس صفحے میں ترمیم کریں" + +msgid "Launch" +msgstr "لانچ کریں" + +msgid "Print to PDF" +msgstr "پی ڈی ایف پرنٹ کریں" + +msgid "open issue" +msgstr "کھلا مسئلہ" + +msgid "Download notebook file" +msgstr "نوٹ بک فائل ڈاؤن لوڈ کریں" + +msgid "Toggle navigation" +msgstr "نیویگیشن ٹوگل کریں" + +msgid "Source repository" +msgstr "ماخذ ذخیرہ" + +msgid "By the" +msgstr "کی طرف" + +msgid "next page" +msgstr "اگلا صفحہ" + +msgid "Sphinx Book Theme" +msgstr "سپنکس بک تھیم" + +msgid "Download source file" +msgstr "سورس فائل ڈاؤن لوڈ کریں" + +msgid "By" +msgstr "بذریعہ" + +msgid "Copyright" +msgstr "کاپی رائٹ" + +msgid "Open an issue" +msgstr "ایک مسئلہ کھولیں" + +msgid "previous page" +msgstr "سابقہ ​​صفحہ" + +msgid "Download this page" +msgstr "اس صفحے کو ڈاؤن لوڈ کریں" + +msgid "Theme by the" +msgstr "کے ذریعہ تھیم" diff --git a/_static/locales/vi/LC_MESSAGES/booktheme.mo b/_static/locales/vi/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..2bb3255 Binary files /dev/null and b/_static/locales/vi/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/vi/LC_MESSAGES/booktheme.po b/_static/locales/vi/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..2cb5cf3 --- /dev/null +++ b/_static/locales/vi/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: vi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "đề nghị chỉnh sửa" + +msgid "Last updated on" +msgstr "Cập nhật lần cuối vào" + +msgid "Edit this page" +msgstr "chỉnh sửa trang này" + +msgid "Launch" +msgstr "Phóng" + +msgid "Print to PDF" +msgstr "In sang PDF" + +msgid "open issue" +msgstr "vấn đề mở" + +msgid "Download notebook file" +msgstr "Tải xuống tệp sổ tay" + +msgid "Toggle navigation" +msgstr "Chuyển đổi điều hướng thành" + +msgid "Source repository" +msgstr "Kho nguồn" + +msgid "By the" +msgstr "Bằng" + +msgid "next page" +msgstr "Trang tiếp theo" + +msgid "repository" +msgstr "kho" + +msgid "Sphinx Book Theme" +msgstr "Chủ đề sách nhân sư" + +msgid "Download source file" +msgstr "Tải xuống tệp nguồn" + +msgid "Contents" +msgstr "Nội dung" + +msgid "By" +msgstr "Bởi" + +msgid "Copyright" +msgstr "Bản quyền" + +msgid "Fullscreen mode" +msgstr "Chế độ toàn màn hình" + +msgid "Open an issue" +msgstr "Mở một vấn đề" + +msgid "previous page" +msgstr "trang trước" + +msgid "Download this page" +msgstr "Tải xuống trang này" + +msgid "Theme by the" +msgstr "Chủ đề của" diff --git a/_static/locales/zh_CN/LC_MESSAGES/booktheme.mo b/_static/locales/zh_CN/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..0e3235d Binary files /dev/null and b/_static/locales/zh_CN/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/zh_CN/LC_MESSAGES/booktheme.po b/_static/locales/zh_CN/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..f91f3ba --- /dev/null +++ b/_static/locales/zh_CN/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "提出修改建议" + +msgid "Last updated on" +msgstr "上次更新时间:" + +msgid "Edit this page" +msgstr "编辑此页面" + +msgid "Launch" +msgstr "启动" + +msgid "Print to PDF" +msgstr "列印成 PDF" + +msgid "open issue" +msgstr "创建议题" + +msgid "Download notebook file" +msgstr "下载笔记本文件" + +msgid "Toggle navigation" +msgstr "显示或隐藏导航栏" + +msgid "Source repository" +msgstr "源码库" + +msgid "By the" +msgstr "作者:" + +msgid "next page" +msgstr "下一页" + +msgid "repository" +msgstr "仓库" + +msgid "Sphinx Book Theme" +msgstr "Sphinx Book 主题" + +msgid "Download source file" +msgstr "下载源文件" + +msgid "Contents" +msgstr "目录" + +msgid "By" +msgstr "作者:" + +msgid "Copyright" +msgstr "版权" + +msgid "Fullscreen mode" +msgstr "全屏模式" + +msgid "Open an issue" +msgstr "创建议题" + +msgid "previous page" +msgstr "上一页" + +msgid "Download this page" +msgstr "下载此页面" + +msgid "Theme by the" +msgstr "主题作者:" diff --git a/_static/locales/zh_TW/LC_MESSAGES/booktheme.mo b/_static/locales/zh_TW/LC_MESSAGES/booktheme.mo new file mode 100644 index 0000000..9116fa9 Binary files /dev/null and b/_static/locales/zh_TW/LC_MESSAGES/booktheme.mo differ diff --git a/_static/locales/zh_TW/LC_MESSAGES/booktheme.po b/_static/locales/zh_TW/LC_MESSAGES/booktheme.po new file mode 100644 index 0000000..7833d90 --- /dev/null +++ b/_static/locales/zh_TW/LC_MESSAGES/booktheme.po @@ -0,0 +1,75 @@ + +msgid "" +msgstr "" +"Project-Id-Version: Sphinx-Book-Theme\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +msgid "suggest edit" +msgstr "提出修改建議" + +msgid "Last updated on" +msgstr "最後更新時間:" + +msgid "Edit this page" +msgstr "編輯此頁面" + +msgid "Launch" +msgstr "啟動" + +msgid "Print to PDF" +msgstr "列印成 PDF" + +msgid "open issue" +msgstr "公開的問題" + +msgid "Download notebook file" +msgstr "下載 Notebook 檔案" + +msgid "Toggle navigation" +msgstr "顯示或隱藏導覽列" + +msgid "Source repository" +msgstr "來源儲存庫" + +msgid "By the" +msgstr "作者:" + +msgid "next page" +msgstr "下一頁" + +msgid "repository" +msgstr "儲存庫" + +msgid "Sphinx Book Theme" +msgstr "Sphinx Book 佈景主題" + +msgid "Download source file" +msgstr "下載原始檔" + +msgid "Contents" +msgstr "目錄" + +msgid "By" +msgstr "作者:" + +msgid "Copyright" +msgstr "Copyright" + +msgid "Fullscreen mode" +msgstr "全螢幕模式" + +msgid "Open an issue" +msgstr "開啟議題" + +msgid "previous page" +msgstr "上一頁" + +msgid "Download this page" +msgstr "下載此頁面" + +msgid "Theme by the" +msgstr "佈景主題作者:" diff --git a/_static/minus.png b/_static/minus.png new file mode 100644 index 0000000..d96755f Binary files /dev/null and b/_static/minus.png differ diff --git a/_static/peslearn.png b/_static/peslearn.png new file mode 100644 index 0000000..dd30ec1 Binary files /dev/null and b/_static/peslearn.png differ diff --git a/_static/plus.png b/_static/plus.png new file mode 100644 index 0000000..7107cec Binary files /dev/null and b/_static/plus.png differ diff --git a/_static/pygments.css b/_static/pygments.css new file mode 100644 index 0000000..997797f --- /dev/null +++ b/_static/pygments.css @@ -0,0 +1,152 @@ +html[data-theme="light"] .highlight pre { line-height: 125%; } +html[data-theme="light"] .highlight td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } +html[data-theme="light"] .highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } +html[data-theme="light"] .highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +html[data-theme="light"] .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +html[data-theme="light"] .highlight .hll { background-color: #7971292e } +html[data-theme="light"] .highlight { background: #fefefe; color: #545454 } +html[data-theme="light"] .highlight .c { color: #797129 } /* Comment */ +html[data-theme="light"] .highlight .err { color: #d91e18 } /* Error */ +html[data-theme="light"] .highlight .k { color: #7928a1 } /* Keyword */ +html[data-theme="light"] .highlight .l { color: #797129 } /* Literal */ +html[data-theme="light"] .highlight .n { color: #545454 } /* Name */ +html[data-theme="light"] .highlight .o { color: #008000 } /* Operator */ +html[data-theme="light"] .highlight .p { color: #545454 } /* Punctuation */ +html[data-theme="light"] .highlight .ch { color: #797129 } /* Comment.Hashbang */ +html[data-theme="light"] .highlight .cm { color: #797129 } /* Comment.Multiline */ +html[data-theme="light"] .highlight .cp { color: #797129 } /* Comment.Preproc */ +html[data-theme="light"] .highlight .cpf { color: #797129 } /* Comment.PreprocFile */ +html[data-theme="light"] .highlight .c1 { color: #797129 } /* Comment.Single */ +html[data-theme="light"] .highlight .cs { color: #797129 } /* Comment.Special */ +html[data-theme="light"] .highlight .gd { color: #007faa } /* Generic.Deleted */ +html[data-theme="light"] .highlight .ge { font-style: italic } /* Generic.Emph */ +html[data-theme="light"] .highlight .gh { color: #007faa } /* Generic.Heading */ +html[data-theme="light"] .highlight .gs { font-weight: bold } /* Generic.Strong */ +html[data-theme="light"] .highlight .gu { color: #007faa } /* Generic.Subheading */ +html[data-theme="light"] .highlight .kc { color: #7928a1 } /* Keyword.Constant */ +html[data-theme="light"] .highlight .kd { color: #7928a1 } /* Keyword.Declaration */ +html[data-theme="light"] .highlight .kn { color: #7928a1 } /* Keyword.Namespace */ +html[data-theme="light"] .highlight .kp { color: #7928a1 } /* Keyword.Pseudo */ +html[data-theme="light"] .highlight .kr { color: #7928a1 } /* Keyword.Reserved */ +html[data-theme="light"] .highlight .kt { color: #797129 } /* Keyword.Type */ +html[data-theme="light"] .highlight .ld { color: #797129 } /* Literal.Date */ +html[data-theme="light"] .highlight .m { color: #797129 } /* Literal.Number */ +html[data-theme="light"] .highlight .s { color: #008000 } /* Literal.String */ +html[data-theme="light"] .highlight .na { color: #797129 } /* Name.Attribute */ +html[data-theme="light"] .highlight .nb { color: #797129 } /* Name.Builtin */ +html[data-theme="light"] .highlight .nc { color: #007faa } /* Name.Class */ +html[data-theme="light"] .highlight .no { color: #007faa } /* Name.Constant */ +html[data-theme="light"] .highlight .nd { color: #797129 } /* Name.Decorator */ +html[data-theme="light"] .highlight .ni { color: #008000 } /* Name.Entity */ +html[data-theme="light"] .highlight .ne { color: #7928a1 } /* Name.Exception */ +html[data-theme="light"] .highlight .nf { color: #007faa } /* Name.Function */ +html[data-theme="light"] .highlight .nl { color: #797129 } /* Name.Label */ +html[data-theme="light"] .highlight .nn { color: #545454 } /* Name.Namespace */ +html[data-theme="light"] .highlight .nx { color: #545454 } /* Name.Other */ +html[data-theme="light"] .highlight .py { color: #007faa } /* Name.Property */ +html[data-theme="light"] .highlight .nt { color: #007faa } /* Name.Tag */ +html[data-theme="light"] .highlight .nv { color: #d91e18 } /* Name.Variable */ +html[data-theme="light"] .highlight .ow { color: #7928a1 } /* Operator.Word */ +html[data-theme="light"] .highlight .pm { color: #545454 } /* Punctuation.Marker */ +html[data-theme="light"] .highlight .w { color: #545454 } /* Text.Whitespace */ +html[data-theme="light"] .highlight .mb { color: #797129 } /* Literal.Number.Bin */ +html[data-theme="light"] .highlight .mf { color: #797129 } /* Literal.Number.Float */ +html[data-theme="light"] .highlight .mh { color: #797129 } /* Literal.Number.Hex */ +html[data-theme="light"] .highlight .mi { color: #797129 } /* Literal.Number.Integer */ +html[data-theme="light"] .highlight .mo { color: #797129 } /* Literal.Number.Oct */ +html[data-theme="light"] .highlight .sa { color: #008000 } /* Literal.String.Affix */ +html[data-theme="light"] .highlight .sb { color: #008000 } /* Literal.String.Backtick */ +html[data-theme="light"] .highlight .sc { color: #008000 } /* Literal.String.Char */ +html[data-theme="light"] .highlight .dl { color: #008000 } /* Literal.String.Delimiter */ +html[data-theme="light"] .highlight .sd { color: #008000 } /* Literal.String.Doc */ +html[data-theme="light"] .highlight .s2 { color: #008000 } /* Literal.String.Double */ +html[data-theme="light"] .highlight .se { color: #008000 } /* Literal.String.Escape */ +html[data-theme="light"] .highlight .sh { color: #008000 } /* Literal.String.Heredoc */ +html[data-theme="light"] .highlight .si { color: #008000 } /* Literal.String.Interpol */ +html[data-theme="light"] .highlight .sx { color: #008000 } /* Literal.String.Other */ +html[data-theme="light"] .highlight .sr { color: #d91e18 } /* Literal.String.Regex */ +html[data-theme="light"] .highlight .s1 { color: #008000 } /* Literal.String.Single */ +html[data-theme="light"] .highlight .ss { color: #007faa } /* Literal.String.Symbol */ +html[data-theme="light"] .highlight .bp { color: #797129 } /* Name.Builtin.Pseudo */ +html[data-theme="light"] .highlight .fm { color: #007faa } /* Name.Function.Magic */ +html[data-theme="light"] .highlight .vc { color: #d91e18 } /* Name.Variable.Class */ +html[data-theme="light"] .highlight .vg { color: #d91e18 } /* Name.Variable.Global */ +html[data-theme="light"] .highlight .vi { color: #d91e18 } /* Name.Variable.Instance */ +html[data-theme="light"] .highlight .vm { color: #797129 } /* Name.Variable.Magic */ +html[data-theme="light"] .highlight .il { color: #797129 } /* Literal.Number.Integer.Long */ +html[data-theme="dark"] .highlight pre { line-height: 125%; } +html[data-theme="dark"] .highlight td.linenos .normal { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } +html[data-theme="dark"] .highlight span.linenos { color: inherit; background-color: transparent; padding-left: 5px; padding-right: 5px; } +html[data-theme="dark"] .highlight td.linenos .special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +html[data-theme="dark"] .highlight span.linenos.special { color: #000000; background-color: #ffffc0; padding-left: 5px; padding-right: 5px; } +html[data-theme="dark"] .highlight .hll { background-color: #ffd9002e } +html[data-theme="dark"] .highlight { background: #2b2b2b; color: #f8f8f2 } +html[data-theme="dark"] .highlight .c { color: #ffd900 } /* Comment */ +html[data-theme="dark"] .highlight .err { color: #ffa07a } /* Error */ +html[data-theme="dark"] .highlight .k { color: #dcc6e0 } /* Keyword */ +html[data-theme="dark"] .highlight .l { color: #ffd900 } /* Literal */ +html[data-theme="dark"] .highlight .n { color: #f8f8f2 } /* Name */ +html[data-theme="dark"] .highlight .o { color: #abe338 } /* Operator */ +html[data-theme="dark"] .highlight .p { color: #f8f8f2 } /* Punctuation */ +html[data-theme="dark"] .highlight .ch { color: #ffd900 } /* Comment.Hashbang */ +html[data-theme="dark"] .highlight .cm { color: #ffd900 } /* Comment.Multiline */ +html[data-theme="dark"] .highlight .cp { color: #ffd900 } /* Comment.Preproc */ +html[data-theme="dark"] .highlight .cpf { color: #ffd900 } /* Comment.PreprocFile */ +html[data-theme="dark"] .highlight .c1 { color: #ffd900 } /* Comment.Single */ +html[data-theme="dark"] .highlight .cs { color: #ffd900 } /* Comment.Special */ +html[data-theme="dark"] .highlight .gd { color: #00e0e0 } /* Generic.Deleted */ +html[data-theme="dark"] .highlight .ge { font-style: italic } /* Generic.Emph */ +html[data-theme="dark"] .highlight .gh { color: #00e0e0 } /* Generic.Heading */ +html[data-theme="dark"] .highlight .gs { font-weight: bold } /* Generic.Strong */ +html[data-theme="dark"] .highlight .gu { color: #00e0e0 } /* Generic.Subheading */ +html[data-theme="dark"] .highlight .kc { color: #dcc6e0 } /* Keyword.Constant */ +html[data-theme="dark"] .highlight .kd { color: #dcc6e0 } /* Keyword.Declaration */ +html[data-theme="dark"] .highlight .kn { color: #dcc6e0 } /* Keyword.Namespace */ +html[data-theme="dark"] .highlight .kp { color: #dcc6e0 } /* Keyword.Pseudo */ +html[data-theme="dark"] .highlight .kr { color: #dcc6e0 } /* Keyword.Reserved */ +html[data-theme="dark"] .highlight .kt { color: #ffd900 } /* Keyword.Type */ +html[data-theme="dark"] .highlight .ld { color: #ffd900 } /* Literal.Date */ +html[data-theme="dark"] .highlight .m { color: #ffd900 } /* Literal.Number */ +html[data-theme="dark"] .highlight .s { color: #abe338 } /* Literal.String */ +html[data-theme="dark"] .highlight .na { color: #ffd900 } /* Name.Attribute */ +html[data-theme="dark"] .highlight .nb { color: #ffd900 } /* Name.Builtin */ +html[data-theme="dark"] .highlight .nc { color: #00e0e0 } /* Name.Class */ +html[data-theme="dark"] .highlight .no { color: #00e0e0 } /* Name.Constant */ +html[data-theme="dark"] .highlight .nd { color: #ffd900 } /* Name.Decorator */ +html[data-theme="dark"] .highlight .ni { color: #abe338 } /* Name.Entity */ +html[data-theme="dark"] .highlight .ne { color: #dcc6e0 } /* Name.Exception */ +html[data-theme="dark"] .highlight .nf { color: #00e0e0 } /* Name.Function */ +html[data-theme="dark"] .highlight .nl { color: #ffd900 } /* Name.Label */ +html[data-theme="dark"] .highlight .nn { color: #f8f8f2 } /* Name.Namespace */ +html[data-theme="dark"] .highlight .nx { color: #f8f8f2 } /* Name.Other */ +html[data-theme="dark"] .highlight .py { color: #00e0e0 } /* Name.Property */ +html[data-theme="dark"] .highlight .nt { color: #00e0e0 } /* Name.Tag */ +html[data-theme="dark"] .highlight .nv { color: #ffa07a } /* Name.Variable */ +html[data-theme="dark"] .highlight .ow { color: #dcc6e0 } /* Operator.Word */ +html[data-theme="dark"] .highlight .pm { color: #f8f8f2 } /* Punctuation.Marker */ +html[data-theme="dark"] .highlight .w { color: #f8f8f2 } /* Text.Whitespace */ +html[data-theme="dark"] .highlight .mb { color: #ffd900 } /* Literal.Number.Bin */ +html[data-theme="dark"] .highlight .mf { color: #ffd900 } /* Literal.Number.Float */ +html[data-theme="dark"] .highlight .mh { color: #ffd900 } /* Literal.Number.Hex */ +html[data-theme="dark"] .highlight .mi { color: #ffd900 } /* Literal.Number.Integer */ +html[data-theme="dark"] .highlight .mo { color: #ffd900 } /* Literal.Number.Oct */ +html[data-theme="dark"] .highlight .sa { color: #abe338 } /* Literal.String.Affix */ +html[data-theme="dark"] .highlight .sb { color: #abe338 } /* Literal.String.Backtick */ +html[data-theme="dark"] .highlight .sc { color: #abe338 } /* Literal.String.Char */ +html[data-theme="dark"] .highlight .dl { color: #abe338 } /* Literal.String.Delimiter */ +html[data-theme="dark"] .highlight .sd { color: #abe338 } /* Literal.String.Doc */ +html[data-theme="dark"] .highlight .s2 { color: #abe338 } /* Literal.String.Double */ +html[data-theme="dark"] .highlight .se { color: #abe338 } /* Literal.String.Escape */ +html[data-theme="dark"] .highlight .sh { color: #abe338 } /* Literal.String.Heredoc */ +html[data-theme="dark"] .highlight .si { color: #abe338 } /* Literal.String.Interpol */ +html[data-theme="dark"] .highlight .sx { color: #abe338 } /* Literal.String.Other */ +html[data-theme="dark"] .highlight .sr { color: #ffa07a } /* Literal.String.Regex */ +html[data-theme="dark"] .highlight .s1 { color: #abe338 } /* Literal.String.Single */ +html[data-theme="dark"] .highlight .ss { color: #00e0e0 } /* Literal.String.Symbol */ +html[data-theme="dark"] .highlight .bp { color: #ffd900 } /* Name.Builtin.Pseudo */ +html[data-theme="dark"] .highlight .fm { color: #00e0e0 } /* Name.Function.Magic */ +html[data-theme="dark"] .highlight .vc { color: #ffa07a } /* Name.Variable.Class */ +html[data-theme="dark"] .highlight .vg { color: #ffa07a } /* Name.Variable.Global */ +html[data-theme="dark"] .highlight .vi { color: #ffa07a } /* Name.Variable.Instance */ +html[data-theme="dark"] .highlight .vm { color: #ffd900 } /* Name.Variable.Magic */ +html[data-theme="dark"] .highlight .il { color: #ffd900 } /* Literal.Number.Integer.Long */ \ No newline at end of file diff --git a/_static/sbt-webpack-macros.html b/_static/sbt-webpack-macros.html new file mode 100644 index 0000000..6cbf559 --- /dev/null +++ b/_static/sbt-webpack-macros.html @@ -0,0 +1,11 @@ + +{% macro head_pre_bootstrap() %} + +{% endmacro %} + +{% macro body_post() %} + +{% endmacro %} diff --git a/_static/scripts/bootstrap.js b/_static/scripts/bootstrap.js new file mode 100644 index 0000000..bda8a60 --- /dev/null +++ b/_static/scripts/bootstrap.js @@ -0,0 +1,3 @@ +/*! For license information please see bootstrap.js.LICENSE.txt */ +(()=>{"use strict";var t={d:(e,i)=>{for(var n in i)t.o(i,n)&&!t.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:i[n]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r:t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})}},e={};t.r(e),t.d(e,{afterMain:()=>w,afterRead:()=>b,afterWrite:()=>T,applyStyles:()=>D,arrow:()=>G,auto:()=>r,basePlacements:()=>a,beforeMain:()=>v,beforeRead:()=>g,beforeWrite:()=>E,bottom:()=>n,clippingParents:()=>h,computeStyles:()=>et,createPopper:()=>St,createPopperBase:()=>Lt,createPopperLite:()=>Dt,detectOverflow:()=>gt,end:()=>c,eventListeners:()=>nt,flip:()=>_t,hide:()=>yt,left:()=>o,main:()=>y,modifierPhases:()=>C,offset:()=>wt,placements:()=>m,popper:()=>u,popperGenerator:()=>kt,popperOffsets:()=>Et,preventOverflow:()=>At,read:()=>_,reference:()=>f,right:()=>s,start:()=>l,top:()=>i,variationPlacements:()=>p,viewport:()=>d,write:()=>A});var i="top",n="bottom",s="right",o="left",r="auto",a=[i,n,s,o],l="start",c="end",h="clippingParents",d="viewport",u="popper",f="reference",p=a.reduce((function(t,e){return t.concat([e+"-"+l,e+"-"+c])}),[]),m=[].concat(a,[r]).reduce((function(t,e){return t.concat([e,e+"-"+l,e+"-"+c])}),[]),g="beforeRead",_="read",b="afterRead",v="beforeMain",y="main",w="afterMain",E="beforeWrite",A="write",T="afterWrite",C=[g,_,b,v,y,w,E,A,T];function O(t){return t?(t.nodeName||"").toLowerCase():null}function x(t){if(null==t)return window;if("[object Window]"!==t.toString()){var e=t.ownerDocument;return e&&e.defaultView||window}return t}function k(t){return t instanceof x(t).Element||t instanceof Element}function L(t){return t instanceof x(t).HTMLElement||t instanceof HTMLElement}function S(t){return"undefined"!=typeof ShadowRoot&&(t instanceof x(t).ShadowRoot||t instanceof ShadowRoot)}const D={name:"applyStyles",enabled:!0,phase:"write",fn:function(t){var e=t.state;Object.keys(e.elements).forEach((function(t){var i=e.styles[t]||{},n=e.attributes[t]||{},s=e.elements[t];L(s)&&O(s)&&(Object.assign(s.style,i),Object.keys(n).forEach((function(t){var e=n[t];!1===e?s.removeAttribute(t):s.setAttribute(t,!0===e?"":e)})))}))},effect:function(t){var e=t.state,i={popper:{position:e.options.strategy,left:"0",top:"0",margin:"0"},arrow:{position:"absolute"},reference:{}};return Object.assign(e.elements.popper.style,i.popper),e.styles=i,e.elements.arrow&&Object.assign(e.elements.arrow.style,i.arrow),function(){Object.keys(e.elements).forEach((function(t){var n=e.elements[t],s=e.attributes[t]||{},o=Object.keys(e.styles.hasOwnProperty(t)?e.styles[t]:i[t]).reduce((function(t,e){return t[e]="",t}),{});L(n)&&O(n)&&(Object.assign(n.style,o),Object.keys(s).forEach((function(t){n.removeAttribute(t)})))}))}},requires:["computeStyles"]};function $(t){return t.split("-")[0]}var I=Math.max,N=Math.min,P=Math.round;function M(){var t=navigator.userAgentData;return null!=t&&t.brands&&Array.isArray(t.brands)?t.brands.map((function(t){return t.brand+"/"+t.version})).join(" "):navigator.userAgent}function j(){return!/^((?!chrome|android).)*safari/i.test(M())}function F(t,e,i){void 0===e&&(e=!1),void 0===i&&(i=!1);var n=t.getBoundingClientRect(),s=1,o=1;e&&L(t)&&(s=t.offsetWidth>0&&P(n.width)/t.offsetWidth||1,o=t.offsetHeight>0&&P(n.height)/t.offsetHeight||1);var r=(k(t)?x(t):window).visualViewport,a=!j()&&i,l=(n.left+(a&&r?r.offsetLeft:0))/s,c=(n.top+(a&&r?r.offsetTop:0))/o,h=n.width/s,d=n.height/o;return{width:h,height:d,top:c,right:l+h,bottom:c+d,left:l,x:l,y:c}}function H(t){var e=F(t),i=t.offsetWidth,n=t.offsetHeight;return Math.abs(e.width-i)<=1&&(i=e.width),Math.abs(e.height-n)<=1&&(n=e.height),{x:t.offsetLeft,y:t.offsetTop,width:i,height:n}}function B(t,e){var i=e.getRootNode&&e.getRootNode();if(t.contains(e))return!0;if(i&&S(i)){var n=e;do{if(n&&t.isSameNode(n))return!0;n=n.parentNode||n.host}while(n)}return!1}function W(t){return x(t).getComputedStyle(t)}function z(t){return["table","td","th"].indexOf(O(t))>=0}function R(t){return((k(t)?t.ownerDocument:t.document)||window.document).documentElement}function q(t){return"html"===O(t)?t:t.assignedSlot||t.parentNode||(S(t)?t.host:null)||R(t)}function V(t){return L(t)&&"fixed"!==W(t).position?t.offsetParent:null}function Y(t){for(var e=x(t),i=V(t);i&&z(i)&&"static"===W(i).position;)i=V(i);return i&&("html"===O(i)||"body"===O(i)&&"static"===W(i).position)?e:i||function(t){var e=/firefox/i.test(M());if(/Trident/i.test(M())&&L(t)&&"fixed"===W(t).position)return null;var i=q(t);for(S(i)&&(i=i.host);L(i)&&["html","body"].indexOf(O(i))<0;){var n=W(i);if("none"!==n.transform||"none"!==n.perspective||"paint"===n.contain||-1!==["transform","perspective"].indexOf(n.willChange)||e&&"filter"===n.willChange||e&&n.filter&&"none"!==n.filter)return i;i=i.parentNode}return null}(t)||e}function K(t){return["top","bottom"].indexOf(t)>=0?"x":"y"}function Q(t,e,i){return I(t,N(e,i))}function X(t){return Object.assign({},{top:0,right:0,bottom:0,left:0},t)}function U(t,e){return e.reduce((function(e,i){return e[i]=t,e}),{})}const G={name:"arrow",enabled:!0,phase:"main",fn:function(t){var e,r=t.state,l=t.name,c=t.options,h=r.elements.arrow,d=r.modifiersData.popperOffsets,u=$(r.placement),f=K(u),p=[o,s].indexOf(u)>=0?"height":"width";if(h&&d){var m=function(t,e){return X("number"!=typeof(t="function"==typeof t?t(Object.assign({},e.rects,{placement:e.placement})):t)?t:U(t,a))}(c.padding,r),g=H(h),_="y"===f?i:o,b="y"===f?n:s,v=r.rects.reference[p]+r.rects.reference[f]-d[f]-r.rects.popper[p],y=d[f]-r.rects.reference[f],w=Y(h),E=w?"y"===f?w.clientHeight||0:w.clientWidth||0:0,A=v/2-y/2,T=m[_],C=E-g[p]-m[b],O=E/2-g[p]/2+A,x=Q(T,O,C),k=f;r.modifiersData[l]=((e={})[k]=x,e.centerOffset=x-O,e)}},effect:function(t){var e=t.state,i=t.options.element,n=void 0===i?"[data-popper-arrow]":i;null!=n&&("string"!=typeof n||(n=e.elements.popper.querySelector(n)))&&B(e.elements.popper,n)&&(e.elements.arrow=n)},requires:["popperOffsets"],requiresIfExists:["preventOverflow"]};function J(t){return t.split("-")[1]}var Z={top:"auto",right:"auto",bottom:"auto",left:"auto"};function tt(t){var e,r=t.popper,a=t.popperRect,l=t.placement,h=t.variation,d=t.offsets,u=t.position,f=t.gpuAcceleration,p=t.adaptive,m=t.roundOffsets,g=t.isFixed,_=d.x,b=void 0===_?0:_,v=d.y,y=void 0===v?0:v,w="function"==typeof m?m({x:b,y}):{x:b,y};b=w.x,y=w.y;var E=d.hasOwnProperty("x"),A=d.hasOwnProperty("y"),T=o,C=i,O=window;if(p){var k=Y(r),L="clientHeight",S="clientWidth";k===x(r)&&"static"!==W(k=R(r)).position&&"absolute"===u&&(L="scrollHeight",S="scrollWidth"),(l===i||(l===o||l===s)&&h===c)&&(C=n,y-=(g&&k===O&&O.visualViewport?O.visualViewport.height:k[L])-a.height,y*=f?1:-1),l!==o&&(l!==i&&l!==n||h!==c)||(T=s,b-=(g&&k===O&&O.visualViewport?O.visualViewport.width:k[S])-a.width,b*=f?1:-1)}var D,$=Object.assign({position:u},p&&Z),I=!0===m?function(t,e){var i=t.x,n=t.y,s=e.devicePixelRatio||1;return{x:P(i*s)/s||0,y:P(n*s)/s||0}}({x:b,y},x(r)):{x:b,y};return b=I.x,y=I.y,f?Object.assign({},$,((D={})[C]=A?"0":"",D[T]=E?"0":"",D.transform=(O.devicePixelRatio||1)<=1?"translate("+b+"px, "+y+"px)":"translate3d("+b+"px, "+y+"px, 0)",D)):Object.assign({},$,((e={})[C]=A?y+"px":"",e[T]=E?b+"px":"",e.transform="",e))}const et={name:"computeStyles",enabled:!0,phase:"beforeWrite",fn:function(t){var e=t.state,i=t.options,n=i.gpuAcceleration,s=void 0===n||n,o=i.adaptive,r=void 0===o||o,a=i.roundOffsets,l=void 0===a||a,c={placement:$(e.placement),variation:J(e.placement),popper:e.elements.popper,popperRect:e.rects.popper,gpuAcceleration:s,isFixed:"fixed"===e.options.strategy};null!=e.modifiersData.popperOffsets&&(e.styles.popper=Object.assign({},e.styles.popper,tt(Object.assign({},c,{offsets:e.modifiersData.popperOffsets,position:e.options.strategy,adaptive:r,roundOffsets:l})))),null!=e.modifiersData.arrow&&(e.styles.arrow=Object.assign({},e.styles.arrow,tt(Object.assign({},c,{offsets:e.modifiersData.arrow,position:"absolute",adaptive:!1,roundOffsets:l})))),e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-placement":e.placement})},data:{}};var it={passive:!0};const nt={name:"eventListeners",enabled:!0,phase:"write",fn:function(){},effect:function(t){var e=t.state,i=t.instance,n=t.options,s=n.scroll,o=void 0===s||s,r=n.resize,a=void 0===r||r,l=x(e.elements.popper),c=[].concat(e.scrollParents.reference,e.scrollParents.popper);return o&&c.forEach((function(t){t.addEventListener("scroll",i.update,it)})),a&&l.addEventListener("resize",i.update,it),function(){o&&c.forEach((function(t){t.removeEventListener("scroll",i.update,it)})),a&&l.removeEventListener("resize",i.update,it)}},data:{}};var st={left:"right",right:"left",bottom:"top",top:"bottom"};function ot(t){return t.replace(/left|right|bottom|top/g,(function(t){return st[t]}))}var rt={start:"end",end:"start"};function at(t){return t.replace(/start|end/g,(function(t){return rt[t]}))}function lt(t){var e=x(t);return{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function ct(t){return F(R(t)).left+lt(t).scrollLeft}function ht(t){var e=W(t),i=e.overflow,n=e.overflowX,s=e.overflowY;return/auto|scroll|overlay|hidden/.test(i+s+n)}function dt(t){return["html","body","#document"].indexOf(O(t))>=0?t.ownerDocument.body:L(t)&&ht(t)?t:dt(q(t))}function ut(t,e){var i;void 0===e&&(e=[]);var n=dt(t),s=n===(null==(i=t.ownerDocument)?void 0:i.body),o=x(n),r=s?[o].concat(o.visualViewport||[],ht(n)?n:[]):n,a=e.concat(r);return s?a:a.concat(ut(q(r)))}function ft(t){return Object.assign({},t,{left:t.x,top:t.y,right:t.x+t.width,bottom:t.y+t.height})}function pt(t,e,i){return e===d?ft(function(t,e){var i=x(t),n=R(t),s=i.visualViewport,o=n.clientWidth,r=n.clientHeight,a=0,l=0;if(s){o=s.width,r=s.height;var c=j();(c||!c&&"fixed"===e)&&(a=s.offsetLeft,l=s.offsetTop)}return{width:o,height:r,x:a+ct(t),y:l}}(t,i)):k(e)?function(t,e){var i=F(t,!1,"fixed"===e);return i.top=i.top+t.clientTop,i.left=i.left+t.clientLeft,i.bottom=i.top+t.clientHeight,i.right=i.left+t.clientWidth,i.width=t.clientWidth,i.height=t.clientHeight,i.x=i.left,i.y=i.top,i}(e,i):ft(function(t){var e,i=R(t),n=lt(t),s=null==(e=t.ownerDocument)?void 0:e.body,o=I(i.scrollWidth,i.clientWidth,s?s.scrollWidth:0,s?s.clientWidth:0),r=I(i.scrollHeight,i.clientHeight,s?s.scrollHeight:0,s?s.clientHeight:0),a=-n.scrollLeft+ct(t),l=-n.scrollTop;return"rtl"===W(s||i).direction&&(a+=I(i.clientWidth,s?s.clientWidth:0)-o),{width:o,height:r,x:a,y:l}}(R(t)))}function mt(t){var e,r=t.reference,a=t.element,h=t.placement,d=h?$(h):null,u=h?J(h):null,f=r.x+r.width/2-a.width/2,p=r.y+r.height/2-a.height/2;switch(d){case i:e={x:f,y:r.y-a.height};break;case n:e={x:f,y:r.y+r.height};break;case s:e={x:r.x+r.width,y:p};break;case o:e={x:r.x-a.width,y:p};break;default:e={x:r.x,y:r.y}}var m=d?K(d):null;if(null!=m){var g="y"===m?"height":"width";switch(u){case l:e[m]=e[m]-(r[g]/2-a[g]/2);break;case c:e[m]=e[m]+(r[g]/2-a[g]/2)}}return e}function gt(t,e){void 0===e&&(e={});var o=e,r=o.placement,l=void 0===r?t.placement:r,c=o.strategy,p=void 0===c?t.strategy:c,m=o.boundary,g=void 0===m?h:m,_=o.rootBoundary,b=void 0===_?d:_,v=o.elementContext,y=void 0===v?u:v,w=o.altBoundary,E=void 0!==w&&w,A=o.padding,T=void 0===A?0:A,C=X("number"!=typeof T?T:U(T,a)),x=y===u?f:u,S=t.rects.popper,D=t.elements[E?x:y],$=function(t,e,i,n){var s="clippingParents"===e?function(t){var e=ut(q(t)),i=["absolute","fixed"].indexOf(W(t).position)>=0&&L(t)?Y(t):t;return k(i)?e.filter((function(t){return k(t)&&B(t,i)&&"body"!==O(t)})):[]}(t):[].concat(e),o=[].concat(s,[i]),r=o[0],a=o.reduce((function(e,i){var s=pt(t,i,n);return e.top=I(s.top,e.top),e.right=N(s.right,e.right),e.bottom=N(s.bottom,e.bottom),e.left=I(s.left,e.left),e}),pt(t,r,n));return a.width=a.right-a.left,a.height=a.bottom-a.top,a.x=a.left,a.y=a.top,a}(k(D)?D:D.contextElement||R(t.elements.popper),g,b,p),P=F(t.elements.reference),M=mt({reference:P,element:S,strategy:"absolute",placement:l}),j=ft(Object.assign({},S,M)),H=y===u?j:P,z={top:$.top-H.top+C.top,bottom:H.bottom-$.bottom+C.bottom,left:$.left-H.left+C.left,right:H.right-$.right+C.right},V=t.modifiersData.offset;if(y===u&&V){var K=V[l];Object.keys(z).forEach((function(t){var e=[s,n].indexOf(t)>=0?1:-1,o=[i,n].indexOf(t)>=0?"y":"x";z[t]+=K[o]*e}))}return z}const _t={name:"flip",enabled:!0,phase:"main",fn:function(t){var e=t.state,c=t.options,h=t.name;if(!e.modifiersData[h]._skip){for(var d=c.mainAxis,u=void 0===d||d,f=c.altAxis,g=void 0===f||f,_=c.fallbackPlacements,b=c.padding,v=c.boundary,y=c.rootBoundary,w=c.altBoundary,E=c.flipVariations,A=void 0===E||E,T=c.allowedAutoPlacements,C=e.options.placement,O=$(C),x=_||(O!==C&&A?function(t){if($(t)===r)return[];var e=ot(t);return[at(t),e,at(e)]}(C):[ot(C)]),k=[C].concat(x).reduce((function(t,i){return t.concat($(i)===r?function(t,e){void 0===e&&(e={});var i=e,n=i.placement,s=i.boundary,o=i.rootBoundary,r=i.padding,l=i.flipVariations,c=i.allowedAutoPlacements,h=void 0===c?m:c,d=J(n),u=d?l?p:p.filter((function(t){return J(t)===d})):a,f=u.filter((function(t){return h.indexOf(t)>=0}));0===f.length&&(f=u);var g=f.reduce((function(e,i){return e[i]=gt(t,{placement:i,boundary:s,rootBoundary:o,padding:r})[$(i)],e}),{});return Object.keys(g).sort((function(t,e){return g[t]-g[e]}))}(e,{placement:i,boundary:v,rootBoundary:y,padding:b,flipVariations:A,allowedAutoPlacements:T}):i)}),[]),L=e.rects.reference,S=e.rects.popper,D=new Map,I=!0,N=k[0],P=0;P=0,B=H?"width":"height",W=gt(e,{placement:M,boundary:v,rootBoundary:y,altBoundary:w,padding:b}),z=H?F?s:o:F?n:i;L[B]>S[B]&&(z=ot(z));var R=ot(z),q=[];if(u&&q.push(W[j]<=0),g&&q.push(W[z]<=0,W[R]<=0),q.every((function(t){return t}))){N=M,I=!1;break}D.set(M,q)}if(I)for(var V=function(t){var e=k.find((function(e){var i=D.get(e);if(i)return i.slice(0,t).every((function(t){return t}))}));if(e)return N=e,"break"},Y=A?3:1;Y>0&&"break"!==V(Y);Y--);e.placement!==N&&(e.modifiersData[h]._skip=!0,e.placement=N,e.reset=!0)}},requiresIfExists:["offset"],data:{_skip:!1}};function bt(t,e,i){return void 0===i&&(i={x:0,y:0}),{top:t.top-e.height-i.y,right:t.right-e.width+i.x,bottom:t.bottom-e.height+i.y,left:t.left-e.width-i.x}}function vt(t){return[i,s,n,o].some((function(e){return t[e]>=0}))}const yt={name:"hide",enabled:!0,phase:"main",requiresIfExists:["preventOverflow"],fn:function(t){var e=t.state,i=t.name,n=e.rects.reference,s=e.rects.popper,o=e.modifiersData.preventOverflow,r=gt(e,{elementContext:"reference"}),a=gt(e,{altBoundary:!0}),l=bt(r,n),c=bt(a,s,o),h=vt(l),d=vt(c);e.modifiersData[i]={referenceClippingOffsets:l,popperEscapeOffsets:c,isReferenceHidden:h,hasPopperEscaped:d},e.attributes.popper=Object.assign({},e.attributes.popper,{"data-popper-reference-hidden":h,"data-popper-escaped":d})}},wt={name:"offset",enabled:!0,phase:"main",requires:["popperOffsets"],fn:function(t){var e=t.state,n=t.options,r=t.name,a=n.offset,l=void 0===a?[0,0]:a,c=m.reduce((function(t,n){return t[n]=function(t,e,n){var r=$(t),a=[o,i].indexOf(r)>=0?-1:1,l="function"==typeof n?n(Object.assign({},e,{placement:t})):n,c=l[0],h=l[1];return c=c||0,h=(h||0)*a,[o,s].indexOf(r)>=0?{x:h,y:c}:{x:c,y:h}}(n,e.rects,l),t}),{}),h=c[e.placement],d=h.x,u=h.y;null!=e.modifiersData.popperOffsets&&(e.modifiersData.popperOffsets.x+=d,e.modifiersData.popperOffsets.y+=u),e.modifiersData[r]=c}},Et={name:"popperOffsets",enabled:!0,phase:"read",fn:function(t){var e=t.state,i=t.name;e.modifiersData[i]=mt({reference:e.rects.reference,element:e.rects.popper,strategy:"absolute",placement:e.placement})},data:{}},At={name:"preventOverflow",enabled:!0,phase:"main",fn:function(t){var e=t.state,r=t.options,a=t.name,c=r.mainAxis,h=void 0===c||c,d=r.altAxis,u=void 0!==d&&d,f=r.boundary,p=r.rootBoundary,m=r.altBoundary,g=r.padding,_=r.tether,b=void 0===_||_,v=r.tetherOffset,y=void 0===v?0:v,w=gt(e,{boundary:f,rootBoundary:p,padding:g,altBoundary:m}),E=$(e.placement),A=J(e.placement),T=!A,C=K(E),O="x"===C?"y":"x",x=e.modifiersData.popperOffsets,k=e.rects.reference,L=e.rects.popper,S="function"==typeof y?y(Object.assign({},e.rects,{placement:e.placement})):y,D="number"==typeof S?{mainAxis:S,altAxis:S}:Object.assign({mainAxis:0,altAxis:0},S),P=e.modifiersData.offset?e.modifiersData.offset[e.placement]:null,M={x:0,y:0};if(x){if(h){var j,F="y"===C?i:o,B="y"===C?n:s,W="y"===C?"height":"width",z=x[C],R=z+w[F],q=z-w[B],V=b?-L[W]/2:0,X=A===l?k[W]:L[W],U=A===l?-L[W]:-k[W],G=e.elements.arrow,Z=b&&G?H(G):{width:0,height:0},tt=e.modifiersData["arrow#persistent"]?e.modifiersData["arrow#persistent"].padding:{top:0,right:0,bottom:0,left:0},et=tt[F],it=tt[B],nt=Q(0,k[W],Z[W]),st=T?k[W]/2-V-nt-et-D.mainAxis:X-nt-et-D.mainAxis,ot=T?-k[W]/2+V+nt+it+D.mainAxis:U+nt+it+D.mainAxis,rt=e.elements.arrow&&Y(e.elements.arrow),at=rt?"y"===C?rt.clientTop||0:rt.clientLeft||0:0,lt=null!=(j=null==P?void 0:P[C])?j:0,ct=z+ot-lt,ht=Q(b?N(R,z+st-lt-at):R,z,b?I(q,ct):q);x[C]=ht,M[C]=ht-z}if(u){var dt,ut="x"===C?i:o,ft="x"===C?n:s,pt=x[O],mt="y"===O?"height":"width",_t=pt+w[ut],bt=pt-w[ft],vt=-1!==[i,o].indexOf(E),yt=null!=(dt=null==P?void 0:P[O])?dt:0,wt=vt?_t:pt-k[mt]-L[mt]-yt+D.altAxis,Et=vt?pt+k[mt]+L[mt]-yt-D.altAxis:bt,At=b&&vt?function(t,e,i){var n=Q(t,e,i);return n>i?i:n}(wt,pt,Et):Q(b?wt:_t,pt,b?Et:bt);x[O]=At,M[O]=At-pt}e.modifiersData[a]=M}},requiresIfExists:["offset"]};function Tt(t,e,i){void 0===i&&(i=!1);var n,s,o=L(e),r=L(e)&&function(t){var e=t.getBoundingClientRect(),i=P(e.width)/t.offsetWidth||1,n=P(e.height)/t.offsetHeight||1;return 1!==i||1!==n}(e),a=R(e),l=F(t,r,i),c={scrollLeft:0,scrollTop:0},h={x:0,y:0};return(o||!o&&!i)&&(("body"!==O(e)||ht(a))&&(c=(n=e)!==x(n)&&L(n)?{scrollLeft:(s=n).scrollLeft,scrollTop:s.scrollTop}:lt(n)),L(e)?((h=F(e,!0)).x+=e.clientLeft,h.y+=e.clientTop):a&&(h.x=ct(a))),{x:l.left+c.scrollLeft-h.x,y:l.top+c.scrollTop-h.y,width:l.width,height:l.height}}function Ct(t){var e=new Map,i=new Set,n=[];function s(t){i.add(t.name),[].concat(t.requires||[],t.requiresIfExists||[]).forEach((function(t){if(!i.has(t)){var n=e.get(t);n&&s(n)}})),n.push(t)}return t.forEach((function(t){e.set(t.name,t)})),t.forEach((function(t){i.has(t.name)||s(t)})),n}var Ot={placement:"bottom",modifiers:[],strategy:"absolute"};function xt(){for(var t=arguments.length,e=new Array(t),i=0;i$t.has(t)&&$t.get(t).get(e)||null,remove(t,e){if(!$t.has(t))return;const i=$t.get(t);i.delete(e),0===i.size&&$t.delete(t)}},Nt="transitionend",Pt=t=>(t&&window.CSS&&window.CSS.escape&&(t=t.replace(/#([^\s"#']+)/g,((t,e)=>`#${CSS.escape(e)}`))),t),Mt=t=>{t.dispatchEvent(new Event(Nt))},jt=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),Ft=t=>jt(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(Pt(t)):null,Ht=t=>{if(!jt(t)||0===t.getClientRects().length)return!1;const e="visible"===getComputedStyle(t).getPropertyValue("visibility"),i=t.closest("details:not([open])");if(!i)return e;if(i!==t){const e=t.closest("summary");if(e&&e.parentNode!==i)return!1;if(null===e)return!1}return e},Bt=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),Wt=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?Wt(t.parentNode):null},zt=()=>{},Rt=t=>{t.offsetHeight},qt=()=>window.jQuery&&!document.body.hasAttribute("data-bs-no-jquery")?window.jQuery:null,Vt=[],Yt=()=>"rtl"===document.documentElement.dir,Kt=t=>{var e;e=()=>{const e=qt();if(e){const i=t.NAME,n=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=n,t.jQueryInterface)}},"loading"===document.readyState?(Vt.length||document.addEventListener("DOMContentLoaded",(()=>{for(const t of Vt)t()})),Vt.push(e)):e()},Qt=(t,e=[],i=t)=>"function"==typeof t?t(...e):i,Xt=(t,e,i=!0)=>{if(!i)return void Qt(t);const n=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const n=Number.parseFloat(e),s=Number.parseFloat(i);return n||s?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let s=!1;const o=({target:i})=>{i===e&&(s=!0,e.removeEventListener(Nt,o),Qt(t))};e.addEventListener(Nt,o),setTimeout((()=>{s||Mt(e)}),n)},Ut=(t,e,i,n)=>{const s=t.length;let o=t.indexOf(e);return-1===o?!i&&n?t[s-1]:t[0]:(o+=i?1:-1,n&&(o=(o+s)%s),t[Math.max(0,Math.min(o,s-1))])},Gt=/[^.]*(?=\..*)\.|.*/,Jt=/\..*/,Zt=/::\d+$/,te={};let ee=1;const ie={mouseenter:"mouseover",mouseleave:"mouseout"},ne=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function se(t,e){return e&&`${e}::${ee++}`||t.uidEvent||ee++}function oe(t){const e=se(t);return t.uidEvent=e,te[e]=te[e]||{},te[e]}function re(t,e,i=null){return Object.values(t).find((t=>t.callable===e&&t.delegationSelector===i))}function ae(t,e,i){const n="string"==typeof e,s=n?i:e||i;let o=de(t);return ne.has(o)||(o=t),[n,s,o]}function le(t,e,i,n,s){if("string"!=typeof e||!t)return;let[o,r,a]=ae(e,i,n);if(e in ie){const t=t=>function(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};r=t(r)}const l=oe(t),c=l[a]||(l[a]={}),h=re(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&s);const d=se(r,e.replace(Gt,"")),u=o?function(t,e,i){return function n(s){const o=t.querySelectorAll(e);for(let{target:r}=s;r&&r!==this;r=r.parentNode)for(const a of o)if(a===r)return fe(s,{delegateTarget:r}),n.oneOff&&ue.off(t,s.type,e,i),i.apply(r,[s])}}(t,i,r):function(t,e){return function i(n){return fe(n,{delegateTarget:t}),i.oneOff&&ue.off(t,n.type,e),e.apply(t,[n])}}(t,r);u.delegationSelector=o?i:null,u.callable=r,u.oneOff=s,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function ce(t,e,i,n,s){const o=re(e[i],n,s);o&&(t.removeEventListener(i,o,Boolean(s)),delete e[i][o.uidEvent])}function he(t,e,i,n){const s=e[i]||{};for(const[o,r]of Object.entries(s))o.includes(n)&&ce(t,e,i,r.callable,r.delegationSelector)}function de(t){return t=t.replace(Jt,""),ie[t]||t}const ue={on(t,e,i,n){le(t,e,i,n,!1)},one(t,e,i,n){le(t,e,i,n,!0)},off(t,e,i,n){if("string"!=typeof e||!t)return;const[s,o,r]=ae(e,i,n),a=r!==e,l=oe(t),c=l[r]||{},h=e.startsWith(".");if(void 0===o){if(h)for(const i of Object.keys(l))he(t,l,i,e.slice(1));for(const[i,n]of Object.entries(c)){const s=i.replace(Zt,"");a&&!e.includes(s)||ce(t,l,r,n.callable,n.delegationSelector)}}else{if(!Object.keys(c).length)return;ce(t,l,r,o,s?i:null)}},trigger(t,e,i){if("string"!=typeof e||!t)return null;const n=qt();let s=null,o=!0,r=!0,a=!1;e!==de(e)&&n&&(s=n.Event(e,i),n(t).trigger(s),o=!s.isPropagationStopped(),r=!s.isImmediatePropagationStopped(),a=s.isDefaultPrevented());const l=fe(new Event(e,{bubbles:o,cancelable:!0}),i);return a&&l.preventDefault(),r&&t.dispatchEvent(l),l.defaultPrevented&&s&&s.preventDefault(),l}};function fe(t,e={}){for(const[i,n]of Object.entries(e))try{t[i]=n}catch(e){Object.defineProperty(t,i,{configurable:!0,get:()=>n})}return t}function pe(t){if("true"===t)return!0;if("false"===t)return!1;if(t===Number(t).toString())return Number(t);if(""===t||"null"===t)return null;if("string"!=typeof t)return t;try{return JSON.parse(decodeURIComponent(t))}catch(e){return t}}function me(t){return t.replace(/[A-Z]/g,(t=>`-${t.toLowerCase()}`))}const ge={setDataAttribute(t,e,i){t.setAttribute(`data-bs-${me(e)}`,i)},removeDataAttribute(t,e){t.removeAttribute(`data-bs-${me(e)}`)},getDataAttributes(t){if(!t)return{};const e={},i=Object.keys(t.dataset).filter((t=>t.startsWith("bs")&&!t.startsWith("bsConfig")));for(const n of i){let i=n.replace(/^bs/,"");i=i.charAt(0).toLowerCase()+i.slice(1,i.length),e[i]=pe(t.dataset[n])}return e},getDataAttribute:(t,e)=>pe(t.getAttribute(`data-bs-${me(e)}`))};class _e{static get Default(){return{}}static get DefaultType(){return{}}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}_getConfig(t){return t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t}_mergeConfigObj(t,e){const i=jt(e)?ge.getDataAttribute(e,"config"):{};return{...this.constructor.Default,..."object"==typeof i?i:{},...jt(e)?ge.getDataAttributes(e):{},..."object"==typeof t?t:{}}}_typeCheckConfig(t,e=this.constructor.DefaultType){for(const[n,s]of Object.entries(e)){const e=t[n],o=jt(e)?"element":null==(i=e)?`${i}`:Object.prototype.toString.call(i).match(/\s([a-z]+)/i)[1].toLowerCase();if(!new RegExp(s).test(o))throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option "${n}" provided type "${o}" but expected type "${s}".`)}var i}}class be extends _e{constructor(t,e){super(),(t=Ft(t))&&(this._element=t,this._config=this._getConfig(e),It.set(this._element,this.constructor.DATA_KEY,this))}dispose(){It.remove(this._element,this.constructor.DATA_KEY),ue.off(this._element,this.constructor.EVENT_KEY);for(const t of Object.getOwnPropertyNames(this))this[t]=null}_queueCallback(t,e,i=!0){Xt(t,e,i)}_getConfig(t){return t=this._mergeConfigObj(t,this._element),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}static getInstance(t){return It.get(Ft(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.3.2"}static get DATA_KEY(){return`bs.${this.NAME}`}static get EVENT_KEY(){return`.${this.DATA_KEY}`}static eventName(t){return`${t}${this.EVENT_KEY}`}}const ve=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i=`#${i.split("#")[1]}`),e=i&&"#"!==i?Pt(i.trim()):null}return e},ye={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter((t=>t.matches(e))),parents(t,e){const i=[];let n=t.parentNode.closest(e);for(;n;)i.push(n),n=n.parentNode.closest(e);return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map((t=>`${t}:not([tabindex^="-"])`)).join(",");return this.find(e,t).filter((t=>!Bt(t)&&Ht(t)))},getSelectorFromElement(t){const e=ve(t);return e&&ye.findOne(e)?e:null},getElementFromSelector(t){const e=ve(t);return e?ye.findOne(e):null},getMultipleElementsFromSelector(t){const e=ve(t);return e?ye.find(e):[]}},we=(t,e="hide")=>{const i=`click.dismiss${t.EVENT_KEY}`,n=t.NAME;ue.on(document,i,`[data-bs-dismiss="${n}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),Bt(this))return;const s=ye.getElementFromSelector(this)||this.closest(`.${n}`);t.getOrCreateInstance(s)[e]()}))},Ee=".bs.alert",Ae=`close${Ee}`,Te=`closed${Ee}`;class Ce extends be{static get NAME(){return"alert"}close(){if(ue.trigger(this._element,Ae).defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback((()=>this._destroyElement()),this._element,t)}_destroyElement(){this._element.remove(),ue.trigger(this._element,Te),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=Ce.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}we(Ce,"close"),Kt(Ce);const Oe='[data-bs-toggle="button"]';class xe extends be{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=xe.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}ue.on(document,"click.bs.button.data-api",Oe,(t=>{t.preventDefault();const e=t.target.closest(Oe);xe.getOrCreateInstance(e).toggle()})),Kt(xe);const ke=".bs.swipe",Le=`touchstart${ke}`,Se=`touchmove${ke}`,De=`touchend${ke}`,$e=`pointerdown${ke}`,Ie=`pointerup${ke}`,Ne={endCallback:null,leftCallback:null,rightCallback:null},Pe={endCallback:"(function|null)",leftCallback:"(function|null)",rightCallback:"(function|null)"};class Me extends _e{constructor(t,e){super(),this._element=t,t&&Me.isSupported()&&(this._config=this._getConfig(e),this._deltaX=0,this._supportPointerEvents=Boolean(window.PointerEvent),this._initEvents())}static get Default(){return Ne}static get DefaultType(){return Pe}static get NAME(){return"swipe"}dispose(){ue.off(this._element,ke)}_start(t){this._supportPointerEvents?this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX):this._deltaX=t.touches[0].clientX}_end(t){this._eventIsPointerPenTouch(t)&&(this._deltaX=t.clientX-this._deltaX),this._handleSwipe(),Qt(this._config.endCallback)}_move(t){this._deltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this._deltaX}_handleSwipe(){const t=Math.abs(this._deltaX);if(t<=40)return;const e=t/this._deltaX;this._deltaX=0,e&&Qt(e>0?this._config.rightCallback:this._config.leftCallback)}_initEvents(){this._supportPointerEvents?(ue.on(this._element,$e,(t=>this._start(t))),ue.on(this._element,Ie,(t=>this._end(t))),this._element.classList.add("pointer-event")):(ue.on(this._element,Le,(t=>this._start(t))),ue.on(this._element,Se,(t=>this._move(t))),ue.on(this._element,De,(t=>this._end(t))))}_eventIsPointerPenTouch(t){return this._supportPointerEvents&&("pen"===t.pointerType||"touch"===t.pointerType)}static isSupported(){return"ontouchstart"in document.documentElement||navigator.maxTouchPoints>0}}const je=".bs.carousel",Fe=".data-api",He="next",Be="prev",We="left",ze="right",Re=`slide${je}`,qe=`slid${je}`,Ve=`keydown${je}`,Ye=`mouseenter${je}`,Ke=`mouseleave${je}`,Qe=`dragstart${je}`,Xe=`load${je}${Fe}`,Ue=`click${je}${Fe}`,Ge="carousel",Je="active",Ze=".active",ti=".carousel-item",ei=Ze+ti,ii={ArrowLeft:ze,ArrowRight:We},ni={interval:5e3,keyboard:!0,pause:"hover",ride:!1,touch:!0,wrap:!0},si={interval:"(number|boolean)",keyboard:"boolean",pause:"(string|boolean)",ride:"(boolean|string)",touch:"boolean",wrap:"boolean"};class oi extends be{constructor(t,e){super(t,e),this._interval=null,this._activeElement=null,this._isSliding=!1,this.touchTimeout=null,this._swipeHelper=null,this._indicatorsElement=ye.findOne(".carousel-indicators",this._element),this._addEventListeners(),this._config.ride===Ge&&this.cycle()}static get Default(){return ni}static get DefaultType(){return si}static get NAME(){return"carousel"}next(){this._slide(He)}nextWhenVisible(){!document.hidden&&Ht(this._element)&&this.next()}prev(){this._slide(Be)}pause(){this._isSliding&&Mt(this._element),this._clearInterval()}cycle(){this._clearInterval(),this._updateInterval(),this._interval=setInterval((()=>this.nextWhenVisible()),this._config.interval)}_maybeEnableCycle(){this._config.ride&&(this._isSliding?ue.one(this._element,qe,(()=>this.cycle())):this.cycle())}to(t){const e=this._getItems();if(t>e.length-1||t<0)return;if(this._isSliding)return void ue.one(this._element,qe,(()=>this.to(t)));const i=this._getItemIndex(this._getActive());if(i===t)return;const n=t>i?He:Be;this._slide(n,e[t])}dispose(){this._swipeHelper&&this._swipeHelper.dispose(),super.dispose()}_configAfterMerge(t){return t.defaultInterval=t.interval,t}_addEventListeners(){this._config.keyboard&&ue.on(this._element,Ve,(t=>this._keydown(t))),"hover"===this._config.pause&&(ue.on(this._element,Ye,(()=>this.pause())),ue.on(this._element,Ke,(()=>this._maybeEnableCycle()))),this._config.touch&&Me.isSupported()&&this._addTouchEventListeners()}_addTouchEventListeners(){for(const t of ye.find(".carousel-item img",this._element))ue.on(t,Qe,(t=>t.preventDefault()));const t={leftCallback:()=>this._slide(this._directionToOrder(We)),rightCallback:()=>this._slide(this._directionToOrder(ze)),endCallback:()=>{"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout((()=>this._maybeEnableCycle()),500+this._config.interval))}};this._swipeHelper=new Me(this._element,t)}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=ii[t.key];e&&(t.preventDefault(),this._slide(this._directionToOrder(e)))}_getItemIndex(t){return this._getItems().indexOf(t)}_setActiveIndicatorElement(t){if(!this._indicatorsElement)return;const e=ye.findOne(Ze,this._indicatorsElement);e.classList.remove(Je),e.removeAttribute("aria-current");const i=ye.findOne(`[data-bs-slide-to="${t}"]`,this._indicatorsElement);i&&(i.classList.add(Je),i.setAttribute("aria-current","true"))}_updateInterval(){const t=this._activeElement||this._getActive();if(!t)return;const e=Number.parseInt(t.getAttribute("data-bs-interval"),10);this._config.interval=e||this._config.defaultInterval}_slide(t,e=null){if(this._isSliding)return;const i=this._getActive(),n=t===He,s=e||Ut(this._getItems(),i,n,this._config.wrap);if(s===i)return;const o=this._getItemIndex(s),r=e=>ue.trigger(this._element,e,{relatedTarget:s,direction:this._orderToDirection(t),from:this._getItemIndex(i),to:o});if(r(Re).defaultPrevented)return;if(!i||!s)return;const a=Boolean(this._interval);this.pause(),this._isSliding=!0,this._setActiveIndicatorElement(o),this._activeElement=s;const l=n?"carousel-item-start":"carousel-item-end",c=n?"carousel-item-next":"carousel-item-prev";s.classList.add(c),Rt(s),i.classList.add(l),s.classList.add(l),this._queueCallback((()=>{s.classList.remove(l,c),s.classList.add(Je),i.classList.remove(Je,c,l),this._isSliding=!1,r(qe)}),i,this._isAnimated()),a&&this.cycle()}_isAnimated(){return this._element.classList.contains("slide")}_getActive(){return ye.findOne(ei,this._element)}_getItems(){return ye.find(ti,this._element)}_clearInterval(){this._interval&&(clearInterval(this._interval),this._interval=null)}_directionToOrder(t){return Yt()?t===We?Be:He:t===We?He:Be}_orderToDirection(t){return Yt()?t===Be?We:ze:t===Be?ze:We}static jQueryInterface(t){return this.each((function(){const e=oi.getOrCreateInstance(this,t);if("number"!=typeof t){if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}else e.to(t)}))}}ue.on(document,Ue,"[data-bs-slide], [data-bs-slide-to]",(function(t){const e=ye.getElementFromSelector(this);if(!e||!e.classList.contains(Ge))return;t.preventDefault();const i=oi.getOrCreateInstance(e),n=this.getAttribute("data-bs-slide-to");return n?(i.to(n),void i._maybeEnableCycle()):"next"===ge.getDataAttribute(this,"slide")?(i.next(),void i._maybeEnableCycle()):(i.prev(),void i._maybeEnableCycle())})),ue.on(window,Xe,(()=>{const t=ye.find('[data-bs-ride="carousel"]');for(const e of t)oi.getOrCreateInstance(e)})),Kt(oi);const ri=".bs.collapse",ai=`show${ri}`,li=`shown${ri}`,ci=`hide${ri}`,hi=`hidden${ri}`,di=`click${ri}.data-api`,ui="show",fi="collapse",pi="collapsing",mi=`:scope .${fi} .${fi}`,gi='[data-bs-toggle="collapse"]',_i={parent:null,toggle:!0},bi={parent:"(null|element)",toggle:"boolean"};class vi extends be{constructor(t,e){super(t,e),this._isTransitioning=!1,this._triggerArray=[];const i=ye.find(gi);for(const t of i){const e=ye.getSelectorFromElement(t),i=ye.find(e).filter((t=>t===this._element));null!==e&&i.length&&this._triggerArray.push(t)}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return _i}static get DefaultType(){return bi}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t=[];if(this._config.parent&&(t=this._getFirstLevelChildren(".collapse.show, .collapse.collapsing").filter((t=>t!==this._element)).map((t=>vi.getOrCreateInstance(t,{toggle:!1})))),t.length&&t[0]._isTransitioning)return;if(ue.trigger(this._element,ai).defaultPrevented)return;for(const e of t)e.hide();const e=this._getDimension();this._element.classList.remove(fi),this._element.classList.add(pi),this._element.style[e]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const i=`scroll${e[0].toUpperCase()+e.slice(1)}`;this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(pi),this._element.classList.add(fi,ui),this._element.style[e]="",ue.trigger(this._element,li)}),this._element,!0),this._element.style[e]=`${this._element[i]}px`}hide(){if(this._isTransitioning||!this._isShown())return;if(ue.trigger(this._element,ci).defaultPrevented)return;const t=this._getDimension();this._element.style[t]=`${this._element.getBoundingClientRect()[t]}px`,Rt(this._element),this._element.classList.add(pi),this._element.classList.remove(fi,ui);for(const t of this._triggerArray){const e=ye.getElementFromSelector(t);e&&!this._isShown(e)&&this._addAriaAndCollapsedClass([t],!1)}this._isTransitioning=!0,this._element.style[t]="",this._queueCallback((()=>{this._isTransitioning=!1,this._element.classList.remove(pi),this._element.classList.add(fi),ue.trigger(this._element,hi)}),this._element,!0)}_isShown(t=this._element){return t.classList.contains(ui)}_configAfterMerge(t){return t.toggle=Boolean(t.toggle),t.parent=Ft(t.parent),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=this._getFirstLevelChildren(gi);for(const e of t){const t=ye.getElementFromSelector(e);t&&this._addAriaAndCollapsedClass([e],this._isShown(t))}}_getFirstLevelChildren(t){const e=ye.find(mi,this._config.parent);return ye.find(t,this._config.parent).filter((t=>!e.includes(t)))}_addAriaAndCollapsedClass(t,e){if(t.length)for(const i of t)i.classList.toggle("collapsed",!e),i.setAttribute("aria-expanded",e)}static jQueryInterface(t){const e={};return"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1),this.each((function(){const i=vi.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}ue.on(document,di,gi,(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();for(const t of ye.getMultipleElementsFromSelector(this))vi.getOrCreateInstance(t,{toggle:!1}).toggle()})),Kt(vi);const yi="dropdown",wi=".bs.dropdown",Ei=".data-api",Ai="ArrowUp",Ti="ArrowDown",Ci=`hide${wi}`,Oi=`hidden${wi}`,xi=`show${wi}`,ki=`shown${wi}`,Li=`click${wi}${Ei}`,Si=`keydown${wi}${Ei}`,Di=`keyup${wi}${Ei}`,$i="show",Ii='[data-bs-toggle="dropdown"]:not(.disabled):not(:disabled)',Ni=`${Ii}.${$i}`,Pi=".dropdown-menu",Mi=Yt()?"top-end":"top-start",ji=Yt()?"top-start":"top-end",Fi=Yt()?"bottom-end":"bottom-start",Hi=Yt()?"bottom-start":"bottom-end",Bi=Yt()?"left-start":"right-start",Wi=Yt()?"right-start":"left-start",zi={autoClose:!0,boundary:"clippingParents",display:"dynamic",offset:[0,2],popperConfig:null,reference:"toggle"},Ri={autoClose:"(boolean|string)",boundary:"(string|element)",display:"string",offset:"(array|string|function)",popperConfig:"(null|object|function)",reference:"(string|element|object)"};class qi extends be{constructor(t,e){super(t,e),this._popper=null,this._parent=this._element.parentNode,this._menu=ye.next(this._element,Pi)[0]||ye.prev(this._element,Pi)[0]||ye.findOne(Pi,this._parent),this._inNavbar=this._detectNavbar()}static get Default(){return zi}static get DefaultType(){return Ri}static get NAME(){return yi}toggle(){return this._isShown()?this.hide():this.show()}show(){if(Bt(this._element)||this._isShown())return;const t={relatedTarget:this._element};if(!ue.trigger(this._element,xi,t).defaultPrevented){if(this._createPopper(),"ontouchstart"in document.documentElement&&!this._parent.closest(".navbar-nav"))for(const t of[].concat(...document.body.children))ue.on(t,"mouseover",zt);this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add($i),this._element.classList.add($i),ue.trigger(this._element,ki,t)}}hide(){if(Bt(this._element)||!this._isShown())return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){if(!ue.trigger(this._element,Ci,t).defaultPrevented){if("ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))ue.off(t,"mouseover",zt);this._popper&&this._popper.destroy(),this._menu.classList.remove($i),this._element.classList.remove($i),this._element.setAttribute("aria-expanded","false"),ge.removeDataAttribute(this._menu,"popper"),ue.trigger(this._element,Oi,t)}}_getConfig(t){if("object"==typeof(t=super._getConfig(t)).reference&&!jt(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError(`${yi.toUpperCase()}: Option "reference" provided type "object" without a required "getBoundingClientRect" method.`);return t}_createPopper(){if(void 0===e)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let t=this._element;"parent"===this._config.reference?t=this._parent:jt(this._config.reference)?t=Ft(this._config.reference):"object"==typeof this._config.reference&&(t=this._config.reference);const i=this._getPopperConfig();this._popper=St(t,this._menu,i)}_isShown(){return this._menu.classList.contains($i)}_getPlacement(){const t=this._parent;if(t.classList.contains("dropend"))return Bi;if(t.classList.contains("dropstart"))return Wi;if(t.classList.contains("dropup-center"))return"top";if(t.classList.contains("dropdown-center"))return"bottom";const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?ji:Mi:e?Hi:Fi}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return(this._inNavbar||"static"===this._config.display)&&(ge.setDataAttribute(this._menu,"popper","static"),t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,...Qt(this._config.popperConfig,[t])}}_selectMenuItem({key:t,target:e}){const i=ye.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter((t=>Ht(t)));i.length&&Ut(i,e,t===Ti,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=qi.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(2===t.button||"keyup"===t.type&&"Tab"!==t.key)return;const e=ye.find(Ni);for(const i of e){const e=qi.getInstance(i);if(!e||!1===e._config.autoClose)continue;const n=t.composedPath(),s=n.includes(e._menu);if(n.includes(e._element)||"inside"===e._config.autoClose&&!s||"outside"===e._config.autoClose&&s)continue;if(e._menu.contains(t.target)&&("keyup"===t.type&&"Tab"===t.key||/input|select|option|textarea|form/i.test(t.target.tagName)))continue;const o={relatedTarget:e._element};"click"===t.type&&(o.clickEvent=t),e._completeHide(o)}}static dataApiKeydownHandler(t){const e=/input|textarea/i.test(t.target.tagName),i="Escape"===t.key,n=[Ai,Ti].includes(t.key);if(!n&&!i)return;if(e&&!i)return;t.preventDefault();const s=this.matches(Ii)?this:ye.prev(this,Ii)[0]||ye.next(this,Ii)[0]||ye.findOne(Ii,t.delegateTarget.parentNode),o=qi.getOrCreateInstance(s);if(n)return t.stopPropagation(),o.show(),void o._selectMenuItem(t);o._isShown()&&(t.stopPropagation(),o.hide(),s.focus())}}ue.on(document,Si,Ii,qi.dataApiKeydownHandler),ue.on(document,Si,Pi,qi.dataApiKeydownHandler),ue.on(document,Li,qi.clearMenus),ue.on(document,Di,qi.clearMenus),ue.on(document,Li,Ii,(function(t){t.preventDefault(),qi.getOrCreateInstance(this).toggle()})),Kt(qi);const Vi="backdrop",Yi="show",Ki=`mousedown.bs.${Vi}`,Qi={className:"modal-backdrop",clickCallback:null,isAnimated:!1,isVisible:!0,rootElement:"body"},Xi={className:"string",clickCallback:"(function|null)",isAnimated:"boolean",isVisible:"boolean",rootElement:"(element|string)"};class Ui extends _e{constructor(t){super(),this._config=this._getConfig(t),this._isAppended=!1,this._element=null}static get Default(){return Qi}static get DefaultType(){return Xi}static get NAME(){return Vi}show(t){if(!this._config.isVisible)return void Qt(t);this._append();const e=this._getElement();this._config.isAnimated&&Rt(e),e.classList.add(Yi),this._emulateAnimation((()=>{Qt(t)}))}hide(t){this._config.isVisible?(this._getElement().classList.remove(Yi),this._emulateAnimation((()=>{this.dispose(),Qt(t)}))):Qt(t)}dispose(){this._isAppended&&(ue.off(this._element,Ki),this._element.remove(),this._isAppended=!1)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_configAfterMerge(t){return t.rootElement=Ft(t.rootElement),t}_append(){if(this._isAppended)return;const t=this._getElement();this._config.rootElement.append(t),ue.on(t,Ki,(()=>{Qt(this._config.clickCallback)})),this._isAppended=!0}_emulateAnimation(t){Xt(t,this._getElement(),this._config.isAnimated)}}const Gi=".bs.focustrap",Ji=`focusin${Gi}`,Zi=`keydown.tab${Gi}`,tn="backward",en={autofocus:!0,trapElement:null},nn={autofocus:"boolean",trapElement:"element"};class sn extends _e{constructor(t){super(),this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}static get Default(){return en}static get DefaultType(){return nn}static get NAME(){return"focustrap"}activate(){this._isActive||(this._config.autofocus&&this._config.trapElement.focus(),ue.off(document,Gi),ue.on(document,Ji,(t=>this._handleFocusin(t))),ue.on(document,Zi,(t=>this._handleKeydown(t))),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,ue.off(document,Gi))}_handleFocusin(t){const{trapElement:e}=this._config;if(t.target===document||t.target===e||e.contains(t.target))return;const i=ye.focusableChildren(e);0===i.length?e.focus():this._lastTabNavDirection===tn?i[i.length-1].focus():i[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?tn:"forward")}}const on=".fixed-top, .fixed-bottom, .is-fixed, .sticky-top",rn=".sticky-top",an="padding-right",ln="margin-right";class cn{constructor(){this._element=document.body}getWidth(){const t=document.documentElement.clientWidth;return Math.abs(window.innerWidth-t)}hide(){const t=this.getWidth();this._disableOverFlow(),this._setElementAttributes(this._element,an,(e=>e+t)),this._setElementAttributes(on,an,(e=>e+t)),this._setElementAttributes(rn,ln,(e=>e-t))}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,an),this._resetElementAttributes(on,an),this._resetElementAttributes(rn,ln)}isOverflowing(){return this.getWidth()>0}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const n=this.getWidth();this._applyManipulationCallback(t,(t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+n)return;this._saveInitialAttribute(t,e);const s=window.getComputedStyle(t).getPropertyValue(e);t.style.setProperty(e,`${i(Number.parseFloat(s))}px`)}))}_saveInitialAttribute(t,e){const i=t.style.getPropertyValue(e);i&&ge.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,(t=>{const i=ge.getDataAttribute(t,e);null!==i?(ge.removeDataAttribute(t,e),t.style.setProperty(e,i)):t.style.removeProperty(e)}))}_applyManipulationCallback(t,e){if(jt(t))e(t);else for(const i of ye.find(t,this._element))e(i)}}const hn=".bs.modal",dn=`hide${hn}`,un=`hidePrevented${hn}`,fn=`hidden${hn}`,pn=`show${hn}`,mn=`shown${hn}`,gn=`resize${hn}`,_n=`click.dismiss${hn}`,bn=`mousedown.dismiss${hn}`,vn=`keydown.dismiss${hn}`,yn=`click${hn}.data-api`,wn="modal-open",En="show",An="modal-static",Tn={backdrop:!0,focus:!0,keyboard:!0},Cn={backdrop:"(boolean|string)",focus:"boolean",keyboard:"boolean"};class On extends be{constructor(t,e){super(t,e),this._dialog=ye.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._isTransitioning=!1,this._scrollBar=new cn,this._addEventListeners()}static get Default(){return Tn}static get DefaultType(){return Cn}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||ue.trigger(this._element,pn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isTransitioning=!0,this._scrollBar.hide(),document.body.classList.add(wn),this._adjustDialog(),this._backdrop.show((()=>this._showElement(t))))}hide(){this._isShown&&!this._isTransitioning&&(ue.trigger(this._element,dn).defaultPrevented||(this._isShown=!1,this._isTransitioning=!0,this._focustrap.deactivate(),this._element.classList.remove(En),this._queueCallback((()=>this._hideModal()),this._element,this._isAnimated())))}dispose(){ue.off(window,hn),ue.off(this._dialog,hn),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new Ui({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_showElement(t){document.body.contains(this._element)||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0;const e=ye.findOne(".modal-body",this._dialog);e&&(e.scrollTop=0),Rt(this._element),this._element.classList.add(En),this._queueCallback((()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,ue.trigger(this._element,mn,{relatedTarget:t})}),this._dialog,this._isAnimated())}_addEventListeners(){ue.on(this._element,vn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():this._triggerBackdropTransition())})),ue.on(window,gn,(()=>{this._isShown&&!this._isTransitioning&&this._adjustDialog()})),ue.on(this._element,bn,(t=>{ue.one(this._element,_n,(e=>{this._element===t.target&&this._element===e.target&&("static"!==this._config.backdrop?this._config.backdrop&&this.hide():this._triggerBackdropTransition())}))}))}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide((()=>{document.body.classList.remove(wn),this._resetAdjustments(),this._scrollBar.reset(),ue.trigger(this._element,fn)}))}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(ue.trigger(this._element,un).defaultPrevented)return;const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._element.style.overflowY;"hidden"===e||this._element.classList.contains(An)||(t||(this._element.style.overflowY="hidden"),this._element.classList.add(An),this._queueCallback((()=>{this._element.classList.remove(An),this._queueCallback((()=>{this._element.style.overflowY=e}),this._dialog)}),this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;if(i&&!t){const t=Yt()?"paddingLeft":"paddingRight";this._element.style[t]=`${e}px`}if(!i&&t){const t=Yt()?"paddingRight":"paddingLeft";this._element.style[t]=`${e}px`}}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=On.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}ue.on(document,yn,'[data-bs-toggle="modal"]',(function(t){const e=ye.getElementFromSelector(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),ue.one(e,pn,(t=>{t.defaultPrevented||ue.one(e,fn,(()=>{Ht(this)&&this.focus()}))}));const i=ye.findOne(".modal.show");i&&On.getInstance(i).hide(),On.getOrCreateInstance(e).toggle(this)})),we(On),Kt(On);const xn=".bs.offcanvas",kn=".data-api",Ln=`load${xn}${kn}`,Sn="show",Dn="showing",$n="hiding",In=".offcanvas.show",Nn=`show${xn}`,Pn=`shown${xn}`,Mn=`hide${xn}`,jn=`hidePrevented${xn}`,Fn=`hidden${xn}`,Hn=`resize${xn}`,Bn=`click${xn}${kn}`,Wn=`keydown.dismiss${xn}`,zn={backdrop:!0,keyboard:!0,scroll:!1},Rn={backdrop:"(boolean|string)",keyboard:"boolean",scroll:"boolean"};class qn extends be{constructor(t,e){super(t,e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get Default(){return zn}static get DefaultType(){return Rn}static get NAME(){return"offcanvas"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||ue.trigger(this._element,Nn,{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._backdrop.show(),this._config.scroll||(new cn).hide(),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add(Dn),this._queueCallback((()=>{this._config.scroll&&!this._config.backdrop||this._focustrap.activate(),this._element.classList.add(Sn),this._element.classList.remove(Dn),ue.trigger(this._element,Pn,{relatedTarget:t})}),this._element,!0))}hide(){this._isShown&&(ue.trigger(this._element,Mn).defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.add($n),this._backdrop.hide(),this._queueCallback((()=>{this._element.classList.remove(Sn,$n),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._config.scroll||(new cn).reset(),ue.trigger(this._element,Fn)}),this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_initializeBackDrop(){const t=Boolean(this._config.backdrop);return new Ui({className:"offcanvas-backdrop",isVisible:t,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:t?()=>{"static"!==this._config.backdrop?this.hide():ue.trigger(this._element,jn)}:null})}_initializeFocusTrap(){return new sn({trapElement:this._element})}_addEventListeners(){ue.on(this._element,Wn,(t=>{"Escape"===t.key&&(this._config.keyboard?this.hide():ue.trigger(this._element,jn))}))}static jQueryInterface(t){return this.each((function(){const e=qn.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}ue.on(document,Bn,'[data-bs-toggle="offcanvas"]',(function(t){const e=ye.getElementFromSelector(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),Bt(this))return;ue.one(e,Fn,(()=>{Ht(this)&&this.focus()}));const i=ye.findOne(In);i&&i!==e&&qn.getInstance(i).hide(),qn.getOrCreateInstance(e).toggle(this)})),ue.on(window,Ln,(()=>{for(const t of ye.find(In))qn.getOrCreateInstance(t).show()})),ue.on(window,Hn,(()=>{for(const t of ye.find("[aria-modal][class*=show][class*=offcanvas-]"))"fixed"!==getComputedStyle(t).position&&qn.getOrCreateInstance(t).hide()})),we(qn),Kt(qn);const Vn={"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},Yn=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Kn=/^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i,Qn=(t,e)=>{const i=t.nodeName.toLowerCase();return e.includes(i)?!Yn.has(i)||Boolean(Kn.test(t.nodeValue)):e.filter((t=>t instanceof RegExp)).some((t=>t.test(i)))},Xn={allowList:Vn,content:{},extraClass:"",html:!1,sanitize:!0,sanitizeFn:null,template:"
"},Un={allowList:"object",content:"object",extraClass:"(string|function)",html:"boolean",sanitize:"boolean",sanitizeFn:"(null|function)",template:"string"},Gn={entry:"(string|element|function|null)",selector:"(string|element)"};class Jn extends _e{constructor(t){super(),this._config=this._getConfig(t)}static get Default(){return Xn}static get DefaultType(){return Un}static get NAME(){return"TemplateFactory"}getContent(){return Object.values(this._config.content).map((t=>this._resolvePossibleFunction(t))).filter(Boolean)}hasContent(){return this.getContent().length>0}changeContent(t){return this._checkContent(t),this._config.content={...this._config.content,...t},this}toHtml(){const t=document.createElement("div");t.innerHTML=this._maybeSanitize(this._config.template);for(const[e,i]of Object.entries(this._config.content))this._setContent(t,i,e);const e=t.children[0],i=this._resolvePossibleFunction(this._config.extraClass);return i&&e.classList.add(...i.split(" ")),e}_typeCheckConfig(t){super._typeCheckConfig(t),this._checkContent(t.content)}_checkContent(t){for(const[e,i]of Object.entries(t))super._typeCheckConfig({selector:e,entry:i},Gn)}_setContent(t,e,i){const n=ye.findOne(i,t);n&&((e=this._resolvePossibleFunction(e))?jt(e)?this._putElementInTemplate(Ft(e),n):this._config.html?n.innerHTML=this._maybeSanitize(e):n.textContent=e:n.remove())}_maybeSanitize(t){return this._config.sanitize?function(t,e,i){if(!t.length)return t;if(i&&"function"==typeof i)return i(t);const n=(new window.DOMParser).parseFromString(t,"text/html"),s=[].concat(...n.body.querySelectorAll("*"));for(const t of s){const i=t.nodeName.toLowerCase();if(!Object.keys(e).includes(i)){t.remove();continue}const n=[].concat(...t.attributes),s=[].concat(e["*"]||[],e[i]||[]);for(const e of n)Qn(e,s)||t.removeAttribute(e.nodeName)}return n.body.innerHTML}(t,this._config.allowList,this._config.sanitizeFn):t}_resolvePossibleFunction(t){return Qt(t,[this])}_putElementInTemplate(t,e){if(this._config.html)return e.innerHTML="",void e.append(t);e.textContent=t.textContent}}const Zn=new Set(["sanitize","allowList","sanitizeFn"]),ts="fade",es="show",is=".modal",ns="hide.bs.modal",ss="hover",os="focus",rs={AUTO:"auto",TOP:"top",RIGHT:Yt()?"left":"right",BOTTOM:"bottom",LEFT:Yt()?"right":"left"},as={allowList:Vn,animation:!0,boundary:"clippingParents",container:!1,customClass:"",delay:0,fallbackPlacements:["top","right","bottom","left"],html:!1,offset:[0,6],placement:"top",popperConfig:null,sanitize:!0,sanitizeFn:null,selector:!1,template:'',title:"",trigger:"hover focus"},ls={allowList:"object",animation:"boolean",boundary:"(string|element)",container:"(string|element|boolean)",customClass:"(string|function)",delay:"(number|object)",fallbackPlacements:"array",html:"boolean",offset:"(array|string|function)",placement:"(string|function)",popperConfig:"(null|object|function)",sanitize:"boolean",sanitizeFn:"(null|function)",selector:"(string|boolean)",template:"string",title:"(string|element|function)",trigger:"string"};class cs extends be{constructor(t,i){if(void 0===e)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t,i),this._isEnabled=!0,this._timeout=0,this._isHovered=null,this._activeTrigger={},this._popper=null,this._templateFactory=null,this._newContent=null,this.tip=null,this._setListeners(),this._config.selector||this._fixTitle()}static get Default(){return as}static get DefaultType(){return ls}static get NAME(){return"tooltip"}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(){this._isEnabled&&(this._activeTrigger.click=!this._activeTrigger.click,this._isShown()?this._leave():this._enter())}dispose(){clearTimeout(this._timeout),ue.off(this._element.closest(is),ns,this._hideModalHandler),this._element.getAttribute("data-bs-original-title")&&this._element.setAttribute("title",this._element.getAttribute("data-bs-original-title")),this._disposePopper(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this._isWithContent()||!this._isEnabled)return;const t=ue.trigger(this._element,this.constructor.eventName("show")),e=(Wt(this._element)||this._element.ownerDocument.documentElement).contains(this._element);if(t.defaultPrevented||!e)return;this._disposePopper();const i=this._getTipElement();this._element.setAttribute("aria-describedby",i.getAttribute("id"));const{container:n}=this._config;if(this._element.ownerDocument.documentElement.contains(this.tip)||(n.append(i),ue.trigger(this._element,this.constructor.eventName("inserted"))),this._popper=this._createPopper(i),i.classList.add(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))ue.on(t,"mouseover",zt);this._queueCallback((()=>{ue.trigger(this._element,this.constructor.eventName("shown")),!1===this._isHovered&&this._leave(),this._isHovered=!1}),this.tip,this._isAnimated())}hide(){if(this._isShown()&&!ue.trigger(this._element,this.constructor.eventName("hide")).defaultPrevented){if(this._getTipElement().classList.remove(es),"ontouchstart"in document.documentElement)for(const t of[].concat(...document.body.children))ue.off(t,"mouseover",zt);this._activeTrigger.click=!1,this._activeTrigger[os]=!1,this._activeTrigger[ss]=!1,this._isHovered=null,this._queueCallback((()=>{this._isWithActiveTrigger()||(this._isHovered||this._disposePopper(),this._element.removeAttribute("aria-describedby"),ue.trigger(this._element,this.constructor.eventName("hidden")))}),this.tip,this._isAnimated())}}update(){this._popper&&this._popper.update()}_isWithContent(){return Boolean(this._getTitle())}_getTipElement(){return this.tip||(this.tip=this._createTipElement(this._newContent||this._getContentForTemplate())),this.tip}_createTipElement(t){const e=this._getTemplateFactory(t).toHtml();if(!e)return null;e.classList.remove(ts,es),e.classList.add(`bs-${this.constructor.NAME}-auto`);const i=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME).toString();return e.setAttribute("id",i),this._isAnimated()&&e.classList.add(ts),e}setContent(t){this._newContent=t,this._isShown()&&(this._disposePopper(),this.show())}_getTemplateFactory(t){return this._templateFactory?this._templateFactory.changeContent(t):this._templateFactory=new Jn({...this._config,content:t,extraClass:this._resolvePossibleFunction(this._config.customClass)}),this._templateFactory}_getContentForTemplate(){return{".tooltip-inner":this._getTitle()}}_getTitle(){return this._resolvePossibleFunction(this._config.title)||this._element.getAttribute("data-bs-original-title")}_initializeOnDelegatedTarget(t){return this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_isAnimated(){return this._config.animation||this.tip&&this.tip.classList.contains(ts)}_isShown(){return this.tip&&this.tip.classList.contains(es)}_createPopper(t){const e=Qt(this._config.placement,[this,t,this._element]),i=rs[e.toUpperCase()];return St(this._element,t,this._getPopperConfig(i))}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map((t=>Number.parseInt(t,10))):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return Qt(t,[this._element])}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"preSetPlacement",enabled:!0,phase:"beforeMain",fn:t=>{this._getTipElement().setAttribute("data-popper-placement",t.state.placement)}}]};return{...e,...Qt(this._config.popperConfig,[e])}}_setListeners(){const t=this._config.trigger.split(" ");for(const e of t)if("click"===e)ue.on(this._element,this.constructor.eventName("click"),this._config.selector,(t=>{this._initializeOnDelegatedTarget(t).toggle()}));else if("manual"!==e){const t=e===ss?this.constructor.eventName("mouseenter"):this.constructor.eventName("focusin"),i=e===ss?this.constructor.eventName("mouseleave"):this.constructor.eventName("focusout");ue.on(this._element,t,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusin"===t.type?os:ss]=!0,e._enter()})),ue.on(this._element,i,this._config.selector,(t=>{const e=this._initializeOnDelegatedTarget(t);e._activeTrigger["focusout"===t.type?os:ss]=e._element.contains(t.relatedTarget),e._leave()}))}this._hideModalHandler=()=>{this._element&&this.hide()},ue.on(this._element.closest(is),ns,this._hideModalHandler)}_fixTitle(){const t=this._element.getAttribute("title");t&&(this._element.getAttribute("aria-label")||this._element.textContent.trim()||this._element.setAttribute("aria-label",t),this._element.setAttribute("data-bs-original-title",t),this._element.removeAttribute("title"))}_enter(){this._isShown()||this._isHovered?this._isHovered=!0:(this._isHovered=!0,this._setTimeout((()=>{this._isHovered&&this.show()}),this._config.delay.show))}_leave(){this._isWithActiveTrigger()||(this._isHovered=!1,this._setTimeout((()=>{this._isHovered||this.hide()}),this._config.delay.hide))}_setTimeout(t,e){clearTimeout(this._timeout),this._timeout=setTimeout(t,e)}_isWithActiveTrigger(){return Object.values(this._activeTrigger).includes(!0)}_getConfig(t){const e=ge.getDataAttributes(this._element);for(const t of Object.keys(e))Zn.has(t)&&delete e[t];return t={...e,..."object"==typeof t&&t?t:{}},t=this._mergeConfigObj(t),t=this._configAfterMerge(t),this._typeCheckConfig(t),t}_configAfterMerge(t){return t.container=!1===t.container?document.body:Ft(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),t}_getDelegateConfig(){const t={};for(const[e,i]of Object.entries(this._config))this.constructor.Default[e]!==i&&(t[e]=i);return t.selector=!1,t.trigger="manual",t}_disposePopper(){this._popper&&(this._popper.destroy(),this._popper=null),this.tip&&(this.tip.remove(),this.tip=null)}static jQueryInterface(t){return this.each((function(){const e=cs.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}Kt(cs);const hs={...cs.Default,content:"",offset:[0,8],placement:"right",template:'',trigger:"click"},ds={...cs.DefaultType,content:"(null|string|element|function)"};class us extends cs{static get Default(){return hs}static get DefaultType(){return ds}static get NAME(){return"popover"}_isWithContent(){return this._getTitle()||this._getContent()}_getContentForTemplate(){return{".popover-header":this._getTitle(),".popover-body":this._getContent()}}_getContent(){return this._resolvePossibleFunction(this._config.content)}static jQueryInterface(t){return this.each((function(){const e=us.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}Kt(us);const fs=".bs.scrollspy",ps=`activate${fs}`,ms=`click${fs}`,gs=`load${fs}.data-api`,_s="active",bs="[href]",vs=".nav-link",ys=`${vs}, .nav-item > ${vs}, .list-group-item`,ws={offset:null,rootMargin:"0px 0px -25%",smoothScroll:!1,target:null,threshold:[.1,.5,1]},Es={offset:"(number|null)",rootMargin:"string",smoothScroll:"boolean",target:"element",threshold:"array"};class As extends be{constructor(t,e){super(t,e),this._targetLinks=new Map,this._observableSections=new Map,this._rootElement="visible"===getComputedStyle(this._element).overflowY?null:this._element,this._activeTarget=null,this._observer=null,this._previousScrollData={visibleEntryTop:0,parentScrollTop:0},this.refresh()}static get Default(){return ws}static get DefaultType(){return Es}static get NAME(){return"scrollspy"}refresh(){this._initializeTargetsAndObservables(),this._maybeEnableSmoothScroll(),this._observer?this._observer.disconnect():this._observer=this._getNewObserver();for(const t of this._observableSections.values())this._observer.observe(t)}dispose(){this._observer.disconnect(),super.dispose()}_configAfterMerge(t){return t.target=Ft(t.target)||document.body,t.rootMargin=t.offset?`${t.offset}px 0px -30%`:t.rootMargin,"string"==typeof t.threshold&&(t.threshold=t.threshold.split(",").map((t=>Number.parseFloat(t)))),t}_maybeEnableSmoothScroll(){this._config.smoothScroll&&(ue.off(this._config.target,ms),ue.on(this._config.target,ms,bs,(t=>{const e=this._observableSections.get(t.target.hash);if(e){t.preventDefault();const i=this._rootElement||window,n=e.offsetTop-this._element.offsetTop;if(i.scrollTo)return void i.scrollTo({top:n,behavior:"smooth"});i.scrollTop=n}})))}_getNewObserver(){const t={root:this._rootElement,threshold:this._config.threshold,rootMargin:this._config.rootMargin};return new IntersectionObserver((t=>this._observerCallback(t)),t)}_observerCallback(t){const e=t=>this._targetLinks.get(`#${t.target.id}`),i=t=>{this._previousScrollData.visibleEntryTop=t.target.offsetTop,this._process(e(t))},n=(this._rootElement||document.documentElement).scrollTop,s=n>=this._previousScrollData.parentScrollTop;this._previousScrollData.parentScrollTop=n;for(const o of t){if(!o.isIntersecting){this._activeTarget=null,this._clearActiveClass(e(o));continue}const t=o.target.offsetTop>=this._previousScrollData.visibleEntryTop;if(s&&t){if(i(o),!n)return}else s||t||i(o)}}_initializeTargetsAndObservables(){this._targetLinks=new Map,this._observableSections=new Map;const t=ye.find(bs,this._config.target);for(const e of t){if(!e.hash||Bt(e))continue;const t=ye.findOne(decodeURI(e.hash),this._element);Ht(t)&&(this._targetLinks.set(decodeURI(e.hash),e),this._observableSections.set(e.hash,t))}}_process(t){this._activeTarget!==t&&(this._clearActiveClass(this._config.target),this._activeTarget=t,t.classList.add(_s),this._activateParents(t),ue.trigger(this._element,ps,{relatedTarget:t}))}_activateParents(t){if(t.classList.contains("dropdown-item"))ye.findOne(".dropdown-toggle",t.closest(".dropdown")).classList.add(_s);else for(const e of ye.parents(t,".nav, .list-group"))for(const t of ye.prev(e,ys))t.classList.add(_s)}_clearActiveClass(t){t.classList.remove(_s);const e=ye.find(`${bs}.${_s}`,t);for(const t of e)t.classList.remove(_s)}static jQueryInterface(t){return this.each((function(){const e=As.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}ue.on(window,gs,(()=>{for(const t of ye.find('[data-bs-spy="scroll"]'))As.getOrCreateInstance(t)})),Kt(As);const Ts=".bs.tab",Cs=`hide${Ts}`,Os=`hidden${Ts}`,xs=`show${Ts}`,ks=`shown${Ts}`,Ls=`click${Ts}`,Ss=`keydown${Ts}`,Ds=`load${Ts}`,$s="ArrowLeft",Is="ArrowRight",Ns="ArrowUp",Ps="ArrowDown",Ms="Home",js="End",Fs="active",Hs="fade",Bs="show",Ws=".dropdown-toggle",zs=`:not(${Ws})`,Rs='[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',qs=`.nav-link${zs}, .list-group-item${zs}, [role="tab"]${zs}, ${Rs}`,Vs=`.${Fs}[data-bs-toggle="tab"], .${Fs}[data-bs-toggle="pill"], .${Fs}[data-bs-toggle="list"]`;class Ys extends be{constructor(t){super(t),this._parent=this._element.closest('.list-group, .nav, [role="tablist"]'),this._parent&&(this._setInitialAttributes(this._parent,this._getChildren()),ue.on(this._element,Ss,(t=>this._keydown(t))))}static get NAME(){return"tab"}show(){const t=this._element;if(this._elemIsActive(t))return;const e=this._getActiveElem(),i=e?ue.trigger(e,Cs,{relatedTarget:t}):null;ue.trigger(t,xs,{relatedTarget:e}).defaultPrevented||i&&i.defaultPrevented||(this._deactivate(e,t),this._activate(t,e))}_activate(t,e){t&&(t.classList.add(Fs),this._activate(ye.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.removeAttribute("tabindex"),t.setAttribute("aria-selected",!0),this._toggleDropDown(t,!0),ue.trigger(t,ks,{relatedTarget:e})):t.classList.add(Bs)}),t,t.classList.contains(Hs)))}_deactivate(t,e){t&&(t.classList.remove(Fs),t.blur(),this._deactivate(ye.getElementFromSelector(t)),this._queueCallback((()=>{"tab"===t.getAttribute("role")?(t.setAttribute("aria-selected",!1),t.setAttribute("tabindex","-1"),this._toggleDropDown(t,!1),ue.trigger(t,Os,{relatedTarget:e})):t.classList.remove(Bs)}),t,t.classList.contains(Hs)))}_keydown(t){if(![$s,Is,Ns,Ps,Ms,js].includes(t.key))return;t.stopPropagation(),t.preventDefault();const e=this._getChildren().filter((t=>!Bt(t)));let i;if([Ms,js].includes(t.key))i=e[t.key===Ms?0:e.length-1];else{const n=[Is,Ps].includes(t.key);i=Ut(e,t.target,n,!0)}i&&(i.focus({preventScroll:!0}),Ys.getOrCreateInstance(i).show())}_getChildren(){return ye.find(qs,this._parent)}_getActiveElem(){return this._getChildren().find((t=>this._elemIsActive(t)))||null}_setInitialAttributes(t,e){this._setAttributeIfNotExists(t,"role","tablist");for(const t of e)this._setInitialAttributesOnChild(t)}_setInitialAttributesOnChild(t){t=this._getInnerElement(t);const e=this._elemIsActive(t),i=this._getOuterElement(t);t.setAttribute("aria-selected",e),i!==t&&this._setAttributeIfNotExists(i,"role","presentation"),e||t.setAttribute("tabindex","-1"),this._setAttributeIfNotExists(t,"role","tab"),this._setInitialAttributesOnTargetPanel(t)}_setInitialAttributesOnTargetPanel(t){const e=ye.getElementFromSelector(t);e&&(this._setAttributeIfNotExists(e,"role","tabpanel"),t.id&&this._setAttributeIfNotExists(e,"aria-labelledby",`${t.id}`))}_toggleDropDown(t,e){const i=this._getOuterElement(t);if(!i.classList.contains("dropdown"))return;const n=(t,n)=>{const s=ye.findOne(t,i);s&&s.classList.toggle(n,e)};n(Ws,Fs),n(".dropdown-menu",Bs),i.setAttribute("aria-expanded",e)}_setAttributeIfNotExists(t,e,i){t.hasAttribute(e)||t.setAttribute(e,i)}_elemIsActive(t){return t.classList.contains(Fs)}_getInnerElement(t){return t.matches(qs)?t:ye.findOne(qs,t)}_getOuterElement(t){return t.closest(".nav-item, .list-group-item")||t}static jQueryInterface(t){return this.each((function(){const e=Ys.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t]()}}))}}ue.on(document,Ls,Rs,(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),Bt(this)||Ys.getOrCreateInstance(this).show()})),ue.on(window,Ds,(()=>{for(const t of ye.find(Vs))Ys.getOrCreateInstance(t)})),Kt(Ys);const Ks=".bs.toast",Qs=`mouseover${Ks}`,Xs=`mouseout${Ks}`,Us=`focusin${Ks}`,Gs=`focusout${Ks}`,Js=`hide${Ks}`,Zs=`hidden${Ks}`,to=`show${Ks}`,eo=`shown${Ks}`,io="hide",no="show",so="showing",oo={animation:"boolean",autohide:"boolean",delay:"number"},ro={animation:!0,autohide:!0,delay:5e3};class ao extends be{constructor(t,e){super(t,e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get Default(){return ro}static get DefaultType(){return oo}static get NAME(){return"toast"}show(){ue.trigger(this._element,to).defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove(io),Rt(this._element),this._element.classList.add(no,so),this._queueCallback((()=>{this._element.classList.remove(so),ue.trigger(this._element,eo),this._maybeScheduleHide()}),this._element,this._config.animation))}hide(){this.isShown()&&(ue.trigger(this._element,Js).defaultPrevented||(this._element.classList.add(so),this._queueCallback((()=>{this._element.classList.add(io),this._element.classList.remove(so,no),ue.trigger(this._element,Zs)}),this._element,this._config.animation)))}dispose(){this._clearTimeout(),this.isShown()&&this._element.classList.remove(no),super.dispose()}isShown(){return this._element.classList.contains(no)}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout((()=>{this.hide()}),this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){ue.on(this._element,Qs,(t=>this._onInteraction(t,!0))),ue.on(this._element,Xs,(t=>this._onInteraction(t,!1))),ue.on(this._element,Us,(t=>this._onInteraction(t,!0))),ue.on(this._element,Gs,(t=>this._onInteraction(t,!1)))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=ao.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}function lo(t){"loading"!=document.readyState?t():document.addEventListener("DOMContentLoaded",t)}we(ao),Kt(ao),lo((function(){[].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')).map((function(t){return new cs(t,{delay:{show:500,hide:100}})}))})),lo((function(){document.getElementById("pst-back-to-top").addEventListener("click",(function(){document.body.scrollTop=0,document.documentElement.scrollTop=0}))})),lo((function(){var t=document.getElementById("pst-back-to-top"),e=document.getElementsByClassName("bd-header")[0].getBoundingClientRect();window.addEventListener("scroll",(function(){this.oldScroll>this.scrollY&&this.scrollY>e.bottom?t.style.display="block":t.style.display="none",this.oldScroll=this.scrollY}))}))})(); +//# sourceMappingURL=bootstrap.js.map \ No newline at end of file diff --git a/_static/scripts/bootstrap.js.LICENSE.txt b/_static/scripts/bootstrap.js.LICENSE.txt new file mode 100644 index 0000000..10f979d --- /dev/null +++ b/_static/scripts/bootstrap.js.LICENSE.txt @@ -0,0 +1,5 @@ +/*! + * Bootstrap v5.3.2 (https://getbootstrap.com/) + * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ diff --git a/_static/scripts/bootstrap.js.map b/_static/scripts/bootstrap.js.map new file mode 100644 index 0000000..e5bc157 --- /dev/null +++ b/_static/scripts/bootstrap.js.map @@ -0,0 +1 @@ +{"version":3,"file":"scripts/bootstrap.js","mappings":"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","sources":["webpack://pydata_sphinx_theme/webpack/bootstrap","webpack://pydata_sphinx_theme/webpack/runtime/define property getters","webpack://pydata_sphinx_theme/webpack/runtime/hasOwnProperty shorthand","webpack://pydata_sphinx_theme/webpack/runtime/make namespace object","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/enums.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getNodeName.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getWindow.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/instanceOf.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/modifiers/applyStyles.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/getBasePlacement.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/math.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/userAgent.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/isLayoutViewport.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getBoundingClientRect.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getLayoutRect.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/contains.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getComputedStyle.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/isTableElement.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getDocumentElement.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getParentNode.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getOffsetParent.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/getMainAxisFromPlacement.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/within.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/mergePaddingObject.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/getFreshSideObject.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/expandToHashMap.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/modifiers/arrow.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/getVariation.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/modifiers/computeStyles.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/modifiers/eventListeners.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/getOppositePlacement.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/getOppositeVariationPlacement.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getWindowScroll.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getWindowScrollBarX.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/isScrollParent.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getScrollParent.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/listScrollParents.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/rectToClientRect.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getClippingRect.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getViewportRect.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getDocumentRect.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/computeOffsets.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/detectOverflow.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/modifiers/flip.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/computeAutoPlacement.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/modifiers/hide.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/modifiers/offset.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/modifiers/popperOffsets.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/modifiers/preventOverflow.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/getAltAxis.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getCompositeRect.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getNodeScroll.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/dom-utils/getHTMLElementScroll.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/orderModifiers.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/createPopper.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/debounce.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/utils/mergeByName.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/popper.js","webpack://pydata_sphinx_theme/./node_modules/@popperjs/core/lib/popper-lite.js","webpack://pydata_sphinx_theme/./node_modules/bootstrap/dist/js/bootstrap.esm.js","webpack://pydata_sphinx_theme/./src/pydata_sphinx_theme/assets/scripts/mixin.js","webpack://pydata_sphinx_theme/./src/pydata_sphinx_theme/assets/scripts/bootstrap.js"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","export var top = 'top';\nexport var bottom = 'bottom';\nexport var right = 'right';\nexport var left = 'left';\nexport var auto = 'auto';\nexport var basePlacements = [top, bottom, right, left];\nexport var start = 'start';\nexport var end = 'end';\nexport var clippingParents = 'clippingParents';\nexport var viewport = 'viewport';\nexport var popper = 'popper';\nexport var reference = 'reference';\nexport var variationPlacements = /*#__PURE__*/basePlacements.reduce(function (acc, placement) {\n return acc.concat([placement + \"-\" + start, placement + \"-\" + end]);\n}, []);\nexport var placements = /*#__PURE__*/[].concat(basePlacements, [auto]).reduce(function (acc, placement) {\n return acc.concat([placement, placement + \"-\" + start, placement + \"-\" + end]);\n}, []); // modifiers that need to read the DOM\n\nexport var beforeRead = 'beforeRead';\nexport var read = 'read';\nexport var afterRead = 'afterRead'; // pure-logic modifiers\n\nexport var beforeMain = 'beforeMain';\nexport var main = 'main';\nexport var afterMain = 'afterMain'; // modifier with the purpose to write to the DOM (or write into a framework state)\n\nexport var beforeWrite = 'beforeWrite';\nexport var write = 'write';\nexport var afterWrite = 'afterWrite';\nexport var modifierPhases = [beforeRead, read, afterRead, beforeMain, main, afterMain, beforeWrite, write, afterWrite];","export default function getNodeName(element) {\n return element ? (element.nodeName || '').toLowerCase() : null;\n}","export default function getWindow(node) {\n if (node == null) {\n return window;\n }\n\n if (node.toString() !== '[object Window]') {\n var ownerDocument = node.ownerDocument;\n return ownerDocument ? ownerDocument.defaultView || window : window;\n }\n\n return node;\n}","import getWindow from \"./getWindow.js\";\n\nfunction isElement(node) {\n var OwnElement = getWindow(node).Element;\n return node instanceof OwnElement || node instanceof Element;\n}\n\nfunction isHTMLElement(node) {\n var OwnElement = getWindow(node).HTMLElement;\n return node instanceof OwnElement || node instanceof HTMLElement;\n}\n\nfunction isShadowRoot(node) {\n // IE 11 has no ShadowRoot\n if (typeof ShadowRoot === 'undefined') {\n return false;\n }\n\n var OwnElement = getWindow(node).ShadowRoot;\n return node instanceof OwnElement || node instanceof ShadowRoot;\n}\n\nexport { isElement, isHTMLElement, isShadowRoot };","import getNodeName from \"../dom-utils/getNodeName.js\";\nimport { isHTMLElement } from \"../dom-utils/instanceOf.js\"; // This modifier takes the styles prepared by the `computeStyles` modifier\n// and applies them to the HTMLElements such as popper and arrow\n\nfunction applyStyles(_ref) {\n var state = _ref.state;\n Object.keys(state.elements).forEach(function (name) {\n var style = state.styles[name] || {};\n var attributes = state.attributes[name] || {};\n var element = state.elements[name]; // arrow is optional + virtual elements\n\n if (!isHTMLElement(element) || !getNodeName(element)) {\n return;\n } // Flow doesn't support to extend this property, but it's the most\n // effective way to apply styles to an HTMLElement\n // $FlowFixMe[cannot-write]\n\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (name) {\n var value = attributes[name];\n\n if (value === false) {\n element.removeAttribute(name);\n } else {\n element.setAttribute(name, value === true ? '' : value);\n }\n });\n });\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state;\n var initialStyles = {\n popper: {\n position: state.options.strategy,\n left: '0',\n top: '0',\n margin: '0'\n },\n arrow: {\n position: 'absolute'\n },\n reference: {}\n };\n Object.assign(state.elements.popper.style, initialStyles.popper);\n state.styles = initialStyles;\n\n if (state.elements.arrow) {\n Object.assign(state.elements.arrow.style, initialStyles.arrow);\n }\n\n return function () {\n Object.keys(state.elements).forEach(function (name) {\n var element = state.elements[name];\n var attributes = state.attributes[name] || {};\n var styleProperties = Object.keys(state.styles.hasOwnProperty(name) ? state.styles[name] : initialStyles[name]); // Set all values to an empty string to unset them\n\n var style = styleProperties.reduce(function (style, property) {\n style[property] = '';\n return style;\n }, {}); // arrow is optional + virtual elements\n\n if (!isHTMLElement(element) || !getNodeName(element)) {\n return;\n }\n\n Object.assign(element.style, style);\n Object.keys(attributes).forEach(function (attribute) {\n element.removeAttribute(attribute);\n });\n });\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'applyStyles',\n enabled: true,\n phase: 'write',\n fn: applyStyles,\n effect: effect,\n requires: ['computeStyles']\n};","import { auto } from \"../enums.js\";\nexport default function getBasePlacement(placement) {\n return placement.split('-')[0];\n}","export var max = Math.max;\nexport var min = Math.min;\nexport var round = Math.round;","export default function getUAString() {\n var uaData = navigator.userAgentData;\n\n if (uaData != null && uaData.brands && Array.isArray(uaData.brands)) {\n return uaData.brands.map(function (item) {\n return item.brand + \"/\" + item.version;\n }).join(' ');\n }\n\n return navigator.userAgent;\n}","import getUAString from \"../utils/userAgent.js\";\nexport default function isLayoutViewport() {\n return !/^((?!chrome|android).)*safari/i.test(getUAString());\n}","import { isElement, isHTMLElement } from \"./instanceOf.js\";\nimport { round } from \"../utils/math.js\";\nimport getWindow from \"./getWindow.js\";\nimport isLayoutViewport from \"./isLayoutViewport.js\";\nexport default function getBoundingClientRect(element, includeScale, isFixedStrategy) {\n if (includeScale === void 0) {\n includeScale = false;\n }\n\n if (isFixedStrategy === void 0) {\n isFixedStrategy = false;\n }\n\n var clientRect = element.getBoundingClientRect();\n var scaleX = 1;\n var scaleY = 1;\n\n if (includeScale && isHTMLElement(element)) {\n scaleX = element.offsetWidth > 0 ? round(clientRect.width) / element.offsetWidth || 1 : 1;\n scaleY = element.offsetHeight > 0 ? round(clientRect.height) / element.offsetHeight || 1 : 1;\n }\n\n var _ref = isElement(element) ? getWindow(element) : window,\n visualViewport = _ref.visualViewport;\n\n var addVisualOffsets = !isLayoutViewport() && isFixedStrategy;\n var x = (clientRect.left + (addVisualOffsets && visualViewport ? visualViewport.offsetLeft : 0)) / scaleX;\n var y = (clientRect.top + (addVisualOffsets && visualViewport ? visualViewport.offsetTop : 0)) / scaleY;\n var width = clientRect.width / scaleX;\n var height = clientRect.height / scaleY;\n return {\n width: width,\n height: height,\n top: y,\n right: x + width,\n bottom: y + height,\n left: x,\n x: x,\n y: y\n };\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\"; // Returns the layout rect of an element relative to its offsetParent. Layout\n// means it doesn't take into account transforms.\n\nexport default function getLayoutRect(element) {\n var clientRect = getBoundingClientRect(element); // Use the clientRect sizes if it's not been transformed.\n // Fixes https://github.com/popperjs/popper-core/issues/1223\n\n var width = element.offsetWidth;\n var height = element.offsetHeight;\n\n if (Math.abs(clientRect.width - width) <= 1) {\n width = clientRect.width;\n }\n\n if (Math.abs(clientRect.height - height) <= 1) {\n height = clientRect.height;\n }\n\n return {\n x: element.offsetLeft,\n y: element.offsetTop,\n width: width,\n height: height\n };\n}","import { isShadowRoot } from \"./instanceOf.js\";\nexport default function contains(parent, child) {\n var rootNode = child.getRootNode && child.getRootNode(); // First, attempt with faster native method\n\n if (parent.contains(child)) {\n return true;\n } // then fallback to custom implementation with Shadow DOM support\n else if (rootNode && isShadowRoot(rootNode)) {\n var next = child;\n\n do {\n if (next && parent.isSameNode(next)) {\n return true;\n } // $FlowFixMe[prop-missing]: need a better way to handle this...\n\n\n next = next.parentNode || next.host;\n } while (next);\n } // Give up, the result is false\n\n\n return false;\n}","import getWindow from \"./getWindow.js\";\nexport default function getComputedStyle(element) {\n return getWindow(element).getComputedStyle(element);\n}","import getNodeName from \"./getNodeName.js\";\nexport default function isTableElement(element) {\n return ['table', 'td', 'th'].indexOf(getNodeName(element)) >= 0;\n}","import { isElement } from \"./instanceOf.js\";\nexport default function getDocumentElement(element) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return ((isElement(element) ? element.ownerDocument : // $FlowFixMe[prop-missing]\n element.document) || window.document).documentElement;\n}","import getNodeName from \"./getNodeName.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport { isShadowRoot } from \"./instanceOf.js\";\nexport default function getParentNode(element) {\n if (getNodeName(element) === 'html') {\n return element;\n }\n\n return (// this is a quicker (but less type safe) way to save quite some bytes from the bundle\n // $FlowFixMe[incompatible-return]\n // $FlowFixMe[prop-missing]\n element.assignedSlot || // step into the shadow DOM of the parent of a slotted node\n element.parentNode || ( // DOM Element detected\n isShadowRoot(element) ? element.host : null) || // ShadowRoot detected\n // $FlowFixMe[incompatible-call]: HTMLElement is a Node\n getDocumentElement(element) // fallback\n\n );\n}","import getWindow from \"./getWindow.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isHTMLElement, isShadowRoot } from \"./instanceOf.js\";\nimport isTableElement from \"./isTableElement.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport getUAString from \"../utils/userAgent.js\";\n\nfunction getTrueOffsetParent(element) {\n if (!isHTMLElement(element) || // https://github.com/popperjs/popper-core/issues/837\n getComputedStyle(element).position === 'fixed') {\n return null;\n }\n\n return element.offsetParent;\n} // `.offsetParent` reports `null` for fixed elements, while absolute elements\n// return the containing block\n\n\nfunction getContainingBlock(element) {\n var isFirefox = /firefox/i.test(getUAString());\n var isIE = /Trident/i.test(getUAString());\n\n if (isIE && isHTMLElement(element)) {\n // In IE 9, 10 and 11 fixed elements containing block is always established by the viewport\n var elementCss = getComputedStyle(element);\n\n if (elementCss.position === 'fixed') {\n return null;\n }\n }\n\n var currentNode = getParentNode(element);\n\n if (isShadowRoot(currentNode)) {\n currentNode = currentNode.host;\n }\n\n while (isHTMLElement(currentNode) && ['html', 'body'].indexOf(getNodeName(currentNode)) < 0) {\n var css = getComputedStyle(currentNode); // This is non-exhaustive but covers the most common CSS properties that\n // create a containing block.\n // https://developer.mozilla.org/en-US/docs/Web/CSS/Containing_block#identifying_the_containing_block\n\n if (css.transform !== 'none' || css.perspective !== 'none' || css.contain === 'paint' || ['transform', 'perspective'].indexOf(css.willChange) !== -1 || isFirefox && css.willChange === 'filter' || isFirefox && css.filter && css.filter !== 'none') {\n return currentNode;\n } else {\n currentNode = currentNode.parentNode;\n }\n }\n\n return null;\n} // Gets the closest ancestor positioned element. Handles some edge cases,\n// such as table ancestors and cross browser bugs.\n\n\nexport default function getOffsetParent(element) {\n var window = getWindow(element);\n var offsetParent = getTrueOffsetParent(element);\n\n while (offsetParent && isTableElement(offsetParent) && getComputedStyle(offsetParent).position === 'static') {\n offsetParent = getTrueOffsetParent(offsetParent);\n }\n\n if (offsetParent && (getNodeName(offsetParent) === 'html' || getNodeName(offsetParent) === 'body' && getComputedStyle(offsetParent).position === 'static')) {\n return window;\n }\n\n return offsetParent || getContainingBlock(element) || window;\n}","export default function getMainAxisFromPlacement(placement) {\n return ['top', 'bottom'].indexOf(placement) >= 0 ? 'x' : 'y';\n}","import { max as mathMax, min as mathMin } from \"./math.js\";\nexport function within(min, value, max) {\n return mathMax(min, mathMin(value, max));\n}\nexport function withinMaxClamp(min, value, max) {\n var v = within(min, value, max);\n return v > max ? max : v;\n}","import getFreshSideObject from \"./getFreshSideObject.js\";\nexport default function mergePaddingObject(paddingObject) {\n return Object.assign({}, getFreshSideObject(), paddingObject);\n}","export default function getFreshSideObject() {\n return {\n top: 0,\n right: 0,\n bottom: 0,\n left: 0\n };\n}","export default function expandToHashMap(value, keys) {\n return keys.reduce(function (hashMap, key) {\n hashMap[key] = value;\n return hashMap;\n }, {});\n}","import getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getLayoutRect from \"../dom-utils/getLayoutRect.js\";\nimport contains from \"../dom-utils/contains.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport getMainAxisFromPlacement from \"../utils/getMainAxisFromPlacement.js\";\nimport { within } from \"../utils/within.js\";\nimport mergePaddingObject from \"../utils/mergePaddingObject.js\";\nimport expandToHashMap from \"../utils/expandToHashMap.js\";\nimport { left, right, basePlacements, top, bottom } from \"../enums.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar toPaddingObject = function toPaddingObject(padding, state) {\n padding = typeof padding === 'function' ? padding(Object.assign({}, state.rects, {\n placement: state.placement\n })) : padding;\n return mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n};\n\nfunction arrow(_ref) {\n var _state$modifiersData$;\n\n var state = _ref.state,\n name = _ref.name,\n options = _ref.options;\n var arrowElement = state.elements.arrow;\n var popperOffsets = state.modifiersData.popperOffsets;\n var basePlacement = getBasePlacement(state.placement);\n var axis = getMainAxisFromPlacement(basePlacement);\n var isVertical = [left, right].indexOf(basePlacement) >= 0;\n var len = isVertical ? 'height' : 'width';\n\n if (!arrowElement || !popperOffsets) {\n return;\n }\n\n var paddingObject = toPaddingObject(options.padding, state);\n var arrowRect = getLayoutRect(arrowElement);\n var minProp = axis === 'y' ? top : left;\n var maxProp = axis === 'y' ? bottom : right;\n var endDiff = state.rects.reference[len] + state.rects.reference[axis] - popperOffsets[axis] - state.rects.popper[len];\n var startDiff = popperOffsets[axis] - state.rects.reference[axis];\n var arrowOffsetParent = getOffsetParent(arrowElement);\n var clientSize = arrowOffsetParent ? axis === 'y' ? arrowOffsetParent.clientHeight || 0 : arrowOffsetParent.clientWidth || 0 : 0;\n var centerToReference = endDiff / 2 - startDiff / 2; // Make sure the arrow doesn't overflow the popper if the center point is\n // outside of the popper bounds\n\n var min = paddingObject[minProp];\n var max = clientSize - arrowRect[len] - paddingObject[maxProp];\n var center = clientSize / 2 - arrowRect[len] / 2 + centerToReference;\n var offset = within(min, center, max); // Prevents breaking syntax highlighting...\n\n var axisProp = axis;\n state.modifiersData[name] = (_state$modifiersData$ = {}, _state$modifiersData$[axisProp] = offset, _state$modifiersData$.centerOffset = offset - center, _state$modifiersData$);\n}\n\nfunction effect(_ref2) {\n var state = _ref2.state,\n options = _ref2.options;\n var _options$element = options.element,\n arrowElement = _options$element === void 0 ? '[data-popper-arrow]' : _options$element;\n\n if (arrowElement == null) {\n return;\n } // CSS selector\n\n\n if (typeof arrowElement === 'string') {\n arrowElement = state.elements.popper.querySelector(arrowElement);\n\n if (!arrowElement) {\n return;\n }\n }\n\n if (!contains(state.elements.popper, arrowElement)) {\n return;\n }\n\n state.elements.arrow = arrowElement;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'arrow',\n enabled: true,\n phase: 'main',\n fn: arrow,\n effect: effect,\n requires: ['popperOffsets'],\n requiresIfExists: ['preventOverflow']\n};","export default function getVariation(placement) {\n return placement.split('-')[1];\n}","import { top, left, right, bottom, end } from \"../enums.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport getWindow from \"../dom-utils/getWindow.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getComputedStyle from \"../dom-utils/getComputedStyle.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getVariation from \"../utils/getVariation.js\";\nimport { round } from \"../utils/math.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar unsetSides = {\n top: 'auto',\n right: 'auto',\n bottom: 'auto',\n left: 'auto'\n}; // Round the offsets to the nearest suitable subpixel based on the DPR.\n// Zooming can change the DPR, but it seems to report a value that will\n// cleanly divide the values into the appropriate subpixels.\n\nfunction roundOffsetsByDPR(_ref, win) {\n var x = _ref.x,\n y = _ref.y;\n var dpr = win.devicePixelRatio || 1;\n return {\n x: round(x * dpr) / dpr || 0,\n y: round(y * dpr) / dpr || 0\n };\n}\n\nexport function mapToStyles(_ref2) {\n var _Object$assign2;\n\n var popper = _ref2.popper,\n popperRect = _ref2.popperRect,\n placement = _ref2.placement,\n variation = _ref2.variation,\n offsets = _ref2.offsets,\n position = _ref2.position,\n gpuAcceleration = _ref2.gpuAcceleration,\n adaptive = _ref2.adaptive,\n roundOffsets = _ref2.roundOffsets,\n isFixed = _ref2.isFixed;\n var _offsets$x = offsets.x,\n x = _offsets$x === void 0 ? 0 : _offsets$x,\n _offsets$y = offsets.y,\n y = _offsets$y === void 0 ? 0 : _offsets$y;\n\n var _ref3 = typeof roundOffsets === 'function' ? roundOffsets({\n x: x,\n y: y\n }) : {\n x: x,\n y: y\n };\n\n x = _ref3.x;\n y = _ref3.y;\n var hasX = offsets.hasOwnProperty('x');\n var hasY = offsets.hasOwnProperty('y');\n var sideX = left;\n var sideY = top;\n var win = window;\n\n if (adaptive) {\n var offsetParent = getOffsetParent(popper);\n var heightProp = 'clientHeight';\n var widthProp = 'clientWidth';\n\n if (offsetParent === getWindow(popper)) {\n offsetParent = getDocumentElement(popper);\n\n if (getComputedStyle(offsetParent).position !== 'static' && position === 'absolute') {\n heightProp = 'scrollHeight';\n widthProp = 'scrollWidth';\n }\n } // $FlowFixMe[incompatible-cast]: force type refinement, we compare offsetParent with window above, but Flow doesn't detect it\n\n\n offsetParent = offsetParent;\n\n if (placement === top || (placement === left || placement === right) && variation === end) {\n sideY = bottom;\n var offsetY = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.height : // $FlowFixMe[prop-missing]\n offsetParent[heightProp];\n y -= offsetY - popperRect.height;\n y *= gpuAcceleration ? 1 : -1;\n }\n\n if (placement === left || (placement === top || placement === bottom) && variation === end) {\n sideX = right;\n var offsetX = isFixed && offsetParent === win && win.visualViewport ? win.visualViewport.width : // $FlowFixMe[prop-missing]\n offsetParent[widthProp];\n x -= offsetX - popperRect.width;\n x *= gpuAcceleration ? 1 : -1;\n }\n }\n\n var commonStyles = Object.assign({\n position: position\n }, adaptive && unsetSides);\n\n var _ref4 = roundOffsets === true ? roundOffsetsByDPR({\n x: x,\n y: y\n }, getWindow(popper)) : {\n x: x,\n y: y\n };\n\n x = _ref4.x;\n y = _ref4.y;\n\n if (gpuAcceleration) {\n var _Object$assign;\n\n return Object.assign({}, commonStyles, (_Object$assign = {}, _Object$assign[sideY] = hasY ? '0' : '', _Object$assign[sideX] = hasX ? '0' : '', _Object$assign.transform = (win.devicePixelRatio || 1) <= 1 ? \"translate(\" + x + \"px, \" + y + \"px)\" : \"translate3d(\" + x + \"px, \" + y + \"px, 0)\", _Object$assign));\n }\n\n return Object.assign({}, commonStyles, (_Object$assign2 = {}, _Object$assign2[sideY] = hasY ? y + \"px\" : '', _Object$assign2[sideX] = hasX ? x + \"px\" : '', _Object$assign2.transform = '', _Object$assign2));\n}\n\nfunction computeStyles(_ref5) {\n var state = _ref5.state,\n options = _ref5.options;\n var _options$gpuAccelerat = options.gpuAcceleration,\n gpuAcceleration = _options$gpuAccelerat === void 0 ? true : _options$gpuAccelerat,\n _options$adaptive = options.adaptive,\n adaptive = _options$adaptive === void 0 ? true : _options$adaptive,\n _options$roundOffsets = options.roundOffsets,\n roundOffsets = _options$roundOffsets === void 0 ? true : _options$roundOffsets;\n var commonStyles = {\n placement: getBasePlacement(state.placement),\n variation: getVariation(state.placement),\n popper: state.elements.popper,\n popperRect: state.rects.popper,\n gpuAcceleration: gpuAcceleration,\n isFixed: state.options.strategy === 'fixed'\n };\n\n if (state.modifiersData.popperOffsets != null) {\n state.styles.popper = Object.assign({}, state.styles.popper, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.popperOffsets,\n position: state.options.strategy,\n adaptive: adaptive,\n roundOffsets: roundOffsets\n })));\n }\n\n if (state.modifiersData.arrow != null) {\n state.styles.arrow = Object.assign({}, state.styles.arrow, mapToStyles(Object.assign({}, commonStyles, {\n offsets: state.modifiersData.arrow,\n position: 'absolute',\n adaptive: false,\n roundOffsets: roundOffsets\n })));\n }\n\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-placement': state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'computeStyles',\n enabled: true,\n phase: 'beforeWrite',\n fn: computeStyles,\n data: {}\n};","import getWindow from \"../dom-utils/getWindow.js\"; // eslint-disable-next-line import/no-unused-modules\n\nvar passive = {\n passive: true\n};\n\nfunction effect(_ref) {\n var state = _ref.state,\n instance = _ref.instance,\n options = _ref.options;\n var _options$scroll = options.scroll,\n scroll = _options$scroll === void 0 ? true : _options$scroll,\n _options$resize = options.resize,\n resize = _options$resize === void 0 ? true : _options$resize;\n var window = getWindow(state.elements.popper);\n var scrollParents = [].concat(state.scrollParents.reference, state.scrollParents.popper);\n\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.addEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.addEventListener('resize', instance.update, passive);\n }\n\n return function () {\n if (scroll) {\n scrollParents.forEach(function (scrollParent) {\n scrollParent.removeEventListener('scroll', instance.update, passive);\n });\n }\n\n if (resize) {\n window.removeEventListener('resize', instance.update, passive);\n }\n };\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'eventListeners',\n enabled: true,\n phase: 'write',\n fn: function fn() {},\n effect: effect,\n data: {}\n};","var hash = {\n left: 'right',\n right: 'left',\n bottom: 'top',\n top: 'bottom'\n};\nexport default function getOppositePlacement(placement) {\n return placement.replace(/left|right|bottom|top/g, function (matched) {\n return hash[matched];\n });\n}","var hash = {\n start: 'end',\n end: 'start'\n};\nexport default function getOppositeVariationPlacement(placement) {\n return placement.replace(/start|end/g, function (matched) {\n return hash[matched];\n });\n}","import getWindow from \"./getWindow.js\";\nexport default function getWindowScroll(node) {\n var win = getWindow(node);\n var scrollLeft = win.pageXOffset;\n var scrollTop = win.pageYOffset;\n return {\n scrollLeft: scrollLeft,\n scrollTop: scrollTop\n };\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScroll from \"./getWindowScroll.js\";\nexport default function getWindowScrollBarX(element) {\n // If has a CSS width greater than the viewport, then this will be\n // incorrect for RTL.\n // Popper 1 is broken in this case and never had a bug report so let's assume\n // it's not an issue. I don't think anyone ever specifies width on \n // anyway.\n // Browsers where the left scrollbar doesn't cause an issue report `0` for\n // this (e.g. Edge 2019, IE11, Safari)\n return getBoundingClientRect(getDocumentElement(element)).left + getWindowScroll(element).scrollLeft;\n}","import getComputedStyle from \"./getComputedStyle.js\";\nexport default function isScrollParent(element) {\n // Firefox wants us to check `-x` and `-y` variations as well\n var _getComputedStyle = getComputedStyle(element),\n overflow = _getComputedStyle.overflow,\n overflowX = _getComputedStyle.overflowX,\n overflowY = _getComputedStyle.overflowY;\n\n return /auto|scroll|overlay|hidden/.test(overflow + overflowY + overflowX);\n}","import getParentNode from \"./getParentNode.js\";\nimport isScrollParent from \"./isScrollParent.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nexport default function getScrollParent(node) {\n if (['html', 'body', '#document'].indexOf(getNodeName(node)) >= 0) {\n // $FlowFixMe[incompatible-return]: assume body is always available\n return node.ownerDocument.body;\n }\n\n if (isHTMLElement(node) && isScrollParent(node)) {\n return node;\n }\n\n return getScrollParent(getParentNode(node));\n}","import getScrollParent from \"./getScrollParent.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport getWindow from \"./getWindow.js\";\nimport isScrollParent from \"./isScrollParent.js\";\n/*\ngiven a DOM element, return the list of all scroll parents, up the list of ancesors\nuntil we get to the top window object. This list is what we attach scroll listeners\nto, because if any of these parent elements scroll, we'll need to re-calculate the\nreference element's position.\n*/\n\nexport default function listScrollParents(element, list) {\n var _element$ownerDocumen;\n\n if (list === void 0) {\n list = [];\n }\n\n var scrollParent = getScrollParent(element);\n var isBody = scrollParent === ((_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body);\n var win = getWindow(scrollParent);\n var target = isBody ? [win].concat(win.visualViewport || [], isScrollParent(scrollParent) ? scrollParent : []) : scrollParent;\n var updatedList = list.concat(target);\n return isBody ? updatedList : // $FlowFixMe[incompatible-call]: isBody tells us target will be an HTMLElement here\n updatedList.concat(listScrollParents(getParentNode(target)));\n}","export default function rectToClientRect(rect) {\n return Object.assign({}, rect, {\n left: rect.x,\n top: rect.y,\n right: rect.x + rect.width,\n bottom: rect.y + rect.height\n });\n}","import { viewport } from \"../enums.js\";\nimport getViewportRect from \"./getViewportRect.js\";\nimport getDocumentRect from \"./getDocumentRect.js\";\nimport listScrollParents from \"./listScrollParents.js\";\nimport getOffsetParent from \"./getOffsetParent.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport { isElement, isHTMLElement } from \"./instanceOf.js\";\nimport getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getParentNode from \"./getParentNode.js\";\nimport contains from \"./contains.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport rectToClientRect from \"../utils/rectToClientRect.js\";\nimport { max, min } from \"../utils/math.js\";\n\nfunction getInnerBoundingClientRect(element, strategy) {\n var rect = getBoundingClientRect(element, false, strategy === 'fixed');\n rect.top = rect.top + element.clientTop;\n rect.left = rect.left + element.clientLeft;\n rect.bottom = rect.top + element.clientHeight;\n rect.right = rect.left + element.clientWidth;\n rect.width = element.clientWidth;\n rect.height = element.clientHeight;\n rect.x = rect.left;\n rect.y = rect.top;\n return rect;\n}\n\nfunction getClientRectFromMixedType(element, clippingParent, strategy) {\n return clippingParent === viewport ? rectToClientRect(getViewportRect(element, strategy)) : isElement(clippingParent) ? getInnerBoundingClientRect(clippingParent, strategy) : rectToClientRect(getDocumentRect(getDocumentElement(element)));\n} // A \"clipping parent\" is an overflowable container with the characteristic of\n// clipping (or hiding) overflowing elements with a position different from\n// `initial`\n\n\nfunction getClippingParents(element) {\n var clippingParents = listScrollParents(getParentNode(element));\n var canEscapeClipping = ['absolute', 'fixed'].indexOf(getComputedStyle(element).position) >= 0;\n var clipperElement = canEscapeClipping && isHTMLElement(element) ? getOffsetParent(element) : element;\n\n if (!isElement(clipperElement)) {\n return [];\n } // $FlowFixMe[incompatible-return]: https://github.com/facebook/flow/issues/1414\n\n\n return clippingParents.filter(function (clippingParent) {\n return isElement(clippingParent) && contains(clippingParent, clipperElement) && getNodeName(clippingParent) !== 'body';\n });\n} // Gets the maximum area that the element is visible in due to any number of\n// clipping parents\n\n\nexport default function getClippingRect(element, boundary, rootBoundary, strategy) {\n var mainClippingParents = boundary === 'clippingParents' ? getClippingParents(element) : [].concat(boundary);\n var clippingParents = [].concat(mainClippingParents, [rootBoundary]);\n var firstClippingParent = clippingParents[0];\n var clippingRect = clippingParents.reduce(function (accRect, clippingParent) {\n var rect = getClientRectFromMixedType(element, clippingParent, strategy);\n accRect.top = max(rect.top, accRect.top);\n accRect.right = min(rect.right, accRect.right);\n accRect.bottom = min(rect.bottom, accRect.bottom);\n accRect.left = max(rect.left, accRect.left);\n return accRect;\n }, getClientRectFromMixedType(element, firstClippingParent, strategy));\n clippingRect.width = clippingRect.right - clippingRect.left;\n clippingRect.height = clippingRect.bottom - clippingRect.top;\n clippingRect.x = clippingRect.left;\n clippingRect.y = clippingRect.top;\n return clippingRect;\n}","import getWindow from \"./getWindow.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport isLayoutViewport from \"./isLayoutViewport.js\";\nexport default function getViewportRect(element, strategy) {\n var win = getWindow(element);\n var html = getDocumentElement(element);\n var visualViewport = win.visualViewport;\n var width = html.clientWidth;\n var height = html.clientHeight;\n var x = 0;\n var y = 0;\n\n if (visualViewport) {\n width = visualViewport.width;\n height = visualViewport.height;\n var layoutViewport = isLayoutViewport();\n\n if (layoutViewport || !layoutViewport && strategy === 'fixed') {\n x = visualViewport.offsetLeft;\n y = visualViewport.offsetTop;\n }\n }\n\n return {\n width: width,\n height: height,\n x: x + getWindowScrollBarX(element),\n y: y\n };\n}","import getDocumentElement from \"./getDocumentElement.js\";\nimport getComputedStyle from \"./getComputedStyle.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport getWindowScroll from \"./getWindowScroll.js\";\nimport { max } from \"../utils/math.js\"; // Gets the entire size of the scrollable document area, even extending outside\n// of the `` and `` rect bounds if horizontally scrollable\n\nexport default function getDocumentRect(element) {\n var _element$ownerDocumen;\n\n var html = getDocumentElement(element);\n var winScroll = getWindowScroll(element);\n var body = (_element$ownerDocumen = element.ownerDocument) == null ? void 0 : _element$ownerDocumen.body;\n var width = max(html.scrollWidth, html.clientWidth, body ? body.scrollWidth : 0, body ? body.clientWidth : 0);\n var height = max(html.scrollHeight, html.clientHeight, body ? body.scrollHeight : 0, body ? body.clientHeight : 0);\n var x = -winScroll.scrollLeft + getWindowScrollBarX(element);\n var y = -winScroll.scrollTop;\n\n if (getComputedStyle(body || html).direction === 'rtl') {\n x += max(html.clientWidth, body ? body.clientWidth : 0) - width;\n }\n\n return {\n width: width,\n height: height,\n x: x,\n y: y\n };\n}","import getBasePlacement from \"./getBasePlacement.js\";\nimport getVariation from \"./getVariation.js\";\nimport getMainAxisFromPlacement from \"./getMainAxisFromPlacement.js\";\nimport { top, right, bottom, left, start, end } from \"../enums.js\";\nexport default function computeOffsets(_ref) {\n var reference = _ref.reference,\n element = _ref.element,\n placement = _ref.placement;\n var basePlacement = placement ? getBasePlacement(placement) : null;\n var variation = placement ? getVariation(placement) : null;\n var commonX = reference.x + reference.width / 2 - element.width / 2;\n var commonY = reference.y + reference.height / 2 - element.height / 2;\n var offsets;\n\n switch (basePlacement) {\n case top:\n offsets = {\n x: commonX,\n y: reference.y - element.height\n };\n break;\n\n case bottom:\n offsets = {\n x: commonX,\n y: reference.y + reference.height\n };\n break;\n\n case right:\n offsets = {\n x: reference.x + reference.width,\n y: commonY\n };\n break;\n\n case left:\n offsets = {\n x: reference.x - element.width,\n y: commonY\n };\n break;\n\n default:\n offsets = {\n x: reference.x,\n y: reference.y\n };\n }\n\n var mainAxis = basePlacement ? getMainAxisFromPlacement(basePlacement) : null;\n\n if (mainAxis != null) {\n var len = mainAxis === 'y' ? 'height' : 'width';\n\n switch (variation) {\n case start:\n offsets[mainAxis] = offsets[mainAxis] - (reference[len] / 2 - element[len] / 2);\n break;\n\n case end:\n offsets[mainAxis] = offsets[mainAxis] + (reference[len] / 2 - element[len] / 2);\n break;\n\n default:\n }\n }\n\n return offsets;\n}","import getClippingRect from \"../dom-utils/getClippingRect.js\";\nimport getDocumentElement from \"../dom-utils/getDocumentElement.js\";\nimport getBoundingClientRect from \"../dom-utils/getBoundingClientRect.js\";\nimport computeOffsets from \"./computeOffsets.js\";\nimport rectToClientRect from \"./rectToClientRect.js\";\nimport { clippingParents, reference, popper, bottom, top, right, basePlacements, viewport } from \"../enums.js\";\nimport { isElement } from \"../dom-utils/instanceOf.js\";\nimport mergePaddingObject from \"./mergePaddingObject.js\";\nimport expandToHashMap from \"./expandToHashMap.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport default function detectOverflow(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n _options$placement = _options.placement,\n placement = _options$placement === void 0 ? state.placement : _options$placement,\n _options$strategy = _options.strategy,\n strategy = _options$strategy === void 0 ? state.strategy : _options$strategy,\n _options$boundary = _options.boundary,\n boundary = _options$boundary === void 0 ? clippingParents : _options$boundary,\n _options$rootBoundary = _options.rootBoundary,\n rootBoundary = _options$rootBoundary === void 0 ? viewport : _options$rootBoundary,\n _options$elementConte = _options.elementContext,\n elementContext = _options$elementConte === void 0 ? popper : _options$elementConte,\n _options$altBoundary = _options.altBoundary,\n altBoundary = _options$altBoundary === void 0 ? false : _options$altBoundary,\n _options$padding = _options.padding,\n padding = _options$padding === void 0 ? 0 : _options$padding;\n var paddingObject = mergePaddingObject(typeof padding !== 'number' ? padding : expandToHashMap(padding, basePlacements));\n var altContext = elementContext === popper ? reference : popper;\n var popperRect = state.rects.popper;\n var element = state.elements[altBoundary ? altContext : elementContext];\n var clippingClientRect = getClippingRect(isElement(element) ? element : element.contextElement || getDocumentElement(state.elements.popper), boundary, rootBoundary, strategy);\n var referenceClientRect = getBoundingClientRect(state.elements.reference);\n var popperOffsets = computeOffsets({\n reference: referenceClientRect,\n element: popperRect,\n strategy: 'absolute',\n placement: placement\n });\n var popperClientRect = rectToClientRect(Object.assign({}, popperRect, popperOffsets));\n var elementClientRect = elementContext === popper ? popperClientRect : referenceClientRect; // positive = overflowing the clipping rect\n // 0 or negative = within the clipping rect\n\n var overflowOffsets = {\n top: clippingClientRect.top - elementClientRect.top + paddingObject.top,\n bottom: elementClientRect.bottom - clippingClientRect.bottom + paddingObject.bottom,\n left: clippingClientRect.left - elementClientRect.left + paddingObject.left,\n right: elementClientRect.right - clippingClientRect.right + paddingObject.right\n };\n var offsetData = state.modifiersData.offset; // Offsets can be applied only to the popper element\n\n if (elementContext === popper && offsetData) {\n var offset = offsetData[placement];\n Object.keys(overflowOffsets).forEach(function (key) {\n var multiply = [right, bottom].indexOf(key) >= 0 ? 1 : -1;\n var axis = [top, bottom].indexOf(key) >= 0 ? 'y' : 'x';\n overflowOffsets[key] += offset[axis] * multiply;\n });\n }\n\n return overflowOffsets;\n}","import getOppositePlacement from \"../utils/getOppositePlacement.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getOppositeVariationPlacement from \"../utils/getOppositeVariationPlacement.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\nimport computeAutoPlacement from \"../utils/computeAutoPlacement.js\";\nimport { bottom, top, start, right, left, auto } from \"../enums.js\";\nimport getVariation from \"../utils/getVariation.js\"; // eslint-disable-next-line import/no-unused-modules\n\nfunction getExpandedFallbackPlacements(placement) {\n if (getBasePlacement(placement) === auto) {\n return [];\n }\n\n var oppositePlacement = getOppositePlacement(placement);\n return [getOppositeVariationPlacement(placement), oppositePlacement, getOppositeVariationPlacement(oppositePlacement)];\n}\n\nfunction flip(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n\n if (state.modifiersData[name]._skip) {\n return;\n }\n\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? true : _options$altAxis,\n specifiedFallbackPlacements = options.fallbackPlacements,\n padding = options.padding,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n _options$flipVariatio = options.flipVariations,\n flipVariations = _options$flipVariatio === void 0 ? true : _options$flipVariatio,\n allowedAutoPlacements = options.allowedAutoPlacements;\n var preferredPlacement = state.options.placement;\n var basePlacement = getBasePlacement(preferredPlacement);\n var isBasePlacement = basePlacement === preferredPlacement;\n var fallbackPlacements = specifiedFallbackPlacements || (isBasePlacement || !flipVariations ? [getOppositePlacement(preferredPlacement)] : getExpandedFallbackPlacements(preferredPlacement));\n var placements = [preferredPlacement].concat(fallbackPlacements).reduce(function (acc, placement) {\n return acc.concat(getBasePlacement(placement) === auto ? computeAutoPlacement(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n flipVariations: flipVariations,\n allowedAutoPlacements: allowedAutoPlacements\n }) : placement);\n }, []);\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var checksMap = new Map();\n var makeFallbackChecks = true;\n var firstFittingPlacement = placements[0];\n\n for (var i = 0; i < placements.length; i++) {\n var placement = placements[i];\n\n var _basePlacement = getBasePlacement(placement);\n\n var isStartVariation = getVariation(placement) === start;\n var isVertical = [top, bottom].indexOf(_basePlacement) >= 0;\n var len = isVertical ? 'width' : 'height';\n var overflow = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n altBoundary: altBoundary,\n padding: padding\n });\n var mainVariationSide = isVertical ? isStartVariation ? right : left : isStartVariation ? bottom : top;\n\n if (referenceRect[len] > popperRect[len]) {\n mainVariationSide = getOppositePlacement(mainVariationSide);\n }\n\n var altVariationSide = getOppositePlacement(mainVariationSide);\n var checks = [];\n\n if (checkMainAxis) {\n checks.push(overflow[_basePlacement] <= 0);\n }\n\n if (checkAltAxis) {\n checks.push(overflow[mainVariationSide] <= 0, overflow[altVariationSide] <= 0);\n }\n\n if (checks.every(function (check) {\n return check;\n })) {\n firstFittingPlacement = placement;\n makeFallbackChecks = false;\n break;\n }\n\n checksMap.set(placement, checks);\n }\n\n if (makeFallbackChecks) {\n // `2` may be desired in some cases – research later\n var numberOfChecks = flipVariations ? 3 : 1;\n\n var _loop = function _loop(_i) {\n var fittingPlacement = placements.find(function (placement) {\n var checks = checksMap.get(placement);\n\n if (checks) {\n return checks.slice(0, _i).every(function (check) {\n return check;\n });\n }\n });\n\n if (fittingPlacement) {\n firstFittingPlacement = fittingPlacement;\n return \"break\";\n }\n };\n\n for (var _i = numberOfChecks; _i > 0; _i--) {\n var _ret = _loop(_i);\n\n if (_ret === \"break\") break;\n }\n }\n\n if (state.placement !== firstFittingPlacement) {\n state.modifiersData[name]._skip = true;\n state.placement = firstFittingPlacement;\n state.reset = true;\n }\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'flip',\n enabled: true,\n phase: 'main',\n fn: flip,\n requiresIfExists: ['offset'],\n data: {\n _skip: false\n }\n};","import getVariation from \"./getVariation.js\";\nimport { variationPlacements, basePlacements, placements as allPlacements } from \"../enums.js\";\nimport detectOverflow from \"./detectOverflow.js\";\nimport getBasePlacement from \"./getBasePlacement.js\";\nexport default function computeAutoPlacement(state, options) {\n if (options === void 0) {\n options = {};\n }\n\n var _options = options,\n placement = _options.placement,\n boundary = _options.boundary,\n rootBoundary = _options.rootBoundary,\n padding = _options.padding,\n flipVariations = _options.flipVariations,\n _options$allowedAutoP = _options.allowedAutoPlacements,\n allowedAutoPlacements = _options$allowedAutoP === void 0 ? allPlacements : _options$allowedAutoP;\n var variation = getVariation(placement);\n var placements = variation ? flipVariations ? variationPlacements : variationPlacements.filter(function (placement) {\n return getVariation(placement) === variation;\n }) : basePlacements;\n var allowedPlacements = placements.filter(function (placement) {\n return allowedAutoPlacements.indexOf(placement) >= 0;\n });\n\n if (allowedPlacements.length === 0) {\n allowedPlacements = placements;\n } // $FlowFixMe[incompatible-type]: Flow seems to have problems with two array unions...\n\n\n var overflows = allowedPlacements.reduce(function (acc, placement) {\n acc[placement] = detectOverflow(state, {\n placement: placement,\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding\n })[getBasePlacement(placement)];\n return acc;\n }, {});\n return Object.keys(overflows).sort(function (a, b) {\n return overflows[a] - overflows[b];\n });\n}","import { top, bottom, left, right } from \"../enums.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\n\nfunction getSideOffsets(overflow, rect, preventedOffsets) {\n if (preventedOffsets === void 0) {\n preventedOffsets = {\n x: 0,\n y: 0\n };\n }\n\n return {\n top: overflow.top - rect.height - preventedOffsets.y,\n right: overflow.right - rect.width + preventedOffsets.x,\n bottom: overflow.bottom - rect.height + preventedOffsets.y,\n left: overflow.left - rect.width - preventedOffsets.x\n };\n}\n\nfunction isAnySideFullyClipped(overflow) {\n return [top, right, bottom, left].some(function (side) {\n return overflow[side] >= 0;\n });\n}\n\nfunction hide(_ref) {\n var state = _ref.state,\n name = _ref.name;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var preventedOffsets = state.modifiersData.preventOverflow;\n var referenceOverflow = detectOverflow(state, {\n elementContext: 'reference'\n });\n var popperAltOverflow = detectOverflow(state, {\n altBoundary: true\n });\n var referenceClippingOffsets = getSideOffsets(referenceOverflow, referenceRect);\n var popperEscapeOffsets = getSideOffsets(popperAltOverflow, popperRect, preventedOffsets);\n var isReferenceHidden = isAnySideFullyClipped(referenceClippingOffsets);\n var hasPopperEscaped = isAnySideFullyClipped(popperEscapeOffsets);\n state.modifiersData[name] = {\n referenceClippingOffsets: referenceClippingOffsets,\n popperEscapeOffsets: popperEscapeOffsets,\n isReferenceHidden: isReferenceHidden,\n hasPopperEscaped: hasPopperEscaped\n };\n state.attributes.popper = Object.assign({}, state.attributes.popper, {\n 'data-popper-reference-hidden': isReferenceHidden,\n 'data-popper-escaped': hasPopperEscaped\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'hide',\n enabled: true,\n phase: 'main',\n requiresIfExists: ['preventOverflow'],\n fn: hide\n};","import getBasePlacement from \"../utils/getBasePlacement.js\";\nimport { top, left, right, placements } from \"../enums.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport function distanceAndSkiddingToXY(placement, rects, offset) {\n var basePlacement = getBasePlacement(placement);\n var invertDistance = [left, top].indexOf(basePlacement) >= 0 ? -1 : 1;\n\n var _ref = typeof offset === 'function' ? offset(Object.assign({}, rects, {\n placement: placement\n })) : offset,\n skidding = _ref[0],\n distance = _ref[1];\n\n skidding = skidding || 0;\n distance = (distance || 0) * invertDistance;\n return [left, right].indexOf(basePlacement) >= 0 ? {\n x: distance,\n y: skidding\n } : {\n x: skidding,\n y: distance\n };\n}\n\nfunction offset(_ref2) {\n var state = _ref2.state,\n options = _ref2.options,\n name = _ref2.name;\n var _options$offset = options.offset,\n offset = _options$offset === void 0 ? [0, 0] : _options$offset;\n var data = placements.reduce(function (acc, placement) {\n acc[placement] = distanceAndSkiddingToXY(placement, state.rects, offset);\n return acc;\n }, {});\n var _data$state$placement = data[state.placement],\n x = _data$state$placement.x,\n y = _data$state$placement.y;\n\n if (state.modifiersData.popperOffsets != null) {\n state.modifiersData.popperOffsets.x += x;\n state.modifiersData.popperOffsets.y += y;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'offset',\n enabled: true,\n phase: 'main',\n requires: ['popperOffsets'],\n fn: offset\n};","import computeOffsets from \"../utils/computeOffsets.js\";\n\nfunction popperOffsets(_ref) {\n var state = _ref.state,\n name = _ref.name;\n // Offsets are the actual position the popper needs to have to be\n // properly positioned near its reference element\n // This is the most basic placement, and will be adjusted by\n // the modifiers in the next step\n state.modifiersData[name] = computeOffsets({\n reference: state.rects.reference,\n element: state.rects.popper,\n strategy: 'absolute',\n placement: state.placement\n });\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'popperOffsets',\n enabled: true,\n phase: 'read',\n fn: popperOffsets,\n data: {}\n};","import { top, left, right, bottom, start } from \"../enums.js\";\nimport getBasePlacement from \"../utils/getBasePlacement.js\";\nimport getMainAxisFromPlacement from \"../utils/getMainAxisFromPlacement.js\";\nimport getAltAxis from \"../utils/getAltAxis.js\";\nimport { within, withinMaxClamp } from \"../utils/within.js\";\nimport getLayoutRect from \"../dom-utils/getLayoutRect.js\";\nimport getOffsetParent from \"../dom-utils/getOffsetParent.js\";\nimport detectOverflow from \"../utils/detectOverflow.js\";\nimport getVariation from \"../utils/getVariation.js\";\nimport getFreshSideObject from \"../utils/getFreshSideObject.js\";\nimport { min as mathMin, max as mathMax } from \"../utils/math.js\";\n\nfunction preventOverflow(_ref) {\n var state = _ref.state,\n options = _ref.options,\n name = _ref.name;\n var _options$mainAxis = options.mainAxis,\n checkMainAxis = _options$mainAxis === void 0 ? true : _options$mainAxis,\n _options$altAxis = options.altAxis,\n checkAltAxis = _options$altAxis === void 0 ? false : _options$altAxis,\n boundary = options.boundary,\n rootBoundary = options.rootBoundary,\n altBoundary = options.altBoundary,\n padding = options.padding,\n _options$tether = options.tether,\n tether = _options$tether === void 0 ? true : _options$tether,\n _options$tetherOffset = options.tetherOffset,\n tetherOffset = _options$tetherOffset === void 0 ? 0 : _options$tetherOffset;\n var overflow = detectOverflow(state, {\n boundary: boundary,\n rootBoundary: rootBoundary,\n padding: padding,\n altBoundary: altBoundary\n });\n var basePlacement = getBasePlacement(state.placement);\n var variation = getVariation(state.placement);\n var isBasePlacement = !variation;\n var mainAxis = getMainAxisFromPlacement(basePlacement);\n var altAxis = getAltAxis(mainAxis);\n var popperOffsets = state.modifiersData.popperOffsets;\n var referenceRect = state.rects.reference;\n var popperRect = state.rects.popper;\n var tetherOffsetValue = typeof tetherOffset === 'function' ? tetherOffset(Object.assign({}, state.rects, {\n placement: state.placement\n })) : tetherOffset;\n var normalizedTetherOffsetValue = typeof tetherOffsetValue === 'number' ? {\n mainAxis: tetherOffsetValue,\n altAxis: tetherOffsetValue\n } : Object.assign({\n mainAxis: 0,\n altAxis: 0\n }, tetherOffsetValue);\n var offsetModifierState = state.modifiersData.offset ? state.modifiersData.offset[state.placement] : null;\n var data = {\n x: 0,\n y: 0\n };\n\n if (!popperOffsets) {\n return;\n }\n\n if (checkMainAxis) {\n var _offsetModifierState$;\n\n var mainSide = mainAxis === 'y' ? top : left;\n var altSide = mainAxis === 'y' ? bottom : right;\n var len = mainAxis === 'y' ? 'height' : 'width';\n var offset = popperOffsets[mainAxis];\n var min = offset + overflow[mainSide];\n var max = offset - overflow[altSide];\n var additive = tether ? -popperRect[len] / 2 : 0;\n var minLen = variation === start ? referenceRect[len] : popperRect[len];\n var maxLen = variation === start ? -popperRect[len] : -referenceRect[len]; // We need to include the arrow in the calculation so the arrow doesn't go\n // outside the reference bounds\n\n var arrowElement = state.elements.arrow;\n var arrowRect = tether && arrowElement ? getLayoutRect(arrowElement) : {\n width: 0,\n height: 0\n };\n var arrowPaddingObject = state.modifiersData['arrow#persistent'] ? state.modifiersData['arrow#persistent'].padding : getFreshSideObject();\n var arrowPaddingMin = arrowPaddingObject[mainSide];\n var arrowPaddingMax = arrowPaddingObject[altSide]; // If the reference length is smaller than the arrow length, we don't want\n // to include its full size in the calculation. If the reference is small\n // and near the edge of a boundary, the popper can overflow even if the\n // reference is not overflowing as well (e.g. virtual elements with no\n // width or height)\n\n var arrowLen = within(0, referenceRect[len], arrowRect[len]);\n var minOffset = isBasePlacement ? referenceRect[len] / 2 - additive - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis : minLen - arrowLen - arrowPaddingMin - normalizedTetherOffsetValue.mainAxis;\n var maxOffset = isBasePlacement ? -referenceRect[len] / 2 + additive + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis : maxLen + arrowLen + arrowPaddingMax + normalizedTetherOffsetValue.mainAxis;\n var arrowOffsetParent = state.elements.arrow && getOffsetParent(state.elements.arrow);\n var clientOffset = arrowOffsetParent ? mainAxis === 'y' ? arrowOffsetParent.clientTop || 0 : arrowOffsetParent.clientLeft || 0 : 0;\n var offsetModifierValue = (_offsetModifierState$ = offsetModifierState == null ? void 0 : offsetModifierState[mainAxis]) != null ? _offsetModifierState$ : 0;\n var tetherMin = offset + minOffset - offsetModifierValue - clientOffset;\n var tetherMax = offset + maxOffset - offsetModifierValue;\n var preventedOffset = within(tether ? mathMin(min, tetherMin) : min, offset, tether ? mathMax(max, tetherMax) : max);\n popperOffsets[mainAxis] = preventedOffset;\n data[mainAxis] = preventedOffset - offset;\n }\n\n if (checkAltAxis) {\n var _offsetModifierState$2;\n\n var _mainSide = mainAxis === 'x' ? top : left;\n\n var _altSide = mainAxis === 'x' ? bottom : right;\n\n var _offset = popperOffsets[altAxis];\n\n var _len = altAxis === 'y' ? 'height' : 'width';\n\n var _min = _offset + overflow[_mainSide];\n\n var _max = _offset - overflow[_altSide];\n\n var isOriginSide = [top, left].indexOf(basePlacement) !== -1;\n\n var _offsetModifierValue = (_offsetModifierState$2 = offsetModifierState == null ? void 0 : offsetModifierState[altAxis]) != null ? _offsetModifierState$2 : 0;\n\n var _tetherMin = isOriginSide ? _min : _offset - referenceRect[_len] - popperRect[_len] - _offsetModifierValue + normalizedTetherOffsetValue.altAxis;\n\n var _tetherMax = isOriginSide ? _offset + referenceRect[_len] + popperRect[_len] - _offsetModifierValue - normalizedTetherOffsetValue.altAxis : _max;\n\n var _preventedOffset = tether && isOriginSide ? withinMaxClamp(_tetherMin, _offset, _tetherMax) : within(tether ? _tetherMin : _min, _offset, tether ? _tetherMax : _max);\n\n popperOffsets[altAxis] = _preventedOffset;\n data[altAxis] = _preventedOffset - _offset;\n }\n\n state.modifiersData[name] = data;\n} // eslint-disable-next-line import/no-unused-modules\n\n\nexport default {\n name: 'preventOverflow',\n enabled: true,\n phase: 'main',\n fn: preventOverflow,\n requiresIfExists: ['offset']\n};","export default function getAltAxis(axis) {\n return axis === 'x' ? 'y' : 'x';\n}","import getBoundingClientRect from \"./getBoundingClientRect.js\";\nimport getNodeScroll from \"./getNodeScroll.js\";\nimport getNodeName from \"./getNodeName.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nimport getWindowScrollBarX from \"./getWindowScrollBarX.js\";\nimport getDocumentElement from \"./getDocumentElement.js\";\nimport isScrollParent from \"./isScrollParent.js\";\nimport { round } from \"../utils/math.js\";\n\nfunction isElementScaled(element) {\n var rect = element.getBoundingClientRect();\n var scaleX = round(rect.width) / element.offsetWidth || 1;\n var scaleY = round(rect.height) / element.offsetHeight || 1;\n return scaleX !== 1 || scaleY !== 1;\n} // Returns the composite rect of an element relative to its offsetParent.\n// Composite means it takes into account transforms as well as layout.\n\n\nexport default function getCompositeRect(elementOrVirtualElement, offsetParent, isFixed) {\n if (isFixed === void 0) {\n isFixed = false;\n }\n\n var isOffsetParentAnElement = isHTMLElement(offsetParent);\n var offsetParentIsScaled = isHTMLElement(offsetParent) && isElementScaled(offsetParent);\n var documentElement = getDocumentElement(offsetParent);\n var rect = getBoundingClientRect(elementOrVirtualElement, offsetParentIsScaled, isFixed);\n var scroll = {\n scrollLeft: 0,\n scrollTop: 0\n };\n var offsets = {\n x: 0,\n y: 0\n };\n\n if (isOffsetParentAnElement || !isOffsetParentAnElement && !isFixed) {\n if (getNodeName(offsetParent) !== 'body' || // https://github.com/popperjs/popper-core/issues/1078\n isScrollParent(documentElement)) {\n scroll = getNodeScroll(offsetParent);\n }\n\n if (isHTMLElement(offsetParent)) {\n offsets = getBoundingClientRect(offsetParent, true);\n offsets.x += offsetParent.clientLeft;\n offsets.y += offsetParent.clientTop;\n } else if (documentElement) {\n offsets.x = getWindowScrollBarX(documentElement);\n }\n }\n\n return {\n x: rect.left + scroll.scrollLeft - offsets.x,\n y: rect.top + scroll.scrollTop - offsets.y,\n width: rect.width,\n height: rect.height\n };\n}","import getWindowScroll from \"./getWindowScroll.js\";\nimport getWindow from \"./getWindow.js\";\nimport { isHTMLElement } from \"./instanceOf.js\";\nimport getHTMLElementScroll from \"./getHTMLElementScroll.js\";\nexport default function getNodeScroll(node) {\n if (node === getWindow(node) || !isHTMLElement(node)) {\n return getWindowScroll(node);\n } else {\n return getHTMLElementScroll(node);\n }\n}","export default function getHTMLElementScroll(element) {\n return {\n scrollLeft: element.scrollLeft,\n scrollTop: element.scrollTop\n };\n}","import { modifierPhases } from \"../enums.js\"; // source: https://stackoverflow.com/questions/49875255\n\nfunction order(modifiers) {\n var map = new Map();\n var visited = new Set();\n var result = [];\n modifiers.forEach(function (modifier) {\n map.set(modifier.name, modifier);\n }); // On visiting object, check for its dependencies and visit them recursively\n\n function sort(modifier) {\n visited.add(modifier.name);\n var requires = [].concat(modifier.requires || [], modifier.requiresIfExists || []);\n requires.forEach(function (dep) {\n if (!visited.has(dep)) {\n var depModifier = map.get(dep);\n\n if (depModifier) {\n sort(depModifier);\n }\n }\n });\n result.push(modifier);\n }\n\n modifiers.forEach(function (modifier) {\n if (!visited.has(modifier.name)) {\n // check for visited object\n sort(modifier);\n }\n });\n return result;\n}\n\nexport default function orderModifiers(modifiers) {\n // order based on dependencies\n var orderedModifiers = order(modifiers); // order based on phase\n\n return modifierPhases.reduce(function (acc, phase) {\n return acc.concat(orderedModifiers.filter(function (modifier) {\n return modifier.phase === phase;\n }));\n }, []);\n}","import getCompositeRect from \"./dom-utils/getCompositeRect.js\";\nimport getLayoutRect from \"./dom-utils/getLayoutRect.js\";\nimport listScrollParents from \"./dom-utils/listScrollParents.js\";\nimport getOffsetParent from \"./dom-utils/getOffsetParent.js\";\nimport orderModifiers from \"./utils/orderModifiers.js\";\nimport debounce from \"./utils/debounce.js\";\nimport mergeByName from \"./utils/mergeByName.js\";\nimport detectOverflow from \"./utils/detectOverflow.js\";\nimport { isElement } from \"./dom-utils/instanceOf.js\";\nvar DEFAULT_OPTIONS = {\n placement: 'bottom',\n modifiers: [],\n strategy: 'absolute'\n};\n\nfunction areValidElements() {\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return !args.some(function (element) {\n return !(element && typeof element.getBoundingClientRect === 'function');\n });\n}\n\nexport function popperGenerator(generatorOptions) {\n if (generatorOptions === void 0) {\n generatorOptions = {};\n }\n\n var _generatorOptions = generatorOptions,\n _generatorOptions$def = _generatorOptions.defaultModifiers,\n defaultModifiers = _generatorOptions$def === void 0 ? [] : _generatorOptions$def,\n _generatorOptions$def2 = _generatorOptions.defaultOptions,\n defaultOptions = _generatorOptions$def2 === void 0 ? DEFAULT_OPTIONS : _generatorOptions$def2;\n return function createPopper(reference, popper, options) {\n if (options === void 0) {\n options = defaultOptions;\n }\n\n var state = {\n placement: 'bottom',\n orderedModifiers: [],\n options: Object.assign({}, DEFAULT_OPTIONS, defaultOptions),\n modifiersData: {},\n elements: {\n reference: reference,\n popper: popper\n },\n attributes: {},\n styles: {}\n };\n var effectCleanupFns = [];\n var isDestroyed = false;\n var instance = {\n state: state,\n setOptions: function setOptions(setOptionsAction) {\n var options = typeof setOptionsAction === 'function' ? setOptionsAction(state.options) : setOptionsAction;\n cleanupModifierEffects();\n state.options = Object.assign({}, defaultOptions, state.options, options);\n state.scrollParents = {\n reference: isElement(reference) ? listScrollParents(reference) : reference.contextElement ? listScrollParents(reference.contextElement) : [],\n popper: listScrollParents(popper)\n }; // Orders the modifiers based on their dependencies and `phase`\n // properties\n\n var orderedModifiers = orderModifiers(mergeByName([].concat(defaultModifiers, state.options.modifiers))); // Strip out disabled modifiers\n\n state.orderedModifiers = orderedModifiers.filter(function (m) {\n return m.enabled;\n });\n runModifierEffects();\n return instance.update();\n },\n // Sync update – it will always be executed, even if not necessary. This\n // is useful for low frequency updates where sync behavior simplifies the\n // logic.\n // For high frequency updates (e.g. `resize` and `scroll` events), always\n // prefer the async Popper#update method\n forceUpdate: function forceUpdate() {\n if (isDestroyed) {\n return;\n }\n\n var _state$elements = state.elements,\n reference = _state$elements.reference,\n popper = _state$elements.popper; // Don't proceed if `reference` or `popper` are not valid elements\n // anymore\n\n if (!areValidElements(reference, popper)) {\n return;\n } // Store the reference and popper rects to be read by modifiers\n\n\n state.rects = {\n reference: getCompositeRect(reference, getOffsetParent(popper), state.options.strategy === 'fixed'),\n popper: getLayoutRect(popper)\n }; // Modifiers have the ability to reset the current update cycle. The\n // most common use case for this is the `flip` modifier changing the\n // placement, which then needs to re-run all the modifiers, because the\n // logic was previously ran for the previous placement and is therefore\n // stale/incorrect\n\n state.reset = false;\n state.placement = state.options.placement; // On each update cycle, the `modifiersData` property for each modifier\n // is filled with the initial data specified by the modifier. This means\n // it doesn't persist and is fresh on each update.\n // To ensure persistent data, use `${name}#persistent`\n\n state.orderedModifiers.forEach(function (modifier) {\n return state.modifiersData[modifier.name] = Object.assign({}, modifier.data);\n });\n\n for (var index = 0; index < state.orderedModifiers.length; index++) {\n if (state.reset === true) {\n state.reset = false;\n index = -1;\n continue;\n }\n\n var _state$orderedModifie = state.orderedModifiers[index],\n fn = _state$orderedModifie.fn,\n _state$orderedModifie2 = _state$orderedModifie.options,\n _options = _state$orderedModifie2 === void 0 ? {} : _state$orderedModifie2,\n name = _state$orderedModifie.name;\n\n if (typeof fn === 'function') {\n state = fn({\n state: state,\n options: _options,\n name: name,\n instance: instance\n }) || state;\n }\n }\n },\n // Async and optimistically optimized update – it will not be executed if\n // not necessary (debounced to run at most once-per-tick)\n update: debounce(function () {\n return new Promise(function (resolve) {\n instance.forceUpdate();\n resolve(state);\n });\n }),\n destroy: function destroy() {\n cleanupModifierEffects();\n isDestroyed = true;\n }\n };\n\n if (!areValidElements(reference, popper)) {\n return instance;\n }\n\n instance.setOptions(options).then(function (state) {\n if (!isDestroyed && options.onFirstUpdate) {\n options.onFirstUpdate(state);\n }\n }); // Modifiers have the ability to execute arbitrary code before the first\n // update cycle runs. They will be executed in the same order as the update\n // cycle. This is useful when a modifier adds some persistent data that\n // other modifiers need to use, but the modifier is run after the dependent\n // one.\n\n function runModifierEffects() {\n state.orderedModifiers.forEach(function (_ref) {\n var name = _ref.name,\n _ref$options = _ref.options,\n options = _ref$options === void 0 ? {} : _ref$options,\n effect = _ref.effect;\n\n if (typeof effect === 'function') {\n var cleanupFn = effect({\n state: state,\n name: name,\n instance: instance,\n options: options\n });\n\n var noopFn = function noopFn() {};\n\n effectCleanupFns.push(cleanupFn || noopFn);\n }\n });\n }\n\n function cleanupModifierEffects() {\n effectCleanupFns.forEach(function (fn) {\n return fn();\n });\n effectCleanupFns = [];\n }\n\n return instance;\n };\n}\nexport var createPopper = /*#__PURE__*/popperGenerator(); // eslint-disable-next-line import/no-unused-modules\n\nexport { detectOverflow };","export default function debounce(fn) {\n var pending;\n return function () {\n if (!pending) {\n pending = new Promise(function (resolve) {\n Promise.resolve().then(function () {\n pending = undefined;\n resolve(fn());\n });\n });\n }\n\n return pending;\n };\n}","export default function mergeByName(modifiers) {\n var merged = modifiers.reduce(function (merged, current) {\n var existing = merged[current.name];\n merged[current.name] = existing ? Object.assign({}, existing, current, {\n options: Object.assign({}, existing.options, current.options),\n data: Object.assign({}, existing.data, current.data)\n }) : current;\n return merged;\n }, {}); // IE11 does not support Object.values\n\n return Object.keys(merged).map(function (key) {\n return merged[key];\n });\n}","import { popperGenerator, detectOverflow } from \"./createPopper.js\";\nimport eventListeners from \"./modifiers/eventListeners.js\";\nimport popperOffsets from \"./modifiers/popperOffsets.js\";\nimport computeStyles from \"./modifiers/computeStyles.js\";\nimport applyStyles from \"./modifiers/applyStyles.js\";\nimport offset from \"./modifiers/offset.js\";\nimport flip from \"./modifiers/flip.js\";\nimport preventOverflow from \"./modifiers/preventOverflow.js\";\nimport arrow from \"./modifiers/arrow.js\";\nimport hide from \"./modifiers/hide.js\";\nvar defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles, offset, flip, preventOverflow, arrow, hide];\nvar createPopper = /*#__PURE__*/popperGenerator({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper, popperGenerator, defaultModifiers, detectOverflow }; // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper as createPopperLite } from \"./popper-lite.js\"; // eslint-disable-next-line import/no-unused-modules\n\nexport * from \"./modifiers/index.js\";","import { popperGenerator, detectOverflow } from \"./createPopper.js\";\nimport eventListeners from \"./modifiers/eventListeners.js\";\nimport popperOffsets from \"./modifiers/popperOffsets.js\";\nimport computeStyles from \"./modifiers/computeStyles.js\";\nimport applyStyles from \"./modifiers/applyStyles.js\";\nvar defaultModifiers = [eventListeners, popperOffsets, computeStyles, applyStyles];\nvar createPopper = /*#__PURE__*/popperGenerator({\n defaultModifiers: defaultModifiers\n}); // eslint-disable-next-line import/no-unused-modules\n\nexport { createPopper, popperGenerator, defaultModifiers, detectOverflow };","/*!\n * Bootstrap v5.3.2 (https://getbootstrap.com/)\n * Copyright 2011-2023 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n */\nimport * as Popper from '@popperjs/core';\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/data.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n/**\n * Constants\n */\n\nconst elementMap = new Map();\nconst Data = {\n set(element, key, instance) {\n if (!elementMap.has(element)) {\n elementMap.set(element, new Map());\n }\n const instanceMap = elementMap.get(element);\n\n // make it clear we only want one instance per element\n // can be removed later when multiple key/instances are fine to be used\n if (!instanceMap.has(key) && instanceMap.size !== 0) {\n // eslint-disable-next-line no-console\n console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(instanceMap.keys())[0]}.`);\n return;\n }\n instanceMap.set(key, instance);\n },\n get(element, key) {\n if (elementMap.has(element)) {\n return elementMap.get(element).get(key) || null;\n }\n return null;\n },\n remove(element, key) {\n if (!elementMap.has(element)) {\n return;\n }\n const instanceMap = elementMap.get(element);\n instanceMap.delete(key);\n\n // free up element references if there are no instances left for an element\n if (instanceMap.size === 0) {\n elementMap.delete(element);\n }\n }\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/index.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst MAX_UID = 1000000;\nconst MILLISECONDS_MULTIPLIER = 1000;\nconst TRANSITION_END = 'transitionend';\n\n/**\n * Properly escape IDs selectors to handle weird IDs\n * @param {string} selector\n * @returns {string}\n */\nconst parseSelector = selector => {\n if (selector && window.CSS && window.CSS.escape) {\n // document.querySelector needs escaping to handle IDs (html5+) containing for instance /\n selector = selector.replace(/#([^\\s\"#']+)/g, (match, id) => `#${CSS.escape(id)}`);\n }\n return selector;\n};\n\n// Shout-out Angus Croll (https://goo.gl/pxwQGp)\nconst toType = object => {\n if (object === null || object === undefined) {\n return `${object}`;\n }\n return Object.prototype.toString.call(object).match(/\\s([a-z]+)/i)[1].toLowerCase();\n};\n\n/**\n * Public Util API\n */\n\nconst getUID = prefix => {\n do {\n prefix += Math.floor(Math.random() * MAX_UID);\n } while (document.getElementById(prefix));\n return prefix;\n};\nconst getTransitionDurationFromElement = element => {\n if (!element) {\n return 0;\n }\n\n // Get transition-duration of the element\n let {\n transitionDuration,\n transitionDelay\n } = window.getComputedStyle(element);\n const floatTransitionDuration = Number.parseFloat(transitionDuration);\n const floatTransitionDelay = Number.parseFloat(transitionDelay);\n\n // Return 0 if element or transition duration is not found\n if (!floatTransitionDuration && !floatTransitionDelay) {\n return 0;\n }\n\n // If multiple durations are defined, take the first\n transitionDuration = transitionDuration.split(',')[0];\n transitionDelay = transitionDelay.split(',')[0];\n return (Number.parseFloat(transitionDuration) + Number.parseFloat(transitionDelay)) * MILLISECONDS_MULTIPLIER;\n};\nconst triggerTransitionEnd = element => {\n element.dispatchEvent(new Event(TRANSITION_END));\n};\nconst isElement = object => {\n if (!object || typeof object !== 'object') {\n return false;\n }\n if (typeof object.jquery !== 'undefined') {\n object = object[0];\n }\n return typeof object.nodeType !== 'undefined';\n};\nconst getElement = object => {\n // it's a jQuery object or a node element\n if (isElement(object)) {\n return object.jquery ? object[0] : object;\n }\n if (typeof object === 'string' && object.length > 0) {\n return document.querySelector(parseSelector(object));\n }\n return null;\n};\nconst isVisible = element => {\n if (!isElement(element) || element.getClientRects().length === 0) {\n return false;\n }\n const elementIsVisible = getComputedStyle(element).getPropertyValue('visibility') === 'visible';\n // Handle `details` element as its content may falsie appear visible when it is closed\n const closedDetails = element.closest('details:not([open])');\n if (!closedDetails) {\n return elementIsVisible;\n }\n if (closedDetails !== element) {\n const summary = element.closest('summary');\n if (summary && summary.parentNode !== closedDetails) {\n return false;\n }\n if (summary === null) {\n return false;\n }\n }\n return elementIsVisible;\n};\nconst isDisabled = element => {\n if (!element || element.nodeType !== Node.ELEMENT_NODE) {\n return true;\n }\n if (element.classList.contains('disabled')) {\n return true;\n }\n if (typeof element.disabled !== 'undefined') {\n return element.disabled;\n }\n return element.hasAttribute('disabled') && element.getAttribute('disabled') !== 'false';\n};\nconst findShadowRoot = element => {\n if (!document.documentElement.attachShadow) {\n return null;\n }\n\n // Can find the shadow root otherwise it'll return the document\n if (typeof element.getRootNode === 'function') {\n const root = element.getRootNode();\n return root instanceof ShadowRoot ? root : null;\n }\n if (element instanceof ShadowRoot) {\n return element;\n }\n\n // when we don't find a shadow root\n if (!element.parentNode) {\n return null;\n }\n return findShadowRoot(element.parentNode);\n};\nconst noop = () => {};\n\n/**\n * Trick to restart an element's animation\n *\n * @param {HTMLElement} element\n * @return void\n *\n * @see https://www.charistheo.io/blog/2021/02/restart-a-css-animation-with-javascript/#restarting-a-css-animation\n */\nconst reflow = element => {\n element.offsetHeight; // eslint-disable-line no-unused-expressions\n};\n\nconst getjQuery = () => {\n if (window.jQuery && !document.body.hasAttribute('data-bs-no-jquery')) {\n return window.jQuery;\n }\n return null;\n};\nconst DOMContentLoadedCallbacks = [];\nconst onDOMContentLoaded = callback => {\n if (document.readyState === 'loading') {\n // add listener on the first call when the document is in loading state\n if (!DOMContentLoadedCallbacks.length) {\n document.addEventListener('DOMContentLoaded', () => {\n for (const callback of DOMContentLoadedCallbacks) {\n callback();\n }\n });\n }\n DOMContentLoadedCallbacks.push(callback);\n } else {\n callback();\n }\n};\nconst isRTL = () => document.documentElement.dir === 'rtl';\nconst defineJQueryPlugin = plugin => {\n onDOMContentLoaded(() => {\n const $ = getjQuery();\n /* istanbul ignore if */\n if ($) {\n const name = plugin.NAME;\n const JQUERY_NO_CONFLICT = $.fn[name];\n $.fn[name] = plugin.jQueryInterface;\n $.fn[name].Constructor = plugin;\n $.fn[name].noConflict = () => {\n $.fn[name] = JQUERY_NO_CONFLICT;\n return plugin.jQueryInterface;\n };\n }\n });\n};\nconst execute = (possibleCallback, args = [], defaultValue = possibleCallback) => {\n return typeof possibleCallback === 'function' ? possibleCallback(...args) : defaultValue;\n};\nconst executeAfterTransition = (callback, transitionElement, waitForTransition = true) => {\n if (!waitForTransition) {\n execute(callback);\n return;\n }\n const durationPadding = 5;\n const emulatedDuration = getTransitionDurationFromElement(transitionElement) + durationPadding;\n let called = false;\n const handler = ({\n target\n }) => {\n if (target !== transitionElement) {\n return;\n }\n called = true;\n transitionElement.removeEventListener(TRANSITION_END, handler);\n execute(callback);\n };\n transitionElement.addEventListener(TRANSITION_END, handler);\n setTimeout(() => {\n if (!called) {\n triggerTransitionEnd(transitionElement);\n }\n }, emulatedDuration);\n};\n\n/**\n * Return the previous/next element of a list.\n *\n * @param {array} list The list of elements\n * @param activeElement The active element\n * @param shouldGetNext Choose to get next or previous element\n * @param isCycleAllowed\n * @return {Element|elem} The proper element\n */\nconst getNextActiveElement = (list, activeElement, shouldGetNext, isCycleAllowed) => {\n const listLength = list.length;\n let index = list.indexOf(activeElement);\n\n // if the element does not exist in the list return an element\n // depending on the direction and if cycle is allowed\n if (index === -1) {\n return !shouldGetNext && isCycleAllowed ? list[listLength - 1] : list[0];\n }\n index += shouldGetNext ? 1 : -1;\n if (isCycleAllowed) {\n index = (index + listLength) % listLength;\n }\n return list[Math.max(0, Math.min(index, listLength - 1))];\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/event-handler.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst namespaceRegex = /[^.]*(?=\\..*)\\.|.*/;\nconst stripNameRegex = /\\..*/;\nconst stripUidRegex = /::\\d+$/;\nconst eventRegistry = {}; // Events storage\nlet uidEvent = 1;\nconst customEvents = {\n mouseenter: 'mouseover',\n mouseleave: 'mouseout'\n};\nconst nativeEvents = new Set(['click', 'dblclick', 'mouseup', 'mousedown', 'contextmenu', 'mousewheel', 'DOMMouseScroll', 'mouseover', 'mouseout', 'mousemove', 'selectstart', 'selectend', 'keydown', 'keypress', 'keyup', 'orientationchange', 'touchstart', 'touchmove', 'touchend', 'touchcancel', 'pointerdown', 'pointermove', 'pointerup', 'pointerleave', 'pointercancel', 'gesturestart', 'gesturechange', 'gestureend', 'focus', 'blur', 'change', 'reset', 'select', 'submit', 'focusin', 'focusout', 'load', 'unload', 'beforeunload', 'resize', 'move', 'DOMContentLoaded', 'readystatechange', 'error', 'abort', 'scroll']);\n\n/**\n * Private methods\n */\n\nfunction makeEventUid(element, uid) {\n return uid && `${uid}::${uidEvent++}` || element.uidEvent || uidEvent++;\n}\nfunction getElementEvents(element) {\n const uid = makeEventUid(element);\n element.uidEvent = uid;\n eventRegistry[uid] = eventRegistry[uid] || {};\n return eventRegistry[uid];\n}\nfunction bootstrapHandler(element, fn) {\n return function handler(event) {\n hydrateObj(event, {\n delegateTarget: element\n });\n if (handler.oneOff) {\n EventHandler.off(element, event.type, fn);\n }\n return fn.apply(element, [event]);\n };\n}\nfunction bootstrapDelegationHandler(element, selector, fn) {\n return function handler(event) {\n const domElements = element.querySelectorAll(selector);\n for (let {\n target\n } = event; target && target !== this; target = target.parentNode) {\n for (const domElement of domElements) {\n if (domElement !== target) {\n continue;\n }\n hydrateObj(event, {\n delegateTarget: target\n });\n if (handler.oneOff) {\n EventHandler.off(element, event.type, selector, fn);\n }\n return fn.apply(target, [event]);\n }\n }\n };\n}\nfunction findHandler(events, callable, delegationSelector = null) {\n return Object.values(events).find(event => event.callable === callable && event.delegationSelector === delegationSelector);\n}\nfunction normalizeParameters(originalTypeEvent, handler, delegationFunction) {\n const isDelegated = typeof handler === 'string';\n // TODO: tooltip passes `false` instead of selector, so we need to check\n const callable = isDelegated ? delegationFunction : handler || delegationFunction;\n let typeEvent = getTypeEvent(originalTypeEvent);\n if (!nativeEvents.has(typeEvent)) {\n typeEvent = originalTypeEvent;\n }\n return [isDelegated, callable, typeEvent];\n}\nfunction addHandler(element, originalTypeEvent, handler, delegationFunction, oneOff) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n let [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction);\n\n // in case of mouseenter or mouseleave wrap the handler within a function that checks for its DOM position\n // this prevents the handler from being dispatched the same way as mouseover or mouseout does\n if (originalTypeEvent in customEvents) {\n const wrapFunction = fn => {\n return function (event) {\n if (!event.relatedTarget || event.relatedTarget !== event.delegateTarget && !event.delegateTarget.contains(event.relatedTarget)) {\n return fn.call(this, event);\n }\n };\n };\n callable = wrapFunction(callable);\n }\n const events = getElementEvents(element);\n const handlers = events[typeEvent] || (events[typeEvent] = {});\n const previousFunction = findHandler(handlers, callable, isDelegated ? handler : null);\n if (previousFunction) {\n previousFunction.oneOff = previousFunction.oneOff && oneOff;\n return;\n }\n const uid = makeEventUid(callable, originalTypeEvent.replace(namespaceRegex, ''));\n const fn = isDelegated ? bootstrapDelegationHandler(element, handler, callable) : bootstrapHandler(element, callable);\n fn.delegationSelector = isDelegated ? handler : null;\n fn.callable = callable;\n fn.oneOff = oneOff;\n fn.uidEvent = uid;\n handlers[uid] = fn;\n element.addEventListener(typeEvent, fn, isDelegated);\n}\nfunction removeHandler(element, events, typeEvent, handler, delegationSelector) {\n const fn = findHandler(events[typeEvent], handler, delegationSelector);\n if (!fn) {\n return;\n }\n element.removeEventListener(typeEvent, fn, Boolean(delegationSelector));\n delete events[typeEvent][fn.uidEvent];\n}\nfunction removeNamespacedHandlers(element, events, typeEvent, namespace) {\n const storeElementEvent = events[typeEvent] || {};\n for (const [handlerKey, event] of Object.entries(storeElementEvent)) {\n if (handlerKey.includes(namespace)) {\n removeHandler(element, events, typeEvent, event.callable, event.delegationSelector);\n }\n }\n}\nfunction getTypeEvent(event) {\n // allow to get the native events from namespaced events ('click.bs.button' --> 'click')\n event = event.replace(stripNameRegex, '');\n return customEvents[event] || event;\n}\nconst EventHandler = {\n on(element, event, handler, delegationFunction) {\n addHandler(element, event, handler, delegationFunction, false);\n },\n one(element, event, handler, delegationFunction) {\n addHandler(element, event, handler, delegationFunction, true);\n },\n off(element, originalTypeEvent, handler, delegationFunction) {\n if (typeof originalTypeEvent !== 'string' || !element) {\n return;\n }\n const [isDelegated, callable, typeEvent] = normalizeParameters(originalTypeEvent, handler, delegationFunction);\n const inNamespace = typeEvent !== originalTypeEvent;\n const events = getElementEvents(element);\n const storeElementEvent = events[typeEvent] || {};\n const isNamespace = originalTypeEvent.startsWith('.');\n if (typeof callable !== 'undefined') {\n // Simplest case: handler is passed, remove that listener ONLY.\n if (!Object.keys(storeElementEvent).length) {\n return;\n }\n removeHandler(element, events, typeEvent, callable, isDelegated ? handler : null);\n return;\n }\n if (isNamespace) {\n for (const elementEvent of Object.keys(events)) {\n removeNamespacedHandlers(element, events, elementEvent, originalTypeEvent.slice(1));\n }\n }\n for (const [keyHandlers, event] of Object.entries(storeElementEvent)) {\n const handlerKey = keyHandlers.replace(stripUidRegex, '');\n if (!inNamespace || originalTypeEvent.includes(handlerKey)) {\n removeHandler(element, events, typeEvent, event.callable, event.delegationSelector);\n }\n }\n },\n trigger(element, event, args) {\n if (typeof event !== 'string' || !element) {\n return null;\n }\n const $ = getjQuery();\n const typeEvent = getTypeEvent(event);\n const inNamespace = event !== typeEvent;\n let jQueryEvent = null;\n let bubbles = true;\n let nativeDispatch = true;\n let defaultPrevented = false;\n if (inNamespace && $) {\n jQueryEvent = $.Event(event, args);\n $(element).trigger(jQueryEvent);\n bubbles = !jQueryEvent.isPropagationStopped();\n nativeDispatch = !jQueryEvent.isImmediatePropagationStopped();\n defaultPrevented = jQueryEvent.isDefaultPrevented();\n }\n const evt = hydrateObj(new Event(event, {\n bubbles,\n cancelable: true\n }), args);\n if (defaultPrevented) {\n evt.preventDefault();\n }\n if (nativeDispatch) {\n element.dispatchEvent(evt);\n }\n if (evt.defaultPrevented && jQueryEvent) {\n jQueryEvent.preventDefault();\n }\n return evt;\n }\n};\nfunction hydrateObj(obj, meta = {}) {\n for (const [key, value] of Object.entries(meta)) {\n try {\n obj[key] = value;\n } catch (_unused) {\n Object.defineProperty(obj, key, {\n configurable: true,\n get() {\n return value;\n }\n });\n }\n }\n return obj;\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/manipulator.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nfunction normalizeData(value) {\n if (value === 'true') {\n return true;\n }\n if (value === 'false') {\n return false;\n }\n if (value === Number(value).toString()) {\n return Number(value);\n }\n if (value === '' || value === 'null') {\n return null;\n }\n if (typeof value !== 'string') {\n return value;\n }\n try {\n return JSON.parse(decodeURIComponent(value));\n } catch (_unused) {\n return value;\n }\n}\nfunction normalizeDataKey(key) {\n return key.replace(/[A-Z]/g, chr => `-${chr.toLowerCase()}`);\n}\nconst Manipulator = {\n setDataAttribute(element, key, value) {\n element.setAttribute(`data-bs-${normalizeDataKey(key)}`, value);\n },\n removeDataAttribute(element, key) {\n element.removeAttribute(`data-bs-${normalizeDataKey(key)}`);\n },\n getDataAttributes(element) {\n if (!element) {\n return {};\n }\n const attributes = {};\n const bsKeys = Object.keys(element.dataset).filter(key => key.startsWith('bs') && !key.startsWith('bsConfig'));\n for (const key of bsKeys) {\n let pureKey = key.replace(/^bs/, '');\n pureKey = pureKey.charAt(0).toLowerCase() + pureKey.slice(1, pureKey.length);\n attributes[pureKey] = normalizeData(element.dataset[key]);\n }\n return attributes;\n },\n getDataAttribute(element, key) {\n return normalizeData(element.getAttribute(`data-bs-${normalizeDataKey(key)}`));\n }\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/config.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Class definition\n */\n\nclass Config {\n // Getters\n static get Default() {\n return {};\n }\n static get DefaultType() {\n return {};\n }\n static get NAME() {\n throw new Error('You have to implement the static method \"NAME\", for each component!');\n }\n _getConfig(config) {\n config = this._mergeConfigObj(config);\n config = this._configAfterMerge(config);\n this._typeCheckConfig(config);\n return config;\n }\n _configAfterMerge(config) {\n return config;\n }\n _mergeConfigObj(config, element) {\n const jsonConfig = isElement(element) ? Manipulator.getDataAttribute(element, 'config') : {}; // try to parse\n\n return {\n ...this.constructor.Default,\n ...(typeof jsonConfig === 'object' ? jsonConfig : {}),\n ...(isElement(element) ? Manipulator.getDataAttributes(element) : {}),\n ...(typeof config === 'object' ? config : {})\n };\n }\n _typeCheckConfig(config, configTypes = this.constructor.DefaultType) {\n for (const [property, expectedTypes] of Object.entries(configTypes)) {\n const value = config[property];\n const valueType = isElement(value) ? 'element' : toType(value);\n if (!new RegExp(expectedTypes).test(valueType)) {\n throw new TypeError(`${this.constructor.NAME.toUpperCase()}: Option \"${property}\" provided type \"${valueType}\" but expected type \"${expectedTypes}\".`);\n }\n }\n }\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap base-component.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst VERSION = '5.3.2';\n\n/**\n * Class definition\n */\n\nclass BaseComponent extends Config {\n constructor(element, config) {\n super();\n element = getElement(element);\n if (!element) {\n return;\n }\n this._element = element;\n this._config = this._getConfig(config);\n Data.set(this._element, this.constructor.DATA_KEY, this);\n }\n\n // Public\n dispose() {\n Data.remove(this._element, this.constructor.DATA_KEY);\n EventHandler.off(this._element, this.constructor.EVENT_KEY);\n for (const propertyName of Object.getOwnPropertyNames(this)) {\n this[propertyName] = null;\n }\n }\n _queueCallback(callback, element, isAnimated = true) {\n executeAfterTransition(callback, element, isAnimated);\n }\n _getConfig(config) {\n config = this._mergeConfigObj(config, this._element);\n config = this._configAfterMerge(config);\n this._typeCheckConfig(config);\n return config;\n }\n\n // Static\n static getInstance(element) {\n return Data.get(getElement(element), this.DATA_KEY);\n }\n static getOrCreateInstance(element, config = {}) {\n return this.getInstance(element) || new this(element, typeof config === 'object' ? config : null);\n }\n static get VERSION() {\n return VERSION;\n }\n static get DATA_KEY() {\n return `bs.${this.NAME}`;\n }\n static get EVENT_KEY() {\n return `.${this.DATA_KEY}`;\n }\n static eventName(name) {\n return `${name}${this.EVENT_KEY}`;\n }\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dom/selector-engine.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst getSelector = element => {\n let selector = element.getAttribute('data-bs-target');\n if (!selector || selector === '#') {\n let hrefAttribute = element.getAttribute('href');\n\n // The only valid content that could double as a selector are IDs or classes,\n // so everything starting with `#` or `.`. If a \"real\" URL is used as the selector,\n // `document.querySelector` will rightfully complain it is invalid.\n // See https://github.com/twbs/bootstrap/issues/32273\n if (!hrefAttribute || !hrefAttribute.includes('#') && !hrefAttribute.startsWith('.')) {\n return null;\n }\n\n // Just in case some CMS puts out a full URL with the anchor appended\n if (hrefAttribute.includes('#') && !hrefAttribute.startsWith('#')) {\n hrefAttribute = `#${hrefAttribute.split('#')[1]}`;\n }\n selector = hrefAttribute && hrefAttribute !== '#' ? parseSelector(hrefAttribute.trim()) : null;\n }\n return selector;\n};\nconst SelectorEngine = {\n find(selector, element = document.documentElement) {\n return [].concat(...Element.prototype.querySelectorAll.call(element, selector));\n },\n findOne(selector, element = document.documentElement) {\n return Element.prototype.querySelector.call(element, selector);\n },\n children(element, selector) {\n return [].concat(...element.children).filter(child => child.matches(selector));\n },\n parents(element, selector) {\n const parents = [];\n let ancestor = element.parentNode.closest(selector);\n while (ancestor) {\n parents.push(ancestor);\n ancestor = ancestor.parentNode.closest(selector);\n }\n return parents;\n },\n prev(element, selector) {\n let previous = element.previousElementSibling;\n while (previous) {\n if (previous.matches(selector)) {\n return [previous];\n }\n previous = previous.previousElementSibling;\n }\n return [];\n },\n // TODO: this is now unused; remove later along with prev()\n next(element, selector) {\n let next = element.nextElementSibling;\n while (next) {\n if (next.matches(selector)) {\n return [next];\n }\n next = next.nextElementSibling;\n }\n return [];\n },\n focusableChildren(element) {\n const focusables = ['a', 'button', 'input', 'textarea', 'select', 'details', '[tabindex]', '[contenteditable=\"true\"]'].map(selector => `${selector}:not([tabindex^=\"-\"])`).join(',');\n return this.find(focusables, element).filter(el => !isDisabled(el) && isVisible(el));\n },\n getSelectorFromElement(element) {\n const selector = getSelector(element);\n if (selector) {\n return SelectorEngine.findOne(selector) ? selector : null;\n }\n return null;\n },\n getElementFromSelector(element) {\n const selector = getSelector(element);\n return selector ? SelectorEngine.findOne(selector) : null;\n },\n getMultipleElementsFromSelector(element) {\n const selector = getSelector(element);\n return selector ? SelectorEngine.find(selector) : [];\n }\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/component-functions.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\nconst enableDismissTrigger = (component, method = 'hide') => {\n const clickEvent = `click.dismiss${component.EVENT_KEY}`;\n const name = component.NAME;\n EventHandler.on(document, clickEvent, `[data-bs-dismiss=\"${name}\"]`, function (event) {\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n if (isDisabled(this)) {\n return;\n }\n const target = SelectorEngine.getElementFromSelector(this) || this.closest(`.${name}`);\n const instance = component.getOrCreateInstance(target);\n\n // Method argument is left, for Alert and only, as it doesn't implement the 'hide' method\n instance[method]();\n });\n};\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap alert.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$f = 'alert';\nconst DATA_KEY$a = 'bs.alert';\nconst EVENT_KEY$b = `.${DATA_KEY$a}`;\nconst EVENT_CLOSE = `close${EVENT_KEY$b}`;\nconst EVENT_CLOSED = `closed${EVENT_KEY$b}`;\nconst CLASS_NAME_FADE$5 = 'fade';\nconst CLASS_NAME_SHOW$8 = 'show';\n\n/**\n * Class definition\n */\n\nclass Alert extends BaseComponent {\n // Getters\n static get NAME() {\n return NAME$f;\n }\n\n // Public\n close() {\n const closeEvent = EventHandler.trigger(this._element, EVENT_CLOSE);\n if (closeEvent.defaultPrevented) {\n return;\n }\n this._element.classList.remove(CLASS_NAME_SHOW$8);\n const isAnimated = this._element.classList.contains(CLASS_NAME_FADE$5);\n this._queueCallback(() => this._destroyElement(), this._element, isAnimated);\n }\n\n // Private\n _destroyElement() {\n this._element.remove();\n EventHandler.trigger(this._element, EVENT_CLOSED);\n this.dispose();\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Alert.getOrCreateInstance(this);\n if (typeof config !== 'string') {\n return;\n }\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config](this);\n });\n }\n}\n\n/**\n * Data API implementation\n */\n\nenableDismissTrigger(Alert, 'close');\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Alert);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap button.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$e = 'button';\nconst DATA_KEY$9 = 'bs.button';\nconst EVENT_KEY$a = `.${DATA_KEY$9}`;\nconst DATA_API_KEY$6 = '.data-api';\nconst CLASS_NAME_ACTIVE$3 = 'active';\nconst SELECTOR_DATA_TOGGLE$5 = '[data-bs-toggle=\"button\"]';\nconst EVENT_CLICK_DATA_API$6 = `click${EVENT_KEY$a}${DATA_API_KEY$6}`;\n\n/**\n * Class definition\n */\n\nclass Button extends BaseComponent {\n // Getters\n static get NAME() {\n return NAME$e;\n }\n\n // Public\n toggle() {\n // Toggle class and sync the `aria-pressed` attribute with the return value of the `.toggle()` method\n this._element.setAttribute('aria-pressed', this._element.classList.toggle(CLASS_NAME_ACTIVE$3));\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Button.getOrCreateInstance(this);\n if (config === 'toggle') {\n data[config]();\n }\n });\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API$6, SELECTOR_DATA_TOGGLE$5, event => {\n event.preventDefault();\n const button = event.target.closest(SELECTOR_DATA_TOGGLE$5);\n const data = Button.getOrCreateInstance(button);\n data.toggle();\n});\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Button);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/swipe.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$d = 'swipe';\nconst EVENT_KEY$9 = '.bs.swipe';\nconst EVENT_TOUCHSTART = `touchstart${EVENT_KEY$9}`;\nconst EVENT_TOUCHMOVE = `touchmove${EVENT_KEY$9}`;\nconst EVENT_TOUCHEND = `touchend${EVENT_KEY$9}`;\nconst EVENT_POINTERDOWN = `pointerdown${EVENT_KEY$9}`;\nconst EVENT_POINTERUP = `pointerup${EVENT_KEY$9}`;\nconst POINTER_TYPE_TOUCH = 'touch';\nconst POINTER_TYPE_PEN = 'pen';\nconst CLASS_NAME_POINTER_EVENT = 'pointer-event';\nconst SWIPE_THRESHOLD = 40;\nconst Default$c = {\n endCallback: null,\n leftCallback: null,\n rightCallback: null\n};\nconst DefaultType$c = {\n endCallback: '(function|null)',\n leftCallback: '(function|null)',\n rightCallback: '(function|null)'\n};\n\n/**\n * Class definition\n */\n\nclass Swipe extends Config {\n constructor(element, config) {\n super();\n this._element = element;\n if (!element || !Swipe.isSupported()) {\n return;\n }\n this._config = this._getConfig(config);\n this._deltaX = 0;\n this._supportPointerEvents = Boolean(window.PointerEvent);\n this._initEvents();\n }\n\n // Getters\n static get Default() {\n return Default$c;\n }\n static get DefaultType() {\n return DefaultType$c;\n }\n static get NAME() {\n return NAME$d;\n }\n\n // Public\n dispose() {\n EventHandler.off(this._element, EVENT_KEY$9);\n }\n\n // Private\n _start(event) {\n if (!this._supportPointerEvents) {\n this._deltaX = event.touches[0].clientX;\n return;\n }\n if (this._eventIsPointerPenTouch(event)) {\n this._deltaX = event.clientX;\n }\n }\n _end(event) {\n if (this._eventIsPointerPenTouch(event)) {\n this._deltaX = event.clientX - this._deltaX;\n }\n this._handleSwipe();\n execute(this._config.endCallback);\n }\n _move(event) {\n this._deltaX = event.touches && event.touches.length > 1 ? 0 : event.touches[0].clientX - this._deltaX;\n }\n _handleSwipe() {\n const absDeltaX = Math.abs(this._deltaX);\n if (absDeltaX <= SWIPE_THRESHOLD) {\n return;\n }\n const direction = absDeltaX / this._deltaX;\n this._deltaX = 0;\n if (!direction) {\n return;\n }\n execute(direction > 0 ? this._config.rightCallback : this._config.leftCallback);\n }\n _initEvents() {\n if (this._supportPointerEvents) {\n EventHandler.on(this._element, EVENT_POINTERDOWN, event => this._start(event));\n EventHandler.on(this._element, EVENT_POINTERUP, event => this._end(event));\n this._element.classList.add(CLASS_NAME_POINTER_EVENT);\n } else {\n EventHandler.on(this._element, EVENT_TOUCHSTART, event => this._start(event));\n EventHandler.on(this._element, EVENT_TOUCHMOVE, event => this._move(event));\n EventHandler.on(this._element, EVENT_TOUCHEND, event => this._end(event));\n }\n }\n _eventIsPointerPenTouch(event) {\n return this._supportPointerEvents && (event.pointerType === POINTER_TYPE_PEN || event.pointerType === POINTER_TYPE_TOUCH);\n }\n\n // Static\n static isSupported() {\n return 'ontouchstart' in document.documentElement || navigator.maxTouchPoints > 0;\n }\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap carousel.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$c = 'carousel';\nconst DATA_KEY$8 = 'bs.carousel';\nconst EVENT_KEY$8 = `.${DATA_KEY$8}`;\nconst DATA_API_KEY$5 = '.data-api';\nconst ARROW_LEFT_KEY$1 = 'ArrowLeft';\nconst ARROW_RIGHT_KEY$1 = 'ArrowRight';\nconst TOUCHEVENT_COMPAT_WAIT = 500; // Time for mouse compat events to fire after touch\n\nconst ORDER_NEXT = 'next';\nconst ORDER_PREV = 'prev';\nconst DIRECTION_LEFT = 'left';\nconst DIRECTION_RIGHT = 'right';\nconst EVENT_SLIDE = `slide${EVENT_KEY$8}`;\nconst EVENT_SLID = `slid${EVENT_KEY$8}`;\nconst EVENT_KEYDOWN$1 = `keydown${EVENT_KEY$8}`;\nconst EVENT_MOUSEENTER$1 = `mouseenter${EVENT_KEY$8}`;\nconst EVENT_MOUSELEAVE$1 = `mouseleave${EVENT_KEY$8}`;\nconst EVENT_DRAG_START = `dragstart${EVENT_KEY$8}`;\nconst EVENT_LOAD_DATA_API$3 = `load${EVENT_KEY$8}${DATA_API_KEY$5}`;\nconst EVENT_CLICK_DATA_API$5 = `click${EVENT_KEY$8}${DATA_API_KEY$5}`;\nconst CLASS_NAME_CAROUSEL = 'carousel';\nconst CLASS_NAME_ACTIVE$2 = 'active';\nconst CLASS_NAME_SLIDE = 'slide';\nconst CLASS_NAME_END = 'carousel-item-end';\nconst CLASS_NAME_START = 'carousel-item-start';\nconst CLASS_NAME_NEXT = 'carousel-item-next';\nconst CLASS_NAME_PREV = 'carousel-item-prev';\nconst SELECTOR_ACTIVE = '.active';\nconst SELECTOR_ITEM = '.carousel-item';\nconst SELECTOR_ACTIVE_ITEM = SELECTOR_ACTIVE + SELECTOR_ITEM;\nconst SELECTOR_ITEM_IMG = '.carousel-item img';\nconst SELECTOR_INDICATORS = '.carousel-indicators';\nconst SELECTOR_DATA_SLIDE = '[data-bs-slide], [data-bs-slide-to]';\nconst SELECTOR_DATA_RIDE = '[data-bs-ride=\"carousel\"]';\nconst KEY_TO_DIRECTION = {\n [ARROW_LEFT_KEY$1]: DIRECTION_RIGHT,\n [ARROW_RIGHT_KEY$1]: DIRECTION_LEFT\n};\nconst Default$b = {\n interval: 5000,\n keyboard: true,\n pause: 'hover',\n ride: false,\n touch: true,\n wrap: true\n};\nconst DefaultType$b = {\n interval: '(number|boolean)',\n // TODO:v6 remove boolean support\n keyboard: 'boolean',\n pause: '(string|boolean)',\n ride: '(boolean|string)',\n touch: 'boolean',\n wrap: 'boolean'\n};\n\n/**\n * Class definition\n */\n\nclass Carousel extends BaseComponent {\n constructor(element, config) {\n super(element, config);\n this._interval = null;\n this._activeElement = null;\n this._isSliding = false;\n this.touchTimeout = null;\n this._swipeHelper = null;\n this._indicatorsElement = SelectorEngine.findOne(SELECTOR_INDICATORS, this._element);\n this._addEventListeners();\n if (this._config.ride === CLASS_NAME_CAROUSEL) {\n this.cycle();\n }\n }\n\n // Getters\n static get Default() {\n return Default$b;\n }\n static get DefaultType() {\n return DefaultType$b;\n }\n static get NAME() {\n return NAME$c;\n }\n\n // Public\n next() {\n this._slide(ORDER_NEXT);\n }\n nextWhenVisible() {\n // FIXME TODO use `document.visibilityState`\n // Don't call next when the page isn't visible\n // or the carousel or its parent isn't visible\n if (!document.hidden && isVisible(this._element)) {\n this.next();\n }\n }\n prev() {\n this._slide(ORDER_PREV);\n }\n pause() {\n if (this._isSliding) {\n triggerTransitionEnd(this._element);\n }\n this._clearInterval();\n }\n cycle() {\n this._clearInterval();\n this._updateInterval();\n this._interval = setInterval(() => this.nextWhenVisible(), this._config.interval);\n }\n _maybeEnableCycle() {\n if (!this._config.ride) {\n return;\n }\n if (this._isSliding) {\n EventHandler.one(this._element, EVENT_SLID, () => this.cycle());\n return;\n }\n this.cycle();\n }\n to(index) {\n const items = this._getItems();\n if (index > items.length - 1 || index < 0) {\n return;\n }\n if (this._isSliding) {\n EventHandler.one(this._element, EVENT_SLID, () => this.to(index));\n return;\n }\n const activeIndex = this._getItemIndex(this._getActive());\n if (activeIndex === index) {\n return;\n }\n const order = index > activeIndex ? ORDER_NEXT : ORDER_PREV;\n this._slide(order, items[index]);\n }\n dispose() {\n if (this._swipeHelper) {\n this._swipeHelper.dispose();\n }\n super.dispose();\n }\n\n // Private\n _configAfterMerge(config) {\n config.defaultInterval = config.interval;\n return config;\n }\n _addEventListeners() {\n if (this._config.keyboard) {\n EventHandler.on(this._element, EVENT_KEYDOWN$1, event => this._keydown(event));\n }\n if (this._config.pause === 'hover') {\n EventHandler.on(this._element, EVENT_MOUSEENTER$1, () => this.pause());\n EventHandler.on(this._element, EVENT_MOUSELEAVE$1, () => this._maybeEnableCycle());\n }\n if (this._config.touch && Swipe.isSupported()) {\n this._addTouchEventListeners();\n }\n }\n _addTouchEventListeners() {\n for (const img of SelectorEngine.find(SELECTOR_ITEM_IMG, this._element)) {\n EventHandler.on(img, EVENT_DRAG_START, event => event.preventDefault());\n }\n const endCallBack = () => {\n if (this._config.pause !== 'hover') {\n return;\n }\n\n // If it's a touch-enabled device, mouseenter/leave are fired as\n // part of the mouse compatibility events on first tap - the carousel\n // would stop cycling until user tapped out of it;\n // here, we listen for touchend, explicitly pause the carousel\n // (as if it's the second time we tap on it, mouseenter compat event\n // is NOT fired) and after a timeout (to allow for mouse compatibility\n // events to fire) we explicitly restart cycling\n\n this.pause();\n if (this.touchTimeout) {\n clearTimeout(this.touchTimeout);\n }\n this.touchTimeout = setTimeout(() => this._maybeEnableCycle(), TOUCHEVENT_COMPAT_WAIT + this._config.interval);\n };\n const swipeConfig = {\n leftCallback: () => this._slide(this._directionToOrder(DIRECTION_LEFT)),\n rightCallback: () => this._slide(this._directionToOrder(DIRECTION_RIGHT)),\n endCallback: endCallBack\n };\n this._swipeHelper = new Swipe(this._element, swipeConfig);\n }\n _keydown(event) {\n if (/input|textarea/i.test(event.target.tagName)) {\n return;\n }\n const direction = KEY_TO_DIRECTION[event.key];\n if (direction) {\n event.preventDefault();\n this._slide(this._directionToOrder(direction));\n }\n }\n _getItemIndex(element) {\n return this._getItems().indexOf(element);\n }\n _setActiveIndicatorElement(index) {\n if (!this._indicatorsElement) {\n return;\n }\n const activeIndicator = SelectorEngine.findOne(SELECTOR_ACTIVE, this._indicatorsElement);\n activeIndicator.classList.remove(CLASS_NAME_ACTIVE$2);\n activeIndicator.removeAttribute('aria-current');\n const newActiveIndicator = SelectorEngine.findOne(`[data-bs-slide-to=\"${index}\"]`, this._indicatorsElement);\n if (newActiveIndicator) {\n newActiveIndicator.classList.add(CLASS_NAME_ACTIVE$2);\n newActiveIndicator.setAttribute('aria-current', 'true');\n }\n }\n _updateInterval() {\n const element = this._activeElement || this._getActive();\n if (!element) {\n return;\n }\n const elementInterval = Number.parseInt(element.getAttribute('data-bs-interval'), 10);\n this._config.interval = elementInterval || this._config.defaultInterval;\n }\n _slide(order, element = null) {\n if (this._isSliding) {\n return;\n }\n const activeElement = this._getActive();\n const isNext = order === ORDER_NEXT;\n const nextElement = element || getNextActiveElement(this._getItems(), activeElement, isNext, this._config.wrap);\n if (nextElement === activeElement) {\n return;\n }\n const nextElementIndex = this._getItemIndex(nextElement);\n const triggerEvent = eventName => {\n return EventHandler.trigger(this._element, eventName, {\n relatedTarget: nextElement,\n direction: this._orderToDirection(order),\n from: this._getItemIndex(activeElement),\n to: nextElementIndex\n });\n };\n const slideEvent = triggerEvent(EVENT_SLIDE);\n if (slideEvent.defaultPrevented) {\n return;\n }\n if (!activeElement || !nextElement) {\n // Some weirdness is happening, so we bail\n // TODO: change tests that use empty divs to avoid this check\n return;\n }\n const isCycling = Boolean(this._interval);\n this.pause();\n this._isSliding = true;\n this._setActiveIndicatorElement(nextElementIndex);\n this._activeElement = nextElement;\n const directionalClassName = isNext ? CLASS_NAME_START : CLASS_NAME_END;\n const orderClassName = isNext ? CLASS_NAME_NEXT : CLASS_NAME_PREV;\n nextElement.classList.add(orderClassName);\n reflow(nextElement);\n activeElement.classList.add(directionalClassName);\n nextElement.classList.add(directionalClassName);\n const completeCallBack = () => {\n nextElement.classList.remove(directionalClassName, orderClassName);\n nextElement.classList.add(CLASS_NAME_ACTIVE$2);\n activeElement.classList.remove(CLASS_NAME_ACTIVE$2, orderClassName, directionalClassName);\n this._isSliding = false;\n triggerEvent(EVENT_SLID);\n };\n this._queueCallback(completeCallBack, activeElement, this._isAnimated());\n if (isCycling) {\n this.cycle();\n }\n }\n _isAnimated() {\n return this._element.classList.contains(CLASS_NAME_SLIDE);\n }\n _getActive() {\n return SelectorEngine.findOne(SELECTOR_ACTIVE_ITEM, this._element);\n }\n _getItems() {\n return SelectorEngine.find(SELECTOR_ITEM, this._element);\n }\n _clearInterval() {\n if (this._interval) {\n clearInterval(this._interval);\n this._interval = null;\n }\n }\n _directionToOrder(direction) {\n if (isRTL()) {\n return direction === DIRECTION_LEFT ? ORDER_PREV : ORDER_NEXT;\n }\n return direction === DIRECTION_LEFT ? ORDER_NEXT : ORDER_PREV;\n }\n _orderToDirection(order) {\n if (isRTL()) {\n return order === ORDER_PREV ? DIRECTION_LEFT : DIRECTION_RIGHT;\n }\n return order === ORDER_PREV ? DIRECTION_RIGHT : DIRECTION_LEFT;\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Carousel.getOrCreateInstance(this, config);\n if (typeof config === 'number') {\n data.to(config);\n return;\n }\n if (typeof config === 'string') {\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config]();\n }\n });\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API$5, SELECTOR_DATA_SLIDE, function (event) {\n const target = SelectorEngine.getElementFromSelector(this);\n if (!target || !target.classList.contains(CLASS_NAME_CAROUSEL)) {\n return;\n }\n event.preventDefault();\n const carousel = Carousel.getOrCreateInstance(target);\n const slideIndex = this.getAttribute('data-bs-slide-to');\n if (slideIndex) {\n carousel.to(slideIndex);\n carousel._maybeEnableCycle();\n return;\n }\n if (Manipulator.getDataAttribute(this, 'slide') === 'next') {\n carousel.next();\n carousel._maybeEnableCycle();\n return;\n }\n carousel.prev();\n carousel._maybeEnableCycle();\n});\nEventHandler.on(window, EVENT_LOAD_DATA_API$3, () => {\n const carousels = SelectorEngine.find(SELECTOR_DATA_RIDE);\n for (const carousel of carousels) {\n Carousel.getOrCreateInstance(carousel);\n }\n});\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Carousel);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap collapse.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$b = 'collapse';\nconst DATA_KEY$7 = 'bs.collapse';\nconst EVENT_KEY$7 = `.${DATA_KEY$7}`;\nconst DATA_API_KEY$4 = '.data-api';\nconst EVENT_SHOW$6 = `show${EVENT_KEY$7}`;\nconst EVENT_SHOWN$6 = `shown${EVENT_KEY$7}`;\nconst EVENT_HIDE$6 = `hide${EVENT_KEY$7}`;\nconst EVENT_HIDDEN$6 = `hidden${EVENT_KEY$7}`;\nconst EVENT_CLICK_DATA_API$4 = `click${EVENT_KEY$7}${DATA_API_KEY$4}`;\nconst CLASS_NAME_SHOW$7 = 'show';\nconst CLASS_NAME_COLLAPSE = 'collapse';\nconst CLASS_NAME_COLLAPSING = 'collapsing';\nconst CLASS_NAME_COLLAPSED = 'collapsed';\nconst CLASS_NAME_DEEPER_CHILDREN = `:scope .${CLASS_NAME_COLLAPSE} .${CLASS_NAME_COLLAPSE}`;\nconst CLASS_NAME_HORIZONTAL = 'collapse-horizontal';\nconst WIDTH = 'width';\nconst HEIGHT = 'height';\nconst SELECTOR_ACTIVES = '.collapse.show, .collapse.collapsing';\nconst SELECTOR_DATA_TOGGLE$4 = '[data-bs-toggle=\"collapse\"]';\nconst Default$a = {\n parent: null,\n toggle: true\n};\nconst DefaultType$a = {\n parent: '(null|element)',\n toggle: 'boolean'\n};\n\n/**\n * Class definition\n */\n\nclass Collapse extends BaseComponent {\n constructor(element, config) {\n super(element, config);\n this._isTransitioning = false;\n this._triggerArray = [];\n const toggleList = SelectorEngine.find(SELECTOR_DATA_TOGGLE$4);\n for (const elem of toggleList) {\n const selector = SelectorEngine.getSelectorFromElement(elem);\n const filterElement = SelectorEngine.find(selector).filter(foundElement => foundElement === this._element);\n if (selector !== null && filterElement.length) {\n this._triggerArray.push(elem);\n }\n }\n this._initializeChildren();\n if (!this._config.parent) {\n this._addAriaAndCollapsedClass(this._triggerArray, this._isShown());\n }\n if (this._config.toggle) {\n this.toggle();\n }\n }\n\n // Getters\n static get Default() {\n return Default$a;\n }\n static get DefaultType() {\n return DefaultType$a;\n }\n static get NAME() {\n return NAME$b;\n }\n\n // Public\n toggle() {\n if (this._isShown()) {\n this.hide();\n } else {\n this.show();\n }\n }\n show() {\n if (this._isTransitioning || this._isShown()) {\n return;\n }\n let activeChildren = [];\n\n // find active children\n if (this._config.parent) {\n activeChildren = this._getFirstLevelChildren(SELECTOR_ACTIVES).filter(element => element !== this._element).map(element => Collapse.getOrCreateInstance(element, {\n toggle: false\n }));\n }\n if (activeChildren.length && activeChildren[0]._isTransitioning) {\n return;\n }\n const startEvent = EventHandler.trigger(this._element, EVENT_SHOW$6);\n if (startEvent.defaultPrevented) {\n return;\n }\n for (const activeInstance of activeChildren) {\n activeInstance.hide();\n }\n const dimension = this._getDimension();\n this._element.classList.remove(CLASS_NAME_COLLAPSE);\n this._element.classList.add(CLASS_NAME_COLLAPSING);\n this._element.style[dimension] = 0;\n this._addAriaAndCollapsedClass(this._triggerArray, true);\n this._isTransitioning = true;\n const complete = () => {\n this._isTransitioning = false;\n this._element.classList.remove(CLASS_NAME_COLLAPSING);\n this._element.classList.add(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW$7);\n this._element.style[dimension] = '';\n EventHandler.trigger(this._element, EVENT_SHOWN$6);\n };\n const capitalizedDimension = dimension[0].toUpperCase() + dimension.slice(1);\n const scrollSize = `scroll${capitalizedDimension}`;\n this._queueCallback(complete, this._element, true);\n this._element.style[dimension] = `${this._element[scrollSize]}px`;\n }\n hide() {\n if (this._isTransitioning || !this._isShown()) {\n return;\n }\n const startEvent = EventHandler.trigger(this._element, EVENT_HIDE$6);\n if (startEvent.defaultPrevented) {\n return;\n }\n const dimension = this._getDimension();\n this._element.style[dimension] = `${this._element.getBoundingClientRect()[dimension]}px`;\n reflow(this._element);\n this._element.classList.add(CLASS_NAME_COLLAPSING);\n this._element.classList.remove(CLASS_NAME_COLLAPSE, CLASS_NAME_SHOW$7);\n for (const trigger of this._triggerArray) {\n const element = SelectorEngine.getElementFromSelector(trigger);\n if (element && !this._isShown(element)) {\n this._addAriaAndCollapsedClass([trigger], false);\n }\n }\n this._isTransitioning = true;\n const complete = () => {\n this._isTransitioning = false;\n this._element.classList.remove(CLASS_NAME_COLLAPSING);\n this._element.classList.add(CLASS_NAME_COLLAPSE);\n EventHandler.trigger(this._element, EVENT_HIDDEN$6);\n };\n this._element.style[dimension] = '';\n this._queueCallback(complete, this._element, true);\n }\n _isShown(element = this._element) {\n return element.classList.contains(CLASS_NAME_SHOW$7);\n }\n\n // Private\n _configAfterMerge(config) {\n config.toggle = Boolean(config.toggle); // Coerce string values\n config.parent = getElement(config.parent);\n return config;\n }\n _getDimension() {\n return this._element.classList.contains(CLASS_NAME_HORIZONTAL) ? WIDTH : HEIGHT;\n }\n _initializeChildren() {\n if (!this._config.parent) {\n return;\n }\n const children = this._getFirstLevelChildren(SELECTOR_DATA_TOGGLE$4);\n for (const element of children) {\n const selected = SelectorEngine.getElementFromSelector(element);\n if (selected) {\n this._addAriaAndCollapsedClass([element], this._isShown(selected));\n }\n }\n }\n _getFirstLevelChildren(selector) {\n const children = SelectorEngine.find(CLASS_NAME_DEEPER_CHILDREN, this._config.parent);\n // remove children if greater depth\n return SelectorEngine.find(selector, this._config.parent).filter(element => !children.includes(element));\n }\n _addAriaAndCollapsedClass(triggerArray, isOpen) {\n if (!triggerArray.length) {\n return;\n }\n for (const element of triggerArray) {\n element.classList.toggle(CLASS_NAME_COLLAPSED, !isOpen);\n element.setAttribute('aria-expanded', isOpen);\n }\n }\n\n // Static\n static jQueryInterface(config) {\n const _config = {};\n if (typeof config === 'string' && /show|hide/.test(config)) {\n _config.toggle = false;\n }\n return this.each(function () {\n const data = Collapse.getOrCreateInstance(this, _config);\n if (typeof config === 'string') {\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config]();\n }\n });\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API$4, SELECTOR_DATA_TOGGLE$4, function (event) {\n // preventDefault only for elements (which change the URL) not inside the collapsible element\n if (event.target.tagName === 'A' || event.delegateTarget && event.delegateTarget.tagName === 'A') {\n event.preventDefault();\n }\n for (const element of SelectorEngine.getMultipleElementsFromSelector(this)) {\n Collapse.getOrCreateInstance(element, {\n toggle: false\n }).toggle();\n }\n});\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Collapse);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap dropdown.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$a = 'dropdown';\nconst DATA_KEY$6 = 'bs.dropdown';\nconst EVENT_KEY$6 = `.${DATA_KEY$6}`;\nconst DATA_API_KEY$3 = '.data-api';\nconst ESCAPE_KEY$2 = 'Escape';\nconst TAB_KEY$1 = 'Tab';\nconst ARROW_UP_KEY$1 = 'ArrowUp';\nconst ARROW_DOWN_KEY$1 = 'ArrowDown';\nconst RIGHT_MOUSE_BUTTON = 2; // MouseEvent.button value for the secondary button, usually the right button\n\nconst EVENT_HIDE$5 = `hide${EVENT_KEY$6}`;\nconst EVENT_HIDDEN$5 = `hidden${EVENT_KEY$6}`;\nconst EVENT_SHOW$5 = `show${EVENT_KEY$6}`;\nconst EVENT_SHOWN$5 = `shown${EVENT_KEY$6}`;\nconst EVENT_CLICK_DATA_API$3 = `click${EVENT_KEY$6}${DATA_API_KEY$3}`;\nconst EVENT_KEYDOWN_DATA_API = `keydown${EVENT_KEY$6}${DATA_API_KEY$3}`;\nconst EVENT_KEYUP_DATA_API = `keyup${EVENT_KEY$6}${DATA_API_KEY$3}`;\nconst CLASS_NAME_SHOW$6 = 'show';\nconst CLASS_NAME_DROPUP = 'dropup';\nconst CLASS_NAME_DROPEND = 'dropend';\nconst CLASS_NAME_DROPSTART = 'dropstart';\nconst CLASS_NAME_DROPUP_CENTER = 'dropup-center';\nconst CLASS_NAME_DROPDOWN_CENTER = 'dropdown-center';\nconst SELECTOR_DATA_TOGGLE$3 = '[data-bs-toggle=\"dropdown\"]:not(.disabled):not(:disabled)';\nconst SELECTOR_DATA_TOGGLE_SHOWN = `${SELECTOR_DATA_TOGGLE$3}.${CLASS_NAME_SHOW$6}`;\nconst SELECTOR_MENU = '.dropdown-menu';\nconst SELECTOR_NAVBAR = '.navbar';\nconst SELECTOR_NAVBAR_NAV = '.navbar-nav';\nconst SELECTOR_VISIBLE_ITEMS = '.dropdown-menu .dropdown-item:not(.disabled):not(:disabled)';\nconst PLACEMENT_TOP = isRTL() ? 'top-end' : 'top-start';\nconst PLACEMENT_TOPEND = isRTL() ? 'top-start' : 'top-end';\nconst PLACEMENT_BOTTOM = isRTL() ? 'bottom-end' : 'bottom-start';\nconst PLACEMENT_BOTTOMEND = isRTL() ? 'bottom-start' : 'bottom-end';\nconst PLACEMENT_RIGHT = isRTL() ? 'left-start' : 'right-start';\nconst PLACEMENT_LEFT = isRTL() ? 'right-start' : 'left-start';\nconst PLACEMENT_TOPCENTER = 'top';\nconst PLACEMENT_BOTTOMCENTER = 'bottom';\nconst Default$9 = {\n autoClose: true,\n boundary: 'clippingParents',\n display: 'dynamic',\n offset: [0, 2],\n popperConfig: null,\n reference: 'toggle'\n};\nconst DefaultType$9 = {\n autoClose: '(boolean|string)',\n boundary: '(string|element)',\n display: 'string',\n offset: '(array|string|function)',\n popperConfig: '(null|object|function)',\n reference: '(string|element|object)'\n};\n\n/**\n * Class definition\n */\n\nclass Dropdown extends BaseComponent {\n constructor(element, config) {\n super(element, config);\n this._popper = null;\n this._parent = this._element.parentNode; // dropdown wrapper\n // TODO: v6 revert #37011 & change markup https://getbootstrap.com/docs/5.3/forms/input-group/\n this._menu = SelectorEngine.next(this._element, SELECTOR_MENU)[0] || SelectorEngine.prev(this._element, SELECTOR_MENU)[0] || SelectorEngine.findOne(SELECTOR_MENU, this._parent);\n this._inNavbar = this._detectNavbar();\n }\n\n // Getters\n static get Default() {\n return Default$9;\n }\n static get DefaultType() {\n return DefaultType$9;\n }\n static get NAME() {\n return NAME$a;\n }\n\n // Public\n toggle() {\n return this._isShown() ? this.hide() : this.show();\n }\n show() {\n if (isDisabled(this._element) || this._isShown()) {\n return;\n }\n const relatedTarget = {\n relatedTarget: this._element\n };\n const showEvent = EventHandler.trigger(this._element, EVENT_SHOW$5, relatedTarget);\n if (showEvent.defaultPrevented) {\n return;\n }\n this._createPopper();\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement && !this._parent.closest(SELECTOR_NAVBAR_NAV)) {\n for (const element of [].concat(...document.body.children)) {\n EventHandler.on(element, 'mouseover', noop);\n }\n }\n this._element.focus();\n this._element.setAttribute('aria-expanded', true);\n this._menu.classList.add(CLASS_NAME_SHOW$6);\n this._element.classList.add(CLASS_NAME_SHOW$6);\n EventHandler.trigger(this._element, EVENT_SHOWN$5, relatedTarget);\n }\n hide() {\n if (isDisabled(this._element) || !this._isShown()) {\n return;\n }\n const relatedTarget = {\n relatedTarget: this._element\n };\n this._completeHide(relatedTarget);\n }\n dispose() {\n if (this._popper) {\n this._popper.destroy();\n }\n super.dispose();\n }\n update() {\n this._inNavbar = this._detectNavbar();\n if (this._popper) {\n this._popper.update();\n }\n }\n\n // Private\n _completeHide(relatedTarget) {\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE$5, relatedTarget);\n if (hideEvent.defaultPrevented) {\n return;\n }\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n for (const element of [].concat(...document.body.children)) {\n EventHandler.off(element, 'mouseover', noop);\n }\n }\n if (this._popper) {\n this._popper.destroy();\n }\n this._menu.classList.remove(CLASS_NAME_SHOW$6);\n this._element.classList.remove(CLASS_NAME_SHOW$6);\n this._element.setAttribute('aria-expanded', 'false');\n Manipulator.removeDataAttribute(this._menu, 'popper');\n EventHandler.trigger(this._element, EVENT_HIDDEN$5, relatedTarget);\n }\n _getConfig(config) {\n config = super._getConfig(config);\n if (typeof config.reference === 'object' && !isElement(config.reference) && typeof config.reference.getBoundingClientRect !== 'function') {\n // Popper virtual elements require a getBoundingClientRect method\n throw new TypeError(`${NAME$a.toUpperCase()}: Option \"reference\" provided type \"object\" without a required \"getBoundingClientRect\" method.`);\n }\n return config;\n }\n _createPopper() {\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s dropdowns require Popper (https://popper.js.org)');\n }\n let referenceElement = this._element;\n if (this._config.reference === 'parent') {\n referenceElement = this._parent;\n } else if (isElement(this._config.reference)) {\n referenceElement = getElement(this._config.reference);\n } else if (typeof this._config.reference === 'object') {\n referenceElement = this._config.reference;\n }\n const popperConfig = this._getPopperConfig();\n this._popper = Popper.createPopper(referenceElement, this._menu, popperConfig);\n }\n _isShown() {\n return this._menu.classList.contains(CLASS_NAME_SHOW$6);\n }\n _getPlacement() {\n const parentDropdown = this._parent;\n if (parentDropdown.classList.contains(CLASS_NAME_DROPEND)) {\n return PLACEMENT_RIGHT;\n }\n if (parentDropdown.classList.contains(CLASS_NAME_DROPSTART)) {\n return PLACEMENT_LEFT;\n }\n if (parentDropdown.classList.contains(CLASS_NAME_DROPUP_CENTER)) {\n return PLACEMENT_TOPCENTER;\n }\n if (parentDropdown.classList.contains(CLASS_NAME_DROPDOWN_CENTER)) {\n return PLACEMENT_BOTTOMCENTER;\n }\n\n // We need to trim the value because custom properties can also include spaces\n const isEnd = getComputedStyle(this._menu).getPropertyValue('--bs-position').trim() === 'end';\n if (parentDropdown.classList.contains(CLASS_NAME_DROPUP)) {\n return isEnd ? PLACEMENT_TOPEND : PLACEMENT_TOP;\n }\n return isEnd ? PLACEMENT_BOTTOMEND : PLACEMENT_BOTTOM;\n }\n _detectNavbar() {\n return this._element.closest(SELECTOR_NAVBAR) !== null;\n }\n _getOffset() {\n const {\n offset\n } = this._config;\n if (typeof offset === 'string') {\n return offset.split(',').map(value => Number.parseInt(value, 10));\n }\n if (typeof offset === 'function') {\n return popperData => offset(popperData, this._element);\n }\n return offset;\n }\n _getPopperConfig() {\n const defaultBsPopperConfig = {\n placement: this._getPlacement(),\n modifiers: [{\n name: 'preventOverflow',\n options: {\n boundary: this._config.boundary\n }\n }, {\n name: 'offset',\n options: {\n offset: this._getOffset()\n }\n }]\n };\n\n // Disable Popper if we have a static display or Dropdown is in Navbar\n if (this._inNavbar || this._config.display === 'static') {\n Manipulator.setDataAttribute(this._menu, 'popper', 'static'); // TODO: v6 remove\n defaultBsPopperConfig.modifiers = [{\n name: 'applyStyles',\n enabled: false\n }];\n }\n return {\n ...defaultBsPopperConfig,\n ...execute(this._config.popperConfig, [defaultBsPopperConfig])\n };\n }\n _selectMenuItem({\n key,\n target\n }) {\n const items = SelectorEngine.find(SELECTOR_VISIBLE_ITEMS, this._menu).filter(element => isVisible(element));\n if (!items.length) {\n return;\n }\n\n // if target isn't included in items (e.g. when expanding the dropdown)\n // allow cycling to get the last item in case key equals ARROW_UP_KEY\n getNextActiveElement(items, target, key === ARROW_DOWN_KEY$1, !items.includes(target)).focus();\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Dropdown.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config]();\n });\n }\n static clearMenus(event) {\n if (event.button === RIGHT_MOUSE_BUTTON || event.type === 'keyup' && event.key !== TAB_KEY$1) {\n return;\n }\n const openToggles = SelectorEngine.find(SELECTOR_DATA_TOGGLE_SHOWN);\n for (const toggle of openToggles) {\n const context = Dropdown.getInstance(toggle);\n if (!context || context._config.autoClose === false) {\n continue;\n }\n const composedPath = event.composedPath();\n const isMenuTarget = composedPath.includes(context._menu);\n if (composedPath.includes(context._element) || context._config.autoClose === 'inside' && !isMenuTarget || context._config.autoClose === 'outside' && isMenuTarget) {\n continue;\n }\n\n // Tab navigation through the dropdown menu or events from contained inputs shouldn't close the menu\n if (context._menu.contains(event.target) && (event.type === 'keyup' && event.key === TAB_KEY$1 || /input|select|option|textarea|form/i.test(event.target.tagName))) {\n continue;\n }\n const relatedTarget = {\n relatedTarget: context._element\n };\n if (event.type === 'click') {\n relatedTarget.clickEvent = event;\n }\n context._completeHide(relatedTarget);\n }\n }\n static dataApiKeydownHandler(event) {\n // If not an UP | DOWN | ESCAPE key => not a dropdown command\n // If input/textarea && if key is other than ESCAPE => not a dropdown command\n\n const isInput = /input|textarea/i.test(event.target.tagName);\n const isEscapeEvent = event.key === ESCAPE_KEY$2;\n const isUpOrDownEvent = [ARROW_UP_KEY$1, ARROW_DOWN_KEY$1].includes(event.key);\n if (!isUpOrDownEvent && !isEscapeEvent) {\n return;\n }\n if (isInput && !isEscapeEvent) {\n return;\n }\n event.preventDefault();\n\n // TODO: v6 revert #37011 & change markup https://getbootstrap.com/docs/5.3/forms/input-group/\n const getToggleButton = this.matches(SELECTOR_DATA_TOGGLE$3) ? this : SelectorEngine.prev(this, SELECTOR_DATA_TOGGLE$3)[0] || SelectorEngine.next(this, SELECTOR_DATA_TOGGLE$3)[0] || SelectorEngine.findOne(SELECTOR_DATA_TOGGLE$3, event.delegateTarget.parentNode);\n const instance = Dropdown.getOrCreateInstance(getToggleButton);\n if (isUpOrDownEvent) {\n event.stopPropagation();\n instance.show();\n instance._selectMenuItem(event);\n return;\n }\n if (instance._isShown()) {\n // else is escape and we check if it is shown\n event.stopPropagation();\n instance.hide();\n getToggleButton.focus();\n }\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_DATA_TOGGLE$3, Dropdown.dataApiKeydownHandler);\nEventHandler.on(document, EVENT_KEYDOWN_DATA_API, SELECTOR_MENU, Dropdown.dataApiKeydownHandler);\nEventHandler.on(document, EVENT_CLICK_DATA_API$3, Dropdown.clearMenus);\nEventHandler.on(document, EVENT_KEYUP_DATA_API, Dropdown.clearMenus);\nEventHandler.on(document, EVENT_CLICK_DATA_API$3, SELECTOR_DATA_TOGGLE$3, function (event) {\n event.preventDefault();\n Dropdown.getOrCreateInstance(this).toggle();\n});\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Dropdown);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/backdrop.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$9 = 'backdrop';\nconst CLASS_NAME_FADE$4 = 'fade';\nconst CLASS_NAME_SHOW$5 = 'show';\nconst EVENT_MOUSEDOWN = `mousedown.bs.${NAME$9}`;\nconst Default$8 = {\n className: 'modal-backdrop',\n clickCallback: null,\n isAnimated: false,\n isVisible: true,\n // if false, we use the backdrop helper without adding any element to the dom\n rootElement: 'body' // give the choice to place backdrop under different elements\n};\n\nconst DefaultType$8 = {\n className: 'string',\n clickCallback: '(function|null)',\n isAnimated: 'boolean',\n isVisible: 'boolean',\n rootElement: '(element|string)'\n};\n\n/**\n * Class definition\n */\n\nclass Backdrop extends Config {\n constructor(config) {\n super();\n this._config = this._getConfig(config);\n this._isAppended = false;\n this._element = null;\n }\n\n // Getters\n static get Default() {\n return Default$8;\n }\n static get DefaultType() {\n return DefaultType$8;\n }\n static get NAME() {\n return NAME$9;\n }\n\n // Public\n show(callback) {\n if (!this._config.isVisible) {\n execute(callback);\n return;\n }\n this._append();\n const element = this._getElement();\n if (this._config.isAnimated) {\n reflow(element);\n }\n element.classList.add(CLASS_NAME_SHOW$5);\n this._emulateAnimation(() => {\n execute(callback);\n });\n }\n hide(callback) {\n if (!this._config.isVisible) {\n execute(callback);\n return;\n }\n this._getElement().classList.remove(CLASS_NAME_SHOW$5);\n this._emulateAnimation(() => {\n this.dispose();\n execute(callback);\n });\n }\n dispose() {\n if (!this._isAppended) {\n return;\n }\n EventHandler.off(this._element, EVENT_MOUSEDOWN);\n this._element.remove();\n this._isAppended = false;\n }\n\n // Private\n _getElement() {\n if (!this._element) {\n const backdrop = document.createElement('div');\n backdrop.className = this._config.className;\n if (this._config.isAnimated) {\n backdrop.classList.add(CLASS_NAME_FADE$4);\n }\n this._element = backdrop;\n }\n return this._element;\n }\n _configAfterMerge(config) {\n // use getElement() with the default \"body\" to get a fresh Element on each instantiation\n config.rootElement = getElement(config.rootElement);\n return config;\n }\n _append() {\n if (this._isAppended) {\n return;\n }\n const element = this._getElement();\n this._config.rootElement.append(element);\n EventHandler.on(element, EVENT_MOUSEDOWN, () => {\n execute(this._config.clickCallback);\n });\n this._isAppended = true;\n }\n _emulateAnimation(callback) {\n executeAfterTransition(callback, this._getElement(), this._config.isAnimated);\n }\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/focustrap.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$8 = 'focustrap';\nconst DATA_KEY$5 = 'bs.focustrap';\nconst EVENT_KEY$5 = `.${DATA_KEY$5}`;\nconst EVENT_FOCUSIN$2 = `focusin${EVENT_KEY$5}`;\nconst EVENT_KEYDOWN_TAB = `keydown.tab${EVENT_KEY$5}`;\nconst TAB_KEY = 'Tab';\nconst TAB_NAV_FORWARD = 'forward';\nconst TAB_NAV_BACKWARD = 'backward';\nconst Default$7 = {\n autofocus: true,\n trapElement: null // The element to trap focus inside of\n};\n\nconst DefaultType$7 = {\n autofocus: 'boolean',\n trapElement: 'element'\n};\n\n/**\n * Class definition\n */\n\nclass FocusTrap extends Config {\n constructor(config) {\n super();\n this._config = this._getConfig(config);\n this._isActive = false;\n this._lastTabNavDirection = null;\n }\n\n // Getters\n static get Default() {\n return Default$7;\n }\n static get DefaultType() {\n return DefaultType$7;\n }\n static get NAME() {\n return NAME$8;\n }\n\n // Public\n activate() {\n if (this._isActive) {\n return;\n }\n if (this._config.autofocus) {\n this._config.trapElement.focus();\n }\n EventHandler.off(document, EVENT_KEY$5); // guard against infinite focus loop\n EventHandler.on(document, EVENT_FOCUSIN$2, event => this._handleFocusin(event));\n EventHandler.on(document, EVENT_KEYDOWN_TAB, event => this._handleKeydown(event));\n this._isActive = true;\n }\n deactivate() {\n if (!this._isActive) {\n return;\n }\n this._isActive = false;\n EventHandler.off(document, EVENT_KEY$5);\n }\n\n // Private\n _handleFocusin(event) {\n const {\n trapElement\n } = this._config;\n if (event.target === document || event.target === trapElement || trapElement.contains(event.target)) {\n return;\n }\n const elements = SelectorEngine.focusableChildren(trapElement);\n if (elements.length === 0) {\n trapElement.focus();\n } else if (this._lastTabNavDirection === TAB_NAV_BACKWARD) {\n elements[elements.length - 1].focus();\n } else {\n elements[0].focus();\n }\n }\n _handleKeydown(event) {\n if (event.key !== TAB_KEY) {\n return;\n }\n this._lastTabNavDirection = event.shiftKey ? TAB_NAV_BACKWARD : TAB_NAV_FORWARD;\n }\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/scrollBar.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst SELECTOR_FIXED_CONTENT = '.fixed-top, .fixed-bottom, .is-fixed, .sticky-top';\nconst SELECTOR_STICKY_CONTENT = '.sticky-top';\nconst PROPERTY_PADDING = 'padding-right';\nconst PROPERTY_MARGIN = 'margin-right';\n\n/**\n * Class definition\n */\n\nclass ScrollBarHelper {\n constructor() {\n this._element = document.body;\n }\n\n // Public\n getWidth() {\n // https://developer.mozilla.org/en-US/docs/Web/API/Window/innerWidth#usage_notes\n const documentWidth = document.documentElement.clientWidth;\n return Math.abs(window.innerWidth - documentWidth);\n }\n hide() {\n const width = this.getWidth();\n this._disableOverFlow();\n // give padding to element to balance the hidden scrollbar width\n this._setElementAttributes(this._element, PROPERTY_PADDING, calculatedValue => calculatedValue + width);\n // trick: We adjust positive paddingRight and negative marginRight to sticky-top elements to keep showing fullwidth\n this._setElementAttributes(SELECTOR_FIXED_CONTENT, PROPERTY_PADDING, calculatedValue => calculatedValue + width);\n this._setElementAttributes(SELECTOR_STICKY_CONTENT, PROPERTY_MARGIN, calculatedValue => calculatedValue - width);\n }\n reset() {\n this._resetElementAttributes(this._element, 'overflow');\n this._resetElementAttributes(this._element, PROPERTY_PADDING);\n this._resetElementAttributes(SELECTOR_FIXED_CONTENT, PROPERTY_PADDING);\n this._resetElementAttributes(SELECTOR_STICKY_CONTENT, PROPERTY_MARGIN);\n }\n isOverflowing() {\n return this.getWidth() > 0;\n }\n\n // Private\n _disableOverFlow() {\n this._saveInitialAttribute(this._element, 'overflow');\n this._element.style.overflow = 'hidden';\n }\n _setElementAttributes(selector, styleProperty, callback) {\n const scrollbarWidth = this.getWidth();\n const manipulationCallBack = element => {\n if (element !== this._element && window.innerWidth > element.clientWidth + scrollbarWidth) {\n return;\n }\n this._saveInitialAttribute(element, styleProperty);\n const calculatedValue = window.getComputedStyle(element).getPropertyValue(styleProperty);\n element.style.setProperty(styleProperty, `${callback(Number.parseFloat(calculatedValue))}px`);\n };\n this._applyManipulationCallback(selector, manipulationCallBack);\n }\n _saveInitialAttribute(element, styleProperty) {\n const actualValue = element.style.getPropertyValue(styleProperty);\n if (actualValue) {\n Manipulator.setDataAttribute(element, styleProperty, actualValue);\n }\n }\n _resetElementAttributes(selector, styleProperty) {\n const manipulationCallBack = element => {\n const value = Manipulator.getDataAttribute(element, styleProperty);\n // We only want to remove the property if the value is `null`; the value can also be zero\n if (value === null) {\n element.style.removeProperty(styleProperty);\n return;\n }\n Manipulator.removeDataAttribute(element, styleProperty);\n element.style.setProperty(styleProperty, value);\n };\n this._applyManipulationCallback(selector, manipulationCallBack);\n }\n _applyManipulationCallback(selector, callBack) {\n if (isElement(selector)) {\n callBack(selector);\n return;\n }\n for (const sel of SelectorEngine.find(selector, this._element)) {\n callBack(sel);\n }\n }\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap modal.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$7 = 'modal';\nconst DATA_KEY$4 = 'bs.modal';\nconst EVENT_KEY$4 = `.${DATA_KEY$4}`;\nconst DATA_API_KEY$2 = '.data-api';\nconst ESCAPE_KEY$1 = 'Escape';\nconst EVENT_HIDE$4 = `hide${EVENT_KEY$4}`;\nconst EVENT_HIDE_PREVENTED$1 = `hidePrevented${EVENT_KEY$4}`;\nconst EVENT_HIDDEN$4 = `hidden${EVENT_KEY$4}`;\nconst EVENT_SHOW$4 = `show${EVENT_KEY$4}`;\nconst EVENT_SHOWN$4 = `shown${EVENT_KEY$4}`;\nconst EVENT_RESIZE$1 = `resize${EVENT_KEY$4}`;\nconst EVENT_CLICK_DISMISS = `click.dismiss${EVENT_KEY$4}`;\nconst EVENT_MOUSEDOWN_DISMISS = `mousedown.dismiss${EVENT_KEY$4}`;\nconst EVENT_KEYDOWN_DISMISS$1 = `keydown.dismiss${EVENT_KEY$4}`;\nconst EVENT_CLICK_DATA_API$2 = `click${EVENT_KEY$4}${DATA_API_KEY$2}`;\nconst CLASS_NAME_OPEN = 'modal-open';\nconst CLASS_NAME_FADE$3 = 'fade';\nconst CLASS_NAME_SHOW$4 = 'show';\nconst CLASS_NAME_STATIC = 'modal-static';\nconst OPEN_SELECTOR$1 = '.modal.show';\nconst SELECTOR_DIALOG = '.modal-dialog';\nconst SELECTOR_MODAL_BODY = '.modal-body';\nconst SELECTOR_DATA_TOGGLE$2 = '[data-bs-toggle=\"modal\"]';\nconst Default$6 = {\n backdrop: true,\n focus: true,\n keyboard: true\n};\nconst DefaultType$6 = {\n backdrop: '(boolean|string)',\n focus: 'boolean',\n keyboard: 'boolean'\n};\n\n/**\n * Class definition\n */\n\nclass Modal extends BaseComponent {\n constructor(element, config) {\n super(element, config);\n this._dialog = SelectorEngine.findOne(SELECTOR_DIALOG, this._element);\n this._backdrop = this._initializeBackDrop();\n this._focustrap = this._initializeFocusTrap();\n this._isShown = false;\n this._isTransitioning = false;\n this._scrollBar = new ScrollBarHelper();\n this._addEventListeners();\n }\n\n // Getters\n static get Default() {\n return Default$6;\n }\n static get DefaultType() {\n return DefaultType$6;\n }\n static get NAME() {\n return NAME$7;\n }\n\n // Public\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget);\n }\n show(relatedTarget) {\n if (this._isShown || this._isTransitioning) {\n return;\n }\n const showEvent = EventHandler.trigger(this._element, EVENT_SHOW$4, {\n relatedTarget\n });\n if (showEvent.defaultPrevented) {\n return;\n }\n this._isShown = true;\n this._isTransitioning = true;\n this._scrollBar.hide();\n document.body.classList.add(CLASS_NAME_OPEN);\n this._adjustDialog();\n this._backdrop.show(() => this._showElement(relatedTarget));\n }\n hide() {\n if (!this._isShown || this._isTransitioning) {\n return;\n }\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE$4);\n if (hideEvent.defaultPrevented) {\n return;\n }\n this._isShown = false;\n this._isTransitioning = true;\n this._focustrap.deactivate();\n this._element.classList.remove(CLASS_NAME_SHOW$4);\n this._queueCallback(() => this._hideModal(), this._element, this._isAnimated());\n }\n dispose() {\n EventHandler.off(window, EVENT_KEY$4);\n EventHandler.off(this._dialog, EVENT_KEY$4);\n this._backdrop.dispose();\n this._focustrap.deactivate();\n super.dispose();\n }\n handleUpdate() {\n this._adjustDialog();\n }\n\n // Private\n _initializeBackDrop() {\n return new Backdrop({\n isVisible: Boolean(this._config.backdrop),\n // 'static' option will be translated to true, and booleans will keep their value,\n isAnimated: this._isAnimated()\n });\n }\n _initializeFocusTrap() {\n return new FocusTrap({\n trapElement: this._element\n });\n }\n _showElement(relatedTarget) {\n // try to append dynamic modal\n if (!document.body.contains(this._element)) {\n document.body.append(this._element);\n }\n this._element.style.display = 'block';\n this._element.removeAttribute('aria-hidden');\n this._element.setAttribute('aria-modal', true);\n this._element.setAttribute('role', 'dialog');\n this._element.scrollTop = 0;\n const modalBody = SelectorEngine.findOne(SELECTOR_MODAL_BODY, this._dialog);\n if (modalBody) {\n modalBody.scrollTop = 0;\n }\n reflow(this._element);\n this._element.classList.add(CLASS_NAME_SHOW$4);\n const transitionComplete = () => {\n if (this._config.focus) {\n this._focustrap.activate();\n }\n this._isTransitioning = false;\n EventHandler.trigger(this._element, EVENT_SHOWN$4, {\n relatedTarget\n });\n };\n this._queueCallback(transitionComplete, this._dialog, this._isAnimated());\n }\n _addEventListeners() {\n EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS$1, event => {\n if (event.key !== ESCAPE_KEY$1) {\n return;\n }\n if (this._config.keyboard) {\n this.hide();\n return;\n }\n this._triggerBackdropTransition();\n });\n EventHandler.on(window, EVENT_RESIZE$1, () => {\n if (this._isShown && !this._isTransitioning) {\n this._adjustDialog();\n }\n });\n EventHandler.on(this._element, EVENT_MOUSEDOWN_DISMISS, event => {\n // a bad trick to segregate clicks that may start inside dialog but end outside, and avoid listen to scrollbar clicks\n EventHandler.one(this._element, EVENT_CLICK_DISMISS, event2 => {\n if (this._element !== event.target || this._element !== event2.target) {\n return;\n }\n if (this._config.backdrop === 'static') {\n this._triggerBackdropTransition();\n return;\n }\n if (this._config.backdrop) {\n this.hide();\n }\n });\n });\n }\n _hideModal() {\n this._element.style.display = 'none';\n this._element.setAttribute('aria-hidden', true);\n this._element.removeAttribute('aria-modal');\n this._element.removeAttribute('role');\n this._isTransitioning = false;\n this._backdrop.hide(() => {\n document.body.classList.remove(CLASS_NAME_OPEN);\n this._resetAdjustments();\n this._scrollBar.reset();\n EventHandler.trigger(this._element, EVENT_HIDDEN$4);\n });\n }\n _isAnimated() {\n return this._element.classList.contains(CLASS_NAME_FADE$3);\n }\n _triggerBackdropTransition() {\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED$1);\n if (hideEvent.defaultPrevented) {\n return;\n }\n const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;\n const initialOverflowY = this._element.style.overflowY;\n // return if the following background transition hasn't yet completed\n if (initialOverflowY === 'hidden' || this._element.classList.contains(CLASS_NAME_STATIC)) {\n return;\n }\n if (!isModalOverflowing) {\n this._element.style.overflowY = 'hidden';\n }\n this._element.classList.add(CLASS_NAME_STATIC);\n this._queueCallback(() => {\n this._element.classList.remove(CLASS_NAME_STATIC);\n this._queueCallback(() => {\n this._element.style.overflowY = initialOverflowY;\n }, this._dialog);\n }, this._dialog);\n this._element.focus();\n }\n\n /**\n * The following methods are used to handle overflowing modals\n */\n\n _adjustDialog() {\n const isModalOverflowing = this._element.scrollHeight > document.documentElement.clientHeight;\n const scrollbarWidth = this._scrollBar.getWidth();\n const isBodyOverflowing = scrollbarWidth > 0;\n if (isBodyOverflowing && !isModalOverflowing) {\n const property = isRTL() ? 'paddingLeft' : 'paddingRight';\n this._element.style[property] = `${scrollbarWidth}px`;\n }\n if (!isBodyOverflowing && isModalOverflowing) {\n const property = isRTL() ? 'paddingRight' : 'paddingLeft';\n this._element.style[property] = `${scrollbarWidth}px`;\n }\n }\n _resetAdjustments() {\n this._element.style.paddingLeft = '';\n this._element.style.paddingRight = '';\n }\n\n // Static\n static jQueryInterface(config, relatedTarget) {\n return this.each(function () {\n const data = Modal.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config](relatedTarget);\n });\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API$2, SELECTOR_DATA_TOGGLE$2, function (event) {\n const target = SelectorEngine.getElementFromSelector(this);\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n EventHandler.one(target, EVENT_SHOW$4, showEvent => {\n if (showEvent.defaultPrevented) {\n // only register focus restorer if modal will actually get shown\n return;\n }\n EventHandler.one(target, EVENT_HIDDEN$4, () => {\n if (isVisible(this)) {\n this.focus();\n }\n });\n });\n\n // avoid conflict when clicking modal toggler while another one is open\n const alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR$1);\n if (alreadyOpen) {\n Modal.getInstance(alreadyOpen).hide();\n }\n const data = Modal.getOrCreateInstance(target);\n data.toggle(this);\n});\nenableDismissTrigger(Modal);\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Modal);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap offcanvas.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$6 = 'offcanvas';\nconst DATA_KEY$3 = 'bs.offcanvas';\nconst EVENT_KEY$3 = `.${DATA_KEY$3}`;\nconst DATA_API_KEY$1 = '.data-api';\nconst EVENT_LOAD_DATA_API$2 = `load${EVENT_KEY$3}${DATA_API_KEY$1}`;\nconst ESCAPE_KEY = 'Escape';\nconst CLASS_NAME_SHOW$3 = 'show';\nconst CLASS_NAME_SHOWING$1 = 'showing';\nconst CLASS_NAME_HIDING = 'hiding';\nconst CLASS_NAME_BACKDROP = 'offcanvas-backdrop';\nconst OPEN_SELECTOR = '.offcanvas.show';\nconst EVENT_SHOW$3 = `show${EVENT_KEY$3}`;\nconst EVENT_SHOWN$3 = `shown${EVENT_KEY$3}`;\nconst EVENT_HIDE$3 = `hide${EVENT_KEY$3}`;\nconst EVENT_HIDE_PREVENTED = `hidePrevented${EVENT_KEY$3}`;\nconst EVENT_HIDDEN$3 = `hidden${EVENT_KEY$3}`;\nconst EVENT_RESIZE = `resize${EVENT_KEY$3}`;\nconst EVENT_CLICK_DATA_API$1 = `click${EVENT_KEY$3}${DATA_API_KEY$1}`;\nconst EVENT_KEYDOWN_DISMISS = `keydown.dismiss${EVENT_KEY$3}`;\nconst SELECTOR_DATA_TOGGLE$1 = '[data-bs-toggle=\"offcanvas\"]';\nconst Default$5 = {\n backdrop: true,\n keyboard: true,\n scroll: false\n};\nconst DefaultType$5 = {\n backdrop: '(boolean|string)',\n keyboard: 'boolean',\n scroll: 'boolean'\n};\n\n/**\n * Class definition\n */\n\nclass Offcanvas extends BaseComponent {\n constructor(element, config) {\n super(element, config);\n this._isShown = false;\n this._backdrop = this._initializeBackDrop();\n this._focustrap = this._initializeFocusTrap();\n this._addEventListeners();\n }\n\n // Getters\n static get Default() {\n return Default$5;\n }\n static get DefaultType() {\n return DefaultType$5;\n }\n static get NAME() {\n return NAME$6;\n }\n\n // Public\n toggle(relatedTarget) {\n return this._isShown ? this.hide() : this.show(relatedTarget);\n }\n show(relatedTarget) {\n if (this._isShown) {\n return;\n }\n const showEvent = EventHandler.trigger(this._element, EVENT_SHOW$3, {\n relatedTarget\n });\n if (showEvent.defaultPrevented) {\n return;\n }\n this._isShown = true;\n this._backdrop.show();\n if (!this._config.scroll) {\n new ScrollBarHelper().hide();\n }\n this._element.setAttribute('aria-modal', true);\n this._element.setAttribute('role', 'dialog');\n this._element.classList.add(CLASS_NAME_SHOWING$1);\n const completeCallBack = () => {\n if (!this._config.scroll || this._config.backdrop) {\n this._focustrap.activate();\n }\n this._element.classList.add(CLASS_NAME_SHOW$3);\n this._element.classList.remove(CLASS_NAME_SHOWING$1);\n EventHandler.trigger(this._element, EVENT_SHOWN$3, {\n relatedTarget\n });\n };\n this._queueCallback(completeCallBack, this._element, true);\n }\n hide() {\n if (!this._isShown) {\n return;\n }\n const hideEvent = EventHandler.trigger(this._element, EVENT_HIDE$3);\n if (hideEvent.defaultPrevented) {\n return;\n }\n this._focustrap.deactivate();\n this._element.blur();\n this._isShown = false;\n this._element.classList.add(CLASS_NAME_HIDING);\n this._backdrop.hide();\n const completeCallback = () => {\n this._element.classList.remove(CLASS_NAME_SHOW$3, CLASS_NAME_HIDING);\n this._element.removeAttribute('aria-modal');\n this._element.removeAttribute('role');\n if (!this._config.scroll) {\n new ScrollBarHelper().reset();\n }\n EventHandler.trigger(this._element, EVENT_HIDDEN$3);\n };\n this._queueCallback(completeCallback, this._element, true);\n }\n dispose() {\n this._backdrop.dispose();\n this._focustrap.deactivate();\n super.dispose();\n }\n\n // Private\n _initializeBackDrop() {\n const clickCallback = () => {\n if (this._config.backdrop === 'static') {\n EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED);\n return;\n }\n this.hide();\n };\n\n // 'static' option will be translated to true, and booleans will keep their value\n const isVisible = Boolean(this._config.backdrop);\n return new Backdrop({\n className: CLASS_NAME_BACKDROP,\n isVisible,\n isAnimated: true,\n rootElement: this._element.parentNode,\n clickCallback: isVisible ? clickCallback : null\n });\n }\n _initializeFocusTrap() {\n return new FocusTrap({\n trapElement: this._element\n });\n }\n _addEventListeners() {\n EventHandler.on(this._element, EVENT_KEYDOWN_DISMISS, event => {\n if (event.key !== ESCAPE_KEY) {\n return;\n }\n if (this._config.keyboard) {\n this.hide();\n return;\n }\n EventHandler.trigger(this._element, EVENT_HIDE_PREVENTED);\n });\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Offcanvas.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config](this);\n });\n }\n}\n\n/**\n * Data API implementation\n */\n\nEventHandler.on(document, EVENT_CLICK_DATA_API$1, SELECTOR_DATA_TOGGLE$1, function (event) {\n const target = SelectorEngine.getElementFromSelector(this);\n if (['A', 'AREA'].includes(this.tagName)) {\n event.preventDefault();\n }\n if (isDisabled(this)) {\n return;\n }\n EventHandler.one(target, EVENT_HIDDEN$3, () => {\n // focus on trigger when it is closed\n if (isVisible(this)) {\n this.focus();\n }\n });\n\n // avoid conflict when clicking a toggler of an offcanvas, while another is open\n const alreadyOpen = SelectorEngine.findOne(OPEN_SELECTOR);\n if (alreadyOpen && alreadyOpen !== target) {\n Offcanvas.getInstance(alreadyOpen).hide();\n }\n const data = Offcanvas.getOrCreateInstance(target);\n data.toggle(this);\n});\nEventHandler.on(window, EVENT_LOAD_DATA_API$2, () => {\n for (const selector of SelectorEngine.find(OPEN_SELECTOR)) {\n Offcanvas.getOrCreateInstance(selector).show();\n }\n});\nEventHandler.on(window, EVENT_RESIZE, () => {\n for (const element of SelectorEngine.find('[aria-modal][class*=show][class*=offcanvas-]')) {\n if (getComputedStyle(element).position !== 'fixed') {\n Offcanvas.getOrCreateInstance(element).hide();\n }\n }\n});\nenableDismissTrigger(Offcanvas);\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Offcanvas);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/sanitizer.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n// js-docs-start allow-list\nconst ARIA_ATTRIBUTE_PATTERN = /^aria-[\\w-]*$/i;\nconst DefaultAllowlist = {\n // Global attributes allowed on any supplied element below.\n '*': ['class', 'dir', 'id', 'lang', 'role', ARIA_ATTRIBUTE_PATTERN],\n a: ['target', 'href', 'title', 'rel'],\n area: [],\n b: [],\n br: [],\n col: [],\n code: [],\n div: [],\n em: [],\n hr: [],\n h1: [],\n h2: [],\n h3: [],\n h4: [],\n h5: [],\n h6: [],\n i: [],\n img: ['src', 'srcset', 'alt', 'title', 'width', 'height'],\n li: [],\n ol: [],\n p: [],\n pre: [],\n s: [],\n small: [],\n span: [],\n sub: [],\n sup: [],\n strong: [],\n u: [],\n ul: []\n};\n// js-docs-end allow-list\n\nconst uriAttributes = new Set(['background', 'cite', 'href', 'itemtype', 'longdesc', 'poster', 'src', 'xlink:href']);\n\n/**\n * A pattern that recognizes URLs that are safe wrt. XSS in URL navigation\n * contexts.\n *\n * Shout-out to Angular https://github.com/angular/angular/blob/15.2.8/packages/core/src/sanitization/url_sanitizer.ts#L38\n */\n// eslint-disable-next-line unicorn/better-regex\nconst SAFE_URL_PATTERN = /^(?!javascript:)(?:[a-z0-9+.-]+:|[^&:/?#]*(?:[/?#]|$))/i;\nconst allowedAttribute = (attribute, allowedAttributeList) => {\n const attributeName = attribute.nodeName.toLowerCase();\n if (allowedAttributeList.includes(attributeName)) {\n if (uriAttributes.has(attributeName)) {\n return Boolean(SAFE_URL_PATTERN.test(attribute.nodeValue));\n }\n return true;\n }\n\n // Check if a regular expression validates the attribute.\n return allowedAttributeList.filter(attributeRegex => attributeRegex instanceof RegExp).some(regex => regex.test(attributeName));\n};\nfunction sanitizeHtml(unsafeHtml, allowList, sanitizeFunction) {\n if (!unsafeHtml.length) {\n return unsafeHtml;\n }\n if (sanitizeFunction && typeof sanitizeFunction === 'function') {\n return sanitizeFunction(unsafeHtml);\n }\n const domParser = new window.DOMParser();\n const createdDocument = domParser.parseFromString(unsafeHtml, 'text/html');\n const elements = [].concat(...createdDocument.body.querySelectorAll('*'));\n for (const element of elements) {\n const elementName = element.nodeName.toLowerCase();\n if (!Object.keys(allowList).includes(elementName)) {\n element.remove();\n continue;\n }\n const attributeList = [].concat(...element.attributes);\n const allowedAttributes = [].concat(allowList['*'] || [], allowList[elementName] || []);\n for (const attribute of attributeList) {\n if (!allowedAttribute(attribute, allowedAttributes)) {\n element.removeAttribute(attribute.nodeName);\n }\n }\n }\n return createdDocument.body.innerHTML;\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap util/template-factory.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$5 = 'TemplateFactory';\nconst Default$4 = {\n allowList: DefaultAllowlist,\n content: {},\n // { selector : text , selector2 : text2 , }\n extraClass: '',\n html: false,\n sanitize: true,\n sanitizeFn: null,\n template: '
'\n};\nconst DefaultType$4 = {\n allowList: 'object',\n content: 'object',\n extraClass: '(string|function)',\n html: 'boolean',\n sanitize: 'boolean',\n sanitizeFn: '(null|function)',\n template: 'string'\n};\nconst DefaultContentType = {\n entry: '(string|element|function|null)',\n selector: '(string|element)'\n};\n\n/**\n * Class definition\n */\n\nclass TemplateFactory extends Config {\n constructor(config) {\n super();\n this._config = this._getConfig(config);\n }\n\n // Getters\n static get Default() {\n return Default$4;\n }\n static get DefaultType() {\n return DefaultType$4;\n }\n static get NAME() {\n return NAME$5;\n }\n\n // Public\n getContent() {\n return Object.values(this._config.content).map(config => this._resolvePossibleFunction(config)).filter(Boolean);\n }\n hasContent() {\n return this.getContent().length > 0;\n }\n changeContent(content) {\n this._checkContent(content);\n this._config.content = {\n ...this._config.content,\n ...content\n };\n return this;\n }\n toHtml() {\n const templateWrapper = document.createElement('div');\n templateWrapper.innerHTML = this._maybeSanitize(this._config.template);\n for (const [selector, text] of Object.entries(this._config.content)) {\n this._setContent(templateWrapper, text, selector);\n }\n const template = templateWrapper.children[0];\n const extraClass = this._resolvePossibleFunction(this._config.extraClass);\n if (extraClass) {\n template.classList.add(...extraClass.split(' '));\n }\n return template;\n }\n\n // Private\n _typeCheckConfig(config) {\n super._typeCheckConfig(config);\n this._checkContent(config.content);\n }\n _checkContent(arg) {\n for (const [selector, content] of Object.entries(arg)) {\n super._typeCheckConfig({\n selector,\n entry: content\n }, DefaultContentType);\n }\n }\n _setContent(template, content, selector) {\n const templateElement = SelectorEngine.findOne(selector, template);\n if (!templateElement) {\n return;\n }\n content = this._resolvePossibleFunction(content);\n if (!content) {\n templateElement.remove();\n return;\n }\n if (isElement(content)) {\n this._putElementInTemplate(getElement(content), templateElement);\n return;\n }\n if (this._config.html) {\n templateElement.innerHTML = this._maybeSanitize(content);\n return;\n }\n templateElement.textContent = content;\n }\n _maybeSanitize(arg) {\n return this._config.sanitize ? sanitizeHtml(arg, this._config.allowList, this._config.sanitizeFn) : arg;\n }\n _resolvePossibleFunction(arg) {\n return execute(arg, [this]);\n }\n _putElementInTemplate(element, templateElement) {\n if (this._config.html) {\n templateElement.innerHTML = '';\n templateElement.append(element);\n return;\n }\n templateElement.textContent = element.textContent;\n }\n}\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap tooltip.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$4 = 'tooltip';\nconst DISALLOWED_ATTRIBUTES = new Set(['sanitize', 'allowList', 'sanitizeFn']);\nconst CLASS_NAME_FADE$2 = 'fade';\nconst CLASS_NAME_MODAL = 'modal';\nconst CLASS_NAME_SHOW$2 = 'show';\nconst SELECTOR_TOOLTIP_INNER = '.tooltip-inner';\nconst SELECTOR_MODAL = `.${CLASS_NAME_MODAL}`;\nconst EVENT_MODAL_HIDE = 'hide.bs.modal';\nconst TRIGGER_HOVER = 'hover';\nconst TRIGGER_FOCUS = 'focus';\nconst TRIGGER_CLICK = 'click';\nconst TRIGGER_MANUAL = 'manual';\nconst EVENT_HIDE$2 = 'hide';\nconst EVENT_HIDDEN$2 = 'hidden';\nconst EVENT_SHOW$2 = 'show';\nconst EVENT_SHOWN$2 = 'shown';\nconst EVENT_INSERTED = 'inserted';\nconst EVENT_CLICK$1 = 'click';\nconst EVENT_FOCUSIN$1 = 'focusin';\nconst EVENT_FOCUSOUT$1 = 'focusout';\nconst EVENT_MOUSEENTER = 'mouseenter';\nconst EVENT_MOUSELEAVE = 'mouseleave';\nconst AttachmentMap = {\n AUTO: 'auto',\n TOP: 'top',\n RIGHT: isRTL() ? 'left' : 'right',\n BOTTOM: 'bottom',\n LEFT: isRTL() ? 'right' : 'left'\n};\nconst Default$3 = {\n allowList: DefaultAllowlist,\n animation: true,\n boundary: 'clippingParents',\n container: false,\n customClass: '',\n delay: 0,\n fallbackPlacements: ['top', 'right', 'bottom', 'left'],\n html: false,\n offset: [0, 6],\n placement: 'top',\n popperConfig: null,\n sanitize: true,\n sanitizeFn: null,\n selector: false,\n template: '
' + '
' + '
' + '
',\n title: '',\n trigger: 'hover focus'\n};\nconst DefaultType$3 = {\n allowList: 'object',\n animation: 'boolean',\n boundary: '(string|element)',\n container: '(string|element|boolean)',\n customClass: '(string|function)',\n delay: '(number|object)',\n fallbackPlacements: 'array',\n html: 'boolean',\n offset: '(array|string|function)',\n placement: '(string|function)',\n popperConfig: '(null|object|function)',\n sanitize: 'boolean',\n sanitizeFn: '(null|function)',\n selector: '(string|boolean)',\n template: 'string',\n title: '(string|element|function)',\n trigger: 'string'\n};\n\n/**\n * Class definition\n */\n\nclass Tooltip extends BaseComponent {\n constructor(element, config) {\n if (typeof Popper === 'undefined') {\n throw new TypeError('Bootstrap\\'s tooltips require Popper (https://popper.js.org)');\n }\n super(element, config);\n\n // Private\n this._isEnabled = true;\n this._timeout = 0;\n this._isHovered = null;\n this._activeTrigger = {};\n this._popper = null;\n this._templateFactory = null;\n this._newContent = null;\n\n // Protected\n this.tip = null;\n this._setListeners();\n if (!this._config.selector) {\n this._fixTitle();\n }\n }\n\n // Getters\n static get Default() {\n return Default$3;\n }\n static get DefaultType() {\n return DefaultType$3;\n }\n static get NAME() {\n return NAME$4;\n }\n\n // Public\n enable() {\n this._isEnabled = true;\n }\n disable() {\n this._isEnabled = false;\n }\n toggleEnabled() {\n this._isEnabled = !this._isEnabled;\n }\n toggle() {\n if (!this._isEnabled) {\n return;\n }\n this._activeTrigger.click = !this._activeTrigger.click;\n if (this._isShown()) {\n this._leave();\n return;\n }\n this._enter();\n }\n dispose() {\n clearTimeout(this._timeout);\n EventHandler.off(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler);\n if (this._element.getAttribute('data-bs-original-title')) {\n this._element.setAttribute('title', this._element.getAttribute('data-bs-original-title'));\n }\n this._disposePopper();\n super.dispose();\n }\n show() {\n if (this._element.style.display === 'none') {\n throw new Error('Please use show on visible elements');\n }\n if (!(this._isWithContent() && this._isEnabled)) {\n return;\n }\n const showEvent = EventHandler.trigger(this._element, this.constructor.eventName(EVENT_SHOW$2));\n const shadowRoot = findShadowRoot(this._element);\n const isInTheDom = (shadowRoot || this._element.ownerDocument.documentElement).contains(this._element);\n if (showEvent.defaultPrevented || !isInTheDom) {\n return;\n }\n\n // TODO: v6 remove this or make it optional\n this._disposePopper();\n const tip = this._getTipElement();\n this._element.setAttribute('aria-describedby', tip.getAttribute('id'));\n const {\n container\n } = this._config;\n if (!this._element.ownerDocument.documentElement.contains(this.tip)) {\n container.append(tip);\n EventHandler.trigger(this._element, this.constructor.eventName(EVENT_INSERTED));\n }\n this._popper = this._createPopper(tip);\n tip.classList.add(CLASS_NAME_SHOW$2);\n\n // If this is a touch-enabled device we add extra\n // empty mouseover listeners to the body's immediate children;\n // only needed because of broken event delegation on iOS\n // https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html\n if ('ontouchstart' in document.documentElement) {\n for (const element of [].concat(...document.body.children)) {\n EventHandler.on(element, 'mouseover', noop);\n }\n }\n const complete = () => {\n EventHandler.trigger(this._element, this.constructor.eventName(EVENT_SHOWN$2));\n if (this._isHovered === false) {\n this._leave();\n }\n this._isHovered = false;\n };\n this._queueCallback(complete, this.tip, this._isAnimated());\n }\n hide() {\n if (!this._isShown()) {\n return;\n }\n const hideEvent = EventHandler.trigger(this._element, this.constructor.eventName(EVENT_HIDE$2));\n if (hideEvent.defaultPrevented) {\n return;\n }\n const tip = this._getTipElement();\n tip.classList.remove(CLASS_NAME_SHOW$2);\n\n // If this is a touch-enabled device we remove the extra\n // empty mouseover listeners we added for iOS support\n if ('ontouchstart' in document.documentElement) {\n for (const element of [].concat(...document.body.children)) {\n EventHandler.off(element, 'mouseover', noop);\n }\n }\n this._activeTrigger[TRIGGER_CLICK] = false;\n this._activeTrigger[TRIGGER_FOCUS] = false;\n this._activeTrigger[TRIGGER_HOVER] = false;\n this._isHovered = null; // it is a trick to support manual triggering\n\n const complete = () => {\n if (this._isWithActiveTrigger()) {\n return;\n }\n if (!this._isHovered) {\n this._disposePopper();\n }\n this._element.removeAttribute('aria-describedby');\n EventHandler.trigger(this._element, this.constructor.eventName(EVENT_HIDDEN$2));\n };\n this._queueCallback(complete, this.tip, this._isAnimated());\n }\n update() {\n if (this._popper) {\n this._popper.update();\n }\n }\n\n // Protected\n _isWithContent() {\n return Boolean(this._getTitle());\n }\n _getTipElement() {\n if (!this.tip) {\n this.tip = this._createTipElement(this._newContent || this._getContentForTemplate());\n }\n return this.tip;\n }\n _createTipElement(content) {\n const tip = this._getTemplateFactory(content).toHtml();\n\n // TODO: remove this check in v6\n if (!tip) {\n return null;\n }\n tip.classList.remove(CLASS_NAME_FADE$2, CLASS_NAME_SHOW$2);\n // TODO: v6 the following can be achieved with CSS only\n tip.classList.add(`bs-${this.constructor.NAME}-auto`);\n const tipId = getUID(this.constructor.NAME).toString();\n tip.setAttribute('id', tipId);\n if (this._isAnimated()) {\n tip.classList.add(CLASS_NAME_FADE$2);\n }\n return tip;\n }\n setContent(content) {\n this._newContent = content;\n if (this._isShown()) {\n this._disposePopper();\n this.show();\n }\n }\n _getTemplateFactory(content) {\n if (this._templateFactory) {\n this._templateFactory.changeContent(content);\n } else {\n this._templateFactory = new TemplateFactory({\n ...this._config,\n // the `content` var has to be after `this._config`\n // to override config.content in case of popover\n content,\n extraClass: this._resolvePossibleFunction(this._config.customClass)\n });\n }\n return this._templateFactory;\n }\n _getContentForTemplate() {\n return {\n [SELECTOR_TOOLTIP_INNER]: this._getTitle()\n };\n }\n _getTitle() {\n return this._resolvePossibleFunction(this._config.title) || this._element.getAttribute('data-bs-original-title');\n }\n\n // Private\n _initializeOnDelegatedTarget(event) {\n return this.constructor.getOrCreateInstance(event.delegateTarget, this._getDelegateConfig());\n }\n _isAnimated() {\n return this._config.animation || this.tip && this.tip.classList.contains(CLASS_NAME_FADE$2);\n }\n _isShown() {\n return this.tip && this.tip.classList.contains(CLASS_NAME_SHOW$2);\n }\n _createPopper(tip) {\n const placement = execute(this._config.placement, [this, tip, this._element]);\n const attachment = AttachmentMap[placement.toUpperCase()];\n return Popper.createPopper(this._element, tip, this._getPopperConfig(attachment));\n }\n _getOffset() {\n const {\n offset\n } = this._config;\n if (typeof offset === 'string') {\n return offset.split(',').map(value => Number.parseInt(value, 10));\n }\n if (typeof offset === 'function') {\n return popperData => offset(popperData, this._element);\n }\n return offset;\n }\n _resolvePossibleFunction(arg) {\n return execute(arg, [this._element]);\n }\n _getPopperConfig(attachment) {\n const defaultBsPopperConfig = {\n placement: attachment,\n modifiers: [{\n name: 'flip',\n options: {\n fallbackPlacements: this._config.fallbackPlacements\n }\n }, {\n name: 'offset',\n options: {\n offset: this._getOffset()\n }\n }, {\n name: 'preventOverflow',\n options: {\n boundary: this._config.boundary\n }\n }, {\n name: 'arrow',\n options: {\n element: `.${this.constructor.NAME}-arrow`\n }\n }, {\n name: 'preSetPlacement',\n enabled: true,\n phase: 'beforeMain',\n fn: data => {\n // Pre-set Popper's placement attribute in order to read the arrow sizes properly.\n // Otherwise, Popper mixes up the width and height dimensions since the initial arrow style is for top placement\n this._getTipElement().setAttribute('data-popper-placement', data.state.placement);\n }\n }]\n };\n return {\n ...defaultBsPopperConfig,\n ...execute(this._config.popperConfig, [defaultBsPopperConfig])\n };\n }\n _setListeners() {\n const triggers = this._config.trigger.split(' ');\n for (const trigger of triggers) {\n if (trigger === 'click') {\n EventHandler.on(this._element, this.constructor.eventName(EVENT_CLICK$1), this._config.selector, event => {\n const context = this._initializeOnDelegatedTarget(event);\n context.toggle();\n });\n } else if (trigger !== TRIGGER_MANUAL) {\n const eventIn = trigger === TRIGGER_HOVER ? this.constructor.eventName(EVENT_MOUSEENTER) : this.constructor.eventName(EVENT_FOCUSIN$1);\n const eventOut = trigger === TRIGGER_HOVER ? this.constructor.eventName(EVENT_MOUSELEAVE) : this.constructor.eventName(EVENT_FOCUSOUT$1);\n EventHandler.on(this._element, eventIn, this._config.selector, event => {\n const context = this._initializeOnDelegatedTarget(event);\n context._activeTrigger[event.type === 'focusin' ? TRIGGER_FOCUS : TRIGGER_HOVER] = true;\n context._enter();\n });\n EventHandler.on(this._element, eventOut, this._config.selector, event => {\n const context = this._initializeOnDelegatedTarget(event);\n context._activeTrigger[event.type === 'focusout' ? TRIGGER_FOCUS : TRIGGER_HOVER] = context._element.contains(event.relatedTarget);\n context._leave();\n });\n }\n }\n this._hideModalHandler = () => {\n if (this._element) {\n this.hide();\n }\n };\n EventHandler.on(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler);\n }\n _fixTitle() {\n const title = this._element.getAttribute('title');\n if (!title) {\n return;\n }\n if (!this._element.getAttribute('aria-label') && !this._element.textContent.trim()) {\n this._element.setAttribute('aria-label', title);\n }\n this._element.setAttribute('data-bs-original-title', title); // DO NOT USE IT. Is only for backwards compatibility\n this._element.removeAttribute('title');\n }\n _enter() {\n if (this._isShown() || this._isHovered) {\n this._isHovered = true;\n return;\n }\n this._isHovered = true;\n this._setTimeout(() => {\n if (this._isHovered) {\n this.show();\n }\n }, this._config.delay.show);\n }\n _leave() {\n if (this._isWithActiveTrigger()) {\n return;\n }\n this._isHovered = false;\n this._setTimeout(() => {\n if (!this._isHovered) {\n this.hide();\n }\n }, this._config.delay.hide);\n }\n _setTimeout(handler, timeout) {\n clearTimeout(this._timeout);\n this._timeout = setTimeout(handler, timeout);\n }\n _isWithActiveTrigger() {\n return Object.values(this._activeTrigger).includes(true);\n }\n _getConfig(config) {\n const dataAttributes = Manipulator.getDataAttributes(this._element);\n for (const dataAttribute of Object.keys(dataAttributes)) {\n if (DISALLOWED_ATTRIBUTES.has(dataAttribute)) {\n delete dataAttributes[dataAttribute];\n }\n }\n config = {\n ...dataAttributes,\n ...(typeof config === 'object' && config ? config : {})\n };\n config = this._mergeConfigObj(config);\n config = this._configAfterMerge(config);\n this._typeCheckConfig(config);\n return config;\n }\n _configAfterMerge(config) {\n config.container = config.container === false ? document.body : getElement(config.container);\n if (typeof config.delay === 'number') {\n config.delay = {\n show: config.delay,\n hide: config.delay\n };\n }\n if (typeof config.title === 'number') {\n config.title = config.title.toString();\n }\n if (typeof config.content === 'number') {\n config.content = config.content.toString();\n }\n return config;\n }\n _getDelegateConfig() {\n const config = {};\n for (const [key, value] of Object.entries(this._config)) {\n if (this.constructor.Default[key] !== value) {\n config[key] = value;\n }\n }\n config.selector = false;\n config.trigger = 'manual';\n\n // In the future can be replaced with:\n // const keysWithDifferentValues = Object.entries(this._config).filter(entry => this.constructor.Default[entry[0]] !== this._config[entry[0]])\n // `Object.fromEntries(keysWithDifferentValues)`\n return config;\n }\n _disposePopper() {\n if (this._popper) {\n this._popper.destroy();\n this._popper = null;\n }\n if (this.tip) {\n this.tip.remove();\n this.tip = null;\n }\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Tooltip.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config]();\n });\n }\n}\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Tooltip);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap popover.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$3 = 'popover';\nconst SELECTOR_TITLE = '.popover-header';\nconst SELECTOR_CONTENT = '.popover-body';\nconst Default$2 = {\n ...Tooltip.Default,\n content: '',\n offset: [0, 8],\n placement: 'right',\n template: '
' + '
' + '

' + '
' + '
',\n trigger: 'click'\n};\nconst DefaultType$2 = {\n ...Tooltip.DefaultType,\n content: '(null|string|element|function)'\n};\n\n/**\n * Class definition\n */\n\nclass Popover extends Tooltip {\n // Getters\n static get Default() {\n return Default$2;\n }\n static get DefaultType() {\n return DefaultType$2;\n }\n static get NAME() {\n return NAME$3;\n }\n\n // Overrides\n _isWithContent() {\n return this._getTitle() || this._getContent();\n }\n\n // Private\n _getContentForTemplate() {\n return {\n [SELECTOR_TITLE]: this._getTitle(),\n [SELECTOR_CONTENT]: this._getContent()\n };\n }\n _getContent() {\n return this._resolvePossibleFunction(this._config.content);\n }\n\n // Static\n static jQueryInterface(config) {\n return this.each(function () {\n const data = Popover.getOrCreateInstance(this, config);\n if (typeof config !== 'string') {\n return;\n }\n if (typeof data[config] === 'undefined') {\n throw new TypeError(`No method named \"${config}\"`);\n }\n data[config]();\n });\n }\n}\n\n/**\n * jQuery\n */\n\ndefineJQueryPlugin(Popover);\n\n/**\n * --------------------------------------------------------------------------\n * Bootstrap scrollspy.js\n * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)\n * --------------------------------------------------------------------------\n */\n\n\n/**\n * Constants\n */\n\nconst NAME$2 = 'scrollspy';\nconst DATA_KEY$2 = 'bs.scrollspy';\nconst EVENT_KEY$2 = `.${DATA_KEY$2}`;\nconst DATA_API_KEY = '.data-api';\nconst EVENT_ACTIVATE = `activate${EVENT_KEY$2}`;\nconst EVENT_CLICK = `click${EVENT_KEY$2}`;\nconst EVENT_LOAD_DATA_API$1 = `load${EVENT_KEY$2}${DATA_API_KEY}`;\nconst CLASS_NAME_DROPDOWN_ITEM = 'dropdown-item';\nconst CLASS_NAME_ACTIVE$1 = 'active';\nconst SELECTOR_DATA_SPY = '[data-bs-spy=\"scroll\"]';\nconst SELECTOR_TARGET_LINKS = '[href]';\nconst SELECTOR_NAV_LIST_GROUP = '.nav, .list-group';\nconst SELECTOR_NAV_LINKS = '.nav-link';\nconst SELECTOR_NAV_ITEMS = '.nav-item';\nconst SELECTOR_LIST_ITEMS = '.list-group-item';\nconst SELECTOR_LINK_ITEMS = `${SELECTOR_NAV_LINKS}, ${SELECTOR_NAV_ITEMS} > ${SELECTOR_NAV_LINKS}, ${SELECTOR_LIST_ITEMS}`;\nconst SELECTOR_DROPDOWN = '.dropdown';\nconst SELECTOR_DROPDOWN_TOGGLE$1 = '.dropdown-toggle';\nconst Default$1 = {\n offset: null,\n // TODO: v6 @deprecated, keep it for backwards compatibility reasons\n rootMargin: '0px 0px -25%',\n smoothScroll: false,\n target: null,\n threshold: [0.1, 0.5, 1]\n};\nconst DefaultType$1 = {\n offset: '(number|null)',\n // TODO v6 @deprecated, keep it for backwards compatibility reasons\n rootMargin: 'string',\n smoothScroll: 'boolean',\n target: 'element',\n threshold: 'array'\n};\n\n/**\n * Class definition\n */\n\nclass ScrollSpy extends BaseComponent {\n constructor(element, config) {\n super(element, config);\n\n // this._element is the observablesContainer and config.target the menu links wrapper\n this._targetLinks = new Map();\n this._observableSections = new Map();\n this._rootElement = getComputedStyle(this._element).overflowY === 'visible' ? null : this._element;\n this._activeTarget = null;\n this._observer = null;\n this._previousScrollData = {\n visibleEntryTop: 0,\n parentScrollTop: 0\n };\n this.refresh(); // initialize\n }\n\n // Getters\n static get Default() {\n return Default$1;\n }\n static get DefaultType() {\n return DefaultType$1;\n }\n static get NAME() {\n return NAME$2;\n }\n\n // Public\n refresh() {\n this._initializeTargetsAndObservables();\n this._maybeEnableSmoothScroll();\n if (this._observer) {\n this._observer.disconnect();\n } else {\n this._observer = this._getNewObserver();\n }\n for (const section of this._observableSections.values()) {\n this._observer.observe(section);\n }\n }\n dispose() {\n this._observer.disconnect();\n super.dispose();\n }\n\n // Private\n _configAfterMerge(config) {\n // TODO: on v6 target should be given explicitly & remove the {target: 'ss-target'} case\n config.target = getElement(config.target) || document.body;\n\n // TODO: v6 Only for backwards compatibility reasons. Use rootMargin only\n config.rootMargin = config.offset ? `${config.offset}px 0px -30%` : config.rootMargin;\n if (typeof config.threshold === 'string') {\n config.threshold = config.threshold.split(',').map(value => Number.parseFloat(value));\n }\n return config;\n }\n _maybeEnableSmoothScroll() {\n if (!this._config.smoothScroll) {\n return;\n }\n\n // unregister any previous listeners\n EventHandler.off(this._config.target, EVENT_CLICK);\n EventHandler.on(this._config.target, EVENT_CLICK, SELECTOR_TARGET_LINKS, event => {\n const observableSection = this._observableSections.get(event.target.hash);\n if (observableSection) {\n event.preventDefault();\n const root = this._rootElement || window;\n const height = observableSection.offsetTop - this._element.offsetTop;\n if (root.scrollTo) {\n root.scrollTo({\n top: height,\n behavior: 'smooth'\n });\n return;\n }\n\n // Chrome 60 doesn't support `scrollTo`\n root.scrollTop = height;\n }\n });\n }\n _getNewObserver() {\n const options = {\n root: this._rootElement,\n threshold: this._config.threshold,\n rootMargin: this._config.rootMargin\n };\n return new IntersectionObserver(entries => this._observerCallback(entries), options);\n }\n\n // The logic of selection\n _observerCallback(entries) {\n const targetElement = entry => this._targetLinks.get(`#${entry.target.id}`);\n const activate = entry => {\n this._previousScrollData.visibleEntryTop = entry.target.offsetTop;\n this._process(targetElement(entry));\n };\n const parentScrollTop = (this._rootElement || document.documentElement).scrollTop;\n const userScrollsDown = parentScrollTop >= this._previousScrollData.parentScrollTop;\n this._previousScrollData.parentScrollTop = parentScrollTop;\n for (const entry of entries) {\n if (!entry.isIntersecting) {\n this._activeTarget = null;\n this._clearActiveClass(targetElement(entry));\n continue;\n }\n const entryIsLowerThanPrevious = entry.target.offsetTop >= this._previousScrollData.visibleEntryTop;\n // if we are scrolling down, pick the bigger offsetTop\n if (userScrollsDown && entryIsLowerThanPrevious) {\n activate(entry);\n // if parent isn't scrolled, let's keep the first visible item, breaking the iteration\n if (!parentScrollTop) {\n return;\n }\n continue;\n }\n\n // if we are scrolling up, pick the smallest offsetTop\n if (!userScrollsDown && !entryIsLowerThanPrevious) {\n activate(entry);\n }\n }\n }\n _initializeTargetsAndObservables() {\n this._targetLinks = new Map();\n this._observableSections = new Map();\n const targetLinks = SelectorEngine.find(SELECTOR_TARGET_LINKS, this._config.target);\n for (const anchor of targetLinks) {\n // ensure that the anchor has an id and is not disabled\n if (!anchor.hash || isDisabled(anchor)) {\n continue;\n }\n const observableSection = SelectorEngine.findOne(decodeURI(anchor.hash), this._element);\n\n // ensure that the observableSection exists & is visible\n if (isVisible(observableSection)) {\n this._targetLinks.set(decodeURI(anchor.hash), anchor);\n this._observableSections.set(anchor.hash, observableSection);\n }\n }\n }\n _process(target) {\n if (this._activeTarget === target) {\n return;\n }\n this._clearActiveClass(this._config.target);\n this._activeTarget = target;\n target.classList.add(CLASS_NAME_ACTIVE$1);\n this._activateParents(target);\n EventHandler.trigger(this._element, EVENT_ACTIVATE, {\n relatedTarget: target\n });\n }\n _activateParents(target) {\n // Activate dropdown parents\n if (target.classList.contains(CLASS_NAME_DROPDOWN_ITEM)) {\n SelectorEngine.findOne(SELECTOR_DROPDOWN_TOGGLE$1, target.closest(SELECTOR_DROPDOWN)).classList.add(CLASS_NAME_ACTIVE$1);\n return;\n }\n for (const listGroup of SelectorEngine.parents(target, SELECTOR_NAV_LIST_GROUP)) {\n // Set triggered links parents as active\n // With both