PyMeeus

Library of astronomical algorithms in Python.

PyMeeus is a Python implementation of the astronomical algorithms described in the classical book ‘Astronomical Algorithms, 2nd Edition, Willmann-Bell Inc. (1998)’ by Jean Meeus.

There are great astronomical libraries out there. For instance, if you’re looking for high precision and speed you should take a look at libnova. For a set of python modules aimed at professional astronomers, you should look at Astropy. On the other hand, the advantages of PyMeeus are its simplicity, ease of use, ease of reading, ease of installation (it has the minimum amount of dependencies) and abundant documentation.

Installation

The easiest way of installing PyMeeus is using pip:

pip install pymeeus

Or, for a per-user installation:

pip install --user pymeeus

If you prefer Python3, you can use:

pip3 install --user pymeeus

If you have PyMeeus already installed, but want to upgrade to the latest version:

pip3 install -U pymeeus

Properly Using PyMeeus

It is very common to try to run PyMeeus like this:

import pymeeus

mydate = pymeeus.Epoch(1992, 10, 13.0)

But if you do that, you’ll get an error like this:

Traceback (most recent call last):
  File "/home/user/test/test.py", line 3, in <module>
    epoch = pymeeus.Epoch(1992, 10, 13.0)
AttributeError: module 'pymeeus' has no attribute 'Epoch'

This issue points to a misunderstanding that is very common in the Python world. The keyword import is used to import MODULES… but PyMeeus is NOT a module: It is a LIBRARY composed of MULTIPLE modules (Angle, Epoch, Coordinates, etc). As of today, the library Pymeeus has 19 different modules (if you look into the directory where pip stores the library, you’ll find one “.py” file per module).

Therefore if you want to use, for example, the module Angle you should use:

import pymeeus.Angle

I.e., your module is pymeeus.Angle, and not just Angle.

But there is more! When you use import to fetch a module, you must then use the dot notation to access the components of the module (classes, functions, etc). For instance:

import pymeeus.Angle

i = pymeeus.Angle.Angle(11.94524)

In this case, you are telling the Python interpreter that you want to use the class Angle (with parameter ‘11.94524’) from the module Angle belonging to the library pymeeus.

There is, however, a more practical (and common) way to handle modules using the statement from <MODULE> import <COMPONENT>. For instance:

from pymeeus.Angle import Angle
from pymeeus.Epoch import Epoch, JDE2000
from math import sin, cos, tan, acos, atan2, sqrt, radians, log10

This way is preferred because, among other reasons, only the required components are loaded into memory instead of the whole module. Also, now the component is directly added to your execution environment, which means that you no longer need to use the dot notation.

Therefore, the script at the beginning would become:

from pymeeus.Epoch import Epoch

mydate = Epoch(1992, 10, 13.0)

Meta

Author: Dagoberto Salazar

Distributed under the GNU Lesser General Public License v3 (LGPLv3). See LICENSE.txt and COPYING.LESSER for more information.

Documentation: https://pymeeus.readthedocs.io/en/latest/

GitHub: https://github.com/architest/pymeeus

If you have Sphinx installed, you can generate your own, latest documentation going to directory ‘docs’ and issuing:

make html

Then the HTML documentation pages can be found in ‘build/html’.

Contributing

The preferred method to contribute is through forking and pull requests:

  1. Fork it (https://github.com/architest/pymeeus/fork)
  2. Create your feature branch (git checkout -b feature/fooBar)
  3. Commit your changes (git commit -am 'Add some fooBar')
  4. Push to the branch (git push origin feature/fooBar)
  5. Create a new Pull Request

Please bear in mind that PyMeeus follows the PEP8 style guide for Python code (PEP8). We suggest you install and use a linter like Flake8 before contributing.

Additionally, PyMeeus makes heavy use of automatic tests. As a general rule, every function or method added must have a corresponding test in the proper place in tests directory.

Finally, documentation is also a big thing here. Add proper and abundant documentation to your new code. This also includes in-line comments!!!.

Contributors

  • Neil Freeman - Fixed undefined variable in Epoch.tt2ut
  • molsen234 - Fixed bug when using fractional seconds, minutes, hours or days
  • Sebastian Veigl - Added functionality for Jupiter’s moons
  • Sophie Scholz - Added functionality for Jupiter’s moons
  • Vittorio Serra - Added functionality for Jupiter’s moons
  • Michael Lutz - Added functionality for Jupiter’s moons
  • Ben Dilday - Added __hash__() method to class Epoch
  • Zivoslav - Bug report of winter solstice
  • Devid, Hugo van Kemenade - Test suggestions

What’s new

  • 0.5.12
    • Fixed a bug in the computation of the winter solstice. Added new tests and information about proper use of the library.
  • 0.5.11
    • Added parameter local to the Epoch class constructor and the methods get_date() and get_full_date().
  • 0.5.10
    • Added methods moon_librations() and moon_position_angle_axis().
  • 0.5.9
    • Added method moon_maximum_declination().
  • 0.5.8
    • Fixed several bugs in Epoch class, and added method doy().
  • 0.5.7
    • Added method moon_passage_nodes().
  • 0.5.6
    • Added method moon_perigee_apogee().
  • 0.5.5
    • Added method moon_phase().
  • 0.5.4
    • Added methods illuminated_fraction_disk() and position_bright_limb() to Moon class.
  • 0.5.3
    • Fixed error in the return type of method Sun.equation_of_time().
  • 0.5.2
    • Added methods to compute the Moon’s longitude of ascending node and perigee.
  • 0.5.1
    • Changes in the organization of the documentation.
  • 0.5.0
    • Added Moon class and position() methods.
  • 0.4.3
    • Added method ring_parameters() to Saturn class.
  • 0.4.2
    • Added method __hash__() to Epoch. Now Epoch objects can be used as keys in a dictionary.
  • 0.4.1
    • Added funtionality to compute the positions of Jupiter’s Galilean moons.
  • 0.4.0
    • Added methods to compute Saturn’s ring inclination and longitude of ascending node.
  • 0.3.13
    • Additional encoding changes.
  • 0.3.12
    • Deleted encoding keyword from setup.py, which was giving problems.
  • 0.3.11
    • Added encoding specification to setup.py.
  • 0.3.10
    • Fixed characters with the wrong encoding.
  • 0.3.9
    • Relaxed requirements, added contributor molsen234, and fixed format problems showed by flake8.
  • 0.3.8
    • Fixed undefined variable in Epoch.tt2ut.
  • 0.3.7
    • Fix bug when using fractional seconds, minutes, hours or days, plus documentation improvements.
  • 0.3.6
    • Add method to compute rising and setting times of the Sun.
  • 0.3.5
    • Add method magnitude() to planet classes.
  • 0.3.4
    • Add method to compute the parallax correction to Earth class.
  • 0.3.3
    • Add methods to compute the passage through the nodes.
  • 0.3.2
    • Add methods to compute the perihelion and aphelion of all planets.
  • 0.3.1
    • Fix errors in the elongation computation, add tests and examples of use of methods geocentric_position(), and tests and examples for Pluto class.
  • 0.3.0
    • Added Pluto class.

API

Core

Base

Basic, general functions and constants.

pymeeus.base.TOL = 1e-10

Internal tolerance being used by default

pymeeus.base.get_ordinal_suffix(ordinal)[source]

Method to get the suffix of a given ordinal number, like 1’st’, 2’nd’, 15’th’, etc.

Parameters:ordinal (int) – Ordinal number
Returns:Suffix corresponding to input ordinal number
Return type:str
Raises:TypeError if input type is invalid.
>>> get_ordinal_suffix(40)
'th'
>>> get_ordinal_suffix(101)
'st'
>>> get_ordinal_suffix(2)
'nd'
>>> get_ordinal_suffix(19)
'th'
>>> get_ordinal_suffix(23)
'rd'
pymeeus.base.iint(number)[source]

This method behaves in the same way as the INT() function described by Meeus in his book: Greatest integer which is not greater than number.

Parameters:number (int, float) – Number or expresion
Returns:Greatest integer which is not greater than number
Return type:int
Raises:TypeError if input type is invalid.
>>> iint(19)
19
>>> iint(19.95)
19
>>> iint(-2.4)
-3
pymeeus.base.machine_accuracy()[source]

This function computes the accuracy of the computer being used.

This function returns a tuple containing the number of significant bits in the mantissa of a floating number, and the number of significant digits in a decimal number.

Returns:Number of significant bits, and of significant digits
Return type:tuple

Angle

Class to handle angles.

class pymeeus.Angle.Angle(*args, **kwargs)[source]

Class Angle deals with angles in either decimal format (d.dd) or in sexagesimal format (d m’ s’’).

It provides methods to handle an Angle object like it were a simple float, but adding the functionality associated with an angle.

The constructor takes decimals and sexagesimal input. The sexagesimal angles can be given as separate degree, minutes, seconds values, or as tuples or lists. It is also possible to provide another Angle object as input.

Also, if radians=True is passed to the constructor, then the input value is considered as in radians, and converted to degrees.

__abs__()[source]

This method is used to obtain the absolute value of this Angle.

Returns:A new Angle object.
Return type:Angle
>>> a = Angle(-303.67)
>>> print(abs(a))
303.67
__add__(b)[source]

This method defines the addition between Angles.

Returns:A new Angle object.
Return type:Angle
Raises:TypeError if input values are of wrong type.
>>> a = Angle(83.1)
>>> b = Angle(18.4)
>>> print(a + b)
101.5
__call__()[source]

Method used when object is called only with parenthesis.

Returns:The internal value of the Angle object.
Return type:int, float
>>> a = Angle(54.6)
>>> print(a())
54.6
__div__(b)[source]

This method defines the division between Angles.

Returns:A new Angle object.
Return type:Angle
Raises:ZeroDivisionError if divisor is zero.
Raises:TypeError if input values are of wrong type.
>>> a = Angle(172.0)
>>> b = Angle(86.0)
>>> print(a/b)
2.0
__eq__(b)[source]

This method defines the ‘is equal’ operator between Angles.

Note

For the comparison, the internal tolerance value is used.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Angle(172.01)
>>> b = Angle(172.009)
>>> a == b
False
__float__()[source]

This method returns Angle value as a float.

Returns:Internal angle value as a float.
Return type:float
>>> a = Angle(213.8)
>>> float(a)
213.8
__ge__(b)[source]

This method defines ‘is equal or greater’ operator between Angles.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Angle(172.01)
>>> b = Angle(172.009)
>>> a >= b
True
__gt__(b)[source]

This method defines the ‘is greater than’ operator between Angles.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Angle(172.01)
>>> b = Angle(172.009)
>>> a > b
True
__iadd__(b)[source]

This method defines the accumulative addition to this Angle.

Returns:This Angle.
Return type:Angle
>>> a = Angle(172.1)
>>> b = Angle(54.6)
>>> a += b
>>> print(a)
226.7
__idiv__(b)[source]

This method defines the accumulative division to this Angle.

Returns:This Angle.
Return type:Angle
Raises:ZeroDivisionError if divisor is zero.
Raises:TypeError if input values are of wrong type.
>>> a = Angle(330.0)
>>> b = Angle(30.0)
>>> a /= b
>>> print(a)
11.0
__imod__(b)[source]

This method defines the accumulative module b of this Angle.

Returns:This Angle.
Return type:Angle
>>> a = Angle(330.0)
>>> b = Angle(45.0)
>>> a %= b
>>> print(a)
15.0
__imul__(b)[source]

This method defines the accumulative multiplication to this Angle.

Returns:This Angle.
Return type:Angle
>>> a = Angle(30.0)
>>> b = Angle(55.0)
>>> a *= b
>>> print(a)
210.0
__init__(*args, **kwargs)[source]

Angle constructor.

It takes decimals and sexagesimal input. The sexagesimal angles can be given as separate degree, minutes, seconds values, or as tuples or lists. It is also possible to provide another Angle object as input.

If radians=True is passed, then the input value is converted from radians to degrees.

If ra=True is passed, then the input value is converted from Right Ascension to degrees

Parameters:
  • args (int, float, list, tuple, Angle) – Input angle, in decimal or sexagesimal format, or Angle
  • radians (bool) – If True, input angle is in radians. False by default.
  • ra (bool) – If True, input angle is in Right Ascension. False by default
Returns:

Angle object.

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> a = Angle(-13, 30, 0.0)
>>> print(a)
-13.5
>>> b = Angle(a)
>>> print(b)
-13.5
__int__()[source]

This method returns Angle value as an int.

Returns:Internal angle value as an int.
Return type:int
>>> a = Angle(213.8)
>>> int(a)
213
__ipow__(b)[source]

This method defines the accumulative power to this Angle.

Returns:This Angle.
Return type:Angle
>>> a = Angle(37.0)
>>> b = Angle(3.0)
>>> a **= b
>>> print(a)
253.0
__isub__(b)[source]

This method defines the accumulative subtraction to this Angle.

Returns:This Angle.
Return type:Angle
>>> a = Angle(97.0)
>>> b = Angle(39.0)
>>> a -= b
>>> print(a)
58.0
__itruediv__(b)[source]

This method defines accumulative division to this Angle (Python3).

Returns:This Angle.
Return type:Angle
Raises:ZeroDivisionError if divisor is zero.
Raises:TypeError if input values are of wrong type.
See:__idiv__
__le__(b)[source]

This method defines ‘is equal or less’ operator between Angles.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Angle(72.0)
>>> b = Angle(72.0)
>>> a <= b
True
__lt__(b)[source]

This method defines the ‘is less than’ operator between Angles.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Angle(72.0)
>>> b = Angle(72.0)
>>> a < b
False
__mod__(b)[source]

This method is used to obtain the module b of this Angle.

Returns:A new Angle object.
Return type:Angle
Raises:TypeError if input values are of wrong type.
>>> a = Angle(333.0)
>>> b = Angle(72.0)
>>> print(a % b)
45.0
__mul__(b)[source]

This method defines the multiplication between Angles.

Returns:A new Angle object.
Return type:Angle
Raises:TypeError if input values are of wrong type.
>>> a = Angle(33.0)
>>> b = Angle(72.0)
>>> print(a * b)
216.0
__ne__(b)[source]

This method defines the ‘is not equal’ operator between Angles.

Note

For the comparison, the internal tolerance value is used.

Returns:A boolean.
Return type:bool
>>> a = Angle(11.200001)
>>> b = Angle(11.200000)
>>> a != b
True
__neg__()[source]

This method is used to obtain the negative version of this Angle.

Returns:A new Angle object.
Return type:Angle
>>> a = Angle(-11.2)
>>> print(-a)
11.2
__pow__(b)[source]

This method defines the power operation for Angles.

Returns:A new Angle object.
Return type:Angle
Raises:TypeError if input values are of wrong type.
>>> a = Angle(12.5)
>>> b = Angle(4.0)
>>> print(a ** b)
294.0625
__radd__(b)[source]

This method defines the addition between Angles by the right

Returns:A new Angle object.
Return type:Angle
>>> a = Angle(83.1)
>>> print(8.5 + a)
91.6
__rdiv__(b)[source]

This method defines division between Angles by the right.

Returns:A new Angle object.
Return type:Angle
Raises:ZeroDivisionError if divisor is zero.
Raises:TypeError if input values are of wrong type.
>>> a = Angle(80.0)
>>> print(350 / a)
4.375
__repr__()[source]

Method providing the ‘official’ string representation of the object. It provides a valid expression that could be used to recreate the object.

Returns:As string with a valid expression to recreate the object
Return type:string
>>> a = Angle(12.5)
>>> repr(a)
'Angle(12.5)'
__rmod__(b)[source]

This method defines module operation between Angles by the right.

Returns:A new Angle object.
Return type:Angle
>>> a = Angle(80.0)
>>> print(350 % a)
30.0
__rmul__(b)[source]

This method defines multiplication between Angles by the right.

Returns:A new Angle object.
Return type:Angle
Raises:TypeError if input values are of wrong type.
>>> a = Angle(11.0)
>>> print(250.0 * a)
230.0
__round__(n=0)[source]

This method returns an Angle with content rounded to ‘n’ decimal.

Returns:A new Angle object.
Return type:Angle
>>> a = Angle(11.4361)
>>> print(round(a, 2))
11.44
__rpow__(b)[source]

This method defines the power operation for Angles by the right.

Returns:A new Angle object.
Return type:Angle
Raises:TypeError if input values are of wrong type.
>>> a = Angle(5.0)
>>> print(24.0 ** a)
144.0
__rsub__(b)[source]

This method defines the subtraction between Angles by the right.

Returns:A new Angle object.
Return type:Angle
Raises:TypeError if input values are of wrong type.
>>> a = Angle(25.0)
>>> print(24.0 - a)
-1.0
__rtruediv__(b)[source]

This method defines division between Angle by the right (Python3).

Returns:A new Angle object.
Return type:Angle
Raises:ZeroDivisionError if divisor is zero.
Raises:TypeError if input values are of wrong type.
See:__rdiv__
__str__()[source]

Method used when trying to print the object.

Returns:Angle as string.
Return type:string
>>> a = Angle(12.5)
>>> print(a)
12.5
__sub__(b)[source]

This method defines the subtraction between Angles.

Returns:A new Angle object.
Return type:Angle
Raises:TypeError if input values are of wrong type.
>>> a = Angle(25.4)
>>> b = Angle(10.2)
>>> print(a - b)
15.2
__truediv__(b)[source]

This method defines the division between Angles (Python 3).

Returns:A new Angle object.
Return type:Angle
Raises:ZeroDivisionError if divisor is zero.
Raises:TypeError if input values are of wrong type.
See:__div__
__weakref__

list of weak references to the object (if defined)

static deg2dms(deg)[source]

Converts input from decimal to sexagesimal angle format.

Parameters:deg (int, float) – Degrees decimal format.
Returns:Angle in sexagesimal format, with ranges adjusted.
Return type:tuple

Note

The output format is (Degrees, Minutes, Seconds, sign)

>>> print(Angle.deg2dms(23.44694444))
(23, 26, 48.999983999997596, 1.0)
static dms2deg(degrees, minutes, seconds=0.0)[source]

Converts an angle from sexagesimal to decimal format.

Parameters:
Returns:

Angle in decimal format, within +/-[0:360) range.

Return type:

float

>>> print(Angle.dms2deg(-23, 26, 48.999983999997596))
-23.44694444
dms_str(fancy=True, n_dec=-1)[source]

Returns the Angle value as a sexagesimal string.

The parameter fancy allows to print in “Dd M’ S’’” format if True, and in “D:M:S” (easier to parse) if False. On the other hand, the n_dec parameter sets the number of decimals used to print the seconds. Set to a negative integer to disable (default).

Parameters:
  • fancy (int) – Format of output string. True by default.
  • n_dec – Number of decimals used to print the seconds
Returns:

Angle value as string in sexagesimal format.

Return type:

string

Raises:

TypeError if input value is of wrong type.

>>> a = Angle(42.75)
>>> print(a.dms_str())
42d 45' 0.0''
>>> print(a.dms_str(fancy=False))
42:45:0.0
>>> a = Angle(49, 13, 42.4817)
>>> print(a.dms_str(n_dec=2))
49d 13' 42.48''
dms_tuple()[source]

Returns the Angle as a tuple containing (degrees, minutes, seconds, sign).

Returns:Angle value as (degrees, minutes, seconds, sign).
Return type:tuple
get_ra()[source]

Returns the Angle value as a Right Ascension in float format

Returns:The internal value of the Angle object as Right Ascension.
Return type:int, float
>>> a = Angle(138.75)
>>> print(a.get_ra())
9.25
get_tolerance()[source]

Gets the internal tolerance value used to compare Angles.

Note

The default tolerance value is base.TOL.

Returns:Internal tolerance.
Return type:float
ra_str(fancy=True, n_dec=-1)[source]

Returns the Angle value as a sexagesimal string in Right Ascension.

The parameter fancy allows to print in “Hh M’ S’’” format if True, and in “H:M:S” (easier to parse) if False. On the other hand, the n_dec parameter sets the number of decimals used to print the seconds. Set to a negative integer to disable (default).

Parameters:
  • fancy (int) – Format of output string. True by default.
  • n_dec – Number of decimals used to print the seconds
Returns:

Angle value as Right Ascension in sexagesimal format.

Return type:

string

Raises:

TypeError if input value is of wrong type.

>>> a = Angle(138.75)
>>> print(a.ra_str())
9h 15' 0.0''
>>> print(a.ra_str(fancy=False))
9:15:0.0
>>> a = Angle(2, 44, 11.98581, ra=True)
>>> print(a.ra_str(n_dec=3))
2h 44' 11.986''
ra_tuple()[source]

Returns the Angle in Right Ascension format as a tuple containing (hours, minutes, seconds, sign).

Returns:Angle value as RA in (hours, minutes, seconds, sign) format.
Return type:tuple
rad()[source]

Returns the Angle value in radians.

Returns:Angle value in radians.
Return type:float
>>> a = Angle(47.762)
>>> print(round(a.rad(), 8))
0.83360416
static reduce_deg(deg)[source]

Takes a degree value in decimal format and converts it to a float value in the +/-[0:360) range.

Parameters:deg (int, float, Angle) – Input degree angle in decimal format.
Returns:Float value of the angle in the +/-[0:360) range.
Return type:float
>>> a = 386.3
>>> b = Angle.reduce_deg(a)
>>> print(round(b, 1))
26.3
static reduce_dms(degrees, minutes, seconds=0.0)[source]

Takes a degree value in sexagesimal format and converts it to a value in the +/-[0:360) range (degrees) and [0:60) range (minutes and seconds). It also takes care of fractional degrees and minutes.

Parameters:
Returns:

Angle in sexagesimal format, with ranges properly adjusted.

Return type:

tuple

>>> print(Angle.reduce_dms(-743.0, 26.0, 49.6))
(23, 26, 49.6, -1.0)
set(*args, **kwargs)[source]

Method used to define the value of the Angle object.

It takes decimals and sexagesimal input. The sexagesimal angles can be given as separate degree, minutes, seconds values, or as tuples or lists. It is also possible to provide another Angle object as input.

If radians=True is passed, then the input value is converted from radians to degrees

If ra=True is passed, then the input value is converted from Right Ascension to degrees

Parameters:
  • args (int, float, list, tuple, Angle) – Input angle, in decimal or sexagesimal format, or Angle
  • radians (bool) – If True, input angle is in radians. False by default.
  • ra (bool) – If True, input angle is in Right Ascension. False by default
Returns:

None.

Return type:

None

Raises:

TypeError if input values are of wrong type.

set_ra(*args)[source]

Define the value of the Angle object from a Right Ascension.

It takes decimals and sexagesimal input. The sexagesimal Right Ascensions can be given as separate hours, minutes, seconds values, or as tuples or lists.

Parameters:args (int, float, list, tuple) – Input Right Ascension, in decimal or sexagesimal format.
Returns:None.
Return type:None
Raises:TypeError if input values are of wrong type.
>>> a = Angle()
>>> a.set_ra(9, 14, 55.8)
>>> print(a)
138.7325
set_radians(rads)[source]

Method to define the value of the Angle object from radians.

Parameters:rads (int, float) – Input angle, in radians.
Returns:None.
Return type:None
Raises:TypeError if input value is of wrong type.
>>> a = Angle()
>>> a.set_radians(pi)
>>> print(a)
180.0
set_tolerance(tol)[source]

Changes the internal tolerance value used to compare Angles.

Parameters:tol (int, float) – New tolerance value.
Returns:None
Return type:None
to_positive()[source]

Converts the internal angle value from negative to positive.

Returns:This angle object.
Return type:Angle
>>> a = Angle(-87.32)
>>> print(a.to_positive())
272.68

Coordinates

Module holding functions to handle coordinates.

pymeeus.Coordinates.NUTATION_ARG_TABLE = [[0, 0, 0, 0, 1], [-2, 0, 0, 2, 2], [0, 0, 0, 2, 2], [0, 0, 0, 0, 2], [0, 1, 0, 0, 0], [0, 0, 1, 0, 0], [-2, 1, 0, 2, 2], [0, 0, 0, 2, 1], [0, 0, 1, 2, 2], [-2, -1, 0, 2, 2], [-2, 0, 1, 0, 0], [-2, 0, 0, 2, 1], [0, 0, -1, 2, 2], [2, 0, 0, 0, 0], [0, 0, 1, 0, 1], [2, 0, -1, 2, 2], [0, 0, -1, 0, 1], [0, 0, 1, 2, 1], [-2, 0, 2, 0, 0], [0, 0, -2, 2, 1], [2, 0, 0, 2, 2], [0, 0, 2, 2, 2], [0, 0, 2, 0, 0], [-2, 0, 1, 2, 2], [0, 0, 0, 2, 0], [-2, 0, 0, 2, 0], [0, 0, -1, 2, 1], [0, 2, 0, 0, 0], [2, 0, -1, 0, 1], [-2, 2, 0, 2, 2], [0, 1, 0, 0, 1], [-2, 0, 1, 0, 1], [0, -1, 0, 0, 1], [0, 0, 2, -2, 0], [2, 0, -1, 2, 1], [2, 0, 1, 2, 2], [0, 1, 0, 2, 2], [-2, 1, 1, 0, 0], [0, -1, 0, 2, 2], [2, 0, 0, 2, 1], [2, 0, 1, 0, 0], [-2, 0, 2, 2, 2], [-2, 0, 1, 2, 1], [2, 0, -2, 0, 1], [2, 0, 0, 0, 1], [0, -1, 1, 0, 0], [-2, -1, 0, 2, 1], [-2, 0, 0, 0, 1], [0, 0, 2, 2, 1], [-2, 0, 2, 0, 1], [-2, 1, 0, 2, 1], [0, 0, 1, -2, 0], [-1, 0, 1, 0, 0], [-2, 1, 0, 0, 0], [1, 0, 0, 0, 0], [0, 0, 1, 2, 0], [0, 0, -2, 2, 2], [-1, -1, 1, 0, 0], [0, 1, 1, 0, 0], [0, -1, 1, 2, 2], [2, -1, -1, 2, 2], [0, 0, 3, 2, 2], [2, -1, 0, 2, 2]]

This table contains the periodic terms for the argument of the nutation. In Meeus’ book this is Table 22.A and can be found in pages 145-146.

pymeeus.Coordinates.NUTATION_COSINE_COEF_TABLE = [[92025.0, 8.9], [5736.0, -3.1], [977.0, -0.5], [-895.0, 0.5], [54.0, -0.1], [-7.0, 0.0], [224.0, -0.6], [200.0, 0.0], [129.0, -0.1], [-95.0, 0.3], [0.0, 0.0], [-70.0, 0.0], [-53.0, 0.0], [0.0, 0.0], [-33.0, 0.0], [26.0, 0.0], [32.0, 0.0], [27.0, 0.0], [0.0, 0.0], [-24.0, 0.0], [16.0, 0.0], [13.0, 0.0], [0.0, 0.0], [-12.0, 0.0], [0.0, 0.0], [0.0, 0.0], [-10.0, 0.0], [0.0, 0.0], [-8.0, 0.0], [7.0, 0.0], [9.0, 0.0], [7.0, 0.0], [6.0, 0.0], [0.0, 0.0], [5.0, 0.0], [3.0, 0.0], [-3.0, 0.0], [0.0, 0.0], [3.0, 0.0], [3.0, 0.0], [0.0, 0.0], [-3.0, 0.0], [-3.0, 0.0], [3.0, 0.0], [3.0, 0.0], [0.0, 0.0], [3.0, 0.0], [3.0, 0.0], [3.0, 0.0]]

This table contains the periodic terms for the coefficients of the cosine of the argument of the nutation, and they are used to compute Delta epsilon. Units are in 0.0001’’. In Meeus’ book this is Table 22.A and can be found in pages 145-146.

pymeeus.Coordinates.NUTATION_SINE_COEF_TABLE = [[-171996.0, -174.2], [-13187.0, -1.6], [-2274.0, -0.2], [2062.0, 0.2], [1426.0, -3.4], [712.0, 0.1], [-517.0, 1.2], [-386.0, -0.4], [-301.0, 0.0], [217.0, -0.5], [-158.0, 0.0], [129.0, 0.1], [123.0, 0.0], [63.0, 0.0], [63.0, 0.1], [-59.0, 0.0], [-58.0, -0.1], [-51.0, 0.0], [48.0, 0.0], [46.0, 0.0], [-38.0, 0.0], [-31.0, 0.0], [29.0, 0.0], [29.0, 0.0], [26.0, 0.0], [-22.0, 0.0], [21.0, 0.0], [17.0, -0.1], [16.0, 0.0], [-16.0, 0.1], [-15.0, 0.0], [-13.0, 0.0], [-12.0, 0.0], [11.0, 0.0], [-10.0, 0.0], [-8.0, 0.0], [7.0, 0.0], [-7.0, 0.0], [-7.0, 0.0], [-7.0, 0.0], [6.0, 0.0], [6.0, 0.0], [6.0, 0.0], [-6.0, 0.0], [-6.0, 0.0], [5.0, 0.0], [-5.0, 0.0], [-5.0, 0.0], [-5.0, 0.0], [4.0, 0.0], [4.0, 0.0], [4.0, 0.0], [-4.0, 0.0], [-4.0, 0.0], [-4.0, 0.0], [3.0, 0.0], [-3.0, 0.0], [-3.0, 0.0], [-3.0, 0.0], [-3.0, 0.0], [-3.0, 0.0], [-3.0, 0.0], [-3.0, 0.0]]

This table contains the periodic terms for the coefficients of the sine of the argument of the nutation, and they are used to compute Delta psi. Units are in 0.0001’’. In Meeus’ book this is Table 22.A and can be found in pages 145-146.

pymeeus.Coordinates.angular_separation(alpha1, delta1, alpha2, delta2)[source]

This function computes the angular distance between two celestial bodies whose right ascensions and declinations are given.

Note

It is possible to use this formula with ecliptial (celestial) longitudes and latitudes instead of right ascensions and declinations, respectively.

Parameters:
  • alpha1 (Angle) – Right ascension of celestial body #1, as an Angle object
  • delta1 (Angle) – Declination of celestial body #1, as an Angle object
  • alpha2 (Angle) – Right ascension of celestial body #2, as an Angle object
  • delta2 (Angle) – Declination of celestial body #2, as an Angle object
Returns:

An Angle object with the angular separation between the given celestial objects

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> alpha1 = Angle(14, 15, 39.7, ra=True)
>>> delta1 = Angle(19, 10, 57.0)
>>> alpha2 = Angle(13, 25, 11.6, ra=True)
>>> delta2 = Angle(-11, 9, 41.0)
>>> sep_ang = angular_separation(alpha1, delta1, alpha2, delta2)
>>> print(round(sep_ang, 3))
32.793
pymeeus.Coordinates.apparent_position(epoch, alpha, delta, sun_lon)[source]

This function computes the apparent position of a star, correcting by nutation and aberration effects.

Parameters:
  • epoch (Epoch) – Epoch to compute the apparent position for
  • alpha (Angle) – Right ascension of the star, as an Angle object
  • delta (Angle) – Declination of the star, as an Angle object
  • sun_lon (Angle) – True (geometric) longitude of the Sun
Returns:

A tuple with two Angle objects: Apparent right ascension, and aparent declination

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2028, 11, 13.19)
>>> alpha = Angle(2, 46, 11.331, ra=True)
>>> delta = Angle(49, 20, 54.54)
>>> sun_lon = Angle(231.328)
>>> app_alpha, app_delta = apparent_position(epoch, alpha, delta, sun_lon)
>>> print(app_alpha.ra_str(n_dec=2))
2h 46' 14.39''
>>> print(app_delta.dms_str(n_dec=2))
49d 21' 7.45''
pymeeus.Coordinates.apparent_vsop_pos(epoch, vsop_l, vsop_b, vsop_r, nutation=True)[source]

This function computes the apparent position of a celestial body at a given epoch when its VSOP87 periodic term tables are provided. The small correction to convert to the FK5 system is always included.

Parameters:
  • epoch (Epoch) – Epoch to compute the position, given as an Epoch object
  • vsop_l (list) – Table of VSOP87 terms for the heliocentric longitude
  • vsop_b (list) – Table of VSOP87 terms for the heliocentric latitude
  • vsop_r (list) – Table of VSOP87 terms for the radius vector
  • nutation – Whether the nutation correction will be applied
Returns:

A tuple with the geometric heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

pymeeus.Coordinates.circle_diameter(alpha1, delta1, alpha2, delta2, alpha3, delta3)[source]

This function computes the diameter of the smallest circle that contains three celestial bodies.

Parameters:
  • alpha1 (Angle) – Right ascension, as an Angle object, of celestial body #1
  • delta1 (Angle) – Declination, as an Angle object, of celestial body #1
  • alpha2 (Angle) – Right ascension, as an Angle object, of celestial body #2
  • delta2 (Angle) – Declination, as an Angle object, of celestial body #2
  • alpha3 (Angle) – Right ascension, as an Angle object, of celestial body #3
  • delta3 (Angle) – Declination, as an Angle object, of celestial body #3
Returns:

The diameter (as an Angle object) of the smallest circle containing the three bodies.

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> alpha1 = Angle(12, 41,  8.63, ra=True)
>>> delta1 = Angle(-5, 37, 54.2)
>>> alpha2 = Angle(12, 52,  5.21, ra=True)
>>> delta2 = Angle(-4, 22, 26.2)
>>> alpha3 = Angle(12, 39, 28.11, ra=True)
>>> delta3 = Angle(-1, 50,  3.7)
>>> d = circle_diameter(alpha1, delta1, alpha2, delta2, alpha3, delta3)
>>> print(d.dms_str(n_dec=0))
4d 15' 49.0''
>>> alpha1 = Angle(9,  5, 41.44, ra=True)
>>> delta1 = Angle(18, 30, 30.0)
>>> alpha2 = Angle(9,  9, 29.0, ra=True)
>>> delta2 = Angle(17, 43, 56.7)
>>> alpha3 = Angle(8, 59, 47.14, ra=True)
>>> delta3 = Angle(17, 49, 36.8)
>>> d = circle_diameter(alpha1, delta1, alpha2, delta2, alpha3, delta3)
>>> print(d.dms_str(n_dec=0))
2d 18' 38.0''
pymeeus.Coordinates.diurnal_path_horizon(declination, geo_latitude)[source]

This function returns the angle of the diurnal path of a celestial body relative to the horizon at the time of its rising or setting.

Parameters:
  • declination (Angle) – Declination, as an Angle object
  • geo_latitude (Angle) – Geodetic latitude, as an Angle object
Returns:

Angle of the diurnal path of the celestial body relative to the horizon at the time of rising or setting, given as one Angle object

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> declination = Angle(23.44)
>>> latitude = Angle(40.0)
>>> path_angle = diurnal_path_horizon(declination, latitude)
>>> print(path_angle.dms_str(n_dec=1))
45d 31' 28.4''
pymeeus.Coordinates.ecliptic_equator(longitude, latitude, obliquity)[source]

This function returns the angle between the direction of the northern celestial pole and the direction of the north pole of the ecliptic, taking as reference the point whose ecliptic longitude and latitude are given.

Please note that if we make latitude=0, the result is the angle between the ecliptic (at the given ecliptical longitude) and the east-west direction on the celestial sphere.

Parameters:
  • longitude (Angle) – Ecliptical longitude, as an Angle object
  • latitude (Angle) – Ecliptical latitude, as an Angle object
  • obliquity (Angle) – Obliquity of the ecliptic, as an Angle object
Returns:

Angle between the direction of the northern celestial pole and the direction of the north pole of the ecliptic, given as one Angle object

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> lon = Angle(0.0)
>>> lat = Angle(0.0)
>>> eps = Angle(23.5)
>>> ang_ecl_equ = ecliptic_equator(lon, lat, eps)
>>> print(ang_ecl_equ.dms_str(n_dec=1))
156d 30' 0.0''
pymeeus.Coordinates.ecliptic_horizon(local_sidereal_time, geo_latitude, obliquity)[source]

This function returns the longitudes of the two points of the ecliptic which are on the horizon, as well as the angle between the ecliptic and the horizon.

Parameters:
  • local_sidereal_time (Angle) – Local sidereal time, as an Angle object
  • geo_latitude (Angle) – Geodetic latitude, as an Angle object
  • obliquity (Angle) – Obliquity of the ecliptic, as an Angle object
Returns:

Longitudes of the two points of the ecliptic which are on the horizon, and the angle between the ecliptic and the horizon (in that order), given as three Angle objects inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> sidereal_time = Angle(5.0, ra=True)
>>> lat = Angle(51.0)
>>> epsilon = Angle(23.44)
>>> lon1, lon2, i = ecliptic_horizon(sidereal_time, lat, epsilon)
>>> print(lon1.dms_str(n_dec=1))
169d 21' 29.9''
>>> print(lon2.dms_str(n_dec=1))
349d 21' 29.9''
>>> print(round(i, 0))
62.0
pymeeus.Coordinates.ecliptical2equatorial(longitude, latitude, obliquity)[source]

This function converts from ecliptical coordinates (longitude and latitude) to equatorial coordinated (right ascension and declination).

Parameters:
  • longitude (Angle) – Ecliptical longitude, as an Angle object
  • latitude (Angle) – Ecliptical latitude, as an Angle object
  • obliquity (Angle) – Obliquity of the ecliptic, as an Angle object
Returns:

Equatorial coordinates (right ascension, declination, in that order), given as two Angle objects inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> lon = Angle(113.21563)
>>> lat = Angle(6.68417)
>>> epsilon = Angle(23.4392911)
>>> ra, dec = ecliptical2equatorial(lon, lat, epsilon)
>>> print(ra.ra_str(n_dec=3))
7h 45' 18.946''
>>> print(dec.dms_str(n_dec=2))
28d 1' 34.26''
pymeeus.Coordinates.equatorial2ecliptical(right_ascension, declination, obliquity)[source]

This function converts from equatorial coordinated (right ascension and declination) to ecliptical coordinates (longitude and latitude).

Parameters:
  • right_ascension – Right ascension, as an Angle object
  • declination – Declination, as an Angle object
  • obliquity (Angle) – Obliquity of the ecliptic, as an Angle object
Returns:

Ecliptical coordinates (longitude, latitude, in that order), given as two Angle objects inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> ra = Angle(7, 45, 18.946, ra=True)
>>> dec = Angle(28, 1, 34.26)
>>> epsilon = Angle(23.4392911)
>>> lon, lat = equatorial2ecliptical(ra, dec, epsilon)
>>> print(round(lon(), 5))
113.21563
>>> print(round(lat(), 5))
6.68417
pymeeus.Coordinates.equatorial2galactic(right_ascension, declination)[source]

This function converts from equatorial coordinates (right ascension and declination) to galactic coordinates (longitude and latitude).

The current galactic system of coordinates was defined by the International Astronomical Union in 1959, using the standard equatorial system of epoch B1950.0.

Parameters:
  • right_ascension (Angle) – Right ascension, as an Angle object
  • declination (Angle) – Declination, as an Angle object
Returns:

Galactic coordinates (longitude and latitude, in that order), given as two Angle objects inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> ra = Angle(17, 48, 59.74, ra=True)
>>> dec = Angle(-14, 43, 8.2)
>>> lon, lat = equatorial2galactic(ra, dec)
>>> print(round(lon, 4))
12.9593
>>> print(round(lat, 4))
6.0463
pymeeus.Coordinates.equatorial2horizontal(hour_angle, declination, geo_latitude)[source]

This function converts from equatorial coordinates (right ascension and declination) to local horizontal coordinates (azimuth and elevation).

Following Meeus’ convention, the azimuth is measured westward from the SOUTH. If you want the azimuth to be measured from the north (common custom between navigators and meteorologits), you should add 180 degrees.

The hour angle (H) comprises information about the sidereal time, the observer’s geodetic longitude (positive west from Greenwich) and the right ascension. If theta is the local sidereal time, theta0 the sidereal time at Greenwich, lon the observer’s longitude and ra the right ascension, the following expressions hold:

H = theta - ra H = theta0 - lon - ra
Parameters:
  • hour_angle (Angle) – Hour angle, as an Angle object
  • declination (Angle) – Declination, as an Angle object
  • geo_latitude (Angle) – Geodetic latitude of the observer, as an Angle object
Returns:

Local horizontal coordinates (azimuth, elevation, in that order), given as two Angle objects inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> lon = Angle(77, 3, 56)
>>> lat = Angle(38, 55, 17)
>>> ra = Angle(23, 9, 16.641, ra=True)
>>> dec = Angle(-6, 43, 11.61)
>>> theta0 = Angle(8, 34, 57.0896, ra=True)
>>> eps = Angle(23, 26, 36.87)
>>> delta = Angle(0, 0, ((-3.868*cos(eps.rad()))/15.0), ra=True)
>>> theta0 += delta
>>> h = theta0 - lon - ra
>>> azi, ele = equatorial2horizontal(h, dec, lat)
>>> print(round(azi, 3))
68.034
>>> print(round(ele, 3))
15.125
pymeeus.Coordinates.galactic2equatorial(longitude, latitude)[source]

This function converts from galactic coordinates (longitude and latitude) to equatorial coordinates (right ascension and declination).

The current galactic system of coordinates was defined by the International Astronomical Union in 1959, using the standard equatorial system of epoch B1950.0.

Parameters:
  • longitude (Angle) – Longitude, as an Angle object
  • latitude (Angle) – Latitude, as an Angle object
Returns:

Equatorial coordinates (right ascension and declination, in that order), given as two Angle objects inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> lon = Angle(12.9593)
>>> lat = Angle(6.0463)
>>> ra, dec = galactic2equatorial(lon, lat)
>>> print(ra.ra_str(n_dec=1))
17h 48' 59.7''
>>> print(dec.dms_str(n_dec=0))
-14d 43' 8.0''
pymeeus.Coordinates.geometric_vsop_pos(epoch, vsop_l, vsop_b, vsop_r, tofk5=True)[source]

This function computes the geometric position of a celestial body at a given epoch when its VSOP87 periodic term tables are provided. The small correction to convert to the FK5 system may or not be included.

Parameters:
  • epoch (Epoch) – Epoch to compute the position, given as an Epoch object
  • vsop_l (list) – Table of VSOP87 terms for the heliocentric longitude
  • vsop_b (list) – Table of VSOP87 terms for the heliocentric latitude
  • vsop_r (list) – Table of VSOP87 terms for the radius vector
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied
Returns:

A tuple with the geometric heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

pymeeus.Coordinates.horizontal2equatorial(azimuth, elevation, geo_latitude)[source]

This function converts from local horizontal coordinates (azimuth and elevation) to equatorial coordinates (right ascension and declination).

Following Meeus’ convention, the azimuth is measured westward from the SOUTH.

This function returns the hour angle and the declination. The hour angle (H) comprises information about the sidereal time, the observer’s geodetic longitude (positive west from Greenwich) and the right ascension. If theta is the local sidereal time, theta0 the sidereal time at Greenwich, lon the observer’s longitude and ra the right ascension, the following expressions hold:

H = theta - ra H = theta0 - lon - ra
Parameters:
  • azimuth (Angle) – Azimuth, measured westward from south, as an Angle object
  • elevation (Angle) – Elevation from the horizon, as an Angle object
  • geo_latitude (Angle) – Geodetic latitude of the observer, as an Angle object
Returns:

Equatorial coordinates (as hour angle and declination, in that order), given as two Angle objects inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> azi = Angle(68.0337)
>>> ele = Angle(15.1249)
>>> lat = Angle(38, 55, 17)
>>> h, dec = horizontal2equatorial(azi, ele, lat)
>>> print(round(h, 4))
64.3521
>>> print(dec.dms_str(n_dec=0))
-6d 43' 12.0''
pymeeus.Coordinates.illuminated_fraction(sun_dist, earth_dist, sun_earth_dist)[source]

This function computes the illuminated fraction of the disk of a planet, as seen from the Earth.

Parameters:
  • sun_dist (float) – Planet’s distance to the Sun, in Astronomical Units
  • earth_dist (float) – Distance from planet to Earth, in Astronomical Units
  • sun_earth_dist (float) – Distance Sun-Earth, in Astronomical Units
Returns:

The illuminated fraction of the disc of a planet

Return type:

float

Raises:

TypeError if input values are of wrong type.

>>> sun_dist = 0.724604
>>> earth_dist = 0.910947
>>> sun_earth_dist = 0.983824
>>> k = illuminated_fraction(sun_dist, earth_dist, sun_earth_dist)
>>> print(round(k, 3))
0.647
pymeeus.Coordinates.kepler_equation(eccentricity, mean_anomaly)[source]

This function computes the eccentric and true anomalies taking as input the mean anomaly and the eccentricity.

Parameters:
  • eccentricity (int, float) – Orbit’s eccentricity
  • mean_anomaly (Angle) – Mean anomaly, as an Angle object
Returns:

A tuple with two Angle objects: Eccentric and true anomalies

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> eccentricity = 0.1
>>> mean_anomaly = Angle(5.0)
>>> e, v = kepler_equation(eccentricity, mean_anomaly)
>>> print(round(e(), 6))
5.554589
>>> print(round(v(), 6))
6.139762
>>> eccentricity = 0.99
>>> mean_anomaly = Angle(2.0)
>>> e, v = kepler_equation(eccentricity, mean_anomaly)
>>> print(round(e(), 6))
32.361007
>>> print(round(v(), 6))
152.542134
>>> eccentricity = 0.99
>>> mean_anomaly = Angle(5.0)
>>> e, v = kepler_equation(eccentricity, mean_anomaly)
>>> print(round(e(), 6))
45.361023
>>> print(round(v(), 6))
160.745616
>>> eccentricity = 0.99
>>> mean_anomaly = Angle(1.0)
>>> e, v = kepler_equation(eccentricity, mean_anomaly)
>>> print(round(e(), 6))
24.725822
>>> print(round(v(), 6))
144.155952
>>> e, v = kepler_equation(0.999, Angle(7.0))
>>> print(round(e(), 7))
52.2702615
>>> print(round(v(), 6))
174.780018
>>> e, v = kepler_equation(0.99, Angle(0.2, radians=True))
>>> print(round(e(), 8))
61.13444578
>>> print(round(v(), 6))
166.311977
pymeeus.Coordinates.length_orbit(e, a)[source]

This function computes the length of an elliptic orbit given its eccentricity and semimajor axis.

Parameters:
  • e (float) – Orbital eccentricity
  • a (float) – Semimajor axis of the orbit, in Astronomical Units
Returns:

Length of the orbit in Astronomical Units

Return type:

float

Raises:

TypeError if input values are of wrong type.

>>> a = 17.9400782
>>> e = 0.96727426
>>> length = length_orbit(e, a)
>>> print(round(length, 2))
77.06
pymeeus.Coordinates.mean_obliquity(*args, **kwargs)[source]

This function computes the mean obliquity (epsilon0) at the provided date.

This function internally uses an Epoch object, and the utc argument then controls the way the UTC->TT conversion is handled for that object. If leap_seconds argument is set to a value different than zero, then that value will be used for the UTC->TAI conversion, and the internal leap seconds table will be bypassed.

Parameters:
  • args (int, float, Epoch, datetime, date, tuple, list) – Either Epoch, date, datetime or year, month, day values, by themselves or inside a tuple or list
  • utc (bool) – Whether the provided epoch is a civil time (UTC) or TT
  • leap_seconds (int, float) – This is the value to be used in the UTC->TAI conversion, instead of taking it from internal leap seconds table.
Returns:

The mean obliquity of the ecliptic, as an Angle

Return type:

Angle

Raises:

ValueError if input values are in the wrong range.

Raises:

TypeError if input values are of wrong type.

>>> e0 = mean_obliquity(1987, 4, 10)
>>> a = e0.dms_tuple()
>>> a[0]
23
>>> a[1]
26
>>> round(a[2], 3)
27.407
pymeeus.Coordinates.minimum_angular_separation(alpha1_1, delta1_1, alpha1_2, delta1_2, alpha1_3, delta1_3, alpha2_1, delta2_1, alpha2_2, delta2_2, alpha2_3, delta2_3)[source]

Given the positions at three different instants of times (equidistant) of two celestial objects, this function computes the minimum angular distance that will be achieved within that interval of time.

Note

Suffix ‘1 _’ is for the first celestial object, and ‘2 _’ is for the second one.

Note

This function provides as output the ‘n’ fraction of time when the minimum angular separation is achieved. For that, the epoch in the middle is assigned the value “n = 0”. Therefore, n < 0 is for times before the middle epoch, and n > 0 is for times after the middle epoch.

Parameters:
  • alpha1_1 (Angle) – First right ascension of celestial body #1, as an Angle object
  • delta1_1 (Angle) – First declination of celestial body #1, as an Angle object
  • alpha1_2 (Angle) – Second right ascension of celestial body #1, as an Angle object
  • delta1_2 (Angle) – Second declination of celestial body #1, as Angle object
  • alpha1_3 (Angle) – Third right ascension of celestial body #1, as an Angle object
  • delta1_3 (Angle) – Third declination of celestial body #1, as an Angle object
  • alpha2_1 (Angle) – First right ascension of celestial body #2, as an Angle object
  • delta2_1 (Angle) – First declination of celestial body #2, as an Angle object
  • alpha2_2 (Angle) – Second right ascension of celestial body #2, as an Angle object
  • delta2_2 (Angle) – Second declination of celestial body #2, as Angle object
  • alpha2_3 (Angle) – Third right ascension of celestial body #2, as an Angle object
  • delta2_3 (Angle) – Third declination of celestial body #2, as an Angle object
Returns:

A tuple with two components: The first component is a float containing the ‘n’ fraction of time when the minimum angular separation is achieved. The second component is an Angle object containing the minimum angular separation between the given celestial objects

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> alpha1_1 = Angle(10, 29, 44.27, ra=True)
>>> delta1_1 = Angle(11, 2, 5.9)
>>> alpha2_1 = Angle(10, 33, 29.64, ra=True)
>>> delta2_1 = Angle(10, 40, 13.2)
>>> alpha1_2 = Angle(10, 36, 19.63, ra=True)
>>> delta1_2 = Angle(10, 29, 51.7)
>>> alpha2_2 = Angle(10, 33, 57.97, ra=True)
>>> delta2_2 = Angle(10, 37, 33.4)
>>> alpha1_3 = Angle(10, 43, 1.75, ra=True)
>>> delta1_3 = Angle(9, 55, 16.7)
>>> alpha2_3 = Angle(10, 34, 26.22, ra=True)
>>> delta2_3 = Angle(10, 34, 53.9)
>>> a = minimum_angular_separation(alpha1_1, delta1_1, alpha1_2, delta1_2,                                       alpha1_3, delta1_3, alpha2_1, delta2_1,                                       alpha2_2, delta2_2, alpha2_3, delta2_3)
>>> print(round(a[0], 6))
-0.370726
>>> print(a[1].dms_str(n_dec=0))
3' 44.0''
pymeeus.Coordinates.motion_in_space(start_ra, start_dec, distance, velocity, p_motion_ra, p_motion_dec, time)[source]

This function computes the star’s true motion through space relative to the Sun, allowing to compute the start proper motion at a given time.

Parameters:
  • start_ra (Angle) – Initial right ascension
  • start_dec (Angle) – Initial declination
  • distance (float) – Star’s distance to the Sun, in parsecs. If distance is given in light-years, multipy it by 0.3066. If the star’s parallax pie (in arcseconds) is given, use (1.0/pie).
  • velocity (float) – Radial velocity in km/s
  • p_motion_ra (Angle) – Proper motion in right ascension, in degrees per year.
  • p_motion_dec (Angle) – Proper motion in declination, in degrees per year.
  • time (float) – Number of years since starting epoch, positive in the future, negative in the past
Returns:

Equatorial coordinates (right ascension, declination, in that order) corresponding to the final epoch, given as two objects Angle inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> ra = Angle(6, 45, 8.871, ra=True)
>>> dec = Angle(-16.716108)
>>> pm_ra = Angle(0, 0, -0.03847, ra=True)
>>> pm_dec = Angle(0, 0, -1.2053)
>>> dist = 2.64
>>> vel = -7.6
>>> alpha, delta = motion_in_space(ra, dec, dist, vel, pm_ra, pm_dec,
...                                -1000.0)
>>> print(alpha.ra_str(False, 2))
6:45:47.16
>>> print(delta.dms_str(False, 1))
-16:22:56.0
>>> alpha, delta = motion_in_space(ra, dec, dist, vel, pm_ra, pm_dec,
...                                -4000.0)
>>> print(alpha.ra_str(False, 2))
6:47:39.91
>>> print(delta.dms_str(False, 1))
-15:23:30.6
pymeeus.Coordinates.nutation_longitude(*args, **kwargs)[source]

This function computes the nutation in longitude (Delta psi) at the provided date.

This function internally uses an Epoch object, and the utc argument then controls the way the UTC->TT conversion is handled for that object. If leap_seconds argument is set to a value different than zero, then that value will be used for the UTC->TAI conversion, and the internal leap seconds table will be bypassed.

Parameters:
  • args (int, float, Epoch, datetime, date, tuple, list) – Either Epoch, date, datetime or year, month, day values, by themselves or inside a tuple or list
  • utc (bool) – Whether the provided epoch is a civil time (UTC) or TT
  • leap_seconds (int, float) – This is the value to be used in the UTC->TAI conversion, instead of taking it from internal leap seconds table.
Returns:

The nutation in longitude (Delta psi), as an Angle

Return type:

Angle

Raises:

ValueError if input values are in the wrong range.

Raises:

TypeError if input values are of wrong type.

>>> dpsi = nutation_longitude(1987, 4, 10)
>>> a = dpsi.dms_tuple()
>>> a[0]
0
>>> a[1]
0
>>> round(a[2], 3)
3.788
>>> a[3]
-1.0
pymeeus.Coordinates.nutation_obliquity(*args, **kwargs)[source]

This function computes the nutation in obliquity (Delta epsilon) at the provided date.

This function internally uses an Epoch object, and the utc argument then controls the way the UTC->TT conversion is handled for that object. If leap_seconds argument is set to a value different than zero, then that value will be used for the UTC->TAI conversion, and the internal leap seconds table will be bypassed.

Parameters:
  • args (int, float, Epoch, datetime, date, tuple, list) – Either Epoch, date, datetime or year, month, day values, by themselves or inside a tuple or list
  • utc (bool) – Whether the provided epoch is a civil time (UTC) or TT
  • leap_seconds (int, float) – This is the value to be used in the UTC->TAI conversion, instead of taking it from internal leap seconds table.
Returns:

The nutation in obliquity (Delta epsilon), as an Angle

Return type:

Angle

Raises:

ValueError if input values are in the wrong range.

Raises:

TypeError if input values are of wrong type.

>>> depsilon = nutation_obliquity(1987, 4, 10)
>>> a = depsilon.dms_tuple()
>>> a[0]
0
>>> a[1]
0
>>> round(a[2], 3)
9.443
>>> a[3]
1.0
pymeeus.Coordinates.orbital_elements(epoch, parameters1, parameters2)[source]

This function computes the orbital elements for a given epoch, according to the parameters beeing passed as arguments.

Parameters:
  • epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
  • parameters1 (list) – First set of parameters
  • parameters2 (list) – Second set of parameters
Returns:

A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

pymeeus.Coordinates.orbital_equinox2equinox(epoch0, epoch, i0, arg0, lon0)[source]

This function reduces the orbital elements of a celestial object from one equinox to another.

Parameters:
  • epoch0 (Epoch) – Initial epoch
  • epoch (Epoch) – Final epoch
  • i0 (Angle) – Initial inclination, as an Angle object
  • arg0 (Angle) – Initial argument of perihelion, as an Angle object
  • lon0 (Angle) – Initial longitude of ascending node, as an Angle object
Returns:

A tuple with three Angle objects: Final inclination, argument of perihelion and longitude of ascending node, in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch0 = Epoch(2358042.5305)
>>> epoch = Epoch(2433282.4235)
>>> i0 = Angle(47.122)
>>> arg0 = Angle(151.4486)
>>> lon0 = Angle(45.7481)
>>> i1, arg1, lon1 = orbital_equinox2equinox(epoch0, epoch, i0, arg0, lon0)
>>> print(round(i1(), 3))
47.138
>>> print(round(arg1(), 4))
151.4782
>>> print(round(lon1(), 4))
48.6037
pymeeus.Coordinates.p_motion_equa2eclip(p_motion_ra, p_motion_dec, ra, dec, lat, epsilon)[source]

It is usual that proper motions are given in equatorial coordinates, not in ecliptical ones. Therefore, this function converts the provided proper motions in equatorial coordinates to the corresponding ones in ecliptical coordinates.

Parameters:
  • p_motion_ra (Angle) – Proper motion in right ascension, in degrees per year, as an Angle object
  • p_motion_dec (Angle) – Proper motion in declination, in degrees per year, as an Angle object
  • ra (Angle) – Right ascension of the astronomical object, as degrees in an Angle object
  • dec (Angle) – Declination of the astronomical object, as degrees in an Angle object
  • lat (Angle) – Ecliptical latitude of the astronomical object, as degrees in an Angle object
  • epsilon (Angle) – Obliquity of the ecliptic
Returns:

Proper motions in ecliptical longitude and latitude (in that order), given as two Angle objects inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

pymeeus.Coordinates.parallactic_angle(hour_angle, declination, geo_latitude)[source]

This function computes the parallactic angle, an apparent rotation that appears because celestial bodies move along parallel circles. By convention, the parallactic angle is negative before the passage through the southern meridian (in the north hemisphere), and positive afterwards. Exactly on the meridian, its value is zero.

Please note that when the celestial body is exactly at the zenith, the parallactic angle is not defined, and this function will return ‘None’.

The hour angle (H) comprises information about the sidereal time, the observer’s geodetic longitude (positive west from Greenwich) and the right ascension. If theta is the local sidereal time, theta0 the sidereal time at Greenwich, lon the observer’s longitude and ra the right ascension, the following expressions hold:

H = theta - ra H = theta0 - lon - ra
Parameters:
  • hour_angle (Angle) – Hour angle, as an Angle object
  • declination (Angle) – Declination, as an Angle object
  • geo_latitude (Angle) – Geodetic latitude of the observer, as an Angle object
Returns:

Parallactic angle as an py:class:Angle object

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> hour_angle = Angle(0.0)
>>> declination = Angle(45.0)
>>> latitude = Angle(50.0)
>>> q = parallactic_angle(hour_angle, declination, latitude)
>>> print(q.dms_str(n_dec=1))
0d 0' 0.0''
pymeeus.Coordinates.passage_nodes_elliptic(omega, e, a, t, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of a given celestial object with an elliptic orbit.

Parameters:
  • omega (Angle) – Argument of the perihelion
  • e (float) – Orbital eccentricity
  • a (float) – Semimajor axis of the orbit, in Astronomical Units
  • t (Epoch) – Time of perihelion passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> omega = Angle(111.84644)
>>> e = 0.96727426
>>> a = 17.9400782
>>> t = Epoch(1986, 2, 9.45891)
>>> time, r = passage_nodes_elliptic(omega, e, a, t)
>>> year, month, day = time.get_date()
>>> print(year)
1985
>>> print(month)
11
>>> print(round(day, 2))
9.16
>>> print(round(r, 4))
1.8045
>>> time, r = passage_nodes_elliptic(omega, e, a, t, ascending=False)
>>> year, month, day = time.get_date()
>>> print(year)
1986
>>> print(month)
3
>>> print(round(day, 2))
10.37
>>> print(round(r, 4))
0.8493
pymeeus.Coordinates.passage_nodes_parabolic(omega, q, t, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of a given celestial object with a parabolic orbit.

Parameters:
  • omega (Angle) – Argument of the perihelion
  • q (float) – Perihelion distance, in Astronomical Units
  • t (Epoch) – Time of perihelion passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> omega = Angle(154.9103)
>>> q = 1.324502
>>> t = Epoch(1989, 8, 20.291)
>>> time, r = passage_nodes_parabolic(omega, q, t)
>>> year, month, day = time.get_date()
>>> print(year)
1977
>>> print(month)
9
>>> print(round(day, 2))
17.64
>>> print(round(r, 4))
28.0749
>>> time, r = passage_nodes_parabolic(omega, q, t, ascending=False)
>>> year, month, day = time.get_date()
>>> print(year)
1989
>>> print(month)
9
>>> print(round(day, 3))
17.636
>>> print(round(r, 4))
1.3901
pymeeus.Coordinates.phase_angle(sun_dist, earth_dist, sun_earth_dist)[source]

This function computes the phase angle, i.e., the angle Sun-planet-Earth from the corresponding distances.

Parameters:
  • sun_dist (float) – Planet’s distance to the Sun, in Astronomical Units
  • earth_dist (float) – Distance from planet to Earth, in Astronomical Units
  • sun_earth_dist (float) – Distance Sun-Earth, in Astronomical Units
Returns:

The phase angle, as an Angle object

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> sun_dist = 0.724604
>>> earth_dist = 0.910947
>>> sun_earth_dist = 0.983824
>>> angle = phase_angle(sun_dist, earth_dist, sun_earth_dist)
>>> print(round(angle, 2))
72.96
pymeeus.Coordinates.planet_star_conjunction(alpha_list, delta_list, alpha_star, delta_star)[source]

Given the positions of one planet passing near a star, this function computes the time of conjunction in right ascension, and the difference in declination of the two bodies at that time.

Note

This function provides as output the ‘n’ fraction of time when the minimum angular separation is achieved. For that, the epoch in the middle is assigned the value “n = 0”. Therefore, n < 0 is for times before the middle epoch, and n > 0 is for times after the middle epoch.

Note

When the entries in the input values for the planet are more than three and pair, the last entry is discarted and an odd number of entries will be used.

Parameters:
  • alpha_list (list, tuple of Angle) – List (or tuple) containing the right ascensions (as Angle objects) for the planet (minimum 3 entries)
  • delta_list (list, tuple of Angle) – List (or tuple) containing the declinations (as Angle objects) for the planet (minimum 3 entries)
  • alpha_star (Angle) – Right ascension, as an Angle object, of the star
  • delta_star (Angle) – Declination, as an Angle object, of the star
Returns:

A tuple with two components: The first component is a float containing the ‘n’ fraction of time when the conjunction occurs. The second component is an Angle object containing the declination separation between the given objects at conjunction epoch

Return type:

tuple

Raises:

ValueError if input values for planet have less than three entries or they don’t have the same number of entries.

Raises:

TypeError if input values are of wrong type.

>>> alpha_1 = Angle(15,  3, 51.937, ra=True)
>>> delta_1 = Angle(-8, 57, 34.51)
>>> alpha_2 = Angle(15,  9, 57.327, ra=True)
>>> delta_2 = Angle(-9,  9,  3.88)
>>> alpha_3 = Angle(15, 15, 37.898, ra=True)
>>> delta_3 = Angle(-9, 17, 37.94)
>>> alpha_4 = Angle(15, 20, 50.632, ra=True)
>>> delta_4 = Angle(-9, 23, 16.25)
>>> alpha_5 = Angle(15, 25, 32.695, ra=True)
>>> delta_5 = Angle(-9, 26,  1.01)
>>> alpha_star = Angle(15, 17, 0.446, ra=True)
>>> delta_star = Angle(-9, 22, 58.47)
>>> alpha_list = [alpha_1, alpha_2, alpha_3, alpha_4, alpha_5]
>>> delta_list = [delta_1, delta_2, delta_3, delta_4, delta_5]
>>> pc = planet_star_conjunction(alpha_list, delta_list,                                      alpha_star, delta_star)
>>> print(round(pc[0], 4))
0.2551
>>> print(pc[1].dms_str(n_dec=0))
3' 38.0''
pymeeus.Coordinates.planet_stars_in_line(alpha_list, delta_list, alpha_star1, delta_star1, alpha_star2, delta_star2)[source]

Given the positions of one planet, this function computes the time when it is in a straight line with two other stars.

Note

This function provides as output the ‘n’ fraction of time when the minimum angular separation is achieved. For that, the epoch in the middle is assigned the value “n = 0”. Therefore, n < 0 is for times before the middle epoch, and n > 0 is for times after the middle epoch.

Note

When the entries in the input values for the planet are more than three and pair, the last entry is discarted and an odd number of entries will be used.

Parameters:
  • alpha_list (list, tuple of Angle) – List (or tuple) containing the right ascensions (as Angle objects) for the planet (minimum 3 entries)
  • delta_list (list, tuple of Angle) – List (or tuple) containing the declinations (as Angle objects) for the planet (minimum 3 entries)
  • alpha_star1 (Angle) – Right ascension, as an Angle object, of star #1
  • delta_star1 (Angle) – Declination, as an Angle object, of star #1
  • alpha_star2 (Angle) – Right ascension, as an Angle object, of star #2
  • delta_star2 (Angle) – Declination, as an Angle object, of star #2
Returns:

A float containing the ‘n’ fraction of time when the alignment occurs.

Return type:

float

Raises:

ValueError if input values for planet have less than three entries or they don’t have the same number of entries.

Raises:

TypeError if input values are of wrong type.

>>> alpha_1 = Angle( 7, 55, 55.36, ra=True)
>>> delta_1 = Angle(21, 41,  3.0)
>>> alpha_2 = Angle( 7, 58, 22.55, ra=True)
>>> delta_2 = Angle(21, 35, 23.4)
>>> alpha_3 = Angle( 8,  0, 48.99, ra=True)
>>> delta_3 = Angle(21, 29, 38.2)
>>> alpha_4 = Angle( 8,  3, 14.66, ra=True)
>>> delta_4 = Angle(21, 23, 47.5)
>>> alpha_5 = Angle( 8,  5, 39.54, ra=True)
>>> delta_5 = Angle(21, 17, 51.4)
>>> alpha_star1 = Angle( 7, 34, 16.40, ra=True)
>>> delta_star1 = Angle(31, 53, 51.2)
>>> alpha_star2 = Angle( 7, 45,  0.10, ra=True)
>>> delta_star2 = Angle(28,  2, 12.5)
>>> alpha_list = [alpha_1, alpha_2, alpha_3, alpha_4, alpha_5]
>>> delta_list = [delta_1, delta_2, delta_3, delta_4, delta_5]
>>> n = planet_stars_in_line(alpha_list, delta_list, alpha_star1,                                  delta_star1, alpha_star2, delta_star2)
>>> print(round(n, 4))
0.2233
pymeeus.Coordinates.planetary_conjunction(alpha1_list, delta1_list, alpha2_list, delta2_list)[source]

Given the positions of two planets passing near each other, this function computes the time of conjunction in right ascension, and the difference in declination of the two bodies at that time.

Note

This function provides as output the ‘n’ fraction of time when the minimum angular separation is achieved. For that, the epoch in the middle is assigned the value “n = 0”. Therefore, n < 0 is for times before the middle epoch, and n > 0 is for times after the middle epoch.

Note

When the entries in the input values are more than three and even, the last entry is discarted and an odd number of entries will be used.

Parameters:
  • alpha1_list (list, tuple of Angle) – List (or tuple) containing the right ascensions (as Angle objects) for object #1 (minimum 3 entries)
  • delta1_list (list, tuple of Angle) – List (or tuple) containing the declinations (as Angle objects) for object #1 (minimum 3 entries)
  • alpha2_list (list, tuple of Angle) – List (or tuple) containing the right ascensions (as Angle objects) for object #2 (minimum 3 entries)
  • delta2_list (list, tuple of Angle) – List (or tuple) containing the declinations (as Angle objects) for object #2 (minimum 3 entries)
Returns:

A tuple with two components: The first component is a float containing the ‘n’ fraction of time when the conjunction occurs. The second component is an Angle object containing the declination separation between the given objects at conjunction epoch

Return type:

tuple

Raises:

ValueError if input values have less than three entries or they don’t have the same number of entries.

Raises:

TypeError if input values are of wrong type.

>>> alpha1_1 = Angle(10, 24, 30.125, ra=True)
>>> delta1_1 = Angle( 6, 26, 32.05)
>>> alpha1_2 = Angle(10, 25,  0.342, ra=True)
>>> delta1_2 = Angle( 6, 10, 57.72)
>>> alpha1_3 = Angle(10, 25, 12.515, ra=True)
>>> delta1_3 = Angle( 5, 57, 33.08)
>>> alpha1_4 = Angle(10, 25,  6.235, ra=True)
>>> delta1_4 = Angle( 5, 46, 27.07)
>>> alpha1_5 = Angle(10, 24, 41.185, ra=True)
>>> delta1_5 = Angle( 5, 37, 48.45)
>>> alpha2_1 = Angle(10, 27, 27.175, ra=True)
>>> delta2_1 = Angle( 4,  4, 41.83)
>>> alpha2_2 = Angle(10, 26, 32.410, ra=True)
>>> delta2_2 = Angle( 3, 55, 54.66)
>>> alpha2_3 = Angle(10, 25, 29.042, ra=True)
>>> delta2_3 = Angle( 3, 48,  3.51)
>>> alpha2_4 = Angle(10, 24, 17.191, ra=True)
>>> delta2_4 = Angle( 3, 41, 10.25)
>>> alpha2_5 = Angle(10, 22, 57.024, ra=True)
>>> delta2_5 = Angle( 3, 35, 16.61)
>>> alpha1_list = [alpha1_1, alpha1_2, alpha1_3, alpha1_4, alpha1_5]
>>> delta1_list = [delta1_1, delta1_2, delta1_3, delta1_4, delta1_5]
>>> alpha2_list = [alpha2_1, alpha2_2, alpha2_3, alpha2_4, alpha2_5]
>>> delta2_list = [delta2_1, delta2_2, delta2_3, delta2_4, delta2_5]
>>> pc = planetary_conjunction(alpha1_list, delta1_list,                                    alpha2_list, delta2_list)
>>> print(round(pc[0], 5))
0.23797
>>> print(pc[1].dms_str(n_dec=1))
2d 8' 21.8''
pymeeus.Coordinates.precession_ecliptical(start_epoch, final_epoch, start_lon, start_lat, p_motion_lon=0.0, p_motion_lat=0.0)[source]

This function converts the ecliptical coordinates (longitude and latitude) given for an epoch and a equinox, to the corresponding values for another epoch and equinox. Only the mean positions, i.e. the effects of precession and proper motion, are considered here.

Parameters:
  • start_epoch (Epoch) – Initial epoch when initial coordinates are given
  • final_epoch (Epoch) – Final epoch for when coordinates are going to be computed
  • start_lon (Angle) – Initial longitude
  • start_lat (Angle) – Initial latitude
  • p_motion_lon (Angle) – Proper motion in longitude, in degrees per year. Zero by default.
  • p_motion_lat (Angle) – Proper motion in latitude, in degrees per year. Zero by default.
Returns:

Ecliptical coordinates (longitude, latitude, in that order) corresponding to the final epoch, given as two Angle objects inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> start_epoch = JDE2000
>>> final_epoch = Epoch(-214, 6, 30.0)
>>> lon0 = Angle(149.48194)
>>> lat0 = Angle(1.76549)
>>> lon, lat = precession_ecliptical(start_epoch, final_epoch, lon0, lat0)
>>> print(round(lon(), 3))
118.704
>>> print(round(lat(), 3))
1.615
pymeeus.Coordinates.precession_equatorial(start_epoch, final_epoch, start_ra, start_dec, p_motion_ra=0.0, p_motion_dec=0.0)[source]

This function converts the equatorial coordinates (right ascension and declination) given for an epoch and a equinox, to the corresponding values for another epoch and equinox. Only the mean positions, i.e. the effects of precession and proper motion, are considered here.

Parameters:
  • start_epoch (Epoch) – Initial epoch when initial coordinates are given
  • final_epoch (Epoch) – Final epoch for when coordinates are going to be computed
  • start_ra (Angle) – Initial right ascension
  • start_dec (Angle) – Initial declination
  • p_motion_ra (Angle) – Proper motion in right ascension, in degrees per year. Zero by default.
  • p_motion_dec (Angle) – Proper motion in declination, in degrees per year. Zero by default.
Returns:

Equatorial coordinates (right ascension, declination, in that order) corresponding to the final epoch, given as two objects Angle inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> start_epoch = JDE2000
>>> final_epoch = Epoch(2028, 11, 13.19)
>>> alpha0 = Angle(2, 44, 11.986, ra=True)
>>> delta0 = Angle(49, 13, 42.48)
>>> pm_ra = Angle(0, 0, 0.03425, ra=True)
>>> pm_dec = Angle(0, 0, -0.0895)
>>> alpha, delta = precession_equatorial(start_epoch, final_epoch, alpha0,
...                                      delta0, pm_ra, pm_dec)
>>> print(alpha.ra_str(False, 3))
2:46:11.331
>>> print(delta.dms_str(False, 2))
49:20:54.54
pymeeus.Coordinates.precession_newcomb(start_epoch, final_epoch, start_ra, start_dec, p_motion_ra=0.0, p_motion_dec=0.0)[source]

This function implements the Newcomb precessional equations used in the old FK4 system. It takes equatorial coordinates (right ascension and declination) given for an epoch and a equinox, and converts them to the corresponding values for another epoch and equinox. Only the mean positions, i.e. the effects of precession and proper motion, are considered here.

Parameters:
  • start_epoch (Epoch) – Initial epoch when initial coordinates are given
  • final_epoch (Epoch) – Final epoch for when coordinates are going to be computed
  • start_ra (Angle) – Initial right ascension
  • start_dec (Angle) – Initial declination
  • p_motion_ra (Angle) – Proper motion in right ascension, in degrees per year. Zero by default.
  • p_motion_dec (Angle) – Proper motion in declination, in degrees per year. Zero by default.
Returns:

Equatorial coordinates (right ascension, declination, in that order) corresponding to the final epoch, given as two objects Angle inside a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

pymeeus.Coordinates.refraction_apparent2true(apparent_elevation, pressure=1010.0, temperature=10.0)[source]

This function computes the atmospheric refraction converting from the apparent elevation (i.e., the observed elevation through the air) to the true, ‘airless’, elevation.

Note

This function, by default, assumes that the atmospheric pressure is 1010 milibars, and the air temperature is 10 Celsius.

Note

Due to the numerous factors that may affect the atmospheric refraction, especially near the horizon, the values given by this function are approximate values.

Parameters:
  • apparent_elevation (Angle) – The elevation, in degrees and as an Angle object, of a given celestial object when observed through the normal atmosphere
  • pressure (float) – Atmospheric pressure at the observation point, in milibars
  • temperature (:float) – Atmospheric temperature at the observation point, in degrees Celsius
Returns:

An Angle object with the true, ‘airless’ elevation of the celestial object

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> apparent_elevation = Angle(0, 30, 0.0)
>>> true_elevation = refraction_apparent2true(apparent_elevation)
>>> print(true_elevation.dms_str(n_dec=1))
1' 14.7''
pymeeus.Coordinates.refraction_true2apparent(true_elevation, pressure=1010.0, temperature=10.0)[source]

This function computes the atmospheric refraction converting from the true, ‘airless’, elevation (i.e., the one computed from celestial coordinates) to the apparent elevation (the observed elevation through the air)

Note

This function, by default, assumes that the atmospheric pressure is 1010 milibars, and the air temperature is 10 Celsius.

Note

Due to the numerous factors that may affect the atmospheric refraction, especially near the horizon, the values given by this function are approximate values.

Parameters:
  • true_elevation (Angle) – The elevation, in degrees and as an Angle object, of a given celestial object when computed from celestial coordinates, and assuming there is no atmospheric refraction due to the air
  • pressure (float) – Atmospheric pressure at the observation point, in milibars
  • temperature (:float) – Atmospheric temperature at the observation point, in degrees Celsius
Returns:

An Angle object with the aparent, ‘with air’ elevation of the celestial object

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> true_elevation = Angle(0, 33, 14.76)
>>> apparent_elevation = refraction_true2apparent(true_elevation)
>>> print(apparent_elevation.dms_str(n_dec=2))
57' 51.96''
pymeeus.Coordinates.relative_position_angle(alpha1, delta1, alpha2, delta2)[source]

This function computes the position angle P of a body with respect to another body.

Parameters:
  • alpha1 (Angle) – Right ascension of celestial body #1, as an Angle object
  • delta1 (Angle) – Declination of celestial body #1, as an Angle object
  • alpha2 (Angle) – Right ascension of celestial body #2, as an Angle object
  • delta2 (Angle) – Declination of celestial body #2, as an Angle object
Returns:

An Angle object with the relative position angle between the given celestial objects

Return type:

Angle

Raises:

TypeError if input values are of wrong type.

>>> alpha1 = Angle(14, 15, 39.7, ra=True)
>>> delta1 = Angle(19, 10, 57.0)
>>> alpha2 = Angle(14, 15, 39.7, ra=True)
>>> delta2 = Angle(-11, 9, 41.0)
>>> pos_ang = relative_position_angle(alpha1, delta1, alpha2, delta2)
>>> print(round(pos_ang, 1))
0.0
pymeeus.Coordinates.straight_line(alpha1, delta1, alpha2, delta2, alpha3, delta3)[source]

This function computes if three celestial bodies are in a straight line, providing the angle with which the bodies differ from a great circle.

Parameters:
  • alpha1 (Angle) – Right ascension, as an Angle object, of celestial body #1
  • delta1 (Angle) – Declination, as an Angle object, of celestial body #1
  • alpha2 (Angle) – Right ascension, as an Angle object, of celestial body #2
  • delta2 (Angle) – Declination, as an Angle object, of celestial body #2
  • alpha3 (Angle) – Right ascension, as an Angle object, of celestial body #3
  • delta3 (Angle) – Declination, as an Angle object, of celestial body #3
Returns:

A tuple with two components. The first element is an angle (as Angle object) with which the bodies differ from a great circle. The second element is the Angular distance of central point to the straight line (also as Angle object).

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> alpha1 = Angle( 5, 32,  0.40, ra=True)
>>> delta1 = Angle(0, -17, 56.9)
>>> alpha2 = Angle( 5, 36, 12.81, ra=True)
>>> delta2 = Angle(-1, 12,  7.0)
>>> alpha3 = Angle( 5, 40, 45.52, ra=True)
>>> delta3 = Angle(-1, 56, 33.3)
>>> psi, om = straight_line(alpha1, delta1, alpha2, delta2, alpha3, delta3)
>>> print(psi.dms_str(n_dec=0))
7d 31' 1.0''
>>> print(om.dms_str(n_dec=0))
-5' 24.0''
pymeeus.Coordinates.times_rise_transit_set(longitude, latitude, alpha1, delta1, alpha2, delta2, alpha3, delta3, h0, delta_t, theta0)[source]

This function computes the times (in Universal Time UT) of rising, transit and setting of a given celestial body.

Note

If the body is circumpolar there are no rising, transit nor setting times. In such a case a tuple with None’s is returned

Note

Care must be taken when interpreting the results. For instance, if the setting time is smaller than the rising time, it means that it belongs to the following day. Also, if the rising time is bigger than the setting time, it belong to the previous day. The same applies to the transit time.

Parameters:
  • longitude (Angle) – Geodetic longitude, as an Angle object. It is measured positively west from Greenwich, and negatively to the east.
  • latitude (Angle) – Geodetic latitude, as an Angle object
  • alpha1 (Angle) – Apparent right ascension the previous day at 0h TT, as an Angle object
  • delta1 (Angle) – Apparent declination the previous day at 0h TT, as an Angle object
  • alpha2 (Angle) – Apparent right ascension the current day at 0h TT, as an Angle object
  • delta2 (Angle) – Apparent declination the current day at 0h TT, as an Angle object
  • alpha3 (Angle) – Apparent right ascension the following day at 0h TT, as an Angle object
  • delta3 (Angle) – Apparent declination the following day at 0h TT, as an Angle object
  • h0 (Angle) – ‘Standard’ altitude: the geometric altitude of the center of the body at the time of apparent rising or setting, as degrees in an Angle object. It should be -0.5667 deg for stars and planets, -0.8333 deg for the Sun, and 0.125 deg for the Moon.
  • delta_t (float) – The difference between Terrestrial Time and Universal Time (TT - UT) in seconds of time
  • theta0 (Angle) – Apparent sidereal time at 0h TT on the current day for the meridian of Greenwich, as degrees in an Angle object
Returns:

A tuple with the times of rising, transit and setting, in that order, as hours in UT.

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> longitude = Angle(71, 5, 0.0)
>>> latitude = Angle(42, 20, 0.0)
>>> alpha1 = Angle(2, 42, 43.25, ra=True)
>>> delta1 = Angle(18, 2, 51.4)
>>> alpha2 = Angle(2, 46, 55.51, ra=True)
>>> delta2 = Angle(18, 26, 27.3)
>>> alpha3 = Angle(2, 51, 7.69, ra=True)
>>> delta3 = Angle(18, 49, 38.7)
>>> h0 = Angle(-0.5667)
>>> delta_t = 56.0
>>> theta0 = Angle(11, 50, 58.1, ra=True)
>>> rising, transit, setting = times_rise_transit_set(longitude, latitude,                                                          alpha1, delta1,                                                           alpha2, delta2,                                                           alpha3, delta3, h0,                                                           delta_t, theta0)
>>> print(round(rising, 4))
12.4238
>>> print(round(transit, 3))
19.675
>>> print(round(setting, 3))
2.911
pymeeus.Coordinates.true_obliquity(*args, **kwargs)[source]

This function computes the true obliquity (epsilon) at the provided date. The true obliquity is the mean obliquity (epsilon0) plus the correction provided by the nutation in obliquity (Delta epsilon).

This function internally uses an Epoch object, and the utc argument then controls the way the UTC->TT conversion is handled for that object. If leap_seconds argument is set to a value different than zero, then that value will be used for the UTC->TAI conversion, and the internal leap seconds table will be bypassed.

Parameters:
  • args (int, float, Epoch, datetime, date, tuple, list) – Either Epoch, date, datetime or year, month, day values, by themselves or inside a tuple or list
  • utc (bool) – Whether the provided epoch is a civil time (UTC) or TT
  • leap_seconds (int, float) – This is the value to be used in the UTC->TAI conversion, instead of taking it from internal leap seconds table.
Returns:

The true obliquity of the ecliptic, as an Angle

Return type:

Angle

Raises:

ValueError if input values are in the wrong range.

Raises:

TypeError if input values are of wrong type.

>>> epsilon = true_obliquity(1987, 4, 10)
>>> a = epsilon.dms_tuple()
>>> a[0]
23
>>> a[1]
26
>>> round(a[2], 3)
36.849
pymeeus.Coordinates.velocity(r, a)[source]

This function computes the instantaneous velocity of the moving body, in kilometers per second, for an unperturbed elliptic orbit.

Parameters:
  • r (float) – Distance of the body to the Sun, in Astronomical Units
  • a (float) – Semimajor axis of the orbit, in Astronomical Units
Returns:

Velocity of the body, in kilometers per second

Return type:

float

Raises:

TypeError if input values are of wrong type.

>>> r = 1.0
>>> a = 17.9400782
>>> v = velocity(r, a)
>>> print(round(v, 2))
41.53
pymeeus.Coordinates.velocity_aphelion(e, a)[source]

This function computes the velocity of the moving body at aphelion, in kilometers per second, for an unperturbed elliptic orbit.

Parameters:
  • e (float) – Orbital eccentricity
  • a (float) – Semimajor axis of the orbit, in Astronomical Units
Returns:

Velocity of the body at aphelion, in kilometers per second

Return type:

float

Raises:

TypeError if input values are of wrong type.

>>> a = 17.9400782
>>> e = 0.96727426
>>> va = velocity_aphelion(e, a)
>>> print(round(va, 2))
0.91
pymeeus.Coordinates.velocity_perihelion(e, a)[source]

This function computes the velocity of the moving body at perihelion, in kilometers per second, for an unperturbed elliptic orbit.

Parameters:
  • e (float) – Orbital eccentricity
  • a (float) – Semimajor axis of the orbit, in Astronomical Units
Returns:

Velocity of the body at perihelion, in kilometers per second

Return type:

float

Raises:

TypeError if input values are of wrong type.

>>> a = 17.9400782
>>> e = 0.96727426
>>> vp = velocity_perihelion(e, a)
>>> print(round(vp, 2))
54.52
pymeeus.Coordinates.vsop_pos(epoch, vsop_l, vsop_b, vsop_r)[source]

This function computes the position of a celestial body at a given epoch when its VSOP87 periodic term tables are provided.

Parameters:
  • epoch (Epoch) – Epoch to compute the position, given as an Epoch object
  • vsop_l (list) – Table of VSOP87 terms for the heliocentric longitude
  • vsop_b (list) – Table of VSOP87 terms for the heliocentric latitude
  • vsop_r (list) – Table of VSOP87 terms for the radius vector
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

Curveffiting

Class to get the best fit of a curve to a set of (x, y) points.

class pymeeus.CurveFitting.CurveFitting(*args)[source]

Class CurveFitting deals with finding the function (linear, cuadratic, etc) that best fit a given set of points.

The constructor takes pairs of (x, y) values from the table of interest. These pairs of values can be given as a sequence of int/floats, tuples, lists or Angles. It is also possible to provide a CurveFitting object to the constructor in order to get a copy.

Note

When using Angles, be careful with the 360-to-0 discontinuity.

If a sequence of int, floats or Angles is given, the values in the odd positions are considered to belong to the ‘x’ set, while the values in the even positions belong to the ‘y’ set. If only one tuple or list is provided, it is assumed that it is the ‘y’ set, and the ‘x’ set is build from 0 onwards with steps of length 1.

Please keep in mind that a minimum of two data pairs are needed in order to carry out any fitting. If only one value pair is provided, a ValueError exception will be raised.

__init__(*args)[source]

CurveFitting constructor.

This takes pairs of (x, y) values from the table of interest. These pairs of values can be given as a sequence of int/floats, tuples, lists or Angles. It is also possible to provide a CurveFitting object to the constructor in order to get a copy.

Note

When using Angles, be careful with the 360-to-0 discontinuity

If a sequence of int, floats or Angles is given, the values in the odd positions are considered to belong to the ‘x’ set, while the values in the even positions belong to the ‘y’ set. If only one tuple or list is provided, it is assumed that it is the ‘y’ set, and the ‘x’ set is build from 0 onwards with steps of length 1.

Please keep in mind that a minimum of two data pairs are needed in order to carry out any interpolation. If only one value pair is provided, a ValueError exception will be raised.

Parameters:args (int, float, list, tuple, Angle, CurveFitting) – Input tabular values, or another CurveFitting object.
Returns:CurveFitting object.
Return type:CurveFitting
Raises:ValueError if not enough input data pairs are provided.
Raises:TypeError if input values are of wrong type.
>>> i = CurveFitting([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> print(i._x)
[5, 3, 6, 1, 2, 4]
>>> print(i._y)
[10, 6, 12, 2, 4, 8]
>>> j = CurveFitting([3, -8, 1, 12, 2, 5, 8])
>>> print(j._x)
[0, 1, 2, 3, 4, 5, 6]
>>> print(j._y)
[3, -8, 1, 12, 2, 5, 8]
>>> k = CurveFitting(3, -8, 1, 12, 2, 5, 8)
>>> print(k._x)
[3, 1, 2]
>>> print(k._y)
[-8, 12, 5]
>>> m = CurveFitting(k)
>>> print(m._x)
[3, 1, 2]
>>> print(m._y)
[-8, 12, 5]
__len__()[source]

This method returns the number of value pairs internally stored in this object.

Returns:Number of value pairs internally stored
Return type:int
>>> i = CurveFitting([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> len(i)
6
__repr__()[source]

Method providing the ‘official’ string representation of the object. It provides a valid expression that could be used to recreate the object.

Returns:As string with a valid expression to recreate the object
Return type:string
>>> i = CurveFitting([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> repr(i)
'CurveFitting([5, 3, 6, 1, 2, 4], [10, 6, 12, 2, 4, 8])'
__str__()[source]

Method used when trying to print the object.

Returns:Internal tabular values as strings.
Return type:string
>>> i = CurveFitting([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> print(i)
X: [5, 3, 6, 1, 2, 4]
Y: [10, 6, 12, 2, 4, 8]
__weakref__

list of weak references to the object (if defined)

correlation_coeff()[source]

This method returns the coefficient of correlation, as a float.

Returns:Coefficient of correlation.
Return type:float
>>> cf = CurveFitting([73.0, 38.0, 35.0, 42.0, 78.0, 68.0, 74.0, 42.0,
...                    52.0, 54.0, 39.0, 61.0, 42.0, 49.0, 50.0, 62.0,
...                    44.0, 39.0, 43.0, 54.0, 44.0, 37.0],
...                   [90.4, 125.3, 161.8, 143.4, 52.5, 50.8, 71.5,
...                    152.8, 131.3, 98.5, 144.8, 78.1, 89.5, 63.9,
...                    112.1, 82.0, 119.8, 161.2, 208.4, 111.6, 167.1,
...                    162.1])
>>> r = cf.correlation_coeff()
>>> print(round(r, 3))
-0.767
general_fitting(f0, f1=<function <lambda>>, f2=<function <lambda>>)[source]

This method returns a tuple with the ‘a’, ‘b’, ‘c’ coefficients of the general equation ‘y = a*f0(x) + b*f1(x) + c*f2(x)’ that best fits the table data, using the least squares approach.

Parameters:f1, f2 (f0,) – Functions used to build the general equation.
Returns:‘a’, ‘b’, ‘c’ coefficients of best general equation fit.
Return type:tuple
Raises:ZeroDivisionError if input functions are null or input data leads to a division by zero
>>> cf4 = CurveFitting([3, 20, 34, 50, 75, 88, 111, 129, 143, 160, 183,
...                     200, 218, 230, 248, 269, 290, 303, 320, 344],
...                    [0.0433, 0.2532, 0.3386, 0.3560, 0.4983, 0.7577,
...                     1.4585, 1.8628, 1.8264, 1.2431, -0.2043,
...                     -1.2431, -1.8422, -1.8726, -1.4889, -0.8372,
...                     -0.4377, -0.3640, -0.3508, -0.2126])
>>> def sin1(x): return sin(radians(x))
>>> def sin2(x): return sin(radians(2.0*x))
>>> def sin3(x): return sin(radians(3.0*x))
>>> a, b, c = cf4.general_fitting(sin1, sin2, sin3)
>>> print("a = {}; b = {}; c = {}".format(round(a, 2), round(b, 2),
...                                       round(c, 2)))
a = 1.2; b = -0.77; c = 0.39
>>> cf5 = CurveFitting([0, 1.2, 1.4, 1.7, 2.1, 2.2])
>>> a, b, c = cf5.general_fitting(sqrt)
>>> print("a = {}; b = {}; c = {}".format(round(a, 3), round(b, 3),
...                                       round(c, 3)))
a = 1.016; b = 0.0; c = 0.0
linear_fitting()[source]

This method returns a tuple with the ‘a’, ‘b’ coefficients of the linear equation ‘y = a*x + b’ that best fits the table data, using the least squares approach.

Returns:‘a’, ‘b’ coefficients of best linear equation fit.
Return type:tuple
Raises:ZeroDivisionError if input data leads to a division by zero
>>> cf = CurveFitting([73.0, 38.0, 35.0, 42.0, 78.0, 68.0, 74.0, 42.0,
...                    52.0, 54.0, 39.0, 61.0, 42.0, 49.0, 50.0, 62.0,
...                    44.0, 39.0, 43.0, 54.0, 44.0, 37.0],
...                   [90.4, 125.3, 161.8, 143.4, 52.5, 50.8, 71.5,
...                    152.8, 131.3, 98.5, 144.8, 78.1, 89.5, 63.9,
...                    112.1, 82.0, 119.8, 161.2, 208.4, 111.6, 167.1,
...                    162.1])
>>> a, b = cf.linear_fitting()
>>> print("a = {}       b = {}".format(round(a, 2), round(b, 2)))
a = -2.49       b = 244.18
quadratic_fitting()[source]

This method returns a tuple with the ‘a’, ‘b’, ‘c’ coefficients of the quadratic equation ‘y = a*x*x + b*x + c’ that best fits the table data, using the least squares approach.

Returns:‘a’, ‘b’, ‘c’ coefficients of best quadratic equation fit.
Return type:tuple
Raises:ZeroDivisionError if input data leads to a division by zero
>>> cf2 = CurveFitting([-2.0, -1.5, -1.0, -0.5, 0.0, 0.5, 1.0, 1.5,
...                     2.0, 2.5,3.0],
...                    [-9.372, -3.821, 0.291, 3.730, 5.822, 8.324,
...                     9.083, 6.957, 7.006, 0.365, -1.722])
>>> a, b, c = cf2.quadratic_fitting()
>>> print("a = {}; b = {}; c = {}".format(round(a, 2), round(b, 2),
...                                       round(c, 2)))
a = -2.22; b = 3.76; c = 6.64
set(*args)[source]

Method used to define the value pairs of CurveFitting object.

This takes pairs of (x, y) values from the table of interest. These pairs of values can be given as a sequence of int/floats, tuples, lists, or Angles. It is also possible to provide a CurveFitting object to this method in order to get a copy.

Note

When using Angles, be careful with the 360-to-0 discontinuity

If a sequence of int, floats or Angles is given, the values in the odd positions are considered to belong to the ‘x’ set, while the values in the even positions belong to the ‘y’ set. If only one tuple or list is provided, it is assumed that it is the ‘y’ set, and the ‘x’ set is build from 0 onwards with steps of length 1.

Please keep in mind that a minimum of two data pairs are needed in order to carry out any interpolation. If only one value is provided, a ValueError exception will be raised.

Parameters:args (int, float, list, tuple, Angle) – Input tabular values, or another CurveFitting object.
Returns:None.
Return type:None
Raises:ValueError if not enough input data pairs are provided.
Raises:TypeError if input values are of wrong type.
>>> i = CurveFitting()
>>> i.set([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> print(i._x)
[5, 3, 6, 1, 2, 4]
>>> print(i._y)
[10, 6, 12, 2, 4, 8]
>>> j = CurveFitting()
>>> j.set([3, -8, 1, 12, 2, 5, 8])
>>> print(j._x)
[0, 1, 2, 3, 4, 5, 6]
>>> print(j._y)
[3, -8, 1, 12, 2, 5, 8]
>>> k = CurveFitting(3, -8, 1, 12, 2, 5, 8)
>>> print(k._x)
[3, 1, 2]
>>> print(k._y)
[-8, 12, 5]

Epoch

Class to handle time.

pymeeus.Epoch.DAY2HOURS = 24.0

Number of hours per day

pymeeus.Epoch.DAY2MIN = 1440.0

Number of minutes per day

pymeeus.Epoch.DAY2SEC = 86400.0

Number of seconds per day

class pymeeus.Epoch.Epoch(*args, **kwargs)[source]

Class Epoch deals with the tasks related to time handling.

The constructor takes either a single JDE value, another Epoch object, or a series of values representing year, month, day, hours, minutes, seconds. This series of values are by default supposed to be in Terrestial Time (TT).

This is not necesarily the truth, though. For instance, the time of a current observation is tipically in UTC time (civil time), not in TT, and there is some offset between those two time references.

When a UTC time is provided, the parameter utc=True must be given. Then, the input is converted to International Atomic Time (TAI) using an internal table of leap seconds, and from there, it is converted to (and stored as) Terrestrial Time (TT).

Given that leap seconds are added or subtracted in a rather irregular basis, it is not possible to predict them in advance, and the internal leap seconds table will become outdated at some point in time. To counter this, you have two options:

  • Download an updated version of this Pymeeus package.
  • Use the argument leap_seconds in the constructor or set() method to provide the correct number of leap seconds (w.r.t. TAI) to be applied.

Note

Providing the leap_seconds argument will automatically set the argument utc to True.

For instance, if at some time in the future the TAI-UTC difference is 43 seconds, you should set leap_seconds=43 if you don’t have an updated version of this class.

In order to know which is the most updated leap second value stored in this class, you may use the get_last_leap_second() method.

Note

The current version of UTC was implemented in January 1st, 1972. Therefore, for dates before that date the correction is NOT carried out, even if the utc argument is set to True, and it is supposed that the input data is already in TT scale.

Note

For conversions between TT and Universal Time (UT), please use the method tt2ut().

Note

Internally, time values are stored as a Julian Ephemeris Day (JDE), based on the uniform scale of Dynamical Time, or more specifically, Terrestial Time (TT) (itself the redefinition of Terrestrial Dynamical Time, TDT).

Note

The UTC-TT conversion is composed of three corrections:

  1. TT-TAI, comprising 32.184 s,
  2. TAI-UTC(1972), 10 s, and
  3. UTC(1972)-UTC(target)

item c. is the corresponding amount of leap seconds to the target Epoch. When you do, for instance, leap_seconds=43, you modify the c. part.

Note

Given that this class stores the epoch as JDE, if the JDE value is in the order of millions of days then, for a computer with 15-digit accuracy, the final time resolution is about 10 milliseconds. That is considered enough for most applications of this class.

__add__(b)[source]

This method defines the addition between an Epoch and some days.

Parameters:b (int, float) – Value to be added, in days.
Returns:A new Epoch object.
Return type:Epoch
Raises:TypeError if operand is of wrong type.
>>> a = Epoch(1991, 7, 11)
>>> b = a + 10000
>>> y, m, d = b.get_date()
>>> print("{}/{}/{}".format(y, m, round(d, 2)))
2018/11/26.0
__call__()[source]

Method used when Epoch is called only with parenthesis.

Returns:The internal value of the Julian Ephemeris Day.
Return type:float
>>> a = Epoch(-122, 1, 1.0)
>>> print(a())
1676497.5
__eq__(b)[source]

This method defines the ‘is equal’ operator between Epochs.

Note

For the comparison, the base.TOL value is used.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Epoch(2007, 5, 20.0)
>>> b = Epoch(2007, 5, 20.000001)
>>> a == b
False
>>> a = Epoch(2004, 10, 15.7)
>>> b = Epoch(a)
>>> a == b
True
>>> a = Epoch(2434923.85)
>>> a == 2434923.85
True
__float__()[source]

This method returns the internal JDE value as a float.

Returns:Internal JDE value as a float.
Return type:float
>>> a = Epoch(2434923.85)
>>> float(a)
2434923.85
__ge__(b)[source]

This method defines ‘is equal or greater’ operator between Epochs.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Epoch(2004, 10, 15.71)
>>> b = Epoch(2004, 10, 15.7)
>>> a >= b
True
__gt__(b)[source]

This method defines the ‘is greater than’ operator between Epochs.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Epoch(2004, 10, 15.71)
>>> b = Epoch(2004, 10, 15.7)
>>> a > b
True
>>> a = Epoch(-207, 11, 5.2)
>>> b = Epoch(-207, 11, 5.2)
>>> a > b
False
__hash__()[source]

Method used to create hash from an Epoch object.

This method allows Epoch objects to be used as the key in a dictionary.

__iadd__(b)[source]

This method defines the accumulative addition to this Epoch.

Parameters:b (int, float) – Value to be added, in days.
Returns:This Epoch.
Return type:Epoch
Raises:TypeError if operand is of wrong type.
>>> a = Epoch(2003, 12, 31.0)
>>> a += 32.5
>>> y, m, d = a.get_date()
>>> print("{}/{}/{}".format(y, m, round(d, 2)))
2004/2/1.5
__init__(*args, **kwargs)[source]

Epoch constructor.

This constructor takes either a single JDE value, another Epoch object, or a series of values representing year, month, day, hours, minutes, seconds. This series of values are by default supposed to be in Terrestial Time (TT).

It is also possible that the year, month, etc. arguments be provided in a tuple or list. Moreover, it is also possible provide date or datetime objects for initialization.

The month value can be provided as an integer (1 = January, 2 = February, etc), or it can be provided with short (Jan, Feb,…) or long (January, February,…) names. Also, hours, minutes, seconds can be provided separately, or as decimals of the day value.

When a UTC time is provided, the parameter utc=True must be given. Then, the input is converted to International Atomic Time (TAI) using an internal table of leap seconds, and from there, it is converted to (and stored as) Terrestrial Time (TT). If utc is not provided, it is supposed that the input data is already in TT scale.

If a value is provided with the leap_seconds argument, then that value will be used for the UTC->TAI conversion, and the internal leap seconds table will be bypassed.

Parameters:
  • args (int, float, Epoch, tuple, list, date, datetime) – Either JDE, Epoch, date, datetime or year, month, day, hours, minutes, seconds values, by themselves or inside a tuple or list
  • utc (bool) – Whether the provided epoch is a civil time (UTC)
  • leap_seconds (int, float) – This is the value to be used in the UTC->TAI conversion, instead of taking it from internal leap seconds table.
Returns:

Epoch object.

Return type:

Epoch

Raises:

ValueError if input values are in the wrong range.

Raises:

TypeError if input values are of wrong type.

>>> e = Epoch(1987, 6, 19.5)
>>> print(e)
2446966.0
__int__()[source]

This method returns the internal JDE value as an int.

Returns:Internal JDE value as an int.
Return type:int
>>> a = Epoch(2434923.85)
>>> int(a)
2434923
__isub__(b)[source]

This method defines the accumulative subtraction to this Epoch.

Parameters:b (int, float) – Value to be subtracted, in days.
Returns:This Epoch.
Return type:Epoch
Raises:TypeError if operand is of wrong type.
>>> a = Epoch(2001, 12, 31.0)
>>> a -= 2*365
>>> y, m, d = a.get_date()
>>> print("{}/{}/{}".format(y, m, round(d, 2)))
2000/1/1.0
__le__(b)[source]

This method defines ‘is equal or less’ operator between Epochs.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Epoch(2004, 10, 15.71)
>>> b = Epoch(2004, 10, 15.7)
>>> a <= b
False
>>> a = Epoch(-207, 11, 5.2)
>>> b = Epoch(-207, 11, 5.2)
>>> a <= b
True
__lt__(b)[source]

This method defines the ‘is less than’ operator between Epochs.

Returns:A boolean.
Return type:bool
Raises:TypeError if input values are of wrong type.
>>> a = Epoch(2004, 10, 15.7)
>>> b = Epoch(2004, 10, 15.7)
>>> a < b
False
__ne__(b)[source]

This method defines the ‘is not equal’ operator between Epochs.

Note

For the comparison, the base.TOL value is used.

Returns:A boolean.
Return type:bool
>>> a = Epoch(2007, 5, 20.0)
>>> b = Epoch(2007, 5, 20.000001)
>>> a != b
True
>>> a = Epoch(2004, 10, 15.7)
>>> b = Epoch(a)
>>> a != b
False
>>> a = Epoch(2434923.85)
>>> a != 2434923.85
False
__radd__(b)[source]

This method defines the addition to a Epoch by the right

Parameters:b (int, float) – Value to be added, in days.
Returns:A new Epoch object.
Return type:Epoch
Raises:TypeError if operand is of wrong type.
>>> a = Epoch(2004, 2, 27.8)
>>> b = 2.2 + a
>>> y, m, d = b.get_date()
>>> print("{}/{}/{}".format(y, m, round(d, 2)))
2004/3/1.0
__repr__()[source]

Method providing the ‘official’ string representation of the object. It provides a valid expression that could be used to recreate the object.

Returns:As string with a valid expression to recreate the object
Return type:string
>>> e = Epoch(1987, 6, 19.5)
>>> repr(e)
'Epoch(2446966.0)'
__str__()[source]

Method used when trying to print the object.

Returns:Internal JDE value as a string.
Return type:string
>>> e = Epoch(1987, 6, 19.5)
>>> print(e)
2446966.0
__sub__(b)[source]

This method defines the subtraction between Epochs or between an Epoch and a given number of days.

Parameters:b (py:class:Epoch, int, float) – Value to be subtracted, either an Epoch or days.
Returns:A new Epoch object if parameter ‘b’ is in days, or the difference between provided Epochs, in days.
Return type:Epoch, float
Raises:TypeError if operand is of wrong type.
>>> a = Epoch(1986, 2, 9.0)
>>> print(round(a(), 2))
2446470.5
>>> b = Epoch(1910, 4, 20.0)
>>> print(round(b(), 2))
2418781.5
>>> c = a - b
>>> print(round(c, 2))
27689.0
>>> a = Epoch(2003, 12, 31.0)
>>> b = a - 365.5
>>> y, m, d = b.get_date()
>>> print("{}/{}/{}".format(y, m, round(d, 2)))
2002/12/30.5
__weakref__

list of weak references to the object (if defined)

apparent_sidereal_time(true_obliquity, nutation_longitude)[source]

Method to compute the _apparent_ sidereal time at Greenwich for the epoch stored in this object. It represents the Greenwich hour angle of the true vernal equinox.

Note

If you require the result as an angle, you should convert the result from this method to hours with decimals (with DAY2HOURS), and then multiply by 15 deg/hr. Alternatively, you can convert the result to hours with decimals, and feed this value to an Angle object, setting ra=True, and making use of Angle facilities for further handling.

Parameters:
  • true_obliquity (int, float, Angle) – The true obliquity of the ecliptic as an int, float or Angle, in degrees. You can use the method Earth.true_obliquity() to find it.
  • nutation_longitude (int, float, Angle) – The nutation in longitude as an int, float or Angle, in degrees. You can use method Earth.nutation_longitude() to find it.
Returns:

Apparent sidereal time, in days

Return type:

float

Raises:

TypeError if input value is of wrong type.

>>> e = Epoch(1987, 4, 10)
>>> round(e.apparent_sidereal_time(23.44357, (-3.788)/3600.0), 8)
0.54914508
static check_input_date(*args, **kwargs)[source]

Method to check that the input is a proper date.

This method returns an Epoch object, and the leap_seconds argument then controls the way the UTC->TT conversion is handled for that new object. If leap_seconds argument is set to a value different than zero, then that value will be used for the UTC->TAI conversion, and the internal leap seconds table will be bypassed. On the other hand, if it is set to zero, then the UTC to TT correction is disabled, and it is supposed that the input data is already in TT scale.

Parameters:
  • args (int, float, Epoch, datetime, date, tuple, list) – Either Epoch, date, datetime or year, month, day values, by themselves or inside a tuple or list
  • leap_seconds (int, float) – If different from zero, this is the value to be used in the UTC->TAI conversion. If equals to zero, conversion is disabled. If not given, UTC to TT conversion is carried out (default).
Returns:

Epoch object corresponding to the input date

Return type:

Epoch

Raises:

ValueError if input values are in the wrong range.

Raises:

TypeError if input values are of wrong type.

dow(as_string=False)[source]

Method to return the day of week corresponding to this Epoch.

By default, this method returns an integer value: 0 for Sunday, 1 for Monday, etc. However, when as_string=True is passed, the names of the days are returned.

Parameters:as_string (bool) – Whether result will be given as a integer or as a string. False by default.
Returns:Day of the week, as a integer or as a string.
Return type:int, str
>>> e = Epoch(1954, 'June', 30)
>>> e.dow()
3
>>> e = Epoch(2018, 'Feb', 14.9)
>>> e.dow(as_string=True)
'Wednesday'
>>> e = Epoch(2018, 'Feb', 15)
>>> e.dow(as_string=True)
'Thursday'
>>> e = Epoch(2018, 'Feb', 15.99)
>>> e.dow(as_string=True)
'Thursday'
>>> e.set(2018, 'Jul', 15.4)
>>> e.dow(as_string=True)
'Sunday'
>>> e.set(2018, 'Jul', 15.9)
>>> e.dow(as_string=True)
'Sunday'
doy()[source]

This method returns the Day Of Year (DOY) for the current Epoch object.

Returns:Day Of Year (DOY).
Return type:float
>>> e = Epoch(1999, 1, 29)
>>> round(e.doy(), 1)
29.0
>>> e = Epoch(2017, 12, 31.7)
>>> round(e.doy(), 1)
365.7
>>> e = Epoch(2012, 3, 3.1)
>>> round(e.doy(), 1)
63.1
>>> e = Epoch(-400, 2, 29.9)
>>> round(e.doy(), 1)
60.9
static doy2date(year, doy)[source]

This method takes a year and a Day Of Year values, and returns the corresponding date.

Parameters:
  • year (int, float) – Year, in four digits format
  • doy (int, float) – Day of Year number
Returns:

Year, month, day.

Return type:

tuple

Raises:

ValueError if either input year or doy values are invalid.

>>> t = Epoch.doy2date(1999, 29)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
1999/1/29.0
>>> t = Epoch.doy2date(2017, 365.7)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
2017/12/31.7
>>> t = Epoch.doy2date(2012, 63.1)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
2012/3/3.1
>>> t = Epoch.doy2date(-1004, 60)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
-1004/2/29.0
>>> t = Epoch.doy2date(0, 60)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
0/2/29.0
>>> t = Epoch.doy2date(1, 60)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
1/3/1.0
>>> t = Epoch.doy2date(-1, 60)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
-1/3/1.0
>>> t = Epoch.doy2date(-2, 60)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
-2/3/1.0
>>> t = Epoch.doy2date(-3, 60)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
-3/3/1.0
>>> t = Epoch.doy2date(-4, 60)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
-4/2/29.0
>>> t = Epoch.doy2date(-5, 60)
>>> print("{}/{}/{}".format(t[0], t[1], round(t[2], 1)))
-5/3/1.0
static easter(year)[source]

Method to return the Easter day for given year.

Note

This method is valid for both Gregorian and Julian years.

Parameters:year (int) – Year
Returns:Easter month and day, as a tuple
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> Epoch.easter(1991)
(3, 31)
>>> Epoch.easter(1818)
(3, 22)
>>> Epoch.easter(1943)
(4, 25)
>>> Epoch.easter(2000)
(4, 23)
>>> Epoch.easter(1954)
(4, 18)
>>> Epoch.easter(179)
(4, 12)
>>> Epoch.easter(1243)
(4, 12)
get_date(**kwargs)[source]

This method converts the internal JDE value back to a date.

Use utc=True to enable the TT to UTC conversion mechanism, or provide a non zero value to leap_seconds to apply a specific leap seconds value.

It is also possible to retrieve a local time with the parameter local=True. In such case, the method utc2local() is called to compute the LocalTime-UTC difference. This implies that the parameter utc=True is automatically set.

Note

Please bear in mind that, in order for the method utc2local() to work, your operative system must be correctly configured, with the right time and corresponding time zone.

Parameters:
  • utc (bool) – Whether the TT to UTC conversion mechanism will be enabled
  • leap_seconds (int, float) – Optional value for leap seconds.
  • local – Whether the retrieved epoch is converted to local time.
Returns:

Year, month, day in a tuple

Return type:

tuple

>>> e = Epoch(2436116.31)
>>> y, m, d = e.get_date()
>>> print("{}/{}/{}".format(y, m, round(d, 2)))
1957/10/4.81
>>> e = Epoch(1988, 1, 27)
>>> y, m, d = e.get_date()
>>> print("{}/{}/{}".format(y, m, round(d, 2)))
1988/1/27.0
>>> e = Epoch(1842713.0)
>>> y, m, d = e.get_date()
>>> print("{}/{}/{}".format(y, m, round(d, 2)))
333/1/27.5
>>> e = Epoch(1507900.13)
>>> y, m, d = e.get_date()
>>> print("{}/{}/{}".format(y, m, round(d, 2)))
-584/5/28.63
static get_doy(yyyy, mm, dd)[source]

This method returns the Day Of Year (DOY) for the given date.

Parameters:
  • yyyy (int, float) – Year, in four digits format
  • mm (int, float) – Month, in numeric format (1 = January, 2 = February, etc)
  • dd (int, float) – Day, in numeric format
Returns:

Day Of Year (DOY).

Return type:

float

Raises:

ValueError if input values correspond to a wrong date.

>>> Epoch.get_doy(1999, 1, 29)
29.0
>>> Epoch.get_doy(1978, 11, 14)
318.0
>>> Epoch.get_doy(2017, 12, 31.7)
365.7
>>> Epoch.get_doy(2012, 3, 3.1)
63.1
>>> Epoch.get_doy(-400, 2, 29.9)
60.9
get_full_date(**kwargs)[source]

This method converts the internal JDE value back to a full date.

Use utc=True to enable the TT to UTC conversion mechanism, or provide a non zero value to leap_seconds to apply a specific leap seconds value.

It is also possible to retrieve a local time with the parameter local=True. In such case, the method utc2local() is called to compute the LocalTime-UTC difference. This implies that the parameter utc=True is automatically set.

Note

Please bear in mind that, in order for the method utc2local() to work, your operative system must be correctly configured, with the right time and corresponding time zone.

Parameters:
  • utc (bool) – Whether the TT to UTC conversion mechanism will be enabled
  • leap_seconds (int, float) – Optional value for leap seconds.
  • local – Whether the retrieved epoch is converted to local time.
Returns:

Year, month, day, hours, minutes, seconds in a tuple

Return type:

tuple

>>> e = Epoch(2436116.31)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print("{}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s, 1)))
1957/10/4 19:26:24.0
>>> e = Epoch(1988, 1, 27)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print("{}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s, 1)))
1988/1/27 0:0:0.0
>>> e = Epoch(1842713.0)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print("{}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s, 1)))
333/1/27 12:0:0.0
>>> e = Epoch(1507900.13)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print("{}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s, 1)))
-584/5/28 15:7:12.0
static get_last_leap_second()[source]

Method to get the date and value of the last leap second added to the table

Returns:Tuple with year, month, day, leap second value.
Return type:tuple
static get_month(month, as_string=False)[source]

Method to get the month as a integer in the [1, 12] range, or as a full name.

Parameters:
  • month (int, float, str) – Month, in numeric, short name or long name format
  • as_string (bool) – Whether the output will be numeric, or a long name.
Returns:

Month as integer in the [1, 12] range, or as a long name.

Return type:

int, str

Raises:

ValueError if input month value is invalid.

>>> Epoch.get_month(4.0)
4
>>> Epoch.get_month('Oct')
10
>>> Epoch.get_month('FEB')
2
>>> Epoch.get_month('August')
8
>>> Epoch.get_month('august')
8
>>> Epoch.get_month('NOVEMBER')
11
>>> Epoch.get_month(9.0, as_string=True)
'September'
>>> Epoch.get_month('Feb', as_string=True)
'February'
>>> Epoch.get_month('March', as_string=True)
'March'
static gregorian2moslem(year, month, day)[source]

Method to convert a date in the Gregorian (or Julian) calendar to the Moslen calendar.

Parameters:
  • year (int) – Year
  • month (int) – Month
  • day (int) – Day
Returns:

Date in Moslem calendar: year, month and day, as a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> Epoch.gregorian2moslem(1991, 8, 13)
(1412, 2, 2)
static is_julian(year, month, day)[source]

This method returns True if given date is in the Julian calendar.

Parameters:
  • year – Year
  • month – Month
  • day (int) – Day
Returns:

Whether the provided date belongs to Julian calendar or not.

Return type:

bool

>>> Epoch.is_julian(1997, 5, 27.1)
False
>>> Epoch.is_julian(1397, 7, 7.0)
True
static is_leap(year)[source]

Method to check if a given year is a leap year.

Parameters:year (int, float) – Year to be checked.
Returns:Whether or not year is a leap year.
Return type:bool
Raises:ValueError if input year value is invalid.
>>> Epoch.is_leap(2003)
False
>>> Epoch.is_leap(2012)
True
>>> Epoch.is_leap(1900)
False
>>> Epoch.is_leap(-1000)
True
>>> Epoch.is_leap(1000)
True
jde()[source]

Method to return the internal value of the Julian Ephemeris Day.

Returns:The internal value of the Julian Ephemeris Day.
Return type:float
>>> a = Epoch(-1000, 2, 29.0)
>>> print(a.jde())
1355866.5
static jewish_pesach(year)[source]

Method to return the Jewish Easter (Pesach) day for given year.

Note

This method is valid for both Gregorian and Julian years.

Parameters:year (int) – Year
Returns:Jewish Easter (Pesach) month and day, as a tuple
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> Epoch.jewish_pesach(1990)
(4, 10)
julian()[source]

This method returns True if this Epoch object holds a date in the Julian calendar.

Returns:Whether this Epoch object holds a date belonging to Julian calendar or not.
Return type:bool
>>> e = Epoch(1997, 5, 27.1)
>>> e.julian()
False
>>> e = Epoch(1397, 7, 7.0)
>>> e.julian()
True
leap()[source]

This method checks if the current Epoch object holds a leap year.

Returns:Whether or the year in this Epoch object is a leap year.
Return type:bool
>>> e = Epoch(2003, 1, 1)
>>> e.leap()
False
>>> e = Epoch(2012, 1, 1)
>>> e.leap()
True
>>> e = Epoch(1900, 1, 1)
>>> e.leap()
False
>>> e = Epoch(-1000, 1, 1)
>>> e.leap()
True
>>> e = Epoch(1000, 1, 1)
>>> e.leap()
True
static leap_seconds(year, month)[source]

Returns the leap seconds accumulated for the given year and month.

Parameters:
  • year (int) – Year
  • month (int) – Month, in numeric format ([1:12] range)
Returns:

Leap seconds accumulated for given year and month.

Return type:

int

>>> Epoch.leap_seconds(1972, 4)
0
>>> Epoch.leap_seconds(1972, 6)
0
>>> Epoch.leap_seconds(1972, 7)
1
>>> Epoch.leap_seconds(1983, 6)
11
>>> Epoch.leap_seconds(1983, 7)
12
>>> Epoch.leap_seconds(1985, 8)
13
>>> Epoch.leap_seconds(2016, 11)
26
>>> Epoch.leap_seconds(2017, 1)
27
>>> Epoch.leap_seconds(2018, 7)
27
mean_sidereal_time()[source]

Method to compute the _mean_ sidereal time at Greenwich for the epoch stored in this object. It represents the Greenwich hour angle of the mean vernal equinox.

Note

If you require the result as an angle, you should convert the result from this method to hours with decimals (with DAY2HOURS), and then multiply by 15 deg/hr. Alternatively, you can convert the result to hours with decimals, and feed this value to an Angle object, setting ra=True, and making use of Angle facilities for further handling.

Returns:Mean sidereal time, in days
Return type:float
>>> e = Epoch(1987, 4, 10)
>>> round(e.mean_sidereal_time(), 9)
0.549147764
>>> e = Epoch(1987, 4, 10, 19, 21, 0.0)
>>> round(e.mean_sidereal_time(), 9)
0.357605204
mjd()[source]

This method returns the Modified Julian Day (MJD).

Returns:Modified Julian Day (MJD).
Return type:float
>>> e = Epoch(1858, 'NOVEMBER', 17)
>>> e.mjd()
0.0
static moslem2gregorian(year, month, day)[source]

Method to convert a date in the Moslen calendar to the Gregorian (or Julian) calendar.

Note

This method is valid for both Gregorian and Julian years.

Parameters:
  • year (int) – Year
  • month (int) – Month
  • day (int) – Day
Returns:

Date in Gregorian (Julian) calendar: year, month and day, as a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> Epoch.moslem2gregorian(1421, 1, 1)
(2000, 4, 6)
rise_set(latitude, longitude, altitude=0.0)[source]

This method computes the times of rising and setting of the Sun.

Note

The algorithm used is the one explained in the article “Sunrise equation” of the Wikipedia at: https://en.wikipedia.org/wiki/Sunrise_equation

Note

This algorithm is only valid outside the artic and antartic circles (+/- 66d 33’). For latitudes higher than +66d 33’ and smaller than -66d 33’ this method returns a ValueError exception

Note

The results are given in UTC time.

Parameters:
  • latitude (Angle) – Latitude of the observer, as an Angle object. Positive to the North
  • longitude (Angle) – Longitude of the observer, as an Angle object. Positive to the East
  • altitude (int, float) – Altitude of the observer, as meters above sea level
Returns:

Two Epoch objects representing rising time and setting time, in a tuple

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

Raises:

ValueError if latitude outside the +/- 66d 33’ range.

>>> e = Epoch(2019, 4, 2)
>>> latitude = Angle(48, 8, 0)
>>> longitude = Angle(11, 34, 0)
>>> altitude = 520.0
>>> rising, setting = e.rise_set(latitude, longitude, altitude)
>>> y, m, d, h, mi, s = rising.get_full_date()
>>> print("{}:{}".format(h, mi))
4:48
>>> y, m, d, h, mi, s = setting.get_full_date()
>>> print("{}:{}".format(h, mi))
17:48
set(*args, **kwargs)[source]

Method used to set the value of this object.

This method takes either a single JDE value, or a series of values representing year, month, day, hours, minutes, seconds. This series of values are by default supposed to be in Terrestial Time (TT).

It is also possible to provide another Epoch object as input for the set() method, or the year, month, etc arguments can be provided in a tuple or list. Moreover, it is also possible provide date or datetime objects for initialization.

The month value can be provided as an integer (1 = January, 2 = February, etc), or it can be provided as short (Jan, Feb, …) or long (January, February, …) names. Also, hours, minutes, seconds can be provided separately, or as decimals of the day value.

When a UTC time is provided, the parameter utc=True must be given. Then, the input is converted to International Atomic Time (TAI) using an internal table of leap seconds, and from there, it is converted to (and stored as) Terrestrial Time (TT). If utc is not provided, it is supposed that the input data is already in TT scale.

If a value is provided with the leap_seconds argument, then that value will be used for the UTC->TAI conversion, and the internal leap seconds table will be bypassed.

It is also possible to provide a local time with the parameter local=True. In such case, the method utc2local() is called to compute the LocalTime-UTC difference. This implies that the parameter utc=True is automatically set.

Note

The UTC to TT correction is only carried out for dates after January 1st, 1972.

Note

Please bear in mind that, in order for the method utc2local() to work, your operative system must be correctly configured, with the right time and corresponding time zone.

Parameters:
  • args (int, float, Epoch, tuple, list, date, datetime) – Either JDE, Epoch, date, datetime or year, month, day, hours, minutes, seconds values, by themselves or inside a tuple or list.
  • utc (bool) – Whether the provided epoch is a civil time (UTC).
  • leap_seconds (int, float) – This is the value to be used in the UTC->TAI conversion, instead of taking it from internal leap seconds table.
  • local – Whether the provided epoch is a local time.
Returns:

None.

Return type:

None

Raises:

ValueError if input values are in the wrong range.

Raises:

TypeError if input values are of wrong type.

>>> e = Epoch()
>>> e.set(1987, 6, 19.5)
>>> print(e)
2446966.0
>>> e.set(1977, 'Apr', 26.4)
>>> print(e)
2443259.9
>>> e.set(1957, 'October', 4.81)
>>> print(e)
2436116.31
>>> e.set(333, 'Jan', 27, 12)
>>> print(e)
1842713.0
>>> e.set(1900, 'Jan', 1)
>>> print(e)
2415020.5
>>> e.set(-1001, 'august', 17.9)
>>> print(e)
1355671.4
>>> e.set(-4712, 1, 1.5)
>>> print(e)
0.0
>>> e.set((1600, 12, 31))
>>> print(e)
2305812.5
>>> e.set([1988, 'JUN', 19, 12])
>>> print(e)
2447332.0
>>> d = datetime.date(2000, 1, 1)
>>> e.set(d)
>>> print(e)
2451544.5
>>> e.set(837, 'Apr', 10, 7, 12)
>>> print(e)
2026871.8
>>> d = datetime.datetime(837, 4, 10, 7, 12, 0, 0)
>>> e.set(d)
>>> print(e)
2026871.8
>>> e = Epoch(JDE2000, utc=True)
>>> print(round((e - JDE2000) * DAY2SEC, 3))
64.184
>>> e = Epoch(2451545.0, utc=True)
>>> print(round((e - JDE2000) * DAY2SEC, 3))
64.184
>>> e = Epoch(JDE2000, local=True)
>>> print(round((e - JDE2000) * DAY2SEC - Epoch.utc2local(), 3))
64.184
>>> e = Epoch(JDE2000, local=True, leap_seconds=35.0)
>>> print(round((e - JDE2000) * DAY2SEC - Epoch.utc2local(), 3))
77.184
static tt2ut(year, month)[source]

This method provides an approximation of the difference, in seconds, between Terrestrial Time and Universal Time, denoted DeltaT, where: DeltaT = TT - UT.

Here we depart from Meeus book and use the polynomial expressions from:

https://eclipse.gsfc.nasa.gov/LEcat5/deltatpoly.html

Which are regarded as more elaborate and precise than Meeus’.

Please note that, by definition, the UTC time used internally in this Epoch class by default is kept within 0.9 seconds from UT. Therefore, UTC is in itself a quite good approximation to UT, arguably better than some of the results provided by this method.

Parameters:
  • year (int, float) – Year we want to compute DeltaT for.
  • month (int, float) – Month we want to compute DeltaT for.
Returns:

DeltaT, in seconds

Return type:

float

>>> round(Epoch.tt2ut(1642, 1), 1)
62.1
>>> round(Epoch.tt2ut(1680, 1), 1)
15.3
>>> round(Epoch.tt2ut(1700, 1), 1)
8.8
>>> round(Epoch.tt2ut(1726, 1), 1)
10.9
>>> round(Epoch.tt2ut(1750, 1), 1)
13.4
>>> round(Epoch.tt2ut(1774, 1), 1)
16.7
>>> round(Epoch.tt2ut(1800, 1), 1)
13.7
>>> round(Epoch.tt2ut(1820, 1), 1)
11.9
>>> round(Epoch.tt2ut(1890, 1), 1)
-6.1
>>> round(Epoch.tt2ut(1928, 2), 1)
24.2
>>> round(Epoch.tt2ut(1977, 2), 1)
47.7
>>> round(Epoch.tt2ut(1998, 1), 1)
63.0
>>> round(Epoch.tt2ut(2015, 7), 1)
69.3
static utc2local()[source]

Method to return the difference between UTC and local time.

This method provides you the seconds that you have to add or subtract to UTC time to convert to your local time. The correct way to apply this method is according to the expression:

utc2local() = LocalTime - UTC

Therefore, if for example you are located in a place whose corresponding time zone is UTC+2, then this method will yield 7200 (seconds in two hours) and you must then apply this expression:

LocalTime = UTC + utclocal() = UTC + 7200

Note

Please bear in mind that, in order for this method to work, your operative system must be correctly configured, with the right time and corresponding time zone.

Note

Remember that class Epoch internally stores time as Terrestrial Time (TT), not UTC. In order to get the UTC time you must use a method like get_date() or get_full_date() and pass the parameter utc=True.

Returns:Difference in seconds between local and UTC time, in that order.
Return type:float
year()[source]

This method returns the contents of this object as a year with decimals.

Returns:Year with decimals.
Return type:float
>>> e = Epoch(1993, 'October', 1)
>>> print(round(e.year(), 4))
1993.7479
pymeeus.Epoch.JDE2000 = Epoch(2451545.0)

Standard epoch for January 1st, 2000 at 12h corresponding to JDE2451545.0

pymeeus.Epoch.LEAP_TABLE = {1972.5: 1, 1973.0: 2, 1974.0: 3, 1975.0: 4, 1976.0: 5, 1977.0: 6, 1978.0: 7, 1979.0: 8, 1980.0: 9, 1981.5: 10, 1982.5: 11, 1983.5: 12, 1985.5: 13, 1988.0: 14, 1990.0: 15, 1991.0: 16, 1992.5: 17, 1993.5: 18, 1994.5: 19, 1996.0: 20, 1997.5: 21, 1999.0: 22, 2006.0: 23, 2009.0: 24, 2012.5: 25, 2015.5: 26, 2017.0: 27}

This table represents the point in time FROM WHERE the given number of leap seconds is valid. Given that leap seconds are (so far) always added at June 30th or December 31st, a leap second added in 1997/06/30 is represented here as ‘1997.5’, while a leap second added in 2005/12/31 appears here as ‘2006.0’.

Interpolation

Class to find intermediate values from those given in a table.

class pymeeus.Interpolation.Interpolation(*args)[source]

Class Interpolation deals with finding intermediate values to those given in a table.

Besides the basic interpolation, this class also provides methods to find the extrema (maximum or minimum value) in a given interval (if present), and it also has methods to find roots (the values of the argument ‘x’ for which the function ‘y’ becomes zero).

Please note that it seems that Meeus uses the Bessel interpolation method (Chapter 3). However, this class uses the Newton interpolation method because it is (arguably) more flexible regarding the number of entries provided in the interpolation table.

The constructor takes pairs of (x, y) values from the table of interest. These pairs of values can be given as a sequence of int/floats, tuples, lists or Angles. It is also possible to provide an Interpolation object to the constructor in order to get a copy.

Note

When using Angles, be careful with the 360-to-0 discontinuity.

If a sequence of int, floats or Angles is given, the values in the odd positions are considered to belong to the ‘x’ set, while the values in the even positions belong to the ‘y’ set. If only one tuple or list is provided, it is assumed that it is the ‘y’ set, and the ‘x’ set is build from 0 onwards with steps of length 1.

Please keep in mind that a minimum of two data pairs are needed in order to carry out any interpolation. If only one value pair is provided, a ValueError exception will be raised.

__call__(x)[source]

Method to interpolate the function at a given ‘x’.

Parameters:x (int, float, Angle) – Point where the interpolation will be carried out.
Returns:Resulting value of the interpolation.
Return type:float
Raises:ValueError if input value is outside of interpolation range.
Raises:TypeError if input value is of wrong type.
>>> i = Interpolation([7, 8, 9], [0.884226, 0.877366, 0.870531])
>>> y = round(i(8.18125), 6)
>>> print(y)
0.876125
__init__(*args)[source]

Interpolation constructor.

This takes pairs of (x, y) values from the table of interest. These pairs of values can be given as a sequence of int/floats, tuples, lists or Angles. It is also possible to provide an Interpolation object to the constructor in order to get a copy.

Note

When using Angles, be careful with the 360-to-0 discontinuity

If a sequence of int, floats or Angles is given, the values in the odd positions are considered to belong to the ‘x’ set, while the values in the even positions belong to the ‘y’ set. If only one tuple or list is provided, it is assumed that it is the ‘y’ set, and the ‘x’ set is build from 0 onwards with steps of length 1.

Please keep in mind that a minimum of two data pairs are needed in order to carry out any interpolation. If only one value pair is provided, a ValueError exception will be raised.

Parameters:args (int, float, list, tuple, Angle, Interpolation) – Input tabular values, or another Interpolation object.
Returns:Interpolation object.
Return type:Interpolation
Raises:ValueError if not enough input data pairs are provided.
Raises:TypeError if input values are of wrong type.
>>> i = Interpolation([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> print(i._x)
[1, 2, 3, 4, 5, 6]
>>> print(i._y)
[2, 4, 6, 8, 10, 12]
>>> j = Interpolation([3, -8, 1, 12, 2, 5, 8])
>>> print(j._x)
[0, 1, 2, 3, 4, 5, 6]
>>> print(j._y)
[3, -8, 1, 12, 2, 5, 8]
>>> k = Interpolation(3, -8, 1, 12, 2, 5, 8)
>>> print(k._x)
[1, 2, 3]
>>> print(k._y)
[12, 5, -8]
__len__()[source]

This method returns the number of interpolation points (x, y, pairs) stored in this Interpolation object.

Returns:Number of interpolation points internally stored
Return type:int
>>> i = Interpolation([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> len(i)
6
__repr__()[source]

Method providing the ‘official’ string representation of the object. It provides a valid expression that could be used to recreate the object.

Returns:As string with a valid expression to recreate the object
Return type:string
>>> i = Interpolation([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> repr(i)
'Interpolation([1, 2, 3, 4, 5, 6], [2, 4, 6, 8, 10, 12])'
__str__()[source]

Method used when trying to print the object.

Returns:Internal tabular values as strings.
Return type:string
>>> i = Interpolation([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> print(i)
X: [1, 2, 3, 4, 5, 6]
Y: [2, 4, 6, 8, 10, 12]
__weakref__

list of weak references to the object (if defined)

derivative(x)[source]

Method to compute the derivative from interpolation polynomial.

Parameters:x (int, float, Angle) – Point where the interpolation derivative will be carried out.
Returns:Resulting value of the interpolation derivative.
Return type:float
Raises:ValueError if input value is outside of interpolation range.
Raises:TypeError if input value is of wrong type.
>>> m = Interpolation([-1.0, 0.0, 1.0], [-2.0, 3.0, 2.0])
>>> m.derivative(-1.0)
8.0
>>> m.derivative(0.5)
-1.0
get_tolerance()[source]

Gets the internal tolerance value used for comparisons.

Note

The default tolerance value is TOL.

Returns:Internal tolerance.
Return type:float
minmax(xl=0, xh=0, max_iter=1000)[source]

Method to find the minimum or maximum inside the [xl, xh] range.

Finding the minimum or maximum (extremum) of a function within a given interval is akin to find the root of its derivative. Therefore, this method creates an interpolation object for the derivative function, and calls the root method of that object. See root() method for more details.

If values xl, xh are not given, the limits of the interpolation table values will be used.

Note

This method returns a ValueError exception if the corresponding derivatives yl’ = f’(xl) and yh’ = f’(xh) values have the same sign. In that case, the method assumes there is no extremum in the [xl, xh] interval.

Note

If any of the xl, xh values is beyond the limits given by the interpolation values, its value will be set to the corresponding limit.

Note

If xl == xh (and not zero), a ValueError exception is raised.

Note

If the method doesn’t converge within max_iter ierations, then a ValueError exception is raised.

Parameters:
  • xl (int, float, Angle) – Lower limit of interval where a extremum will be looked for.
  • xh (int, float, Angle) – Higher limit of interval where extremum will be looked for.
  • max_iter (int) – Maximum number of iterations allowed.
Returns:

Extremum of interpolated function within [xl, xh] interval.

Return type:

int, float, Angle

Raises:

ValueError if yl = f(xl), yh = f(xh) have same sign.

Raises:

ValueError if xl == xh.

Raises:

ValueError if maximum number of iterations is exceeded.

Raises:

TypeError if input value is of wrong type.

>>> m = Interpolation([-1.0, 0.0, 1.0], [-2.0, 3.0, 2.0])
>>> round(m.minmax(), 8)
0.33333333
root(xl=0, xh=0, max_iter=1000)[source]

Method to find the root inside the [xl, xh] range.

This method applies, in principle, the Newton method to find the root; however, if conditions are such that Newton method may not bei properly behaving or converging, then it switches to the linear Interpolation method.

If values xl, xh are not given, the limits of the interpolation table values will be used.

Note

This method returns a ValueError exception if the corresponding yl = f(xl) and yh = f(xh) values have the same sign. In that case, the method assumes there is no root in the [xl, xh] interval.

Note

If any of the xl, xh values is beyond the limits given by the interpolation values, its value will be set to the corresponding limit.

Note

If xl == xh (and not zero), a ValueError exception is raised.

Note

If the method doesn’t converge within max_iter ierations, then a ValueError exception is raised.

Parameters:
  • xl (int, float, Angle) – Lower limit of interval where the root will be looked for.
  • xh (int, float, Angle) – Higher limit of interval where the root will be looked for.
  • max_iter (int) – Maximum number of iterations allowed.
Returns:

Root of the interpolated function within [xl, xh] interval.

Return type:

int, float, Angle

Raises:

ValueError if yl = f(xl), yh = f(xh) have same sign.

Raises:

ValueError if xl == xh.

Raises:

ValueError if maximum number of iterations is exceeded.

Raises:

TypeError if input value is of wrong type.

>>> m = Interpolation([-1.0, 0.0, 1.0], [-2.0, 3.0, 2.0])
>>> round(m.root(), 8)
-0.72075922
set(*args)[source]

Method used to define the value pairs of Interpolation object.

This takes pairs of (x, y) values from the table of interest. These pairs of values can be given as a sequence of int/floats, tuples, lists, or Angles. It is also possible to provide an Interpolation object to this method in order to get a copy.

Note

When using Angles, be careful with the 360-to-0 discontinuity

If a sequence of int, floats or Angles is given, the values in the odd positions are considered to belong to the ‘x’ set, while the values in the even positions belong to the ‘y’ set. If only one tuple or list is provided, it is assumed that it is the ‘y’ set, and the ‘x’ set is build from 0 onwards with steps of length 1.

Please keep in mind that a minimum of two data pairs are needed in order to carry out any interpolation. If only one value pair is provided, a ValueError exception will be raised.

Parameters:args (int, float, list, tuple, Angle) – Input tabular values, or another Interpolation object.
Returns:None.
Return type:None
Raises:ValueError if not enough input data pairs are provided.
Raises:TypeError if input values are of wrong type.
>>> i = Interpolation()
>>> i.set([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])
>>> print(i._x)
[1, 2, 3, 4, 5, 6]
>>> print(i._y)
[2, 4, 6, 8, 10, 12]
>>> j = Interpolation()
>>> j.set([3, -8, 1, 12, 2, 5, 8])
>>> print(j._x)
[0, 1, 2, 3, 4, 5, 6]
>>> print(j._y)
[3, -8, 1, 12, 2, 5, 8]
>>> k = Interpolation(3, -8, 1, 12, 2, 5, 8)
>>> print(k._x)
[1, 2, 3]
>>> print(k._y)
[12, 5, -8]
>>> m = Interpolation(k)
>>> print(m._x)
[1, 2, 3]
>>> print(m._y)
[12, 5, -8]
set_tolerance(tol)[source]

Changes the internal tolerance value used for comparisons.

Parameters:tol (int, float) – New tolerance value.
Returns:None
Return type:None

Bodies

Earth

Class to model Earth’s globe.

class pymeeus.Earth.Earth(ellipsoid=Ellipsoid(6378137.0, 0.00335281066475, 7.292115e-05))[source]

Class Earth models the figure of the Earth surface and, with the help of a configurable reference ellipsoid, provides a set of handy method to compute different parameters, like the distance between two points on the surface.

Please note that here we depart a little bit from Meeus’ book because the Earth class uses the World Geodetic System 1984 (WGS84) as the default reference ellipsoid, instead of the International Astronomical Union 1974, which Meeus uses. This change is done because WGS84 is regarded as more modern.

__init__(ellipsoid=Ellipsoid(6378137.0, 0.00335281066475, 7.292115e-05))[source]

Earth constructor.

It takes a reference ellipsoid as input. If not provided, the ellipsoid used is the WGS84 by default.

Parameters:ellipsoid – Reference ellipsoid to be used. WGS84 by default.
Returns:Earth object.
Return type:Earth
Raises:TypeError if input value is of wrong type.
__repr__()[source]

Method providing the ‘official’ string representation of the object. It provides a valid expression that could be used to recreate the object.

Returns:As string with a valid expression to recreate the object
Return type:string
__str__()[source]

Method used when trying to print the Earth object. It essentially returns the corresponting ‘__str__()’ method from the reference ellipsoid being used.

Returns:Semi-major equatorial radius, flattening and angular velocity of the current reference ellipsoid, as a string.
Return type:string
>>> e = Earth()
>>> s = str(e)
>>> v = s.split(':')
>>> print(v[0] + '|' + str(round(float(v[1]), 14)) + '|' + v[2] )
6378137.0|0.00335281066475|7.292115e-05
__weakref__

list of weak references to the object (if defined)

static apparent_heliocentric_position(epoch, nutation=True)[source]

This method computes the apparent heliocentric position of the Earth for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Earth position, as an Epoch object
  • nutation (bool) – Whether the nutation correction will be applied
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1992, 10, 13.0)
>>> lon, lat, r = Earth.apparent_heliocentric_position(epoch)
>>> print(round(lon.to_positive(), 6))
19.905986
>>> print(lat.dms_str(n_dec=3))
-0.721''
>>> print(round(r, 8))
0.99760852
distance(lon1, lat1, lon2, lat2)[source]

This method computes the distance between two points on the Earth’s surface using the method from H. Andoyer.

Note

We will consider that positions ‘East’ and ‘South’ are negative.

Parameters:
  • lon1 (int, float, Angle) – Longitude of the first point, in degrees
  • lat1 (int, float, Angle) – Geodetical or geographical latitude of the first point, in degrees
  • lon2 (int, float, Angle) – Longitude of the second point, in degrees
  • lat2 (int, float, Angle) – Geodetical or geographical latitude of the second point, in degrees
Returns:

Tuple with distance between the two points along Earth’s surface, and approximate error, in meters

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> e = Earth(ellipsoid=IAU76)
>>> lon1 = Angle(-2, 20, 14.0)
>>> lat1 = Angle(48, 50, 11.0)
>>> lon2 = Angle(77, 3, 56.0)
>>> lat2 = Angle(38, 55, 17.0)
>>> dist, error = e.distance(lon1, lat1, lon2, lat2)
>>> round(dist, 0)
6181628.0
>>> error
69.0
>>> lon1 = Angle(-2.09)
>>> lat1 = Angle(41.3)
>>> lon2 = Angle(73.99)
>>> lat2 = Angle(40.75)
>>> dist, error = e.distance(lon1, lat1, lon2, lat2)
>>> round(dist, 0)
6176760.0
>>> error
69.0
static geometric_heliocentric_position(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of the Earth for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Earth position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1992, 10, 13.0)
>>> l, b, r = Earth.geometric_heliocentric_position(epoch, tofk5=False)
>>> print(round(l.to_positive(), 6))
19.907297
>>> print(b.dms_str(n_dec=3))
-0.744''
>>> print(round(r, 8))
0.99760852
static geometric_heliocentric_position_j2000(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of the Earth for a given epoch, using the VSOP87 theory, referred to the equinox J2000.0.

Parameters:
  • epoch (Epoch) – Epoch to compute Earth position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

linear_velocity(latitude)[source]

Method to compute the linear velocity of a point at latitude, due to the rotation of the Earth.

Parameters:latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
Returns:Linear velocity of a point at latitude, in meters per second
Return type:float
Raises:TypeError if input value is of wrong type.
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.linear_velocity(42.0), 2)
346.16
static orbital_elements_j2000(epoch)[source]

This method computes the orbital elements of Earth for the standard equinox J2000.0 for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Earth.orbital_elements_j2000(epoch)
>>> print(round(l, 6))
271.801199
>>> print(round(a, 8))
1.00000102
>>> print(round(e, 7))
0.0166811
>>> print(round(i, 6))
0.008544
>>> print(round(ome, 5))
174.71534
>>> print(round(arg, 6))
-71.566717
static orbital_elements_mean_equinox(epoch)[source]

This method computes the orbital elements of Earth for the mean equinox of the date for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Earth.orbital_elements_mean_equinox(epoch)
>>> print(round(l, 6))
272.716028
>>> print(round(a, 8))
1.00000102
>>> print(round(e, 7))
0.0166811
>>> print(round(i, 6))
0.0
>>> print(round(ome, 5))
174.71534
>>> print(round(arg, 6))
-70.651889
static parallax_correction(right_ascension, declination, latitude, distance, hour_angle, height=0.0)[source]

This function computes the parallaxes in right ascension and declination in order to obtain the topocentric values.

Parameters:
  • right_ascension (Angle) – Geocentric right ascension, as an Angle object
  • declination (Angle) – Geocentric declination, as an Angle object
  • latitude (Angle) – Latitude of the observation point
  • distance (float) – Distance from the celestial object to the Earth, in Astronomical Units
  • hour_angle (Angle) – Geocentric hour angle of the celestial object, as an Angle
  • heigth – Height of observation point above sea level, in meters
Returns:

Tuple containing the topocentric right ascension and declination

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> right_ascension = Angle(22, 38, 7.25, ra=True)
>>> declination = Angle(-15, 46, 15.9)
>>> latitude = Angle(33, 21, 22)
>>> distance = 0.37276
>>> hour_angle = Angle(288.7958)
>>> topo_ra, topo_dec = Earth.parallax_correction(right_ascension,                                                           declination,                                                           latitude, distance,                                                           hour_angle)
>>> print(topo_ra.ra_str(n_dec=2))
22h 38' 8.54''
>>> print(topo_dec.dms_str(n_dec=1))
-15d 46' 30.0''
static parallax_ecliptical(longitude, latitude, semidiameter, obs_lat, obliquity, sidereal_time, distance, height=0.0)[source]

This function computes the topocentric coordinates of a celestial body (Moon or planet) directly from its geocentric values in ecliptical coordinates.

Parameters:
  • longitude (Angle) – Geocentric ecliptical longitude as an Angle
  • latitude (Angle) – Geocentric ecliptical latitude as an Angle
  • semidiameter (Angle) – Geocentric semidiameter as an Angle
  • obs_lat (Angle) – Latitude of the observation point
  • obliquity (Angle) – Obliquity of the eliptic, as an Angle
  • sidereal_time (Angle) – Local sidereal time, as an Angle
  • distance (float) – Distance from the celestial object to the Earth, in Astronomical Units
  • heigth – Height of observation point above sea level, in meters
Returns:

Tuple containing the topocentric longitude, latitude and semidiameter

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> longitude = Angle(181, 46, 22.5)
>>> latitude = Angle(2, 17, 26.2)
>>> semidiameter = Angle(0, 16, 15.5)
>>> obs_lat = Angle(50, 5, 7.8)
>>> obliquity = Angle(23, 28, 0.8)
>>> sidereal_time = Angle(209, 46, 7.9)
>>> distance = 0.0024650163
>>> topo_lon, topo_lat, topo_diam =                 Earth.parallax_ecliptical(longitude, latitude, semidiameter,                                           obs_lat, obliquity, sidereal_time,                                           distance)
>>> print(topo_lon.dms_str(n_dec=1))
181d 48' 5.0''
>>> print(topo_lat.dms_str(n_dec=1))
1d 29' 7.1''
>>> print(topo_diam.dms_str(n_dec=1))
16' 25.5''
static passage_nodes(epoch, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of Earth, nearest to the given epoch.

Parameters:
  • epoch (Epoch) – Epoch closest to the node passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2019, 1, 1)
>>> time, r = Earth.passage_nodes(epoch)
>>> year, month, day = time.get_date()
>>> print(year)
2019
>>> print(month)
3
>>> print(round(day, 1))
15.0
>>> print(round(r, 4))
0.9945
static perihelion_aphelion(epoch, perihelion=True)[source]

This method computes the time of Perihelion (or Aphelion) closer to a given epoch.

Parameters:
  • epoch (Epoch) – Epoch close to the desired Perihelion (or Aphelion)
  • peihelion – If True, the epoch of the closest Perihelion is computed, if False, the epoch of the closest Aphelion is found.
Returns:

The epoch of the desired Perihelion (or Aphelion)

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1989, 11, 20.0)
>>> e = Earth.perihelion_aphelion(epoch)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
1990
>>> print(m)
1
>>> print(d)
4
>>> print(h)
17
>>> epoch = Epoch(2000, 4, 1.0)
>>> e = Earth.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2000
>>> print(m)
7
>>> print(d)
3
>>> print(h)
23
>>> print(mi)
51
>>> epoch = Epoch(2003, 3, 10.0)
>>> e = Earth.perihelion_aphelion(epoch)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2003
>>> print(m)
1
>>> print(d)
4
>>> print(h)
5
>>> print(mi)
1
>>> epoch = Epoch(2009, 5, 1.0)
>>> e = Earth.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2009
>>> print(m)
7
>>> print(d)
4
>>> print(h)
1
>>> print(mi)
41
rho(latitude)[source]

Method to compute the rho term, which is the observer distance to the center of the Earth, when the observer is at sea level. In this case, the Earth’s equatorial radius is taken as unity.

Parameters:latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
Returns:Rho: Distance to the center of the Earth from sea level. It is a ratio with respect to Earth equatorial radius.
Return type:float
Raises:TypeError if input value is of wrong type.
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rho(0.0), 1)
1.0
rho_cosphi(latitude, height)[source]

Method to compute the rho*cos(phi’) term, needed in the calculation of diurnal parallaxes, eclipses and occulatitions.

Parameters:
  • latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
  • height (int, float) – Height of the observer above the sea level, in meters
Returns:

rho*cos(phi’) term

Return type:

float

Raises:

TypeError if input value is of wrong type.

>>> lat = Angle(33, 21, 22.0)
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rho_cosphi(lat, 1706), 6)
0.836339
rho_sinphi(latitude, height)[source]

Method to compute the rho*sin(phi’) term, needed in the calculation of diurnal parallaxes, eclipses and occulatitions.

Parameters:
  • latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
  • height (int, float) – Height of the observer above the sea level, in meters
Returns:

rho*sin(phi’) term

Return type:

float

Raises:

TypeError if input value is of wrong type.

>>> lat = Angle(33, 21, 22.0)
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rho_sinphi(lat, 1706), 6)
0.546861
rm(latitude)[source]

Method to compute the radius of curvature of the Earth’s meridian at the given latitude.

Parameters:latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
Returns:Radius of curvature of the Earth’s meridian at the given latitude, in meters
Return type:float
Raises:TypeError if input value is of wrong type.
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rm(42.0), 1)
6364033.3
rp(latitude)[source]

Method to compute the radius of the parallel circle at the given latitude.

Parameters:latitude (int, float, Angle) – Geodetical or geographical latitude of the observer, in degrees
Returns:Radius of the parallel circle at given latitude, in meters
Return type:float
Raises:TypeError if input value is of wrong type.
>>> e = Earth(ellipsoid=IAU76)
>>> round(e.rp(42.0), 1)
4747001.2
set(ellipsoid)[source]

Method used to define an Earth object.

It takes a reference ellipsoid as input. If not provided, the ellipsoid used is the WGS84 by default.

Parameters:ellipsoid – Reference ellipsoid to be used. WGS84 by default.
Returns:None
Return type:None
Raises:TypeError if input value is of wrong type.
class pymeeus.Earth.Ellipsoid(a, f, omega)[source]

Class Ellipsoid is useful to encapsulate the most important parameters of a given reference ellipsoid.

__init__(a, f, omega)[source]

Ellipsoid constructor.

Parameters:
  • a (float) – Semi-major or equatorial radius, in meters
  • f (float) – Flattening
  • omega (float) – Angular velocity of the Earth, in rad/s
__repr__()[source]

Method providing the ‘official’ string representation of the object. It provides a valid expression that could be used to recreate the object.

Returns:As string with a valid expression to recreate the object
Return type:string
>>> a = Ellipsoid(6378140.0, 0.0033528132, 7.292e-5)
>>> repr(a)
'Ellipsoid(6378140.0, 0.0033528132, 7.292e-05)'
__str__()[source]

Method used when trying to print the object.

Returns:Semi-major equatorial radius, flattening and angular velocity as a string.
Return type:string
>>> a = Ellipsoid(6378140.0, 0.0033528132, 7.292e-5)
>>> print(a)
6378140.0:0.0033528132:7.292e-05
__weakref__

list of weak references to the object (if defined)

b()[source]

Method to return the semi-minor radius.

Returns:Semi-minor radius, in meters
Return type:float
>>> a = Ellipsoid(6378140.0, 0.0033528132, 7.292e-5)
>>> round(a.b(), 3)
6356755.288
e()[source]

Method to return the eccentricity of the Earth’s meridian.

Returns:Eccentricity of the Earth’s meridian
Return type:float
>>> a = Ellipsoid(6378140.0, 0.0033528132, 7.292e-5)
>>> round(a.e(), 8)
0.08181922
pymeeus.Earth.IAU76 = Ellipsoid(6378140.0, 0.0033528131779, 7.292114992e-05)

Reference ellipsoid defined by the International Astronomic Union in 1976

pymeeus.Earth.ORBITAL_ELEM = [[100.466457, 36000.7698278, 0.00030322, 2e-08], [1.000001018, 0.0, 0.0, 0.0], [0.01670863, -4.2037e-05, -1.267e-07, 1.4e-10], [0.0, 0.0, 0.0, 0.0], [174.873176, -0.2410908, 4.262e-05, 1e-09], [102.937348, 1.7195366, 0.00045688, -1.8e-08]]

This table contains the parameters to compute Earth’s orbital elements for the mean equinox of date. Based in Table 31.A, page 212

pymeeus.Earth.ORBITAL_ELEM_J2000 = [[100.466457, 35999.3728565, -5.68e-06, -1e-09], [0.0, 0.0130548, -9.31e-06, -3.4e-08], [174.873176, -0.2410908, 4.262e-05, 1e-09], [102.937348, 0.3225654, 0.00014799, -3.9e-08]]

This table contains the parameters to compute Earth’s orbital elements for the standard equinox J2000.0. Based on Table 31.B, page 214

pymeeus.Earth.VSOP87_B = [[[279.62, 3.19870156017, 84334.66158130829], [101.643, 5.42248619256, 5507.5532386674], [80.445, 3.88013204458, 5223.6939198022], [43.806, 3.70444689758, 2352.8661537718], [31.933, 4.00026369781, 1577.3435424478], [22.724, 3.9847383156, 1047.7473117547], [16.392, 3.56456119782, 5856.4776591154], [18.141, 4.98367470263, 6283.0758499914], [14.443, 3.70275614914, 9437.762934887], [14.304, 3.41117857525, 10213.285546211], [11.246, 4.8282069053, 14143.4952424306], [10.9, 2.08574562327, 6812.766815086], [9.714, 3.47303947752, 4694.0029547076], [10.367, 4.05663927946, 71092.88135493269], [8.775, 4.44016515669, 5753.3848848968], [8.366, 4.9925151218, 7084.8967811152], [6.921, 4.32559054073, 6275.9623029906], [9.145, 1.14182646613, 6620.8901131878], [7.194, 3.60193205752, 529.6909650946], [7.698, 5.55425745881, 167621.5758508619], [5.285, 2.48446991566, 4705.7323075436], [5.208, 6.24992674537, 18073.7049386502], [4.529, 2.33827747356, 6309.3741697912], [5.579, 4.41023653738, 7860.4193924392], [4.743, 0.70995680136, 5884.9268465832], [4.301, 1.10255777773, 6681.2248533996], [3.849, 1.82229412531, 5486.777843175], [4.093, 5.11700141207, 13367.9726311066], [3.681, 0.43793170356, 3154.6870848956], [3.42, 5.42034800952, 6069.7767545534], [3.617, 6.04641937526, 3930.2096962196], [3.67, 4.58210192227, 12194.0329146209], [2.918, 1.95463881126, 10977.078804699], [2.797, 5.61259275048, 11790.6290886588], [2.502, 0.60499729367, 6496.3749454294], [2.319, 5.01648216014, 1059.3819301892], [2.684, 1.39470396488, 22003.9146348698], [2.428, 3.24183056052, 78051.5857313169], [2.12, 4.30691000285, 5643.1785636774], [2.257, 3.15557225618, 90617.7374312997], [1.813, 3.75574218285, 3340.6124266998], [2.226, 2.79699346659, 12036.4607348882], [1.888, 0.86991545823, 8635.9420037632], [1.517, 1.95852055701, 398.1490034082], [1.581, 3.19976230948, 5088.6288397668], [1.421, 6.25530883827, 2544.3144198834], [1.595, 0.25619915135, 17298.1823273262], [1.391, 4.69964175561, 7058.5984613154], [1.478, 2.81808207569, 25934.1243310894], [1.481, 3.65823554806, 11506.7697697936], [1.693, 4.95689385293, 156475.2902479957], [1.183, 1.29343061246, 775.522611324], [1.114, 2.37889311846, 3738.761430108], [0.994, 4.30088900425, 9225.539273283], [0.924, 3.06451026812, 4164.311989613], [0.867, 0.55606931068, 8429.2412664666], [0.988, 5.97286104208, 7079.3738568078], [0.824, 1.50984806173, 10447.3878396044], [0.915, 0.12635654592, 11015.1064773348], [0.742, 1.99159139281, 26087.9031415742], [1.039, 3.14159265359, 0.0], [0.85, 4.24120016095, 29864.334027309], [0.755, 2.8963187332, 4732.0306273434], [0.714, 1.37548118603, 2146.1654164752], [0.708, 1.91406542362, 8031.0922630584], [0.746, 0.57893808616, 796.2980068164], [0.802, 5.1233913723, 2942.4634232916], [0.751, 1.67479850166, 21228.3920235458], [0.602, 4.09976538826, 64809.80550494129], [0.594, 3.49580704962, 16496.3613962024], [0.592, 4.59481504319, 4690.4798363586], [0.53, 5.739792952, 8827.3902698748], [0.503, 5.66433137112, 33794.5437235286], [0.483, 1.57106522411, 801.8209311238], [0.438, 0.06707733767, 3128.3887650958], [0.423, 2.86944595927, 12566.1516999828], [0.504, 3.2620766916, 7632.9432596502], [0.552, 1.02926440457, 239762.20451754928], [0.427, 3.6743437821, 213.299095438], [0.404, 1.46193297142, 15720.8387848784], [0.503, 4.85802444134, 6290.1893969922], [0.417, 0.81920713533, 5216.5803728014], [0.365, 0.01002966162, 12168.0026965746], [0.363, 1.28376436579, 6206.8097787158], [0.353, 4.7005913311, 7234.794256242], [0.415, 0.96862624175, 4136.9104335162], [0.387, 3.09145061418, 25158.6017197654], [0.373, 2.65119262792, 7342.4577801806], [0.361, 2.97762937739, 9623.6882766912], [0.418, 3.75759994446, 5230.807466803], [0.396, 1.22507712354, 6438.4962494256], [0.322, 1.21162178805, 8662.240323563], [0.284, 5.64170320068, 1589.0728952838], [0.379, 1.72248432748, 14945.3161735544], [0.32, 3.94161159962, 7330.8231617461], [0.313, 5.47602376446, 1194.4470102246], [0.292, 1.38971327603, 11769.8536931664], [0.305, 0.80429352049, 37724.7534197482], [0.257, 5.81382809757, 426.598190876], [0.265, 6.10358507671, 6836.6452528338], [0.25, 4.56452895547, 7477.522860216], [0.266, 2.62926282354, 7238.6755916], [0.263, 6.22089501237, 6133.5126528568], [0.306, 2.79682380531, 1748.016413067], [0.236, 2.46093023714, 11371.7046897582], [0.316, 1.62662805006, 250908.4901204155], [0.216, 3.68721275185, 5849.3641121146], [0.23, 0.36165162947, 5863.5912061162], [0.233, 5.03509933858, 20426.571092422], [0.2, 5.86073159059, 4535.0594369244], [0.277, 4.65400292395, 82239.1669577989], [0.209, 3.72323200804, 10973.55568635], [0.199, 5.05186622555, 5429.8794682394], [0.256, 2.4092327977, 19651.048481098], [0.21, 4.50691909144, 29088.811415985], [0.181, 6.00294783127, 4292.3308329504], [0.249, 0.12900984422, 154379.7956244863], [0.209, 3.87759458598, 17789.845619785], [0.225, 3.18339652605, 18875.525869774], [0.191, 4.53897489299, 18477.1087646123], [0.172, 2.09694183014, 13095.8426650774], [0.182, 3.161079435, 16730.4636895958], [0.188, 2.22746128596, 41654.9631159678], [0.164, 5.18686275017, 5481.2549188676], [0.16, 2.49298855159, 12592.4500197826], [0.155, 1.5959543823, 10021.8372800994], [0.135, 0.21349051064, 10988.808157535], [0.178, 3.8037517797, 23581.2581773176], [0.123, 1.66800739151, 15110.4661198662], [0.122, 2.72678272244, 18849.2275499742], [0.126, 1.1767551291, 14919.0178537546], [0.142, 3.95053441332, 337.8142631964], [0.116, 6.06340906229, 6709.6740408674], [0.137, 3.52143246757, 12139.5535091068], [0.136, 2.92179113542, 32217.2001810808], [0.11, 3.51203379263, 18052.9295431578], [0.147, 4.63371971408, 22805.7355659936], [0.108, 5.45280814878, 7.1135470008], [0.148, 0.65447253687, 95480.9471841745], [0.119, 5.92110458985, 33019.0211122046], [0.11, 5.34824206306, 639.897286314], [0.106, 3.71081682629, 14314.1681130498], [0.139, 6.17607198418, 24356.7807886416], [0.118, 5.5973871267, 161338.5000008705], [0.117, 3.6506527164, 45585.1728121874], [0.127, 4.74596574209, 49515.382508407], [0.12, 1.04211499785, 6915.8595893046], [0.12, 5.60638811846, 5650.2921106782], [0.115, 3.10668213289, 14712.317116458], [0.099, 0.69018940049, 12779.4507954208], [0.097, 1.07908724794, 9917.6968745098], [0.093, 2.62295197319, 17260.1546546904], [0.099, 4.45774681732, 4933.2084403326], [0.123, 1.37488922089, 28286.9904848612], [0.121, 5.19767249813, 27511.4678735372], [0.105, 0.87192267806, 77375.95720492408], [0.087, 3.9363781295, 17654.7805397496], [0.122, 2.2395606868, 83997.09113559539], [0.087, 4.18201600952, 22779.4372461938], [0.104, 4.59580877295, 1349.8674096588], [0.102, 2.83545248411, 12352.8526045448], [0.102, 3.97386522171, 10818.1352869158], [0.101, 4.32892825857, 36147.4098773004], [0.094, 5.00001709261, 150192.2143980043], [0.077, 3.97199369296, 1592.5960136328], [0.1, 6.07733097102, 26735.9452622132], [0.086, 5.2602963825, 28313.288804661], [0.093, 4.31900620254, 44809.6502008634], [0.076, 6.22743405935, 13521.7514415914], [0.072, 1.55820597747, 6256.7775301916], [0.082, 4.95202664555, 10575.4066829418], [0.082, 1.69647647075, 1990.745017041], [0.075, 2.29836095644, 3634.6210245184], [0.075, 2.66367876557, 16200.7727245012], [0.087, 0.26630214764, 31441.6775697568], [0.077, 2.25530954137, 5235.3285382367], [0.076, 1.09869730846, 12903.9659631792], [0.058, 4.28246138307, 12559.038152982], [0.064, 5.51112830114, 173904.65170085328], [0.056, 2.60133794851, 73188.3759784421], [0.055, 5.81483150022, 143233.51002162008], [0.054, 3.38482031504, 323049.11878710287], [0.039, 3.28500401343, 71768.50988132549], [0.039, 3.1123991069, 96900.81328129109]], [[9.03, 3.8972906189, 5507.5532386674], [6.177, 1.73038850355, 5223.6939198022], [3.8, 5.24404145734, 2352.8661537718], [2.834, 2.4734503745, 1577.3435424478], [1.817, 0.41874743765, 6283.0758499914], [1.499, 1.83320979291, 5856.4776591154], [1.466, 5.69401926017, 5753.3848848968], [1.301, 2.18890066314, 9437.762934887], [1.233, 4.95222451476, 10213.285546211], [1.021, 0.12866660208, 7860.4193924392], [0.982, 0.09005453285, 14143.4952424306], [0.865, 1.73949953555, 3930.2096962196], [0.581, 2.26949174067, 5884.9268465832], [0.524, 5.65662503159, 529.6909650946], [0.473, 6.22750969242, 6309.3741697912], [0.451, 1.53288619213, 18073.7049386502], [0.364, 3.61614477374, 13367.9726311066], [0.372, 3.2247072132, 6275.9623029906], [0.268, 2.34341267879, 11790.6290886588], [0.322, 0.94084045832, 6069.7767545534], [0.232, 0.26781182579, 7058.5984613154], [0.216, 6.05952221329, 10977.078804699], [0.232, 2.93325646109, 22003.9146348698], [0.204, 3.86264841382, 6496.3749454294], [0.202, 2.81892511133, 15720.8387848784], [0.185, 4.93512381859, 12036.4607348882], [0.22, 3.99305643742, 6812.766815086], [0.166, 1.74970002999, 11506.7697697936], [0.212, 1.57166285369, 4694.0029547076], [0.157, 1.08259734788, 5643.1785636774], [0.154, 5.99434678412, 5486.777843175], [0.144, 5.23285656085, 78051.5857313169], [0.144, 1.16454655948, 90617.7374312997], [0.137, 2.67760436027, 6290.1893969922], [0.18, 2.06509026215, 7084.8967811152], [0.121, 5.90212574947, 9225.539273283], [0.15, 2.00175038718, 5230.807466803], [0.149, 5.06157254516, 17298.1823273262], [0.118, 5.39979058038, 3340.6124266998], [0.161, 3.32421999691, 6283.3196674749], [0.121, 4.36722193162, 19651.048481098], [0.116, 5.83462858507, 4705.7323075436], [0.128, 4.35489873365, 25934.1243310894], [0.143, 0.0, 0.0], [0.109, 2.52157834166, 6438.4962494256], [0.099, 2.70727488041, 5216.5803728014], [0.103, 0.93782340879, 8827.3902698748], [0.082, 4.2921468039, 8635.9420037632], [0.079, 2.24085737326, 1059.3819301892], [0.097, 5.50959692365, 29864.334027309], [0.072, 0.21891639822, 21228.3920235458], [0.071, 2.86755026812, 6681.2248533996], [0.074, 2.20184828895, 37724.7534197482], [0.063, 4.45586625948, 7079.3738568078], [0.061, 0.63918772258, 33794.5437235286], [0.047, 2.09070235724, 3128.3887650958], [0.047, 3.325438433, 26087.9031415742], [0.049, 1.60680905005, 6702.5604938666], [0.057, 0.11215813438, 29088.811415985], [0.056, 5.47982934911, 775.522611324], [0.05, 1.89396788463, 12139.5535091068], [0.047, 2.9721490724, 20426.571092422], [0.041, 5.5532939489, 11015.1064773348], [0.041, 5.91861144924, 23581.2581773176], [0.045, 4.95273290181, 5863.5912061162], [0.05, 3.62740835096, 41654.9631159678], [0.037, 6.09033460601, 64809.80550494129], [0.037, 5.86153655431, 12566.1516999828], [0.046, 1.65798680284, 25158.6017197654], [0.038, 2.00673650251, 426.598190876], [0.036, 6.24373396652, 6283.14316029419], [0.036, 0.40465162918, 6283.0085396886], [0.032, 6.03707103538, 2942.4634232916], [0.041, 4.86809570283, 1592.5960136328], [0.028, 4.38359423735, 7632.9432596502], [0.028, 6.03334294232, 17789.845619785], [0.026, 3.88971333608, 5331.3574437408], [0.026, 5.94932724051, 16496.3613962024], [0.031, 1.44666331503, 16730.4636895958], [0.026, 6.26376705837, 23543.23050468179], [0.033, 0.93797239147, 213.299095438], [0.026, 3.71858432944, 13095.8426650774], [0.027, 0.60565274405, 10988.808157535], [0.023, 4.4438898555, 18849.2275499742], [0.028, 1.53862289477, 6279.4854213396], [0.028, 1.96831814872, 6286.6662786432], [0.028, 5.78094918529, 15110.4661198662], [0.026, 2.48165809843, 5729.506447149], [0.02, 3.85655029499, 9623.6882766912], [0.021, 5.83006047147, 7234.794256242], [0.021, 0.69628570421, 398.1490034082], [0.022, 5.02222806555, 6127.6554505572], [0.02, 3.4761126529, 6148.010769956], [0.02, 0.90769829044, 5481.2549188676], [0.02, 0.03081589303, 6418.1409300268], [0.02, 3.74220084927, 1589.0728952838], [0.021, 4.00149269576, 3154.6870848956], [0.018, 1.58348238359, 2118.7638603784], [0.019, 0.85407021371, 14712.317116458]], [[1.662, 1.62703209173, 84334.66158130829], [0.492, 2.41382223971, 1047.7473117547], [0.344, 2.24353004539, 5507.5532386674], [0.258, 6.00906896311, 5223.6939198022], [0.131, 0.9544734524, 6283.0758499914], [0.086, 1.67530247303, 7860.4193924392], [0.09, 0.97606804452, 1577.3435424478], [0.09, 0.37899871725, 2352.8661537718], [0.089, 6.25807507963, 10213.285546211], [0.075, 0.84213523741, 167621.5758508619], [0.052, 1.70501566089, 14143.4952424306], [0.057, 6.15295833679, 12194.0329146209], [0.051, 1.2761601674, 5753.3848848968], [0.051, 5.37229738682, 6812.766815086], [0.034, 1.73672994279, 7058.5984613154], [0.038, 2.77761031485, 10988.808157535], [0.046, 3.38617099014, 156475.2902479957], [0.021, 1.95248349228, 8827.3902698748], [0.018, 3.33419222028, 8429.2412664666], [0.019, 4.32945160287, 17789.845619785], [0.017, 0.66191210656, 6283.0085396886], [0.018, 3.74885333072, 11769.8536931664], [0.017, 4.23058370776, 10977.078804699], [0.017, 1.78116162721, 5486.777843175], [0.021, 1.36972913918, 12036.4607348882], [0.017, 2.79601092529, 796.2980068164], [0.015, 0.4308784885, 11790.6290886588], [0.017, 1.35132152761, 78051.5857313169], [0.015, 1.17032155085, 213.299095438], [0.018, 2.85221514199, 5088.6288397668], [0.017, 0.21780913672, 6283.14316029419], [0.013, 1.21201504386, 25132.3033999656], [0.012, 1.12953712197, 90617.7374312997], [0.012, 5.13714452592, 7079.3738568078], [0.013, 3.79842135217, 4933.2084403326], [0.012, 4.89407978213, 3738.761430108], [0.015, 6.05682328852, 398.1490034082], [0.014, 4.81029291856, 4694.0029547076], [0.011, 0.61684523405, 3128.3887650958], [0.011, 5.328765385, 6040.3472460174], [0.014, 5.27227350286, 4535.0594369244], [0.011, 2.39292099451, 5331.3574437408], [0.01, 4.4529653271, 6525.8044539654], [0.014, 4.66400985037, 8031.0922630584], [0.01, 3.22472385926, 9437.762934887], [0.011, 3.80913404437, 801.8209311238], [0.01, 5.15032130575, 11371.7046897582], [0.013, 0.98720797401, 5729.506447149], [0.009, 5.94191743597, 7632.9432596502]], [[0.011, 0.23877262399, 7860.4193924392], [0.009, 1.16069982609, 5507.5532386674], [0.008, 1.65357552925, 5884.9268465832], [0.008, 2.86720038197, 7058.5984613154], [0.007, 3.04818741666, 5486.777843175], [0.007, 2.59437103785, 529.6909650946], [0.008, 4.02863090524, 6256.7775301916], [0.008, 2.42003508927, 5753.3848848968], [0.006, 0.84181087594, 6275.9623029906], [0.006, 5.40160929468, 1577.3435424478], [0.007, 2.73399865247, 6309.3741697912]], [[0.004, 0.79662198849, 6438.4962494256], [0.005, 0.84308705203, 1047.7473117547], [0.005, 0.05711572303, 84334.66158130829], [0.003, 3.46779895686, 6279.5527316424], [0.003, 2.89822201212, 6127.6554505572]]]

This table contains Earth’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric latitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in page 420.

pymeeus.Earth.VSOP87_B_J2000 = [[[280.0, 3.199, 84334.662], [102.0, 5.422, 5507.553], [80.0, 3.88, 5223.69], [44.0, 3.7, 2352.87], [32.0, 4.0, 1577.34]], [[227778.0, 3.413766, 6283.07585], [3806.0, 3.3706, 12566.1517], [3620.0, 0.0, 0.0], [72.0, 3.33, 18849.23], [8.0, 3.89, 5507.55], [8.0, 1.79, 5223.69], [6.0, 5.2, 2352.87]], [[9721.0, 5.1519, 6283.07585], [233.0, 3.1416, 0.0], [134.0, 0.644, 12566.152], [7.0, 1.07, 18849.23]], [[276.0, 0.595, 6283.076], [17.0, 3.14, 0.0], [4.0, 0.12, 12566.15]], [[6.0, 2.27, 6283.08], [1.0, 0.0, 0.0]]]

This table contains Earth’s most important periodic terms from the planetary theory VSOP87 for the heliocentric latitude, referred to the equinox J2000.0. In Meeus’ book these values can be found in page 420 and page 173.

pymeeus.Earth.VSOP87_L = [[[175347045.673, 0.0, 0.0], [3341656.456, 4.66925680417, 6283.0758499914], [34894.275, 4.62610241759, 12566.1516999828], [3417.571, 2.82886579606, 3.523118349], [3497.056, 2.74411800971, 5753.3848848968], [3135.896, 3.62767041758, 77713.7714681205], [2676.218, 4.41808351397, 7860.4193924392], [2342.687, 6.13516237631, 3930.2096962196], [1273.166, 2.03709655772, 529.6909650946], [1324.292, 0.74246356352, 11506.7697697936], [901.855, 2.04505443513, 26.2983197998], [1199.167, 1.10962944315, 1577.3435424478], [857.223, 3.50849156957, 398.1490034082], [779.786, 1.17882652114, 5223.6939198022], [990.25, 5.23268129594, 5884.9268465832], [753.141, 2.53339053818, 5507.5532386674], [505.264, 4.58292563052, 18849.2275499742], [492.379, 4.20506639861, 775.522611324], [356.655, 2.91954116867, 0.0673103028], [284.125, 1.89869034186, 796.2980068164], [242.81, 0.34481140906, 5486.777843175], [317.087, 5.84901952218, 11790.6290886588], [271.039, 0.31488607649, 10977.078804699], [206.16, 4.80646606059, 2544.3144198834], [205.385, 1.86947813692, 5573.1428014331], [202.261, 2.45767795458, 6069.7767545534], [126.184, 1.0830263021, 20.7753954924], [155.516, 0.83306073807, 213.299095438], [115.132, 0.64544911683, 0.9803210682], [102.851, 0.63599846727, 4694.0029547076], [101.724, 4.26679821365, 7.1135470008], [99.206, 6.20992940258, 2146.1654164752], [132.212, 3.41118275555, 2942.4634232916], [97.607, 0.6810127227, 155.4203994342], [85.128, 1.29870743025, 6275.9623029906], [74.651, 1.75508916159, 5088.6288397668], [101.895, 0.97569221824, 15720.8387848784], [84.711, 3.67080093025, 71430.69561812909], [73.547, 4.67926565481, 801.8209311238], [73.874, 3.50319443167, 3154.6870848956], [78.756, 3.03698313141, 12036.4607348882], [79.637, 1.807913307, 17260.1546546904], [85.803, 5.98322631256, 161000.6857376741], [56.963, 2.78430398043, 6286.5989683404], [61.148, 1.81839811024, 7084.8967811152], [69.627, 0.83297596966, 9437.762934887], [56.116, 4.38694880779, 14143.4952424306], [62.449, 3.97763880587, 8827.3902698748], [51.145, 0.28306864501, 5856.4776591154], [55.577, 3.47006009062, 6279.5527316424], [41.036, 5.36817351402, 8429.2412664666], [51.605, 1.33282746983, 1748.016413067], [51.992, 0.18914945834, 12139.5535091068], [49.0, 0.48735065033, 1194.4470102246], [39.2, 6.16832995016, 10447.3878396044], [35.566, 1.77597314691, 6812.766815086], [36.77, 6.04133859347, 10213.285546211], [36.596, 2.56955238628, 1059.3819301892], [33.291, 0.59309499459, 17789.845619785], [35.954, 1.70876111898, 2352.8661537718], [40.938, 2.39850881707, 19651.048481098], [30.047, 2.73975123935, 1349.8674096588], [30.412, 0.44294464135, 83996.84731811189], [23.663, 0.48473567763, 8031.0922630584], [23.574, 2.06527720049, 3340.6124266998], [21.089, 4.14825464101, 951.7184062506], [24.738, 0.21484762138, 3.5904286518], [25.352, 3.16470953405, 4690.4798363586], [22.82, 5.22197888032, 4705.7323075436], [21.419, 1.42563735525, 16730.4636895958], [21.891, 5.55594302562, 553.5694028424], [17.481, 4.56052900359, 135.0650800354], [19.925, 5.22208471269, 12168.0026965746], [19.86, 5.77470167653, 6309.3741697912], [20.3, 0.37133792946, 283.8593188652], [14.421, 4.19315332546, 242.728603974], [16.225, 5.98837722564, 11769.8536931664], [15.077, 4.19567181073, 6256.7775301916], [19.124, 3.82219996949, 23581.2581773176], [18.888, 5.38626880969, 149854.4001348079], [14.346, 3.72355084422, 38.0276726358], [17.898, 2.21490735647, 13367.9726311066], [12.054, 2.62229588349, 955.5997416086], [11.287, 0.17739328092, 4164.311989613], [13.971, 4.40138139996, 6681.2248533996], [13.621, 1.88934471407, 7632.9432596502], [12.503, 1.13052412208, 5.5229243074], [10.498, 5.35909518669, 1592.5960136328], [9.803, 0.99947478995, 11371.7046897582], [9.22, 4.57138609781, 4292.3308329504], [10.327, 6.19982566125, 6438.4962494256], [12.003, 1.003514567, 632.7837393132], [10.827, 0.32734520222, 103.0927742186], [8.356, 4.53902685948, 25132.3033999656], [10.005, 6.0291496328, 5746.271337896], [8.409, 3.29946744189, 7234.794256242], [8.006, 5.82145271907, 28.4491874678], [10.523, 0.93871805506, 11926.2544136688], [7.686, 3.12142363172, 7238.6755916], [9.378, 2.62414241032, 5760.4984318976], [8.127, 6.11228001785, 4732.0306273434], [9.232, 0.48343968736, 522.5774180938], [9.802, 5.24413991147, 27511.4678735372], [7.871, 0.99590177926, 5643.1785636774], [8.123, 6.2705301365, 426.598190876], [9.048, 5.33686335897, 6386.16862421], [8.62, 4.16538210888, 7058.5984613154], [6.297, 4.71724819317, 6836.6452528338], [7.575, 3.97382858911, 11499.6562227928], [7.756, 2.95729056763, 23013.5395395872], [7.314, 0.60652505806, 11513.8833167944], [5.955, 2.87641047971, 6283.14316029419], [6.534, 5.79072926033, 18073.7049386502], [7.188, 3.99831508699, 74.7815985673], [7.346, 4.38582365437, 316.3918696566], [5.413, 5.39199024641, 419.4846438752], [5.127, 2.36062848786, 10973.55568635], [7.056, 0.32258441903, 263.0839233728], [6.625, 3.66475158672, 17298.1823273262], [6.762, 5.91132535899, 90955.5516944961], [4.938, 5.73672165674, 9917.6968745098], [5.547, 2.45152597661, 12352.8526045448], [5.958, 3.32051344676, 6283.0085396886], [4.471, 2.06385999536, 7079.3738568078], [6.153, 1.45823331144, 233141.3144043615], [4.348, 4.4234217548, 5216.5803728014], [6.123, 1.07494905258, 19804.8272915828], [4.488, 3.6528503715, 206.1855484372], [4.02, 0.83995823171, 20.3553193988], [5.188, 4.06503864016, 6208.2942514241], [5.307, 0.38217636096, 31441.6775697568], [3.785, 2.34369213733, 3.881335358], [4.497, 3.27230796845, 11015.1064773348], [4.132, 0.92128915753, 3738.761430108], [3.521, 5.97844807108, 3894.1818295422], [4.215, 1.90601120623, 245.8316462294], [3.701, 5.03069397926, 536.8045120954], [3.865, 1.82634360607, 11856.2186514245], [3.652, 1.01838584934, 16200.7727245012], [3.39, 0.97785123922, 8635.9420037632], [3.737, 2.95380107829, 3128.3887650958], [3.507, 3.71291946325, 6290.1893969922], [3.086, 3.64646921512, 10.6366653498], [3.397, 1.10590684017, 14712.317116458], [3.334, 0.83684924911, 6496.3749454294], [2.805, 2.58504514144, 14314.1681130498], [3.65, 1.08344142571, 88860.05707098669], [3.388, 3.20185096055, 5120.6011455836], [3.252, 3.47859752062, 6133.5126528568], [2.553, 3.94869034189, 1990.745017041], [3.52, 2.05559692878, 244287.60000722768], [2.565, 1.560717849, 23543.23050468179], [2.621, 3.85639359951, 266.6070417218], [2.955, 3.39692949667, 9225.539273283], [2.876, 6.02635617464, 154717.6098876827], [2.395, 1.16131956403, 10984.1923516998], [3.161, 1.32798718453, 10873.9860304804], [3.163, 5.08946464629, 21228.3920235458], [2.361, 4.27212906992, 6040.3472460174], [3.03, 1.80209931347, 35371.8872659764], [2.343, 3.576898605, 10969.9652576982], [2.618, 2.57870156528, 22483.84857449259], [2.113, 3.71393780256, 65147.6197681377], [2.019, 0.81393923319, 170.6728706192], [2.003, 0.38091017375, 6172.869528772], [2.506, 3.74379142438, 10575.4066829418], [2.381, 0.10581361289, 7.046236698], [1.949, 4.86892513469, 36.0278666774], [2.074, 4.2279477457, 5650.2921106782], [1.924, 5.5946054986, 6282.0955289232], [1.949, 1.07002512703, 5230.807466803], [1.988, 5.19736046771, 6262.300454499], [1.887, 3.74365662683, 23.8784377478], [1.787, 1.25929682929, 12559.038152982], [1.883, 1.90364058477, 15.252471185], [1.816, 3.68083868442, 15110.4661198662], [1.701, 4.4110589538, 110.2063212194], [1.99, 3.93295788548, 6206.8097787158], [2.103, 0.75354917468, 13521.7514415914], [1.774, 0.48747535361, 1551.045222648], [1.882, 0.86684493432, 22003.9146348698], [1.924, 1.22898324132, 709.9330485583], [2.009, 4.6285092198, 6037.244203762], [1.924, 0.60231842508, 6284.0561710596], [1.596, 3.98332956992, 13916.0191096416], [1.664, 4.41939715469, 8662.240323563], [1.971, 1.04560500503, 18209.33026366019], [1.942, 4.31335979989, 6244.9428143536], [1.476, 0.93271367331, 2379.1644735716], [1.81, 0.49112137707, 1.4844727083], [1.346, 1.51574702235, 4136.9104335162], [1.528, 5.61835711404, 6127.6554505572], [1.791, 3.22187270126, 39302.096962196], [1.747, 3.05638656738, 18319.5365848796], [1.431, 4.51153808594, 20426.571092422], [1.695, 0.22047718414, 25158.6017197654], [1.242, 4.46665769933, 17256.6315363414], [1.463, 4.69242679213, 14945.3161735544], [1.205, 1.86912144659, 4590.910180489], [1.192, 2.74227166898, 12569.6748183318], [1.222, 5.18120087482, 5333.9002410216], [1.39, 5.42894648983, 143571.32428481648], [1.473, 1.70479245805, 11712.9553182308], [1.362, 2.61069503292, 6062.6632075526], [1.148, 6.0300180054, 3634.6210245184], [1.198, 5.15294130422, 10177.2576795336], [1.266, 0.11421493643, 18422.62935909819], [1.411, 1.09908857534, 3496.032826134], [1.349, 2.99805109633, 17654.7805397496], [1.253, 2.79850152848, 167283.7615876655], [1.311, 1.60942984879, 5481.2549188676], [1.079, 6.20304501787, 3.2863574178], [1.181, 1.20653776978, 131.5419616864], [1.254, 5.45103277798, 6076.8903015542], [1.035, 2.32142722747, 7342.4577801806], [1.117, 0.38838354256, 949.1756089698], [0.966, 3.18341890851, 11087.2851259184], [1.171, 3.39635049962, 12562.6285816338], [1.121, 0.72627490378, 220.4126424388], [1.024, 2.19378315386, 11403.676995575], [0.888, 3.91173199285, 4686.8894077068], [0.91, 1.98802695087, 735.8765135318], [0.83, 0.48984915507, 24072.9214697764], [1.096, 6.17377835617, 5436.9930152402], [0.908, 0.44959639433, 7477.522860216], [0.974, 1.52996238356, 9623.6882766912], [0.84, 1.79543266333, 5429.8794682394], [0.778, 6.17699177946, 38.1330356378], [0.776, 4.09855402433, 14.2270940016], [1.068, 4.64200173735, 43232.3066584156], [0.954, 1.49988435748, 1162.4747044078], [0.907, 0.86986870809, 10344.2950653858], [0.931, 4.06044689031, 28766.924424484], [0.739, 5.04368197372, 639.897286314], [0.937, 3.4688469896, 1589.0728952838], [0.763, 5.86304932998, 16858.4825329332], [0.953, 4.20801492835, 11190.377900137], [0.708, 1.7289998894, 13095.8426650774], [0.969, 1.64439522215, 29088.811415985], [0.717, 0.16688678895, 11.729352836], [0.962, 3.53092337542, 12416.5885028482], [0.747, 5.77866940346, 12592.4500197826], [0.672, 1.91095796194, 3.9321532631], [0.671, 5.46240843677, 18052.9295431578], [0.675, 6.28311558823, 4535.0594369244], [0.684, 0.3997501208, 5849.3641121146], [0.799, 0.29851185294, 12132.439962106], [0.758, 0.96370823331, 1052.2683831884], [0.782, 5.33878339919, 13517.8701062334], [0.73, 1.70106160291, 17267.26820169119], [0.749, 2.59599901875, 11609.8625440122], [0.734, 2.78417782952, 640.8776073822], [0.688, 5.15048287468, 16496.3613962024], [0.77, 1.62469589333, 4701.1165017084], [0.633, 2.20587893893, 25934.1243310894], [0.76, 4.21317219403, 377.3736079158], [0.584, 2.13420121623, 10557.5941608238], [0.574, 0.24250054587, 9779.1086761254], [0.573, 3.16435264609, 533.2140834436], [0.685, 3.19344289472, 12146.6670561076], [0.675, 0.96179233959, 10454.5013866052], [0.648, 1.46327342555, 6268.8487559898], [0.589, 2.50543543638, 3097.88382272579], [0.551, 5.28099026956, 9388.0059094152], [0.696, 3.65342150016, 4804.209275927], [0.669, 2.51030077026, 2388.8940204492], [0.55, 0.06883864342, 20199.094959633], [0.629, 4.13350995675, 45892.73043315699], [0.678, 6.09190163533, 135.62532501], [0.593, 1.50136257618, 226858.23855437007], [0.542, 3.58573645173, 6148.010769956], [0.682, 5.02203067788, 17253.04110768959], [0.565, 4.2930923861, 11933.3679606696], [0.486, 0.77746204893, 27.4015560968], [0.503, 0.58963565969, 15671.0817594066], [0.616, 4.06539884128, 227.476132789], [0.583, 6.12695541996, 18875.525869774], [0.537, 2.1505644098, 21954.15760939799], [0.669, 6.06986269566, 47162.5163546352], [0.475, 0.4034384211, 6915.8595893046], [0.54, 2.83444222174, 5326.7866940208], [0.53, 5.26359885263, 10988.808157535], [0.582, 3.24533095664, 153.7788104848], [0.641, 3.24711791371, 2107.0345075424], [0.621, 3.09698523779, 33019.0211122046], [0.466, 3.14982372198, 10440.2742926036], [0.466, 0.90708835657, 5966.6839803348], [0.528, 0.8192645447, 813.5502839598], [0.603, 3.81378921927, 316428.22867391503], [0.559, 1.81894804124, 17996.0311682222], [0.437, 2.28625594435, 6303.8512454838], [0.518, 4.86069178322, 20597.2439630412], [0.424, 6.23520018693, 6489.2613984286], [0.518, 6.17617826756, 0.2438174835], [0.404, 5.72804304258, 5642.1982426092], [0.458, 1.34117773915, 6287.0080032545], [0.548, 5.6845445832, 155427.542936241], [0.547, 1.03391472061, 3646.3503773544], [0.428, 4.69800981138, 846.0828347512], [0.413, 6.02520699406, 6279.4854213396], [0.534, 3.03030638223, 66567.48586525429], [0.383, 1.49056949125, 19800.9459562248], [0.41, 5.28319622279, 18451.07854656599], [0.352, 4.68891600359, 4907.3020501456], [0.48, 5.36572651091, 348.924420448], [0.344, 5.89157452896, 6546.1597733642], [0.34, 0.3755742644, 13119.72110282519], [0.434, 4.98417785901, 6702.5604938666], [0.332, 2.68902519126, 29296.6153895786], [0.448, 2.16478480251, 5905.7022420756], [0.344, 2.06546633735, 49.7570254718], [0.315, 1.24023811803, 4061.2192153944], [0.324, 2.30897526929, 5017.508371365], [0.413, 0.17171692962, 6286.6662786432], [0.431, 3.86601101393, 12489.8856287072], [0.349, 4.55372342974, 4933.2084403326], [0.323, 0.41971136084, 10770.8932562618], [0.341, 2.68612860807, 11.0457002639], [0.316, 3.52936906658, 17782.7320727842], [0.315, 5.63357264999, 568.8218740274], [0.34, 3.83571212349, 10660.6869350424], [0.297, 0.62691416712, 20995.3929664494], [0.405, 1.00085779471, 16460.33352952499], [0.414, 1.21998752076, 51092.7260508548], [0.336, 4.71465945226, 6179.9830757728], [0.361, 3.71227508354, 28237.2334593894], [0.385, 6.21925225757, 24356.7807886416], [0.327, 1.05606504715, 11919.140866668], [0.327, 6.14222420989, 6254.6266625236], [0.268, 2.47224339737, 664.75604513], [0.269, 1.86207884109, 23141.5583829246], [0.345, 0.93461290184, 6058.7310542895], [0.296, 4.5168755718, 6418.1409300268], [0.353, 4.50033653082, 36949.2308084242], [0.26, 4.04963546305, 6525.8044539654], [0.298, 2.20046722622, 156137.47598479927], [0.253, 3.49900838384, 29864.334027309], [0.254, 2.44901693835, 5331.3574437408], [0.296, 0.84347588787, 5729.506447149], [0.298, 1.29194706125, 22805.7355659936], [0.241, 2.00721280805, 16737.5772365966], [0.311, 1.23668016334, 6281.5913772831], [0.24, 2.51650377121, 6245.0481773556], [0.332, 3.55576945724, 7668.6374249425], [0.264, 4.44052061202, 12964.300703391], [0.257, 1.79654471948, 11080.1715789176], [0.26, 3.3307759842, 5888.4499649322], [0.285, 0.3088636143, 11823.1616394502], [0.29, 5.70141882483, 77.673770428], [0.255, 4.0093966444, 5881.4037282342], [0.253, 4.73318493678, 16723.350142595], [0.228, 0.95333661324, 5540.0857894588], [0.319, 1.38633229189, 163096.18036118348], [0.224, 1.65156322696, 10027.9031957292], [0.226, 0.34106460604, 17796.9591667858], [0.236, 4.19817431922, 19.66976089979], [0.28, 4.1408026897, 12539.853380183], [0.275, 5.50306930248, 32.5325507914], [0.223, 5.23334210294, 56.8983749356], [0.217, 6.08587881787, 6805.6532680852], [0.28, 4.52472044653, 6016.4688082696], [0.227, 5.06509843737, 6277.552925684], [0.226, 5.17755154305, 11720.0688652316], [0.245, 3.96486270306, 22.7752014508], [0.22, 4.7207808197, 6.62855890001], [0.207, 5.71701403951, 41.5507909848], [0.204, 3.9122741125, 2699.7348193176], [0.209, 0.86881969011, 6321.1035226272], [0.2, 2.11984445273, 4274.5183108324], [0.2, 5.39839888163, 6019.9919266186], [0.209, 5.67606291663, 11293.4706743556], [0.252, 1.64965729351, 9380.9596727172], [0.275, 5.04826903506, 73.297125859], [0.208, 1.88207277133, 11300.5842213564], [0.272, 0.74640926842, 1975.492545856], [0.199, 3.30836672397, 22743.4093795164], [0.269, 4.48560812155, 64471.99124174489], [0.192, 2.17464236325, 5863.5912061162], [0.228, 5.85373115869, 128.0188433374], [0.261, 2.64321183295, 55022.9357470744], [0.22, 5.75012110079, 29.429508536], [0.187, 4.03230554718, 467.9649903544], [0.2, 5.60556112058, 1066.49547719], [0.231, 1.09802712785, 12341.8069042809], [0.199, 0.295006252, 149.5631971346], [0.249, 5.10473210814, 7875.6718636242], [0.208, 0.93013835019, 14919.0178537546], [0.179, 0.87104393079, 12721.572099417], [0.203, 1.56920753653, 28286.9904848612], [0.179, 2.47036386443, 16062.1845261168], [0.198, 3.54061588502, 30.914125635], [0.171, 3.45356518113, 5327.4761083828], [0.183, 0.72325421604, 6272.0301497275], [0.216, 2.97174580686, 19402.7969528166], [0.168, 2.51550550242, 23937.856389741], [0.195, 0.09045393425, 156.4007205024], [0.179, 4.4947179809, 31415.379249957], [0.216, 0.42177594328, 23539.7073863328], [0.189, 0.37542530191, 9814.6041002912], [0.218, 2.36835880025, 16627.3709153772], [0.166, 4.23182968446, 16840.67001081519], [0.2, 2.02153258098, 16097.6799502826], [0.169, 0.91318727, 95.9792272178], [0.211, 5.73370637657, 151.8972810852], [0.204, 0.42643085174, 515.463871093], [0.212, 3.00233538977, 12043.574281889], [0.192, 5.46153589821, 6379.0550772092], [0.165, 1.38698167064, 4171.4255366138], [0.16, 6.23798383332, 202.2533951741], [0.215, 0.20889073407, 5621.8429232104], [0.181, 4.12439203622, 13341.6743113068], [0.153, 1.24460848836, 29826.3063546732], [0.15, 3.12999753018, 799.8211251654], [0.175, 4.55671604437, 239424.39025435288], [0.192, 1.33928820063, 394.6258850592], [0.149, 2.65697593276, 21.335640467], [0.146, 5.58021191726, 412.3710968744], [0.156, 3.75650175503, 12323.4230960088], [0.143, 3.75708566606, 58864.5439181463], [0.143, 3.28248547724, 29.8214381488], [0.144, 1.07862546598, 1265.5674786264], [0.148, 0.23389236655, 10021.8372800994], [0.193, 5.92751083086, 40879.4405046438], [0.14, 4.97612440269, 158.9435177832], [0.148, 2.61640453469, 17157.0618804718], [0.141, 3.66871308723, 26084.0218062162], [0.147, 5.09968173403, 661.232926781], [0.146, 4.96885605695, 57375.8019008462], [0.142, 0.78678347839, 12779.4507954208], [0.134, 4.79432636012, 111.1866422876], [0.14, 1.27748013377, 107.6635239386], [0.169, 2.74893543762, 26735.9452622132], [0.165, 3.95288000638, 6357.8574485587], [0.183, 5.43418358741, 369.6998159404], [0.134, 3.09132862833, 17.812522118], [0.132, 3.05633896779, 22490.9621214934], [0.134, 4.09472795832, 6599.467719648], [0.181, 4.22950689891, 966.9708774356], [0.152, 5.28885894415, 12669.2444742014], [0.15, 5.86819430908, 97238.62754448749], [0.142, 5.87266532526, 22476.73502749179], [0.145, 5.07330784304, 87.30820453981], [0.133, 5.65471067133, 31.9723058168], [0.124, 2.83326217072, 12566.2190102856], [0.135, 3.12861731644, 32217.2001810808], [0.137, 0.86487461904, 9924.8104215106], [0.172, 1.98369595114, 174242.4659640497], [0.17, 4.41115280254, 327574.51427678124], [0.151, 0.46542099527, 39609.6545831656], [0.148, 2.13439571118, 491.6632924588], [0.153, 3.78801830344, 17363.24742890899], [0.165, 5.31654110459, 16943.7627850338], [0.165, 4.06747587817, 58953.145443294], [0.118, 0.63846333239, 6.0659156298], [0.159, 0.86086959274, 221995.02880149524], [0.119, 5.96432932413, 1385.8952763362], [0.114, 5.16516114595, 25685.872802808], [0.112, 3.39403722178, 21393.5419698576], [0.112, 4.92889233335, 56.8032621698], [0.119, 2.40637635942, 18635.9284545362], [0.115, 0.23374479051, 418.9243989006], [0.122, 0.93575234049, 24492.40611365159], [0.115, 4.58880032176, 26709.6469424134], [0.13, 4.85539251, 22345.2603761082], [0.14, 1.09413073202, 44809.6502008634], [0.112, 6.05401806281, 433.7117378768], [0.104, 1.54931540602, 127.9515330346], [0.105, 4.82620858888, 33794.5437235286], [0.102, 4.12448497391, 15664.03552270859], [0.107, 4.67919356465, 77690.75950573849], [0.118, 4.5232017012, 19004.6479494084], [0.107, 5.71774478555, 77736.78343050249], [0.143, 1.81201813018, 4214.0690150848], [0.125, 1.14419195615, 625.6701923124], [0.124, 3.27736514057, 12566.08438968], [0.11, 1.08682570828, 2787.0430238574], [0.105, 1.78318141871, 18139.2945014159], [0.102, 4.75119578149, 12242.6462833254], [0.137, 1.43510636754, 86464.6133168312], [0.101, 4.91289409429, 401.6721217572], [0.129, 1.23567904485, 12029.3471878874], [0.138, 2.45654707999, 7576.560073574], [0.103, 0.40004073416, 90279.92316810328], [0.108, 0.9898977494, 5636.0650166766], [0.117, 5.17362872063, 34520.3093093808], [0.1, 3.95534628189, 5547.1993364596], [0.098, 1.28118280598, 21548.9623692918], [0.097, 3.34717130592, 16310.9790457206], [0.098, 4.37041908717, 34513.2630726828], [0.125, 2.7216443296, 24065.80792277559], [0.102, 0.66938025772, 10239.5838660108], [0.119, 1.21689479331, 1478.8665740644], [0.094, 1.99595224256, 13362.4497067992], [0.094, 4.30965982872, 26880.3198130326], [0.095, 2.89807657534, 34911.412076091], [0.106, 1.0015665359, 16522.6597160022], [0.097, 0.89642320201, 71980.63357473118], [0.116, 4.19967201116, 206.7007372966], [0.099, 1.37437847718, 1039.0266107904], [0.126, 3.21642544972, 305281.9430710488], [0.094, 0.6899787606, 7834.1210726394], [0.094, 5.58132218606, 3104.9300594238], [0.095, 3.0382374111, 8982.810669309], [0.108, 0.52696637156, 276.7457718644], [0.124, 3.43899862683, 172146.9713405403], [0.102, 1.04031728553, 95143.1329209781], [0.104, 3.39218586218, 290.972865866], [0.11, 3.68205877433, 22380.755800274], [0.117, 0.78475956902, 83286.91426955358], [0.083, 0.18241793425, 15141.390794312], [0.089, 4.45371820659, 792.7748884674], [0.082, 4.80703651241, 6819.8803620868], [0.087, 3.43122851097, 27707.5424942948], [0.101, 5.32081603011, 2301.58581590939], [0.082, 0.87060089842, 10241.2022911672], [0.086, 4.61919461931, 36147.4098773004], [0.095, 2.87032884659, 23020.65308658799], [0.088, 3.2113316569, 33326.5787331742], [0.08, 1.84900424847, 21424.4666443034], [0.101, 4.18796434479, 30666.1549584328], [0.107, 5.77864921649, 34115.1140692746], [0.104, 1.08739495962, 6288.5987742988], [0.11, 3.32898859416, 72140.6286666874], [0.087, 4.40657711727, 142.1786270362], [0.109, 1.94546030825, 24279.10701821359], [0.087, 4.32472045435, 742.9900605326], [0.107, 4.91580912547, 277.0349937414], [0.088, 2.10180220766, 26482.1708096244], [0.086, 4.01887374432, 12491.3701014155], [0.106, 5.49092372854, 62883.3551395136], [0.08, 6.19781316983, 6709.6740408674], [0.088, 2.09872810657, 238004.5241572363], [0.083, 4.90662164029, 51.28033786241], [0.095, 4.13387406591, 18216.443810661], [0.078, 6.0694939168, 148434.53403769128], [0.079, 3.03048221644, 838.9692877504], [0.074, 5.49813051211, 29026.48522950779], [0.073, 3.05008665738, 567.7186377304], [0.084, 0.46604373274, 45.1412196366], [0.093, 2.52267536308, 48739.859897083], [0.076, 1.76418124905, 41654.9631159678], [0.067, 5.77851227793, 6311.5250374592], [0.062, 3.32967880172, 15508.6151232744], [0.079, 5.59773841328, 71960.38658322369], [0.057, 3.90629505268, 5999.2165311262], [0.061, 0.05695043232, 7856.89627409019], [0.061, 5.63297958433, 7863.9425107882], [0.065, 3.72178394016, 12573.2652469836], [0.057, 4.18217219541, 26087.9031415742], [0.066, 3.92262333487, 69853.3520756813], [0.053, 5.51119362045, 77710.24834977149], [0.053, 4.88573986961, 77717.29458646949], [0.062, 2.88876342225, 9411.4646150872], [0.051, 1.12657183874, 82576.9812209953], [0.045, 2.95671076719, 24602.61243487099], [0.04, 5.55145719241, 12565.1713789146], [0.039, 1.20838190039, 18842.11400297339], [0.045, 3.18590558749, 45585.1728121874], [0.049, 2.44790934886, 13613.804277336]], [[628331966747.491, 0.0, 0.0], [206058.863, 2.67823455584, 6283.0758499914], [4303.43, 2.63512650414, 12566.1516999828], [425.264, 1.59046980729, 3.523118349], [108.977, 2.96618001993, 1577.3435424478], [93.478, 2.59212835365, 18849.2275499742], [119.261, 5.79557487799, 26.2983197998], [72.122, 1.13846158196, 529.6909650946], [67.768, 1.87472304791, 398.1490034082], [67.327, 4.40918235168, 5507.5532386674], [59.027, 2.8879703846, 5223.6939198022], [55.976, 2.17471680261, 155.4203994342], [45.407, 0.39803079805, 796.2980068164], [36.369, 0.46624739835, 775.522611324], [28.958, 2.64707383882, 7.1135470008], [19.097, 1.84628332577, 5486.777843175], [20.844, 5.34138275149, 0.9803210682], [18.508, 4.96855124577, 213.299095438], [16.233, 0.03216483047, 2544.3144198834], [17.293, 2.99116864949, 6275.9623029906], [15.832, 1.43049285325, 2146.1654164752], [14.615, 1.20532366323, 10977.078804699], [11.877, 3.25804815607, 5088.6288397668], [11.514, 2.07502418155, 4694.0029547076], [9.721, 4.23925472239, 1349.8674096588], [9.969, 1.30262991097, 6286.5989683404], [9.452, 2.69957062864, 242.728603974], [12.461, 2.83432285512, 1748.016413067], [11.808, 5.2737979048, 1194.4470102246], [8.577, 5.64475868067, 951.7184062506], [10.641, 0.76614199202, 553.5694028424], [7.576, 5.30062664886, 2352.8661537718], [5.834, 1.76649917904, 1059.3819301892], [6.385, 2.65033984967, 9437.762934887], [5.223, 5.66135767624, 71430.69561812909], [5.305, 0.90857521574, 3154.6870848956], [6.101, 4.66632584188, 4690.4798363586], [4.33, 0.24102555403, 6812.766815086], [5.041, 1.42490103709, 6438.4962494256], [4.259, 0.77355900599, 10447.3878396044], [5.198, 1.85353197345, 801.8209311238], [3.744, 2.00119516488, 8031.0922630584], [3.558, 2.42901552681, 14143.4952424306], [3.372, 3.86210700128, 1592.5960136328], [3.374, 0.88776219727, 12036.4607348882], [3.175, 3.18785710594, 4705.7323075436], [3.221, 0.61599835472, 8429.2412664666], [4.132, 5.23992859705, 7084.8967811152], [2.97, 6.07026318493, 4292.3308329504], [2.9, 2.32464208411, 20.3553193988], [3.504, 4.79975694359, 6279.5527316424], [2.95, 1.43108874817, 5746.271337896], [2.697, 4.80368225199, 7234.794256242], [2.531, 6.22290682655, 6836.6452528338], [2.745, 0.93466065396, 5760.4984318976], [3.25, 3.39954640038, 7632.9432596502], [2.277, 5.00277837672, 17789.845619785], [2.075, 3.95534978634, 10213.285546211], [2.061, 2.22411683077, 5856.4776591154], [2.252, 5.67166499885, 11499.6562227928], [2.148, 5.20184578235, 11513.8833167944], [1.886, 0.53198320577, 3340.6124266998], [1.875, 4.73511970207, 83996.84731811189], [2.06, 2.54987293999, 25132.3033999656], [1.794, 1.47435409831, 4164.311989613], [1.778, 3.02473091781, 5.5229243074], [2.029, 0.90960209983, 6256.7775301916], [2.075, 2.26767270157, 522.5774180938], [1.772, 3.02622802353, 5753.3848848968], [1.569, 6.12410242782, 5216.5803728014], [1.59, 4.63713748247, 3.2863574178], [1.542, 4.20004448567, 13367.9726311066], [1.427, 1.19088061711, 3894.1818295422], [1.375, 3.09301252193, 135.0650800354], [1.359, 4.24532506641, 426.598190876], [1.34, 5.76511818622, 6040.3472460174], [1.284, 3.08524663344, 5643.1785636774], [1.25, 3.07748157144, 11926.2544136688], [1.551, 3.07665451458, 6681.2248533996], [1.268, 2.09196018331, 6290.1893969922], [1.144, 3.24444699514, 12168.0026965746], [1.248, 3.44504937285, 536.8045120954], [1.118, 2.31829670425, 16730.4636895958], [1.105, 5.31966001019, 23.8784377478], [1.051, 3.75015946014, 7860.4193924392], [1.025, 2.44688534235, 1990.745017041], [0.962, 0.81771017882, 3.881335358], [0.91, 0.41727865299, 7079.3738568078], [0.883, 5.16833917651, 11790.6290886588], [0.957, 4.07673573735, 6127.6554505572], [1.11, 3.90096793825, 11506.7697697936], [0.802, 3.88778875582, 10973.55568635], [0.78, 2.39934293755, 1589.0728952838], [0.758, 1.30034364248, 103.0927742186], [0.749, 4.962758033, 6496.3749454294], [0.765, 3.36312388424, 36.0278666774], [0.915, 5.41543742089, 206.1855484372], [0.776, 2.57589093871, 11371.7046897582], [0.772, 3.98369209464, 955.5997416086], [0.749, 5.17890001805, 10969.9652576982], [0.806, 0.34218864254, 9917.6968745098], [0.728, 5.20962563787, 38.0276726358], [0.685, 2.77592961854, 20.7753954924], [0.636, 4.28242193632, 28.4491874678], [0.608, 5.63278508906, 10984.1923516998], [0.704, 5.60738823665, 3738.761430108], [0.685, 0.38876148682, 15.252471185], [0.601, 0.73489602442, 419.4846438752], [0.716, 2.65279791438, 6309.3741697912], [0.584, 5.54502568227, 17298.1823273262], [0.65, 1.13379656406, 7058.5984613154], [0.688, 2.59683891779, 3496.032826134], [0.485, 0.44467180946, 12352.8526045448], [0.528, 2.74936967681, 3930.2096962196], [0.597, 5.27668281777, 10575.4066829418], [0.583, 3.1892906781, 4732.0306273434], [0.526, 5.01697321546, 5884.9268465832], [0.54, 1.29175137075, 640.8776073822], [0.473, 5.4995330697, 5230.807466803], [0.406, 5.21248452189, 220.4126424388], [0.395, 1.87474483222, 16200.7727245012], [0.37, 3.84921354713, 18073.7049386502], [0.367, 0.88533542778, 6283.14316029419], [0.379, 0.37983009325, 10177.2576795336], [0.356, 3.84145204913, 11712.9553182308], [0.374, 5.01577520608, 7.046236698], [0.381, 4.30250406634, 6062.6632075526], [0.471, 0.86381834647, 6069.7767545534], [0.367, 1.32943839763, 6283.0085396886], [0.46, 5.19667219575, 6284.0561710596], [0.333, 5.54256205741, 4686.8894077068], [0.341, 4.36522989934, 7238.6755916], [0.336, 4.00205876835, 3097.88382272579], [0.359, 6.22679790284, 245.8316462294], [0.307, 2.35299010924, 170.6728706192], [0.343, 3.77164927143, 6076.8903015542], [0.296, 5.44152227481, 17260.1546546904], [0.328, 0.13837875384, 11015.1064773348], [0.268, 1.1390455063, 12569.6748183318], [0.263, 0.00538633678, 4136.9104335162], [0.282, 5.0439983748, 7477.522860216], [0.288, 3.13401177517, 12559.038152982], [0.259, 0.93882269387, 5642.1982426092], [0.292, 1.98420020514, 12132.439962106], [0.247, 3.84244798532, 5429.8794682394], [0.245, 5.70467521726, 65147.6197681377], [0.241, 0.99480969552, 3634.6210245184], [0.246, 3.06168069935, 110.2063212194], [0.239, 6.11855909114, 11856.2186514245], [0.263, 0.66348415419, 21228.3920235458], [0.262, 1.51070507866, 12146.6670561076], [0.23, 1.75927314884, 9779.1086761254], [0.223, 2.00967043606, 6172.869528772], [0.246, 1.10411690865, 6282.0955289232], [0.221, 3.03945240854, 8635.9420037632], [0.214, 4.03840869663, 14314.1681130498], [0.236, 5.4691507058, 13916.0191096416], [0.224, 4.68408089456, 24072.9214697764], [0.212, 2.13695625494, 5849.3641121146], [0.207, 3.07724246401, 11.729352836], [0.207, 6.10306282747, 23543.23050468179], [0.266, 1.00709566823, 2388.8940204492], [0.217, 6.27837036335, 17267.26820169119], [0.204, 2.34615348695, 266.6070417218], [0.195, 5.55015549753, 6133.5126528568], [0.188, 2.52667166175, 6525.8044539654], [0.185, 0.90960768344, 18319.5365848796], [0.177, 1.73429218289, 154717.6098876827], [0.187, 4.76483647432, 4535.0594369244], [0.186, 4.63080493407, 10440.2742926036], [0.215, 2.8125545456, 7342.4577801806], [0.172, 1.45551888559, 9225.539273283], [0.162, 3.30661909388, 639.897286314], [0.168, 2.17671416605, 27.4015560968], [0.16, 1.68164180475, 15110.4661198662], [0.158, 0.13519771874, 13095.8426650774], [0.183, 0.56281322071, 13517.8701062334], [0.179, 3.58450811616, 87.30820453981], [0.152, 2.84070476818, 5650.2921106782], [0.182, 0.44065530624, 17253.04110768959], [0.16, 5.95767264171, 4701.1165017084], [0.142, 1.4629013752, 11087.2851259184], [0.142, 2.04464036087, 20426.571092422], [0.131, 5.40912137746, 2699.7348193176], [0.144, 2.07312090485, 25158.6017197654], [0.147, 6.15106982168, 9623.6882766912], [0.141, 5.55739979498, 10454.5013866052], [0.135, 0.06098110407, 16723.350142595], [0.124, 5.81218025669, 17256.6315363414], [0.124, 2.36293551623, 4933.2084403326], [0.126, 3.47435905118, 22483.84857449259], [0.159, 5.63954754618, 5729.506447149], [0.123, 3.92815963256, 17996.0311682222], [0.148, 3.02509280598, 1551.045222648], [0.12, 5.91904349732, 6206.8097787158], [0.134, 3.11122937825, 21954.15760939799], [0.119, 5.5214112345, 709.9330485583], [0.122, 3.00813429479, 19800.9459562248], [0.127, 1.37618620001, 14945.3161735544], [0.141, 2.56889468729, 1052.2683831884], [0.123, 2.83671175442, 11919.140866668], [0.118, 0.81934438215, 5331.3574437408], [0.151, 2.68731829165, 11769.8536931664], [0.119, 5.08835797638, 5481.2549188676], [0.153, 2.46021790779, 11933.3679606696], [0.108, 1.04936452145, 11403.676995575], [0.128, 0.99794735107, 8827.3902698748], [0.144, 2.54869747042, 227.476132789], [0.15, 4.50631437136, 2379.1644735716], [0.107, 1.79272017026, 13119.72110282519], [0.107, 4.43556814486, 18422.62935909819], [0.109, 0.29269062317, 16737.5772365966], [0.141, 3.18979826258, 6262.300454499], [0.122, 4.23040027813, 29.429508536], [0.111, 5.16954029551, 17782.7320727842], [0.1, 3.52213872761, 18052.9295431578], [0.108, 1.08514212991, 16858.4825329332], [0.106, 1.9608524841, 74.7815985673], [0.11, 2.30582372873, 16460.33352952499], [0.097, 3.5091894021, 5333.9002410216], [0.099, 3.56417337974, 735.8765135318], [0.094, 5.01857894228, 3128.3887650958], [0.097, 1.65579893894, 533.2140834436], [0.092, 0.89217162285, 29296.6153895786], [0.123, 3.16062050433, 9380.9596727172], [0.102, 1.20493500565, 23020.65308658799], [0.088, 2.21296088224, 12721.572099417], [0.089, 1.5426472031, 20199.094959633], [0.113, 4.8332070787, 16496.3613962024], [0.121, 6.19860353182, 9388.0059094152], [0.089, 4.08082274765, 22805.7355659936], [0.098, 1.0918183283, 12043.574281889], [0.086, 1.13655027605, 143571.32428481648], [0.088, 5.96980472191, 107.6635239386], [0.082, 5.01340404594, 22003.9146348698], [0.094, 1.69615700473, 23006.42599258639], [0.081, 3.00657814365, 2118.7638603784], [0.098, 1.39215287161, 8662.240323563], [0.077, 3.3355519084, 15720.8387848784], [0.082, 5.86880116464, 2787.0430238574], [0.076, 5.67183650604, 14.2270940016], [0.081, 6.16619455699, 1039.0266107904], [0.076, 3.21449884756, 111.1866422876], [0.078, 1.37531518377, 21947.1113727], [0.074, 3.58814195051, 11609.8625440122], [0.077, 4.84846488388, 22743.4093795164], [0.09, 1.48869013606, 15671.0817594066], [0.082, 3.48618399109, 29088.811415985], [0.069, 3.55746476593, 4590.910180489], [0.069, 1.93625656075, 135.62532501], [0.07, 2.66548322237, 18875.525869774], [0.069, 5.41478093731, 26735.9452622132], [0.079, 5.15154513662, 12323.4230960088], [0.094, 3.62899392448, 77713.7714681205], [0.078, 4.17011182047, 1066.49547719], [0.071, 3.89435637865, 22779.4372461938], [0.063, 4.53968787714, 8982.810669309], [0.069, 0.96028230548, 14919.0178537546], [0.076, 3.29092216589, 2942.4634232916], [0.063, 4.09167842893, 16062.1845261168], [0.065, 3.34580407184, 51.28033786241], [0.065, 5.75757544877, 52670.0695933026], [0.068, 5.75884067555, 21424.4666443034], [0.057, 5.4512239985, 12592.4500197826], [0.057, 5.25043362558, 20995.3929664494], [0.073, 0.53299090807, 2301.58581590939], [0.07, 4.31243357502, 19402.7969528166], [0.067, 2.53852336668, 377.3736079158], [0.056, 3.20816844695, 24889.5747959916], [0.053, 3.17816599142, 18451.07854656599], [0.053, 3.61529270216, 77.673770428], [0.053, 0.45467549335, 30666.1549584328], [0.061, 0.14807288453, 23013.5395395872], [0.051, 3.32803972907, 56.8983749356], [0.052, 3.41177624177, 23141.5583829246], [0.058, 3.13638677202, 309.2783226558], [0.07, 2.50592323465, 31415.379249957], [0.052, 5.10673376738, 17796.9591667858], [0.067, 6.27917920454, 22345.2603761082], [0.05, 0.42577644151, 25685.872802808], [0.048, 0.70204553333, 1162.4747044078], [0.066, 3.64350022359, 15265.8865193004], [0.05, 5.7438291744, 19.66976089979], [0.05, 4.69825387775, 28237.2334593894], [0.047, 5.74015846442, 12139.5535091068], [0.054, 1.97301333704, 23581.2581773176], [0.049, 4.98223579027, 10021.8372800994], [0.046, 5.41431705539, 33019.0211122046], [0.051, 1.23882053879, 12539.853380183], [0.046, 2.41369976086, 98068.53671630539], [0.044, 0.80750593746, 167283.7615876655], [0.045, 4.39613584445, 433.7117378768], [0.044, 2.57358208785, 12964.300703391], [0.046, 0.26142733448, 11.0457002639], [0.045, 2.46230645202, 51868.2486621788], [0.048, 0.89551707131, 56600.2792895222], [0.057, 1.8641670701, 25287.7237993998], [0.042, 5.26377513431, 26084.0218062162], [0.049, 3.17757670611, 6303.8512454838], [0.052, 3.65266055509, 7872.1487452752], [0.04, 1.81891629936, 34596.3646546524], [0.043, 1.94164978061, 1903.4368125012], [0.041, 0.74461854136, 23937.856389741], [0.048, 6.26034008181, 28286.9904848612], [0.045, 5.4557501753, 60530.4889857418], [0.04, 2.92105728682, 21548.9623692918], [0.04, 0.04502010161, 38526.574350872], [0.053, 3.64791042082, 11925.2740926006], [0.041, 5.04048954693, 27832.0382192832], [0.042, 5.19292937193, 19004.6479494084], [0.04, 2.57120233428, 24356.7807886416], [0.038, 3.49190341464, 226858.23855437007], [0.039, 4.61184303844, 95.9792272178], [0.043, 2.20648228147, 13521.7514415914], [0.04, 5.83461945819, 16193.65917750039], [0.045, 3.73714372195, 7875.6718636242], [0.043, 1.14078465002, 49.7570254718], [0.037, 1.29390383811, 310.8407988684], [0.038, 0.9597092595, 664.75604513], [0.037, 4.27532649462, 6709.6740408674], [0.038, 2.20108541046, 28628.3362260996], [0.039, 0.85957361635, 16522.6597160022], [0.04, 4.35214003837, 48739.859897083], [0.036, 1.68167662194, 10344.2950653858], [0.04, 5.13217319067, 15664.03552270859], [0.036, 3.72187132496, 30774.5016425748], [0.036, 3.32158458257, 16207.886271502], [0.045, 3.94202418608, 10988.808157535], [0.039, 1.51948786199, 12029.3471878874], [0.026, 3.8768588318, 6262.7205305926], [0.024, 4.91804163466, 19651.048481098], [0.023, 0.29300197709, 13362.4497067992], [0.021, 3.18605672363, 6277.552925684], [0.021, 6.07546891132, 18139.2945014159], [0.022, 2.31199937177, 6303.4311693902], [0.021, 3.58418394393, 18209.33026366019], [0.026, 2.068012969, 12573.2652469836], [0.021, 1.56857722317, 13341.6743113068], [0.024, 5.72605158675, 29864.334027309], [0.024, 1.40237993205, 14712.317116458], [0.025, 5.71466092822, 25934.1243310894]], [[52918.87, 0.0, 0.0], [8719.837, 1.07209665242, 6283.0758499914], [309.125, 0.86728818832, 12566.1516999828], [27.339, 0.05297871691, 3.523118349], [16.334, 5.18826691036, 26.2983197998], [15.752, 3.6845788943, 155.4203994342], [9.541, 0.75742297675, 18849.2275499742], [8.937, 2.05705419118, 77713.7714681205], [6.952, 0.8267330541, 775.522611324], [5.064, 4.66284525271, 1577.3435424478], [4.061, 1.03057162962, 7.1135470008], [3.463, 5.14074632811, 796.2980068164], [3.169, 6.05291851171, 5507.5532386674], [3.02, 1.19246506441, 242.728603974], [2.886, 6.11652627155, 529.6909650946], [3.81, 3.4405080349, 5573.1428014331], [2.714, 0.30637881025, 398.1490034082], [2.371, 4.38118838167, 5223.6939198022], [2.538, 2.27992810679, 553.5694028424], [2.079, 3.75435330484, 0.9803210682], [1.675, 0.90216407959, 951.7184062506], [1.534, 5.75900462759, 1349.8674096588], [1.224, 2.97328088405, 2146.1654164752], [1.449, 4.3641591397, 1748.016413067], [1.341, 3.72061130861, 1194.4470102246], [1.254, 2.94846826628, 6438.4962494256], [0.999, 5.98640014468, 6286.5989683404], [0.917, 4.79788687522, 5088.6288397668], [0.828, 3.31321076572, 213.299095438], [1.103, 1.27104454479, 161000.6857376741], [0.762, 3.41582762988, 5486.777843175], [1.044, 0.60409577691, 3154.6870848956], [0.887, 5.23465144638, 7084.8967811152], [0.645, 1.60096192515, 2544.3144198834], [0.681, 3.43155669169, 4694.0029547076], [0.605, 2.47806340546, 10977.078804699], [0.706, 6.19393222575, 4690.4798363586], [0.643, 1.98042503148, 801.8209311238], [0.502, 1.44394375363, 6836.6452528338], [0.49, 2.34129524194, 1592.5960136328], [0.458, 1.30876448575, 4292.3308329504], [0.431, 0.03526421494, 7234.794256242], [0.379, 3.17030522615, 6309.3741697912], [0.348, 0.99049550009, 6040.3472460174], [0.386, 1.57019797263, 71430.69561812909], [0.347, 0.67013291338, 1059.3819301892], [0.458, 3.81499443681, 149854.4001348079], [0.302, 1.91760044838, 10447.3878396044], [0.307, 3.55343347416, 8031.0922630584], [0.395, 4.93701776616, 7632.9432596502], [0.314, 3.18093696547, 2352.8661537718], [0.282, 4.41936437052, 9437.762934887], [0.276, 2.71314254553, 3894.1818295422], [0.298, 2.5203747421, 6127.6554505572], [0.23, 1.37790215549, 4705.7323075436], [0.252, 0.55330133471, 6279.5527316424], [0.255, 5.26570187369, 6812.766815086], [0.275, 0.67264264272, 25132.3033999656], [0.178, 0.92820785174, 1990.745017041], [0.221, 0.63897368842, 6256.7775301916], [0.155, 0.77319790838, 14143.4952424306], [0.15, 2.40470465561, 426.598190876], [0.196, 6.06877865012, 640.8776073822], [0.137, 2.21679460145, 8429.2412664666], [0.127, 3.26094223174, 17789.845619785], [0.128, 5.47237279946, 12036.4607348882], [0.122, 2.16291082757, 10213.285546211], [0.118, 0.45789822268, 7058.5984613154], [0.141, 2.34932647403, 11506.7697697936], [0.1, 0.85621569847, 6290.1893969922], [0.092, 5.10587476002, 7079.3738568078], [0.126, 2.65428307012, 88860.05707098669], [0.106, 5.85646710022, 7860.4193924392], [0.084, 3.57457554262, 16730.4636895958], [0.089, 4.21433259618, 83996.84731811189], [0.097, 5.57938280855, 13367.9726311066], [0.102, 2.05853060226, 87.30820453981], [0.08, 4.73792651816, 11926.2544136688], [0.08, 5.41418965044, 10973.55568635], [0.106, 4.10978997399, 3496.032826134], [0.102, 3.62650006043, 244287.60000722768], [0.075, 4.89483161769, 5643.1785636774], [0.087, 0.42863750683, 11015.1064773348], [0.069, 1.8890876072, 10177.2576795336], [0.089, 1.35567273119, 6681.2248533996], [0.066, 0.99455837265, 6525.8044539654], [0.067, 5.5124099707, 3097.88382272579], [0.076, 2.72016814799, 4164.311989613], [0.063, 1.4434990254, 9917.6968745098], [0.078, 3.51469733747, 11856.2186514245], [0.085, 0.50956043858, 10575.4066829418], [0.067, 3.62043033405, 16496.3613962024], [0.055, 5.24637517308, 3340.6124266998], [0.048, 5.43966777314, 20426.571092422], [0.064, 5.79535817813, 2388.8940204492], [0.046, 5.43499966519, 6275.9623029906], [0.05, 3.86263598617, 5729.506447149], [0.044, 1.52269529228, 12168.0026965746], [0.057, 4.96352373486, 14945.3161735544], [0.045, 1.0086123016, 8635.9420037632], [0.043, 3.30685683359, 9779.1086761254], [0.042, 0.6348125893, 2699.7348193176], [0.041, 5.67996766641, 11712.9553182308], [0.056, 4.34024451468, 90955.5516944961], [0.041, 5.81722212845, 709.9330485583], [0.053, 6.17052087143, 233141.3144043615], [0.037, 3.12495025087, 16200.7727245012], [0.035, 5.76973458495, 12569.6748183318], [0.037, 0.31656444326, 24356.7807886416], [0.035, 0.96229051027, 17298.1823273262], [0.033, 5.23130355867, 5331.3574437408], [0.035, 0.62517020593, 25158.6017197654], [0.035, 0.80004512129, 13916.0191096416], [0.037, 2.89336088688, 12721.572099417], [0.03, 4.50198402401, 23543.23050468179], [0.03, 5.31355708693, 18319.5365848796], [0.029, 3.47275229977, 13119.72110282519], [0.029, 3.11002782516, 4136.9104335162], [0.032, 5.52273255667, 5753.3848848968], [0.035, 3.7969999668, 143571.32428481648], [0.026, 1.50634201907, 154717.6098876827], [0.03, 3.53519084118, 6284.0561710596], [0.023, 4.41808025967, 5884.9268465832], [0.025, 1.38477355808, 65147.6197681377], [0.023, 3.49782549797, 7477.522860216], [0.019, 3.14329413716, 6496.3749454294], [0.019, 2.20135125199, 18073.7049386502], [0.019, 4.95020255309, 3930.2096962196], [0.019, 0.57998702747, 31415.379249957], [0.021, 1.75474323399, 12139.5535091068], [0.019, 3.92233070499, 19651.048481098], [0.014, 0.98131213224, 12559.038152982], [0.019, 4.93309333729, 2942.4634232916], [0.016, 5.55997534558, 8827.3902698748], [0.013, 1.68808165516, 4535.0594369244], [0.013, 0.33982116161, 4933.2084403326], [0.012, 1.85426309994, 5856.4776591154], [0.01, 4.82763996845, 13095.8426650774], [0.011, 5.38005490571, 11790.6290886588], [0.01, 1.40815507226, 10988.808157535], [0.011, 3.05005267431, 17260.1546546904], [0.01, 4.93364992366, 12352.8526045448]], [[289.226, 5.84384198723, 6283.0758499914], [34.955, 0.0, 0.0], [16.819, 5.48766912348, 12566.1516999828], [2.962, 5.19577265202, 155.4203994342], [1.288, 4.72200252235, 3.523118349], [0.635, 5.96925937141, 242.728603974], [0.714, 5.30045809128, 18849.2275499742], [0.402, 3.78682982419, 553.5694028424], [0.072, 4.2976812618, 6286.5989683404], [0.067, 0.90721687647, 6127.6554505572], [0.036, 5.24029648014, 6438.4962494256], [0.024, 5.16003960716, 25132.3033999656], [0.023, 3.01921570335, 6309.3741697912], [0.017, 5.82863573502, 6525.8044539654], [0.017, 3.6777286393, 71430.69561812909], [0.009, 4.58467294499, 1577.3435424478], [0.008, 1.40626662824, 11856.2186514245], [0.008, 5.07561257196, 6256.7775301916], [0.007, 2.82473374405, 83996.84731811189], [0.005, 2.71488713339, 10977.078804699], [0.005, 3.76879847273, 12036.4607348882], [0.005, 4.28412873331, 6275.9623029906]], [[114.084, 3.14159265359, 0.0], [7.717, 4.13446589358, 6283.0758499914], [0.765, 3.83803776214, 12566.1516999828], [0.42, 0.41925861858, 155.4203994342], [0.04, 3.5984758584, 18849.2275499742], [0.041, 3.14398414077, 3.523118349], [0.035, 5.00298940826, 5573.1428014331], [0.013, 0.48794833701, 77713.7714681205], [0.01, 5.6480176635, 6127.6554505572], [0.008, 2.84160570605, 161000.6857376741], [0.002, 0.54912904658, 6438.4962494256]], [[0.878, 3.14159265359, 0.0], [0.172, 2.7657906951, 6283.0758499914], [0.05, 2.01353298182, 155.4203994342], [0.028, 2.21496423926, 12566.1516999828], [0.005, 1.75600058765, 18849.2275499742]]]

This table contains Earth’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric longitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 418-420.

pymeeus.Earth.VSOP87_L_J2000 = [[[175347046.0, 0.0, 0.0], [3341656.0, 4.6692568, 6283.07585], [34894.0, 4.6261, 12556.1517], [3497.0, 2.7441, 5753.3849], [3418.0, 2.8289, 3.5231], [3136.0, 3.6277, 77713.7715], [2676.0, 4.4181, 7860.4194], [2343.0, 6.1352, 3930.2097], [1324.0, 0.7425, 11506.7698], [1273.0, 2.0371, 529.691], [1199.0, 1.1096, 1577.3435], [990.0, 5.233, 5884.927], [902.0, 2.045, 26.298], [857.0, 3.508, 398.149], [780.0, 1.179, 5223.694], [753.0, 2.533, 5507.553], [505.0, 4.583, 18849.228], [492.0, 4.205, 775.523], [357.0, 2.92, 0.067], [317.0, 5.849, 11790.629], [284.0, 1.899, 796.298], [271.0, 0.315, 10977.079], [243.0, 0.345, 5486.778], [206.0, 4.806, 2544.314], [205.0, 1.869, 5573.143], [202.0, 2.458, 6069.777], [156.0, 0.833, 213.299], [132.0, 3.411, 2942.463], [126.0, 1.083, 20.775], [115.0, 0.645, 0.98], [103.0, 0.636, 4694.003], [102.0, 0.976, 15720.839], [102.0, 4.267, 7.114], [99.0, 6.21, 2146.17], [98.0, 0.68, 155.42], [86.0, 5.98, 161000.69], [85.0, 1.3, 6275.96], [85.0, 3.67, 71430.7], [80.0, 1.81, 17260.15], [79.0, 3.04, 12036.46], [75.0, 1.76, 5088.63], [74.0, 3.5, 3154.69], [74.0, 4.68, 801.82], [70.0, 0.83, 9437.76], [62.0, 3.98, 8827.39], [61.0, 1.82, 7084.9], [57.0, 2.78, 6286.6], [56.0, 4.39, 14143.5], [56.0, 3.47, 6279.55], [52.0, 0.19, 12139.55], [52.0, 1.33, 1748.02], [51.0, 0.28, 5856.48], [49.0, 0.49, 1194.45], [41.0, 5.37, 8429.24], [41.0, 2.4, 19651.05], [39.0, 6.17, 10447.39], [37.0, 6.04, 10213.29], [37.0, 2.57, 1059.38], [36.0, 1.71, 2352.87], [36.0, 1.78, 6812.77], [33.0, 0.59, 17789.85], [30.0, 0.44, 83996.85], [30.0, 2.74, 1349.87], [25.0, 3.16, 4690.48]], [[628307584999.0, 0.0, 0.0], [206059.0, 2.678235, 6283.07585], [4303.0, 2.6351, 12566.1517], [425.0, 1.59, 3.523], [119.0, 5.796, 26.298], [109.0, 2.966, 1577.344], [93.0, 2.59, 18849.23], [72.0, 1.14, 529.69], [68.0, 1.87, 398.15], [67.0, 4.41, 5507.55], [59.0, 2.89, 5223.69], [56.0, 2.17, 155.42], [45.0, 0.4, 796.3], [36.0, 0.47, 775.52], [29.0, 2.65, 7.11], [21.0, 5.34, 0.98], [19.0, 1.85, 5486.78], [19.0, 4.97, 213.3], [17.0, 2.99, 6275.96], [16.0, 0.03, 2544.31], [16.0, 1.43, 2146.17], [15.0, 1.21, 10977.08], [12.0, 2.83, 1748.02], [12.0, 3.26, 5088.63], [12.0, 5.27, 1194.45], [12.0, 2.08, 4694.0], [11.0, 0.77, 553.57], [10.0, 1.3, 6286.6], [10.0, 4.24, 1349.87], [9.0, 2.7, 242.73], [9.0, 5.64, 951.72], [8.0, 5.3, 2352.87], [6.0, 2.65, 9437.76], [6.0, 4.67, 4690.48]], [[8722.0, 1.0725, 6283.0758], [991.0, 3.1416, 0.0], [295.0, 0.437, 12566.152], [27.0, 0.05, 3.52], [16.0, 5.19, 26.3], [16.0, 3.69, 155.42], [9.0, 0.3, 18849.23], [9.0, 2.06, 77713.77], [7.0, 0.83, 775.52], [5.0, 4.66, 1577.34], [4.0, 1.03, 7.11], [4.0, 3.44, 5573.14], [3.0, 5.14, 796.3], [3.0, 6.05, 5507.55], [3.0, 1.19, 242.73], [3.0, 6.12, 529.69], [3.0, 0.3, 398.15], [3.0, 2.28, 553.57], [2.0, 4.38, 5223.69], [2.0, 3.75, 0.98]], [[289.0, 5.842, 6283.076], [21.0, 6.05, 12556.15], [3.0, 5.2, 155.42], [3.0, 3.14, 0.0], [1.0, 4.72, 3.52], [1.0, 5.97, 242.73], [1.0, 5.54, 18849.23]], [[8.0, 4.14, 6283.08], [1.0, 3.28, 12566.15]]]

This table contains Earth’s most important periodic terms from the planetary theory VSOP87 for the heliocentric longitude, referred to the equinox J2000.0. In Meeus’ book these values can be found in pages 418-420 and page 173.

pymeeus.Earth.VSOP87_R = [[[100013988.799, 0.0, 0.0], [1670699.626, 3.09846350771, 6283.0758499914], [13956.023, 3.0552460962, 12566.1516999828], [3083.72, 5.19846674381, 77713.7714681205], [1628.461, 1.17387749012, 5753.3848848968], [1575.568, 2.84685245825, 7860.4193924392], [924.799, 5.45292234084, 11506.7697697936], [542.444, 4.56409149777, 3930.2096962196], [472.11, 3.66100022149, 5884.9268465832], [328.78, 5.89983646482, 5223.6939198022], [345.983, 0.96368617687, 5507.5532386674], [306.784, 0.29867139512, 5573.1428014331], [174.844, 3.01193636534, 18849.2275499742], [243.189, 4.27349536153, 11790.6290886588], [211.829, 5.84714540314, 1577.3435424478], [185.752, 5.02194447178, 10977.078804699], [109.835, 5.05510636285, 5486.777843175], [98.316, 0.88681311277, 6069.7767545534], [86.499, 5.68959778254, 15720.8387848784], [85.825, 1.27083733351, 161000.6857376741], [62.916, 0.92177108832, 529.6909650946], [57.056, 2.01374292014, 83996.84731811189], [64.903, 0.27250613787, 17260.1546546904], [49.384, 3.24501240359, 2544.3144198834], [55.736, 5.24159798933, 71430.69561812909], [42.515, 6.01110242003, 6275.9623029906], [46.963, 2.57805070386, 775.522611324], [38.968, 5.36071738169, 4694.0029547076], [44.661, 5.53715807302, 9437.762934887], [35.66, 1.67468058995, 12036.4607348882], [31.921, 0.18368229781, 5088.6288397668], [31.846, 1.77775642085, 398.1490034082], [33.193, 0.24370300098, 7084.8967811152], [38.245, 2.39255343974, 8827.3902698748], [28.464, 1.21344868176, 6286.5989683404], [37.49, 0.82952922332, 19651.048481098], [36.957, 4.90107591914, 12139.5535091068], [34.537, 1.84270693282, 2942.4634232916], [26.275, 4.58896850401, 10447.3878396044], [24.596, 3.78660875483, 8429.2412664666], [23.587, 0.26866117066, 796.2980068164], [27.793, 1.89934330904, 6279.5527316424], [23.927, 4.99598548138, 5856.4776591154], [20.349, 4.65267995431, 2146.1654164752], [23.287, 2.80783650928, 14143.4952424306], [22.103, 1.95004702988, 3154.6870848956], [19.506, 5.38227371393, 2352.8661537718], [17.958, 0.19871379385, 6812.766815086], [17.174, 4.43315560735, 10213.285546211], [16.19, 5.23160507859, 17789.845619785], [17.314, 6.15200787916, 16730.4636895958], [13.814, 5.18962074032, 8031.0922630584], [18.833, 0.67306674027, 149854.4001348079], [18.331, 2.25348733734, 23581.2581773176], [13.641, 3.68516118804, 4705.7323075436], [13.139, 0.65289581324, 13367.9726311066], [10.414, 4.33285688538, 11769.8536931664], [9.978, 4.20126336355, 6309.3741697912], [10.169, 1.59390681369, 4690.4798363586], [7.564, 2.6256059739, 6256.7775301916], [9.661, 3.6758679122, 27511.4678735372], [6.743, 0.56270332741, 3340.6124266998], [8.743, 6.06359123461, 1748.016413067], [7.786, 3.67371235637, 12168.0026965746], [6.633, 5.66149277792, 11371.7046897582], [7.712, 0.31242577789, 7632.9432596502], [6.592, 3.13576266188, 801.8209311238], [7.46, 5.64757188143, 11926.2544136688], [6.933, 2.923845864, 6681.2248533996], [6.802, 1.4232980642, 23013.5395395872], [6.115, 5.13393615454, 1194.4470102246], [6.477, 2.64986648492, 19804.8272915828], [5.233, 4.62434053374, 6438.4962494256], [6.147, 3.02863936662, 233141.3144043615], [4.608, 1.72194702724, 7234.794256242], [4.221, 1.55697533729, 7238.6755916], [5.314, 2.40716580847, 11499.6562227928], [5.128, 5.3239896569, 11513.8833167944], [4.77, 0.25554312006, 11856.2186514245], [5.519, 2.09089154502, 17298.1823273262], [5.625, 4.34052903053, 90955.5516944961], [4.578, 4.4656964157, 5746.271337896], [3.788, 4.9072938351, 4164.311989613], [5.337, 5.09957905104, 31441.6775697568], [3.967, 1.20054555174, 1349.8674096588], [4.008, 3.03007204392, 1059.3819301892], [3.476, 0.7608027703, 10973.55568635], [4.232, 1.05485713117, 5760.4984318976], [4.582, 3.76570026763, 6386.16862421], [3.335, 3.13829943354, 6836.6452528338], [3.418, 3.00072390334, 4292.3308329504], [3.598, 5.70718084323, 5643.1785636774], [3.237, 4.16448773994, 9917.6968745098], [4.154, 2.59941292162, 7058.5984613154], [3.362, 4.54577697964, 4732.0306273434], [2.978, 1.3056126882, 6283.14316029419], [2.765, 0.51311975679, 26.2983197998], [2.802, 5.66263240521, 8635.9420037632], [2.927, 5.73787481548, 16200.7727245012], [3.164, 1.69140262657, 11015.1064773348], [2.598, 2.96244118586, 25132.3033999656], [3.519, 3.62639325753, 244287.60000722768], [2.676, 4.2072570085, 18073.7049386502], [2.978, 1.74971565805, 6283.0085396886], [2.287, 1.06975704977, 14314.1681130498], [2.863, 5.92838131397, 14712.317116458], [3.071, 0.23793217002, 35371.8872659764], [2.656, 0.8995930178, 12352.8526045448], [2.415, 2.79975176257, 709.9330485583], [2.814, 3.51488206882, 21228.3920235458], [1.977, 2.6135829755, 951.7184062506], [2.548, 2.47684686575, 6208.2942514241], [1.999, 0.5609038816, 7079.3738568078], [2.305, 1.05376461628, 22483.84857449259], [1.855, 2.86090681163, 5216.5803728014], [2.157, 1.31396741861, 154717.6098876827], [1.97, 4.36929875289, 167283.7615876655], [1.635, 5.85571606764, 10984.1923516998], [1.754, 2.14452408833, 6290.1893969922], [2.154, 6.03828341543, 10873.9860304804], [1.714, 3.70157691113, 1592.5960136328], [1.541, 6.21598380732, 23543.23050468179], [1.611, 1.99824499377, 10969.9652576982], [1.712, 1.34295663542, 3128.3887650958], [1.642, 5.55026665339, 6496.3749454294], [1.502, 5.43948825854, 155.4203994342], [1.827, 5.91227480261, 3738.761430108], [1.726, 2.16764983583, 10575.4066829418], [1.532, 5.3568310707, 13521.7514415914], [1.829, 1.66006148731, 39302.096962196], [1.605, 1.90928637633, 6133.5126528568], [1.282, 2.46014880418, 13916.0191096416], [1.211, 4.4136063155, 3894.1818295422], [1.394, 1.77801929354, 9225.539273283], [1.571, 4.95512957592, 25158.6017197654], [1.205, 1.19212540615, 3.523118349], [1.132, 2.69830084955, 6040.3472460174], [1.504, 5.77002730341, 18209.33026366019], [1.393, 1.62621805428, 5120.6011455836], [1.077, 2.93931554233, 17256.6315363414], [1.232, 0.71655165307, 143571.32428481648], [1.087, 0.99769687939, 955.5997416086], [1.068, 5.28472576231, 65147.6197681377], [0.98, 5.10949204607, 6172.869528772], [1.169, 3.11664290862, 14945.3161735544], [1.202, 4.02992510402, 553.5694028424], [0.979, 2.00000879212, 15110.4661198662], [0.962, 4.023807714, 6282.0955289232], [0.999, 3.6264300279, 6262.300454499], [1.03, 5.84989900289, 213.299095438], [1.014, 2.84221578218, 8662.240323563], [1.185, 1.51330541132, 17654.7805397496], [0.967, 2.67081017562, 5650.2921106782], [1.222, 2.65423784904, 88860.05707098669], [0.981, 2.36370360283, 6206.8097787158], [1.033, 0.13874927606, 11712.9553182308], [1.103, 3.08477302937, 43232.3066584156], [0.781, 2.53372735932, 16496.3613962024], [1.019, 3.04569392376, 6037.244203762], [0.795, 5.80662989111, 5230.807466803], [0.813, 3.57710279439, 10177.2576795336], [0.962, 5.31470594766, 6284.0561710596], [0.721, 5.96264301567, 12559.038152982], [0.966, 2.74714939953, 6244.9428143536], [0.921, 0.10155275926, 29088.811415985], [0.692, 3.89764447548, 1589.0728952838], [0.719, 5.91791450402, 4136.9104335162], [0.772, 4.05505682353, 6127.6554505572], [0.712, 5.49291532439, 22003.9146348698], [0.672, 1.60700490811, 11087.2851259184], [0.69, 4.50539825563, 426.598190876], [0.854, 3.26104981596, 20426.571092422], [0.656, 4.3241018294, 16858.4825329332], [0.84, 2.59572585222, 28766.924424484], [0.692, 0.61650089011, 11403.676995575], [0.7, 3.40901167143, 7.1135470008], [0.726, 0.04243053594, 5481.2549188676], [0.557, 4.78317696534, 20199.094959633], [0.649, 1.04027912958, 6062.6632075526], [0.633, 5.70229959167, 45892.73043315699], [0.592, 6.11836729658, 9623.6882766912], [0.523, 3.62840021266, 5333.9002410216], [0.604, 5.57734696185, 10344.2950653858], [0.496, 2.21023499449, 1990.745017041], [0.691, 1.96071732602, 12416.5885028482], [0.64, 1.59074172032, 18319.5365848796], [0.625, 3.82362791378, 13517.8701062334], [0.663, 5.08444996779, 283.8593188652], [0.475, 1.17025894287, 12569.6748183318], [0.664, 4.50029469969, 47162.5163546352], [0.569, 0.16310365162, 17267.26820169119], [0.568, 3.86100969474, 6076.8903015542], [0.539, 4.83282276086, 18422.62935909819], [0.466, 0.75872342878, 7342.4577801806], [0.541, 3.07212190507, 226858.23855437007], [0.458, 0.26774483096, 4590.910180489], [0.61, 1.53597051291, 33019.0211122046], [0.617, 2.62356328726, 11190.377900137], [0.548, 4.55798855791, 18875.525869774], [0.633, 4.60110281228, 66567.48586525429], [0.596, 5.78202396722, 632.7837393132], [0.533, 5.01786882904, 12132.439962106], [0.603, 5.38458554802, 316428.22867391503], [0.469, 0.59168241917, 21954.15760939799], [0.548, 3.50613163558, 17253.04110768959], [0.502, 0.98804327589, 11609.8625440122], [0.568, 1.98497313089, 7668.6374249425], [0.482, 1.62141803864, 12146.6670561076], [0.391, 3.68718382989, 18052.9295431578], [0.457, 3.7720573734, 156137.47598479927], [0.401, 5.28260651958, 15671.0817594066], [0.469, 1.80963184268, 12562.6285816338], [0.508, 3.36399024699, 20597.2439630412], [0.45, 5.6605429925, 10454.5013866052], [0.375, 4.98534633105, 9779.1086761254], [0.523, 0.97215560834, 155427.542936241], [0.403, 5.13939866506, 1551.045222648], [0.372, 3.69883738807, 9388.0059094152], [0.367, 4.43875659716, 4535.0594369244], [0.406, 4.208631566, 12592.4500197826], [0.36, 2.53924644657, 242.728603974], [0.471, 4.61907324819, 5436.9930152402], [0.441, 5.83872966262, 3496.032826134], [0.385, 4.94496680973, 24356.7807886416], [0.349, 6.15018231784, 19800.9459562248], [0.355, 0.21895678106, 5429.8794682394], [0.344, 5.62993724928, 2379.1644735716], [0.38, 2.72105213143, 11933.3679606696], [0.432, 0.24221790536, 17996.0311682222], [0.378, 5.22517556974, 7477.522860216], [0.337, 5.10888041439, 5849.3641121146], [0.315, 0.57827745123, 10557.5941608238], [0.318, 4.49953141399, 3634.6210245184], [0.323, 1.54274281393, 10440.2742926036], [0.309, 5.76839284397, 20.7753954924], [0.301, 2.34727604008, 4686.8894077068], [0.414, 5.9323760231, 51092.7260508548], [0.361, 2.1639860955, 28237.2334593894], [0.288, 0.18376252189, 13095.8426650774], [0.277, 5.12952205045, 13119.72110282519], [0.327, 6.19222146204, 6268.8487559898], [0.273, 0.30522428863, 23141.5583829246], [0.267, 5.76152585786, 5966.6839803348], [0.308, 5.99280509979, 22805.7355659936], [0.345, 2.92489919444, 36949.2308084242], [0.253, 5.20995219509, 24072.9214697764], [0.342, 5.72702586209, 16460.33352952499], [0.261, 2.00304796059, 6148.010769956], [0.238, 5.08264392839, 6915.8595893046], [0.249, 2.94762789744, 135.0650800354], [0.306, 3.89764686987, 10988.808157535], [0.305, 0.05827812117, 4701.1165017084], [0.319, 2.95712862064, 163096.18036118348], [0.209, 4.43768461442, 6546.1597733642], [0.27, 2.06643178717, 4804.209275927], [0.217, 0.73691592312, 6303.8512454838], [0.206, 0.32075959415, 25934.1243310894], [0.218, 0.18428135264, 28286.9904848612], [0.205, 5.21312087405, 20995.3929664494], [0.199, 0.44384292491, 16737.5772365966], [0.23, 6.06567392849, 6287.0080032545], [0.219, 1.291942163, 5326.7866940208], [0.201, 1.74700937253, 22743.4093795164], [0.207, 4.45440927276, 6279.4854213396], [0.269, 6.0564044503, 64471.99124174489], [0.19, 0.99256176518, 29296.6153895786], [0.238, 5.42471431221, 39609.6545831656], [0.262, 5.26961924198, 522.5774180938], [0.21, 4.68618183158, 6254.6266625236], [0.197, 2.8062455408, 4933.2084403326], [0.252, 4.36220154608, 40879.4405046438], [0.261, 1.07241516738, 55022.9357470744], [0.189, 3.82966734476, 419.4846438752], [0.185, 4.14324541379, 5642.1982426092], [0.247, 3.44855612987, 6702.5604938666], [0.205, 4.04424043223, 536.8045120954], [0.191, 3.14082686083, 16723.350142595], [0.222, 5.16263907319, 23539.7073863328], [0.18, 4.56214752149, 6489.2613984286], [0.219, 0.80382553358, 16627.3709153772], [0.227, 0.60156339452, 5905.7022420756], [0.168, 0.88753528161, 16062.1845261168], [0.158, 0.92127725775, 23937.856389741], [0.157, 4.69607868164, 6805.6532680852], [0.207, 4.88410451334, 6286.6662786432], [0.16, 4.95943826846, 10021.8372800994], [0.166, 0.97126433565, 3097.88382272579], [0.209, 5.75663411805, 3646.3503773544], [0.175, 6.12762824412, 239424.39025435288], [0.173, 3.13887234973, 6179.9830757728], [0.157, 3.62822058179, 18451.07854656599], [0.157, 4.67695912235, 6709.6740408674], [0.146, 3.09506069735, 4907.3020501456], [0.165, 2.2713912876, 10660.6869350424], [0.201, 1.67701267433, 2107.0345075424], [0.144, 3.96947747592, 6019.9919266186], [0.171, 5.91302216729, 6058.7310542895], [0.144, 2.1315565512, 26084.0218062162], [0.151, 0.67417383554, 2388.8940204492], [0.189, 5.07122281033, 263.0839233728], [0.146, 5.10373877968, 10770.8932562618], [0.187, 1.23915444627, 19402.7969528166], [0.174, 0.08407293391, 9380.9596727172], [0.137, 1.26247412309, 12566.2190102856], [0.137, 3.52826010842, 639.897286314], [0.148, 1.76124372592, 5888.4499649322], [0.164, 2.39195095081, 6357.8574485587], [0.146, 2.43675816553, 5881.4037282342], [0.161, 1.15721259372, 26735.9452622132], [0.131, 2.51859277344, 6599.467719648], [0.153, 5.85203687779, 6281.5913772831], [0.151, 3.72338532649, 12669.2444742014], [0.132, 2.38417741883, 6525.8044539654], [0.129, 0.75556744143, 5017.508371365], [0.127, 0.00254936441, 10027.9031957292], [0.148, 2.85102145528, 6418.1409300268], [0.143, 5.74460279367, 26087.9031415742], [0.172, 0.4128996224, 174242.4659640497], [0.136, 4.15497742275, 6311.5250374592], [0.17, 5.98194913129, 327574.51427678124], [0.124, 1.65497607604, 32217.2001810808], [0.136, 2.48430783417, 13341.6743113068], [0.165, 2.496679246, 58953.145443294], [0.123, 3.45660563754, 6277.552925684], [0.117, 0.86065134175, 6245.0481773556], [0.149, 5.61358280963, 5729.506447149], [0.153, 0.2686002995, 245.8316462294], [0.128, 0.71204006588, 103.0927742186], [0.159, 2.43166592149, 221995.02880149524], [0.13, 2.80707316718, 6016.4688082696], [0.137, 1.70657709294, 12566.08438968], [0.111, 1.56305648432, 17782.7320727842], [0.113, 3.58302904101, 25685.872802808], [0.109, 3.26403795962, 6819.8803620868], [0.122, 0.34120688217, 1162.4747044078], [0.119, 5.84644718278, 12721.572099417], [0.144, 2.28899679126, 12489.8856287072], [0.137, 5.82029768354, 44809.6502008634], [0.107, 2.4281854414, 5547.1993364596], [0.134, 1.26539982939, 5331.3574437408], [0.103, 5.96518130595, 6321.1035226272], [0.109, 0.33808549034, 11300.5842213564], [0.129, 5.89187277327, 12029.3471878874], [0.122, 5.77325634636, 11919.140866668], [0.107, 6.2499898935, 77690.75950573849], [0.107, 1.00535580713, 77736.78343050249], [0.143, 0.24122178432, 4214.0690150848], [0.143, 0.88529649733, 7576.560073574], [0.107, 2.92124030496, 31415.379249957], [0.099, 5.70862227072, 5540.0857894588], [0.11, 0.37528037383, 5863.5912061162], [0.104, 4.44107178366, 2118.7638603784], [0.098, 5.95877916706, 4061.2192153944], [0.113, 1.24206857385, 84672.47584450469], [0.124, 2.55619029867, 12539.853380183], [0.11, 3.66952094329, 238004.5241572363], [0.112, 4.32512422943, 97238.62754448749], [0.097, 3.70151541181, 11720.0688652316], [0.12, 1.26895630252, 12043.574281889], [0.094, 2.56461130309, 19004.6479494084], [0.117, 3.65425622684, 34520.3093093808], [0.098, 0.13589994287, 11080.1715789176], [0.097, 5.38330115253, 7834.1210726394], [0.097, 2.46722096722, 71980.63357473118], [0.095, 5.36958330451, 6288.5987742988], [0.111, 5.01961920313, 11823.1616394502], [0.09, 2.72299804525, 26880.3198130326], [0.099, 0.90164266377, 18635.9284545362], [0.126, 4.78722177847, 305281.9430710488], [0.093, 0.21240380046, 18139.2945014159], [0.124, 5.00979495566, 172146.9713405403], [0.099, 5.67090026475, 16522.6597160022], [0.092, 2.28180963676, 12491.3701014155], [0.09, 4.50544881196, 40077.61957352], [0.1, 2.00639461612, 12323.4230960088], [0.095, 5.68801979087, 14919.0178537546], [0.087, 1.86043406047, 27707.5424942948], [0.105, 3.02903468417, 22345.2603761082], [0.087, 5.43970168638, 6272.0301497275], [0.089, 1.63389387182, 33326.5787331742], [0.082, 5.58298993353, 10241.2022911672], [0.094, 5.47749711149, 9924.8104215106], [0.082, 4.71988314145, 15141.390794312], [0.097, 5.61458778738, 2787.0430238574], [0.096, 3.89073946348, 6379.0550772092], [0.081, 3.13038482444, 36147.4098773004], [0.11, 4.89978492291, 72140.6286666874], [0.097, 5.20764563059, 6303.4311693902], [0.082, 5.26342716139, 9814.6041002912], [0.109, 2.3555558977, 83286.91426955358], [0.097, 2.58492958057, 30666.1549584328], [0.093, 1.32651591333, 23020.65308658799], [0.078, 3.99588630754, 11293.4706743556], [0.09, 0.57771932738, 26482.1708096244], [0.106, 3.92012705073, 62883.3551395136], [0.098, 2.94397773524, 316.3918696566], [0.076, 3.96310417608, 29026.48522950779], [0.078, 1.97068529306, 90279.92316810328], [0.076, 0.23027966596, 21424.4666443034], [0.08, 2.23099742212, 266.6070417218], [0.079, 1.46227790922, 8982.810669309], [0.102, 4.92129953565, 5621.8429232104], [0.1, 0.39243148321, 24279.10701821359], [0.071, 1.52014858474, 33794.5437235286], [0.076, 0.22880641443, 57375.8019008462], [0.091, 0.96515913904, 48739.859897083], [0.075, 2.77638585157, 12964.300703391], [0.077, 5.18846946344, 11520.9968637952], [0.068, 0.50006599129, 4274.5183108324], [0.075, 2.07323762803, 15664.03552270859], [0.074, 1.01884134928, 6393.2821712108], [0.077, 0.4666517878, 16207.886271502], [0.081, 4.10452219483, 161710.6187862324], [0.067, 3.83840630887, 6262.7205305926], [0.071, 3.91415523291, 7875.6718636242], [0.081, 0.91938383237, 74.7815985673], [0.083, 4.69916218791, 23006.42599258639], [0.063, 2.32556465878, 6279.1945146334], [0.065, 5.41938745446, 28628.3362260996], [0.065, 3.02336771694, 5959.570433334], [0.064, 3.3103319837, 2636.725472637], [0.064, 0.18375587519, 1066.49547719], [0.08, 5.81239171612, 12341.8069042809], [0.066, 2.15105504851, 38.0276726358], [0.062, 2.43313614978, 10138.1095169486], [0.06, 3.1615390647, 5490.300961524], [0.069, 0.30764736334, 7018.9523635232], [0.068, 2.24442548639, 24383.0791084414], [0.078, 1.39649386463, 9411.4646150872], [0.063, 0.72976362625, 6286.9571853494], [0.073, 4.95125917731, 6453.7487206106], [0.078, 0.32736023459, 6528.9074962208], [0.059, 4.95362151577, 35707.7100829074], [0.07, 2.37962727525, 15508.6151232744], [0.073, 1.35229143111, 5327.4761083828], [0.072, 5.91833527334, 10881.0995774812], [0.059, 5.36231868425, 10239.5838660108], [0.059, 1.63156134967, 61306.0115970658], [0.054, 4.29491690425, 21947.1113727], [0.057, 5.89190132575, 34513.2630726828], [0.074, 1.38235845304, 9967.4538999816], [0.053, 3.86543309344, 32370.9789915656], [0.055, 4.51794544854, 34911.412076091], [0.063, 5.41479412056, 11502.8376165305], [0.063, 2.34416220742, 11510.7019230567], [0.068, 0.77493931112, 29864.334027309], [0.06, 5.57024703495, 5756.9080032458], [0.072, 2.80863088166, 10866.8724834796], [0.061, 2.69736991384, 82576.9812209953], [0.063, 5.32068807257, 3116.6594122598], [0.052, 1.02278758099, 6272.4391846416], [0.069, 5.00698550308, 25287.7237993998], [0.066, 6.12047940728, 12074.488407524], [0.051, 2.59519527563, 11396.5634485742], [0.056, 2.57995973521, 17892.93839400359], [0.059, 0.4416723762, 250570.6758572191], [0.059, 3.84070143543, 5483.254724826], [0.049, 0.54704693048, 22594.05489571199], [0.065, 2.38423614501, 52670.0695933026], [0.069, 5.34363738671, 66813.5648357332], [0.057, 5.42770501007, 310145.1528239236], [0.053, 1.17760296075, 149.5631971346], [0.061, 4.02090887211, 34596.3646546524], [0.049, 4.18361320516, 18606.4989460002], [0.055, 0.83886167974, 20452.8694122218], [0.05, 1.46327331958, 37455.7264959744], [0.048, 4.53854727167, 29822.7832363242], [0.058, 3.34847975377, 33990.6183442862], [0.065, 1.45522693982, 76251.32777062019], [0.056, 2.35650663692, 37724.7534197482], [0.052, 2.61551081496, 5999.2165311262], [0.053, 0.17334326094, 77717.29458646949], [0.053, 0.79879700631, 77710.24834977149], [0.047, 0.43240779709, 735.8765135318], [0.053, 4.58763261686, 11616.976091013], [0.048, 6.20230111054, 4171.4255366138], [0.052, 1.09723616404, 640.8776073822], [0.057, 3.42008310383, 50317.2034395308], [0.053, 1.01528448581, 149144.46708624958], [0.047, 3.00924906195, 52175.8062831484], [0.052, 2.03254070404, 6293.7125153412], [0.048, 0.12356889734, 13362.4497067992], [0.045, 3.37963782356, 10763.779709261], [0.047, 5.50981287869, 12779.4507954208], [0.062, 5.45209070099, 949.1756089698], [0.061, 2.93237974631, 5791.4125575326], [0.044, 2.87440620802, 8584.6616659008], [0.046, 4.0314179656, 10667.8004820432], [0.047, 3.89902931422, 3903.9113764198], [0.046, 2.75700467329, 6993.0088985497], [0.045, 1.933862933, 206.1855484372], [0.047, 2.57670800912, 11492.542675792], [0.044, 3.62570223167, 63658.8777508376], [0.051, 0.84536826273, 12345.739057544], [0.043, 0.01524970172, 37853.8754993826], [0.041, 3.27146326065, 8858.3149443206], [0.045, 3.03765521215, 65236.2212932854], [0.047, 1.44447548944, 21393.5419698576], [0.058, 5.45843180927, 1975.492545856], [0.05, 2.13285524146, 12573.2652469836], [0.041, 1.32190847146, 2547.8375382324], [0.047, 3.67579608544, 28313.288804661], [0.041, 2.24013475126, 8273.8208670324], [0.047, 6.21438985953, 10991.3058987006], [0.042, 3.0163181735, 853.196381752], [0.056, 1.09773690181, 77376.2010224076], [0.04, 2.35698541041, 2699.7348193176], [0.043, 5.28030898459, 17796.9591667858], [0.054, 2.59175932091, 22910.44676536859], [0.054, 0.88027764102, 71960.38658322369], [0.055, 0.07988899477, 83467.15635301729], [0.039, 1.12867321442, 9910.583327509], [0.04, 1.35670430524, 27177.8515292002], [0.039, 4.39624220245, 5618.3198048614], [0.042, 4.78798367468, 7856.89627409019], [0.047, 2.75482175292, 18202.21671665939], [0.039, 1.97008298629, 24491.4257925834], [0.042, 4.04346599946, 7863.9425107882], [0.038, 0.49178679251, 38650.173506199], [0.036, 4.86047906533, 4157.1984426122], [0.043, 5.64354880978, 1062.9050485382], [0.036, 3.98066313627, 12565.1713789146], [0.042, 2.30753932657, 6549.6828917132], [0.04, 5.3969491832, 9498.2122306346], [0.04, 3.30603243754, 23536.11695768099], [0.05, 6.15760345261, 78051.34191383338]], [[103018.608, 1.10748969588, 6283.0758499914], [1721.238, 1.06442301418, 12566.1516999828], [702.215, 3.14159265359, 0.0], [32.346, 1.02169059149, 18849.2275499742], [30.799, 2.84353804832, 5507.5532386674], [24.971, 1.31906709482, 5223.6939198022], [18.485, 1.42429748614, 1577.3435424478], [10.078, 5.91378194648, 10977.078804699], [8.634, 0.27146150602, 5486.777843175], [8.654, 1.42046854427, 6275.9623029906], [5.069, 1.68613426734, 5088.6288397668], [4.985, 6.01401770704, 6286.5989683404], [4.669, 5.98724494073, 529.6909650946], [4.395, 0.51800238019, 4694.0029547076], [3.872, 4.74969833437, 2544.3144198834], [3.75, 5.07097685568, 796.2980068164], [4.1, 1.08424786092, 9437.762934887], [3.518, 0.02290216272, 83996.84731811189], [3.436, 0.94937019624, 71430.69561812909], [3.221, 6.15628775313, 2146.1654164752], [3.414, 5.41218322538, 775.522611324], [2.863, 5.48432847146, 10447.3878396044], [2.52, 0.24276941146, 398.1490034082], [2.201, 4.95216196651, 6812.766815086], [2.186, 0.41991743105, 8031.0922630584], [2.838, 3.42034351366, 2352.8661537718], [2.554, 6.13241878525, 6438.4962494256], [1.932, 5.31374608366, 8429.2412664666], [2.429, 3.09164528262, 4690.4798363586], [1.73, 1.5368620855, 4705.7323075436], [2.25, 3.68863633842, 7084.8967811152], [2.093, 1.28191783032, 1748.016413067], [1.441, 0.81656250862, 14143.4952424306], [1.483, 3.22225357771, 7234.794256242], [1.754, 3.22883705112, 6279.5527316424], [1.583, 4.09702349428, 11499.6562227928], [1.575, 5.53890170575, 3154.6870848956], [1.847, 1.82040335363, 7632.9432596502], [1.504, 3.63293385726, 11513.8833167944], [1.337, 4.64440864339, 6836.6452528338], [1.275, 2.69341415363, 1349.8674096588], [1.352, 6.15101580257, 5746.271337896], [1.125, 3.35673439497, 17789.845619785], [1.47, 3.65282991755, 1194.4470102246], [1.177, 2.57676109092, 13367.9726311066], [1.101, 4.49748696552, 4292.3308329504], [1.234, 5.65036509521, 5760.4984318976], [0.984, 0.65517395136, 5856.4776591154], [0.928, 2.32420318751, 10213.285546211], [1.077, 5.82812169132, 12036.4607348882], [0.916, 0.76613009583, 16730.4636895958], [0.877, 1.50137505051, 11926.2544136688], [1.023, 5.62076589825, 6256.7775301916], [0.851, 0.65709335533, 155.4203994342], [0.802, 4.10519132088, 951.7184062506], [0.857, 1.41661697538, 5753.3848848968], [0.994, 1.14418521187, 1059.3819301892], [0.813, 1.63948433322, 6681.2248533996], [0.662, 4.5520045226, 5216.5803728014], [0.644, 4.19478168733, 6040.3472460174], [0.626, 1.50767713598, 5643.1785636774], [0.59, 6.18277145205, 4164.311989613], [0.635, 0.52413263542, 6290.1893969922], [0.65, 0.9793569035, 25132.3033999656], [0.568, 2.30125315873, 10973.55568635], [0.547, 5.27256412213, 3340.6124266998], [0.547, 2.20144422886, 1592.5960136328], [0.526, 0.92464258226, 11371.7046897582], [0.49, 5.90951388655, 3894.1818295422], [0.478, 1.66857963179, 12168.0026965746], [0.516, 3.59803483887, 10969.9652576982], [0.518, 3.97914412373, 17298.1823273262], [0.534, 5.03740926442, 9917.6968745098], [0.487, 2.50545369269, 6127.6554505572], [0.416, 4.04828175503, 10984.1923516998], [0.538, 5.54081539805, 553.5694028424], [0.402, 2.16544019233, 7860.4193924392], [0.553, 2.32177369366, 11506.7697697936], [0.367, 3.3915253225, 6496.3749454294], [0.36, 5.34379853282, 7079.3738568078], [0.337, 3.61563704045, 11790.6290886588], [0.456, 0.30754294809, 801.8209311238], [0.417, 3.70009308674, 10575.4066829418], [0.381, 5.82033971802, 7058.5984613154], [0.321, 0.31988767355, 16200.7727245012], [0.364, 1.08414306177, 6309.3741697912], [0.294, 4.54798604957, 11856.2186514245], [0.29, 1.26473978562, 8635.9420037632], [0.399, 4.16998866302, 26.2983197998], [0.262, 5.08316906342, 10177.2576795336], [0.243, 2.2574609119, 11712.9553182308], [0.237, 1.05070575346, 242.728603974], [0.275, 3.45319481756, 5884.9268465832], [0.255, 5.38496831087, 21228.3920235458], [0.307, 4.24313526604, 3738.761430108], [0.216, 3.46037894728, 213.299095438], [0.196, 0.69029243914, 1990.745017041], [0.198, 5.16301829964, 12352.8526045448], [0.214, 3.91876200279, 13916.0191096416], [0.212, 4.00861198517, 5230.807466803], [0.184, 5.59805976614, 6283.14316029419], [0.184, 2.85275392124, 7238.6755916], [0.179, 2.54259058334, 14314.1681130498], [0.225, 1.64458698399, 4732.0306273434], [0.236, 5.58826125715, 6069.7767545534], [0.187, 2.72805985443, 6062.6632075526], [0.184, 6.04216273598, 6283.0085396886], [0.23, 3.62591335086, 6284.0561710596], [0.163, 2.19117396803, 18073.7049386502], [0.172, 0.9761295074, 3930.2096962196], [0.215, 1.04672844028, 3496.032826134], [0.169, 4.75084479006, 17267.26820169119], [0.152, 0.19390712179, 9779.1086761254], [0.182, 5.16288118255, 17253.04110768959], [0.149, 0.8094418426, 709.9330485583], [0.163, 2.1920957039, 6076.8903015542], [0.186, 5.01159497089, 11015.1064773348], [0.134, 0.97765485759, 65147.6197681377], [0.141, 4.38421981312, 4136.9104335162], [0.158, 4.60974280627, 9623.6882766912], [0.133, 3.30508592837, 154717.6098876827], [0.163, 6.11782626245, 3.523118349], [0.174, 1.58078542187, 7.1135470008], [0.141, 0.49976927274, 25158.6017197654], [0.124, 6.03440460031, 9225.539273283], [0.15, 5.30166336812, 13517.8701062334], [0.127, 1.92389511438, 22483.84857449259], [0.121, 2.37813129011, 167283.7615876655], [0.12, 3.98423684853, 4686.8894077068], [0.117, 5.81072642211, 12569.6748183318], [0.122, 5.60973054224, 5642.1982426092], [0.157, 3.40236426002, 16496.3613962024], [0.129, 2.10705116371, 1589.0728952838], [0.116, 0.55839966736, 5849.3641121146], [0.123, 1.52961392771, 12559.038152982], [0.111, 0.44848279675, 6172.869528772], [0.123, 5.81645568991, 6282.0955289232], [0.15, 4.26278409223, 3128.3887650958], [0.106, 2.27437761356, 5429.8794682394], [0.104, 4.42743707728, 23543.23050468179], [0.121, 0.39459045915, 12132.439962106], [0.104, 2.41842602527, 426.598190876], [0.11, 5.80381480447, 16858.4825329332], [0.1, 2.93805577485, 4535.0594369244], [0.097, 3.97935904984, 6133.5126528568], [0.11, 6.22339014386, 12146.6670561076], [0.098, 0.87576563709, 6525.8044539654], [0.098, 3.15248421301, 10440.2742926036], [0.095, 2.461684111, 3097.88382272579], [0.088, 0.23371480284, 13119.72110282519], [0.098, 5.77016493489, 7342.4577801806], [0.092, 6.03915555063, 20426.571092422], [0.096, 5.56909292561, 2388.8940204492], [0.081, 1.32131147691, 5650.2921106782], [0.086, 3.94529200528, 10454.5013866052], [0.076, 2.70729716925, 143571.32428481648], [0.091, 5.64100034152, 8827.3902698748], [0.076, 1.80783856698, 28286.9904848612], [0.081, 1.90858992196, 29088.811415985], [0.075, 3.40955892978, 5481.2549188676], [0.069, 4.49936170873, 17256.6315363414], [0.088, 1.10098454357, 11769.8536931664], [0.066, 2.78285801977, 536.8045120954], [0.068, 3.88179770758, 17260.1546546904], [0.084, 1.59303306354, 9380.9596727172], [0.088, 3.88076636762, 7477.522860216], [0.061, 6.17558202197, 11087.2851259184], [0.06, 4.34824715818, 6206.8097787158], [0.082, 4.59843208943, 9388.0059094152], [0.079, 1.63131230601, 4933.2084403326], [0.078, 4.20905757484, 5729.506447149], [0.057, 5.48157926651, 18319.5365848796], [0.06, 1.01261781084, 12721.572099417], [0.056, 1.63031935692, 15720.8387848784], [0.055, 0.24926735018, 15110.4661198662], [0.061, 5.93059279661, 12539.853380183], [0.055, 4.84298966314, 13095.8426650774], [0.067, 6.11690589247, 8662.240323563], [0.054, 5.73750638571, 3634.6210245184], [0.074, 1.05466745829, 16460.33352952499], [0.053, 2.29084335688, 16062.1845261168], [0.064, 2.13513767927, 7875.6718636242], [0.067, 0.07096807518, 14945.3161735544], [0.051, 2.31511194429, 6262.7205305926], [0.057, 5.77055471237, 12043.574281889], [0.056, 4.41980790431, 4701.1165017084], [0.059, 5.87963500073, 5331.3574437408], [0.058, 2.30546168628, 955.5997416086], [0.049, 1.93839278478, 5333.9002410216], [0.048, 2.69973662261, 6709.6740408674], [0.064, 1.64379897981, 6262.300454499], [0.046, 3.98449608961, 98068.53671630539], [0.05, 3.68875893005, 12323.4230960088], [0.045, 3.30068569697, 22003.9146348698], [0.047, 1.26317154881, 11919.140866668], [0.045, 0.89150445122, 51868.2486621788], [0.043, 1.61526242998, 6277.552925684], [0.043, 5.74295325645, 11403.676995575], [0.044, 3.43070646822, 10021.8372800994], [0.056, 0.02481833774, 15671.0817594066], [0.055, 3.14274403422, 33019.0211122046], [0.045, 3.00877289177, 8982.810669309], [0.046, 0.73303568429, 6303.4311693902], [0.049, 1.60455690285, 6303.8512454838], [0.045, 0.40210030323, 6805.6532680852], [0.053, 0.94869680175, 10988.808157535], [0.041, 1.61122384329, 6819.8803620868], [0.055, 0.89439119424, 11933.3679606696], [0.045, 3.88495384656, 60530.4889857418], [0.04, 4.75740908001, 38526.574350872], [0.04, 1.49921251887, 18451.07854656599], [0.04, 3.77498297228, 26087.9031415742], [0.051, 1.70258603562, 1551.045222648], [0.039, 2.97100699926, 2118.7638603784], [0.053, 5.19854123078, 77713.7714681205], [0.047, 4.26356628717, 21424.4666443034], [0.037, 0.62902722802, 24356.7807886416], [0.036, 0.11087914947, 10344.2950653858], [0.036, 0.77037556319, 12029.3471878874], [0.035, 3.30933994515, 24072.9214697764], [0.035, 5.93650887012, 31570.7996493912], [0.036, 2.15108874765, 30774.5016425748], [0.036, 1.75078825382, 16207.886271502], [0.033, 5.06264177921, 226858.23855437007], [0.034, 6.168913788, 24491.4257925834], [0.035, 3.19120695549, 32217.2001810808], [0.034, 2.31528650443, 55798.4583583984], [0.032, 4.21446357042, 15664.03552270859], [0.039, 1.24979117796, 6418.1409300268], [0.037, 4.1194365577, 2787.0430238574], [0.032, 1.6288771089, 639.897286314], [0.038, 5.89832942685, 640.8776073822], [0.032, 1.72442327688, 27433.88921587499], [0.031, 2.78828943753, 12139.5535091068], [0.035, 4.44608896525, 18202.21671665939], [0.034, 3.96287980676, 18216.443810661], [0.033, 4.73611335874, 16723.350142595], [0.034, 1.43910280005, 49515.382508407], [0.031, 0.23302920161, 23581.2581773176], [0.029, 2.0263384022, 11609.8625440122], [0.03, 2.5492323024, 9924.8104215106], [0.032, 4.91793198558, 11300.5842213564], [0.028, 0.26187189577, 13521.7514415914], [0.028, 3.84568936822, 2699.7348193176], [0.029, 1.83149729794, 29822.7832363242], [0.033, 4.60320094415, 19004.6479494084], [0.027, 4.46183450287, 6702.5604938666], [0.03, 4.4649407224, 36147.4098773004], [0.027, 0.03211931363, 6279.7894925736], [0.026, 5.46497324333, 6245.0481773556], [0.035, 4.52695674113, 36949.2308084242], [0.027, 3.52528177609, 10770.8932562618], [0.026, 1.48499438453, 11080.1715789176], [0.035, 2.82154380962, 19402.7969528166], [0.025, 2.46339998836, 6279.4854213396], [0.026, 4.97688894643, 16737.5772365966], [0.026, 2.36136541526, 17996.0311682222], [0.029, 4.15148654061, 45892.73043315699], [0.026, 4.50714272714, 17796.9591667858], [0.027, 4.72625223674, 1066.49547719], [0.025, 2.89309528854, 6286.6662786432], [0.027, 0.37462444357, 12964.300703391], [0.029, 4.94860010533, 5863.5912061162], [0.031, 3.93096113577, 29864.334027309], [0.024, 6.14987193584, 18606.4989460002], [0.024, 3.74225964547, 29026.48522950779], [0.025, 5.70460621565, 27707.5424942948], [0.025, 5.33928840652, 15141.390794312], [0.027, 3.0232089714, 6286.3622074092], [0.023, 0.28364955406, 5327.4761083828], [0.026, 1.34240461687, 18875.525869774], [0.024, 1.33998410121, 19800.9459562248], [0.025, 6.00172494004, 6489.2613984286], [0.022, 1.81777974484, 6288.5987742988], [0.022, 3.5860360664, 6915.8595893046], [0.029, 2.09564449439, 15265.8865193004], [0.022, 1.02173599251, 11925.2740926006], [0.022, 4.74660932338, 28230.18722269139], [0.021, 2.30688751432, 5999.2165311262], [0.021, 3.2265494443, 25934.1243310894], [0.021, 3.04956726238, 6566.9351688566], [0.027, 5.35653084499, 33794.5437235286], [0.028, 3.91168324815, 18208.349942592], [0.02, 1.52296293311, 135.0650800354], [0.022, 4.66462839521, 13362.4497067992], [0.019, 1.78121167862, 156137.47598479927], [0.019, 2.99969102221, 19651.048481098], [0.019, 2.86664273362, 18422.62935909819], [0.025, 0.94995632141, 31415.379249957], [0.019, 4.71432851499, 77690.75950573849], [0.019, 2.54227398241, 77736.78343050249], [0.02, 5.91915117116, 48739.859897083]], [[4359.385, 5.78455133738, 6283.0758499914], [123.633, 5.57934722157, 12566.1516999828], [12.341, 3.14159265359, 0.0], [8.792, 3.62777733395, 77713.7714681205], [5.689, 1.86958905084, 5573.1428014331], [3.301, 5.47027913302, 18849.2275499742], [1.471, 4.48028885617, 5507.5532386674], [1.013, 2.81456417694, 5223.6939198022], [0.854, 3.10878241236, 1577.3435424478], [1.102, 2.84173992403, 161000.6857376741], [0.648, 5.47349498544, 775.522611324], [0.609, 1.37969434104, 6438.4962494256], [0.499, 4.4164924225, 6286.5989683404], [0.417, 0.90242451175, 10977.078804699], [0.402, 3.2037658529, 5088.6288397668], [0.351, 1.8107922777, 5486.777843175], [0.467, 3.65753702738, 7084.8967811152], [0.458, 5.38585314743, 149854.4001348079], [0.304, 3.51701098693, 796.2980068164], [0.266, 6.17413982699, 6836.6452528338], [0.279, 1.84120501086, 4694.0029547076], [0.26, 1.41629543251, 2146.1654164752], [0.266, 3.13832905677, 71430.69561812909], [0.321, 5.35313367048, 3154.6870848956], [0.238, 2.17720020018, 155.4203994342], [0.293, 4.61501268144, 4690.4798363586], [0.229, 4.7596958807, 7234.794256242], [0.211, 0.21868065485, 4705.7323075436], [0.201, 4.21905743357, 1349.8674096588], [0.195, 4.57808285364, 529.6909650946], [0.253, 2.81496293039, 1748.016413067], [0.182, 5.70454011389, 6040.3472460174], [0.179, 6.02897097053, 4292.3308329504], [0.186, 1.58690991244, 6309.3741697912], [0.17, 2.90220009715, 9437.762934887], [0.166, 1.99984925026, 8031.0922630584], [0.158, 0.04783713552, 2544.3144198834], [0.197, 2.01083639502, 1194.4470102246], [0.165, 5.78372596778, 83996.84731811189], [0.214, 3.38285934319, 7632.9432596502], [0.14, 0.36401486094, 10447.3878396044], [0.151, 0.95153163031, 6127.6554505572], [0.136, 1.48426306582, 2352.8661537718], [0.127, 5.48475435134, 951.7184062506], [0.126, 5.26866506592, 6279.5527316424], [0.125, 3.75754889288, 6812.766815086], [0.101, 4.95015746147, 398.1490034082], [0.102, 0.68468295277, 1592.5960136328], [0.1, 1.14568935785, 3894.1818295422], [0.129, 0.76540016965, 553.5694028424], [0.109, 5.41063597567, 6256.7775301916], [0.075, 5.84804322893, 242.728603974], [0.095, 1.94452244083, 11856.2186514245], [0.077, 0.69373708195, 8429.2412664666], [0.1, 5.19725292131, 244287.60000722768], [0.08, 6.18440483705, 1059.3819301892], [0.069, 5.25699888595, 14143.4952424306], [0.085, 5.39484725499, 25132.3033999656], [0.066, 0.51779993906, 801.8209311238], [0.055, 5.16878202461, 7058.5984613154], [0.051, 3.88759155247, 12036.4607348882], [0.05, 5.57636570536, 6290.1893969922], [0.061, 2.24359003264, 8635.9420037632], [0.05, 5.54441900966, 1990.745017041], [0.056, 4.0030107804, 13367.9726311066], [0.052, 4.13138898038, 7860.4193924392], [0.052, 3.90943054011, 26.2983197998], [0.041, 3.5712848278, 7079.3738568078], [0.056, 2.76959005761, 90955.5516944961], [0.042, 1.91461189199, 7477.522860216], [0.042, 0.42728171713, 10213.285546211], [0.042, 1.09413724455, 709.9330485583], [0.039, 3.93298068961, 10973.55568635], [0.038, 6.17935925345, 9917.6968745098], [0.049, 0.83021145241, 11506.7697697936], [0.053, 1.45828359397, 233141.3144043615], [0.047, 6.21568666789, 6681.2248533996], [0.037, 0.3635930998, 10177.2576795336], [0.035, 3.33024911524, 5643.1785636774], [0.034, 5.63446915337, 6525.8044539654], [0.035, 5.36033855038, 25158.6017197654], [0.034, 5.36319798321, 4933.2084403326], [0.033, 4.24722336872, 12569.6748183318], [0.043, 5.26370903404, 10575.4066829418], [0.042, 5.08837645072, 11015.1064773348], [0.04, 1.98334703186, 6284.0561710596], [0.042, 4.22496037505, 88860.05707098669], [0.029, 3.1908862817, 11926.2544136688], [0.029, 0.15217616684, 12168.0026965746], [0.03, 1.61904744136, 9779.1086761254], [0.027, 0.76388991416, 1589.0728952838], [0.036, 2.74712003443, 3738.761430108], [0.033, 3.08807829566, 3930.2096962196], [0.031, 5.34906619513, 143571.32428481648], [0.025, 0.10240267494, 22483.84857449259], [0.03, 3.47110495524, 14945.3161735544], [0.024, 1.10425016019, 4535.0594369244], [0.024, 1.5803725978, 6496.3749454294], [0.023, 3.87710321433, 6275.9623029906], [0.025, 3.9452977897, 3128.3887650958], [0.023, 3.44685609601, 4136.9104335162], [0.023, 3.83156029849, 5753.3848848968], [0.022, 1.86956128067, 16730.4636895958], [0.025, 2.42188933855, 5729.506447149], [0.02, 1.78208352927, 17789.845619785], [0.021, 4.303630874, 16858.4825329332], [0.021, 0.49258939822, 29088.811415985], [0.025, 1.33030250444, 6282.0955289232], [0.027, 2.54785812264, 3496.032826134], [0.022, 1.1123252195, 12721.572099417], [0.021, 5.97759081637, 7.1135470008], [0.019, 0.80292033311, 16062.1845261168], [0.023, 4.12454848769, 2388.8940204492], [0.022, 4.92663152168, 18875.525869774], [0.023, 5.68902059771, 16460.33352952499], [0.023, 4.97346265647, 17260.1546546904], [0.023, 3.03021283729, 66567.48586525429], [0.016, 3.89740925257, 5331.3574437408], [0.017, 3.08268671348, 154717.6098876827], [0.016, 3.95085099736, 3097.88382272579], [0.016, 3.99041783945, 6283.14316029419], [0.02, 6.10644140189, 167283.7615876655], [0.015, 4.09775914607, 11712.9553182308], [0.016, 5.717699407, 17298.1823273262], [0.016, 3.28894009404, 5884.9268465832], [0.015, 5.64785377164, 12559.038152982], [0.016, 4.4345208093, 6283.0085396886], [0.014, 2.31721603062, 5481.2549188676], [0.014, 4.43479032305, 13517.8701062334], [0.014, 4.73209312936, 7342.4577801806], [0.012, 0.64705975463, 18073.7049386502], [0.011, 1.514433322, 16200.7727245012], [0.011, 0.88708889185, 21228.3920235458], [0.014, 4.50116508534, 640.8776073822], [0.011, 4.64339996198, 11790.6290886588], [0.011, 1.31064298246, 4164.311989613], [0.009, 3.02238989305, 23543.23050468179], [0.009, 2.04999402381, 22003.9146348698], [0.009, 4.91488110218, 213.299095438]], [[144.595, 4.27319435148, 6283.0758499914], [6.729, 3.91697608662, 12566.1516999828], [0.774, 0.0, 0.0], [0.247, 3.73019298781, 18849.2275499742], [0.036, 2.8008140905, 6286.5989683404], [0.033, 5.62216602775, 6127.6554505572], [0.019, 3.71292621802, 6438.4962494256], [0.016, 4.26011484232, 6525.8044539654], [0.016, 3.50416887054, 6256.7775301916], [0.014, 3.62127621114, 25132.3033999656], [0.011, 4.39200958819, 4705.7323075436], [0.011, 5.22327127059, 6040.3472460174], [0.01, 4.28045254647, 83996.84731811189], [0.009, 1.56864096494, 5507.5532386674], [0.011, 1.37795688024, 6309.3741697912], [0.01, 5.19937959068, 71430.69561812909], [0.009, 0.4727519993, 6279.5527316424], [0.009, 0.74642756529, 5729.506447149], [0.007, 2.9737489156, 775.522611324], [0.007, 3.28615691021, 7058.5984613154], [0.007, 2.19184402142, 6812.766815086], [0.005, 3.15419034438, 529.6909650946], [0.006, 4.54725567047, 1059.3819301892], [0.005, 1.51104406936, 7079.3738568078], [0.007, 2.98052059053, 6681.2248533996], [0.005, 2.30961231391, 12036.4607348882], [0.005, 3.71102966917, 6290.1893969922]], [[3.858, 2.56384387339, 6283.0758499914], [0.306, 2.2676950123, 12566.1516999828], [0.053, 3.44031471924, 5573.1428014331], [0.015, 2.04794573436, 18849.2275499742], [0.013, 2.05688873673, 77713.7714681205], [0.007, 4.4121885448, 161000.6857376741], [0.005, 5.26154653107, 6438.4962494256], [0.005, 4.07695126049, 6127.6554505572], [0.006, 3.81514213664, 149854.4001348079], [0.003, 1.28175749811, 6286.5989683404]], [[0.086, 1.21579741687, 6283.0758499914], [0.012, 0.65617264033, 12566.1516999828], [0.001, 0.38068797142, 18849.2275499742]]]

This table contains Earth’s periodic terms (all of them) from the planetary theory VSOP87 for the radius vector at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 420-421.

pymeeus.Earth.WGS84 = Ellipsoid(6378137.0, 0.00335281066475, 7.292115e-05)

Reference ellipsoid World Geodetic System 1984, a modern ellipsoid used by the GPS system, and the standard in many applications

JupiterMoons

Class to model JupiterMoons.

class pymeeus.JupiterMoons.JupiterMoons[source]

Class JupiterMoons models the four galilean satellites of Jupiter. With: 1: Io 2: Europa 3: Ganymede 4: Callisto The algorithm used can be found in chapter 44 (high accuracy method) of Meeus’ book Astronomic Algorithms

__weakref__

list of weak references to the object (if defined)

static apparent_rectangular_coordinates(epoch, X, Y, Z, OMEGA, psi, i, lambda_0, beta_0, D=0, isFictional=False)[source]

This method computes the apparent rectangular coordinates of a Jupiter satellite for given coordinates.

Parameters:
  • epoch (Epoch) – Epoch to compute satellite position, as an Epoch object
  • X (float) – X-coordinate of the satellite in Jupiter radii
  • Y (float) – Y-coordinate of the satellite in Jupiter radii
  • Z (float) – Z-coordinate of the satellite in Jupiter radii
  • OMEGA (float) – longitude of the node of Jupiter
  • psi (float) – longitude of the node of Jupiter
  • i (float) – inclination on the plane of the ecliptic
  • beta_0 (float) – Jupiter’s geocentric latitude
  • lambda_0 (float) – Jupiter’s geocentric longitude
  • D (float) – parameter calculated by the fifth fictional satellite (fictional satellite has to be calculated first, in order to calculate the coordinates of the remaining “true” satellites)
  • isFictional (bool) – Whether or not the satellite is the fictional satellite No. 5
Returns:

A tuple with the apparent rectangular coordinates of the satellite or parameter D if isFictional=True

Return type:

tuple, float

Raises:

TypeError if input values are wrong type

>>> utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
>>> psi_corrected = 317.1058009213959
>>> i_ecliptic_jupiter = 1.3036541530886598
>>> lambda_0 = -2.9355662143229146
>>> beta_0 = 0.021667777174910842
>>> OMEGA_ascending_node_jupiter= 100.39249942976576
>>> X_1 =  5.60361395790844
>>> Y_1 = 1.9398758261880644
>>> Z_1 = 0.00449258104769796
>>> X_5 =  0
>>> Y_5 = 0
>>> Z_5 = 1
>>> d = JupiterMoons.apparent_rectangular_coordinates(         utc_1992_12_16_00_00_00, X_5, Y_5, Z_5,         OMEGA_ascending_node_jupiter, psi_corrected, i_ecliptic_jupiter,         lambda_0, beta_0, isFictional=True)
>>> print(round(d, 10))
-0.0320562469
>>> io = JupiterMoons.apparent_rectangular_coordinates(         utc_1992_12_16_00_00_00, X_1, Y_1, Z_1,         OMEGA_ascending_node_jupiter, psi_corrected, i_ecliptic_jupiter,         lambda_0, beta_0, d)
>>> print(io)
(-3.4489935969836503, 0.21361563816963675, -4.818966623735296)
static calculate_delta(epoch)[source]

This method calculates the distance between Earth and Jupiter (DELTA) for a given epoch by iteration.

Parameters:epoch (Epoch) – Epoch the distance should be calculated for.
Returns:Distance Earth-Jupiter in AU and light-time delay from Earth-Jupiter, together with Coordinates of Jupiter
Return type:tuple
Raises:TypeError if input values are wrong type
>>> utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
>>> delta, tau, l, b, r = JupiterMoons.calculate_delta(         utc_1992_12_16_00_00_00)
>>> print(round(delta, 10))
5.6611211815
>>> print(round(tau, 10))
0.032695909
static check_coordinates(X, Y)[source]

This method checks if the given coordinates correspond with a satellite phenomena. It returns if the satellite with the given coordinates is hidden behind Jupiter or directly in front.

Parameters:
  • X (float) – X-coordinate of the satellite in Jupiter’s radii
  • Y (float) – Y-coordinate of the satellite in Jupiter’s radii
Returns:

Perspective distance to Jupiter’s center in Jupiter’s radii

Return type:

float

Calculation of the perspective distance of the planet Io to the center of Jupiter for December 16 at 0h UTC as seen from the Earth

>>> utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
>>> result_matrix =         JupiterMoons.rectangular_positions_jovian_equatorial(         utc_1992_12_16_00_00_00, solar=False)
>>> io_radius_to_center_of_jupiter_earth =         JupiterMoons.check_coordinates(result_matrix[0][0], result_matrix[         0][1])
>>> print(round(io_radius_to_center_of_jupiter_earth, 10))
3.4577572706
static check_eclipse(X_0=0, Y_0=0, Z_0=0, epoch=None, i_sat=None)[source]

This method checks if the given coordinates or Epoch correspond with a satellite being in eclipse.

Parameters:
  • X_0 (float) – X-coordinate of the satellite in Jupiter’s radii observed from the sun
  • Y_0 (float) – Y-coordinate of the satellite in Jupiter’s radii observed from the sun
  • Z_0 (float) – Z-coordinate of the satellite in Jupiter’s radii observed from the sun
  • epoch (Epoch) – Epoch that should be checked
  • i_sat (int) – Index of the satellite (only for given Epoch)
Returns:

perspective distance to center of Jupiter in Jupiter radii as seen from the Sun (value of perspective distance is negative when the satellite is closer to the Sun than Jupiter, otherwise positive)

Return type:

float

Raises:

TypeError if input values are wrong type

Calculation of the Perspective distance of the planet Io squareroot(X_0^2 + Y_0^2) to the center of Jupiter for December 16 at 0h UTC as seen from the Sun

>>> utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
>>> result_matrix =         JupiterMoons.rectangular_positions_jovian_equatorial(         utc_1992_12_16_00_00_00, solar=True)
>>> io_radius_to_center_of_jupiter_sunview =         JupiterMoons.check_eclipse(result_matrix[0][0], result_matrix[0][1])
>>> print(round(io_radius_to_center_of_jupiter_sunview, 10))
-2.5533012642
static check_occultation(X=0, Y=0, Z=0, epoch=None, i_sat=None)[source]

This method checks if the given coordinates or Epoch correspond with a satellite being in occultation.

Parameters:
  • X (float) – X-coordinate of the satellite in Jupiter’s radii
  • Y (float) – Y-coordinate of the satellite in Jupiter’s radii
  • Z (float) – Z-coordinate of the satellite in Jupiter’s radii
  • epoch (Epoch) – Epoch that should be checked
  • i_sat (int) – Index of the satellite (only for given Epoch)
Returns:

Perspective distance to center of Jupiter in Jupiter radii as seen from the Earth (value of perspective distance is negative when the satellite is closer to the Earth than Jupiter, otherwise positive)

Return type:

float

Raises:

TypeError if input values are wrong type

Calculation of the perspective distance of the planet Io squareroot(X^2 + Y^2) to the center of Jupiter for December 16 at 0h UTC as seen from the Earth

>>> utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
>>> result_matrix =         JupiterMoons.rectangular_positions_jovian_equatorial(         utc_1992_12_16_00_00_00, solar=False)
>>> io_distance_to_center_of_jupiter_earthview =         JupiterMoons.check_occultation(result_matrix[0][0], result_matrix[         0][1])
>>> print(round(io_distance_to_center_of_jupiter_earthview, 10))
-3.4577572706
static check_phenomena(epoch, check_all=True, i_sat=0)[source]

This method returns the perspective distance to any phenomena of all satellites for the given epoch.

Parameters:
  • epoch (:py:class:'Epoch') – Epoch the calculations should be made for
  • check_all (bool) – Whether all satellites should be checked
  • i_sat (int) – Which satellite should be checked
Returns:

Distance to the satellite being ecclipsed, occulted in penumbra

Return type:

tuple

Raises:

TypeError if input values are wrong type

>>> utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
>>> result_matrix = JupiterMoons.check_phenomena(         utc_1992_12_16_00_00_00)
>>> print(result_matrix[0])
[-3.457757270630766, -2.553301264153796, 0.0]
>>> print(result_matrix[1])
[-7.44770945299594, -8.33419997337025, 0.0]
>>> print(result_matrix[2])
[-1.3572840767173413, -3.817302564886177, 0.0]
>>> print(result_matrix[3])
[-7.157430454898491, -11.373611474420906, 0.0]
>>> io_ecc_start_2021_02_12_14_19_14 = Epoch(2021, 2, 12.5966898148148)
>>> result_matrix = JupiterMoons.check_phenomena(         io_ecc_start_2021_02_12_14_19_14)
>>> print([round(result_matrix[0][0], 10), round(result_matrix[0][         1], 10), round(result_matrix[0][2], 10)])
[1.192605868, 0.8560277162, 0.0]
>>> print([round(result_matrix[1][0], 10), round(result_matrix[1][         1], 10), round(result_matrix[1][2], 10)])
[-8.7397202369, -8.8930940921, 0.0]
>>> print([round(result_matrix[2][0], 10), round(result_matrix[2][         1], 10), round(result_matrix[2][2], 10)])
[14.0691219925, 13.8323491768, 0.0]
>>> print([round(result_matrix[3][0], 10), round(result_matrix[3][         1], 10), round(result_matrix[3][2], 10)])
[-2.9341209156, -3.9904598153, 0.0]
static correct_rectangular_positions(R, i_sat, DELTA, X_coordinate, Y_coordinate=0, Z_coordinate=0)[source]

This method corrects the given rectangular coordinates of a Jupiter satellite in order to obtain higher accuracy by considering differential light-time and the perspective effect.

Parameters:
  • R (float) – Radius vector of the satellite
  • i_sat (int) – Number of the satellite
  • DELTA (float) – Distance Observer-Jupiter in AU
  • X_coordinate (float, tuple, list) – Uncorrected X-coordinate of the satellite in Jupiter’s radii or tuple for all coordinates
  • Y_coordinate (float) – Uncorrected Y-coordinate of the satellite in Jupiter’s radii
  • Z_coordinate (float) – Uncorrected Z-coordinate of the satellite in Jupiter’s radii
Returns:

A tuple with the corrected rectangular coordinates (X, Y, Z) of the satellite in Jupiter’s radii

Return type:

tuple

Raises:

TypeError if input values are wrong type

Calculate corrected rectangular Coordinates X, Y and Z in Jupiter’s radii for Io (1)

>>> R = 5.929892730360271
>>> i_sat = 1
>>> DELTA = 5.6611211815432645
>>> X_coordinate = -3.4489935969836503
>>> Y_coordinate = 0.21361563816963675
>>> Z_coordinate = -4.818966623735296
>>> io = JupiterMoons.correct_rectangular_positions(R, i_sat, DELTA,         X_coordinate, Y_coordinate, Z_coordinate)
>>> print(io)
(-3.450168811390241, 0.21370246960509387, -4.818966623735296)
static is_phenomena(epoch)[source]

This method checks if the given coordinates correspond with any satellite phenomena. It returns the type of phenomena for all satellites.

Parameters:epoch (:py:class:'Epoch') – Epoch the calculations should be made for
Returns:Result matrix for the four Galilean satellites Row 0: Io Column 0: Occultation Row 1: Europa Column 1: Eclipse Row 2: Ganymede Column 2: No use Row 3: Callisto
Return type:tuple
Raises:TypeError if input values are wrong type

Calculation of result matrix for December 16 at 0h UTC

>>> utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
>>> result_matrix = JupiterMoons.is_phenomena(utc_1992_12_16_00_00_00)
>>> print(result_matrix[0])
[False, False, False]
>>> print(result_matrix[1])
[False, False, False]
>>> print(result_matrix[2])
[False, False, False]
>>> print(result_matrix[3])
[False, False, False]
>>> io_ecc_start_2021_02_12_14_19_14 = Epoch(2021, 2, 12.5966898148148)
>>> result_matrix = JupiterMoons.is_phenomena(         io_ecc_start_2021_02_12_14_19_14)
>>> print(result_matrix[0])
[False, True, False]
>>> print(result_matrix[1])
[False, False, False]
>>> print(result_matrix[2])
[False, False, False]
>>> print(result_matrix[3])
[False, False, False]
static jupiter_system_angles(epoch)[source]

This method computes the ascending node of Jupiter as well as the node of the equator of Jupiter on the ecliptic (psi).

Parameters:epoch (Epoch) – Epoch to compute satellites’ positions, as an Epoch object
Returns:Two float values with the ascending node of Jupiter and psi
Return type:(float, float)
>>> utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
>>> psi_corrected, OMEGA_ascending_node_jupiter =         JupiterMoons.jupiter_system_angles(utc_1992_12_16_00_00_00)
>>> print(round(psi_corrected, 9))
317.105800921
>>> print(round(OMEGA_ascending_node_jupiter, 9))
100.39249943
static rectangular_positions_jovian_equatorial(epoch, tofk5=True, solar=False, do_correction=True)[source]

This method computes the rectangular geocentric position of Jupiter’s satellites for a given epoch, using the E5-theory.

Parameters:
  • epoch (Epoch) – Epoch to compute satellites’ positions, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
  • solar (bool) – Whether the satellites’ positions are observed from the Earth (False) or the Sun (True)
  • do_correction (bool) – Whether the satellites’ positions is corrected for the effect of different light-time and perspective effect or not
Returns:

Four tuple with the rectangular X, Y and Z coordinates in Jupiter radii (float), where Z is positive if the satellite is more distant than Jupiter.

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
>>> io, europa, ganymede, callisto =         JupiterMoons.rectangular_positions_jovian_equatorial(         utc_1992_12_16_00_00_00)
>>> print(io)
(-3.450168811390241, 0.21370246960509387, -4.818966623735296)
>>> print(europa)
(7.441869121153001, 0.27524463479625677, -5.747104399729193)
>>> print(ganymede)
(1.201111684800708, 0.5899903274317162, -14.940581367576527)
>>> print(callisto)
(7.072022641384802, 1.0289678450543338, -25.224420329457175)

Jupiter

Class to model Jupiter planet.

class pymeeus.Jupiter.Jupiter[source]

Class Jupiter models that planet.

__weakref__

list of weak references to the object (if defined)

static apparent_heliocentric_position(epoch)[source]

This method computes the apparent heliocentric position of planet Jupiter for a given epoch, using the VSOP87 theory.

Parameters:epoch (Epoch) – Epoch to compute Jupiter position, as an Epoch object
Returns:A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order
Return type:tuple
Raises:TypeError if input values are of wrong type.
static conjunction(epoch)[source]

This method computes the time of the conjunction closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired conjunction
Returns:The time when the conjunction happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 10, 1.0)
>>> conj = Jupiter.conjunction(epoch)
>>> y, m, d = conj.get_date()
>>> print(y)
1993
>>> print(m)
10
>>> print(round(d, 4))
18.3341
static geocentric_position(epoch)[source]

This method computes the geocentric position of Jupiter (right ascension and declination) for the given epoch, as well as the elongation angle.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing the right ascension, the declination and the elongation angle as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 12, 20.0)
>>> ra, dec, elon = Jupiter.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
12h 47' 9.6''
>>> print(dec.dms_str(n_dec=1))
-3d 41' 55.3''
>>> print(elon.dms_str(n_dec=1))
76d 2' 26.0''
static geometric_heliocentric_position(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of planet Jupiter for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Jupiter position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2018, 10, 27.0)
>>> l, b, r = Jupiter.geometric_heliocentric_position(epoch)
>>> print(round(l.to_positive(), 4))
241.5873
>>> print(round(b, 4))
0.8216
>>> print(round(r, 5))
5.36848
static magnitude(sun_dist, earth_dist)[source]

This function computes the approximate magnitude of Jupiter.

Parameters:
  • sun_dist (float) – Distance from Jupiter to Sun, in Astronomical Units
  • earth_dist (float) – Distance Jupiter to Earth, in Astronomical Units
Returns:

Jupiter’s magnitude

Return type:

float

Raises:

TypeError if input values are of wrong type.

static opposition(epoch)[source]

This method computes the time of the opposition closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:The time when the opposition happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(-6, 9, 1.0)
>>> oppo = Jupiter.opposition(epoch)
>>> y, m, d = oppo.get_date()
>>> print(y)
-6
>>> print(m)
9
>>> print(round(d, 4))
15.2865
static orbital_elements_j2000(epoch)[source]

This method computes the orbital elements of Jupiter for the standard equinox J2000.0 for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Jupiter.orbital_elements_j2000(epoch)
>>> print(round(l, 6))
221.518802
>>> print(round(a, 8))
5.20260333
>>> print(round(e, 7))
0.0486046
>>> print(round(i, 6))
1.30198
>>> print(round(ome, 5))
100.58051
>>> print(round(arg, 6))
-86.107875
static orbital_elements_mean_equinox(epoch)[source]

This method computes the orbital elements of Jupiter for the mean equinox of the date for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Jupiter.orbital_elements_mean_equinox(epoch)
>>> print(round(l, 6))
222.433723
>>> print(round(a, 8))
5.20260333
>>> print(round(e, 7))
0.0486046
>>> print(round(i, 6))
1.29967
>>> print(round(ome, 5))
101.13309
>>> print(round(arg, 6))
-85.745532
static passage_nodes(epoch, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of Jupiter, nearest to the given epoch.

Parameters:
  • epoch (Epoch) – Epoch closest to the node passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2019, 1, 1)
>>> time, r = Jupiter.passage_nodes(epoch)
>>> year, month, day = time.get_date()
>>> print(year)
2025
>>> print(month)
9
>>> print(round(day, 1))
15.6
>>> print(round(r, 4))
5.1729
static perihelion_aphelion(epoch, perihelion=True)[source]

This method computes the time of Perihelion (or Aphelion) closer to a given epoch.

Parameters:
  • epoch (Epoch) – Epoch close to the desired Perihelion (or Aphelion)
  • peihelion – If True, the epoch of the closest Perihelion is computed, if False, the epoch of the closest Aphelion is found.
Returns:

The epoch of the desired Perihelion (or Aphelion)

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2019, 2, 23.0)
>>> e = Jupiter.perihelion_aphelion(epoch)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2023
>>> print(m)
1
>>> print(d)
20
>>> print(h)
11
>>> epoch = Epoch(1981, 6, 1.0)
>>> e = Jupiter.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
1981
>>> print(m)
7
>>> print(d)
28
>>> print(h)
6
static station_longitude_1(epoch)[source]

This method computes the time of the 1st station in longitude (i.e. when the planet is stationary and begins to move westward - retrograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:Time when the 1st station in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2018, 11, 1.0)
>>> sta1 = Jupiter.station_longitude_1(epoch)
>>> y, m, d = sta1.get_date()
>>> print(y)
2018
>>> print(m)
3
>>> print(round(d, 4))
9.1288
static station_longitude_2(epoch)[source]

This method computes the time of the 2nd station in longitude (i.e. when the planet is stationary and begins to move eastward - prograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:Time when the 1st station in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2018, 11, 1.0)
>>> sta2 = Jupiter.station_longitude_2(epoch)
>>> y, m, d = sta2.get_date()
>>> print(y)
2018
>>> print(m)
7
>>> print(round(d, 4))
10.6679
pymeeus.Jupiter.ORBITAL_ELEM = [[34.351519, 3036.3027748, 0.0002233, 3.7e-08], [5.202603209, 1.913e-07, 0.0, 0.0], [0.04849793, 0.000163225, -4.714e-07, -2.01e-09], [1.303267, -0.0054965, 4.66e-06, -2e-09], [100.464407, 1.0209774, 0.00040315, 4.04e-07], [14.331207, 1.6126352, 0.00103042, -4.464e-06]]

This table contains the parameters to compute Jupiter’s orbital elements for the mean equinox of date. Based in Table 31.A, page 213

pymeeus.Jupiter.ORBITAL_ELEM_J2000 = [[34.351519, 3034.9056606, -8.501e-05, 1.6e-08], [1.303267, -0.0019877, 3.32e-05, 9.7e-08], [100.464407, 0.1767232, 0.000907, -7.272e-06], [14.331207, 0.2155209, 0.00072211, -4.485e-06]]

This table contains the parameters to compute Jupiter’s orbital elements for the standard equinox J2000.0. Based on Table 31.B, page 215

pymeeus.Jupiter.VSOP87_B = [[[2268615.703, 3.55852606718, 529.6909650946], [109971.634, 3.90809347389, 1059.3819301892], [110090.358, 0.0, 0.0], [8101.427, 3.60509573368, 522.5774180938], [6043.996, 4.25883108794, 1589.0728952838], [6437.782, 0.30627121409, 536.8045120954], [1106.88, 2.98534421928, 1162.4747044078], [941.651, 2.93619072405, 1052.2683831884], [894.088, 1.75447429921, 7.1135470008], [767.28, 2.1547359406, 632.7837393132], [944.328, 1.67522288396, 426.598190876], [684.22, 3.67808770098, 213.299095438], [629.223, 0.64343282328, 1066.49547719], [835.861, 5.17881973234, 103.0927742186], [531.67, 2.70305954352, 110.2063212194], [558.524, 0.01354830508, 846.0828347512], [464.449, 1.17337249185, 949.1756089698], [431.072, 2.60825000494, 419.4846438752], [351.433, 4.61062990714, 2118.7638603784], [123.148, 3.34968181384, 1692.1656695024], [115.038, 5.04892295442, 316.3918696566], [132.16, 4.7781699067, 742.9900605326], [103.402, 2.31878999565, 1478.8665740644], [116.379, 1.38688232033, 323.5054166574], [102.42, 3.15293785436, 1581.959348283], [103.762, 3.7010383811, 515.463871093], [78.65, 3.98318653238, 1265.5674786264], [69.935, 2.56006216424, 956.2891559706], [55.597, 0.37500753017, 1375.7737998458], [51.986, 0.99007119033, 1596.1864422846], [55.194, 0.40176412035, 525.7588118315], [63.456, 4.50073574333, 735.8765135318], [49.691, 0.18649893085, 543.9180590962], [48.831, 3.57260550671, 533.6231183577], [28.353, 1.53532744749, 625.6701923124], [29.209, 5.43145863011, 206.1855484372], [23.255, 5.95197992848, 838.9692877504], [22.841, 6.19262787685, 532.8723588323], [23.202, 4.06473368575, 526.5095713569], [24.436, 6.10947656959, 1169.5882514086], [21.116, 4.96322972735, 2648.454825473], [17.879, 3.08704395969, 1795.258443721], [16.234, 4.83515727869, 1368.660252845], [21.314, 2.69476951059, 1045.1548361876], [15.74, 1.15130330106, 942.062061969], [17.325, 1.61550009206, 14.2270940016], [13.396, 2.30539585502, 853.196381752], [11.904, 3.09811974536, 2111.6503133776], [11.734, 2.83006431723, 2008.557539159], [11.291, 0.98957560201, 433.7117378768], [11.83, 4.76527836803, 309.2783226558], [10.702, 3.70181397065, 2221.856634597], [10.815, 5.81958878617, 1272.6810256272], [13.505, 3.2812697576, 1155.361157407], [10.179, 2.58691128827, 117.3198682202], [10.632, 5.23487936086, 95.9792272178], [8.771, 0.40456546655, 220.4126424388], [7.439, 2.94638292086, 412.3710968744], [6.151, 2.69100382247, 380.12776796], [5.028, 0.72750312028, 1055.4497769261], [4.939, 0.73756716762, 1905.4647649404], [5.421, 4.08612438558, 1685.0521225016], [5.936, 4.32059910537, 1063.3140834523], [4.737, 4.0930301685, 527.2432845398], [4.01, 0.51530008355, 1073.6090241908], [4.709, 1.84067645204, 984.6003316219], [3.974, 1.33608029246, 2125.8774073792], [3.762, 3.58647039394, 529.7391492044], [4.731, 6.16377350841, 532.1386456494], [4.666, 5.88762905802, 639.897286314], [3.763, 0.38865925413, 529.6427809848], [3.409, 4.05398247269, 1898.3512179396], [3.457, 3.43865563497, 1485.9801210652], [4.229, 2.23767157901, 74.7815985673], [3.091, 0.16470256025, 1699.2792165032], [2.975, 0.72268908074, 530.6541729411], [3.162, 1.2504841642, 330.6189636582], [2.727, 4.37679213321, 149.5631971346], [2.837, 0.05987107395, 1439.5096981492], [2.983, 3.2525120722, 528.7277572481], [2.232, 0.26149880534, 1062.5633239269], [2.464, 1.1691330442, 453.424893819], [2.596, 3.30510149086, 2324.9494088156], [1.988, 2.85269577619, 1574.8458012822], [2.527, 5.9445820295, 909.8187330546], [2.269, 1.30379329597, 3.9321532631], [1.742, 4.49909767044, 1258.4539316256], [1.714, 4.12945878208, 2001.4439921582], [2.029, 3.97938086639, 1056.2005364515], [1.667, 0.36037092553, 10213.285546211], [1.579, 6.11640144795, 1802.3719907218], [1.393, 3.69324470827, 2214.7430875962], [1.604, 1.98841031703, 38.1330356378], [1.325, 1.74025919863, 529.1697002328], [1.451, 2.39804501178, 2428.0421830342], [1.594, 2.07556780757, 1021.2488945514], [1.32, 1.33770977126, 618.5566453116], [1.346, 3.2759149254, 2641.3412784722], [1.23, 0.1955272822, 305.3461693927], [1.223, 2.86681556337, 1382.8873468466], [1.324, 2.23549334986, 530.2122299564], [1.056, 3.80579750957, 76.2660712756], [1.05, 4.68011652614, 1788.1448967202], [1.226, 5.34003255221, 3178.1457905676], [1.009, 3.19608028376, 2538.2485042536], [1.266, 3.04704446731, 604.4725636619], [0.954, 3.86932544808, 728.762966531], [1.124, 1.5956036748, 3.1813937377], [0.978, 0.25223689838, 983.1158589136], [0.948, 0.21552742733, 750.1036075334], [0.946, 3.9392774812, 508.3503240922], [0.92, 1.14672086939, 963.4027029714], [0.817, 5.93809619876, 831.8557407496], [0.77, 2.96062737592, 526.7702037878], [1.017, 5.55711112145, 199.0720014364], [0.761, 1.38163787157, 532.6117264014], [0.726, 3.98337964395, 2317.8358618148], [0.862, 0.87975657414, 490.3340891794], [0.868, 3.44331872364, 569.0478410098], [0.711, 4.11107052823, 2751.5475996916], [0.708, 0.33555577415, 528.9402055692], [0.708, 4.00539820601, 530.44172462], [0.656, 4.39568451439, 519.3960243561], [0.801, 4.03984430862, 1364.7280995819], [0.679, 1.18645749024, 525.4981794006], [0.645, 5.10510349996, 1361.5467058442], [0.668, 3.15607509055, 533.8837507886], [0.663, 0.73722024843, 5223.6939198022], [0.663, 1.57092786811, 6283.0758499914], [0.543, 0.26376529935, 227.5261894396], [0.525, 6.22318693939, 539.9859058331], [0.513, 4.98337900151, 302.164775655], [0.544, 2.22227019273, 2744.4340526908], [0.532, 2.62425372687, 99.1606209555], [0.602, 1.56074089013, 454.9093665273], [0.518, 0.26343805959, 551.031606097], [0.516, 1.09376390349, 934.9485149682], [0.659, 0.62560671589, 1512.8068240082], [0.524, 0.64710955846, 524.0618908021], [0.516, 3.69478866795, 535.3200393871], [0.491, 3.63039940597, 2531.1349572528], [0.57, 0.61976758791, 540.7366653585], [0.496, 2.19398015038, 1514.2912967165], [0.532, 0.20040217534, 525.0250986486], [0.493, 0.39160693598, 224.3447957019], [0.449, 0.62392433691, 529.5309064002], [0.449, 3.71676131146, 529.851023789], [0.45, 5.02467015031, 1048.3362299253], [0.428, 5.4480466029, 11.0457002639], [0.499, 4.13924061941, 534.3568315406], [0.528, 1.76471074936, 524.2743391232], [0.454, 4.53321742354, 1056.9342496344], [0.52, 2.57406093768, 535.107591066], [0.398, 1.40345870113, 960.2213092337], [0.457, 4.17708652827, 2104.5367663768], [0.505, 5.36536256321, 1057.8974574809], [0.535, 4.80455380313, 1593.0050485469], [0.415, 0.96548127237, 2435.155730035], [0.519, 0.54543519483, 1061.829610744], [0.359, 4.02704454075, 1059.430114299], [0.356, 2.66818105522, 835.0371344873], [0.443, 5.27513700376, 1.4844727083], [0.358, 5.94423960514, 440.8252848776], [0.471, 6.05791940453, 1471.7530270636], [0.386, 2.15984900214, 9153.9036160218], [0.424, 2.7092967003, 1038.0412891868], [0.359, 0.82922836987, 1059.3337460794], [0.31, 0.88102053266, 529.9034134157], [0.31, 3.45966511571, 529.4785167735], [0.3, 3.70331799503, 2634.2277314714], [0.292, 2.63594456361, 415.5524906121], [0.279, 1.60669121578, 643.8294395771], [0.291, 5.8313407182, 1148.2476104062], [0.37, 5.71572992274, 531.1754378029], [0.268, 5.39275891813, 1891.2376709388], [0.275, 3.34108666036, 518.6452648307], [0.269, 1.06051406954, 1585.1407420207], [0.306, 2.5028901737, 511.5317178299], [0.295, 1.84394223501, 547.8502123593], [0.254, 2.98312992496, 1134.1635287565], [0.289, 1.86070918711, 21.3406410024], [0.265, 4.93075479744, 679.2541622292], [0.25, 0.42860925124, 1969.2006632438], [0.308, 2.67237933272, 2957.7331481288], [0.313, 4.88085697819, 528.2064923863], [0.222, 4.78828764413, 514.7131115676], [0.221, 4.32763468981, 1677.9385755008], [0.217, 3.46278526461, 2950.619601128], [0.216, 0.5220766798, 2228.9701815978], [0.214, 5.83569926578, 544.6688186216], [0.283, 2.8870971609, 35.4247226521], [0.272, 1.65708415457, 3060.8259223474], [0.234, 1.68821537711, 2655.5683724738], [0.205, 3.3618688829, 2847.5268269094], [0.264, 3.62722625694, 2420.9286360334], [0.191, 4.26821147044, 430.5303441391], [0.179, 3.91470663005, 3340.6124266998], [0.18, 0.04531671003, 387.2413149608], [0.241, 4.03927631611, 494.2662424425], [0.176, 4.26298906325, 672.1406152284], [0.187, 2.72587420586, 299.1263942692], [0.234, 1.3447482745, 173.9422195228], [0.171, 0.85473611718, 1603.2999892854], [0.224, 0.33130232434, 565.1156877467], [0.2, 1.27632489123, 39.3568759152], [0.17, 4.96479470273, 1464.6394800628], [0.211, 1.00937080256, 523.5406259403], [0.21, 3.75793720248, 2854.6403739102], [0.162, 5.87784787295, 3480.3105662226], [0.163, 4.62850343495, 2015.6710861598], [0.191, 3.3315928375, 535.8413042489], [0.151, 1.17096741034, 1060.3451380357], [0.16, 1.81852636004, 312.4597163935], [0.158, 2.59595816107, 529.4303326637], [0.158, 1.7447274873, 529.9515975255], [0.173, 3.62399350412, 230.5645708254], [0.142, 0.70435921398, 522.529233984], [0.144, 5.3576312243, 107.0249274817], [0.144, 6.13954848857, 1158.5425511447], [0.178, 0.27566275049, 3906.9087570986], [0.126, 5.14832919826, 2207.6295405954], [0.126, 3.41994798109, 2.4476805548], [0.127, 0.39825164051, 70.8494453042], [0.123, 4.77865550523, 2524.021410252], [0.123, 0.46184813516, 647.0108333148], [0.144, 3.60261852727, 1058.4187223427], [0.158, 3.76231915252, 92.0470739547], [0.119, 4.08266911415, 1585.8915015461], [0.125, 2.35496721797, 3163.918696566], [0.122, 3.21027426317, 3377.217792004], [0.121, 3.39770381916, 18.1592472647], [0.131, 1.67926417552, 1289.9465010146], [0.115, 2.35735471566, 1550.939859646], [0.126, 2.40833814513, 106.2741679563], [0.131, 1.37610474529, 1023.9572075371], [0.121, 1.60252617273, 10.2949407385], [0.121, 0.61420823557, 1592.2542890215], [0.135, 3.60177675518, 124.433415221], [0.137, 2.41724947062, 3274.1250177854], [0.129, 0.09702914345, 2332.0629558164], [0.093, 4.88949890397, 1098.7388061044], [0.106, 5.18592950792, 2281.2304965106], [0.114, 2.96523316419, 1166.4068576709], [0.092, 1.65166124027, 860.3099287528], [0.102, 3.64093193142, 3171.0322435668], [0.103, 1.63066232967, 1894.4190646765], [0.08, 0.38766601876, 4694.0029547076], [0.074, 3.86865238736, 3067.9394693482], [0.095, 1.66362447044, 1151.4290041439]], [[177351.787, 5.70166488486, 529.6909650946], [3230.171, 5.7794161934, 1059.3819301892], [3081.364, 5.47464296527, 522.5774180938], [2211.914, 4.73477480209, 536.8045120954], [1694.232, 3.14159265359, 0.0], [346.445, 4.74595174109, 1052.2683831884], [234.264, 5.18856099929, 1066.49547719], [196.154, 6.18554286642, 7.1135470008], [150.468, 3.92721226087, 1589.0728952838], [114.128, 3.4389727183, 632.7837393132], [96.667, 2.9142630409, 949.1756089698], [76.599, 2.50522188662, 103.0927742186], [81.671, 5.07666097497, 1162.4747044078], [76.572, 0.61288981445, 419.4846438752], [73.875, 5.49958292155, 515.463871093], [49.915, 3.94799616572, 735.8765135318], [60.544, 5.44740084359, 213.299095438], [36.561, 4.69828392839, 543.9180590962], [46.032, 0.53850360901, 110.2063212194], [45.123, 1.89516645239, 846.0828347512], [36.019, 6.10952578764, 316.3918696566], [31.975, 4.92452714629, 1581.959348283], [21.015, 5.6295773141, 1596.1864422846], [23.156, 5.84829490183, 323.5054166574], [24.719, 3.94107395247, 2118.7638603784], [17.274, 5.65310656429, 533.6231183577], [16.521, 5.89840100621, 526.5095713569], [16.698, 5.66663034948, 1265.5674786264], [15.815, 4.43314786393, 1045.1548361876], [13.398, 4.30179033605, 532.8723588323], [11.744, 1.80990486955, 956.2891559706], [11.925, 4.30094564154, 525.7588118315], [9.514, 2.02589667166, 206.1855484372], [10.542, 6.15533910933, 14.2270940016], [8.414, 3.9291045034, 1478.8665740644], [8.099, 4.20152809071, 1169.5882514086], [7.712, 2.99160389601, 942.062061969], [8.825, 1.55897920307, 426.598190876], [8.884, 4.87430124264, 1155.361157407], [7.793, 3.84684930196, 625.6701923124], [5.646, 3.40915964493, 639.897286314], [4.615, 0.83374662294, 117.3198682202], [4.02, 5.50502127885, 433.7117378768], [3.704, 0.90226777963, 95.9792272178], [3.859, 0.69640284662, 853.196381752], [3.091, 5.09115860882, 1073.6090241908], [3.36, 5.10133284081, 1692.1656695024], [2.892, 4.9041891666, 220.4126424388], [2.772, 5.09066125724, 2111.6503133776], [2.425, 3.74438653232, 742.9900605326], [2.558, 5.46955948791, 1795.258443721], [2.466, 4.2227835543, 2648.454825473], [1.968, 0.57192251841, 309.2783226558], [1.794, 4.60765219417, 1272.6810256272], [1.822, 1.98842964323, 1375.7737998458], [1.703, 6.12660562937, 2125.8774073792], [2.011, 5.00936865256, 412.3710968744], [1.645, 0.08830372958, 1063.3140834523], [1.875, 5.81006158403, 330.6189636582], [1.741, 4.58650290431, 1574.8458012822], [1.529, 5.81660291389, 1258.4539316256], [1.916, 0.85150399517, 1368.660252845], [1.614, 4.36839107221, 728.762966531], [1.51, 2.79374165455, 1485.9801210652], [1.333, 4.84260898693, 1062.5633239269], [1.359, 5.16511980864, 838.9692877504], [1.165, 5.66275740881, 508.3503240922], [1.092, 4.68797557406, 1699.2792165032], [1.438, 5.78105679279, 1056.2005364515], [1.083, 3.99886917926, 1471.7530270636], [1.002, 4.79949608524, 1055.4497769261], [0.749, 6.1440086203, 519.3960243561], [0.657, 5.63765568876, 1898.3512179396], [0.702, 5.04126574492, 1685.0521225016], [0.607, 3.15707515246, 618.5566453116], [0.587, 1.37658820775, 199.0720014364], [0.552, 4.8065772945, 551.031606097], [0.494, 4.43417307482, 539.9859058331], [0.517, 0.05161181997, 3.1813937377], [0.469, 3.81715950042, 2008.557539159], [0.415, 1.34693184108, 1382.8873468466], [0.382, 4.86764073919, 227.5261894396], [0.473, 1.72405831407, 532.1386456494], [0.458, 4.44604993015, 1038.0412891868], [0.376, 2.23190744786, 529.6427809848], [0.451, 3.75869883836, 984.6003316219], [0.376, 5.42971857629, 529.7391492044], [0.389, 1.92698506631, 525.0250986486], [0.364, 3.35456685746, 2221.856634597], [0.476, 5.93625415892, 527.2432845398], [0.383, 6.12255867339, 149.5631971346], [0.301, 4.09378934049, 440.8252848776], [0.31, 5.58150418981, 2428.0421830342], [0.282, 4.85996662231, 1788.1448967202], [0.298, 5.09589374634, 528.7277572481], [0.34, 4.5653707022, 750.1036075334], [0.272, 2.3534696034, 534.3568315406], [0.36, 3.91050161665, 74.7815985673], [0.299, 1.43093538841, 909.8187330546], [0.297, 2.56584512211, 530.6541729411], [0.235, 4.81644489422, 535.107591066], [0.306, 0.68420442848, 380.12776796], [0.236, 4.63162956792, 526.7702037878], [0.27, 0.18549916939, 21.3406410024], [0.288, 4.26655874393, 1802.3719907218], [0.196, 5.35950443033, 2214.7430875962], [0.19, 4.5461519326, 2104.5367663768], [0.193, 4.35426216497, 511.5317178299], [0.178, 4.51895208036, 3178.1457905676], [0.194, 0.57050756837, 1361.5467058442], [0.2, 1.48040474749, 302.164775655], [0.168, 5.40141749419, 524.2743391232], [0.152, 0.68077486546, 1905.4647649404], [0.149, 1.06678990744, 831.8557407496], [0.182, 3.62401009613, 38.1330356378], [0.176, 5.64331384323, 963.4027029714], [0.184, 4.48850356629, 604.4725636619], [0.133, 5.45026366125, 2641.3412784722], [0.143, 2.21577268292, 1439.5096981492], [0.13, 4.88155705493, 2531.1349572528], [0.129, 6.15206333598, 547.8502123593], [0.133, 5.43193972385, 1603.2999892854], [0.133, 3.49297492409, 529.1697002328], [0.132, 3.98820790955, 530.2122299564], [0.118, 5.38352943814, 1891.2376709388], [0.133, 5.65694269884, 76.2660712756], [0.145, 2.94976686191, 454.9093665273], [0.115, 3.29206553804, 3.9321532631], [0.102, 4.48856749557, 2001.4439921582], [0.106, 6.08434275898, 10.2949407385], [0.093, 5.8473777184, 2324.9494088156], [0.101, 0.15815934254, 2655.5683724738], [0.115, 3.59221021604, 2015.6710861598], [0.103, 4.70399583323, 305.3461693927], [0.084, 0.44180206332, 1593.0050485469], [0.092, 2.44863388631, 490.3340891794], [0.087, 6.23817512863, 6283.0758499914], [0.095, 3.30154605532, 2317.8358618148], [0.072, 1.90578907085, 528.9402055692], [0.072, 5.57619428876, 530.44172462], [0.078, 5.97323507836, 1585.8915015461]], [[8094.051, 1.46322843658, 529.6909650946], [742.415, 0.95691639003, 522.5774180938], [813.244, 3.14159265359, 0.0], [398.951, 2.89888666447, 536.8045120954], [342.226, 1.44683789727, 1059.3819301892], [73.948, 0.40724675866, 1052.2683831884], [46.151, 3.48036895772, 1066.49547719], [29.314, 0.99088831805, 515.463871093], [29.717, 1.92504171329, 1589.0728952838], [22.753, 4.27124052435, 7.1135470008], [13.916, 2.92242387338, 543.9180590962], [12.067, 5.22168932482, 632.7837393132], [10.703, 4.88024222475, 949.1756089698], [6.078, 6.21089108431, 1045.1548361876], [5.935, 0.52977760072, 1581.959348283], [5.037, 1.43444929374, 526.5095713569], [4.564, 0.91811732585, 1162.4747044078], [4.547, 4.01953745202, 1596.1864422846], [5.098, 6.03169795231, 735.8765135318], [3.593, 4.54080164408, 110.2063212194], [3.443, 1.38618954572, 533.6231183577], [3.277, 4.39650286553, 14.2270940016], [3.407, 0.42275631534, 419.4846438752], [2.904, 2.06041641723, 316.3918696566], [2.541, 3.98323842017, 323.5054166574], [3.113, 2.48079280193, 2118.7638603784], [3.061, 2.39880866911, 532.8723588323], [2.155, 4.7799063714, 942.062061969], [2.143, 3.88727338786, 426.598190876], [2.252, 0.3719643412, 1155.361157407], [2.019, 3.89985000464, 846.0828347512], [1.857, 1.19658907851, 103.0927742186], [1.683, 1.42264195434, 1265.5674786264], [2.313, 0.87671613055, 213.299095438], [1.443, 2.38565505909, 1169.5882514086], [1.823, 5.80106463776, 625.6701923124], [1.728, 2.24114678267, 525.7588118315], [1.198, 0.03252059731, 956.2891559706], [1.138, 3.46420904745, 1073.6090241908], [1.086, 5.352791467, 117.3198682202], [0.84, 2.89946334223, 95.9792272178], [0.746, 5.53017890231, 1478.8665740644], [0.944, 4.055870535, 206.1855484372], [0.758, 3.74770617289, 433.7117378768], [0.673, 1.26396626349, 508.3503240922], [0.889, 6.07878453176, 728.762966531], [0.6, 1.82954494089, 639.897286314], [0.589, 1.23625943417, 1258.4539316256], [0.619, 0.67923057477, 838.9692877504], [0.566, 5.36336098734, 742.9900605326], [0.648, 5.32990375008, 853.196381752], [0.553, 3.15511946637, 220.4126424388], [0.432, 1.03719283016, 1692.1656695024], [0.435, 1.65056479007, 519.3960243561], [0.43, 1.41830384501, 412.3710968744], [0.431, 2.20986254651, 1368.660252845], [0.415, 4.35372561905, 330.6189636582], [0.438, 0.1655227729, 1574.8458012822], [0.312, 4.50639455819, 2125.8774073792], [0.28, 3.01441283033, 551.031606097], [0.309, 0.67399908949, 2111.6503133776], [0.301, 3.06868080871, 1062.5633239269], [0.236, 1.946968422, 1485.9801210652], [0.235, 3.41850395941, 199.0720014364], [0.246, 2.61803442505, 309.2783226558], [0.238, 2.56643737684, 539.9859058331], [0.248, 2.96997778167, 2648.454825473], [0.209, 5.82481690851, 1471.7530270636], [0.205, 1.20202002469, 1056.2005364515], [0.188, 0.97113663101, 1685.0521225016], [0.137, 2.91203499563, 1699.2792165032], [0.131, 1.79274504072, 1063.3140834523], [0.161, 1.05926568614, 1795.258443721], [0.112, 2.62660288825, 440.8252848776], [0.11, 3.56263668146, 227.5261894396], [0.114, 6.13907482464, 1038.0412891868], [0.103, 4.6428710104, 3.1813937377], [0.123, 4.81268110532, 21.3406410024], [0.102, 4.2760382797, 1375.7737998458], [0.089, 1.22926014128, 1898.3512179396], [0.08, 0.62129648755, 831.8557407496]], [[251.624, 3.38087923084, 529.6909650946], [121.738, 2.733118372, 522.5774180938], [48.694, 1.03689996685, 536.8045120954], [10.988, 2.31463561347, 1052.2683831884], [8.067, 2.76729757621, 515.463871093], [6.205, 1.7811582737, 1066.49547719], [7.287, 4.25268318975, 1059.3819301892], [3.627, 1.13028917221, 543.9180590962], [2.798, 3.14159265359, 0.0], [1.898, 2.28934054087, 7.1135470008], [1.643, 1.77507208483, 1045.1548361876], [0.945, 0.45261136388, 632.7837393132], [0.758, 0.30577920142, 949.1756089698], [0.731, 2.63748223583, 14.2270940016], [0.876, 0.32927768725, 1589.0728952838], [0.678, 2.36909615348, 1581.959348283], [0.623, 2.480562136, 1596.1864422846], [0.736, 1.52532370632, 735.8765135318], [0.499, 3.67985494258, 419.4846438752], [0.454, 0.26977404624, 942.062061969], [0.453, 3.18232334886, 526.5095713569], [0.409, 2.88147337106, 110.2063212194], [0.347, 5.7624428587, 103.0927742186], [0.31, 2.98017326384, 508.3503240922], [0.321, 4.40642025933, 532.8723588323], [0.3, 1.66936571536, 625.6701923124], [0.295, 1.75924202728, 1073.6090241908], [0.282, 3.11087801399, 533.6231183577], [0.263, 0.55255030187, 426.598190876], [0.208, 2.17540496886, 1155.361157407], [0.183, 4.34670868038, 525.7588118315], [0.18, 6.07777744541, 639.897286314], [0.159, 2.60843864402, 1162.4747044078], [0.117, 4.70141431381, 95.9792272178], [0.107, 5.48942805114, 433.7117378768], [0.105, 3.75192101775, 316.3918696566], [0.13, 1.37897716939, 323.5054166574], [0.094, 3.05797832024, 1265.5674786264], [0.114, 3.75170981478, 117.3198682202], [0.095, 0.54905691533, 1169.5882514086], [0.088, 3.26874502411, 213.299095438], [0.098, 2.00704668688, 1574.8458012822]], [[15.05, 4.52956999637, 522.5774180938], [5.37, 4.47427159142, 529.6909650946], [4.456, 5.43908581047, 536.8045120954], [3.422, 0.0, 0.0], [1.833, 4.51807036227, 515.463871093], [1.322, 4.20117611581, 1052.2683831884], [0.755, 5.59451554966, 543.9180590962], [0.512, 0.05803177475, 1066.49547719], [0.282, 3.66807771223, 1059.3819301892], [0.147, 3.56490986181, 1045.1548361876], [0.142, 5.69936472988, 7.1135470008], [0.112, 1.16718383135, 14.2270940016]], [[1.445, 0.09198554072, 522.5774180938], [0.368, 0.00874408003, 515.463871093], [0.304, 3.27902945138, 536.8045120954], [0.129, 0.33959775247, 529.6909650946], [0.095, 1.29305954542, 543.9180590962]]]

This table contains Jupiter’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric latitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 430-432.

pymeeus.Jupiter.VSOP87_L = [[[59954691.495, 0.0, 0.0], [9695898.711, 5.06191793105, 529.6909650946], [573610.145, 1.44406205976, 7.1135470008], [306389.18, 5.41734729976, 1059.3819301892], [97178.28, 4.14264708819, 632.7837393132], [72903.096, 3.64042909255, 522.5774180938], [64263.986, 3.41145185203, 103.0927742186], [39806.051, 2.29376744855, 419.4846438752], [38857.78, 1.2723172486, 316.3918696566], [27964.622, 1.78454589485, 536.8045120954], [13589.738, 5.7748103159, 1589.0728952838], [8246.362, 3.58227961655, 206.1855484372], [8768.686, 3.63000324417, 949.1756089698], [7368.057, 5.08101125612, 735.8765135318], [6263.171, 0.02497643742, 213.299095438], [6114.05, 4.51319531666, 1162.4747044078], [4905.419, 1.32084631684, 110.2063212194], [5305.283, 1.30671236848, 14.2270940016], [5305.457, 4.18625053495, 1052.2683831884], [4647.249, 4.69958109497, 3.9321532631], [3045.009, 4.31675960318, 426.598190876], [2610.001, 1.5666759485, 846.0828347512], [2028.191, 1.06376547379, 3.1813937377], [1764.768, 2.14148077766, 1066.49547719], [1722.983, 3.88036008872, 1265.5674786264], [1920.959, 0.97168928755, 639.897286314], [1633.217, 3.58201089758, 515.463871093], [1431.997, 4.29683690269, 625.6701923124], [973.278, 4.09764957065, 95.9792272178], [884.439, 2.43701426123, 412.3710968744], [732.875, 6.08534113239, 838.9692877504], [731.072, 3.80591233956, 1581.959348283], [691.928, 6.13368222939, 2118.7638603784], [709.19, 1.29272573658, 742.9900605326], [614.464, 4.10853496756, 1478.8665740644], [495.224, 3.75567461379, 323.5054166574], [581.902, 4.53967717552, 309.2783226558], [375.657, 4.70299124833, 1368.660252845], [389.864, 4.89716105852, 1692.1656695024], [341.006, 5.71452525783, 533.6231183577], [330.458, 4.74049819491, 0.0481841098], [440.854, 2.95818460943, 454.9093665273], [417.266, 1.03554430161, 2.4476805548], [244.17, 5.220208789, 728.762966531], [261.54, 1.87652461032, 0.9632078465], [256.568, 3.72410724159, 199.0720014364], [261.009, 0.82047246448, 380.12776796], [220.382, 1.65115015995, 543.9180590962], [201.996, 1.80684574186, 1375.7737998458], [207.327, 1.85461666594, 525.7588118315], [197.046, 5.29252149016, 1155.361157407], [235.141, 1.22693908124, 909.8187330546], [174.809, 5.90973505276, 956.2891559706], [149.368, 4.37745104275, 1685.0521225016], [175.184, 3.22634903433, 1898.3512179396], [175.191, 3.72966554761, 942.062061969], [157.909, 4.36483921766, 1795.258443721], [137.871, 1.31797920785, 1169.5882514086], [117.495, 2.5002214089, 1596.1864422846], [150.502, 3.90625022622, 74.7815985673], [116.757, 3.38920921041, 0.5212648618], [105.895, 4.55439798236, 526.5095713569], [130.531, 4.16867945489, 1045.1548361876], [141.445, 3.13568357861, 491.5579294568], [99.511, 1.42117395747, 532.8723588323], [96.137, 1.18156870005, 117.3198682202], [91.758, 0.85756633461, 1272.6810256272], [87.695, 1.21738140813, 453.424893819], [68.507, 2.35242959478, 2.9207613068], [66.098, 5.34386149468, 1471.7530270636], [77.401, 4.42676337124, 39.3568759152], [72.006, 4.23834923691, 2111.6503133776], [63.406, 4.97665525033, 0.7507595254], [59.427, 4.11130498612, 2001.4439921582], [62.481, 0.51211384012, 220.4126424388], [66.532, 2.98864358135, 2214.7430875962], [60.194, 4.12628179571, 4.192785694], [56.012, 1.15493222602, 21.3406410024], [52.854, 0.91207215543, 10.2949407385], [70.297, 5.14180555282, 835.0371344873], [51.916, 4.1004818002, 1258.4539316256], [46.442, 4.66531163524, 5.6290742925], [58.19, 5.86646380344, 5753.3848848968], [40.103, 4.68801114087, 0.1600586944], [46.654, 4.79394835282, 305.3461693927], [39.298, 4.25448423697, 853.196381752], [46.042, 5.1098351515, 4.665866446], [54.459, 1.57072704127, 983.1158589136], [38.92, 6.0759290558, 518.6452648307], [38.45, 2.43836870888, 433.7117378768], [46.8, 3.54640538283, 5.4166259714], [41.83, 4.67982493646, 302.164775655], [35.92, 2.45088036239, 430.5303441391], [37.888, 0.21127448431, 2648.454825473], [39.19, 1.71835571629, 11.0457002639], [37.567, 6.19481310233, 831.8557407496], [35.828, 4.61459907698, 2008.557539159], [43.402, 0.14992289081, 528.2064923863], [31.598, 5.14073450755, 1788.1448967202], [29.849, 5.34441117167, 2221.856634597], [32.811, 5.28907118836, 88.865680217], [27.686, 1.85227036207, 0.2124483211], [25.82, 3.85920882494, 2317.8358618148], [24.705, 2.63495214991, 114.1384744825], [33.844, 1.00563073268, 9683.5945811164], [24.266, 3.82355417268, 1574.8458012822], [27.111, 2.80845435102, 18.1592472647], [26.837, 1.77586123775, 532.1386456494], [26.064, 2.74361318804, 2531.1349572528], [30.765, 0.42330537728, 1.4844727083], [30.476, 3.66677894407, 508.3503240922], [23.282, 3.24372142416, 984.6003316219], [19.445, 0.52370214471, 14.977853527], [19.332, 4.86314494382, 1361.5467058442], [22.91, 3.84914895064, 2428.0421830342], [21.617, 6.01696940024, 1063.3140834523], [20.155, 5.59582008789, 527.2432845398], [23.732, 2.52766031921, 494.2662424425], [20.189, 1.01560227681, 628.8515860501], [15.994, 5.09003530653, 529.7391492044], [16.134, 5.27095037302, 142.4496501338], [20.697, 4.03443281612, 355.7487455718], [21.479, 1.28668134295, 35.4247226521], [14.964, 4.8603968439, 2104.5367663768], [17.242, 1.59187913206, 1439.5096981492], [15.994, 1.89222417794, 529.6427809848], [17.958, 4.30178016003, 6.1503391543], [13.279, 2.18943981644, 1055.4497769261], [14.148, 2.71597731671, 0.2606324309], [14.689, 0.87944553412, 99.1606209555], [14.202, 2.41335693735, 530.6541729411], [15.32, 6.07703092728, 149.5631971346], [15.832, 4.11682440678, 636.7158925763], [12.398, 2.61042299578, 405.2575498736], [16.199, 2.77035044582, 760.25553592], [13.665, 3.5603967831, 217.2312487011], [15.261, 2.81824770887, 621.7380390493], [14.681, 6.26423732742, 569.0478410098], [12.529, 1.39077179081, 7.065362891], [11.677, 3.60447374272, 2634.2277314714], [11.603, 4.60461756191, 7.1617311106], [12.152, 0.24540531919, 1485.9801210652], [11.347, 2.00818458261, 1073.6090241908], [11.242, 2.4800094787, 423.4167971383], [10.942, 5.03602448252, 458.8415197904], [11.117, 4.04973271023, 519.3960243561], [12.256, 4.30153222783, 604.4725636619], [13.149, 2.72189077702, 1364.7280995819], [10.604, 3.11518747072, 1.2720243872], [9.874, 1.70200068743, 1699.2792165032], [10.851, 5.08554552028, 2324.9494088156], [10.692, 2.51401681528, 2847.5268269094], [12.64, 4.75572797691, 528.7277572481], [10.084, 4.05599810206, 38.1330356378], [11.536, 2.35034215745, 643.8294395771], [10.247, 3.63479911496, 2744.4340526908], [10.105, 3.65845333837, 107.0249274817], [10.121, 1.31482648275, 1905.4647649404], [9.341, 5.92176693887, 1148.2476104062], [8.796, 2.77421822809, 6.592282139], [8.42, 4.52537756809, 1677.9385755008], [10.128, 2.09034472544, 511.5317178299], [8.272, 2.98682673354, 540.7366653585], [9.753, 1.22438911827, 32.2433289144], [10.63, 2.07777800288, 92.0470739547], [7.85, 0.98996894618, 408.4389436113], [8.811, 3.46911754939, 1021.2488945514], [7.946, 2.8668292607, 2125.8774073792], [8.575, 5.29590411702, 415.5524906121], [7.841, 6.08025056721, 70.8494453042], [7.706, 1.69832954219, 8.0767548473], [7.265, 4.65503563919, 629.6023455755], [7.164, 4.93400217968, 1056.2005364515], [7.247, 4.6160767756, 2420.9286360334], [7.753, 2.12871653382, 33.9402499438], [6.645, 0.45647460873, 635.9651330509], [9.377, 4.03158388202, 2810.9214616052], [8.263, 1.23558676139, 1802.3719907218], [6.341, 0.0727800158, 202.2533951741], [6.383, 3.54310669809, 1891.2376709388], [7.902, 2.32510002614, 230.5645708254], [6.214, 4.54560345237, 2.7083129857], [7.347, 1.24457237337, 24.3790223882], [7.451, 3.02719199239, 330.6189636582], [6.22, 1.77687561489, 1062.5633239269], [5.674, 5.14132196367, 746.9222137957], [5.855, 5.42130172896, 28.3111756513], [5.629, 3.24348217277, 529.1697002328], [7.652, 0.52813391052, 672.1406152284], [5.456, 3.34716871364, 2950.619601128], [7.127, 1.43497795005, 6.2197751235], [5.388, 4.9017509558, 69.1525242748], [5.618, 4.97903783721, 2641.3412784722], [5.844, 2.95364118152, 490.3340891794], [4.943, 5.37597740579, 721.6494195302], [5.062, 4.84282906467, 31.019488637], [5.163, 5.07410777073, 67.6680515665], [4.739, 6.10248862834, 106.2741679563], [4.879, 0.07095292379, 78.7137518304], [4.854, 5.63875661096, 1.6969210294], [5.629, 3.73871604865, 530.2122299564], [4.471, 4.49152882547, 505.3119427064], [4.313, 4.79369370451, 535.107591066], [4.28, 0.5478382371, 1.4362885985], [4.453, 0.50551854591, 524.0618908021], [4.936, 4.82992988255, 422.6660376129], [4.701, 3.41634869046, 3060.8259223474], [4.261, 2.67044686458, 561.934294009], [4.156, 4.00660658688, 99.9113804809], [4.561, 2.29650164054, 3163.918696566], [4.414, 5.67224020329, 1464.6394800628], [5.345, 0.3151385183, 1289.9465010146], [5.269, 3.89116469022, 191.9584544356], [3.855, 4.28942301453, 1994.3304451574], [4.21, 5.32763589447, 2538.2485042536], [3.949, 4.56507101172, 1382.8873468466], [3.885, 1.5677878681, 647.0108333148], [4.227, 5.5169759903, 5223.6939198022], [4.129, 2.81119457666, 416.3032501375], [3.663, 4.35187510477, 2737.32050569], [3.566, 5.48243943375, 750.1036075334], [4.33, 0.8494175664, 531.1754378029], [4.093, 0.19980340452, 525.0250986486], [4.022, 1.92293311337, 1512.8068240082], [3.4, 6.00302355875, 1.2238402774], [3.496, 0.31252921473, 597.3590166611], [3.299, 4.27596694481, 526.7702037878], [3.226, 2.90455264496, 963.4027029714], [3.15, 3.81061764181, 280.9671470045], [4.129, 4.74946631331, 0.8937718773], [3.84, 1.91064405186, 378.6432952517], [3.057, 1.65589659685, 528.9402055692], [3.011, 1.59276337369, 224.3447957019], [3.196, 5.86588452873, 4.1446015842], [3.628, 0.07930225897, 558.0021407459], [2.932, 0.41424445089, 7.8643065262], [3.316, 2.70211697795, 532.6117264014], [2.925, 4.47580363425, 533.8837507886], [3.69, 0.39897023849, 685.4739373527], [3.223, 2.45833032883, 960.2213092337], [3.059, 5.32616140812, 530.44172462], [3.383, 4.42170370028, 312.4597163935], [3.32, 2.71417812514, 495.7507151508], [2.697, 5.23146633437, 739.8086667949], [3.59, 2.30999595873, 908.3342603463], [3.677, 5.07337955976, 73.297125859], [2.618, 3.09118499149, 3267.0114707846], [2.796, 2.98942316119, 483.2205421786], [3.398, 3.29598270278, 911.3032057629], [3.352, 1.44391979336, 593.426863398], [2.563, 3.35080110279, 2207.6295405954], [2.553, 0.36892288645, 1048.3362299253], [2.62, 3.8276987434, 520.129737539], [3.356, 1.08315053878, 46.470422916], [3.035, 5.52230028113, 618.5566453116], [3.397, 3.83084746522, 210.1177017003], [2.497, 0.47917884538, 945.2434557067], [2.341, 5.87941292649, 2751.5475996916], [2.656, 0.49713061045, 1057.8974574809], [2.581, 0.03759881914, 1.6445314027], [2.9, 2.50019054587, 525.4981794006], [3.153, 2.30900986177, 457.617679513], [2.201, 3.94367109739, 31.492569389], [2.381, 6.19252134885, 327.4375699205], [2.458, 0.65614291954, 9153.9036160218], [2.111, 5.61905648764, 16.4623262353], [2.13, 3.75880734109, 724.8308132679], [2.406, 2.29315649755, 195.1398481733], [2.166, 5.43262641046, 534.3568315406], [2.057, 1.49875151278, 551.031606097], [2.676, 5.06374981112, 456.3938392356], [2.078, 5.28920097886, 76.2660712756], [2.261, 5.38117230692, 1781.0313497194], [2.356, 0.67392574097, 227.5261894396], [2.24, 3.18006978517, 3377.217792004], [2.183, 3.0838425095, 524.2743391232], [2.119, 2.70107659927, 387.2413149608], [2.056, 4.82779196994, 2957.7331481288], [2.116, 6.20263841494, 209.3669421749], [2.712, 3.18157754631, 1474.6737883704], [2.127, 1.24424012514, 539.9859058331], [2.424, 3.57595925853, 953.1077622329], [1.947, 1.94468082546, 529.5309064002], [1.896, 4.014062428, 2310.722314814], [1.935, 4.1005149395, 3053.7123753466], [2.056, 6.2707414855, 245.5424243524], [2.108, 3.22886474225, 252.6559713532], [2.596, 2.77467278614, 177.8743727859], [1.919, 3.14834694111, 381.6122406683], [2.217, 1.92368906925, 535.9107402181], [1.947, 5.03751780002, 529.851023789], [2.025, 4.82814272957, 17.2654753874], [1.945, 2.10611582568, 3480.3105662226], [1.899, 0.05104263891, 560.7104537316], [2.221, 0.5836509063, 3178.1457905676], [2.271, 1.67360565619, 731.9443602687], [1.706, 5.40277333462, 20.4468691251], [2.295, 4.20863103004, 1038.0412891868], [2.218, 3.65982280555, 282.4516197128], [2.181, 4.87369503022, 535.3200393871], [1.745, 1.34021867874, 25.1297819136], [1.601, 3.9273001584, 17.5261078183], [1.651, 0.63598292839, 17.4084877393], [1.826, 0.31592311031, 124.433415221], [2.041, 0.15617294873, 598.8434893694], [1.494, 3.8141802513, 319.5732633943], [1.551, 5.25201528605, 437.6438911399], [1.852, 2.36130812462, 37.8724032069], [1.466, 1.72926380881, 59.8037450403], [1.417, 5.82273267086, 81.7521332162], [1.43, 1.1752880626, 440.8252848776], [1.906, 4.06896022692, 1819.6374661092], [1.397, 0.26383366743, 50.4025761791], [1.756, 2.32977483716, 938.1299087059], [1.487, 2.2486674654, 10.0343083076], [1.368, 3.56691602771, 1514.2912967165], [1.4, 4.84502200703, 295.0512286542], [1.344, 2.20177702122, 529.9034134157], [1.464, 1.42648716568, 1158.5425511447], [1.341, 1.15693423225, 2435.155730035], [1.786, 5.44716330146, 2854.6403739102], [1.677, 6.22875777048, 833.552661779], [1.471, 4.80574535807, 696.5196376166], [1.436, 1.4581095733, 537.7677199419], [1.657, 0.02890651793, 138.5174968707], [1.3, 3.14074420421, 547.8502123593], [1.343, 6.14827138025, 988.532484885], [1.344, 4.78042160426, 529.4785167735], [1.234, 2.83294330979, 3583.4033404412], [1.651, 2.12056447005, 1061.829610744], [1.479, 0.24646493075, 1593.0050485469], [1.413, 3.07444632745, 6283.0758499914], [1.246, 5.94882321661, 1056.9342496344], [1.225, 1.95642397635, 1969.2006632438], [1.388, 2.87749576073, 1023.9572075371], [1.263, 3.46181945031, 40.8413486235], [1.325, 4.15429781246, 916.9322800554], [1.477, 5.26691818477, 810.6581120991], [1.165, 4.65528125418, 944.9828232758], [1.137, 2.48561382158, 2.0057375701], [1.118, 3.80747957482, 7.0016724162], [1.138, 5.11611532241, 885.4397106664], [1.131, 1.54599459004, 775.233389447], [1.477, 4.69742954455, 630.3360587584], [1.252, 1.34316620527, 739.0579072695], [1.273, 5.19070939905, 2097.423219376], [1.446, 5.54999644374, 43.2890291783], [1.344, 4.75897665313, 1166.4068576709], [1.101, 4.56997613488, 3274.1250177854], [1.376, 3.60998729004, 415.2918581812], [1.437, 6.22410093972, 155.7829722581], [1.167, 4.09497264272, 203.0041546995], [1.237, 4.41132627005, 292.0128472684], [1.077, 2.57045229823, 25.2727942655], [1.341, 0.49262296655, 635.231419868], [1.209, 3.36289125536, 521.6142102473], [1.03, 1.81822316284, 465.9550667912], [1.002, 3.21720955284, 2524.021410252], [1.338, 1.26054917773, 902.7051860538], [1.037, 3.87858871885, 3370.1042450032], [1.224, 0.09219976028, 824.7421937488], [1.255, 3.04675952762, 447.7958195265], [0.991, 4.16587903812, 632.831923423], [0.975, 3.80216680539, 2627.1141844706], [1.061, 5.60184374277, 732.6951197941], [1.049, 2.94931080683, 3693.6096616606], [0.984, 0.98260254313, 632.7355552034], [1.05, 2.20935815967, 7.2254215854], [0.996, 5.41921062583, 1059.430114299], [0.961, 0.87315283361, 544.6688186216], [1.175, 3.09093466406, 1894.4190646765], [1.049, 5.81616384906, 26.826702943], [1.161, 0.01274801567, 850.0149880143], [1.109, 3.63294273717, 306.830642101], [1.077, 0.95716576092, 608.404716925], [1.288, 4.23019288942, 1215.1649024473], [1.06, 3.85856787901, 631.8205314667], [1.251, 6.15889818604, 462.0229135281], [1.165, 3.50653563773, 8.5980197091], [0.933, 4.62559759882, 1049.0869894507], [1.035, 1.30805283339, 633.7469471597], [1.238, 2.21195391602, 25558.2121764796], [1.24, 2.27960685992, 6.9010986797], [0.942, 4.14526324371, 945.9942152321], [0.927, 6.10893117637, 514.7131115676], [0.914, 6.17656044376, 952.3570027075], [0.893, 4.27448748055, 0.6331394464], [1.045, 1.64682770236, 565.1156877467], [0.903, 1.9425015664, 3796.7024358792], [1.162, 5.51229668479, 2.9689454166], [0.901, 3.03568112112, 460.5384408198], [0.903, 2.24012822393, 523.5406259403], [1.06, 5.28027224466, 3171.0322435668], [1.064, 0.99330150801, 320.3240229197], [0.97, 4.56607888439, 429.0458714308], [1.071, 4.33203090957, 610.6923387854], [0.865, 0.2183142923, 1098.7388061044], [0.865, 2.82123742108, 1060.3451380357], [0.882, 4.80076824948, 384.0599212231], [0.959, 5.45468005818, 451.9404211107], [1.042, 5.7927032515, 303.8616966844], [0.784, 1.85150700827, 313.2104759189], [1.083, 1.40526460812, 72.0732855816], [0.782, 3.03559242565, 5.8415226136], [0.854, 1.22236205478, 611.4430983108], [0.996, 2.22139794743, 1059.3337460794], [0.719, 4.92550252164, 421.93232443], [0.953, 3.98347050083, 836.5216071956], [0.822, 4.49679856387, 10213.285546211], [0.707, 2.16473400319, 2228.9701815978], [0.715, 4.62515255534, 385.5443939314], [0.737, 4.63776694324, 1134.1635287565], [0.73, 1.87179326186, 153.4953503977], [0.709, 2.9313211591, 417.0369633204], [0.926, 1.77006317007, 2332.0629558164], [0.864, 3.0324627597, 1041.2226829245], [0.708, 6.01601101389, 395.105621487], [0.935, 6.01864676296, 173.9422195228], [0.695, 1.39408383356, 432.0148168474], [0.687, 3.06548397586, 529.9515975255], [0.677, 3.5835752721, 244.318584075], [0.85, 5.46114025921, 41.0537969446], [0.817, 4.65315342412, 535.8413042489], [0.652, 0.44173759183, 1201.831580323], [0.711, 0.9628328931, 373.0142209592], [0.665, 1.03244633471, 623.2225117576], [0.643, 5.05335060049, 522.6256022036], [0.639, 4.22718483639, 25.8634950965], [0.718, 5.0757690071, 1058.4187223427], [0.664, 2.43728454444, 1585.1407420207], [0.833, 1.49468440213, 563.6312150384], [0.76, 4.34849823663, 100.6450936638], [0.633, 4.3179671864, 3590.516887442], [0.629, 6.23431126402, 679.2541622292], [0.617, 2.68075016456, 3899.7952100978], [0.646, 2.88581188015, 13.4933808187], [0.768, 3.1849807612, 1151.4290041439], [0.731, 5.86653168561, 501.3797894433], [0.652, 0.8286577178, 2015.6710861598], [0.796, 5.36663489938, 420.9691165835], [0.647, 4.74965662438, 567.8240007324], [0.845, 1.69406147722, 1744.8558675419], [0.802, 5.79824707751, 981.6313862053], [0.764, 5.05232933368, 827.9235874865], [0.604, 5.11265182908, 1159.2933106701], [0.682, 3.68248136835, 2281.2304965106], [0.74, 0.74512356954, 1261.6353253633], [0.666, 2.06624389616, 27.0873353739], [0.652, 4.92932795958, 2413.8150890326], [0.559, 0.17558868481, 63.7358983034], [0.577, 3.82752312276, 1550.939859646], [0.727, 1.05835550856, 490.0734567485], [0.574, 3.61492119092, 3686.4961146598], [0.732, 5.93179840659, 42.5382696529], [0.606, 2.714118843, 1173.5204046717], [0.633, 4.21720828607, 166.828672522], [0.687, 3.91671464962, 529.4303326637], [0.57, 2.73551750122, 4010.0015313172], [0.552, 2.36967119362, 1603.2999892854], [0.6, 1.82659364395, 522.529233984], [0.558, 5.09099246601, 1354.4331588434], [0.519, 6.11952999304, 366.7944458357], [0.719, 0.85722557905, 362.8622925726], [0.518, 2.03954064144, 418.5214360287], [0.515, 3.51750445111, 528.4189407074], [0.515, 3.47930063838, 103.1409583284], [0.55, 5.7767683773, 420.4478517217], [0.702, 3.67952126446, 1279.794572628], [0.55, 0.61451088395, 104.0559820651], [0.495, 2.41738205536, 179.3588454942], [0.513, 0.29823688044, 103.0445901088], [0.537, 5.47946238724, 771.3012361839], [0.507, 3.08777345288, 1357.6145525811], [0.495, 4.9536265916, 536.8526962052], [0.681, 4.56294416261, 112.6540017742], [0.5, 3.15631977489, 1070.4276304531], [0.484, 0.79038835602, 28.4541880032], [0.529, 5.46978501034, 419.4364597654], [0.597, 4.98058295172, 1251.3403846248], [0.492, 3.96066546484, 1269.4996318895], [0.482, 3.6016766249, 2943.5060541272], [0.63, 6.16496640092, 105.5404547734], [0.48, 0.86786400621, 35.212274331], [0.516, 5.97528782923, 3067.9394693482], [0.586, 5.48467997697, 56.6223513026], [0.502, 1.43671788959, 469.8872200543], [0.473, 2.28007170041, 2042.4977891028], [0.565, 1.90952569252, 107.2855599126], [0.452, 3.13938145287, 934.9485149682], [0.605, 1.65413715574, 761.7400086283], [0.443, 5.46282223686, 135.336103133], [0.58, 2.06327501551, 493.0424021651], [0.54, 1.7377799597, 536.7563279856], [0.432, 0.27167052107, 93.531546663], [0.515, 3.46469417437, 530.9629894818], [0.44, 5.28884782489, 497.4476361802], [0.487, 5.78767525063, 12036.4607348882], [0.452, 2.57855172248, 1254.5217783625], [0.427, 3.21032629463, 2840.4132799086], [0.414, 1.54298025443, 115.6229471908], [0.424, 0.12699448931, 1268.7488723641], [0.411, 3.12424023238, 536.2832472336], [0.452, 1.00194596383, 113.3877149571], [0.419, 0.81834479225, 1165.6560981455], [0.49, 4.72785081986, 277.0349937414], [0.434, 0.36146539146, 1304.9243545416], [0.401, 5.70326543719, 1127.0499817557], [0.461, 3.2646289482, 102.1295663721], [0.533, 2.54951615753, 141.2258098564], [0.413, 4.38801694479, 6151.533888305], [0.415, 1.68861617902, 391.1734682239], [0.385, 1.69092319074, 4113.0943055358], [0.45, 5.49339192735, 602.9880909536], [0.499, 3.80738617353, 81.0013736908], [0.454, 0.10952919733, 600.5404103988], [0.377, 6.25375060718, 913.7508863177], [0.453, 3.86104865567, 758.7710632117], [0.401, 4.44475618337, 990.2294059144], [0.407, 5.13442416563, 3487.4241132234], [0.435, 3.7610335849, 523.0986829556], [0.425, 3.22287851959, 2655.5683724738], [0.365, 5.16456645463, 4694.0029547076], [0.454, 1.6332519795, 976.0023119128], [0.406, 2.72102389267, 1438.0252254409], [0.349, 3.59598366422, 1058.8606653274], [0.354, 0.6213633142, 498.6714764576], [0.383, 5.09229089574, 539.2521926502], [0.38, 3.92653231573, 561.1835344836], [0.339, 4.12175871949, 3906.9087570986], [0.458, 3.42556794767, 121.2520214833], [0.427, 3.6128526491, 860.3099287528], [0.424, 4.72757252331, 1366.2125722902], [0.328, 4.55286002816, 1696.0978227655], [0.324, 4.2368500521, 642.3449668688], [0.395, 3.26282558955, 484.444382456], [0.33, 6.05223507989, 215.7467759928], [0.318, 2.0207280007, 2964.8466951296], [0.417, 0.20173093597, 842.9014410135], [0.408, 0.45800247268, 1578.0271950199], [0.342, 6.15347077985, 1371.8416465827], [0.31, 1.97259286255, 754.0357607965], [0.34, 2.77813018312, 3.523118349], [0.333, 2.91352254678, 576.1613880106], [0.324, 0.32544817254, 586.3133163972], [0.302, 2.08708848849, 526.9826521089], [0.363, 4.7056711323, 2730.2069586892], [0.3, 0.94464473068, 1432.3961511484], [0.352, 5.75013621801, 806.725958836], [0.296, 3.97807312133, 2043.9822618111], [0.295, 2.35257797599, 4216.1870797544], [0.309, 2.49768755925, 4326.3934009738], [0.306, 3.35876843257, 2424.1100297711], [0.3, 4.94288858368, 1379.7059531089], [0.336, 4.49193455535, 1585.8915015461], [0.402, 2.04684001796, 842.1506814881], [0.312, 4.59043534747, 188.9200730498], [0.346, 5.19792097706, 523.4711899711], [0.38, 1.67961600066, 36.6485629295], [0.338, 1.32014513725, 148.0787244263], [0.391, 4.82224015188, 1012.9115072732], [0.285, 3.43655052437, 1053.9653042178], [0.332, 2.02575636311, 1091.6252591036], [0.282, 5.7886532189, 1064.0477966352], [0.282, 0.39153852422, 207.6700211455], [0.28, 3.80196391678, 298.2326223919], [0.387, 6.2681930999, 1141.1340634054], [0.349, 4.09121908199, 1059.903195051], [0.32, 0.39871942, 2122.6960136415], [0.327, 4.76503823073, 134.5853436076], [0.283, 3.90409016441, 127.4717966068], [0.301, 4.30291951219, 299.1263942692], [0.322, 2.4825105268, 1065.6017053127], [0.297, 2.40814103509, 1591.5205758386], [0.286, 5.85849626574, 172.2452984934], [0.285, 4.55845472479, 1446.62324515], [0.27, 4.08342186112, 1578.7779545453], [0.362, 1.06148806683, 181.806526049], [0.335, 4.51094500655, 2349.3284312038], [0.347, 0.62281394535, 1542.6024723678], [0.275, 3.38473403113, 4002.8879843164], [0.255, 1.52357936497, 1688.2335162393], [0.276, 4.32192160071, 1912.5783119412], [0.253, 2.40482338279, 97.6761482472], [0.248, 4.45058246237, 1688.9842757647], [0.3, 3.07435583442, 1902.2833712027], [0.257, 4.79180478086, 1670.8250285], [0.319, 1.34244222683, 1288.4620283063], [0.245, 4.01852686769, 1567.7322542814], [0.278, 0.25406312148, 874.3940104025], [0.324, 5.57824969423, 1670.0742689746], [0.3, 4.67161812947, 1329.3033769298], [0.241, 0.01789818312, 1586.625214729], [0.295, 5.86996114913, 2804.2377977311], [0.317, 3.17967272487, 1020.025054274], [0.238, 4.97765946754, 351.8165923087], [0.302, 1.20236375616, 232.0490435337], [0.301, 5.53432687957, 2274.5468326365], [0.286, 2.41008592059, 2545.3620512544], [0.294, 2.01783542485, 313.9441891018], [0.292, 2.12690999284, 1592.2542890215], [0.25, 2.31712163679, 632.2624744514], [0.238, 5.06557054569, 3803.81598288], [0.226, 0.05916712753, 1518.2234499796], [0.235, 0.16574304942, 137.0330241624], [0.298, 2.99720233431, 1467.8208738005], [0.286, 5.08357076653, 774.0095491696], [0.246, 2.81685822336, 633.305004175], [0.269, 4.93023426152, 151.0476698429], [0.228, 6.13118739321, 3281.2385647862], [0.228, 1.22066024988, 700.4517908797], [0.239, 0.71695698501, 1276.6131788903], [0.289, 6.08263862565, 3384.3313390048], [0.218, 2.90308501961, 85.8272988312], [0.283, 6.28058228271, 71.8126531507], [0.271, 6.01605074549, 170.7608257851], [0.221, 0.99914179141, 1053.7528558967], [0.218, 1.50681393471, 1087.6931058405], [0.223, 3.39126063354, 3259.8979237838], [0.229, 1.19373202707, 1060.8664028975], [0.264, 3.93467945263, 1363.2436268736], [0.228, 5.04188376116, 1064.7985561606], [0.295, 2.1525308639, 6386.16862421], [0.214, 3.85961180377, 4223.3006267552], [0.218, 0.79681703388, 1909.3969182035], [0.212, 4.11706418218, 269.9214467406], [0.264, 5.81676406517, 77.962992305], [0.256, 5.65978708108, 799.6124118352], [0.242, 6.25078283449, 1621.3162241982], [0.235, 2.20668997852, 1570.9136480191], [0.212, 2.88214546012, 1674.0064222377], [0.206, 1.59586787037, 4429.4861751924], [0.208, 2.31366614282, 878.3261636656], [0.213, 0.30373338388, 8624.2126509272], [0.223, 4.88419887133, 1035.002907801], [0.279, 3.65173543621, 84.9335269539], [0.21, 4.08825553401, 203.7378678824], [0.214, 4.63498396475, 812.1425848074], [0.258, 1.7350168845, 1887.3055176757], [0.21, 4.5179808271, 1262.3860848887], [0.252, 5.69246905091, 104.5772469269], [0.205, 4.62946016431, 1056.4611688824], [0.263, 3.04951219565, 1493.093668066], [0.222, 5.54424082649, 5216.5803728014], [0.244, 0.91026645686, 3707.8367556622], [0.204, 0.90117975859, 1408.0171287602], [0.225, 1.23997048012, 3340.6124266998], [0.258, 2.35906183505, 2861.753920911], [0.267, 3.27705002283, 5120.6011455836], [0.214, 0.66988779149, 9146.790069021], [0.235, 4.93761209111, 1443.4418514123], [0.194, 1.60798828275, 102.5715093568], [0.215, 0.97603524747, 479.2883889155], [0.205, 5.23642605904, 4649.8988176312], [0.257, 4.70227260707, 9050.8108418032], [0.228, 6.23410921116, 64.9597385808], [0.18, 4.21309134581, 143.9341228421], [0.18, 4.82870451226, 1063.5747158832], [0.18, 5.06126965624, 52.6901980395], [0.226, 0.55334952097, 554.0699874828], [0.209, 5.67975843693, 48.7580447764], [0.186, 3.66368928017, 108.7218485111], [0.19, 2.00852986549, 1058.6311706638], [0.183, 3.1735846422, 140.9651774255], [0.198, 5.49816579454, 4333.5069479746], [0.24, 6.06602357868, 1821.1219388175], [0.172, 3.04802064781, 54.3347294422], [0.17, 4.66520291204, 1372.5924061081], [0.173, 4.72884056307, 77204.32749453338], [0.174, 0.85370421252, 1587.5884225755], [0.215, 0.68219980704, 1054.7160637432], [0.17, 1.52204803308, 5591.9608796002], [0.2, 1.60275092073, 6681.2248533996], [0.193, 2.1300347928, 103.6140390804], [0.231, 4.69962389031, 1966.2317178272], [0.179, 5.57395905447, 1457.525933062], [0.205, 3.65507571128, 906.849787638], [0.181, 4.52272934666, 24498.8302462904], [0.223, 0.11650319998, 67.8804998876], [0.172, 5.68083885227, 1884.124123938], [0.219, 0.60964963735, 2729.4561991638], [0.164, 1.06675279755, 594.6507036754], [0.176, 2.36848603898, 977.4867846211], [0.17, 2.430366848, 4532.578949411], [0.191, 3.64255924842, 1440.9941708575], [0.207, 0.49276008455, 71.6002048296], [0.157, 4.26888100582, 5069.3834615064], [0.157, 5.14847227422, 451.7279727896], [0.158, 5.00063628575, 650.9429865779], [0.159, 5.37530499642, 20426.571092422], [0.218, 0.27875408082, 175.1660598002], [0.155, 0.83696849428, 1474.9344208013], [0.154, 2.62839957291, 683.1863154923], [0.171, 1.79511736017, 1123.1178284926], [0.188, 5.24747110812, 25565.3257234804], [0.168, 4.14907553818, 946.727928415], [0.203, 2.8369971553, 1489.9122743283], [0.173, 4.34546063838, 3046.5988283458], [0.19, 5.67865607835, 1060.1326897146], [0.201, 2.3852418292, 419.532827985], [0.152, 5.8908868579, 208.633228992], [0.206, 4.46933127349, 2654.6746005965], [0.156, 2.37819796438, 2758.6611466924], [0.203, 0.70565514297, 498.1983957056], [0.205, 3.05468636546, 1062.302691496], [0.174, 3.50824761708, 2004.364753465], [0.148, 4.73961194393, 1799.1905969841], [0.188, 3.62315953725, 3156.8051495652], [0.183, 2.35011338194, 25551.09862947879], [0.162, 1.58053710589, 628.5909536192], [0.162, 3.99983876824, 1482.7987273275], [0.181, 2.85489861839, 1055.1891444952], [0.151, 3.43198157222, 629.8629780064], [0.157, 3.1519582649, 1025.4416802454], [0.194, 5.13049187783, 1818.1529934009], [0.193, 1.92287052164, 1140.38330388], [0.137, 4.2233522197, 1049.8207026336], [0.167, 2.85163087563, 5746.271337896], [0.167, 5.73970282991, 5760.4984318976], [0.138, 2.23519776527, 1176.7017984094], [0.151, 4.89507270899, 532.3992780803], [0.147, 2.65931838448, 987.3086446076], [0.135, 0.1283641777, 991.7138786227], [0.166, 3.12682515439, 580.0935412737], [0.118, 5.988105763, 531.387886124], [0.135, 5.26601313643, 1065.0110044817], [0.138, 3.18511244397, 707.5653378805], [0.122, 1.34377059565, 446.3113468182], [0.12, 2.29717714347, 1059.2218714948], [0.121, 0.58145552537, 5621.8429232104], [0.103, 4.75645235023, 1226.2106027112], [0.104, 6.08481630139, 528.2546764961], [0.119, 1.06475523307, 527.9940440652], [0.104, 0.89730746841, 531.1272536931], [0.12, 5.39001411803, 1059.5419888836], [0.104, 0.44849170648, 1128.534454464], [0.117, 5.42449214711, 986.0848043302], [0.101, 5.09893554462, 530.5847369719], [0.102, 0.26948040239, 450.9772132642], [0.107, 1.58724086516, 1069.6768709277], [0.086, 2.28711702506, 2498.8916283384], [0.101, 1.88318822518, 528.7971932173], [0.086, 1.37568728263, 970.5162499722], [0.083, 0.06930748288, 530.914805372], [0.085, 3.22094000094, 1553.6481726317], [0.083, 0.62963097974, 528.4671248172], [0.083, 4.16314675511, 849.2642284889], [0.079, 3.4668810234, 1077.5411774539], [0.097, 0.87886975916, 9690.7081281172], [0.097, 4.27398311206, 9676.4810341156], [0.101, 0.29639798579, 857.1285350151], [0.083, 2.55427333923, 1059.5943785103], [0.078, 0.0646149621, 521.8266585684], [0.078, 0.76677000862, 525.5463635104], [0.096, 0.33631035749, 1090.4014188262], [0.098, 1.42815294497, 757.2171545342], [0.077, 0.85066773729, 537.5552716208], [0.084, 5.04765104413, 1160.027023853], [0.076, 3.62264327413, 782.3469364478], [0.085, 1.86831145784, 25028.521211385], [0.079, 2.9060220289, 2114.8317071153]], [[52993480757.497, 0.0, 0.0], [489741.194, 4.22066689928, 529.6909650946], [228918.538, 6.02647464016, 7.1135470008], [27655.38, 4.57265956824, 1059.3819301892], [20720.943, 5.45938936295, 522.5774180938], [12105.732, 0.16985765041, 536.8045120954], [6068.051, 4.42419502005, 103.0927742186], [5433.924, 3.98478382565, 419.4846438752], [4237.795, 5.89009351271, 14.2270940016], [2211.854, 5.26771446618, 206.1855484372], [1295.769, 5.55132765087, 3.1813937377], [1745.919, 4.92669378486, 1589.0728952838], [1163.411, 0.51450895328, 3.9321532631], [1007.216, 0.46478398551, 735.8765135318], [1173.129, 5.8564730435, 1052.2683831884], [847.678, 5.7580585045, 110.2063212194], [827.329, 4.80312015734, 213.299095438], [1003.574, 3.15040301822, 426.598190876], [1098.735, 5.30704981594, 515.463871093], [816.397, 0.58643054886, 1066.49547719], [725.447, 5.51827471473, 639.897286314], [567.845, 5.98867049451, 625.6701923124], [474.181, 4.13245269168, 412.3710968744], [412.93, 5.73652891261, 95.9792272178], [335.817, 3.73248749046, 1162.4747044078], [345.249, 4.2415956541, 632.7837393132], [234.066, 6.24302226646, 309.2783226558], [194.784, 2.21879010911, 323.5054166574], [234.34, 4.03469970332, 949.1756089698], [183.938, 6.27963588822, 543.9180590962], [198.525, 1.50458442825, 838.9692877504], [186.899, 6.08620565908, 742.9900605326], [171.38, 5.41655983845, 199.0720014364], [130.771, 0.62643377351, 728.762966531], [107.575, 4.49282760117, 956.2891559706], [115.393, 0.68019050174, 846.0828347512], [115.047, 5.28641699144, 2118.7638603784], [66.824, 5.73365126533, 21.3406410024], [69.618, 5.97263450278, 532.8723588323], [64.85, 6.08803490288, 1581.959348283], [79.686, 5.82412400273, 1045.1548361876], [57.939, 0.99453087342, 1596.1864422846], [65.635, 0.1292419143, 526.5095713569], [58.509, 0.58626971028, 1155.361157407], [56.6, 1.41198438841, 533.6231183577], [71.643, 5.34162650321, 942.062061969], [57.368, 5.96851304799, 1169.5882514086], [54.935, 5.42806383723, 10.2949407385], [52.016, 0.22981299129, 1368.660252845], [52.309, 5.72661448388, 117.3198682202], [50.418, 6.08075147811, 525.7588118315], [47.418, 3.62611843241, 1478.8665740644], [39.888, 4.161580136, 1692.1656695024], [46.678, 0.51144073175, 1265.5674786264], [32.827, 5.03596689455, 220.4126424388], [33.558, 0.09913904872, 302.164775655], [29.379, 3.35927241533, 4.665866446], [29.307, 0.75907909735, 88.865680217], [32.449, 5.37492530697, 508.3503240922], [29.483, 5.42208897099, 1272.6810256272], [21.802, 6.1505405407, 1685.0521225016], [25.195, 1.60723063387, 831.8557407496], [21.133, 5.863468242, 1258.4539316256], [19.747, 2.17205957814, 316.3918696566], [17.871, 0.82841413516, 433.7117378768], [17.703, 5.95527049039, 5.4166259714], [17.23, 2.76395560958, 853.196381752], [17.453, 0.70749901224, 1471.7530270636], [17.508, 0.49799925173, 1375.7737998458], [14.368, 0.9145983114, 18.1592472647], [14.107, 0.63031082833, 2.9207613068], [11.559, 4.30379009964, 405.2575498736], [11.728, 1.76426582357, 380.12776796], [11.054, 5.56735602213, 1574.8458012822], [10.425, 0.3135503439, 1361.5467058442], [9.804, 5.90363777277, 519.3960243561], [9.805, 0.38648727979, 1073.6090241908], [9.285, 3.2184228753, 1795.258443721], [8.864, 0.53776257958, 1788.1448967202], [8.37, 5.88484552222, 2001.4439921582], [8.148, 5.1016231141, 1485.9801210652], [7.658, 5.64890060131, 2648.454825473], [6.69, 2.4109345942, 4.192785694], [5.84, 4.22347896053, 2008.557539159], [7.256, 6.19384525651, 11.0457002639], [6.266, 1.36137786945, 1148.2476104062], [5.141, 5.23083932012, 628.8515860501], [5.14, 2.92955981951, 518.6452648307], [4.765, 0.16838181862, 629.6023455755], [4.603, 0.78529559911, 721.6494195302], [4.575, 6.24794935732, 1677.9385755008], [4.537, 4.95096707833, 635.9651330509], [4.518, 2.06523915453, 453.424893819], [4.414, 0.15381186059, 1699.2792165032], [5.593, 5.57489981207, 191.9584544356], [5.403, 1.46004886198, 330.6189636582], [4.285, 0.23949868127, 2104.5367663768], [4.223, 1.44087555881, 2125.8774073792], [4.101, 6.19274358942, 636.7158925763], [4.432, 4.35811524051, 423.4167971383], [4.132, 0.50170694173, 1056.2005364515], [4.398, 4.14280286969, 511.5317178299], [5.406, 4.40429493698, 2221.856634597], [4.467, 0.08534650684, 1062.5633239269], [3.569, 5.6654047701, 2317.8358618148], [4.007, 2.54845549248, 74.7815985673], [3.515, 0.25495124831, 1055.4497769261], [3.687, 2.93378008847, 32.2433289144], [2.883, 5.72793010505, 99.9113804809], [2.969, 5.50054720569, 107.0249274817], [2.72, 1.25222590925, 540.7366653585], [2.808, 3.30714813896, 0.7507595254], [2.768, 1.61339487804, 1063.3140834523], [2.666, 4.28662288102, 106.2741679563], [2.704, 3.03615556153, 422.6660376129], [3.29, 5.8908168215, 1802.3719907218], [2.578, 3.60390367979, 750.1036075334], [2.661, 0.35249312659, 1898.3512179396], [2.486, 5.28950877719, 1891.2376709388], [2.936, 1.0905202945, 1464.6394800628], [3.19, 4.60740643547, 416.3032501375], [2.39, 6.01779736611, 551.031606097], [2.214, 5.2445092318, 621.7380390493], [2.319, 5.8292030013, 305.3461693927], [2.089, 5.99310370434, 1994.3304451574], [2.042, 0.75008788531, 142.4496501338], [2.121, 0.01537599023, 2420.9286360334], [2.114, 6.25308371567, 647.0108333148], [2.02, 4.17560390841, 569.0478410098], [2.109, 5.18682321403, 227.5261894396], [2.283, 5.80043809222, 539.9859058331], [1.977, 3.99197009651, 24.3790223882], [1.96, 1.35288793079, 963.4027029714], [1.903, 2.78349628184, 2428.0421830342], [1.915, 4.22134509685, 2324.9494088156], [1.971, 5.88715684267, 217.2312487011], [1.917, 3.03728154374, 1382.8873468466], [2.026, 3.08606488714, 408.4389436113], [1.834, 5.61474110217, 430.5303441391], [1.838, 1.25467410218, 81.7521332162], [2.46, 4.63268678998, 1905.4647649404], [1.82, 5.9749792612, 114.1384744825], [2.043, 4.34047514845, 70.8494453042], [1.959, 4.03116026306, 92.0470739547], [1.768, 0.33097462499, 35.4247226521], [2.334, 5.8704263847, 1038.0412891868], [1.835, 4.81326127892, 124.433415221], [2.269, 1.02549350754, 618.5566453116], [1.919, 5.01297395549, 99.1606209555], [1.923, 0.28688549585, 31.019488637], [1.878, 5.69299116574, 210.1177017003], [1.679, 0.25635730278, 295.0512286542], [1.656, 5.46039280732, 2634.2277314714], [1.675, 6.15609073315, 643.8294395771], [1.953, 5.09846435548, 17.4084877393], [1.539, 2.75316078346, 415.5524906121], [1.467, 0.54812675158, 458.8415197904], [1.482, 3.76736278426, 534.3568315406], [1.446, 3.15802770791, 25.1297819136], [1.667, 0.26406950755, 835.0371344873], [1.472, 0.83054329617, 28.3111756513], [1.655, 0.88908548504, 1781.0313497194], [1.294, 5.76241191046, 440.8252848776], [1.348, 2.49823510924, 984.6003316219], [1.352, 5.10869562455, 149.5631971346], [1.344, 0.01942249067, 2214.7430875962], [1.188, 2.24279457878, 31.492569389], [1.166, 0.80686346228, 739.8086667949], [1.322, 4.25691184168, 2538.2485042536], [1.094, 6.02985819406, 2737.32050569], [1.112, 4.3820436067, 561.934294009], [1.346, 3.2057584887, 525.0250986486], [1.056, 5.76507115032, 2310.722314814], [1.159, 0.4618956497, 67.6680515665], [1.027, 0.20709586018, 7.8643065262], [1.143, 5.56626418636, 46.470422916], [1.012, 0.54293005597, 532.1386456494], [0.978, 5.13939194101, 2207.6295405954], [0.993, 2.03698185233, 319.5732633943], [1.035, 2.90231353535, 611.4430983108], [1.021, 4.75651217048, 527.2432845398], [1.308, 1.78809336431, 824.7421937488], [0.964, 2.82269601958, 2111.6503133776], [0.896, 2.54505998806, 2744.4340526908], [0.89, 5.41036782817, 28.4541880032], [0.906, 0.76565238554, 1439.5096981492], [0.985, 0.8868762377, 5760.4984318976], [0.983, 1.42102343372, 5746.271337896], [0.892, 5.87250060663, 203.0041546995], [0.942, 2.31049430734, 9690.7081281172], [0.941, 2.84331157527, 9676.4810341156], [0.867, 0.81020362547, 524.2743391232], [0.829, 2.35178495412, 312.4597163935], [0.912, 2.80494184378, 6.2197751235], [0.809, 1.05148218513, 529.6427809848], [0.779, 4.80009242059, 945.2434557067], [0.878, 5.76532521399, 1.6445314027], [0.953, 4.30945738629, 209.3669421749], [0.772, 5.25607113566, 2950.619601128], [0.745, 0.03810558502, 535.107591066], [0.744, 0.58381523987, 25.2727942655], [0.734, 0.208004851, 1049.0869894507], [0.747, 2.71772840871, 38.1330356378], [0.728, 5.97210358938, 945.9942152321], [0.769, 4.51394016967, 952.3570027075], [0.71, 0.38016353553, 69.1525242748], [0.76, 3.07033779824, 39.3568759152], [0.802, 1.14191463412, 532.6117264014], [0.704, 1.2544730812, 547.8502123593], [0.721, 0.73855379162, 2228.9701815978], [0.794, 4.25051539085, 2641.3412784722], [0.795, 3.2058836382, 604.4725636619], [0.818, 1.05229815343, 909.8187330546], [0.724, 5.68281830264, 953.1077622329], [0.836, 0.60410469174, 2097.423219376], [0.669, 5.75757140051, 2015.6710861598], [0.682, 1.19994890339, 387.2413149608], [0.64, 3.91546675664, 528.7277572481], [0.809, 4.24929331276, 529.7391492044], [0.819, 4.91540072376, 2751.5475996916], [0.692, 2.51162384766, 916.9322800554], [0.784, 4.23651511312, 195.1398481733], [0.762, 1.12201139619, 732.6951197941], [0.617, 5.80920925081, 739.0579072695], [0.727, 4.24401822698, 760.25553592], [0.591, 3.26075006572, 202.2533951741], [0.552, 5.83533550039, 526.7702037878], [0.64, 1.38530872949, 530.6541729411], [0.577, 6.09100925678, 2531.1349572528], [0.62, 3.01917904435, 902.7051860538], [0.722, 5.18171159557, 1.4844727083], [0.54, 3.7880923082, 2957.7331481288], [0.523, 3.63882376, 437.6438911399], [0.527, 5.80796427555, 3053.7123753466], [0.488, 4.99103190309, 483.2205421786], [0.557, 4.11381202161, 2854.6403739102], [0.492, 0.76371083106, 1603.2999892854], [0.487, 5.55383951779, 2627.1141844706], [0.487, 5.86510858429, 724.8308132679], [0.453, 0.61375011101, 1159.2933106701], [0.45, 2.28121042355, 3060.8259223474], [0.515, 4.7812605928, 447.7958195265], [0.449, 4.70231576312, 934.9485149682], [0.45, 1.91049508739, 597.3590166611], [0.438, 6.01178917646, 3178.1457905676], [0.494, 0.53844942275, 1354.4331588434], [0.501, 5.51752195462, 2435.155730035], [0.432, 3.64903264921, 313.2104759189], [0.435, 3.02449828967, 533.8837507886], [0.426, 5.07945534339, 2524.021410252], [0.491, 3.592863642, 230.5645708254], [0.547, 0.34432090949, 1251.3403846248], [0.503, 1.57454509207, 454.9093665273], [0.486, 4.39351469958, 462.0229135281], [0.524, 2.03003740296, 1279.794572628], [0.388, 5.58318013074, 731.9443602687], [0.449, 1.11025492739, 56.6223513026], [0.398, 5.19943284273, 3267.0114707846], [0.416, 1.70821917336, 245.5424243524], [0.379, 1.80234948769, 2655.5683724738], [0.355, 1.65214516751, 78.7137518304], [0.404, 1.72647262603, 1141.1340634054], [0.335, 6.01254286794, 960.2213092337], [0.331, 1.74086938716, 490.3340891794], [0.401, 0.30034336462, 2332.0629558164], [0.336, 2.64385574909, 1021.2488945514], [0.389, 0.31259289221, 2413.8150890326], [0.314, 5.73833529708, 1158.5425511447], [0.313, 4.74363791106, 938.1299087059], [0.333, 0.80112437148, 1585.1407420207], [0.323, 3.5265624528, 3274.1250177854], [0.395, 1.73181407631, 1593.0050485469], [0.302, 4.64184749164, 1261.6353253633], [0.325, 0.54991590409, 43.2890291783], [0.293, 0.97977818746, 1585.8915015461], [0.341, 2.80833606944, 1514.2912967165], [0.304, 6.12522825214, 1262.3860848887], [0.286, 2.89800423081, 530.2122299564], [0.387, 0.46648572639, 1592.2542890215], [0.285, 4.56394598052, 1268.7488723641], [0.31, 4.69102289591, 76.2660712756], [0.278, 5.49867187248, 280.9671470045], [0.358, 5.45926487831, 113.3877149571], [0.283, 1.0923050635, 1061.829610744], [0.326, 0.60265259639, 827.9235874865], [0.284, 5.36580034539, 1165.6560981455], [0.281, 5.5463546105, 3370.1042450032], [0.269, 3.92616563946, 42.5382696529], [0.275, 2.58465453365, 373.0142209592], [0.357, 1.39391983207, 1493.093668066], [0.258, 5.9667069414, 1269.4996318895], [0.259, 2.56026216784, 9146.790069021], [0.281, 2.74823090198, 4694.0029547076], [0.281, 3.0132465594, 320.3240229197], [0.272, 4.1850495892, 8624.2126509272], [0.245, 1.24462798353, 252.6559713532], [0.244, 2.0289276469, 3377.217792004], [0.324, 1.84851618413, 1289.9465010146], [0.221, 6.22167997496, 3281.2385647862], [0.238, 3.93371505401, 3171.0322435668], [0.226, 5.94296271326, 224.3447957019], [0.213, 3.6826423475, 1048.3362299253], [0.216, 5.82941334164, 1567.7322542814], [0.295, 4.70194747095, 3067.9394693482], [0.206, 4.98184230959, 1357.6145525811], [0.202, 1.32439444045, 4326.3934009738], [0.227, 0.78540105705, 59.8037450403], [0.237, 5.56926897693, 2943.5060541272], [0.207, 0.07907015398, 5223.6939198022], [0.199, 3.30501818656, 4120.2078525366], [0.194, 5.95526916809, 84.9335269539], [0.266, 1.58032565718, 983.1158589136], [0.198, 4.31078641704, 4017.115078318], [0.198, 0.30166351366, 1166.4068576709], [0.188, 0.90738705875, 135.336103133], [0.186, 0.69289672485, 92.7978334801], [0.182, 1.18931462257, 1512.8068240082], [0.191, 1.04146023518, 1884.124123938], [0.174, 6.13734594396, 3597.6304344428], [0.189, 0.35191512844, 1372.5924061081], [0.172, 4.35250972697, 1578.0271950199], [0.173, 2.30241719278, 1176.7017984094], [0.22, 1.06991056825, 2200.5159935946], [0.186, 4.90511103807, 3583.4033404412], [0.189, 0.24160744024, 1670.8250285], [0.206, 0.01485146863, 2730.2069586892], [0.174, 1.83997277029, 746.9222137957], [0.225, 3.1310809966, 630.3360587584], [0.206, 5.22730929781, 3995.7744373156], [0.169, 2.57956682688, 9161.0171630226], [0.165, 1.51795928301, 4010.0015313172], [0.181, 2.05055200822, 842.9014410135], [0.181, 5.96554625357, 1578.7779545453], [0.166, 1.551148631, 1070.4276304531], [0.157, 5.8783995888, 3914.0223040994], [0.16, 0.43729819176, 2545.3620512544], [0.168, 5.73975661792, 2847.5268269094], [0.157, 2.25764581068, 850.0149880143], [0.187, 0.64918748618, 842.1506814881], [0.18, 1.88055488803, 685.4739373527], [0.153, 4.15259684562, 4333.5069479746], [0.154, 3.65536637158, 77734.01845962799], [0.151, 3.17795437121, 3590.516887442], [0.155, 3.8762354799, 327.4375699205], [0.171, 3.33647878498, 1912.5783119412], [0.188, 4.53005359421, 1041.2226829245], [0.134, 4.09921613445, 530.44172462], [0.123, 4.79543460218, 1098.7388061044], [0.161, 2.02006564218, 860.3099287528], [0.143, 2.40197278329, 529.1697002328], [0.115, 1.55831212007, 9153.9036160218], [0.106, 5.94313244357, 1057.8974574809], [0.119, 5.10578428676, 1056.9342496344], [0.1, 5.74974781049, 501.2367770914], [0.094, 1.40134175492, 1059.3337460794], [0.098, 3.79115318281, 497.4476361802], [0.09, 4.09610113044, 1064.0477966352], [0.102, 1.10442899544, 1969.2006632438], [0.087, 0.58218477838, 1173.5204046717], [0.109, 3.83745968299, 525.4981794006], [0.094, 4.59915291355, 1059.430114299], [0.118, 6.11701561559, 1069.6768709277], [0.107, 5.40509332689, 679.2541622292], [0.089, 5.90037690244, 757.2171545342], [0.078, 6.06217863109, 970.5162499722], [0.08, 5.45470236239, 3163.918696566], [0.072, 5.65789862232, 1151.4290041439], [0.08, 0.045397201, 1080.7225711916], [0.075, 4.26526686574, 1058.4187223427]], [[47233.598, 4.32148323554, 7.1135470008], [30629.053, 2.93021440216, 529.6909650946], [38965.55, 0.0, 0.0], [3189.317, 1.05504615595, 522.5774180938], [2723.358, 3.41411526638, 1059.3819301892], [2729.292, 4.84545481351, 536.8045120954], [1721.069, 4.18734385158, 14.2270940016], [383.258, 5.76790714387, 419.4846438752], [367.498, 6.05509120409, 103.0927742186], [377.524, 0.76048964872, 515.463871093], [337.386, 3.78644384244, 3.1813937377], [308.2, 0.69356654052, 206.1855484372], [218.408, 3.81389191353, 1589.0728952838], [198.883, 5.33996443444, 1066.49547719], [197.445, 2.48356402053, 3.9321532631], [146.23, 3.81373196838, 639.897286314], [155.862, 1.40642426467, 1052.2683831884], [129.57, 5.83738872525, 412.3710968744], [141.932, 1.63435169016, 426.598190876], [117.327, 1.41435462588, 625.6701923124], [96.733, 4.03383427887, 110.2063212194], [90.823, 1.10630629042, 95.9792272178], [78.769, 4.63726131329, 543.9180590962], [72.392, 2.21716670026, 735.8765135318], [87.292, 2.52235174825, 632.7837393132], [56.91, 3.12292059854, 213.299095438], [48.622, 1.67283791618, 309.2783226558], [58.475, 0.83216317444, 199.0720014364], [40.15, 4.0248544474, 21.3406410024], [39.784, 0.62416945827, 323.5054166574], [35.718, 2.32581247002, 728.762966531], [25.62, 2.51240623862, 1162.4747044078], [29.255, 3.60838327799, 10.2949407385], [23.591, 3.00532139306, 956.2891559706], [27.814, 3.23992013743, 838.9692877504], [25.993, 4.5011829829, 742.9900605326], [25.194, 1.21868110687, 1045.1548361876], [19.458, 4.29028644674, 532.8723588323], [17.66, 0.8095394156, 508.3503240922], [15.355, 5.81037986941, 1596.1864422846], [17.058, 4.20001977723, 2118.7638603784], [17.04, 1.8340214664, 526.5095713569], [14.661, 3.99989622586, 117.3198682202], [13.639, 1.80336677963, 302.164775655], [13.23, 2.51856643603, 88.865680217], [12.756, 4.36856232414, 1169.5882514086], [15.292, 0.68174165476, 942.062061969], [10.986, 4.43586634639, 525.7588118315], [13.92, 5.95169568482, 316.3918696566], [9.437, 2.17684563456, 1155.361157407], [8.812, 3.29452783338, 220.4126424388], [7.823, 5.75672228354, 846.0828347512], [7.549, 2.70955516779, 533.6231183577], [9.681, 1.71563161051, 1581.959348283], [8.69, 3.31924493607, 831.8557407496], [6.285, 0.49939863541, 949.1756089698], [6.685, 2.17560093281, 1265.5674786264], [5.381, 6.00510875948, 405.2575498736], [4.676, 1.40846192799, 1258.4539316256], [4.421, 3.02360159274, 1692.1656695024], [4.403, 5.4773726616, 433.7117378768], [4.286, 5.07139951645, 1073.6090241908], [4.201, 5.28560721767, 18.1592472647], [3.933, 1.26665387164, 853.196381752], [5.351, 3.65320121089, 1272.6810256272], [4.392, 2.27325303667, 1368.660252845], [3.482, 1.53983001273, 519.3960243561], [2.745, 2.09685315627, 1478.8665740644], [2.737, 1.06017230524, 1574.8458012822], [2.897, 2.05128453665, 1361.5467058442], [3.075, 0.99085727534, 191.9584544356], [2.462, 2.37173605635, 1471.7530270636], [2.203, 2.47960567714, 721.6494195302], [2.096, 3.71482580504, 1485.9801210652], [1.984, 1.88475229557, 1685.0521225016], [2.274, 3.03360234351, 1148.2476104062], [2.041, 6.17114556019, 330.6189636582], [1.451, 4.72055072637, 32.2433289144], [1.454, 5.14703918585, 1375.7737998458], [1.447, 3.18833439444, 635.9651330509], [1.403, 4.26712075104, 551.031606097], [1.42, 1.99288040133, 629.6023455755], [1.269, 0.03300387779, 2125.8774073792], [1.276, 2.26356919237, 1788.1448967202], [1.189, 1.70223550488, 1677.9385755008], [1.182, 2.18142313946, 1795.258443721], [1.366, 1.27629917215, 1038.0412891868], [1.306, 4.76302079847, 1062.5633239269], [1.109, 2.97787130235, 81.7521332162], [1.027, 1.99236027398, 295.0512286542], [1.349, 4.01621534182, 539.9859058331], [1.025, 3.75336759986, 28.4541880032], [0.977, 3.01355125761, 124.433415221], [1.29, 4.62594234857, 2648.454825473], [1.065, 5.06153058155, 1699.2792165032], [0.965, 1.17716405513, 99.9113804809], [1.021, 1.9071210266, 750.1036075334], [0.923, 3.53450109212, 227.5261894396], [1.059, 0.13532061468, 416.3032501375], [0.836, 2.07492422755, 1056.2005364515], [0.889, 1.75177808106, 1898.3512179396], [0.772, 2.89217715561, 2008.557539159], [1.014, 2.80847772922, 1464.6394800628], [0.82, 1.99735697577, 2111.6503133776], [0.787, 4.91912237671, 1055.4497769261], [0.743, 2.6520965069, 106.2741679563], [0.705, 0.08006443278, 963.4027029714], [0.724, 3.29664246938, 628.8515860501], [0.791, 1.6465520211, 2001.4439921582], [0.822, 2.74067639972, 618.5566453116], [0.761, 1.26393500358, 1382.8873468466], [0.65, 1.19590511216, 422.6660376129], [0.677, 1.88476058357, 2104.5367663768], [0.681, 5.47481665606, 5760.4984318976], [0.681, 3.11621209674, 5746.271337896], [0.644, 4.68385640894, 611.4430983108], [0.752, 3.03497138894, 2221.856634597], [0.641, 1.86274530783, 636.7158925763], [0.614, 3.0767735667, 380.12776796], [0.635, 4.53916684689, 9676.4810341156], [0.635, 0.61458805483, 9690.7081281172], [0.822, 6.25170365084, 423.4167971383], [0.762, 4.32362906505, 1802.3719907218], [0.582, 0.84137872868, 1891.2376709388], [0.558, 3.96171840325, 440.8252848776], [0.624, 2.83657771014, 1905.4647649404], [0.711, 3.43538032357, 824.7421937488], [0.517, 1.10660016329, 107.0249274817], [0.535, 1.55761050176, 1994.3304451574], [0.501, 4.44389802599, 647.0108333148], [0.414, 5.37130370397, 2228.9701815978], [0.533, 2.54756313371, 1781.0313497194], [0.393, 1.26351262287, 210.1177017003], [0.433, 2.90103969634, 1063.3140834523], [0.384, 1.36194621083, 203.0041546995], [0.44, 1.46934545869, 2214.7430875962], [0.424, 4.98974282486, 3178.1457905676], [0.338, 2.72210106345, 2324.9494088156], [0.332, 0.37505564414, 2655.5683724738], [0.318, 6.11024720065, 934.9485149682], [0.405, 3.51005860013, 2751.5475996916], [0.388, 5.00609647265, 2015.6710861598], [0.424, 4.29668654117, 5753.3848848968], [0.328, 2.35571531981, 1251.3403846248], [0.316, 0.16949503062, 1279.794572628], [0.345, 2.89328206121, 2957.7331481288], [0.303, 1.63964826684, 2428.0421830342], [0.328, 3.36132375845, 1141.1340634054], [0.294, 2.48947693371, 2641.3412784722], [0.35, 1.50537240918, 2317.8358618148], [0.287, 1.69638214958, 2420.9286360334], [0.272, 0.27466529753, 319.5732633943], [0.303, 2.43034117616, 70.8494453042], [0.251, 0.43544711316, 3259.8979237838], [0.224, 4.49752269293, 5223.6939198022], [0.272, 2.98590404673, 1457.525933062], [0.228, 5.47896916415, 1603.2999892854], [0.288, 2.30146999217, 2854.6403739102], [0.207, 5.94297320087, 9153.9036160218], [0.243, 1.58604251447, 2744.4340526908], [0.228, 1.28182702946, 2310.722314814], [0.224, 1.28623905132, 3060.8259223474], [0.222, 0.63265553397, 3163.918696566], [0.242, 2.52382905368, 3274.1250177854], [0.188, 6.00513627145, 92.0470739547], [0.239, 1.93897157244, 2413.8150890326], [0.214, 1.14529237568, 2531.1349572528], [0.2, 3.42280996072, 99.1606209555], [0.179, 0.53892926207, 2207.6295405954], [0.177, 5.56545270243, 2332.0629558164], [0.172, 1.38604067808, 945.9942152321], [0.203, 0.41899069603, 2840.4132799086], [0.231, 2.2635333046, 2097.423219376], [0.228, 3.82701076821, 113.3877149571], [0.165, 4.08776703733, 6283.0758499914], [0.202, 3.30429764992, 3067.9394693482], [0.224, 3.69285208525, 2435.155730035], [0.214, 2.55756944911, 2538.2485042536], [0.203, 2.24205059922, 67.6680515665], [0.152, 5.48122906518, 10213.285546211], [0.191, 2.68685722531, 1773.9178027186], [0.189, 2.95184620359, 732.6951197941], [0.149, 1.98737542735, 1049.0869894507], [0.163, 1.24084734609, 3053.7123753466], [0.171, 2.34210749987, 1354.4331588434], [0.112, 5.7740728579, 547.8502123593], [0.124, 0.14001204498, 860.3099287528], [0.086, 1.26924601636, 511.5317178299], [0.114, 5.1598283807, 1592.2542890215], [0.091, 1.48896790758, 1567.7322542814], [0.086, 4.34444949905, 1069.6768709277]], [[6501.665, 2.59862880482, 7.1135470008], [1356.524, 1.34635886411, 529.6909650946], [470.716, 2.47503977883, 14.2270940016], [416.96, 3.24451243214, 536.8045120954], [352.851, 2.97360159003, 522.5774180938], [154.88, 2.07565585817, 1059.3819301892], [86.771, 2.51431584316, 515.463871093], [33.538, 3.82633794497, 1066.49547719], [44.378, 0.0, 0.0], [22.644, 2.98231326774, 543.9180590962], [23.737, 1.27667172313, 412.3710968744], [28.457, 2.44754756058, 206.1855484372], [19.798, 2.10099934005, 639.897286314], [19.74, 1.40255938973, 419.4846438752], [18.768, 1.593684035, 103.0927742186], [17.033, 2.30214681202, 21.3406410024], [16.774, 2.59821460673, 1589.0728952838], [16.214, 3.14521117299, 625.6701923124], [16.055, 3.36030126297, 1052.2683831884], [13.392, 2.75973892202, 95.9792272178], [13.234, 2.5386224434, 199.0720014364], [12.611, 6.265781104, 426.598190876], [8.637, 2.26563256289, 110.2063212194], [6.725, 3.42566433316, 309.2783226558], [8.701, 1.76334960737, 10.2949407385], [6.527, 4.03869562907, 728.762966531], [5.368, 5.25196153539, 323.5054166574], [5.675, 2.52096417685, 508.3503240922], [5.399, 2.91184687105, 1045.1548361876], [3.996, 4.30290261177, 88.865680217], [3.857, 3.52381361552, 302.164775655], [3.774, 4.09125315146, 735.8765135318], [3.269, 1.43175991274, 956.2891559706], [2.783, 4.3581750767, 1596.1864422846], [2.661, 1.25276590759, 213.299095438], [2.553, 2.23785673285, 117.3198682202], [2.371, 2.89662409244, 742.9900605326], [2.656, 5.01505839848, 838.9692877504], [1.948, 2.77248294666, 1169.5882514086], [2.279, 2.3558187123, 942.062061969], [1.474, 1.61011468581, 220.4126424388], [1.457, 3.09381959396, 2118.7638603784], [1.937, 5.01388256693, 831.8557407496], [1.585, 1.40097680805, 405.2575498736], [1.257, 3.97811260358, 1155.361157407], [1.227, 3.45959919972, 1073.6090241908], [0.986, 3.39209446167, 532.8723588323], [0.942, 2.70200385825, 191.9584544356], [0.828, 1.48348768286, 632.7837393132], [0.797, 1.1070668885, 1162.4747044078], [0.822, 3.30295824153, 1258.4539316256], [0.71, 5.8979877198, 853.196381752], [0.766, 3.66351539483, 1581.959348283], [0.722, 3.74673245797, 433.7117378768], [0.663, 2.93063953915, 1574.8458012822], [0.658, 3.52797311863, 525.7588118315], [0.609, 4.14881313523, 721.6494195302], [0.598, 4.69454609357, 81.7521332162], [0.668, 1.96442971289, 1272.6810256272], [0.515, 1.57251270902, 949.1756089698], [0.658, 2.02329201466, 526.5095713569], [0.517, 4.35827478516, 1368.660252845], [0.51, 4.95846155301, 1148.2476104062], [0.507, 4.31396370095, 330.6189636582], [0.567, 2.27813343743, 551.031606097], [0.48, 3.86758235988, 1361.5467058442], [0.383, 0.24287136454, 611.4430983108], [0.434, 2.9546175554, 1038.0412891868], [0.377, 1.42957648215, 124.433415221], [0.391, 4.07770324592, 1471.7530270636], [0.385, 4.702951798, 519.3960243561], [0.428, 2.22472522305, 539.9859058331], [0.343, 4.83463725823, 2125.8774073792], [0.394, 4.52891996323, 1464.6394800628], [0.305, 2.02797683648, 1485.9801210652], [0.283, 0.97461612169, 1905.4647649404], [0.276, 3.83552772064, 1062.5633239269], [0.351, 2.06334334462, 533.6231183577], [0.304, 3.93228052293, 1685.0521225016], [0.322, 3.54763044791, 846.0828347512], [0.345, 4.18332148409, 1788.1448967202], [0.253, 3.12703531516, 1994.3304451574], [0.257, 1.05361498985, 1478.8665740644], [0.232, 1.69999081817, 1692.1656695024], [0.225, 2.5162414978, 1891.2376709388], [0.217, 4.58512911216, 963.4027029714], [0.277, 3.63353707701, 1677.9385755008], [0.242, 2.90163762388, 2310.722314814], [0.211, 3.96419403991, 295.0512286542], [0.199, 5.1704650075, 618.5566453116], [0.256, 4.19052619061, 1781.0313497194], [0.192, 0.81556540966, 2221.856634597], [0.187, 3.49895198981, 2648.454825473], [0.208, 4.11838429822, 2097.423219376], [0.183, 3.30680692414, 1699.2792165032], [0.231, 2.54516792766, 1375.7737998458], [0.189, 5.74277274755, 2627.1141844706], [0.214, 5.48031974537, 1354.4331588434], [0.22, 3.8747198941, 2104.5367663768], [0.171, 6.10827209399, 1382.8873468466], [0.184, 5.98415847544, 750.1036075334], [0.171, 5.25744961028, 824.7421937488], [0.151, 4.30799091626, 2001.4439921582], [0.14, 4.2708946607, 1265.5674786264], [0.097, 4.67188056608, 647.0108333148], [0.088, 2.43775210355, 440.8252848776], [0.075, 3.93105183253, 1055.4497769261], [0.079, 1.8853315322, 934.9485149682], [0.077, 3.80503143236, 1603.2999892854]], [[669.483, 0.8528242109, 7.1135470008], [99.961, 0.74258947751, 14.2270940016], [114.019, 3.14159265359, 0.0], [50.024, 1.65346208248, 536.8045120954], [43.585, 5.82026386621, 529.6909650946], [31.813, 4.8582998665, 522.5774180938], [14.742, 4.29061635784, 515.463871093], [8.899, 0.71478520741, 1059.3819301892], [4.957, 1.29502259434, 543.9180590962], [4.484, 2.31715516627, 1066.49547719], [4.251, 0.48326797501, 21.3406410024], [3.1, 3.00245542678, 412.3710968744], [2.055, 0.39858940218, 639.897286314], [1.762, 4.90536207307, 625.6701923124], [1.902, 4.25925620271, 199.0720014364], [1.695, 4.26147580803, 206.1855484372], [1.375, 5.25546955667, 1052.2683831884], [1.203, 4.71614633845, 95.9792272178], [1.086, 1.28604571172, 1589.0728952838], [0.982, 4.77990073662, 1045.1548361876], [0.935, 6.05847062188, 88.865680217], [0.916, 5.77537499431, 728.762966531], [0.89, 4.55299189579, 426.598190876], [0.784, 3.4016156795, 419.4846438752], [0.768, 3.54672049322, 103.0927742186], [0.67, 0.522233077, 110.2063212194], [0.415, 5.22809480633, 302.164775655], [0.393, 6.24184621807, 956.2891559706], [0.381, 5.2546696604, 309.2783226558], [0.421, 0.59561318533, 117.3198682202], [0.346, 4.78348312106, 508.3503240922], [0.319, 3.47979828725, 323.5054166574], [0.331, 2.95893485883, 1596.1864422846], [0.295, 4.32713459459, 942.062061969], [0.319, 0.47990052824, 831.8557407496], [0.251, 1.79898001222, 1073.6090241908], [0.212, 0.43917684084, 220.4126424388], [0.188, 1.12654974776, 1169.5882514086], [0.188, 2.16135407548, 1361.5467058442], [0.18, 3.43266428069, 1148.2476104062], [0.164, 1.92864127211, 2118.7638603784], [0.157, 3.02963907392, 1272.6810256272], [0.093, 5.60436000012, 1581.959348283], [0.085, 5.023172562, 1155.361157407], [0.075, 3.13198879608, 632.7837393132]], [[49.577, 5.25658966184, 7.1135470008], [15.761, 5.25126837478, 14.2270940016], [4.343, 0.01461869263, 536.8045120954], [1.526, 1.09739911439, 522.5774180938], [0.728, 5.85949047619, 543.9180590962], [0.694, 0.87382487754, 515.463871093], [0.845, 3.14159265359, 0.0], [0.456, 0.81521692852, 1066.49547719], [0.293, 5.62909357048, 1059.3819301892], [0.09, 0.2117811971, 529.6909650946]]]

This table contains Jupiter’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric longitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 426-430.

pymeeus.Jupiter.VSOP87_R = [[[520887429.471, 0.0, 0.0], [25209327.02, 3.49108640015, 529.6909650946], [610599.902, 3.84115365602, 1059.3819301892], [282029.465, 2.57419879933, 632.7837393132], [187647.391, 2.07590380082, 522.5774180938], [86792.941, 0.71001090609, 419.4846438752], [72062.869, 0.21465694745, 536.8045120954], [65517.227, 5.97995850843, 316.3918696566], [29134.62, 1.6775924371, 103.0927742186], [30135.275, 2.16132058449, 949.1756089698], [23453.209, 3.54023147303, 735.8765135318], [22283.71, 4.19362773546, 1589.0728952838], [23947.34, 0.27457854894, 7.1135470008], [13032.6, 2.96043055741, 1162.4747044078], [9703.346, 1.90669572402, 206.1855484372], [12749.004, 2.71550102862, 1052.2683831884], [9161.431, 4.41352618935, 213.299095438], [7894.539, 2.47907551404, 426.598190876], [7057.978, 2.18184753111, 1265.5674786264], [6137.755, 6.26417542514, 846.0828347512], [5477.093, 5.65729325169, 639.897286314], [3502.519, 0.56531297394, 1066.49547719], [4136.89, 2.72219979684, 625.6701923124], [4170.012, 2.01605033912, 515.463871093], [2499.966, 4.55182055941, 838.9692877504], [2616.955, 2.00993967129, 1581.959348283], [1911.876, 0.85621927419, 412.3710968744], [2127.644, 6.1275146175, 742.9900605326], [1610.549, 3.08867789275, 1368.660252845], [1479.484, 2.68026191372, 1478.8665740644], [1230.708, 1.89042979701, 323.5054166574], [1216.81, 1.80171561024, 110.2063212194], [961.072, 4.54876989805, 2118.7638603784], [885.708, 4.14785948471, 533.6231183577], [776.7, 3.6769695469, 728.762966531], [998.579, 2.8720894011, 309.2783226558], [1014.959, 1.38673237666, 454.9093665273], [727.162, 3.98824686402, 1155.361157407], [655.289, 2.79065604219, 1685.0521225016], [821.465, 1.59342534396, 1898.3512179396], [620.798, 4.82284338962, 956.2891559706], [653.981, 3.38150775269, 1692.1656695024], [812.036, 5.94091899141, 909.8187330546], [562.12, 0.08095987241, 543.9180590962], [542.221, 0.28360266386, 525.7588118315], [457.859, 0.1272269451, 1375.7737998458], [614.784, 2.27624915604, 942.062061969], [435.805, 2.60272129748, 95.9792272178], [496.066, 5.53005947761, 380.12776796], [469.965, 2.81896276101, 1795.258443721], [445.003, 0.14623567024, 14.2270940016], [290.869, 3.89339143564, 1471.7530270636], [276.627, 2.52238450687, 2001.4439921582], [275.084, 2.98863518924, 526.5095713569], [293.875, 2.04938438861, 199.0720014364], [290.985, 6.03131226226, 1169.5882514086], [338.342, 2.79873192583, 1045.1548361876], [257.482, 6.13395478303, 532.8723588323], [319.013, 1.34803130803, 2214.7430875962], [309.352, 5.36855804945, 1272.6810256272], [345.804, 1.56404293688, 491.5579294568], [303.364, 1.15407454372, 5753.3848848968], [192.325, 0.91996333387, 1596.1864422846], [215.398, 2.63572815848, 2111.6503133776], [200.738, 2.37259566683, 1258.4539316256], [239.036, 3.57397189838, 835.0371344873], [197.073, 5.92859096863, 453.424893819], [139.44, 3.63960322318, 1788.1448967202], [191.373, 6.2825131187, 983.1158589136], [176.551, 2.57669991654, 9683.5945811164], [123.567, 2.26158186345, 2317.8358618148], [128.176, 4.6658590767, 831.8557407496], [112.43, 0.85604150812, 433.7117378768], [128.817, 1.10567106595, 2531.1349572528], [99.39, 4.50312054049, 518.6452648307], [93.87, 2.7255387999, 853.196381752], [106.481, 5.8146222229, 220.4126424388], [120.188, 2.95156363556, 3.9321532631], [104.002, 2.22221906187, 74.7815985673], [81.655, 3.23481337678, 1361.5467058442], [112.513, 4.86216964016, 528.2064923863], [79.539, 0.8854224683, 430.5303441391], [85.801, 2.11458386763, 1574.8458012822], [85.685, 2.33823884827, 2428.0421830342], [68.311, 3.35727048905, 2104.5367663768], [69.57, 3.04164697156, 302.164775655], [69.775, 3.22402404312, 305.3461693927], [69.57, 0.20494979941, 532.1386456494], [56.991, 2.00204191909, 2634.2277314714], [77.062, 2.09816000231, 508.3503240922], [56.716, 3.91743976711, 2221.856634597], [58.325, 5.72360355252, 628.8515860501], [52.485, 4.02485010492, 527.2432845398], [63.645, 1.09973563964, 1364.7280995819], [53.607, 0.87425992614, 2847.5268269094], [59.598, 0.95822471775, 494.2662424425], [57.96, 3.45779497978, 2008.557539159], [41.512, 3.51955526735, 529.7391492044], [44.666, 1.62313786651, 984.6003316219], [44.883, 4.90091959557, 2648.454825473], [53.206, 1.19800364308, 760.25553592], [44.393, 4.42623747662, 1063.3140834523], [37.566, 2.93021095213, 1677.9385755008], [41.516, 0.32174409278, 529.6427809848], [42.855, 0.03093594081, 1439.5096981492], [45.963, 2.54342106514, 636.7158925763], [40.181, 4.39381642864, 1148.2476104062], [38.77, 4.31675565025, 149.5631971346], [40.348, 2.10140891053, 2744.4340526908], [48.851, 5.60297777544, 2810.9214616052], [37.085, 5.07828164301, 1905.4647649404], [43.875, 1.24536971083, 621.7380390493], [34.005, 3.09360167248, 2420.9286360334], [36.782, 0.84232174637, 530.6541729411], [31.139, 5.35811251334, 1485.9801210652], [39.295, 4.70800489067, 569.0478410098], [39.7, 2.46163878814, 355.7487455718], [31.527, 6.19284070863, 3.1813937377], [28.399, 2.48456666067, 519.3960243561], [32.432, 2.73281750275, 604.4725636619], [27.119, 3.92341697086, 2324.9494088156], [26.753, 1.74975198417, 2950.619601128], [28.986, 1.83535862643, 1891.2376709388], [26.493, 0.60380196895, 1055.4497769261], [33.525, 0.76068430639, 643.8294395771], [26.568, 1.03594610835, 405.2575498736], [25.534, 3.46320665375, 458.8415197904], [24.421, 0.8818183693, 423.4167971383], [32.949, 3.18597137308, 528.7277572481], [22.456, 0.43129919683, 1073.6090241908], [21.599, 1.41820425091, 540.7366653585], [25.673, 0.5235819476, 511.5317178299], [21.115, 3.08023522766, 629.6023455755], [22.713, 0.65234613144, 3163.918696566], [19.189, 5.16589014963, 635.9651330509], [26.042, 1.33629471285, 330.6189636582], [18.263, 3.59973446951, 746.9222137957], [18.21, 2.66819439927, 1994.3304451574], [19.724, 4.13552133321, 1464.6394800628], [19.48, 1.85656428109, 3060.8259223474], [23.927, 4.99826361784, 1289.9465010146], [21.886, 5.91718683551, 1802.3719907218], [17.482, 2.82161612542, 2737.32050569], [16.608, 5.67394889755, 408.4389436113], [22.892, 5.26731352093, 672.1406152284], [18.349, 1.89869734949, 1021.2488945514], [19.123, 3.65882402977, 415.5524906121], [15.735, 3.34772676006, 1056.2005364515], [16.373, 0.18094878053, 1699.2792165032], [18.899, 3.69120638874, 88.865680217], [18.655, 1.97327300097, 38.1330356378], [15.542, 3.8220488101, 721.6494195302], [16.78, 1.90976657921, 217.2312487011], [15.313, 1.05907174619, 114.1384744825], [15.19, 1.32317039042, 117.3198682202], [15.08, 3.74469077216, 2641.3412784722], [19.836, 2.73184571324, 39.3568759152], [14.708, 1.67270454473, 529.1697002328], [14.036, 3.54305270022, 142.4496501338], [12.931, 1.48829749349, 3267.0114707846], [14.924, 1.3254608594, 490.3340891794], [14.753, 4.64530618027, 6283.0758499914], [14.672, 0.80451954754, 5223.6939198022], [12.085, 3.67072510553, 750.1036075334], [11.954, 2.97127390765, 505.3119427064], [14.65, 2.1679293025, 530.2122299564], [11.869, 1.66551754962, 2207.6295405954], [12.273, 0.20690014405, 1062.5633239269], [11.46, 1.11906683214, 561.934294009], [11.083, 3.22049096074, 535.107591066], [11.567, 5.22625628971, 524.0618908021], [11.161, 3.82945634036, 76.2660712756], [10.918, 1.27796962818, 2125.8774073792], [12.685, 3.96848605476, 2538.2485042536], [11.23, 3.23092119889, 422.6660376129], [12.645, 0.7367042858, 908.3342603463], [11.33, 5.56127247007, 531.1754378029], [9.509, 5.00507284204, 597.3590166611], [10.291, 3.84159025239, 1781.0313497194], [10.762, 4.91380719453, 525.0250986486], [11.786, 5.11863653538, 685.4739373527], [11.98, 1.72470898635, 911.3032057629], [8.937, 2.40338241992, 2310.722314814], [9.253, 2.57670338148, 3053.7123753466], [9.488, 2.95089828501, 1382.8873468466], [9.889, 0.43758517388, 3480.3105662226], [8.781, 3.66562388594, 739.8086667949], [8.664, 2.70398612383, 526.7702037878], [9.505, 1.61249870019, 3377.217792004], [11.54, 1.59520481029, 1474.6737883704], [9.533, 0.35468711552, 1512.8068240082], [9.98, 4.80984684596, 558.0021407459], [9.014, 1.21458362718, 416.3032501375], [7.969, 0.08480602718, 528.9402055692], [8.668, 5.29060005706, 945.2434557067], [7.851, 1.46751861875, 963.4027029714], [8.611, 1.13232641062, 532.6117264014], [7.838, 6.26933498027, 647.0108333148], [7.581, 2.90608705954, 533.8837507886], [8.583, 6.06634530166, 10213.285546211], [10.198, 2.48743123636, 1819.6374661092], [8.536, 2.2270070179, 9153.9036160218], [9.759, 6.15593336218, 593.426863398], [7.968, 3.75535355212, 530.44172462], [7.142, 3.58836120327, 2957.7331481288], [7.122, 0.11970048938, 224.3447957019], [8.731, 0.7530291397, 960.2213092337], [7.063, 2.1679303769, 724.8308132679], [7.263, 2.29499675875, 520.129737539], [6.418, 1.25058991868, 3583.4033404412], [8.27, 1.24806288317, 495.7507151508], [6.483, 4.7456777264, 202.2533951741], [7.197, 3.84169279666, 618.5566453116], [8.146, 0.73147060302, 230.5645708254], [6.165, 5.50124418381, 11.0457002639], [7.946, 2.07754951174, 953.1077622329], [7.675, 0.92400307662, 525.4981794006], [6.21, 1.45641362115, 483.2205421786], [7.359, 0.31355650764, 378.6432952517], [6.707, 2.92071167098, 1038.0412891868], [7.143, 0.18218134889, 731.9443602687], [7.309, 6.27084533477, 21.3406410024], [6.135, 2.67651237303, 312.4597163935], [5.558, 3.83419160288, 534.3568315406], [5.344, 5.25294750019, 1048.3362299253], [7.504, 0.74281415471, 457.617679513], [5.335, 6.23059924424, 551.031606097], [5.613, 1.51210605952, 524.2743391232], [5.284, 2.18579185671, 280.9671470045], [5.475, 5.95864753605, 539.9859058331], [5.056, 0.37387972537, 529.5309064002], [6.202, 5.53813122743, 2.4476805548], [5.49, 5.97692444199, 227.5261894396], [6.266, 0.76632858238, 938.1299087059], [5.75, 2.13496323512, 191.9584544356], [5.218, 4.69335266854, 560.7104537316], [5.48, 5.21157595558, 1057.8974574809], [5.738, 0.34249718209, 535.9107402181], [4.816, 1.51326236835, 2524.021410252], [5.056, 3.46671669992, 529.851023789], [4.71, 2.2781383055, 3370.1042450032], [5.228, 3.61776977584, 2097.423219376], [4.878, 1.39829798223, 3693.6096616606], [5.727, 4.80120381106, 598.8434893694], [5.707, 3.94177950323, 2854.6403739102], [4.988, 4.87244187719, 1.4844727083], [5.424, 3.53268613904, 456.3938392356], [4.288, 4.84438067847, 70.8494453042], [5.944, 3.79180483544, 25558.2121764796], [4.195, 2.09136830994, 2627.1141844706], [4.582, 5.61707254513, 2435.155730035], [4.268, 6.20250525415, 775.233389447], [4.521, 0.20049967962, 92.0470739547], [5.405, 4.66492781581, 833.552661779], [5.607, 3.30226645638, 535.3200393871], [4.171, 3.14873010832, 944.9828232758], [4.108, 5.84489743779, 440.8252848776], [4.367, 4.68363584557, 327.4375699205], [4.033, 3.30883782817, 3274.1250177854], [4.292, 0.20604269202, 3796.7024358792], [4.27, 0.98941708997, 387.2413149608], [4.259, 3.21120589971, 696.5196376166], [4.673, 1.96606729969, 107.0249274817], [4.031, 4.62854606236, 2751.5475996916], [5.115, 2.66416451377, 1215.1649024473], [4.181, 4.74527698816, 988.532484885], [4.374, 1.50010561403, 1894.4190646765], [3.803, 3.59911687954, 437.6438911399], [3.761, 3.96903199782, 732.6951197941], [3.62, 1.57847427805, 381.6122406683], [3.49, 0.63097592112, 529.9034134157], [4.019, 2.5766416572, 916.9322800554], [4.133, 4.78417930217, 824.7421937488], [4.411, 3.13179382423, 630.3360587584], [4.099, 3.63702212253, 810.6581120991], [3.704, 6.17243801274, 537.7677199419], [4.124, 2.14248285449, 210.1177017003], [3.49, 3.20962050417, 529.4785167735], [3.281, 1.53106243317, 547.8502123593], [3.554, 6.03787799174, 739.0579072695], [4.101, 6.00406226999, 902.7051860538], [3.267, 3.49354065789, 1166.4068576709], [3.286, 2.5596687053, 945.9942152321], [4.041, 4.78735413707, 850.0149880143], [4.304, 0.11406117717, 1744.8558675419], [4.043, 5.204170936, 635.231419868], [3.115, 4.61986265585, 952.3570027075], [3.016, 0.95126220905, 3899.7952100978], [3.017, 2.59699501992, 632.831923423], [3.219, 1.83594791142, 18.1592472647], [3.203, 6.12597544496, 10.2949407385], [3.22, 6.1421342314, 1158.5425511447], [3.0, 5.69509924353, 632.7355552034], [3.226, 5.59910267099, 608.404716925], [3.118, 5.64998934505, 99.1606209555], [3.745, 2.08111521615, 282.4516197128], [2.837, 4.6017559422, 245.5424243524], [3.093, 6.02049413961, 633.7469471597], [3.12, 2.29047945342, 631.8205314667], [2.662, 3.69016679729, 885.4397106664], [3.15, 1.79784999553, 521.6142102473], [2.822, 3.14927418161, 295.0512286542], [2.615, 0.20732170653, 35.4247226521], [2.971, 1.28795094653, 1023.9572075371], [2.571, 2.01817133502, 1514.2912967165], [2.592, 0.487902212, 195.1398481733], [3.263, 2.38820607343, 836.5216071956], [2.501, 0.21653750027, 465.9550667912], [2.451, 5.58559489768, 544.6688186216], [2.535, 1.44414086617, 460.5384408198], [2.666, 3.30350145485, 2413.8150890326], [2.412, 4.3675658031, 1056.9342496344], [2.452, 4.53818816565, 514.7131115676], [3.239, 1.17022488774, 177.8743727859], [3.218, 0.60551913257, 1061.829610744], [2.408, 0.6542352381, 523.5406259403], [2.299, 2.1524775256, 319.5732633943], [2.791, 2.71505085086, 610.6923387854], [2.729, 1.77685979153, 252.6559713532], [2.666, 3.77750458842, 3171.0322435668], [2.303, 0.36676453766, 1969.2006632438], [2.664, 0.09674841214, 565.1156877467], [2.312, 2.07210502831, 3686.4961146598], [2.68, 4.9444588805, 1593.0050485469], [2.193, 0.55645982205, 2228.9701815978], [2.526, 1.07528597373, 12036.4607348882], [2.778, 1.48379350517, 447.7958195265], [2.235, 5.95475282699, 6151.533888305], [2.759, 4.6397615348, 462.0229135281], [2.175, 4.5358857024, 501.3797894433], [2.323, 5.93670041006, 611.4430983108], [2.384, 2.81746622971, 3340.6124266998], [2.087, 3.10716079675, 1049.0869894507], [1.994, 2.02500860064, 1058.8606653274], [2.199, 2.20937490997, 1269.4996318895], [2.705, 1.97665276677, 415.2918581812], [2.787, 1.31053438756, 1041.2226829245], [2.003, 4.66904374443, 679.2541622292], [1.962, 1.82999730674, 2943.5060541272], [2.289, 2.96480800939, 69.1525242748], [2.192, 4.47837196209, 209.3669421749], [2.02, 0.0462136449, 4113.0943055358], [2.082, 1.1120305917, 4010.0015313172], [1.991, 3.20108648275, 3590.516887442], [1.9, 3.32227077969, 421.93232443], [2.193, 2.82218305362, 292.0128472684], [2.288, 1.94695631885, 1279.794572628], [1.843, 5.23293634337, 14.977853527], [1.932, 5.4668425203, 2281.2304965106], [2.177, 2.93031976617, 429.0458714308], [2.125, 0.06224847826, 24.3790223882], [2.464, 5.3958107843, 1261.6353253633], [1.938, 3.79908004671, 1059.430114299], [2.029, 3.95461157815, 771.3012361839], [1.841, 4.74905354737, 78.7137518304], [1.922, 2.21862085389, 99.9113804809], [1.836, 5.75449805175, 623.2225117576], [2.145, 3.87052575546, 451.9404211107], [1.782, 0.40860352236, 754.0357607965], [1.784, 1.49468287576, 529.9515975255], [1.842, 3.49726261337, 1354.4331588434], [1.748, 3.48730020953, 522.6256022036], [1.816, 1.2433471121, 417.0369633204], [1.752, 1.15500390019, 1060.3451380357], [1.729, 2.69831073799, 642.3449668688], [1.985, 1.99916658759, 934.9485149682], [1.828, 5.44095029767, 1201.831580323], [2.158, 3.4567274859, 827.9235874865], [1.959, 1.06033047373, 33.9402499438], [1.751, 3.13572498964, 384.0599212231], [1.781, 5.02895146997, 1098.7388061044], [2.074, 3.18582065441, 1366.2125722902], [1.757, 5.02778552877, 586.3133163972], [2.045, 3.08816627459, 535.8413042489], [2.273, 5.17998505813, 3178.1457905676], [1.617, 3.16674916201, 67.6680515665], [1.627, 6.10603469594, 432.0148168474], [1.93, 1.63968957659, 5.4166259714], [1.741, 0.99408274736, 1254.5217783625], [1.607, 5.65498642076, 1165.6560981455], [1.676, 3.06138410273, 1134.1635287565], [1.821, 3.0518355509, 567.8240007324], [1.677, 3.0917508493, 1251.3403846248], [1.994, 2.52023134712, 1059.903195051], [2.204, 6.1537669851, 563.6312150384], [1.692, 4.19142612803, 106.2741679563], [1.906, 5.58417395051, 32.2433289144], [2.206, 1.75883974012, 1151.4290041439], [1.552, 3.04262360186, 385.5443939314], [1.508, 0.42002830727, 313.2104759189], [1.494, 1.43672345922, 2840.4132799086], [1.678, 2.17255433434, 306.830642101], [1.511, 4.44377608685, 395.105621487], [1.958, 0.05215107058, 761.7400086283], [1.76, 1.27045286501, 1173.5204046717], [1.463, 6.07810373103, 0.9632078465], [1.498, 2.79408561759, 277.0349937414], [1.636, 0.2619935149, 522.529233984], [1.507, 0.48961801593, 4216.1870797544], [1.53, 3.4295382755, 1159.2933106701], [1.744, 2.39637837261, 203.0041546995], [1.569, 2.55719070621, 4.192785694], [1.576, 3.45039607104, 1058.4187223427], [1.466, 2.24427539934, 1550.939859646], [1.784, 2.34591354953, 529.4303326637], [1.939, 4.7368542861, 3067.9394693482], [1.938, 0.60126164334, 1059.3337460794], [1.523, 2.98744673443, 2730.2069586892], [1.834, 3.78099298791, 420.9691165835], [1.372, 3.53997115825, 5.6290742925], [1.361, 0.45533257707, 418.5214360287], [1.833, 5.12743628215, 1578.0271950199], [1.839, 4.2461604421, 981.6313862053], [1.567, 3.32429870195, 532.3992780803], [1.34, 1.9466828227, 528.4189407074], [1.422, 1.83191577465, 4002.8879843164], [1.745, 5.76913240451, 490.0734567485], [1.437, 4.19470227783, 420.4478517217], [1.419, 0.7484900533, 632.2624744514], [1.447, 5.65611888743, 373.0142209592], [1.578, 3.90273683089, 602.9880909536], [1.385, 3.88479835656, 419.4364597654], [1.352, 0.81697905853, 1585.1407420207], [1.399, 1.24785452243, 633.305004175], [1.297, 5.57914023189, 1276.6131788903], [1.491, 1.66541781223, 2655.5683724738], [1.252, 0.72155670765, 173.9422195228], [1.658, 5.6092466285, 362.8622925726], [1.606, 3.95301396173, 2274.5468326365], [1.213, 4.55264289565, 366.7944458357], [1.521, 0.55773831071, 1592.2542890215], [1.22, 3.6302978804, 497.4476361802], [1.215, 4.42854185903, 531.387886124], [1.549, 5.73765962068, 320.3240229197], [1.48, 4.29779032931, 303.8616966844], [1.507, 2.27998567874, 758.7710632117], [1.212, 3.38335836048, 536.8526962052], [1.245, 4.21639959154, 4.665866446], [1.507, 3.52136655355, 774.0095491696], [1.481, 3.06156044618, 1585.8915015461], [1.462, 2.30628702634, 1363.2436268736], [1.18, 3.52708055024, 1064.7985561606], [1.193, 5.88284733845, 1060.8664028975], [1.398, 4.99456521692, 842.9014410135], [1.406, 1.53799746944, 1020.025054274], [1.367, 4.10254739443, 799.6124118352], [1.336, 1.8938727238, 530.9629894818], [1.238, 3.62226383331, 3487.4241132234], [1.306, 3.39985119727, 539.2521926502], [1.156, 0.77127511567, 1603.2999892854], [1.482, 0.48451915093, 493.0424021651], [1.247, 5.64344659992, 479.2883889155], [1.195, 2.39909893341, 561.1835344836], [1.106, 0.89453807282, 2.9207613068], [1.227, 2.76231244946, 299.1263942692], [1.128, 4.72319873338, 124.433415221], [1.086, 5.66180289525, 1053.7528558967], [1.329, 0.1666409453, 536.7563279856], [1.082, 4.5140735935, 528.2546764961], [1.105, 1.93890691771, 244.318584075], [1.446, 0.65096230619, 1091.6252591036], [1.071, 4.67974963103, 521.8266585684], [1.413, 4.72936311016, 1141.1340634054], [1.086, 2.88721124443, 1262.3860848887], [1.254, 5.74156595137, 527.9940440652], [1.082, 5.60975006771, 531.1272536931], [1.148, 3.27410230525, 1035.002907801], [1.224, 3.6880753715, 81.7521332162], [1.072, 0.48068438564, 1058.6311706638], [1.036, 1.68789163831, 1070.4276304531], [1.052, 4.72763208332, 913.7508863177], [1.166, 4.97812626679, 450.9772132642], [1.042, 2.90894542321, 3906.9087570986], [0.997, 1.65967703856, 3259.8979237838], [1.113, 3.06502453809, 1482.7987273275], [0.991, 0.91568114148, 576.1613880106], [0.987, 0.91349590742, 2332.0629558164], [1.003, 6.17381204883, 391.1734682239], [1.087, 3.19260020877, 151.0476698429], [0.987, 2.48065918834, 1912.5783119412], [0.975, 1.55458771092, 536.2832472336], [1.193, 2.19383228, 523.0986829556], [0.979, 3.2869362066, 1379.7059531089], [0.963, 2.29845109892, 1467.8208738005], [1.279, 4.73978455573, 600.5404103988], [1.269, 1.77171706595, 5120.6011455836], [0.938, 3.13636271584, 1372.5924061081], [0.956, 0.94045126791, 429.7795846137], [1.13, 4.87259620358, 874.3940104025], [1.044, 3.52819283674, 530.5847369719], [1.244, 0.80634178279, 419.532827985], [0.914, 4.34324212455, 1127.0499817557], [1.095, 3.17513475763, 6681.2248533996], [0.926, 5.53099018797, 537.5552716208], [1.025, 6.08315999637, 469.8872200543], [0.928, 2.64064849636, 31.019488637], [0.887, 5.53922649066, 498.6714764576], [1.153, 5.20213407651, 554.0699874828], [0.976, 4.2604788549, 806.725958836], [0.871, 5.7975111015, 594.6507036754], [1.044, 0.31244551729, 528.7971932173], [0.911, 0.94039205468, 337.732510659], [1.197, 3.12884590029, 1966.2317178272], [0.93, 2.88178471518, 1056.4611688824], [1.052, 1.69484089706, 484.444382456], [0.862, 0.67309397482, 20426.571092422], [1.152, 1.16751621652, 1489.9122743283], [0.847, 3.25831322825, 1063.5747158832], [0.884, 0.71487680084, 2042.4977891028], [0.888, 5.38714907441, 5621.8429232104], [1.137, 4.02029739425, 1670.0742689746], [0.844, 3.3184679859, 812.1425848074], [0.86, 4.78175008217, 530.914805372], [0.835, 3.63117401608, 451.7279727896], [0.931, 2.27352189963, 100.6450936638], [0.939, 3.51238251326, 523.4711899711], [0.86, 5.34207357904, 528.4671248172], [0.875, 0.8777553711, 4326.3934009738], [0.961, 5.69327275886, 498.1983957056], [0.966, 6.25512226434, 700.4517908797], [0.842, 3.20535945596, 1670.8250285], [0.808, 1.09148925587, 683.1863154923], [0.81, 5.47935192896, 525.5463635104], [0.855, 6.06969867736, 446.3113468182], [0.989, 1.55623875216, 1493.093668066], [0.837, 1.49510080792, 1025.4416802454], [0.974, 3.67667471757, 25565.3257234804], [0.788, 0.51622458293, 526.9826521089], [0.82, 1.86002542644, 629.8629780064], [0.813, 0.45441968195, 4694.0029547076], [0.953, 0.58786779132, 627.3671133418], [0.908, 2.82093327912, 3046.5988283458], [0.912, 2.69124310451, 946.727928415], [0.82, 4.14947931572, 1884.124123938], [0.948, 0.77931728039, 25551.09862947879], [0.844, 0.00976249584, 628.5909536192], [0.91, 0.99542530366, 5760.4984318976], [0.844, 0.2263096449, 1123.1178284926], [0.924, 4.41952345708, 5746.271337896], [0.967, 3.20618313117, 9050.8108418032], [0.8, 0.10663079153, 4532.578949411], [0.748, 3.01376405927, 5481.7545583808], [0.752, 5.8236047289, 701.936263588], [0.771, 0.12101982692, 635.70450062], [0.725, 2.81220410314, 3597.6304344428], [0.944, 0.40327408174, 1140.38330388], [0.726, 5.28930472464, 1304.9243545416], [0.994, 5.163913701, 10316.3783204296], [0.89, 4.10819809692, 1060.1326897146], [0.962, 1.48376004549, 1062.302691496], [0.883, 5.26813169286, 1542.6024723678], [0.916, 6.02908368648, 7.8643065262], [0.725, 2.1877377301, 1176.7017984094], [0.808, 5.81725174908, 1087.6931058405], [0.757, 0.7744041433, 977.4867846211], [0.838, 3.81585420192, 986.0848043302], [0.888, 1.89634795578, 707.5653378805], [0.854, 5.47701506544, 2818.035008606], [0.796, 1.08794807212, 987.3086446076], [0.856, 2.58042139486, 2803.8079146044], [0.708, 1.09492310353, 248.7238180901], [0.811, 3.23726191865, 121.2520214833], [0.727, 1.56150632966, 4319.279853973], [0.687, 2.65457835371, 1567.7322542814], [0.675, 1.78690909614, 103.1409583284], [0.853, 4.74476428852, 951.6232895246], [0.832, 5.1436278981, 1054.7160637432], [0.846, 1.47557828604, 898.7730327907], [0.701, 1.72139817505, 5230.807466803], [0.863, 3.98700238575, 686.958410061], [0.703, 2.89202252444, 63.7358983034], [0.673, 6.1161858051, 738.3241940866], [0.806, 4.64475158248, 533.8355666788], [0.67, 2.67625974048, 1012.9115072732], [0.668, 4.93815253692, 5172.476235725], [0.818, 1.41973280302, 580.0935412737], [0.652, 3.41422919445, 650.9429865779], [0.643, 2.46566726278, 1049.8207026336], [0.859, 2.50530106631, 782.3469364478], [0.662, 4.13533996643, 733.428832977], [0.812, 1.30325352179, 1055.1891444952], [0.638, 4.21760246824, 1064.0477966352], [0.637, 6.13121700151, 4752.9915918498], [0.636, 0.83411828974, 711.4974911436], [0.642, 1.86741704507, 1053.9653042178], [0.795, 4.54081089118, 1457.525933062], [0.783, 4.37652961667, 105.5404547734], [0.64, 5.44039474349, 632.0329797878], [0.651, 5.02431301146, 528.0464336919], [0.686, 0.27079898498, 11.7794134468], [0.644, 5.36935176134, 835.7878940127], [0.639, 1.86699974431, 6172.869528772], [0.63, 2.86895754523, 633.5344988386], [0.826, 1.46026926041, 2199.7652340692], [0.687, 3.81221717134, 73.297125859], [0.697, 4.18082589322, 1.6969210294], [0.788, 0.21278801649, 313.9441891018], [0.686, 2.51807576494, 638.4128136057], [0.847, 5.56263749391, 4429.4861751924], [0.673, 4.87494072856, 103.0445901088], [0.663, 4.80713895807, 991.7138786227], [0.614, 3.87231597482, 767.3690829208], [0.666, 5.71697262323, 661.0949149645], [0.681, 2.33844767741, 501.2367770914], [0.597, 3.03921014345, 6.9534883064], [0.777, 3.08786050361, 441.576044403], [0.588, 0.08236113246, 4164.311989613], [0.693, 4.66190836234, 3384.3313390048], [0.81, 1.9770108449, 860.3099287528], [0.602, 5.56403449542, 1587.5884225755], [0.622, 6.11554348965, 7.065362891], [0.592, 3.29013906024, 10103.0792249916], [0.692, 6.10931942233, 12.7426212933], [0.597, 6.13204711801, 7.2736056952], [0.594, 2.58839673551, 849.2642284889], [0.728, 2.73732195088, 6.1503391543], [0.602, 5.28816527514, 949.12742486], [0.568, 1.75508433865, 1077.5411774539], [0.575, 4.50676079721, 1230.1427559743], [0.588, 0.65827893998, 4642.7852706304], [0.561, 3.8756591436, 135.336103133], [0.558, 3.36094471852, 24498.8302462904], [0.557, 3.45629457197, 19896.8801273274], [0.558, 1.17103892689, 3576.2897934404], [0.574, 5.1923507414, 104.0559820651], [0.56, 3.57141429379, 5333.9002410216], [0.555, 0.18349908409, 512.4254897072], [0.571, 0.8307014882, 1570.9136480191], [0.632, 3.67893818442, 1065.0110044817], [0.744, 2.33083237537, 620.253566341], [0.54, 5.15775909675, 1751.539531416], [0.592, 3.07238123875, 1446.62324515], [0.537, 1.52803865425, 8094.5216858326], [0.55, 5.50701003577, 1432.3961511484], [0.546, 2.34388967045, 949.2237930796], [0.534, 3.04076654796, 7.1617311106], [0.619, 6.07865159203, 46.470422916], [0.562, 0.96641974928, 1438.0252254409], [0.531, 1.0669554739, 100.1720129118], [0.599, 3.59295739143, 1144.3154571431], [0.526, 3.51641923371, 0.7507595254], [0.564, 0.72677136494, 1059.2218714948], [0.537, 5.72603965787, 513.2286388593], [0.63, 2.311831439, 2729.4561991638], [0.53, 4.99510636441, 9264.1099372412], [0.649, 0.95666735852, 920.8644333185], [0.547, 1.18801926149, 11506.7697697936], [0.516, 3.28562070858, 734.9133056853], [0.567, 5.13926871155, 288.0806940053], [0.538, 0.2815963768, 153.4953503977], [0.718, 0.48326672359, 842.1506814881], [0.526, 4.39778401928, 546.1532913299], [0.695, 2.44235086902, 657.1627617014], [0.697, 4.99042365686, 12.5301729722], [0.519, 6.27847163164, 59.8037450403], [0.504, 2.58550284, 5378.6617841622], [0.496, 2.43659402827, 990.2294059144], [0.617, 5.732849857, 745.4377410874], [0.519, 3.1015709777, 9161.0171630226], [0.654, 1.31181453784, 878.3261636656], [0.619, 3.71554817226, 2090.3096723752], [0.5, 4.28937439066, 5216.5803728014], [0.621, 3.98893673383, 409.9234163196], [0.685, 1.95310431695, 3156.8051495652], [0.552, 2.81774132958, 344.7030453079], [0.551, 1.91969778405, 113.3877149571], [0.682, 0.87321578326, 6069.7767545534], [0.651, 5.09951064975, 531.3354964973], [0.537, 3.67357440226, 605.9570363702], [0.525, 0.74584814988, 736.8397213783], [0.505, 3.12494814307, 1475.6851803267], [0.622, 3.00013939606, 2349.3284312038], [0.644, 3.00156986335, 298.2326223919], [0.564, 3.81960833949, 1059.5419888836], [0.468, 3.50348554992, 4841.8572720668], [0.491, 1.28535573072, 247.2393453818], [0.458, 0.45056377876, 1065.6017053127], [0.543, 2.3970430832, 9690.7081281172], [0.459, 5.29870259698, 1474.9344208013], [0.483, 3.63649121244, 131.4039498699], [0.632, 2.75028345792, 334.5511169213], [0.483, 0.42979609421, 735.828329422], [0.54, 0.54791737146, 51646.11531805379], [0.531, 0.30026207053, 912.7876784712], [0.449, 3.02583472996, 5901.239202256], [0.544, 2.98747240952, 4223.3006267552], [0.557, 5.83542572008, 9676.4810341156], [0.501, 0.03408180117, 1080.7225711916], [0.517, 4.40400852026, 2545.3620512544], [0.481, 3.63292807076, 5584.8473325994], [0.557, 6.1144397819, 976.0023119128], [0.481, 3.41035583659, 3803.81598288], [0.622, 2.29597570837, 9999.986450773], [0.454, 2.88584538455, 1987.2168981566], [0.439, 4.83198101064, 50.4025761791], [0.475, 2.69994471394, 491.8185618877], [0.618, 0.72471290082, 1291.4309737229], [0.503, 0.13449993622, 2015.6710861598], [0.551, 2.13418546604, 1440.9941708575], [0.595, 3.78181802545, 6386.16862421], [0.434, 2.64411689486, 748.406686504], [0.592, 0.32587740408, 737.3609862401], [0.49, 2.379888288, 2225.7887878601], [0.439, 1.33582802018, 995.6460318858], [0.543, 2.05067702505, 906.849787638], [0.466, 2.43707405011, 3362.9906980024], [0.481, 2.32223226419, 1357.6145525811], [0.566, 0.59740900184, 350.3321196004], [0.429, 2.46287580628, 3914.0223040994], [0.429, 1.01299906509, 4333.5069479746], [0.425, 1.67255823369, 148.0787244263], [0.412, 3.29630633921, 7.3259953219], [0.508, 1.16158524676, 9.5612275556], [0.524, 5.0256292612, 1090.4014188262], [0.409, 5.80053072411, 9146.790069021], [0.497, 0.01579913593, 1069.6768709277], [0.548, 6.03429743373, 9367.2027114598], [0.433, 5.9368835084, 1688.2335162393], [0.424, 4.1815011153, 550.1378342197], [0.401, 0.11519846139, 970.5162499722], [0.503, 5.28212300854, 668.2084619653], [0.555, 1.00328633255, 141.2258098564], [0.404, 2.48633976473, 519.656656787], [0.441, 6.06185501734, 25.1297819136], [0.412, 5.87495245826, 6.9010986797], [0.478, 0.71264950607, 1094.8066528413], [0.446, 2.71248183031, 31.492569389], [0.404, 5.49462012486, 447.9388318784], [0.391, 1.261056127, 8.0767548473], [0.463, 1.93535321271, 6275.9623029906], [0.507, 3.61089992782, 546.956440482], [0.402, 5.86200127054, 927.8349679674], [0.481, 6.21043578332, 683.9894646444], [0.483, 5.02142924458, 857.1285350151], [0.444, 0.84873092377, 1371.8416465827], [0.391, 2.81753436573, 5798.1464280374], [0.395, 0.22367886581, 51116.4243529592], [0.378, 6.03765733432, 1268.7488723641], [0.471, 6.24506463249, 946.4672959841], [0.405, 0.57785207581, 107.2855599126], [0.371, 6.15750793727, 509.2440959695], [0.37, 4.90330687618, 1436.5407527326], [0.448, 4.76565111029, 284.1485407422], [0.474, 0.71146352197, 2108.4689196399], [0.509, 5.53328407404, 1128.534454464]], [[1271801.596, 2.64937511122, 529.6909650946], [61661.771, 3.00076251018, 1059.3819301892], [53443.592, 3.89717644226, 522.5774180938], [31185.167, 4.88276663526, 536.8045120954], [41390.257, 0.0, 0.0], [11847.19, 2.41329588176, 419.4846438752], [9166.36, 4.75979408587, 7.1135470008], [3175.763, 2.79297987071, 103.0927742186], [3203.446, 5.21083285476, 735.8765135318], [3403.605, 3.34688537997, 1589.0728952838], [2600.003, 3.63435101622, 206.1855484372], [2412.207, 1.46947308304, 426.598190876], [2806.064, 3.7422369358, 515.463871093], [2676.575, 4.33052878699, 1052.2683831884], [2100.507, 3.92762682306, 639.897286314], [1646.182, 5.30953510947, 1066.49547719], [1641.257, 4.41628669824, 625.6701923124], [1049.866, 3.16113622955, 213.299095438], [1024.802, 2.55432643018, 412.3710968744], [740.996, 2.17094630558, 1162.4747044078], [806.404, 2.6775080138, 632.7837393132], [676.928, 6.2495347979, 838.9692877504], [468.895, 4.70973463481, 543.9180590962], [444.683, 0.40281181402, 323.5054166574], [567.076, 4.57655414712, 742.9900605326], [415.894, 5.36836018215, 728.762966531], [484.689, 2.46882793186, 949.1756089698], [337.555, 3.1678195112, 956.2891559706], [401.738, 4.60528841541, 309.2783226558], [347.378, 4.68148808722, 14.2270940016], [260.753, 5.34290306101, 846.0828347512], [220.084, 4.84210964963, 1368.660252845], [203.217, 5.59995425432, 1155.361157407], [246.603, 3.92313823537, 942.062061969], [183.504, 4.26526769703, 95.9792272178], [180.134, 4.40165491159, 532.8723588323], [197.134, 3.70551461394, 2118.7638603784], [196.005, 3.75877587139, 199.0720014364], [200.19, 4.43888814441, 1045.1548361876], [170.225, 4.84647488867, 526.5095713569], [146.335, 6.12958365535, 533.6231183577], [133.483, 1.32245735855, 110.2063212194], [132.076, 4.51187950811, 525.7588118315], [123.851, 2.04290370696, 1478.8665740644], [121.861, 4.40581788491, 1169.5882514086], [115.313, 4.46741278152, 1581.959348283], [98.527, 5.72833991647, 1596.1864422846], [91.608, 4.52965592121, 1685.0521225016], [110.638, 3.62504147403, 1272.6810256272], [80.536, 4.11311699583, 1258.4539316256], [79.552, 2.71898473954, 1692.1656695024], [100.164, 5.24693885858, 1265.5674786264], [77.854, 5.56722651753, 1471.7530270636], [85.766, 0.07906707372, 831.8557407496], [82.132, 3.80763015979, 508.3503240922], [55.319, 0.35180851191, 316.3918696566], [52.338, 5.53074272117, 433.7117378768], [55.769, 4.75141241141, 302.164775655], [50.597, 4.8560316177, 1375.7737998458], [43.554, 4.94441642712, 1361.5467058442], [42.172, 1.22404278447, 853.196381752], [37.695, 4.26767539209, 2001.4439921582], [49.395, 4.01422828967, 220.4126424388], [38.263, 5.33025236797, 1788.1448967202], [35.611, 1.76205571128, 1795.258443721], [36.296, 3.84995284393, 1574.8458012822], [29.332, 5.16619257786, 3.9321532631], [25.18, 4.33777727362, 519.3960243561], [24.778, 2.7290789741, 405.2575498736], [27.025, 6.09669947903, 1148.2476104062], [22.604, 0.19173890105, 380.12776796], [20.499, 4.32881495378, 3.1813937377], [19.925, 4.62967500111, 1677.9385755008], [19.528, 5.10596326232, 1073.6090241908], [18.427, 3.765221783, 1485.9801210652], [18.869, 5.05259402407, 2104.5367663768], [17.031, 4.01843356903, 2317.8358618148], [16.671, 5.42931676507, 88.865680217], [15.337, 2.92700926091, 2008.557539159], [14.499, 3.63339836845, 628.8515860501], [14.575, 5.50832843322, 721.6494195302], [13.728, 4.87623389735, 629.6023455755], [18.481, 6.03032762264, 330.6189636582], [13.499, 1.38539534821, 518.6452648307], [15.74, 2.93038271684, 1905.4647649404], [12.459, 1.58587053146, 2111.6503133776], [12.272, 3.37671053917, 635.9651330509], [11.836, 4.08486322993, 2648.454825473], [11.166, 4.62623267608, 636.7158925763], [14.348, 2.74177797727, 2221.856634597], [11.221, 3.55311861205, 1891.2376709388], [13.121, 5.83845065644, 1464.6394800628], [11.351, 2.5760688623, 511.5317178299], [10.487, 0.49850799841, 453.424893819], [9.728, 4.38837468002, 1994.3304451574], [10.131, 2.76432756215, 423.4167971383], [8.62, 5.16374493158, 1056.2005364515], [8.952, 4.79407952752, 2420.9286360334], [8.126, 3.72977106954, 2634.2277314714], [8.078, 1.29246272894, 2428.0421830342], [8.867, 1.85684753622, 750.1036075334], [8.912, 4.80973516711, 1062.5633239269], [8.552, 4.53818617984, 21.3406410024], [9.468, 4.33472161983, 1802.3719907218], [6.904, 5.96616555709, 540.7366653585], [7.293, 4.97763580465, 1699.2792165032], [7.083, 4.99096728816, 1055.4497769261], [7.226, 4.97823884383, 1898.3512179396], [6.464, 1.39173466879, 422.6660376129], [6.214, 4.46490158256, 551.031606097], [6.794, 2.90878831415, 2324.9494088156], [6.173, 3.65617162985, 621.7380390493], [6.243, 6.13691919694, 2125.8774073792], [5.936, 2.5831223512, 569.0478410098], [6.504, 4.56908431757, 1038.0412891868], [7.305, 3.02062127734, 416.3032501375], [6.598, 5.55348005731, 1781.0313497194], [5.133, 6.2164691798, 963.4027029714], [5.876, 4.23153077453, 539.9859058331], [5.119, 0.06942832171, 1063.3140834523], [5.46, 4.91084384602, 835.0371344873], [4.989, 1.3515369468, 1382.8873468466], [5.224, 0.18468411116, 117.3198682202], [6.187, 3.87193497099, 191.9584544356], [4.681, 4.61057119508, 643.8294395771], [4.627, 3.34644534691, 2207.6295405954], [4.526, 4.07729737127, 2310.722314814], [4.718, 4.55578336947, 2737.32050569], [4.471, 1.47603161897, 408.4389436113], [4.073, 1.1301490318, 415.5524906121], [5.476, 5.63198569698, 618.5566453116], [4.034, 4.09631702747, 430.5303441391], [4.304, 4.60536378943, 647.0108333148], [3.765, 3.42751259825, 2950.619601128], [4.559, 4.23723998745, 227.5261894396], [3.695, 1.03127824978, 2744.4340526908], [3.667, 4.12268925541, 440.8252848776], [3.677, 2.19480200527, 534.3568315406], [3.818, 1.14800596289, 74.7815985673], [4.221, 2.37721579949, 2538.2485042536], [3.488, 5.33792561596, 458.8415197904], [3.437, 4.26164443643, 10.2949407385], [4.394, 0.18808423412, 824.7421937488], [3.339, 4.85708402591, 295.0512286542], [3.329, 5.50043586719, 739.8086667949], [3.623, 4.64011531952, 2214.7430875962], [3.185, 2.69708590442, 561.934294009], [3.421, 3.38512615384, 149.5631971346], [3.442, 4.34217280083, 305.3461693927], [3.58, 5.29481665335, 2097.423219376], [3.401, 2.74761862893, 2641.3412784722], [2.901, 0.91012525424, 984.6003316219], [3.566, 1.63400343968, 525.0250986486], [2.869, 1.31799241974, 611.4430983108], [2.635, 5.25517910535, 532.1386456494], [2.683, 4.24641945773, 3053.7123753466], [2.614, 3.17862099921, 527.2432845398], [2.251, 4.2159824736, 739.0579072695], [2.268, 5.5224811056, 524.2743391232], [2.372, 4.19741177512, 217.2312487011], [2.623, 5.82647427958, 732.6951197941], [2.666, 3.92538056951, 210.1177017003], [2.036, 4.84043420813, 1049.0869894507], [2.441, 2.63840901843, 760.25553592], [2.095, 5.76269812349, 529.6427809848], [2.021, 3.81308146017, 2627.1141844706], [2.089, 4.18463193132, 945.9942152321], [2.305, 1.6122066569, 604.4725636619], [1.969, 5.37427735384, 142.4496501338], [1.923, 4.75088270631, 535.107591066], [1.955, 5.49000238006, 1439.5096981492], [1.877, 3.26978877187, 3267.0114707846], [2.286, 2.93885172004, 76.2660712756], [2.074, 5.85386852879, 532.6117264014], [2.121, 3.92430797099, 2435.155730035], [1.807, 3.17208959472, 2524.021410252], [1.712, 4.02986641257, 731.9443602687], [2.119, 0.41049593984, 1279.794572628], [1.66, 2.34370903423, 528.7277572481], [1.655, 0.78809717175, 3060.8259223474], [1.729, 4.26127896267, 724.8308132679], [2.06, 5.04785330873, 2413.8150890326], [2.095, 2.67732367556, 529.7391492044], [1.933, 2.49162437046, 2957.7331481288], [1.898, 2.71948262975, 952.3570027075], [1.634, 2.98113068812, 945.2434557067], [1.582, 5.84373095005, 547.8502123593], [1.662, 0.27359627181, 454.9093665273], [1.595, 1.18530167095, 38.1330356378], [1.55, 0.64264572959, 312.4597163935], [1.525, 4.08789824989, 1158.5425511447], [1.542, 1.12520322326, 1021.2488945514], [1.539, 0.37324921979, 319.5732633943], [1.628, 5.24285773388, 1354.4331588434], [1.897, 3.79973291113, 953.1077622329], [1.44, 4.37872256685, 3178.1457905676], [1.439, 4.26513521887, 526.7702037878], [1.557, 5.43779802371, 81.7521332162], [1.656, 6.0966708974, 530.6541729411], [1.548, 3.48799710267, 934.9485149682], [1.772, 5.82549274759, 909.8187330546], [1.615, 1.45018725033, 902.7051860538], [1.387, 2.52840497309, 530.44172462], [1.574, 1.89565809136, 437.6438911399], [1.459, 3.32546061506, 1041.2226829245], [1.377, 0.10015418633, 490.3340891794], [1.46, 4.00706825185, 3370.1042450032], [1.605, 4.27993020192, 2531.1349572528], [1.707, 6.28253681644, 18.1592472647], [1.802, 2.23019296374, 2854.6403739102], [1.39, 3.76737324192, 1165.6560981455], [1.498, 0.17285954362, 1141.1340634054], [1.401, 4.81225317549, 1251.3403846248], [1.244, 2.83383980283, 124.433415221], [1.32, 5.80675430384, 387.2413149608], [1.329, 0.88314574243, 916.9322800554], [1.558, 6.17808619637, 983.1158589136], [1.243, 0.29239666059, 597.3590166611], [1.541, 3.51095241498, 2751.5475996916], [1.482, 0.83066678204, 529.1697002328], [1.149, 3.91142023857, 99.9113804809], [1.114, 3.5333963729, 483.2205421786], [1.195, 4.16301075999, 203.0041546995], [1.1, 1.74769285223, 497.4476361802], [1.458, 5.19315120878, 1592.2542890215], [1.123, 1.45270581179, 533.8837507886], [1.078, 5.2399179294, 1159.2933106701], [1.083, 3.57026506855, 2943.5060541272], [1.072, 0.07132659992, 1070.4276304531], [1.037, 5.48955598976, 1585.8915015461], [1.343, 0.29600445633, 860.3099287528], [1.361, 3.46603373194, 107.0249274817], [1.061, 2.44580706826, 1048.3362299253], [1.002, 5.5521611741, 337.732510659], [0.981, 3.15500987023, 70.8494453042], [1.007, 4.11504050436, 501.2367770914], [0.965, 5.63719524421, 1603.2999892854], [1.083, 4.8837390981, 1166.4068576709], [0.953, 2.83352026342, 3583.4033404412], [1.06, 3.18542176646, 447.7958195265], [1.136, 2.2656859095, 525.4981794006], [1.191, 2.25249961404, 106.2741679563], [0.884, 4.69777781327, 960.2213092337], [1.165, 1.56030440737, 630.3360587584], [0.947, 0.50856414717, 842.9014410135], [1.011, 0.30814674949, 1593.0050485469], [0.924, 2.31939900786, 327.4375699205], [0.896, 0.22222521202, 746.9222137957], [1.078, 4.78329116086, 2730.2069586892], [0.938, 5.42471506763, 1585.1407420207], [0.923, 4.44469169065, 9676.4810341156], [0.894, 0.2694082187, 2655.5683724738], [1.131, 5.46382510304, 224.3447957019], [0.808, 0.48295590141, 3377.217792004], [0.809, 4.14122746067, 114.1384744825], [0.864, 1.83217006136, 4.665866446], [1.106, 2.60444312553, 209.3669421749], [0.79, 0.11493626208, 460.5384408198], [0.799, 1.6042649759, 5223.6939198022], [0.933, 0.30976125598, 685.4739373527], [1.053, 5.23433104008, 842.1506814881], [0.846, 3.0287839349, 5746.271337896], [0.799, 2.08457026425, 77734.01845962799], [0.82, 0.99821486743, 373.0142209592], [0.892, 5.36446426391, 827.9235874865], [0.821, 3.53889274951, 498.6714764576], [0.741, 1.32379374647, 530.2122299564], [0.79, 2.88034567513, 938.1299087059], [0.842, 3.39449778904, 484.444382456], [0.785, 0.57841470897, 850.0149880143], [0.759, 3.82014112009, 6283.0758499914], [0.954, 2.94534072982, 462.0229135281], [0.767, 3.33725133157, 99.1606209555], [0.81, 4.69425300466, 2228.9701815978], [0.7, 1.72050221502, 775.233389447], [0.764, 4.91747674296, 1670.8250285], [0.724, 6.08692841992, 2281.2304965106], [0.711, 4.82250918143, 11.7794134468], [0.692, 2.63705354662, 6.592282139], [0.771, 3.87410612014, 9690.7081281172], [0.906, 2.47189948442, 3274.1250177854], [0.781, 1.25357484582, 202.2533951741], [0.757, 3.78079814332, 2818.035008606], [0.756, 4.28312053897, 2803.8079146044], [0.663, 5.27704405712, 4532.578949411], [0.759, 5.4535868657, 9683.5945811164], [0.698, 5.43712520216, 565.1156877467], [0.709, 3.71117647887, 3686.4961146598], [0.677, 4.27891183416, 25028.521211385], [0.643, 1.40239510103, 9161.0171630226], [0.656, 0.60909845504, 835.7878940127], [0.635, 5.75373871128, 429.7795846137], [0.702, 6.10412979847, 4635.6717236296], [0.627, 3.03666956129, 2840.4132799086], [0.802, 4.18688054701, 5753.3848848968], [0.838, 4.51386507097, 1069.6768709277], [0.633, 4.37183361444, 5.4166259714], [0.652, 5.79409889124, 1061.829610744], [0.638, 2.18896270346, 313.2104759189], [0.827, 5.94231186039, 1457.525933062], [0.678, 2.45013730979, 5760.4984318976], [0.814, 4.8957879117, 1567.7322542814], [0.624, 0.61631100566, 1176.7017984094], [0.6, 3.20918322285, 1098.7388061044], [0.717, 1.8234906449, 3171.0322435668], [0.651, 4.14419317491, 2847.5268269094], [0.629, 1.75272560843, 92.0470739547], [0.626, 3.53146082217, 3067.9394693482], [0.667, 4.22974611158, 4539.6924964118], [0.565, 0.99416346033, 1894.4190646765], [0.752, 0.4606370015, 635.231419868], [0.622, 1.98136818407, 25565.3257234804], [0.614, 2.48275371627, 25551.09862947879], [0.56, 1.40733893388, 446.3113468182], [0.558, 4.37217796469, 1057.8974574809], [0.628, 4.65037810102, 6275.9623029906], [0.659, 2.41470950463, 195.1398481733], [0.616, 2.08837621877, 10.0343083076], [0.692, 3.1322902553, 7.6348118626], [0.685, 4.18539472904, 46.470422916], [0.624, 0.02693303471, 1493.093668066], [0.594, 2.13375704438, 121.2520214833], [0.508, 2.1358430071, 1.6969210294], [0.674, 1.47570122611, 4694.0029547076], [0.559, 4.48852017557, 531.1754378029], [0.64, 3.10239233469, 11.0457002639], [0.496, 1.29000001439, 927.8349679674], [0.587, 3.30651435298, 600.5404103988], [0.582, 0.4454094886, 113.3877149571], [0.492, 4.83275232, 9492.1463150048], [0.549, 4.34579166146, 3046.5988283458], [0.576, 1.22846846364, 1514.2912967165], [0.593, 5.86079640612, 524.0618908021], [0.51, 2.6255703127, 529.851023789], [0.489, 6.26855707323, 3693.6096616606], [0.48, 0.30754294369, 528.9402055692], [0.582, 3.51934668795, 1056.9342496344], [0.493, 5.52699906925, 512.2824773553], [0.481, 2.99681040149, 9153.9036160218], [0.562, 3.73437025868, 2015.6710861598], [0.458, 3.86646994292, 11.3063326948], [0.457, 1.80238019931, 3281.2385647862], [0.453, 6.17995938655, 1059.3337460794], [0.551, 0.13794958618, 1912.5783119412], [0.446, 5.53828660924, 2332.0629558164], [0.444, 5.06219342598, 7.8643065262], [0.461, 0.16951411708, 26087.9031415742], [0.439, 4.14986379679, 1151.4290041439], [0.614, 5.42289673768, 2090.3096723752], [0.488, 3.71681959056, 447.9388318784], [0.592, 2.91424148255, 8624.2126509272], [0.433, 2.55336268329, 1064.0477966352], [0.449, 5.24955106938, 10213.285546211], [0.51, 5.81591864532, 529.5309064002], [0.435, 5.34355963629, 560.7104537316], [0.449, 0.72330388784, 2758.6611466924], [0.43, 0.94519103478, 6.3627874754], [0.563, 6.19175228344, 1884.124123938], [0.443, 3.39246520261, 1152.1797636693], [0.43, 1.28652623263, 505.3119427064], [0.422, 5.12631540623, 944.9828232758], [0.464, 2.90444584145, 398.1440028728], [0.41, 1.24248975309, 5069.3834615064], [0.411, 2.95117124177, 4326.3934009738], [0.418, 5.15499986314, 1173.5204046717], [0.412, 2.9812544633, 554.0699874828], [0.403, 0.34381388674, 32.2433289144], [0.402, 5.88926765351, 1570.9136480191], [0.505, 1.49028912471, 3782.4753418776], [0.447, 0.03952029309, 245.5424243524], [0.453, 3.09458004153, 1059.430114299], [0.411, 3.21727542472, 1475.6851803267], [0.426, 3.12237794195, 12566.1516999828], [0.434, 3.59362426939, 3259.8979237838], [0.398, 4.91510709622, 4120.2078525366], [0.399, 4.67075122011, 234.6397364404], [0.386, 4.81320787761, 970.5162499722], [0.427, 3.21176085113, 977.4867846211], [0.411, 4.31566962034, 757.2171545342], [0.392, 1.86527946688, 885.4397106664], [0.416, 3.81408093105, 3156.8051495652]], [[79644.833, 1.35865896596, 529.6909650946], [8251.618, 5.77773935444, 522.5774180938], [7029.864, 3.27476965833, 536.8045120954], [5314.006, 1.83835109712, 1059.3819301892], [1860.833, 2.97682139367, 7.1135470008], [836.267, 4.19889881718, 419.4846438752], [964.466, 5.48031822015, 515.463871093], [406.453, 3.78250730354, 1066.49547719], [426.57, 2.22753101795, 639.897286314], [377.316, 2.24248352873, 1589.0728952838], [497.92, 3.14159265359, 0.0], [339.043, 6.12690864038, 625.6701923124], [362.943, 5.36761847267, 206.1855484372], [342.048, 6.09922969324, 1052.2683831884], [279.92, 4.26162555827, 412.3710968744], [332.578, 0.00328961161, 426.598190876], [229.777, 0.70530766213, 735.8765135318], [200.783, 3.06850623368, 543.9180590962], [199.807, 4.42884165317, 103.0927742186], [257.29, 0.96295364983, 632.7837393132], [138.606, 2.93235671606, 14.2270940016], [113.535, 0.78713911289, 728.762966531], [86.025, 5.14434751994, 323.5054166574], [94.565, 1.70498041073, 838.9692877504], [83.469, 0.05834873484, 309.2783226558], [75.198, 1.60495195911, 956.2891559706], [70.451, 1.50988357484, 213.299095438], [80.328, 2.98122361797, 742.9900605326], [56.203, 0.95534810533, 1162.4747044078], [61.649, 6.10137889854, 1045.1548361876], [66.572, 5.47307178077, 199.0720014364], [50.057, 2.72063162317, 532.8723588323], [51.904, 5.58435625607, 942.062061969], [39.833, 5.94566506227, 95.9792272178], [44.548, 5.52445621411, 508.3503240922], [44.282, 0.27118152557, 526.5095713569], [29.944, 0.93641735919, 1155.361157407], [28.412, 2.87835720211, 525.7588118315], [26.33, 4.26891877269, 1596.1864422846], [27.039, 2.80607741398, 1169.5882514086], [27.477, 2.64841266238, 2118.7638603784], [22.705, 0.17830004133, 302.164775655], [29.347, 1.7858969235, 831.8557407496], [19.991, 0.04328951895, 949.1756089698], [19.906, 1.16072627347, 533.6231183577], [21.714, 1.88820231818, 1272.6810256272], [17.581, 4.14974757919, 846.0828347512], [17.085, 5.89188996975, 1258.4539316256], [21.407, 4.35468497204, 316.3918696566], [21.295, 0.54429472455, 1265.5674786264], [19.859, 0.064538258, 1581.959348283], [17.025, 0.53383755278, 1368.660252845], [12.804, 3.90044242142, 433.7117378768], [13.072, 0.79468040717, 110.2063212194], [11.945, 0.40671403646, 1361.5467058442], [11.695, 4.44394618065, 405.2575498736], [11.979, 2.22872778682, 220.4126424388], [9.633, 6.01002272123, 853.196381752], [10.163, 0.99504635158, 1471.7530270636], [8.977, 1.60328709409, 1692.1656695024], [8.701, 3.52167876799, 1073.6090241908], [8.314, 5.60169732564, 1574.8458012822], [8.958, 6.26708748901, 519.3960243561], [7.828, 0.65241611799, 1478.8665740644], [7.833, 0.17920601344, 1685.0521225016], [7.451, 0.88421084942, 88.865680217], [7.32, 0.89341249264, 721.6494195302], [9.135, 1.51210840939, 1148.2476104062], [6.11, 2.50080005128, 3.1813937377], [7.037, 4.44127496638, 330.6189636582], [5.163, 2.79219166952, 21.3406410024], [5.079, 2.97991736844, 1375.7737998458], [4.93, 0.04683167622, 1677.9385755008], [4.664, 2.28007273876, 1485.9801210652], [4.692, 0.86220230505, 3.9321532631], [5.307, 0.85008578245, 1788.1448967202], [4.239, 0.40758287124, 629.6023455755], [4.23, 1.61046658091, 635.9651330509], [3.627, 2.71151441113, 551.031606097], [3.314, 0.55067236587, 1795.258443721], [4.409, 1.2812775105, 1464.6394800628], [3.27, 1.18744032691, 1905.4647649404], [3.226, 6.18716071251, 1038.0412891868], [3.103, 6.22971614425, 2001.4439921582], [3.41, 2.44624067925, 539.9859058331], [3.174, 5.54870592599, 191.9584544356], [2.59, 3.24430559059, 1062.5633239269], [2.614, 0.55149554149, 2104.5367663768], [2.174, 5.32613824409, 1891.2376709388], [2.659, 4.8245997422, 416.3032501375], [2.187, 1.71707514653, 628.8515860501], [2.263, 6.19233486371, 1994.3304451574], [2.328, 4.28236795066, 963.4027029714], [2.579, 0.03256542251, 1898.3512179396], [2.077, 3.32602157426, 1699.2792165032], [2.529, 2.39697505835, 227.5261894396], [2.468, 0.06551346218, 750.1036075334], [1.989, 0.29206371261, 636.7158925763], [1.927, 0.32286661566, 295.0512286542], [1.904, 3.43534792123, 647.0108333148], [1.94, 0.29170673525, 2111.6503133776], [1.88, 3.14403615586, 611.4430983108], [2.324, 1.94960720763, 824.7421937488], [1.854, 4.71794950485, 2125.8774073792], [2.547, 1.2390835309, 2221.856634597], [1.814, 1.60250861074, 2008.557539159], [1.611, 5.83466560322, 422.6660376129], [1.667, 2.32455940876, 440.8252848776], [1.622, 0.36650974375, 1056.2005364515], [1.624, 2.42139677881, 10.2949407385], [1.622, 3.51892791175, 1055.4497769261], [1.606, 5.76205763975, 117.3198682202], [1.646, 5.88662636573, 2317.8358618148], [2.026, 4.61781314145, 423.4167971383], [2.098, 1.04559231028, 1781.0313497194], [1.868, 1.12487729469, 618.5566453116], [1.885, 2.78775930564, 1802.3719907218], [1.445, 0.08308050305, 1382.8873468466], [1.797, 3.00776822706, 2648.454825473], [1.422, 0.17649746278, 2420.9286360334], [1.129, 1.5903029132, 380.12776796], [1.126, 4.199896736, 547.8502123593], [1.186, 5.98943062173, 2310.722314814], [1.108, 4.22655117757, 934.9485149682], [1.259, 1.19687222266, 1063.3140834523], [1.072, 3.86169004168, 1603.2999892854], [0.946, 5.59968097387, 99.9113804809], [0.937, 1.0308327676, 81.7521332162], [0.938, 6.18136092771, 945.9942152321], [0.908, 2.54355964041, 6283.0758499914], [0.874, 5.21903196047, 2207.6295405954], [0.874, 6.01240284465, 511.5317178299], [1.188, 0.75698357968, 2097.423219376], [0.789, 3.91035208173, 10213.285546211], [1.0, 1.34667100304, 732.6951197941], [0.952, 1.5535577742, 2324.9494088156], [0.811, 5.00475553271, 319.5732633943], [0.763, 3.9852755963, 337.732510659], [0.88, 1.14789972199, 952.3570027075], [0.78, 4.6946331693, 5746.271337896], [0.91, 0.08774541571, 2737.32050569], [0.773, 0.77131695762, 5760.4984318976], [0.764, 6.11686539353, 9676.4810341156], [0.758, 2.1935071986, 9690.7081281172], [0.671, 1.19532387143, 124.433415221], [0.661, 5.99578306627, 501.2367770914], [0.729, 0.65312263578, 2538.2485042536], [0.825, 2.70770030205, 3370.1042450032], [0.67, 5.44169923277, 107.0249274817], [0.739, 1.14609907817, 2641.3412784722], [0.866, 3.02831268213, 3046.5988283458], [0.718, 4.83684196454, 860.3099287528], [0.813, 6.01229270247, 2214.7430875962], [0.746, 1.12371143332, 739.8086667949], [0.741, 5.9317166201, 2634.2277314714], [0.667, 0.89885058003, 106.2741679563], [0.573, 2.42701822581, 739.0579072695], [0.734, 0.72837704619, 1354.4331588434], [0.662, 2.2176897639, 2015.6710861598], [0.782, 2.52401202862, 3679.382567659], [0.779, 2.38608991574, 3267.0114707846], [0.553, 1.85211127676, 453.424893819], [0.701, 4.23431087374, 9683.5945811164], [0.571, 2.98435419019, 1262.3860848887], [0.621, 1.2446288744, 3803.81598288], [0.563, 5.99845316446, 1049.0869894507], [0.538, 4.92334194042, 447.7958195265], [0.534, 0.99911551571, 462.0229135281], [0.541, 6.19275150397, 1987.2168981566], [0.511, 3.2855327837, 4.665866446], [0.539, 5.33214565622, 2751.5475996916], [0.651, 5.12199308959, 3156.8051495652], [0.483, 3.03782387056, 3281.2385647862], [0.476, 2.17592053936, 149.5631971346], [0.51, 5.35664230912, 9.5612275556], [0.49, 1.57324553106, 1251.3403846248], [0.467, 5.9234342384, 203.0041546995], [0.528, 5.81786945766, 2627.1141844706], [0.447, 3.51498961805, 18.1592472647], [0.429, 0.16627197188, 74.7815985673], [0.497, 0.30985248432, 2428.0421830342], [0.516, 3.89424540015, 2516.9078632512], [0.519, 2.43126348834, 3686.4961146598], [0.404, 2.77840802846, 7.1617311106], [0.533, 4.77083438961, 3473.1970192218], [0.515, 3.54549816613, 3178.1457905676], [0.533, 5.61415688189, 2524.021410252], [0.458, 4.91616403047, 3067.9394693482], [0.4, 3.13887720912, 540.7366653585], [0.378, 0.8612245094, 525.0250986486]], [[3519.257, 6.05800633846, 529.6909650946], [1073.239, 1.6732134576, 536.8045120954], [915.666, 1.41329676116, 522.5774180938], [341.593, 0.52296542656, 1059.3819301892], [254.893, 1.19625473533, 7.1135470008], [221.512, 0.95225226237, 515.463871093], [69.078, 2.26885282314, 1066.49547719], [89.729, 3.14159265359, 0.0], [57.827, 1.41389745339, 543.9180590962], [57.653, 0.52580117593, 639.897286314], [51.079, 5.98016364677, 412.3710968744], [46.935, 1.57864237959, 625.6701923124], [42.824, 6.11689609099, 419.4846438752], [37.477, 1.1826276233, 14.2270940016], [33.816, 1.66671706951, 1052.2683831884], [31.195, 1.04290245896, 1589.0728952838], [30.023, 4.63236245032, 426.598190876], [33.531, 0.84784977903, 206.1855484372], [20.804, 2.50071243814, 728.762966531], [14.466, 0.96040197071, 508.3503240922], [12.969, 1.5023378855, 1045.1548361876], [11.654, 3.55513510121, 323.5054166574], [12.319, 2.60952614503, 735.8765135318], [15.023, 0.89136998434, 199.0720014364], [11.16, 1.79041437555, 309.2783226558], [10.554, 6.27845112678, 956.2891559706], [9.812, 6.26016859519, 103.0927742186], [9.301, 3.45126812476, 838.9692877504], [6.672, 1.87004905364, 302.164775655], [7.442, 1.28047007623, 742.9900605326], [7.178, 0.92022189637, 942.062061969], [5.577, 1.37980792905, 95.9792272178], [6.834, 3.45228722967, 831.8557407496], [4.632, 2.82934545414, 1596.1864422846], [3.969, 1.21290005054, 1169.5882514086], [3.869, 5.99495313698, 213.299095438], [3.551, 6.10714791535, 405.2575498736], [2.943, 2.32831075458, 1155.361157407], [2.442, 1.86965213405, 532.8723588323], [2.41, 0.42627205128, 220.4126424388], [2.289, 1.94941487274, 1073.6090241908], [2.274, 0.09211517505, 632.7837393132], [2.189, 1.58907745204, 2118.7638603784], [2.387, 5.97080671477, 1162.4747044078], [2.104, 1.06751462671, 21.3406410024], [2.128, 1.51119399925, 1258.4539316256], [2.491, 0.35125020737, 1272.6810256272], [2.006, 5.9448738836, 110.2063212194], [1.98, 2.54989377864, 88.865680217], [2.04, 2.16463966964, 433.7117378768], [1.955, 2.70341589777, 721.6494195302], [1.67, 4.46255717328, 853.196381752], [1.91, 2.25964760758, 1361.5467058442], [1.71, 1.98372066321, 525.7588118315], [1.52, 0.11641358425, 949.1756089698], [2.003, 3.16520599208, 1148.2476104062], [1.71, 2.70850417287, 330.6189636582], [1.629, 0.47376028854, 526.5095713569], [1.229, 3.01987279595, 963.4027029714], [1.671, 0.44352103086, 533.6231183577], [1.207, 1.15774089269, 1574.8458012822], [1.146, 2.54505851138, 846.0828347512], [1.355, 1.17462112647, 1038.0412891868], [1.001, 2.70272799283, 519.3960243561], [1.372, 0.67467128629, 551.031606097], [0.983, 4.17198081351, 2627.1141844706], [1.084, 1.07011164067, 227.5261894396], [0.892, 2.92543286761, 1368.660252845], [0.823, 4.86559196955, 611.4430983108], [1.136, 1.78981738432, 1581.959348283], [0.897, 4.9107363027, 1670.8250285], [0.908, 3.6880404733, 824.7421937488], [0.789, 3.2338089325, 2125.8774073792], [0.771, 2.39070707004, 2317.8358618148], [0.891, 0.59692950778, 539.9859058331], [0.876, 4.52127091462, 750.1036075334], [0.802, 0.20759322884, 1141.1340634054], [0.85, 0.94145487094, 191.9584544356], [0.762, 2.25149516048, 2538.2485042536], [0.694, 0.67080348659, 440.8252848776], [0.741, 5.79934203525, 1485.9801210652], [0.643, 2.48127580335, 1265.5674786264], [0.575, 6.13756590872, 1279.794572628], [0.636, 5.51001645505, 2413.8150890326], [0.636, 4.40777238491, 1382.8873468466], [0.555, 2.18233983981, 1062.5633239269], [0.564, 1.92775967119, 2634.2277314714], [0.531, 2.04824376019, 295.0512286542], [0.541, 2.32424368689, 1471.7530270636], [0.697, 2.27179476322, 1699.2792165032], [0.546, 1.9577490573, 1677.9385755008], [0.465, 4.35550844067, 1692.1656695024], [0.508, 2.50298248836, 2207.6295405954], [0.496, 5.77087043616, 1478.8665740644], [0.44, 5.98661963879, 934.9485149682], [0.424, 2.80194129521, 81.7521332162], [0.406, 3.93940190897, 316.3918696566], [0.506, 0.18719982992, 10.2949407385]], [[128.628, 0.08419309557, 536.8045120954], [113.458, 4.24858855779, 529.6909650946], [82.65, 3.29754909408, 522.5774180938], [37.883, 2.73326611144, 515.463871093], [26.694, 5.69142588558, 7.1135470008], [17.65, 5.40012536918, 1059.3819301892], [12.612, 6.01560416057, 543.9180590962], [9.287, 0.76813946494, 1066.49547719], [8.107, 5.68228065707, 14.2270940016], [6.271, 5.12286932534, 639.897286314], [6.978, 1.42751292055, 412.3710968744], [5.377, 3.33501947275, 625.6701923124], [2.911, 3.40334805052, 1052.2683831884], [2.593, 4.16090412984, 728.762966531], [2.562, 2.89802035072, 426.598190876], [2.268, 6.22195938856, 1589.0728952838], [2.114, 3.11758855774, 1045.1548361876], [1.673, 2.81399290364, 206.1855484372], [1.805, 2.60030006919, 199.0720014364], [1.823, 1.89432426038, 419.4846438752], [1.522, 1.33432648232, 1596.1864422846], [1.697, 0.0, 0.0], [1.039, 4.41904942302, 956.2891559706], [1.161, 5.16181311538, 831.8557407496], [0.916, 3.17245716108, 508.3503240922], [0.87, 5.793878135, 1169.5882514086], [0.916, 1.87129662931, 1148.2476104062], [0.955, 0.66801367802, 1361.5467058442], [0.788, 1.47515450553, 1272.6810256272], [0.966, 5.47457968043, 220.4126424388], [0.788, 2.42252866885, 117.3198682202], [0.712, 0.4965589703, 1073.6090241908], [0.656, 3.53022740783, 302.164775655], [0.681, 2.8450717434, 191.9584544356], [0.771, 2.19893222018, 942.062061969], [0.765, 5.311472577, 551.031606097], [0.667, 3.72432305249, 88.865680217], [0.534, 1.83172084748, 647.0108333148], [0.553, 0.85896003802, 330.6189636582], [0.543, 5.26057584439, 21.3406410024], [0.584, 3.82243061802, 618.5566453116], [0.512, 4.44485521707, 110.2063212194], [0.612, 1.59320941864, 3.1813937377], [0.631, 1.83863158533, 10.2949407385], [0.491, 1.52912023181, 405.2575498736], [0.521, 0.24011424451, 433.7117378768]], [[11.188, 4.75249399945, 536.8045120954], [4.255, 5.9151622917, 522.5774180938], [2.079, 5.56781555864, 515.463871093], [1.908, 4.29659647286, 543.9180590962], [1.875, 3.69357495838, 7.1135470008], [1.59, 5.49312796166, 1066.49547719], [1.612, 4.13222808529, 1059.3819301892], [1.24, 3.77981722506, 14.2270940016], [1.033, 4.50671820436, 529.6909650946]]]

This table contains Jupiter’s periodic terms (all of them) from the planetary theory VSOP87 for the radius vector at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 432-434.

Mars

Class to model Mars planet.

class pymeeus.Mars.Mars[source]

Class Mars models that planet.

__weakref__

list of weak references to the object (if defined)

static apparent_heliocentric_position(epoch)[source]

This method computes the apparent heliocentric position of planet Mars for a given epoch, using the VSOP87 theory.

Parameters:epoch (Epoch) – Epoch to compute Mars position, as an Epoch object
Returns:A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order
Return type:tuple
Raises:TypeError if input values are of wrong type.
static conjunction(epoch)[source]

This method computes the time of the conjunction closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired conjunction
Returns:The time when the conjunction happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 10, 1.0)
>>> conj = Mars.conjunction(epoch)
>>> y, m, d = conj.get_date()
>>> print(y)
1993
>>> print(m)
12
>>> print(round(d, 4))
27.0898
static geocentric_position(epoch)[source]

This method computes the geocentric position of Mars (right ascension and declination) for the given epoch, as well as the elongation angle.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing the right ascension, the declination and the elongation angle as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 12, 20.0)
>>> ra, dec, elon = Mars.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
7h 48' 35.4''
>>> print(dec.dms_str(n_dec=1))
24d 35' 33.9''
>>> print(elon.dms_str(n_dec=1))
153d 35' 1.6''
static geometric_heliocentric_position(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of planet Mars for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Mars position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2018, 10, 27.0)
>>> l, b, r = Mars.geometric_heliocentric_position(epoch)
>>> print(round(l.to_positive(), 4))
2.0015
>>> print(round(b, 4))
-1.3683
>>> print(round(r, 5))
1.39306
static magnitude(sun_dist, earth_dist, phase_angle)[source]

This function computes the approximate magnitude of Mars.

Parameters:
  • sun_dist (float) – Distance from Mars to the Sun, in Astronomical Units
  • earth_dist (float) – Distance from Mars to Earth, in Astronomical Units
  • phase_angle (float, Angle) – Mars phase angle
Returns:

Mars’ magnitude

Return type:

float

Raises:

TypeError if input values are of wrong type.

static opposition(epoch)[source]

This method computes the time of the opposition closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:The time when the opposition happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2729, 10, 1.0)
>>> oppo = Mars.opposition(epoch)
>>> y, m, d = oppo.get_date()
>>> print(y)
2729
>>> print(m)
9
>>> print(round(d, 4))
9.1412
static orbital_elements_j2000(epoch)[source]

This method computes the orbital elements of Mars for the standard equinox J2000.0 for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Mars.orbital_elements_j2000(epoch)
>>> print(round(l, 6))
287.94027
>>> print(round(a, 8))
1.52367934
>>> print(round(e, 7))
0.0934599
>>> print(round(i, 6))
1.844381
>>> print(round(ome, 5))
49.36464
>>> print(round(arg, 6))
286.98617
static orbital_elements_mean_equinox(epoch)[source]

This method computes the orbital elements of Mars for the mean equinox of the date for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Mars.orbital_elements_mean_equinox(epoch)
>>> print(round(l, 6))
288.855211
>>> print(round(a, 8))
1.52367934
>>> print(round(e, 7))
0.0934599
>>> print(round(i, 6))
1.849338
>>> print(round(ome, 5))
50.06365
>>> print(round(arg, 6))
287.202108
static passage_nodes(epoch, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of Mars, nearest to the given epoch.

Parameters:
  • epoch (Epoch) – Epoch closest to the node passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2019, 1, 1)
>>> time, r = Mars.passage_nodes(epoch)
>>> year, month, day = time.get_date()
>>> print(year)
2019
>>> print(month)
1
>>> print(round(day, 1))
15.2
>>> print(round(r, 4))
1.4709
static perihelion_aphelion(epoch, perihelion=True)[source]

This method computes the time of Perihelion (or Aphelion) closer to a given epoch.

Parameters:
  • epoch (Epoch) – Epoch close to the desired Perihelion (or Aphelion)
  • peihelion – If True, the epoch of the closest Perihelion is computed, if False, the epoch of the closest Aphelion is found.
Returns:

The epoch of the desired Perihelion (or Aphelion)

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2019, 2, 23.0)
>>> e = Mars.perihelion_aphelion(epoch)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2018
>>> print(m)
9
>>> print(d)
16
>>> print(h)
12
>>> epoch = Epoch(2032, 1, 1.0)
>>> e = Mars.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2032
>>> print(m)
10
>>> print(d)
24
>>> print(h)
22
static station_longitude_1(epoch)[source]

This method computes the time of the 1st station in longitude (i.e. when the planet is stationary and begins to move westward - retrograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:Time when the 1st station in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1997, 3, 1.0)
>>> sta1 = Mars.station_longitude_1(epoch)
>>> y, m, d = sta1.get_date()
>>> print(y)
1997
>>> print(m)
2
>>> print(round(d, 4))
6.033
static station_longitude_2(epoch)[source]

This method computes the time of the 2nd station in longitude (i.e. when the planet is stationary and begins to move eastward - prograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:Time when the 2nd station in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1997, 3, 1.0)
>>> sta2 = Mars.station_longitude_2(epoch)
>>> y, m, d = sta2.get_date()
>>> print(y)
1997
>>> print(m)
4
>>> print(round(d, 4))
27.7553
pymeeus.Mars.ORBITAL_ELEM = [[355.433, 19141.6964471, 0.00031052, 1.6e-08], [1.523679342, 0.0, 0.0, 0.0], [0.09340065, 9.0484e-05, -8.06e-08, -2.5e-10], [1.849726, -0.0006011, 1.276e-05, -7e-09], [49.558093, 0.7720959, 1.557e-05, 2.267e-06], [336.060234, 1.8410449, 0.00013477, 5.36e-07]]

This table contains the parameters to compute Mars’ orbital elements for the mean equinox of date. Based in Table 31.A, page 212

pymeeus.Mars.ORBITAL_ELEM_J2000 = [[355.433, 19140.2993039, 2.62e-06, -3e-09], [1.849726, -0.0081477, -2.255e-05, -2.9e-08], [49.558093, -0.295025, -0.00064048, -1.964e-06], [336.060234, 0.4439016, -0.00017313, 5.18e-07]]

This table contains the parameters to compute Mars’ orbital elements for the standard equinox J2000.0. Based on Table 31.B, page 214

pymeeus.Mars.VSOP87_B = [[[3197134.986, 3.76832042432, 3340.6124266998], [298033.234, 4.10616996243, 6681.2248533996], [289104.742, 0.0, 0.0], [31365.538, 4.44651052853, 10021.8372800994], [3484.1, 4.78812547889, 13362.4497067992], [442.999, 5.65233015876, 3337.0893083508], [443.401, 5.02642620491, 3344.1355450488], [399.109, 5.130568147, 16703.062133499], [292.506, 3.79290644595, 2281.2304965106], [181.982, 6.13648011704, 6151.533888305], [163.159, 4.26399626634, 529.6909650946], [159.678, 2.23194610246, 1059.3819301892], [139.323, 2.41796344238, 8962.4553499102], [149.297, 2.16501209917, 5621.8429232104], [142.686, 1.1821501611, 3340.5951730476], [142.685, 3.2129218082, 3340.629680352], [82.544, 5.36667872319, 6684.7479717486], [73.64, 5.09187524843, 398.1490034082], [72.66, 5.53775710437, 6283.0758499914], [86.377, 5.74429648412, 3738.761430108], [83.276, 5.98866315739, 6677.7017350506], [60.116, 3.67960808826, 796.2980068164], [63.111, 0.73049113369, 5884.9268465832], [62.338, 4.85071999184, 2942.4634232916], [46.951, 5.54339723804, 3340.545116397], [46.953, 5.13486627234, 3340.6797370026], [46.63, 5.47361665459, 20043.6745601988], [45.588, 2.13262507507, 2810.9214616052], [41.269, 0.20003189001, 9492.1463150048], [47.199, 4.52184736343, 3149.1641605882], [38.54, 4.08008443274, 4136.9104335162], [33.069, 4.06581918329, 1751.539531416], [29.694, 5.92218297386, 3532.0606928114], [32.736, 2.62071056958, 2914.0142358238], [29.521, 2.75342566734, 12303.06777661], [28.169, 2.06282533993, 5486.777843175], [28.618, 4.94710527914, 3870.3033917944], [26.603, 3.5508584402, 6681.2421070518], [26.603, 1.52008675291, 6681.2075997474], [23.336, 2.27624532707, 1589.0728952838], [26.052, 2.60064548916, 4399.994356889], [22.637, 2.27507466406, 1194.4470102246], [18.887, 6.04416196149, 7079.3738568078], [14.846, 3.41358603159, 5088.6288397668], [19.947, 2.67365368471, 8432.7643848156], [14.682, 5.89211938785, 9623.6882766912], [14.152, 2.42512744356, 3333.498879699], [13.31, 2.62839773036, 426.598190876], [14.008, 1.67425558329, 6254.6266625236], [15.104, 2.81013535571, 3496.032826134], [13.011, 5.70759434129, 10025.3603984484], [12.08, 1.51804981987, 3185.1920272656], [13.183, 0.04521207632, 10018.3141617504], [11.554, 5.5741897182, 191.4482661116], [11.196, 0.55829576311, 5092.1519581158], [11.53, 2.13314819584, 11773.3768115154], [10.435, 5.72414012635, 6467.9257579616], [9.846, 0.86942245495, 1592.5960136328], [9.761, 1.0934228866, 2544.3144198834], [8.754, 5.47281660412, 6681.2921637024], [8.937, 4.8379038561, 6489.776587288], [8.652, 4.72118876809, 213.299095438], [8.797, 2.86597575792, 3341.592747768], [8.384, 2.65895230037, 4535.0594369244], [8.213, 4.8260813471, 3553.9115221378], [8.799, 1.52910882795, 3339.6321056316], [8.103, 1.00994045172, 9225.539273283], [8.754, 5.88131160438, 6681.1575430968], [7.209, 4.41679446871, 7477.522860216], [8.56, 4.79003986337, 4690.4798363586], [6.087, 1.89071507516, 9595.2390892234], [6.974, 0.53246284561, 12832.7587417046], [5.584, 6.18909308524, 4292.3308329504], [5.038, 6.06393121994, 7210.9158184942], [5.126, 0.11856805, 4562.4609930212], [4.863, 1.33051301524, 3894.1818295422], [5.592, 3.97792577165, 3127.3133312618], [4.965, 5.74589127183, 1990.745017041], [5.53, 5.81711987294, 23384.2869868986], [4.184, 3.88899446923, 10021.8545337516], [4.184, 1.8582188554, 10021.8200264472], [4.685, 1.11750235736, 3319.8370312074], [3.954, 2.65573703692, 4929.6853219836], [5.174, 3.62343554596, 2700.7151403858], [4.639, 6.14089337232, 7.1135470008], [4.686, 3.27731664264, 3361.3878221922], [4.999, 3.09121636067, 15643.6802033098], [3.919, 2.96552252075, 7740.6067835888], [3.361, 1.85016770821, 2957.7158944766], [4.246, 4.1963927863, 2146.1654164752], [4.101, 6.22532797325, 10213.285546211], [3.124, 0.08536218671, 10419.9862835076], [3.079, 2.41163389513, 3344.2028553516], [3.093, 1.98041729732, 3337.021998048], [3.044, 4.38894419912, 1221.8485663214], [2.879, 2.93292197885, 2787.0430238574], [3.372, 4.45558202843, 6674.1113063988], [2.51, 4.06249795775, 6872.6731195112], [2.616, 1.23659420897, 4933.2084403326], [3.011, 4.33965766608, 2388.8940204492], [3.094, 2.40385309455, 2118.7638603784], [2.516, 2.30275910483, 3723.508958923], [2.192, 1.688775987, 639.897286314], [2.157, 6.07600403318, 9808.5381846614], [2.686, 2.38172448359, 15113.9892382152], [2.156, 2.87771528495, 6041.3275670856], [2.495, 3.87395320804, 7903.073419721], [2.253, 0.47469626036, 3475.6775067352], [2.443, 3.02632351975, 3767.2106175758], [1.937, 0.38000997629, 13358.9265884502], [2.213, 3.9198232636, 3205.5473466644], [2.385, 6.23883456815, 12964.300703391], [1.806, 2.38408432339, 11243.6858464208], [2.265, 1.8577388518, 6525.8044539654], [1.642, 1.86812936557, 6680.2445323314], [1.616, 3.39954231101, 8429.2412664666], [1.646, 0.73261192032, 2274.1169495098], [1.91, 6.04319894051, 13365.9728251482], [1.492, 2.9936092905, 7875.6718636242], [1.567, 1.76860259924, 382.8965322232], [1.459, 1.40571286543, 14584.2982731206], [1.527, 5.79343536555, 6894.5239488376], [1.409, 5.17099876287, 9830.3890139878], [1.665, 3.60183854165, 2288.3440435114], [1.616, 2.1944777548, 8827.3902698748], [1.746, 0.10485504333, 3583.3410306738], [1.637, 3.20410489018, 6682.2051744678], [1.269, 2.02253791623, 155.4203994342], [1.507, 5.80795976424, 1748.016413067], [1.296, 2.92899986522, 9381.9399937854], [1.291, 2.98932404463, 6836.6452528338], [1.377, 5.8098082145, 10021.9045904022], [1.357, 0.32856318286, 4032.7700279266], [1.377, 6.21830533138, 10021.7699697966], [1.227, 2.20421067322, 12935.8515159232], [1.08, 4.75502761725, 10818.1352869158], [1.016, 1.33950348904, 12566.1516999828], [1.083, 0.87622049125, 16173.3711684044], [0.957, 5.29505019432, 1066.49547719], [1.035, 2.44286811558, 1052.2683831884], [1.153, 4.73786864168, 8031.0922630584], [1.042, 1.73541825729, 3369.0616141676], [0.899, 1.87265511538, 3077.528503327], [0.892, 2.51347636401, 3603.6963500726], [0.904, 0.27361540197, 3325.3599555148], [0.883, 5.4653793674, 5614.7293762096], [0.949, 0.04595688771, 7064.1213856228], [0.872, 3.61205859852, 6702.000248892], [0.842, 5.61713543212, 8955.3418029094], [0.842, 0.57536275896, 3191.0492295652], [0.904, 4.11832249537, 3355.8648978848], [1.044, 2.6588954211, 3312.163239232], [0.807, 2.2644325982, 8969.568896911], [1.046, 6.11317298058, 5331.3574437408], [0.933, 0.82551054416, 3503.079062832], [0.946, 1.92368414869, 5628.9564702112], [0.978, 4.55697167317, 3097.88382272579], [0.846, 4.65096242323, 6438.4962494256], [0.901, 1.46788821922, 6660.4494579072], [0.739, 4.97716008834, 10014.7237330986], [0.762, 3.42576079312, 18984.2926300096], [0.934, 0.35014113954, 3264.3463554242], [0.894, 0.34991139502, 10551.528245194], [0.665, 6.05561837558, 7632.9432596502], [0.605, 4.68480399923, 5729.506447149], [0.593, 2.97207045977, 3178.1457905676], [0.617, 2.19529512598, 13362.432453147], [0.579, 3.32303439858, 11081.2192102886], [0.579, 2.31217959727, 6677.6344247478], [0.572, 4.27984088783, 6546.1597733642], [0.584, 4.51625727923, 1648.4467571974], [0.626, 4.60715188203, 2487.4160449478], [0.649, 2.17894376907, 6298.3283211764], [0.617, 4.22635718375, 13362.4669604514], [0.55, 3.11161314141, 6144.4203413042], [0.551, 3.27081871281, 6127.6554505572], [0.536, 0.18973312148, 3346.1353510072], [0.557, 6.13686769377, 26724.8994135984], [0.571, 5.6534146366, 2921.1277828246], [0.552, 5.75724124958, 149.5631971346], [0.638, 4.49647258906, 3.523118349], [0.552, 1.07795672495, 536.8045120954], [0.537, 4.19207200801, 3335.0895023924], [0.567, 2.62806466971, 2648.454825473], [0.641, 3.24534699403, 3347.7259737006], [0.546, 2.76744357149, 5459.3762870782], [0.556, 4.98610303145, 6531.661656265], [0.578, 2.74445077242, 6684.8152820514], [0.613, 3.01718810256, 8270.2977486834], [0.558, 5.89236366633, 6158.6474353058], [0.489, 4.59082197201, 522.5774180938], [0.445, 3.64293918046, 10713.9948813262], [0.539, 0.59284523316, 553.5694028424], [0.434, 1.99641894213, 26087.9031415742], [0.459, 4.84216944554, 1758.6530784168], [0.423, 3.77854586358, 6688.3384004004], [0.421, 3.10245838137, 8329.671610597], [0.421, 4.43540354818, 103.0927742186], [0.502, 3.0314151263, 3360.96774609859], [0.422, 5.99158563064, 242.728603974], [0.401, 2.06012045711, 3980.5097130138], [0.41, 5.85255605682, 3351.2490920496], [0.375, 2.5080334092, 6784.3176276182], [0.407, 0.3011732839, 16304.9131300908], [0.507, 1.350164178, 3320.257107301], [0.385, 1.06248122739, 7234.794256242], [0.519, 4.61705823333, 7373.3824546264], [0.401, 0.51161484292, 17085.9586657222], [0.371, 0.41707432281, 13760.5987102074], [0.476, 0.81142637639, 6816.289933435], [0.348, 3.36497054127, 8439.8779318164], [0.366, 6.05186692577, 3607.2194684216], [0.402, 2.67375675473, 18454.601664915], [0.439, 0.41122589061, 10404.7338123226], [0.412, 4.81039654306, 3329.97576135], [0.413, 0.21011211689, 13149.1506113612], [0.363, 2.19017574725, 9866.4168806652], [0.337, 5.46398740226, 6604.958782124], [0.34, 1.7339266228, 1692.1656695024], [0.344, 3.58310197017, 7107.8230442756], [0.42, 2.77274750272, 2906.900688823], [0.335, 2.02339633221, 3333.5661900018], [0.336, 2.78173647754, 4989.0591838972], [0.354, 5.41265456299, 951.7184062506], [0.328, 0.43464916253, 6923.9534573736], [0.422, 1.5759173708, 8273.8208670324], [0.324, 4.99165215532, 11371.7046897582], [0.351, 4.60766539695, 3074.005384978], [0.333, 4.86991808664, 3863.1898447936], [0.319, 1.44510282827, 11769.8536931664], [0.296, 5.25637576704, 76.2660712756], [0.349, 1.62483962938, 17924.9106998204], [0.293, 2.20643287367, 3347.6586633978], [0.315, 4.5522730677, 5828.0284716476], [0.28, 1.4213429154, 6606.4432548323], [0.336, 1.56854533505, 1581.959348283], [0.343, 0.27605726543, 10973.55568635], [0.271, 0.08314924409, 10235.1363755374], [0.28, 0.76436434398, 853.196381752], [0.317, 4.91466081381, 3443.7052009184], [0.257, 0.15709629188, 12168.0026965746], [0.237, 3.13380421805, 74.7815985673], [0.271, 1.83008759256, 3399.9862886134], [0.233, 3.20163702613, 10177.2576795336], [0.312, 0.28436027987, 13745.3462390224], [0.273, 4.53535816659, 3344.4937620578], [0.235, 0.67980074869, 17395.2197347258], [0.262, 3.84436620806, 9168.6408983474], [0.271, 4.94509131052, 692.1576012268], [0.254, 2.19491751584, 3281.2385647862], [0.22, 1.65400798925, 3546.797975137], [0.283, 5.57884389098, 3973.396166013], [0.229, 5.93153003758, 3364.4908644476], [0.223, 4.82744958322, 9779.1086761254], [0.222, 0.71788606092, 16699.53901514999], [0.219, 0.09831940529, 16706.585251848], [0.221, 1.66596576205, 10575.4066829418], [0.259, 1.10208840059, 1744.4259844152], [0.243, 1.52425310144, 14054.607308026], [0.273, 6.12932898811, 3336.7310913418], [0.232, 4.73422268172, 3316.733988952], [0.21, 5.97305256642, 419.4846438752], [0.213, 5.35378111313, 1596.1864422846], [0.197, 3.32400761027, 5085.038411115], [0.193, 0.90522037315, 14314.1681130498], [0.192, 2.63243342989, 433.7117378768], [0.188, 1.14983778034, 13892.1406718938], [0.2, 4.79567916236, 6261.7402095244], [0.204, 2.3227216771, 13916.0191096416], [0.191, 5.08454560792, 2178.137722292], [0.191, 5.88821293073, 3340.19235060619], [0.236, 0.97341490472, 3230.4061054804], [0.2, 3.60041329896, 3304.5845600224], [0.165, 2.91701234796, 3415.3940252671], [0.191, 4.7764733812, 3341.0325027934], [0.174, 2.20549134205, 10020.8569590312], [0.161, 2.64795288862, 3304.0070613956], [0.173, 3.54115285115, 10022.8176011676], [0.154, 2.45916882835, 12722.5524204852], [0.16, 1.73968020026, 3377.217792004], [0.196, 0.78013533938, 3376.6402933772], [0.153, 0.27328628499, 13362.3823964964], [0.19, 2.65143864216, 3657.0042963564], [0.172, 5.71092117488, 2384.3232707292], [0.157, 1.00235389487, 3209.0704650134], [0.15, 3.39592748537, 3472.1543883862], [0.165, 5.86551673354, 2803.8079146044], [0.154, 0.32136196834, 6665.9723822146], [0.178, 3.34059693754, 11216.284290324], [0.192, 0.66079944629, 3134.4268782626], [0.161, 2.87915391245, 4392.8808098882], [0.159, 3.72249746113, 13517.8701062334], [0.168, 0.55746622745, 110.2063212194], [0.158, 5.67248197213, 4407.1079038898], [0.161, 1.76789928464, 6709.6740408674], [0.158, 5.50643845256, 13171.0014406876], [0.129, 1.21297315367, 19513.9835951042], [0.173, 0.17070148373, 3024.2205570432], [0.132, 4.25407099272, 16858.4825329332], [0.125, 2.88510294667, 17256.6315363414], [0.124, 2.59724598646, 12310.1813236108], [0.17, 4.05945259741, 2818.035008606], [0.121, 5.23997785185, 9872.2740829648], [0.142, 3.02798835989, 3511.285297319], [0.165, 2.53171951288, 16276.463942623], [0.153, 6.14783670557, 13362.517017102], [0.119, 4.15694365082, 3760.097070575], [0.12, 0.64287725481, 4459.3682188026], [0.13, 4.9500230946, 13553.8979729108], [0.12, 0.17087854222, 8671.9698704406], [0.112, 0.16822264326, 135.0650800354], [0.137, 3.34809361979, 3341.0423098265], [0.125, 1.32195559043, 1349.8674096588], [0.111, 3.14151030451, 13524.9163429314], [0.119, 5.9536134805, 12295.9542296092], [0.131, 5.09769375731, 14158.7477136156], [0.141, 1.37128440708, 3169.9395560806], [0.112, 3.35831868034, 5989.0672521728], [0.104, 5.00696041032, 13119.72110282519], [0.11, 5.23317664736, 1375.7737998458], [0.105, 2.72692368303, 1162.4747044078], [0.104, 1.73769165705, 2221.856634597], [0.137, 1.0457695039, 3340.1825435731], [0.106, 6.13415161313, 162.4666361322], [0.119, 2.63312561442, 7321.1221397136], [0.105, 3.09551802365, 20618.0193585336], [0.099, 4.25515697974, 23539.7073863328], [0.108, 1.01854506729, 3265.8308281325], [0.119, 4.07277528003, 10184.3039162316], [0.096, 1.81122023425, 10001.061884607], [0.093, 3.58905885066, 5099.2655051166], [0.095, 4.94756054764, 3981.490034082], [0.094, 5.3749336802, 13355.3361597984], [0.095, 0.13037485775, 15508.6151232744], [0.103, 0.43484130196, 1861.7458526354], [0.09, 3.76370412628, 22324.9050567094], [0.091, 3.95041101283, 10042.6126755918], [0.106, 4.30186500383, 640.8776073822], [0.109, 6.18873749839, 1478.8665740644], [0.088, 1.79608901332, 6247.5131155228], [0.102, 5.58754073056, 2766.267628365], [0.11, 0.94707767481, 3274.1250177854], [0.084, 4.45487801845, 6696.4773245846], [0.085, 2.74791518135, 3407.0998356142], [0.087, 4.51145821088, 220.4126424388], [0.101, 5.94930983227, 8425.6508378148], [0.082, 0.01837230371, 9499.2598620056], [0.08, 0.4255098998, 18052.9295431578], [0.083, 2.96589752213, 6652.7756659318], [0.08, 4.61446168762, 3914.9572250346], [0.079, 1.50228636499, 2111.6503133776], [0.089, 3.52977975496, 9485.032768004], [0.086, 0.41976545794, 956.2891559706], [0.088, 5.46013317934, 16460.33352952499], [0.091, 2.09965252231, 949.1756089698], [0.104, 1.72206104768, 3296.8935143948], [0.103, 1.25691413032, 3384.3313390048], [0.084, 5.78647729498, 5518.7501489918], [0.079, 1.79313426804, 38.1330356378], [0.073, 0.10667695992, 29822.7832363242], [0.087, 2.11654357529, 3450.8187479192], [0.072, 3.89476829327, 9380.9596727172], [0.075, 2.5934030534, 1964.838626854], [0.098, 4.01577665825, 6843.6914895318], [0.074, 5.32032289064, 11766.2632645146], [0.068, 0.04775525953, 2125.8774073792], [0.069, 6.07427052412, 26482.1708096244], [0.069, 2.050189992, 29424.634232916], [0.084, 0.16960920719, 263.0839233728], [0.068, 5.03013252197, 9070.1188738488], [0.076, 2.00296087293, 224.3447957019], [0.078, 2.17362706851, 30220.9322397324], [0.066, 3.85497672006, 19406.6782881746], [0.066, 5.70059718737, 33561.5446664322], [0.067, 0.16600936321, 22743.4093795164], [0.065, 4.65423392949, 2807.3983432562], [0.069, 3.34387224268, 11670.2840372968], [0.087, 4.9783802188, 1118.7557921028], [0.063, 0.1890710618, 30065.5118402982], [0.064, 4.61909647015, 9886.772200064], [0.073, 0.93706647938, 20735.83216142559], [0.06, 5.83757395809, 8646.0634802536], [0.062, 4.81389895867, 20199.094959633], [0.059, 5.00150762621, 6414.6178116778], [0.068, 3.84252763135, 6571.0185321802], [0.062, 2.81689634717, 6944.3087767724], [0.065, 4.49078808776, 632.7837393132], [0.058, 5.64889513615, 9945.5712088238], [0.07, 2.51605694403, 9638.9407478762], [0.057, 3.28105791201, 206.1855484372], [0.057, 2.97448265957, 21795.21409161479], [0.056, 2.23565630779, 20995.3929664494], [0.057, 1.88614831237, 18451.07854656599], [0.071, 4.82445647307, 8542.970706035], [0.061, 3.659450739, 14421.8316369884], [0.056, 3.13789031275, 8799.988713778], [0.057, 4.89927831599, 9602.3526362242], [0.065, 3.37109873211, 11610.9101753832], [0.067, 1.92945007459, 21265.5231265202], [0.055, 1.95164531764, 9588.1255422226], [0.057, 2.82240075154, 10124.930054318], [0.057, 6.10407356832, 19800.9459562248], [0.055, 5.20976473824, 3237.5196524812], [0.057, 4.12235760406, 10028.9508271002], [0.055, 1.41700952855, 15906.7641266826], [0.053, 2.16328741039, 6418.1409300268], [0.06, 2.64683840328, 10018.2468514476], [0.068, 5.36539876845, 1228.9621133222], [0.051, 5.73824213507, 6048.4411140864], [0.053, 0.31937174553, 12721.572099417], [0.051, 0.06312524105, 20206.141196331], [0.049, 4.53401402385, 6675.7019290922], [0.051, 1.15475560534, 10156.9023601348], [0.064, 4.5633226877, 16703.07938715119], [0.06, 3.61007443614, 9468.267877257], [0.059, 3.08413561767, 10025.4277087512], [0.064, 2.53229538141, 16703.0448798468], [0.056, 3.31988072467, 6518.7582172674], [0.047, 1.44559165677, 6643.0918177618], [0.05, 1.92342238827, 11614.4332937322], [0.047, 4.03794177027, 23958.6317852334], [0.046, 3.70927352724, 8859.3625756916], [0.06, 2.55506470511, 11780.4903585162], [0.047, 1.69256878711, 6660.8695340008], [0.044, 6.09481217162, 6460.8122109608], [0.044, 2.6304062214, 13936.794505134], [0.053, 0.77878945764, 16865.5287696312], [0.049, 1.8336854455, 17654.7805397496], [0.048, 0.52828042378, 6686.747777707], [0.042, 4.30347553493, 9065.5481241288], [0.042, 5.71964550673, 7203.8022714934], [0.041, 0.98427208931, 20426.571092422], [0.051, 3.54335413699, 20597.2439630412], [0.041, 0.21219617682, 7314.0085927128], [0.038, 2.53074981011, 13207.029307365], [0.039, 5.15577369902, 6670.5881880498], [0.051, 3.25271478667, 7799.9806455024], [0.049, 0.77060706107, 17101.2111369072], [0.038, 6.06684699984, 9389.0535407862], [0.043, 0.51983815091, 16489.763038061], [0.036, 0.84102576439, 23937.856389741]], [[350068.845, 5.36847836211, 3340.6124266998], [14116.03, 3.14159265359, 0.0], [9670.755, 5.47877786506, 6681.2248533996], [1471.918, 3.20205766795, 10021.8372800994], [425.864, 3.40843812875, 13362.4497067992], [102.039, 0.77617286189, 3337.0893083508], [78.848, 3.71768293865, 16703.062133499], [26.171, 2.48293558065, 2281.2304965106], [32.708, 3.45803723682, 5621.8429232104], [20.712, 1.44120802297, 6151.533888305], [18.294, 6.03102943125, 529.6909650946], [15.68, 3.93075566599, 8962.4553499102], [16.975, 4.81115186866, 3344.1355450488], [13.067, 0.97324736181, 6677.7017350506], [15.622, 2.78241383265, 3340.5951730476], [15.622, 4.81318636318, 3340.629680352], [13.771, 1.67983063909, 3532.0606928114], [12.711, 4.04546734935, 20043.6745601988], [14.268, 0.24640247719, 2942.4634232916], [12.493, 2.25620513522, 5884.9268465832], [8.8, 0.34079528233, 398.1490034082], [8.637, 1.75213704409, 2544.3144198834], [8.903, 5.95437916504, 2810.9214616052], [8.102, 0.84279830287, 6283.0758499914], [9.25, 4.35071778619, 3496.032826134], [8.085, 4.29614034209, 6684.7479717486], [5.811, 3.55479498415, 5092.1519581158], [5.864, 3.69652093329, 5486.777843175], [5.618, 0.03475872145, 3185.1920272656], [5.148, 0.85886443528, 3340.545116397], [5.145, 0.45169791514, 3340.6797370026], [4.898, 4.12922007874, 1059.3819301892], [3.471, 5.07253485267, 5088.6288397668], [3.102, 3.11487063736, 3339.6321056316], [3.013, 1.00910437496, 2914.0142358238], [3.171, 1.24730004776, 3738.761430108], [3.194, 2.86899092087, 1751.539531416], [2.304, 1.38460565999, 3870.3033917944], [2.233, 2.91238180064, 3894.1818295422], [2.792, 4.27117916474, 8432.7643848156], [2.431, 0.14615904873, 4690.4798363586], [2.577, 2.78651098185, 6254.6266625236], [1.996, 1.51200589223, 4292.3308329504], [1.86, 5.15222219319, 796.2980068164], [2.014, 5.48528849094, 3127.3133312618], [1.922, 4.37668623732, 23384.2869868986], [2.248, 4.46756441051, 10025.3603984484], [1.782, 2.70229954651, 4136.9104335162], [1.621, 2.26742355334, 3149.1641605882], [1.452, 1.53948251192, 9492.1463150048], [1.373, 3.20232312108, 2146.1654164752], [1.332, 5.6796683701, 1592.5960136328], [1.378, 4.12087865376, 3723.508958923], [1.215, 0.33914405698, 6674.1113063988], [1.168, 3.52407129935, 11773.3768115154], [1.179, 6.15475441355, 213.299095438], [1.173, 1.2603660844, 3341.592747768], [1.211, 0.97241747335, 6467.9257579616], [1.204, 0.95200561837, 10018.3141617504], [1.107, 1.44142157852, 2787.0430238574], [1.194, 0.84501638145, 1194.4470102246], [1.043, 3.98123209815, 12303.06777661], [1.029, 1.21951732572, 4535.0594369244], [0.939, 2.99716248257, 7477.522860216], [1.303, 1.12409937702, 4399.994356889], [1.032, 4.26592917807, 1990.745017041], [1.23, 0.37904885593, 6525.8044539654], [0.989, 2.37220445455, 9225.539273283], [0.946, 3.14940196742, 6489.776587288], [1.013, 5.90131661122, 3097.88382272579], [0.913, 2.86098924372, 2388.8940204492], [0.954, 4.90448639106, 3583.3410306738], [0.866, 4.92421595837, 6681.2421070518], [0.797, 4.53307543814, 7079.3738568078], [0.866, 2.89344915945, 6681.2075997474], [0.659, 0.33901474348, 2957.7158944766], [0.67, 3.23650405278, 9595.2390892234], [0.782, 1.56739177814, 3333.498879699], [0.641, 4.4691872125, 6836.6452528338], [0.611, 3.97393774087, 6041.3275670856], [0.738, 3.7871562478, 4562.4609930212], [0.558, 2.92718433901, 1589.0728952838], [0.513, 0.96852780537, 9623.6882766912], [0.508, 4.07262127921, 7.1135470008], [0.512, 1.53960708348, 7740.6067835888], [0.481, 3.51023225206, 155.4203994342], [0.528, 6.0619072177, 4933.2084403326], [0.558, 2.09491968451, 2288.3440435114], [0.445, 3.4243988628, 6680.2445323314], [0.482, 4.73460866232, 13365.9728251482], [0.534, 4.88536251621, 3361.3878221922], [0.52, 6.19100285186, 6438.4962494256], [0.441, 1.82408206251, 3325.3599555148], [0.487, 2.72879191049, 3319.8370312074], [0.417, 4.48716253276, 7903.073419721], [0.43, 0.62845892205, 5614.7293762096], [0.395, 4.89021898045, 10419.9862835076], [0.38, 1.91138845097, 3553.9115221378], [0.358, 4.21584518245, 426.598190876], [0.409, 4.53421956625, 3360.96774609859], [0.426, 5.47172830908, 3205.5473466644], [0.33, 1.00078638665, 8955.3418029094], [0.322, 2.42607399606, 2274.1169495098], [0.316, 3.2206408943, 1221.8485663214], [0.312, 3.66073476074, 3337.021998048], [0.31, 4.09100416919, 3344.2028553516], [0.295, 2.87635162282, 7210.9158184942], [0.329, 5.64440592793, 12832.7587417046], [0.306, 1.52567836482, 7875.6718636242], [0.284, 0.56373187712, 6681.2921637024], [0.358, 4.21258737082, 1052.2683831884], [0.347, 1.52200237477, 10213.285546211], [0.268, 3.57749600251, 9830.3890139878], [0.346, 1.65247014273, 6682.2051744678], [0.269, 4.4518241708, 9381.9399937854], [0.285, 0.97118840317, 6681.1575430968], [0.256, 3.67744143301, 1066.49547719], [0.269, 1.78448639785, 6127.6554505572], [0.312, 4.63751658715, 5331.3574437408], [0.317, 6.15274242841, 3320.257107301], [0.245, 4.71030710599, 26724.8994135984], [0.249, 3.31328995337, 10818.1352869158], [0.24, 4.87364672707, 6144.4203413042], [0.239, 1.35709001659, 7064.1213856228], [0.237, 3.19837233399, 5729.506447149], [0.278, 1.5084206034, 4929.6853219836], [0.274, 3.61160906396, 191.4482661116], [0.248, 3.93789974497, 11243.6858464208], [0.242, 2.57630671866, 3355.8648978848], [0.241, 1.89683861728, 15643.6802033098], [0.228, 0.71217112323, 9866.4168806652], [0.246, 0.16913226579, 2700.7151403858], [0.219, 0.03864812268, 522.5774180938], [0.215, 3.44260776071, 8827.3902698748], [0.206, 5.23615052385, 6923.9534573736], [0.202, 0.60277862639, 10021.8200264472], [0.226, 2.4333250327, 8429.2412664666], [0.202, 2.63373646725, 10021.8545337516], [0.199, 3.26545613445, 382.8965322232], [0.198, 4.50685315424, 242.728603974], [0.215, 2.12744795327, 553.5694028424], [0.177, 3.92599588022, 8031.0922630584], [0.162, 3.94498519498, 2921.1277828246], [0.199, 4.22948972595, 3312.163239232], [0.188, 0.67072289565, 6298.3283211764], [0.16, 2.90951395323, 6872.6731195112], [0.155, 1.24529852403, 3364.4908644476], [0.186, 2.44723831367, 3503.079062832], [0.139, 5.7549355704, 7632.9432596502], [0.149, 0.49665393273, 8969.568896911], [0.132, 4.97828413367, 1748.016413067], [0.13, 0.66881298338, 10014.7237330986], [0.128, 2.80753554051, 14584.2982731206], [0.176, 2.37291314099, 2118.7638603784], [0.127, 1.76223414864, 11081.2192102886], [0.127, 0.26234206855, 13358.9265884502], [0.163, 5.83356697025, 639.897286314], [0.129, 2.02607662846, 3346.1353510072], [0.155, 1.5718930764, 3767.2106175758], [0.133, 4.20989922795, 11371.7046897582], [0.114, 2.12636383988, 6688.3384004004], [0.13, 1.33114943655, 3347.7259737006], [0.11, 5.78893316282, 16173.3711684044], [0.105, 3.27202438053, 15113.9892382152], [0.117, 5.66812806862, 536.8045120954], [0.106, 1.21268139587, 7234.794256242], [0.108, 0.94652521237, 9808.5381846614], [0.121, 4.22204758443, 6158.6474353058], [0.124, 4.92495255567, 12964.300703391], [0.142, 3.85764234922, 6894.5239488376], [0.099, 5.62543167, 10973.55568635], [0.1, 2.56456804207, 3178.1457905676], [0.131, 0.08971075365, 8273.8208670324], [0.112, 3.14240135508, 3316.733988952], [0.095, 0.64723185059, 2487.4160449478], [0.087, 4.14322802003, 3603.6963500726], [0.087, 3.50260474148, 3077.528503327], [0.096, 5.13010621713, 3304.5845600224], [0.082, 4.87880877413, 5828.0284716476], [0.083, 2.04400907684, 18984.2926300096], [0.085, 3.33671991814, 1758.6530784168], [0.099, 3.28955694324, 17654.7805397496], [0.078, 0.89238228021, 2699.7348193176], [0.095, 0.32948273562, 3863.1898447936], [0.083, 0.80327899268, 5085.038411115], [0.091, 1.48623539837, 8270.2977486834], [0.075, 4.91191036053, 10021.7699697966], [0.079, 4.25171159471, 7373.3824546264], [0.084, 2.16662156833, 12566.1516999828], [0.088, 2.78893554858, 11769.8536931664], [0.095, 0.29428946155, 5628.9564702112], [0.076, 5.23354729169, 13760.5987102074], [0.092, 1.40883592065, 3336.7310913418], [0.069, 3.5047791691, 10713.9948813262], [0.079, 0.61833410504, 951.7184062506], [0.07, 1.93458925881, 3475.6775067352], [0.066, 5.01996258363, 16706.585251848], [0.067, 3.68731475523, 4032.7700279266], [0.071, 1.71691035008, 10575.4066829418], [0.086, 1.82073461894, 10404.7338123226], [0.064, 2.43149744819, 2648.454825473], [0.062, 0.25250107112, 3980.5097130138], [0.062, 3.1642052001, 13517.8701062334], [0.078, 1.41762772678, 3.523118349], [0.086, 3.34935714534, 1581.959348283], [0.064, 3.75812808116, 1596.1864422846], [0.061, 1.37421861116, 419.4846438752], [0.055, 1.11154560464, 433.7117378768], [0.061, 5.33515994167, 853.196381752], [0.059, 0.8038238079, 13362.432453147], [0.055, 0.37478855406, 149.5631971346], [0.053, 0.55329112916, 14314.1681130498], [0.059, 0.07234691744, 6531.661656265], [0.059, 2.83458587563, 13362.4669604514], [0.059, 4.13409540555, 4407.1079038898], [0.057, 5.57913927474, 3376.6402933772], [0.049, 4.58036235824, 10551.528245194], [0.05, 2.01769015785, 10022.8176011676], [0.055, 1.36081433917, 21393.5419698576], [0.048, 1.59939595487, 18052.9295431578], [0.045, 4.97928157994, 8671.9698704406], [0.044, 2.58542985685, 13916.0191096416], [0.047, 1.40206686464, 8425.6508378148], [0.043, 0.21864618144, 9779.1086761254], [0.042, 6.22365857047, 3914.9572250346], [0.048, 3.44104044998, 692.1576012268], [0.043, 3.21191030055, 6247.5131155228], [0.055, 4.013214817, 10177.2576795336], [0.053, 2.9328571132, 3981.490034082], [0.039, 5.54634215618, 6702.000248892], [0.041, 2.46188112193, 6660.4494579072], [0.049, 3.0423606533, 640.8776073822], [0.039, 1.62689158397, 3335.0895023924], [0.038, 3.31198341709, 1744.4259844152], [0.038, 6.16317067723, 2818.035008606], [0.038, 4.03534957207, 103.0927742186], [0.044, 0.91040525278, 5459.3762870782], [0.049, 1.88325571471, 11216.284290324], [0.046, 5.62762941168, 9168.6408983474], [0.035, 1.65976191407, 12168.0026965746], [0.047, 4.52334272666, 10021.9045904022], [0.039, 2.08367076229, 13745.3462390224], [0.039, 4.76186135572, 20597.2439630412], [0.039, 3.00951950244, 3344.4937620578], [0.037, 1.33065895739, 12295.9542296092], [0.04, 3.96893429107, 13171.0014406876], [0.032, 0.91212661789, 12310.1813236108], [0.032, 2.22618836835, 7107.8230442756], [0.032, 4.9607870365, 24734.1543965574], [0.037, 3.30085609301, 20995.3929664494], [0.033, 3.70858397913, 10020.8569590312], [0.031, 4.18674524484, 17256.6315363414], [0.034, 3.25657016622, 14054.607308026], [0.032, 5.75360661734, 6546.1597733642], [0.031, 3.16209740784, 12935.8515159232], [0.037, 2.14901622101, 6665.9723822146], [0.03, 0.21926429217, 6660.8695340008], [0.03, 3.55459460301, 9070.1188738488], [0.029, 2.97927335664, 2766.267628365], [0.029, 4.65051930186, 10235.1363755374], [0.03, 5.168824354, 16304.9131300908], [0.032, 5.01760544488, 3191.0492295652], [0.029, 2.93988761068, 6696.4773245846], [0.029, 5.06447742493, 5099.2655051166], [0.029, 5.68073325802, 3329.97576135], [0.029, 0.43949269085, 3351.2490920496], [0.032, 1.37056688814, 6040.3472460174], [0.032, 1.42334455474, 76.2660712756], [0.033, 0.36423446435, 6604.958782124], [0.033, 4.85478789063, 6701.5801727984], [0.03, 3.33348460172, 3369.0616141676], [0.028, 0.60182098585, 11766.2632645146], [0.026, 1.05197848649, 13207.029307365], [0.026, 5.03535225585, 30065.5118402982], [0.034, 3.65553061498, 14158.7477136156], [0.025, 4.60925601393, 8329.671610597], [0.025, 2.05970140678, 17395.2197347258], [0.03, 5.22285260441, 9485.032768004], [0.025, 4.84964369679, 1648.4467571974], [0.026, 5.47626814223, 3074.005384978], [0.024, 2.45239543931, 17085.9586657222], [0.029, 5.36428737888, 2707.8286873866], [0.024, 5.574885448, 10264.5658840734], [0.025, 4.22744782935, 1692.1656695024], [0.023, 6.09244870438, 20199.094959633], [0.028, 1.30366587075, 8439.8779318164], [0.032, 2.13597148493, 9468.267877257]], [[16726.69, 0.60221392419, 3340.6124266998], [4986.799, 3.14159265359, 0.0], [302.141, 5.55871276021, 6681.2248533996], [25.767, 1.89662673499, 13362.4497067992], [21.452, 0.91749968618, 10021.8372800994], [11.82, 2.242407387, 3337.0893083508], [7.985, 2.24892866611, 16703.062133499], [2.96, 5.89425825808, 3496.032826134], [2.445, 5.18770525274, 5621.8429232104], [1.428, 1.2523814058, 2281.2304965106], [1.779, 2.5875996852, 20043.6745601988], [1.501, 3.18533003542, 3532.0606928114], [1.259, 4.80695172904, 3185.1920272656], [1.029, 2.35029907056, 6677.7017350506], [1.109, 3.80982317372, 5884.9268465832], [0.928, 0.29719160927, 3344.1355450488], [0.86, 3.1169831893, 6151.533888305], [0.853, 1.33003321402, 529.6909650946], [0.883, 5.18681316017, 5486.777843175], [1.1, 1.82962075794, 2942.4634232916], [0.815, 3.40910567373, 2544.3144198834], [0.702, 5.49076132554, 8962.4553499102], [0.644, 0.31400306761, 5088.6288397668], [0.745, 4.30248377111, 3340.5951730476], [0.586, 4.48071459693, 3894.1818295422], [0.681, 5.40951261308, 2810.9214616052], [0.745, 0.05006463495, 3340.629680352], [0.542, 4.68895461946, 3339.6321056316], [0.497, 4.65665197749, 5092.1519581158], [0.46, 1.0667034361, 3097.88382272579], [0.423, 3.08034568777, 4292.3308329504], [0.381, 2.2493311519, 6283.0758499914], [0.429, 1.70668733378, 4690.4798363586], [0.339, 2.92195933142, 23384.2869868986], [0.31, 5.63324402105, 3723.508958923], [0.287, 1.98619629868, 398.1490034082], [0.298, 2.58990636818, 6684.7479717486], [0.323, 5.1523014439, 6525.8044539654], [0.247, 2.36923535528, 3340.545116397], [0.247, 1.96071951597, 3340.6797370026], [0.223, 4.75562842441, 2146.1654164752], [0.24, 3.53331653789, 3583.3410306738], [0.238, 4.69268478666, 6254.6266625236], [0.198, 6.21548965568, 2787.0430238574], [0.202, 4.25439775032, 3333.498879699], [0.158, 1.89216973387, 6674.1113063988], [0.185, 2.99350590687, 10025.3603984484], [0.177, 1.41002572971, 6438.4962494256], [0.138, 1.23172102079, 3127.3133312618], [0.153, 5.93528616595, 6836.6452528338], [0.106, 5.35414400998, 3738.761430108], [0.102, 3.67040445208, 1059.3819301892], [0.136, 1.06039656714, 2388.8940204492], [0.093, 5.04434801864, 155.4203994342], [0.093, 2.7081739491, 8955.3418029094], [0.108, 6.13917250674, 1748.016413067], [0.116, 5.9773948353, 2914.0142358238], [0.099, 1.50221319099, 1751.539531416], [0.092, 2.68470906437, 1990.745017041], [0.077, 4.01966292109, 1592.5960136328], [0.076, 4.49660101731, 4562.4609930212], [0.076, 5.67354102576, 6041.3275670856], [0.078, 0.79220883728, 2288.3440435114], [0.074, 5.84795427965, 3341.592747768], [0.08, 5.48556941416, 8432.7643848156], [0.065, 2.11705931744, 10018.3141617504], [0.066, 5.08073805943, 2957.7158944766], [0.059, 3.79695096075, 6923.9534573736], [0.061, 4.51116100631, 4933.2084403326], [0.059, 0.27765984344, 6127.6554505572], [0.052, 5.84885902302, 4535.0594369244], [0.051, 1.45495904398, 7477.522860216], [0.054, 1.50278239577, 6489.776587288], [0.056, 5.23212313891, 9866.4168806652], [0.057, 4.73711357046, 2274.1169495098], [0.051, 2.48654805044, 6467.9257579616], [0.047, 3.25899585469, 26724.8994135984], [0.048, 1.12255878532, 1349.8674096588], [0.048, 2.87122326236, 242.728603974], [0.045, 1.61358524585, 5729.506447149], [0.043, 2.2433473149, 7.1135470008], [0.044, 4.61065704096, 11773.3768115154], [0.042, 3.32038536161, 13365.9728251482], [0.047, 5.10736479739, 8969.568896911], [0.044, 4.64194663616, 4399.994356889], [0.039, 5.45779680648, 8031.0922630584], [0.044, 5.2140954242, 4136.9104335162], [0.045, 4.2620606379, 796.2980068164], [0.048, 3.04342098072, 5331.3574437408], [0.042, 2.12882700518, 213.299095438], [0.038, 2.49365585516, 951.7184062506], [0.037, 3.44816851943, 3325.3599555148], [0.038, 3.1398138598, 3149.1641605882], [0.039, 3.6498494618, 553.5694028424], [0.036, 0.54858124109, 7632.9432596502], [0.032, 4.29985057106, 3355.8648978848], [0.037, 6.26349600634, 6682.2051744678], [0.037, 3.83188032092, 3870.3033917944], [0.031, 4.94959395405, 6680.2445323314], [0.035, 6.14813219827, 3360.96774609859], [0.029, 0.54115054572, 6681.2921637024], [0.035, 1.49899662719, 3320.257107301], [0.033, 0.19183878029, 3347.7259737006], [0.036, 3.28055425527, 1589.0728952838], [0.031, 5.66015228291, 1066.49547719], [0.028, 4.1817845554, 7210.9158184942], [0.025, 1.21627749818, 9492.1463150048], [0.029, 2.02283118033, 7234.794256242], [0.024, 2.96777681837, 7064.1213856228], [0.024, 2.16823248221, 10419.9862835076], [0.022, 4.67496434823, 1194.4470102246], [0.022, 5.01797528499, 9595.2390892234], [0.028, 4.19843924702, 8429.2412664666], [0.023, 6.2119501005, 7740.6067835888], [0.025, 1.45100528915, 6872.6731195112], [0.024, 1.93342510858, 2699.7348193176], [0.028, 5.8700989815, 1052.2683831884], [0.025, 2.49707182259, 2118.7638603784], [0.02, 0.15682384975, 3205.5473466644], [0.019, 3.82087005916, 12303.06777661], [0.02, 6.26534330674, 7875.6718636242], [0.019, 0.99282533197, 522.5774180938], [0.018, 4.11668144665, 426.598190876], [0.02, 3.28531167827, 9225.539273283], [0.019, 5.72169822815, 11371.7046897582], [0.018, 4.76871968197, 382.8965322232], [0.017, 0.96519535826, 191.4482661116], [0.017, 0.86184324841, 10973.55568635], [0.018, 6.22706341047, 9381.9399937854], [0.015, 0.54135050421, 640.8776073822]], [[606.506, 1.98050633529, 3340.6124266998], [42.611, 0.0, 0.0], [13.652, 1.795882288, 6681.2248533996], [2.73, 3.45377082121, 10021.8372800994], [0.929, 3.75226159072, 3337.0893083508], [0.607, 0.10618486408, 13362.4497067992], [0.617, 1.14471772765, 3496.032826134], [0.479, 0.70504966293, 16703.062133499], [0.185, 3.28778562029, 3185.1920272656], [0.169, 0.29980532608, 5621.8429232104], [0.158, 1.09025317222, 20043.6745601988], [0.123, 2.55664973413, 3097.88382272579], [0.126, 4.74517022983, 3532.0606928114], [0.093, 6.03607685759, 3894.1818295422], [0.099, 4.92257049901, 2544.3144198834], [0.106, 3.41315845439, 2942.4634232916], [0.062, 6.257389499, 3339.6321056316], [0.058, 4.64867983361, 4292.3308329504], [0.05, 3.75358626972, 6677.7017350506], [0.05, 1.89408668049, 5088.6288397668], [0.058, 3.65295480755, 6525.8044539654], [0.045, 0.38295906298, 5486.777843175], [0.052, 3.25535694335, 4690.4798363586], [0.044, 1.89342588822, 3583.3410306738], [0.037, 0.04871920725, 2146.1654164752], [0.039, 0.91787211117, 3723.508958923], [0.051, 5.24063514394, 5884.9268465832], [0.036, 2.79633276263, 529.6909650946], [0.032, 1.44641701752, 23384.2869868986], [0.024, 5.41362501363, 3340.5951730476], [0.023, 4.70639896508, 2787.0430238574], [0.021, 1.12581894224, 3340.629680352], [0.021, 0.51744721589, 8962.4553499102], [0.018, 0.36433365806, 155.4203994342], [0.018, 5.53170427847, 3333.498879699], [0.019, 4.34401282378, 6151.533888305], [0.021, 2.9476550159, 398.1490034082], [0.02, 5.96181389299, 5092.1519581158], [0.017, 0.80891817293, 1194.4470102246], [0.011, 0.43817745316, 1059.3819301892], [0.014, 1.06654064248, 6836.6452528338]], [[11.334, 3.45724352586, 3340.6124266998], [13.369, 0.0, 0.0], [0.744, 0.50445805257, 6681.2248533996], [0.148, 1.05056602649, 10021.8372800994], [0.102, 2.66185835593, 3496.032826134], [0.053, 5.27888218929, 3337.0893083508], [0.022, 4.09971603267, 3097.88382272579], [0.023, 1.7242234213, 3185.1920272656], [0.013, 5.41704779112, 16703.062133499], [0.013, 2.06957065662, 13362.4497067992], [0.01, 0.959895956, 3894.1818295422]], [[0.457, 4.86794125358, 3340.6124266998], [0.053, 5.30547050586, 6681.2248533996], [0.012, 5.75114070583, 10021.8372800994], [0.013, 4.17736925293, 3496.032826134], [0.007, 0.0, 0.0]]]

This table contains Mars’ periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric latitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 424-425.

pymeeus.Mars.VSOP87_L = [[[620347711.583, 0.0, 0.0], [18656368.1, 5.05037100303, 3340.6124266998], [1108216.792, 5.40099836958, 6681.2248533996], [91798.394, 5.75478745111, 10021.8372800994], [27744.987, 5.97049512942, 3.523118349], [10610.23, 2.93958524973, 2281.2304965106], [12315.897, 0.84956081238, 2810.9214616052], [8926.772, 4.15697845939, 0.0172536522], [8715.688, 6.11005159792, 13362.4497067992], [6797.552, 0.36462243626, 398.1490034082], [7774.867, 3.33968655074, 5621.8429232104], [3575.079, 1.66186540141, 2544.3144198834], [4161.101, 0.2281497533, 2942.4634232916], [3075.25, 0.85696597082, 191.4482661116], [2628.122, 0.6480614357, 3337.0893083508], [2937.543, 6.07893711408, 0.0673103028], [2389.42, 5.03896401349, 796.2980068164], [2579.842, 0.02996706197, 3344.1355450488], [1528.14, 1.14979306228, 6151.533888305], [1798.808, 0.65634026844, 529.6909650946], [1264.356, 3.62275092231, 5092.1519581158], [1286.232, 3.06795924626, 2146.1654164752], [1546.408, 2.91579633392, 1751.539531416], [1024.907, 3.69334293555, 8962.4553499102], [891.567, 0.1829389909, 16703.062133499], [858.76, 2.40093704204, 2914.0142358238], [832.718, 2.46418591282, 3340.5951730476], [832.724, 4.49495753458, 3340.629680352], [712.899, 3.66336014788, 1059.3819301892], [748.724, 3.82248399468, 155.4203994342], [723.863, 0.67497565801, 3738.761430108], [635.557, 2.92182704275, 8432.7643848156], [655.163, 0.48864075176, 3127.3133312618], [550.472, 3.81001205408, 0.9803210682], [552.746, 4.47478863016, 1748.016413067], [425.972, 0.55365138172, 6283.0758499914], [415.132, 0.49662314774, 213.299095438], [472.164, 3.6254781941, 1194.4470102246], [306.552, 0.38052862973, 6684.7479717486], [312.141, 0.99853322843, 6677.7017350506], [293.199, 4.22131277914, 20.7753954924], [302.377, 4.48618150321, 3532.0606928114], [274.028, 0.54222141841, 3340.545116397], [281.073, 5.88163372945, 1349.8674096588], [231.185, 1.28240685294, 3870.3033917944], [283.6, 5.76885494123, 3149.1641605882], [236.114, 5.75504515576, 3333.498879699], [274.035, 0.13372501211, 3340.6797370026], [299.396, 2.78323705697, 6254.6266625236], [204.161, 2.82133266185, 1221.8485663214], [238.857, 5.37155471672, 4136.9104335162], [188.639, 1.49103016486, 9492.1463150048], [221.225, 3.50466672203, 382.8965322232], [179.196, 1.00561112574, 951.7184062506], [172.11, 0.43943041719, 5486.777843175], [193.126, 3.35715137745, 3.5904286518], [144.305, 1.41874193418, 135.0650800354], [160.011, 3.94854735192, 4562.4609930212], [174.068, 2.41360332576, 553.5694028424], [130.993, 4.04491720264, 12303.06777661], [138.245, 4.30145176915, 7.1135470008], [128.062, 1.80665643332, 5088.6288397668], [139.897, 3.32592516164, 2700.7151403858], [128.102, 2.20806651008, 1592.5960136328], [116.945, 3.12805282207, 7903.073419721], [110.375, 1.05195079687, 242.728603974], [113.486, 3.70070798123, 1589.0728952838], [100.09, 3.24343740861, 11773.3768115154], [95.592, 0.53954181149, 20043.6745601988], [98.947, 4.8455829474, 6681.2421070518], [104.541, 0.78535382076, 8827.3902698748], [84.187, 3.9897072073, 4399.994356889], [86.931, 2.20186740523, 11243.6858464208], [71.437, 2.80307550016, 3185.1920272656], [72.091, 5.84672102525, 5884.9268465832], [73.476, 2.18428012567, 8429.2412664666], [98.946, 2.81481140371, 6681.2075997474], [68.414, 2.73834914412, 2288.3440435114], [86.751, 1.02092221563, 7079.3738568078], [65.32, 2.68118597578, 28.4491874678], [83.749, 3.2025613099, 4690.4798363586], [75.034, 0.76643418252, 6467.9257579616], [68.984, 3.76399731788, 6041.3275670856], [66.706, 0.73630620766, 3723.508958923], [63.314, 4.5277147047, 426.598190876], [61.683, 6.16831509419, 2274.1169495098], [52.256, 0.89941531307, 9623.6882766912], [55.488, 4.6062546702, 4292.3308329504], [51.332, 4.14823636534, 3341.592747768], [56.629, 5.06250410206, 15.252471185], [63.376, 0.91296240798, 3553.9115221378], [45.829, 0.78784235062, 1990.745017041], [48.542, 3.95670418719, 4535.0594369244], [41.223, 6.02019329922, 3894.1818295422], [41.939, 3.58326425115, 8031.0922630584], [56.396, 1.68727150304, 6872.6731195112], [55.909, 3.46260833495, 263.0839233728], [51.678, 2.81307492682, 3339.6321056316], [40.671, 3.13832621829, 9595.2390892234], [38.107, 0.7340194632, 10025.3603984484], [39.495, 5.6322539216, 3097.88382272579], [44.174, 3.19529736702, 5628.9564702112], [36.716, 2.63720775102, 692.1576012268], [45.905, 0.28718981497, 5614.7293762096], [38.352, 5.82880707426, 3191.0492295652], [38.206, 2.34835984063, 162.4666361322], [32.562, 0.48400659333, 6681.2921637024], [37.135, 0.68508150774, 2818.035008606], [31.168, 3.98160912982, 20.3553193988], [32.561, 0.89250316888, 6681.1575430968], [37.752, 4.15482955299, 2803.8079146044], [33.626, 6.11992401052, 6489.776587288], [29.007, 2.42707385674, 3319.8370312074], [38.79, 1.35198498795, 10018.3141617504], [33.148, 1.14023770004, 5.5229243074], [27.584, 1.59691203058, 7210.9158184942], [28.686, 5.72055456734, 7477.522860216], [34.031, 2.59544082509, 11769.8536931664], [25.38, 0.52093116112, 10.6366653498], [26.357, 1.34532646574, 3496.032826134], [24.554, 4.00323183088, 11371.7046897582], [25.637, 0.2496352342, 522.5774180938], [27.278, 4.55645328122, 3361.3878221922], [23.764, 1.84058377256, 12832.7587417046], [22.816, 3.52628212106, 1648.4467571974], [22.274, 0.72106133721, 266.6070417218], [21.202, 3.11824472284, 2957.7158944766], [20.158, 3.67131504946, 1758.6530784168], [21.53, 6.15388757177, 3264.3463554242], [20.093, 1.08247416065, 7064.1213856228], [21.343, 4.28218757863, 4032.7700279266], [27.54, 6.08389942337, 6674.1113063988], [19.849, 2.37668920745, 10713.9948813262], [25.512, 3.43242352804, 3443.7052009184], [22.542, 5.64861703438, 2388.8940204492], [24.378, 0.96994696413, 632.7837393132], [23.079, 4.74990214223, 3347.7259737006], [17.709, 3.69742343974, 3344.2028553516], [22.662, 3.95446324417, 4989.0591838972], [22.604, 5.24082917494, 3205.5473466644], [16.811, 5.48619684111, 3.881335358], [18.422, 4.22535881468, 2787.0430238574], [22.737, 4.98520896596, 7632.9432596502], [16.648, 2.52823633184, 14584.2982731206], [20.963, 4.27878216453, 5099.2655051166], [16.042, 1.76786752521, 3475.6775067352], [15.816, 3.13240869691, 59.3738619136], [18.113, 3.25756020453, 3337.021998048], [19.295, 3.23911854642, 7.046236698], [16.772, 4.3973150711, 15643.6802033098], [17.555, 4.09197396097, 74.7815985673], [13.704, 2.5411701816, 4933.2084403326], [16.011, 1.54669633224, 14054.607308026], [13.547, 4.04152185347, 4929.6853219836], [14.566, 3.45210993051, 7373.3824546264], [13.926, 5.40797129468, 10973.55568635], [14.246, 0.59808746067, 23.8784377478], [14.023, 1.44218648988, 10404.7338123226], [16.051, 3.79409950488, 2118.7638603784], [13.714, 3.59050634457, 15113.9892382152], [18.038, 4.25391532, 2487.4160449478], [15.846, 0.56901288692, 103.0927742186], [13.403, 5.16920432994, 10213.285546211], [16.069, 2.36895958451, 3265.8308281325], [12.773, 0.10483085657, 7234.794256242], [12.199, 1.73079687044, 36.0278666774], [12.283, 5.19940030635, 10021.8545337516], [11.945, 5.47997890162, 2921.1277828246], [11.89, 4.76593905835, 5828.0284716476], [12.283, 3.16862882612, 10021.8200264472], [13.274, 6.1780690534, 1744.4259844152], [11.777, 5.727315509, 0.42007609361], [12.34, 2.52146766331, 2906.900688823], [14.458, 4.38010658432, 316.3918696566], [10.639, 3.45016942919, 639.897286314], [10.925, 0.60397688999, 5085.038411115], [10.645, 5.47696728127, 419.4846438752], [10.797, 1.37191539718, 10419.9862835076], [10.565, 1.09061610786, 12168.0026965746], [9.578, 4.89489266197, 3230.4061054804], [9.808, 5.83632873998, 14314.1681130498], [9.72, 6.28282606427, 9225.539273283], [9.146, 1.10220667397, 9808.5381846614], [12.733, 1.79883375851, 13745.3462390224], [9.779, 3.60056884868, 206.1855484372], [12.156, 4.42295240981, 14712.317116458], [8.801, 3.97218590685, 170.6728706192], [10.685, 4.33894776374, 7740.6067835888], [10.041, 1.3829466683, 3583.3410306738], [8.499, 4.29275471153, 0.4298831267], [9.882, 2.69148019691, 36.6053653042], [10.585, 0.89641284928, 23384.2869868986], [8.478, 2.86886131803, 9381.9399937854], [9.56, 4.33382353581, 131.5419616864], [8.433, 3.1523973397, 6525.8044539654], [7.517, 1.24476310635, 6894.5239488376], [6.753, 1.58869332894, 6836.6452528338], [6.666, 4.38910103043, 66.4874089144], [6.697, 5.77315870484, 5202.3582793352], [6.188, 1.5784796785, 3325.3599555148], [8.392, 2.90734956761, 43.718912305], [6.427, 6.03333185624, 574.3447983348], [6.296, 0.06976040737, 1964.838626854], [6.144, 5.43713363624, 1861.7458526354], [8.18, 0.43967386003, 2707.8286873866], [6.532, 1.24907069366, 12964.300703391], [7.341, 4.95693808975, 3767.2106175758], [6.134, 3.16322441707, 6680.2445323314], [5.937, 4.22752447794, 4459.3682188026], [5.848, 4.30379700916, 7875.6718636242], [5.895, 0.77226207039, 2699.7348193176], [5.962, 3.01318151415, 3369.0616141676], [6.307, 1.77830983983, 2178.137722292], [6.103, 4.49866000852, 6682.2051744678], [5.77, 0.96127853878, 13916.0191096416], [5.725, 4.93042706875, 2384.3232707292], [7.576, 6.16308742022, 6531.661656265], [7.285, 0.52756973131, 10575.4066829418], [5.212, 3.48999909365, 12935.8515159232], [5.266, 4.51201042373, 6144.4203413042], [6.632, 3.48100908925, 1118.7557921028], [5.182, 3.25459432228, 2391.43681773], [5.214, 0.01023839897, 533.2140834436], [5.436, 6.18510045571, 8425.6508378148], [5.491, 3.42235890731, 3134.4268782626], [5.773, 3.55190490896, 8969.568896911], [5.093, 0.60873962999, 8955.3418029094], [4.798, 4.63144694279, 4569.574540022], [5.773, 5.92316959013, 640.8776073822], [5.661, 0.75892958537, 3120.199784261], [4.912, 1.70762118141, 13358.9265884502], [5.438, 4.29256867866, 3503.079062832], [4.631, 3.34058594066, 3116.2676309979], [5.823, 2.39009621568, 3302.479391062], [5.095, 1.12497131307, 5331.3574437408], [4.409, 1.3870873295, 17256.6315363414], [4.193, 0.19116539271, 9830.3890139878], [4.164, 0.43798301495, 1066.49547719], [4.22, 1.69427060019, 13524.9163429314], [5.192, 3.63500646439, 536.8045120954], [5.664, 0.50446281443, 5305.4510535538], [5.264, 5.40031180025, 3355.8648978848], [5.403, 5.96867227489, 3074.005384978], [4.046, 0.83826342101, 10021.9045904022], [4.153, 3.14497570817, 8439.8779318164], [4.82, 1.09025983917, 13365.9728251482], [4.906, 3.73078406569, 1228.9621133222], [4.576, 0.99344843456, 6158.6474353058], [4.211, 3.87091723842, 3312.163239232], [4.917, 6.25051681717, 17654.7805397496], [3.597, 6.07298181151, 10818.1352869158], [3.547, 1.87663674277, 17395.2197347258], [3.734, 1.37011069213, 3973.396166013], [4.422, 2.89974680697, 6247.5131155228], [3.975, 4.03441621102, 1052.2683831884], [4.466, 4.59188422424, 5518.7501489918], [3.445, 4.26610076208, 3178.1457905676], [3.607, 4.24527056399, 8329.671610597], [3.511, 1.95133364438, 10177.2576795336], [3.3, 0.68865737747, 149.5631971346], [3.235, 3.90171358031, 27.4015560968], [3.946, 5.81982010903, 6261.7402095244], [3.387, 0.14377701728, 10014.7237330986], [3.374, 0.74722238154, 6048.4411140864], [3.09, 3.98540766861, 2648.454825473], [3.821, 5.23987859516, 5724.935697429], [3.026, 0.34314724795, 220.4126424388], [4.052, 1.24671617482, 10021.7699697966], [2.937, 0.73100893561, 2.751510611], [3.084, 3.79925632319, 169.580183133], [4.04, 2.91258200196, 22747.2907148744], [3.246, 4.90760526525, 6702.000248892], [3.223, 0.9264000861, 16865.5287696312], [2.879, 1.47180601483, 3346.1353510072], [3.723, 0.49978317761, 1.4844727083], [2.798, 3.26910698548, 9168.6408983474], [3.347, 0.68791690253, 3863.1898447936], [3.44, 2.77706064625, 6660.4494579072], [2.798, 2.79673379094, 16858.4825329332], [2.753, 4.41190782119, 3415.3940252671], [2.703, 0.19222683184, 3237.5196524812], [2.719, 3.26628341377, 3914.9572250346], [2.941, 3.76169133143, 6784.3176276182], [3.078, 5.48104322207, 3335.0895023924], [2.701, 5.08537226206, 6688.3384004004], [2.606, 4.83032556909, 4672.6673142406], [2.883, 2.64068086362, 3320.257107301], [3.089, 4.396198243, 1332.0548875408], [3.438, 1.93467064449, 10551.528245194], [3.433, 0.20933510815, 6604.958782124], [2.513, 2.88151502604, 17924.9106998204], [2.683, 3.68680362407, 3603.6963500726], [2.696, 2.6693177673, 10184.3039162316], [2.386, 1.05710815775, 3607.2194684216], [2.444, 3.46901444423, 6298.3283211764], [2.566, 5.55941956468, 6546.1597733642], [2.354, 0.8589678994, 3351.2490920496], [2.304, 6.0721098579, 1214.7350193206], [2.387, 4.30419979225, 3360.96774609859], [3.109, 2.18099805904, 16173.3711684044], [2.907, 3.43894993113, 2693.601593385], [2.55, 4.18354174372, 3546.797975137], [2.991, 2.37500894603, 13517.8701062334], [2.508, 5.99249607455, 5729.506447149], [2.202, 5.58486973955, 664.75604513], [2.467, 2.81052575497, 15110.4661198662], [2.154, 3.59696831702, 6677.6344247478], [2.166, 3.35965682842, 589.0648270082], [2.112, 4.57048853017, 6127.6554505572], [2.178, 3.21663279493, 20199.094959633], [2.26, 3.62776666288, 7799.9806455024], [2.703, 5.89441421026, 6438.4962494256], [2.201, 4.69972051344, 17277.4069318338], [2.131, 2.5180126434, 1545.3539829788], [2.093, 4.0368841963, 6684.8152820514], [2.249, 5.26171743929, 5618.3198048614], [2.117, 4.80404492675, 3657.0042963564], [2.265, 3.87401620754, 110.2063212194], [2.521, 4.21237950687, 2494.5295919486], [2.492, 6.10452779411, 3329.97576135], [2.154, 4.59093274516, 5625.3660415594], [1.929, 1.21920197307, 21.8508293264], [2.343, 0.90613584736, 227.476132789], [1.871, 2.0370739008, 56.8983749356], [1.894, 4.12432529517, 3399.9862886134], [2.271, 3.78951734652, 7910.1869667218], [1.876, 3.0203488708, 4885.9664096786], [2.145, 4.74972617629, 18984.2926300096], [2.035, 2.75110234296, 128.0188433374], [1.77, 2.73496011079, 6606.4432548323], [1.733, 1.70571779606, 6.6836638741], [1.743, 2.22986352012, 17085.9586657222], [1.723, 1.98207274526, 735.8765135318], [1.814, 0.92405242552, 4555.3474460204], [1.661, 3.07319305915, 1692.1656695024], [2.332, 5.05223613332, 20618.0193585336], [1.653, 3.86316179052, 699.2711482276], [1.89, 4.14080522607, 5459.3762870782], [1.68, 3.49750704538, 3347.6586633978], [1.909, 2.11478314309, 6816.289933435], [1.918, 3.31232891649, 3333.5661900018], [1.707, 4.88386665097, 3407.0998356142], [1.577, 3.5177713158, 13362.432453147], [1.827, 1.14937084769, 2807.3983432562], [2.094, 1.78938870686, 20597.2439630412], [1.577, 5.54854302324, 13362.4669604514], [1.677, 4.39073937265, 8270.2977486834], [1.561, 0.8024690473, 3017.1070100424], [1.552, 2.66876850182, 3024.2205570432], [1.708, 2.09721350898, 2814.4445799542], [2.109, 1.48733908496, 2679.3794999188], [1.547, 2.12956399169, 661.232926781], [1.764, 5.90517079295, 3326.3853326982], [1.503, 4.3438918317, 13936.794505134], [1.504, 0.83367652471, 4775.7600884592], [1.543, 5.82417982389, 3344.4937620578], [1.458, 1.42630589706, 15508.6151232744], [1.648, 2.88801518612, 8273.8208670324], [1.527, 1.10261249454, 2675.8563815698], [1.8, 5.17144672709, 38.1330356378], [1.439, 0.48751113425, 76.2660712756], [1.478, 4.63008666184, 19800.9459562248], [1.77, 2.18315009072, 2301.58581590939], [1.712, 2.60291779744, 29.429508536], [1.416, 2.46912016889, 2597.6223661672], [1.835, 3.93223068469, 6843.6914895318], [1.437, 3.48241890037, 3281.2385647862], [1.385, 4.18004525683, 2284.7536148596], [1.479, 3.88994194685, 6034.2140200848], [1.469, 2.91808856545, 12722.5524204852], [1.824, 3.94139541752, 18454.601664915], [1.368, 1.71899681607, 13760.5987102074], [1.406, 2.42916192473, 853.196381752], [1.361, 4.69126219798, 11081.2192102886], [1.375, 4.90787845983, 3304.5845600224], [1.544, 3.23251603238, 156.4007205024], [1.543, 1.13497136095, 3336.7310913418], [1.385, 2.90281983822, 1581.959348283], [1.311, 6.21748423079, 2547.8375382324], [1.377, 2.56537541792, 568.8218740274], [1.474, 4.65215247212, 394.6258850592], [1.619, 0.07481583409, 1435.1476617594], [1.369, 0.08979359617, 7895.9598727202], [1.272, 5.84659079053, 21.335640467], [1.331, 3.80007277718, 13119.72110282519], [1.202, 5.90681878458, 187.9251477626], [1.284, 5.30205682052, 6571.0185321802], [1.468, 5.91503888421, 3339.1279539915], [1.497, 2.57629850836, 151.8972810852], [1.27, 4.089962414, 4356.275444584], [1.159, 0.00546309207, 799.8211251654], [1.154, 1.81024985603, 158.9435177832], [1.17, 4.15567553953, 14.2270940016], [1.349, 0.39391022745, 2540.7913015344], [1.403, 4.89956428847, 4039.8835749274], [1.188, 3.46422365287, 1015.6630178842], [1.136, 5.54132891775, 13553.8979729108], [1.282, 4.5228842134, 3929.677253708], [1.124, 1.40102701439, 13149.1506113612], [1.254, 3.84775964741, 3980.5097130138], [1.121, 5.04552583589, 23141.5583829246], [1.088, 0.89388884633, 3340.19235060619], [1.476, 4.20852908107, 16460.33352952499], [1.084, 5.70551481838, 3760.097070575], [1.197, 1.24543578245, 26724.8994135984], [1.253, 5.82286965998, 3344.5445799629], [1.078, 6.24742453183, 17.812522118], [1.462, 2.27467510211, 369.6998159404], [1.044, 4.34158344243, 2277.7073781616], [1.099, 4.08747611117, 802.3639224462], [1.122, 4.31726854418, 107.6635239386], [1.148, 0.42666214138, 949.1756089698], [1.183, 0.3156003412, 1162.4747044078], [1.13, 3.46061330657, 5732.0492444298], [1.059, 1.34075999078, 2149.6885348242], [1.126, 5.22902222299, 194.9713844606], [0.977, 3.44426658417, 9779.1086761254], [1.134, 0.13507173479, 12566.1516999828], [1.185, 3.65682936623, 6456.8800576977], [0.962, 4.85370284827, 3510.1926098328], [1.033, 2.47380728164, 31.9723058168], [1.172, 1.72927931309, 6923.9534573736], [0.986, 1.05152205629, 16335.8378045366], [1.292, 6.02388659607, 3316.733988952], [0.932, 1.56812178735, 111.1866422876], [1.13, 2.06879370733, 3376.6402933772], [0.924, 0.82106390115, 3364.4908644476], [1.005, 5.48594935121, 11236.57229942], [0.936, 1.58837554752, 10235.1363755374], [1.063, 1.93321644244, 87.30820453981], [0.945, 5.10393817688, 8013.2797409404], [0.957, 4.4142175236, 433.7117378768], [0.921, 1.71021166461, 2067.9314010726], [0.91, 1.91562889347, 401.6721217572], [0.931, 4.61327789373, 5415.6573747732], [1.033, 3.98512631089, 10596.1820784342], [0.908, 5.30549216988, 7107.8230442756], [0.945, 0.21610469082, 9872.2740829648], [0.991, 2.76931703924, 5938.234792867], [0.918, 4.37217510741, 1854.6323056346], [0.889, 1.81025662091, 2409.249339848], [1.058, 3.63303046818, 7255.5696517344], [0.86, 2.78826625605, 5621.8601768626], [0.86, 0.75749461239, 5621.8256695582], [0.85, 3.82228424021, 272.6729573516], [0.851, 0.25287875945, 11766.2632645146], [0.853, 1.84243320985, 2142.6422981262], [1.03, 0.42255009123, 1596.1864422846], [0.826, 1.26069501589, 20206.141196331], [0.835, 4.64394754967, 127.9515330346], [1.046, 3.50232998647, 9866.4168806652], [0.824, 2.42928138519, 11.0457002639], [1.09, 6.06536924506, 3341.0325027934], [0.808, 1.17345081945, 6460.8122109608], [0.821, 0.19617131185, 22743.4093795164], [0.804, 5.03144428114, 2.5427972808], [1.074, 2.80025232939, 3077.528503327], [0.794, 4.57067003887, 5223.6939198022], [0.822, 0.90150471199, 8646.0634802536], [0.884, 1.71007411939, 3.9321532631], [0.85, 1.24977903471, 12295.9542296092], [0.926, 3.02847055739, 3377.217792004], [0.779, 1.97930055918, 5408.5438277724], [0.96, 6.16414205869, 8542.970706035], [0.785, 4.63077378309, 3341.0423098265], [0.752, 3.51125131831, 10020.8569590312], [0.749, 2.5028675102, 2295.4575905122], [0.801, 4.54004277501, 1039.0266107904], [0.735, 3.91703254169, 12310.1813236108], [0.784, 3.24368310213, 3384.3313390048], [0.719, 3.35536995801, 11780.4903585162], [0.94, 3.589745616, 23539.7073863328], [0.865, 1.12444569157, 206.7007372966], [0.731, 5.61232905415, 16062.1845261168], [0.823, 2.65316808033, 3169.9395560806], [0.903, 4.86743346013, 931.3630868518], [0.705, 1.4630539462, 792.7748884674], [0.754, 2.89691411536, 3296.8935143948], [0.736, 2.21038016464, 146.8116865236], [0.785, 2.32844966721, 3340.1825435731], [0.685, 2.34948834397, 1.1806426521], [0.677, 4.3380350705, 3877.4169387952], [0.729, 3.56726385957, 485.9720527896], [0.668, 5.16798891078, 12721.572099417], [0.713, 4.80558699772, 4142.976349146], [0.842, 1.59708732155, 16304.9131300908], [0.698, 1.91829605833, 6665.9723822146], [0.698, 4.64681188157, 11216.284290324], [0.684, 3.88514563357, 846.0828347512], [0.666, 2.23927960017, 20735.83216142559], [0.638, 2.05380863176, 16699.53901514999], [0.726, 5.04566216294, 3329.5667264359], [0.697, 0.30680314664, 19676.4502312364], [0.65, 3.23944472757, 9588.1255422226], [0.736, 2.24443728739, 11250.7993934216], [0.692, 1.76465916332, 51.28033786241], [0.645, 0.07661067442, 52.2603149128], [0.685, 2.72118140264, 6643.0918177618], [0.684, 1.26157751115, 142.1786270362], [0.635, 3.85231847116, 6.0659156298], [0.819, 6.04967230806, 19402.7969528166], [0.664, 3.6022393001, 1903.4368125012], [0.613, 4.96450118774, 8859.3625756916], [0.615, 5.7446741784, 6696.4773245846], [0.622, 1.64154132852, 24150.080051345], [0.659, 0.12506816965, 8116.372515159], [0.679, 1.94943016061, 12995.2253778368], [0.616, 4.94607504516, 9485.032768004], [0.793, 2.84922599989, 29.4918183034], [0.597, 5.72067567055, 3113.1362939108], [0.763, 0.42513533173, 3873.8265101434], [0.587, 1.31684217558, 9499.2598620056], [0.592, 4.34796024028, 3826.5844794894], [0.652, 5.53658742492, 9065.5481241288], [0.583, 0.59190068342, 26084.0218062162], [0.603, 0.7713556663, 3342.0968994081], [0.701, 3.35897774328, 6709.6740408674], [0.574, 1.08976979801, 6357.7194367422], [0.75, 4.84737198179, 10022.8176011676], [0.588, 5.65927128604, 2171.0241752912], [0.632, 3.84852695407, 16276.463942623], [0.632, 1.43230388645, 16706.585251848], [0.78, 1.1518150254, 377.3736079158], [0.554, 4.18192049239, 382.879278571], [0.568, 0.03816333919, 6414.6178116778], [0.569, 2.57704345512, 35.5627344686], [0.566, 0.62804830762, 3189.5647568569], [0.687, 5.61456944029, 155.3530891314], [0.563, 2.57358138188, 19406.6782881746], [0.693, 1.15645091892, 966.9708774356], [0.576, 1.60357663736, 3192.5337022735], [0.621, 2.23214771591, 3274.1250177854], [0.586, 6.17266280012, 9602.3526362242], [0.541, 0.53968808391, 13171.0014406876], [0.57, 3.11852290115, 2221.856634597], [0.542, 0.41889651002, 1641.3332101966], [0.532, 0.16606105669, 5511.636601991], [0.53, 3.78205188174, 7270.2896804078], [0.575, 5.48929613719, 2075.0449480734], [0.67, 3.67090656417, 6475.0393049624], [0.509, 4.21526585284, 7380.4960016272], [0.51, 1.59587338243, 13362.3823964964], [0.494, 2.1371159806, 2604.735913168], [0.534, 1.03109772656, 1478.8665740644], [0.506, 5.92145494356, 685.044054226], [0.469, 0.83917541691, 3041.4860324306], [0.468, 1.97135671591, 2412.772458197], [0.468, 4.57635781664, 11670.2840372968], [0.559, 1.47641018288, 8671.9698704406], [0.475, 2.07517976424, 5835.1420186484], [0.466, 2.92801596791, 2277.2983432475], [0.478, 6.13550464878, 4825.544916394], [0.502, 0.77928275348, 4407.1079038898], [0.462, 3.80503324215, 11140.5930722022], [0.499, 3.25557381873, 1744.493294718], [0.525, 0.74022979976, 1265.5674786264], [0.521, 6.27577138682, 3981.490034082], [0.482, 0.1482033753, 14158.7477136156], [0.46, 2.03348517376, 25685.872802808], [0.51, 4.27704405425, 3472.1543883862], [0.444, 1.95486223268, 3226.2133197864], [0.575, 0.59007504383, 2766.267628365], [0.437, 5.63861950911, 8958.9322315612], [0.492, 6.10071747922, 2285.1626497737], [0.572, 5.10308842466, 8564.306346502], [0.43, 4.12851356192, 13.241772398], [0.544, 4.78254843814, 9380.9596727172], [0.43, 3.83861916944, 1765.7666254176], [0.499, 4.26055736809, 6652.7756659318], [0.541, 0.84245625839, 4981.9456368964], [0.591, 2.01874828234, 27490.6924780448], [0.438, 1.36437546581, 12509.2533250472], [0.47, 4.70961176845, 3723.4917052708], [0.421, 1.76100140625, 956.2891559706], [0.413, 0.49206034039, 13355.3361597984], [0.412, 0.29353415123, 2810.9387152574], [0.412, 3.2486541775, 18451.07854656599], [0.412, 1.70721395764, 7314.0085927128], [0.412, 4.54594776716, 2810.904207953], [0.448, 3.04254429984, 5636.070017212], [0.51, 1.18739936388, 13362.517017102], [0.408, 1.32068176489, 20809.4676246452], [0.427, 1.1610074204, 19004.6479494084], [0.42, 3.49180180953, 1655.5603041982], [0.433, 0.55429134487, 9945.5712088238], [0.424, 4.60854671688, 6518.7582172674], [0.415, 5.67120343816, 99.5696558696], [0.476, 5.94537443289, 48835.19385644859], [0.405, 5.63206200287, 3450.8187479192], [0.495, 4.38317490235, 2480.302497947], [0.415, 3.61905205961, 2089.782230399], [0.395, 0.25208772249, 1375.7737998458], [0.421, 2.26337694295, 13892.1406718938], [0.391, 5.25566087245, 10042.6126755918], [0.504, 4.91016850189, 8965.9784682592], [0.417, 3.45088934666, 279.7865043524], [0.389, 0.98703891513, 7203.8022714934], [0.431, 2.11881719623, 56.8032621698], [0.497, 1.63121523594, 22345.2603761082], [0.377, 4.06263841184, 10124.930054318], [0.377, 3.16019395941, 224.3447957019], [0.378, 5.82532048605, 6675.7019290922], [0.377, 0.05833226835, 905.4566966648], [0.445, 0.33560120738, 515.463871093], [0.426, 2.66458973231, 4076.4889402316], [0.489, 0.75760372851, 3561.0250691386], [0.389, 0.5028382658, 2825.1485556068], [0.396, 5.14198726837, 5195.2447323344], [0.414, 3.12530321804, 10001.061884607], [0.502, 5.02356488339, 73.297125859], [0.432, 3.3153835914, 5617.9107699473], [0.359, 4.97622870666, 5820.9149246468], [0.359, 5.420722273, 6019.9919266186], [0.449, 3.79544854612, 4996.172730898], [0.374, 2.85563965649, 2111.6503133776], [0.426, 0.24129917209, 5625.7750764735], [0.423, 3.60507971235, 8226.5788363784], [0.402, 4.5181371951, 4392.8808098882], [0.391, 4.26714089799, 21795.21409161479], [0.447, 4.25776540974, 18052.9295431578], [0.355, 4.17584780659, 6740.5987153132], [0.353, 1.81574804066, 6686.747777707], [0.462, 3.22304237134, 2011.1003364398], [0.341, 3.22071023668, 4253.1826703654], [0.475, 4.28822688035, 367.2243289624], [0.462, 2.91312544527, 418.9243989006], [0.416, 4.83203726375, 8535.8571590342], [0.431, 3.22440150226, 21265.5231265202], [0.333, 3.99300815003, 1353.3905280078], [0.34, 0.71636465254, 15664.03552270859], [0.416, 2.58443168474, 5753.3848848968], [0.356, 2.35639379021, 4.57074972], [0.33, 4.04831945983, 3.1030422554], [0.381, 4.06283076724, 1062.9050485382], [0.431, 5.42246026973, 26482.1708096244], [0.328, 4.0627695455, 6944.3087767724], [0.334, 5.10221163477, 22324.9050567094], [0.4, 2.28211698182, 3209.0704650134], [0.42, 2.44159662565, 6155.057006654], [0.375, 1.09229714548, 4246.0691233646], [0.449, 4.38183542571, 5106.3790521174], [0.33, 2.55172725319, 19513.9835951042], [0.319, 4.05704496382, 5430.3946570988], [0.31, 4.99907184482, 5095.6750764648], [0.344, 0.6269183218, 9389.0535407862], [0.319, 3.31673970253, 596.178374009], [0.305, 4.6694291091, 6756.0064519669], [0.409, 6.07568936266, 50.8324593058], [0.377, 5.42211267415, 1190.9238918756], [0.342, 2.67821304845, 6148.010769956], [0.298, 5.91093444215, 9886.772200064], [0.299, 5.44077050156, 10028.9508271002], [0.315, 1.03304445564, 3490.1756238344], [0.369, 3.93279262125, 1879.5583747534], [0.304, 4.56372485787, 7483.5887758458], [0.33, 3.29725079066, 286.9623611206], [0.29, 3.4385002402, 6418.1409300268], [0.289, 2.827660453, 3171.0322435668], [0.317, 4.13345374602, 1883.0814931024], [0.294, 0.0190673259, 202.2533951741], [0.31, 4.37565854379, 2796.6943676036], [0.364, 0.54935210242, 290.4854794696], [0.291, 2.39413982848, 29026.48522950779], [0.286, 5.76562894312, 5642.1982426092], [0.392, 3.01171327788, 10721.108428327], [0.318, 4.93376925851, 1197.9701285736], [0.315, 2.844378401, 10610.9021071076], [0.299, 1.18299169304, 550.0462844934], [0.336, 4.3076981876, 5989.0672521728], [0.315, 1.4140786334, 6947.8318951214], [0.294, 6.16453752963, 8982.810669309], [0.285, 2.82644088669, 9654.612951137], [0.281, 0.27739627997, 8166.1573430938], [0.279, 4.08648927643, 5355.2358814886], [0.33, 3.11968019451, 41.5507909848], [0.275, 5.89019272334, 3337.8609160888], [0.275, 4.00268079937, 3620.3989310522], [0.292, 3.06830662617, 4.3620363898], [0.317, 0.01919037405, 2267.003402509], [0.272, 1.70373580224, 3742.284548457], [0.294, 0.16019381973, 6670.5881880498], [0.264, 2.07967576148, 3735.238311759], [0.262, 4.49437120405, 6887.4104018368], [0.307, 3.03375977801, 6660.8695340008], [0.28, 0.47728086796, 5401.4302807716], [0.268, 0.46331887242, 6578.132079181], [0.312, 3.62016422039, 255.970376372], [0.278, 5.62032972822, 3378.7454623376], [0.268, 2.97528422526, 21947.1113727], [0.303, 2.71946492092, 3313.210870603], [0.263, 3.85883671333, 28628.3362260996], [0.257, 0.25607724431, 19146.7592661418], [0.282, 2.29169514758, 2008.557539159], [0.301, 0.83275594655, 2806.9893083421], [0.264, 3.78635346388, 3936.7908007088], [0.254, 1.28062508539, 95.9792272178], [0.25, 5.5849385856, 412.3710968744], [0.284, 4.71065509252, 5621.9102335132], [0.286, 5.1185436619, 5621.7756129076], [0.254, 5.77068701321, 5813.291189322], [0.311, 2.67573060947, 912.5702436656], [0.252, 4.19548440341, 24.858758816], [0.255, 1.80023727978, 3193.8007401762], [0.247, 2.94199704738, 310.8407988684], [0.261, 5.68285399692, 3133.9116894032], [0.255, 4.46589323429, 5490.300961524], [0.247, 2.28207487665, 246.251722323], [0.257, 5.64335704456, 10706.8813343254], [0.246, 0.26910281348, 22.7684966094], [0.241, 0.03931394254, 9070.1188738488], [0.283, 1.30585259585, 4025.6564809258], [0.272, 1.28327911416, 1442.2612087602], [0.294, 4.02082336381, 2814.8536148683], [0.249, 4.92144829429, 31022.7531708562], [0.237, 3.07683243726, 9947.0556815321], [0.236, 6.0576638036, 948.1952879016], [0.309, 3.45153658664, 25287.7237993998], [0.232, 4.99538565545, 1505.28780909299], [0.275, 1.20294105507, 6691.8615187494], [0.305, 2.73902403412, 176.6937301338], [0.231, 5.13610567818, 6997.6167230562], [0.237, 0.90339496046, 8.093868069], [0.229, 0.6325004797, 23017.0626579362], [0.249, 6.05357589804, 2060.8178540718], [0.27, 2.14769161882, 2973.3880977374], [0.241, 4.63019900075, 1612.9513330316], [0.227, 5.94537053649, 2942.4806769438], [0.269, 5.93687481153, 4005.3684718298], [0.227, 3.91459879933, 2942.4461696394], [0.238, 5.14570745178, 721.1392312062], [0.275, 1.06902528739, 3343.3639373108], [0.232, 3.5211029051, 6674.1786167016], [0.277, 0.19619249083, 270.1974703736], [0.274, 0.30235979008, 5607.6158292088], [0.233, 5.75237138576, 604.8497407048], [0.214, 3.38626276995, 647.0108333148], [0.282, 0.29694635625, 12323.4230960088], [0.282, 3.18114716742, 6364.832983743], [0.264, 4.64751563064, 1346.3442913098], [0.28, 4.64995184564, 6701.5801727984], [0.246, 3.03036675631, 3304.0070613956], [0.213, 4.80555095681, 8830.9133882238], [0.22, 1.54642908481, 23546.7536230308], [0.214, 1.35475764936, 184.8499079702], [0.228, 4.29420876593, 2970.9126107594], [0.229, 2.53361265404, 3710.3122426402], [0.273, 1.89943168433, 270.1301600708], [0.284, 3.28345980607, 16063.164847185], [0.211, 5.84341192825, 1971.9521738548], [0.214, 0.22905754741, 5.1991911658], [0.246, 4.55971876123, 6040.3472460174], [0.229, 1.24432891752, 3568.0885594888], [0.216, 3.2009868012, 362.1211367308], [0.201, 2.45025935972, 20426.571092422], [0.223, 2.07804482295, 17101.2111369072], [0.271, 3.49210901141, 3436.5916539176], [0.226, 0.42945734871, 557.0925211914], [0.264, 5.0579494007, 2938.9403049426], [0.207, 6.03491870748, 22487.3716928416], [0.197, 5.62923956977, 5209.471826336], [0.211, 2.26445749553, 765.7930644464], [0.202, 0.88670673933, 767.8488193486], [0.212, 1.85965510753, 4782.87363546], [0.194, 4.77420671032, 6850.8050365326], [0.192, 0.51565572072, 323.5054166574], [0.209, 4.79794980231, 14047.4937610252], [0.193, 2.56057288512, 18606.4989460002], [0.209, 1.46088434217, 5.8572022996], [0.214, 0.97578687412, 17468.8551979454], [0.196, 4.08789826861, 3262.8618827159], [0.198, 3.9911121623, 10018.2468514476], [0.235, 1.11133081576, 625.6701923124], [0.197, 0.48692287381, 15106.8756912144], [0.214, 5.33581901309, 955.2415245996], [0.199, 0.40088144456, 7586.6815500644], [0.251, 5.57906426342, 138.5881983844], [0.208, 4.11480858445, 1755.062649765], [0.21, 2.30499661227, 53.3079462838], [0.253, 1.27099771143, 309.2783226558], [0.242, 3.71426781511, 3212.5935833624], [0.178, 3.06961783443, 1437.1756141986], [0.203, 0.28410501881, 582.9989113784], [0.19, 0.10457198807, 26087.9031415742], [0.178, 0.53068485806, 7366.2689076256], [0.245, 4.20195166994, 8436.2875031646], [0.176, 3.66697456425, 6688.2710900976], [0.177, 4.48104044431, 8799.988713778], [0.181, 3.57461078885, 15121.102785216], [0.198, 3.55065962909, 24606.13555322], [0.187, 3.45440079747, 1329.51209026], [0.176, 5.81532365473, 12406.1605508286], [0.235, 1.28568802052, 4427.3959129858], [0.179, 1.55718466444, 3362.4632560262], [0.174, 1.61086801253, 30065.5118402982], [0.199, 0.07164714815, 375.7657315702], [0.174, 4.58412775793, 3283.7140517642], [0.171, 5.82189798695, 23937.856389741], [0.182, 2.57146189845, 418.504322807], [0.168, 5.13131619552, 21393.5419698576], [0.183, 4.9316196205, 9468.267877257], [0.167, 1.48091400654, 2619.4731954936], [0.169, 5.12437031125, 3223.2925584796], [0.188, 3.41823914376, 5032.7780962022], [0.181, 0.50010974122, 2125.8774073792], [0.164, 1.71077130702, 15849.865751747], [0.202, 6.21085922593, 3909.4343007272], [0.171, 5.86158194602, 625.6251361972], [0.165, 3.8556911822, 13207.029307365], [0.163, 2.0437336743, 3347.2960905739], [0.16, 2.83784244321, 5888.4499649322], [0.212, 2.32801112252, 3232.9489027612], [0.163, 4.23488695195, 31968.9486527994], [0.159, 1.48046671186, 249.9044607422], [0.16, 0.21960307161, 12942.965062924], [0.22, 3.90787704883, 9638.9407478762], [0.161, 2.94093367568, 3370.0419352358], [0.159, 5.59017475732, 1442.2784624124], [0.221, 3.82548751198, 1954.7171503636], [0.192, 4.62595272276, 3336.6802734367], [0.164, 1.59200641542, 386.4196505722], [0.169, 5.45784867095, 259.5608050238], [0.201, 0.95077053594, 29424.634232916], [0.174, 1.15216485688, 6382.0984591304], [0.163, 1.16606667991, 4289.7880356696], [0.187, 3.2213595646, 2751.5475996916], [0.162, 4.79372588575, 24889.5747959916], [0.192, 0.88040946364, 5244.049239201], [0.16, 2.8503478437, 9374.8264467846], [0.172, 2.38601254063, 2281.2477501628], [0.202, 4.12164786769, 7321.1221397136], [0.156, 4.55171204694, 27682.1407441564], [0.17, 4.62851491273, 10824.2012025456], [0.157, 0.91363725609, 4503.0871311076], [0.156, 5.58255618318, 10448.4354709754], [0.157, 0.92229160815, 15636.566656309], [0.171, 5.43820628341, 11904.9187732018], [0.18, 1.89091405241, 13575.7488022372], [0.198, 4.42539692212, 10025.4277087512], [0.158, 4.12087914642, 11240.1627280718], [0.211, 2.42218772392, 8749.1562544722], [0.183, 1.47934835951, 6677.3435180416], [0.197, 1.43469282909, 14061.7208550268], [0.17, 4.32424842659, 742.9900605326], [0.17, 2.92905324873, 9093.9973115966], [0.16, 2.79797608932, 1461.0540519464], [0.174, 5.37738922471, 3318.7615973734], [0.172, 0.35524089578, 2281.2132428584], [0.147, 2.76602235522, 4193.8088084518], [0.151, 4.23962231148, 3368.0139827966], [0.157, 1.01295201512, 24336.0053931492], [0.165, 0.58335652806, 15906.7641266826], [0.149, 5.69553079999, 31570.7996493912], [0.154, 5.2850438151, 1481.4093713452], [0.163, 1.8128862851, 18849.2275499742], [0.145, 3.57053080979, 3497.0131472022], [0.156, 3.56978076425, 21791.69097326579], [0.143, 0.56704903096, 13212.8865096646], [0.155, 0.08429188155, 6657.3464156518], [0.184, 2.54999403339, 24076.4445881254], [0.146, 1.16594990123, 526.1678467456], [0.144, 4.19229335185, 2771.7905526724], [0.169, 3.10771037057, 239.205485625], [0.144, 6.26688878164, 6679.7403806913], [0.174, 2.3750902528, 3397.5108016354], [0.163, 3.88047919138, 16703.0448798468], [0.161, 1.73958633312, 2185.2512692928], [0.164, 0.6214699473, 1538.240435978], [0.182, 6.16856014864, 6685.1061887576], [0.14, 4.08200595943, 4186.695261451], [0.192, 4.47709998867, 57.8786960038], [0.151, 3.06451266512, 838.9692877504], [0.139, 1.12767399649, 6682.7093261079], [0.187, 4.97174626997, 6681.6547365263], [0.15, 5.69209290362, 9360.6043533184], [0.16, 5.66336382679, 10927.2939767642], [0.137, 3.46860408347, 5562.4690612968], [0.192, 5.27908098216, 34363.365597556], [0.137, 5.87023088486, 2945.9865416406], [0.18, 1.07686767816, 15806.146839442], [0.135, 0.34109799474, 7322.1024607818], [0.169, 2.2740858315, 379.3734138742], [0.172, 3.83276777655, 6621.850991486], [0.134, 0.8948661109, 13286.1836355236], [0.168, 3.24434245132, 11614.4332937322], [0.135, 6.03727673544, 1214.8023296234], [0.15, 0.81912738038, 3416.8784979754], [0.136, 5.06627117467, 14421.8316369884], [0.138, 5.19336961955, 13363.4300278674], [0.163, 5.91124428824, 16703.07938715119], [0.181, 3.31978654659, 139.6981395228], [0.162, 4.05905033891, 1795.258443721], [0.132, 0.409015061, 1083.260367937], [0.156, 0.1230414464, 1107.1388056848], [0.158, 6.25022915072, 6666.997759398], [0.131, 3.95250083817, 3.4558080462], [0.147, 4.94673462086, 15010.8964639966], [0.14, 6.13853404667, 12729.665967486], [0.131, 5.43398849473, 25665.5174834092], [0.135, 5.06017183369, 11876.469585734], [0.128, 2.8696933273, 6549.6828917132], [0.174, 5.18169887171, 28230.18722269139], [0.179, 3.25589354429, 4922.5717749828], [0.139, 5.33624615245, 23958.6317852334], [0.127, 5.78406495652, 14577.1847261198], [0.128, 1.27276688747, 8584.6616659008], [0.133, 0.39052474466, 12410.7313005486], [0.134, 1.09641189843, 8962.438096258], [0.125, 3.20445201519, 29.8820436102], [0.136, 3.62250122667, 3511.285297319], [0.162, 5.36465149996, 2472.6787626222], [0.15, 0.40179894287, 1111.642245102], [0.129, 1.94909076932, 19645.5255567906], [0.172, 5.21328160366, 6747.712262314], [0.126, 4.39378462616, 21548.9623692918], [0.146, 3.85987749053, 13361.469385731], [0.156, 5.24740844581, 6645.1969867222], [0.137, 4.94588047257, 20995.3929664494], [0.131, 1.72431469184, 11925.2740926006], [0.136, 2.04268940441, 10654.6210194126], [0.14, 1.54439148652, 8219.4652893776], [0.127, 6.16695075115, 10016.314355792], [0.155, 5.47145482987, 2.9689454166], [0.132, 6.25626202928, 13227.3846267638], [0.121, 3.74135485334, 10294.510237451], [0.134, 3.12718351732, 8962.4726035624], [0.122, 0.77282907794, 4936.7988689844], [0.125, 4.23213631052, 15650.7937503106], [0.157, 1.79175545524, 16489.763038061], [0.155, 4.15655698197, 56.3831860762], [0.134, 1.53268827347, 708.98980227659], [0.136, 4.01025697673, 9797.4924843975], [0.156, 4.6155626882, 3354.8395207014], [0.131, 4.47476808853, 11776.8999298644], [0.118, 1.17466010141, 4606.1799053262], [0.128, 0.12648796247, 6681.6449294932], [0.122, 0.1351137794, 8322.5580635962], [0.119, 1.2913911635, 10544.4146981932], [0.128, 4.4496605074, 13465.5424810178], [0.119, 4.0170962999, 14481.205498902], [0.147, 1.8159027965, 685.1113645288], [0.137, 4.78402836071, 3613.2853840514], [0.151, 1.48428558337, 9698.331863442], [0.136, 2.47757608387, 10156.9023601348], [0.123, 2.42353206298, 6.1332259326], [0.117, 5.40635440024, 688.6344828778], [0.153, 5.00372030984, 14556.8967170238], [0.133, 3.15773785434, 1125.8693391036], [0.153, 1.94292660454, 6533.1461289733], [0.124, 4.94608245253, 12825.6451947038], [0.117, 1.13528750738, 4452.2546718018], [0.115, 3.34121813462, 10001.48196070061], [0.115, 3.44586362144, 7696.8878712838], [0.117, 0.72489390402, 27.4688663996], [0.132, 2.41318250916, 6717.252720077], [0.118, 0.35995031424, 27832.0382192832], [0.157, 1.73929012934, 11560.0777160774], [0.148, 2.14023976341, 15265.8865193004], [0.113, 1.29183863745, 26880.3198130326], [0.151, 0.95890610457, 6530.1771835567], [0.153, 5.62679784282, 9911.63095888], [0.157, 0.09791378159, 138.5174968707], [0.119, 2.16883964744, 7082.8969751568], [0.113, 5.43102427558, 422.027441156], [0.13, 2.13493506322, 117.812802892], [0.14, 2.5119459163, 28.9816299794], [0.128, 1.238227512, 6680.804777306], [0.111, 4.60294776614, 25135.8265183146], [0.118, 0.34226497704, 4140.4335518652], [0.112, 4.02233737541, 6314.0005244372], [0.134, 3.3592621473, 11247.2089647698], [0.12, 6.09430372868, 4106.4054911462], [0.117, 0.03006245187, 7.6737919754], [0.109, 3.62630036582, 3344.11829139661], [0.109, 1.94277745743, 16702.9948231962], [0.114, 4.87315937546, 6151.5166346528], [0.109, 5.65707270595, 3344.152798701], [0.108, 0.72637519191, 10.569355047], [0.128, 5.77326416186, 13369.5632538], [0.147, 4.73848506543, 11610.9101753832], [0.145, 4.95495312886, 9859.3706439672], [0.111, 3.28808788953, 257.018007743], [0.112, 4.79777726412, 12140.6011404778], [0.109, 3.73199687068, 13635.1226641508], [0.117, 1.20057736014, 6705.1032911474], [0.149, 4.91688353237, 277.0349937414], [0.108, 3.37299798972, 6717.8302187038], [0.106, 0.53379407701, 5085.1057214178], [0.125, 4.62770076269, 9329.6796788726], [0.107, 4.60288570375, 1957.7250798532], [0.113, 4.04786119569, 6953.8978107512], [0.106, 0.75378922686, 149.8974751268], [0.114, 0.62074562387, 6151.5511419572], [0.108, 5.22204692781, 1556.5681469554], [0.104, 1.02502614223, 4878.8528626778], [0.133, 1.15811543786, 816.6533262152], [0.134, 1.69834857217, 183.869586902], [0.104, 2.58832774275, 14591.4118201214], [0.107, 4.42117075795, 7.130800653], [0.126, 0.03750399181, 16.83220104979], [0.102, 1.20624870972, 11986.6759069534], [0.102, 2.97579561878, 29822.7832363242], [0.116, 4.73049067619, 13366.040135451], [0.13, 4.10484632841, 35.6077905838], [0.113, 3.69200525056, 44.6538332402], [0.111, 5.12900291511, 146.7944328714], [0.126, 1.82187459534, 26887.3660497306], [0.121, 6.08309355316, 7100.7094972748], [0.105, 6.16606590276, 9175.7544453482], [0.132, 2.97955203077, 1250.8301963008], [0.106, 5.08419485009, 8742.0427074714], [0.12, 0.59116561391, 31172.650645983], [0.112, 3.70888430091, 10050.2864675672], [0.1, 1.82077956276, 12012.5822971404], [0.107, 4.86100312387, 7899.550301372], [0.099, 0.72997085174, 18977.1790830088], [0.107, 5.25025570307, 63.7358983034], [0.099, 2.79139996703, 17932.0242468212], [0.097, 4.94370173613, 28109.214616052], [0.122, 4.18676567644, 19617.07636932279], [0.121, 3.14207351411, 9278.8472195668], [0.112, 1.43537110436, 16232.745030318], [0.096, 2.57929371627, 12715.4388734844], [0.096, 2.51396484677, 3535.5838111604], [0.112, 6.19137312195, 6685.1570066627], [0.109, 1.53428110338, 16703.1294438018], [0.096, 4.29245810274, 7906.59653807], [0.096, 3.08847844641, 3468.6312700372], [0.095, 6.091860847, 10037.0897512844], [0.094, 1.79812841802, 20047.1976785478], [0.11, 4.24859410294, 3337.0720546986], [0.093, 2.17945548408, 16066.0658614748], [0.115, 5.44548079869, 11353.8921676402], [0.098, 1.89605054783, 33406.124266998], [0.101, 3.00793005829, 3528.5375744624], [0.096, 5.4065991242, 5749.8617665478], [0.113, 3.93443805059, 7167.1969061892], [0.092, 3.58985964414, 6724.9437657046], [0.119, 3.9056157026, 11346.7786206394], [0.097, 2.5728079023, 1747.6073781529], [0.118, 3.82111723459, 9072.6616711296], [0.096, 0.72646224606, 3152.68727893721], [0.092, 6.23928508055, 24491.4257925834], [0.099, 1.86991802881, 72.0557333548], [0.094, 1.51091806861, 9801.4246376606], [0.091, 4.94377681711, 8756.269801473], [0.095, 2.58771497236, 11663.170490296], [0.093, 0.6609244332, 30.9919847486], [0.088, 2.47386826588, 17232.7530985936], [0.1, 0.19616913512, 11883.5831327348], [0.094, 0.61277732908, 73.6354632196], [0.091, 6.04139177526, 153.9252335244], [0.095, 0.30865798871, 29168.5965462412], [0.11, 6.27936643935, 3337.106562003], [0.087, 2.09287965409, 10264.5658840734], [0.089, 3.27633365389, 3002.3697277168], [0.091, 1.89622049447, 37895.4262903674], [0.118, 3.88268323672, 1236.075660323], [0.094, 2.2781906199, 4845.9002357928], [0.085, 3.07438636612, 9983.7042444616], [0.086, 3.94463425808, 16.764890747], [0.099, 4.58890225582, 3774.3241645766], [0.086, 1.27758598252, 34513.2630726828], [0.118, 6.10625309129, 454.9093665273], [0.096, 6.08772700197, 1755.4716846791], [0.085, 4.73193631802, 4576.6880870228], [0.116, 0.88573303872, 16511.6138673874], [0.083, 3.13948373813, 10191.4174632324], [0.083, 0.36972674664, 9755.2302383776], [0.112, 2.26524635842, 10006.5848089144], [0.087, 4.25461508452, 8.1681365824], [0.087, 5.31716927554, 1868.8593996362], [0.115, 3.3050783005, 14157.7000822446], [0.087, 2.90507350729, 36.995590611], [0.083, 3.58400049244, 12928.7379689224], [0.086, 2.46839611271, 113.7294395684], [0.096, 2.99829695985, 6510.5519827804], [0.084, 1.34333260788, 4133.3873151672], [0.093, 2.41895388985, 20040.15144184979], [0.085, 5.92093268818, 12299.544658261], [0.082, 4.71321236549, 7733.493236588], [0.081, 5.26971110105, 12199.9750023914], [0.08, 4.34410099751, 7218.029365495], [0.095, 0.02613500045, 2.9010142898], [0.094, 6.22018441621, 20043.69181385099], [0.085, 4.66573809999, 8638.9499332528], [0.079, 2.89839604813, 22854.596021804], [0.104, 0.94882888784, 2735.762685995], [0.08, 1.68097745917, 12839.8722887054], [0.085, 1.95515305721, 4686.95671800959], [0.094, 0.58147434179, 14128.2427712456], [0.091, 1.16317999954, 3495.9655158312], [0.084, 4.04104644774, 9815.6517316622], [0.082, 1.83662951627, 19190.4781784468], [0.08, 4.04733274699, 3188.7151456146], [0.084, 2.71620952175, 12089.768681172], [0.08, 2.7736315821, 9495.6694333538], [0.078, 5.77285430206, 10397.6030116696], [0.084, 0.78188080031, 7214.4389368432], [0.094, 2.14762315943, 13532.0298899322], [0.101, 5.76349087526, 1484.9324896942], [0.082, 3.11421789241, 8446.9914788172], [0.096, 5.85152670536, 3492.509707785], [0.079, 4.69625309523, 5298.337506553], [0.097, 3.97960395898, 18208.349942592], [0.105, 1.74376904536, 36.6485629295], [0.094, 4.18941238607, 20043.6573065466], [0.075, 3.46629875063, 13341.6743113068], [0.092, 2.67278833288, 6680.7949702729], [0.075, 4.59723160021, 9993.3880926316], [0.087, 0.91979096638, 8425.7181481176], [0.074, 0.42228487063, 48429.2821823244], [0.074, 0.48470953224, 11456.9849418588], [0.077, 0.10707484151, 1371.411763456], [0.093, 1.38010528069, 3145.6410422392], [0.075, 5.2806125707, 12306.590894959], [0.079, 3.7866638604, 7.5786792096], [0.073, 4.42902162523, 14.7372823256], [0.084, 3.41538432898, 6637.5059410946], [0.093, 3.41302342683, 1596.1191319818], [0.071, 3.13537213242, 9488.6231966558], [0.079, 2.33442828498, 12465.5344127422], [0.078, 2.21525134547, 2810.988771908], [0.099, 0.48801369293, 17499.3601403154], [0.075, 4.10299895268, 5525.8636959926], [0.071, 4.04186021414, 259.493494721], [0.073, 2.20102876718, 30774.5016425748], [0.074, 4.93439968296, 13517.8027959306], [0.071, 5.32625652676, 6670.1791531357], [0.078, 2.17664185326, 13421.8235687128], [0.088, 5.38469204503, 17762.4440636882], [0.081, 2.48353174238, 73.6009559152], [0.092, 1.1308844819, 7747.7203305896], [0.07, 1.16361323015, 5220.1708014532], [0.084, 5.8322038791, 22.3782713026], [0.076, 5.21065604639, 4271.9755135516], [0.08, 4.01817623627, 3311.18291816379], [0.068, 2.4593769794, 6279.5527316424], [0.067, 4.31723563048, 2281.2978068134], [0.067, 4.88776321797, 4379.6390374902], [0.069, 3.57006764536, 14955.045720432], [0.078, 2.62374773232, 2810.8541513024], [0.067, 4.76301301456, 6812.766815086], [0.07, 5.60319851277, 13383.2251022916], [0.07, 3.05647570196, 10081.211142013], [0.081, 4.91537623765, 3333.9287628257], [0.082, 5.4920498711, 5483.254724826], [0.065, 3.50466797067, 9161.5273513466], [0.065, 2.79212460026, 13497.5147868346], [0.07, 0.93640431668, 6106.8800550648], [0.073, 2.57583496978, 6614.7374444852], [0.07, 0.8417007058, 16695.94858649819], [0.069, 1.10040627005, 2544.3316735356], [0.063, 6.05841309176, 6453.7487206106], [0.069, 2.67053540192, 2641.3412784722], [0.086, 1.73112264739, 6286.5989683404], [0.062, 5.49002783256, 4957.0868780804], [0.072, 3.38857910283, 3184.2117061974], [0.069, 5.35281990892, 2544.2971662312], [0.064, 4.79175268505, 3181.6689089166], [0.06, 6.18449904353, 3361.9480671668], [0.065, 1.48236627574, 4819.4790007642], [0.054, 3.66018290396, 2917.5373541728], [0.064, 4.72286914683, 2281.1631862078], [0.053, 4.65521663671, 3448.2759506384], [0.06, 0.77450276964, 3319.2767862328], [0.051, 1.45142985881, 3547.3131639964], [0.051, 4.81258158513, 4403.517475238], [0.05, 0.37366902835, 3322.7999045818], [0.05, 4.68787711774, 3253.30422216], [0.067, 4.63578431535, 4694.0029547076], [0.049, 3.17471347671, 5452.2627400774], [0.051, 2.54791773443, 4001.8453534808], [0.048, 2.81171553464, 3372.5847325166], [0.054, 4.45945188023, 10284.9212034722], [0.053, 3.8513121352, 9758.7533567266], [0.051, 1.11244863072, 6901.6374958384], [0.062, 1.4219800963, 6830.7880505342], [0.055, 5.6167298818, 45494.58142974879], [0.054, 0.61701959453, 4716.3862265456], [0.054, 4.28556326526, 2910.4911174748], [0.045, 3.14626081312, 13951.5145338074], [0.05, 4.16235480519, 12979.553174576], [0.046, 1.66182208107, 7768.0083396856], [0.045, 5.07701425888, 14951.522602083], [0.043, 4.3172345953, 5881.4037282342], [0.045, 2.39713581676, 8852.2490286908], [0.043, 2.10202660495, 3337.1566186536], [0.048, 0.19934255781, 1905.4647649404], [0.056, 5.25687695855, 12808.8803039568], [0.049, 2.06320966659, 4296.9015826704], [0.042, 6.07282126953, 4295.8539512994], [0.043, 1.7457161378, 3130.8364496108], [0.05, 2.27112469544, 3427.9206312396], [0.05, 0.30214747765, 3358.4249488178], [0.043, 5.05297177283, 3229.4257844122], [0.054, 6.11998016428, 16894.5103996106], [0.043, 1.90603004035, 3451.7990689874], [0.039, 0.50727886431, 10011.2006147496], [0.052, 3.17851184154, 2324.9494088156], [0.038, 4.88249540246, 3499.555944483], [0.039, 5.28113083211, 3343.1552239806], [0.039, 4.98185580267, 3468.5639597344], [0.047, 2.16244218985, 10027.3602044068], [0.037, 5.84953090935, 6791.431174619], [0.048, 5.03779546898, 7064.1041319706], [0.038, 0.58076516432, 8966.3875031733], [0.051, 3.36181117037, 8976.6824439118], [0.042, 4.13725767158, 8336.7851575978], [0.038, 5.75425648893, 4531.5363185754], [0.038, 3.55681323215, 5351.7127631396], [0.04, 2.79414141035, 3067.9394693482], [0.04, 4.99798468494, 10042.1925994982], [0.037, 1.82286411009, 10017.9559447414], [0.036, 6.02115369796, 6474.524116103], [0.044, 3.01299253859, 7417.1013669314], [0.045, 2.33470159894, 3123.7902129128], [0.039, 4.91767933978, 8034.6153814074]], [[334085627474.342, 0.0, 0.0], [1458227.051, 3.60426053609, 3340.6124266998], [164901.343, 3.92631250962, 6681.2248533996], [19963.338, 4.2659406103, 10021.8372800994], [3452.399, 4.73210386365, 3.523118349], [2485.48, 4.61277567318, 13362.4497067992], [841.551, 4.45858256765, 2281.2304965106], [537.566, 5.01589727492, 398.1490034082], [521.041, 4.99422678175, 3344.1355450488], [432.614, 2.5606640286, 191.4482661116], [429.656, 5.31646162367, 155.4203994342], [381.747, 3.53881289437, 796.2980068164], [314.129, 4.96335266049, 16703.062133499], [282.804, 3.15967518204, 2544.3144198834], [205.664, 4.5689145566, 2146.1654164752], [168.805, 1.32894813366, 3337.0893083508], [157.587, 4.18501035954, 1751.539531416], [133.686, 2.23325104196, 0.9803210682], [116.561, 2.21347652545, 1059.3819301892], [117.591, 6.02407213861, 6151.533888305], [113.595, 5.42803224317, 3738.761430108], [133.563, 5.97421903927, 1748.016413067], [91.098, 1.09627836591, 1349.8674096588], [83.301, 5.29636626272, 6684.7479717486], [113.876, 2.12869455089, 1194.4470102246], [80.776, 4.42813405865, 529.6909650946], [79.531, 2.2486426633, 8962.4553499102], [72.505, 5.8420816324, 242.728603974], [72.946, 2.50189460554, 951.7184062506], [71.487, 3.85636094435, 2914.0142358238], [85.342, 3.90854841008, 553.5694028424], [67.582, 5.02327686473, 382.8965322232], [65.089, 1.01802439311, 3340.5951730476], [65.089, 3.04879603978, 3340.629680352], [61.508, 4.151831598, 3149.1641605882], [48.477, 4.87362121538, 213.299095438], [46.584, 1.31452419914, 3185.1920272656], [56.52, 3.8881369932, 4136.9104335162], [47.613, 1.18238046057, 3333.498879699], [41.343, 0.71385375517, 1592.5960136328], [40.055, 5.31611875491, 20043.6745601988], [40.272, 2.72542480614, 7.1135470008], [32.886, 5.41067411968, 6283.0758499914], [28.244, 0.04534124888, 9492.1463150048], [22.294, 5.88516997273, 3870.3033917944], [22.431, 5.46592525433, 20.3553193988], [22.612, 0.83775884934, 3097.88382272579], [21.418, 5.37934044204, 3340.545116397], [23.335, 6.16762213077, 3532.0606928114], [26.579, 3.88960724782, 1221.8485663214], [22.797, 1.54504711003, 2274.1169495098], [20.431, 2.36353950189, 1589.0728952838], [20.186, 3.36375535766, 5088.6288397668], [26.554, 5.11271747607, 2700.7151403858], [19.675, 2.57805423988, 12303.06777661], [19.468, 0.49216434489, 6677.7017350506], [21.104, 3.52525428062, 15.252471185], [21.425, 4.97081508139, 3340.6797370026], [18.505, 5.57863503922, 1990.745017041], [17.811, 6.12537931996, 4292.3308329504], [16.472, 2.60291845066, 3341.592747768], [16.599, 1.25519718278, 3894.1818295422], [19.455, 2.53112676345, 4399.994356889], [15.0, 1.03464802434, 2288.3440435114], [20.029, 4.73119428749, 4690.4798363586], [15.381, 2.4700947035, 4535.0594369244], [19.964, 5.78652958398, 7079.3738568078], [15.307, 2.26515985343, 3723.508958923], [14.705, 3.36979890389, 6681.2421070518], [13.535, 2.1233441041, 5486.777843175], [12.95, 5.61929676688, 10025.3603984484], [12.682, 2.95022113262, 3496.032826134], [13.644, 1.97739547259, 5614.7293762096], [13.013, 1.51424752315, 5628.9564702112], [14.705, 1.33902715586, 6681.2075997474], [11.353, 6.23438193885, 135.0650800354], [13.275, 3.42243595774, 5621.8429232104], [10.867, 5.28184140482, 2818.035008606], [11.85, 3.12701832949, 426.598190876], [10.472, 2.73581537999, 2787.0430238574], [11.132, 5.84178807242, 2803.8079146044], [11.764, 2.58551521265, 8432.7643848156], [11.854, 5.4763068691, 3553.9115221378], [8.49, 1.91378007528, 11773.3768115154], [9.708, 4.52957217749, 6489.776587288], [8.562, 3.16141186861, 162.4666361322], [10.958, 4.15771850822, 2388.8940204492], [8.133, 1.61295625304, 2957.7158944766], [8.84, 4.23294294197, 7477.522860216], [8.034, 5.69983564288, 6041.3275670856], [8.344, 2.18273563186, 23.8784377478], [7.696, 5.71877332978, 9623.6882766912], [8.695, 4.43542512603, 5092.1519581158], [8.434, 3.16292250873, 3347.7259737006], [6.664, 5.07517838003, 8031.0922630584], [8.65, 4.33256981793, 3339.6321056316], [7.372, 6.17831593269, 3583.3410306738], [5.726, 3.68120120299, 8429.2412664666], [6.186, 3.54165967734, 692.1576012268], [5.438, 1.0512968958, 4933.2084403326], [6.108, 1.66240879939, 6525.8044539654], [5.154, 1.14703246368, 28.4491874678], [4.85, 5.29254832907, 6681.2921637024], [5.467, 6.12511022569, 2487.4160449478], [4.866, 3.10475368803, 5.5229243074], [6.36, 2.11896608283, 5884.9268465832], [5.223, 0.3744626412, 12832.7587417046], [4.71, 0.23326120326, 36.0278666774], [4.954, 2.44806818502, 5099.2655051166], [4.861, 5.6050529887, 6467.9257579616], [4.706, 0.02998416568, 7210.9158184942], [4.845, 5.70115105957, 6681.1575430968], [5.496, 2.01006612503, 522.5774180938], [4.964, 1.51006845561, 1744.4259844152], [4.443, 0.31208413867, 10018.3141617504], [5.381, 0.18359380473, 2942.4634232916], [4.075, 3.9558210833, 3.881335358], [5.462, 0.19274227117, 7632.9432596502], [4.11, 1.59535768711, 7234.794256242], [4.287, 2.87635993968, 2810.9214616052], [5.276, 2.22638595594, 3127.3133312618], [4.45, 4.17005729081, 2906.900688823], [5.144, 5.66878565669, 23384.2869868986], [3.844, 2.2644218316, 2699.7348193176], [3.514, 1.76463961051, 1758.6530784168], [3.351, 2.66194137496, 4929.6853219836], [4.299, 4.43057446968, 640.8776073822], [3.14, 1.75866226873, 9595.2390892234], [3.716, 2.91969220147, 15643.6802033098], [3.249, 6.13937134379, 10419.9862835076], [3.077, 2.56115174488, 7064.1213856228], [3.208, 2.3251945308, 5085.038411115], [2.93, 1.27797225349, 574.3447983348], [2.771, 1.75664216142, 639.897286314], [3.325, 2.58945297384, 2118.7638603784], [3.187, 2.8664675151, 7740.6067835888], [2.78, 0.43157089331, 5828.0284716476], [2.824, 0.98500544471, 3191.0492295652], [3.016, 1.86555882509, 7.046236698], [3.364, 1.52847138842, 6674.1113063988], [2.672, 3.70855172347, 10021.8545337516], [2.636, 3.11790581052, 6836.6452528338], [2.672, 1.67778079449, 10021.8200264472], [2.563, 3.77294986894, 2921.1277828246], [2.509, 0.30454165124, 3475.6775067352], [2.4, 0.96972421975, 3319.8370312074], [2.262, 2.8139431495, 7875.6718636242], [2.395, 2.96002707485, 6682.2051744678], [2.21, 0.61263930586, 10973.55568635], [2.248, 4.12382007742, 59.3738619136], [2.426, 5.91508357946, 5331.3574437408], [2.158, 2.17583545077, 15113.9892382152], [1.941, 5.47668312685, 11371.7046897582], [1.903, 5.11165653855, 1066.49547719], [2.37, 3.87889340214, 3355.8648978848], [2.299, 1.15914205086, 3320.257107301], [1.944, 5.89081872133, 6894.5239488376], [1.843, 3.07643314617, 3325.3599555148], [1.809, 4.97905218276, 1648.4467571974], [2.136, 1.91364787635, 8969.568896911], [2.099, 3.00410255642, 6254.6266625236], [1.915, 3.5590743174, 3767.2106175758], [1.991, 5.37274107053, 206.1855484372], [1.685, 5.49701299817, 266.6070417218], [1.646, 1.31923405548, 3264.3463554242], [1.732, 1.81361103995, 536.8045120954], [1.723, 3.25900379342, 7903.073419721], [1.564, 5.75428852012, 3360.96774609859], [1.589, 1.73273563259, 3134.4268782626], [1.69, 2.43213510013, 3120.199784261], [1.549, 1.54016426558, 8425.6508378148], [1.536, 5.88431472627, 20.7753954924], [1.46, 4.89733072879, 9830.3890139878], [2.023, 5.94808387002, 13365.9728251482], [1.991, 3.11613326265, 3361.3878221922], [1.401, 2.24482184868, 3344.2028553516], [1.365, 4.58006320751, 10818.1352869158], [1.392, 5.48931017516, 170.6728706192], [1.36, 3.07974035205, 6127.6554505572], [1.345, 1.18653158091, 14584.2982731206], [1.717, 5.62501515015, 6158.6474353058], [1.408, 1.82072980335, 3337.021998048], [1.736, 2.01921900546, 10575.4066829418], [1.402, 4.50079374387, 5729.506447149], [1.266, 5.91088435118, 9808.5381846614], [1.433, 6.05024653324, 12964.300703391], [1.223, 0.82796258263, 419.4846438752], [1.393, 1.05117949107, 6438.4962494256], [1.272, 1.50116723856, 8439.8779318164], [1.143, 4.89747373731, 220.4126424388], [1.183, 3.52587190041, 6688.3384004004], [1.132, 6.19236255633, 6144.4203413042], [1.154, 2.2305848597, 8955.3418029094], [1.129, 3.44264300692, 10177.2576795336], [1.152, 5.29913300616, 27.4015560968], [1.274, 4.5842123844, 6247.5131155228], [1.093, 2.8262333236, 4569.574540022], [1.303, 0.44350560735, 87.30820453981], [1.335, 2.1420445773, 11243.6858464208], [1.102, 1.96260837539, 6298.3283211764], [1.066, 2.89865914321, 10404.7338123226], [1.027, 4.79269049654, 3914.9572250346], [1.015, 0.2284781873, 3230.4061054804], [1.041, 3.73274497451, 10213.285546211], [1.154, 4.14326179244, 6261.7402095244], [1.306, 3.67645557029, 2301.58581590939], [1.145, 5.12292846748, 4562.4609930212], [1.275, 5.14333847164, 2693.601593385], [0.914, 1.22398892152, 103.0927742186], [0.955, 1.52875141393, 3369.0616141676], [0.908, 0.48223420834, 13358.9265884502], [0.892, 1.35161136807, 1214.7350193206], [0.998, 3.2966588195, 3178.1457905676], [0.98, 1.69212466625, 43.718912305], [0.919, 2.45445889752, 13916.0191096416], [0.899, 5.94990531529, 12168.0026965746], [0.891, 5.63297246408, 10021.9045904022], [0.922, 3.91483430303, 9225.539273283], [0.93, 0.240730047, 6923.9534573736], [0.923, 1.1039607445, 29.429508536], [0.816, 4.65198282005, 2707.8286873866], [0.791, 6.08595583868, 2384.3232707292], [0.82, 4.80968546763, 533.2140834436], [0.758, 2.06012386134, 12935.8515159232], [0.738, 1.03564559078, 14314.1681130498], [0.908, 0.69862047595, 16173.3711684044], [0.7, 4.0878823461, 5202.3582793352], [0.829, 2.01062325398, 9866.4168806652], [0.887, 6.04145842617, 10021.7699697966], [0.768, 1.39532897827, 8273.8208670324], [0.873, 4.45446600602, 3316.733988952], [0.673, 3.02440642752, 1039.0266107904], [0.66, 2.83410276989, 107.6635239386], [0.838, 0.39195370222, 10551.528245194], [0.708, 3.27560955336, 18984.2926300096], [0.658, 6.01853128902, 26724.8994135984], [0.685, 1.98132615912, 1228.9621133222], [0.595, 0.10260171285, 111.1866422876], [0.563, 1.59138368358, 2391.43681773], [0.555, 2.7080196219, 4555.3474460204], [0.696, 2.89276686038, 2648.454825473], [0.587, 4.56017988729, 6680.2445323314], [0.54, 2.86002662919, 5459.3762870782], [0.53, 5.64877399946, 6034.2140200848], [0.52, 0.20012848836, 13760.5987102074], [0.552, 5.08766140543, 1903.4368125012], [0.512, 3.21411265909, 11081.2192102886], [0.641, 5.19459033638, 6048.4411140864], [0.677, 3.87723948458, 13517.8701062334], [0.534, 0.23224033336, 51.28033786241], [0.67, 3.69368226469, 3335.0895023924], [0.486, 2.41879628327, 3364.4908644476], [0.5, 4.31447859057, 3344.4937620578], [0.481, 1.56481992611, 1964.838626854], [0.504, 2.47456295599, 3863.1898447936], [0.523, 0.65856269237, 853.196381752], [0.481, 0.12971954679, 66.4874089144], [0.535, 2.98601678918, 8270.2977486834], [0.45, 2.02303462834, 13362.432453147], [0.448, 5.59827312967, 149.5631971346], [0.519, 2.75931838722, 3503.079062832], [0.534, 4.77352933347, 1118.7557921028], [0.45, 4.05380888708, 13362.4669604514], [0.439, 4.83194205477, 3116.2676309979], [0.567, 5.67483490268, 227.476132789], [0.459, 3.44555998004, 6702.000248892], [0.545, 2.01193901951, 7910.1869667218], [0.425, 2.79854459343, 433.7117378768], [0.429, 4.30113040289, 16858.4825329332], [0.409, 0.0544800954, 3304.5845600224], [0.434, 5.70806855136, 21.8508293264], [0.399, 4.93233684937, 9779.1086761254], [0.532, 1.31038986189, 6660.4494579072], [0.398, 5.31345458361, 13119.72110282519], [0.459, 2.53671963587, 74.7815985673], [0.384, 2.29906801437, 12310.1813236108], [0.467, 5.12562716972, 1596.1864422846], [0.516, 5.84767782422, 1052.2683831884], [0.414, 4.7540958261, 3981.490034082], [0.365, 3.73271671549, 5518.7501489918], [0.367, 0.13506394328, 56.8983749356], [0.459, 0.15582180531, 9381.9399937854], [0.392, 2.15845463651, 3980.5097130138], [0.396, 1.48538591462, 17924.9106998204], [0.456, 0.64517343174, 6816.289933435], [0.358, 5.87219240658, 3607.2194684216], [0.49, 0.65766946042, 3376.6402933772], [0.365, 1.91816243676, 3347.6586633978], [0.397, 1.80006148744, 7895.9598727202], [0.336, 2.14687780119, 6677.6344247478], [0.34, 2.88185925998, 17256.6315363414], [0.334, 6.13670038311, 5724.935697429], [0.339, 4.08527025169, 664.75604513], [0.432, 2.52188285182, 18454.601664915], [0.336, 4.22863444521, 6696.4773245846], [0.342, 5.96724705923, 3546.797975137], [0.326, 4.02557052581, 6872.6731195112], [0.323, 5.05444843838, 3237.5196524812], [0.324, 2.89151245241, 8329.671610597], [0.321, 6.25886976298, 10235.1363755374], [0.333, 2.57725424455, 6684.8152820514], [0.356, 6.27424874986, 8671.9698704406], [0.319, 5.05665355586, 36.6053653042], [0.305, 3.88755666972, 7107.8230442756], [0.322, 6.28125601341, 16706.585251848], [0.334, 3.15240620873, 11216.284290324], [0.287, 6.16467002771, 3973.396166013], [0.283, 2.67802456636, 3877.4169387952], [0.283, 1.6629315709, 1692.1656695024], [0.276, 2.94210551399, 3415.3940252671], [0.275, 0.53418048945, 17395.2197347258], [0.355, 3.31406527401, 10022.8176011676], [0.311, 1.50310910269, 6660.8695340008], [0.269, 1.84517097065, 11780.4903585162], [0.27, 4.42425307819, 310.8407988684], [0.275, 3.58464612058, 128.0188433374], [0.275, 2.2252353958, 3017.1070100424], [0.312, 5.15950395287, 7255.5696517344], [0.299, 0.72552273097, 155.3530891314], [0.353, 5.7004779835, 16460.33352952499], [0.267, 5.97864271046, 9499.2598620056], [0.27, 0.77063210836, 11236.57229942], [0.339, 3.360921489, 5625.3660415594], [0.315, 2.33795159922, 3281.2385647862], [0.247, 3.71002922076, 7373.3824546264], [0.328, 0.18162415648, 5618.3198048614], [0.247, 6.27486009856, 15508.6151232744], [0.292, 0.14989609091, 16304.9131300908], [0.326, 4.53606745007, 2178.137722292], [0.286, 5.47710043383, 9168.6408983474], [0.246, 1.4983871248, 15110.4661198662], [0.262, 2.58821936465, 3336.7310913418], [0.244, 0.84015413449, 16062.1845261168], [0.245, 0.37772563756, 12721.572099417], [0.25, 2.26824758119, 6784.3176276182], [0.248, 6.22740483254, 13149.1506113612], [0.255, 4.93078809107, 14158.7477136156], [0.24, 6.15843594225, 19800.9459562248], [0.249, 5.47044926479, 4407.1079038898], [0.235, 5.38750866169, 76.2660712756], [0.258, 6.10384464886, 2480.302497947], [0.306, 5.35546231697, 2766.267628365], [0.236, 5.25670707064, 13171.0014406876], [0.224, 4.52466909993, 12566.1516999828], [0.22, 5.83694256642, 13936.794505134], [0.271, 1.42460945147, 14054.607308026], [0.213, 0.21127914063, 1505.28780909299], [0.267, 5.16501015011, 3205.5473466644], [0.212, 4.26202838353, 6546.1597733642], [0.211, 6.21401684263, 3253.30422216], [0.233, 3.72007597749, 3346.1353510072], [0.274, 2.91986569135, 10713.9948813262], [0.201, 3.36695295492, 6.6836638741], [0.223, 3.08788599159, 401.6721217572], [0.234, 2.24268269202, 110.2063212194], [0.264, 2.0817874274, 6475.0393049624], [0.231, 4.5380638448, 9602.3526362242], [0.213, 2.85452302656, 5415.6573747732], [0.195, 0.99589439506, 5642.1982426092], [0.259, 0.00464351114, 9380.9596727172], [0.197, 3.32573550633, 3657.0042963564], [0.228, 5.33299975472, 3561.0250691386], [0.193, 1.25502846507, 6606.4432548323], [0.199, 1.13665869139, 685.044054226], [0.227, 4.49610509002, 589.0648270082], [0.217, 5.48740879816, 10596.1820784342], [0.192, 4.26501800444, 3333.5661900018], [0.188, 1.44301618203, 4885.9664096786], [0.178, 4.82506490541, 9070.1188738488], [0.184, 5.69637552141, 3351.2490920496], [0.187, 0.76021337348, 16699.53901514999], [0.226, 0.82767654373, 3265.8308281325], [0.204, 6.20933387021, 394.6258850592], [0.176, 3.89567349231, 10028.9508271002], [0.174, 3.68843293982, 735.8765135318], [0.173, 2.44269377255, 3603.6963500726], [0.177, 1.24154853329, 12722.5524204852], [0.184, 4.77203925989, 286.9623611206], [0.171, 4.67140116008, 20199.094959633], [0.17, 5.13753345526, 1332.0548875408], [0.201, 2.37863157745, 16276.463942623], [0.209, 0.57156268506, 11250.7993934216], [0.164, 1.98441291396, 10014.7237330986], [0.191, 0.60250751218, 56.8032621698], [0.171, 6.22556266993, 17277.4069318338], [0.166, 1.05948008727, 19513.9835951042], [0.163, 1.59661610701, 1437.1756141986], [0.165, 3.36308723589, 6665.9723822146], [0.184, 3.20554894393, 263.0839233728], [0.212, 3.10485836003, 4039.8835749274], [0.176, 3.41768939214, 9468.267877257], [0.163, 1.39275730949, 8982.810669309], [0.213, 3.39734274482, 931.3630868518], [0.189, 4.54004144896, 8542.970706035], [0.191, 1.15555618959, 3169.9395560806], [0.155, 1.41249963094, 22.7684966094], [0.153, 5.14168081601, 156.4007205024], [0.159, 3.64996617906, 8013.2797409404], [0.151, 1.93804487507, 3384.3313390048], [0.157, 0.58554505759, 158.9435177832], [0.173, 2.72517427493, 2807.3983432562], [0.159, 0.67192454133, 13892.1406718938], [0.15, 2.66045714174, 19004.6479494084], [0.192, 5.73782632783, 206.7007372966], [0.143, 3.19213280913, 6843.6914895318], [0.194, 1.32358882667, 19402.7969528166], [0.143, 2.3647816372, 13207.029307365], [0.14, 1.8880056884, 11766.2632645146], [0.144, 0.69018080218, 17085.9586657222], [0.183, 5.98085295555, 13362.517017102], [0.161, 2.92764155222, 5.8572022996], [0.162, 6.07051064413, 6701.5801727984], [0.192, 0.86266150575, 2814.4445799542], [0.182, 5.26446797092, 3873.8265101434], [0.137, 0.41563614709, 5820.9149246468], [0.144, 3.02314051168, 708.98980227659], [0.184, 4.61314496499, 3329.97576135], [0.131, 3.48156082643, 367.2243289624], [0.173, 3.09922849765, 12295.9542296092], [0.135, 2.23311632892, 15664.03552270859], [0.147, 1.95810911154, 5732.0492444298], [0.158, 1.48909254724, 29.4918183034], [0.127, 5.5553408004, 3368.0139827966], [0.129, 1.78002583252, 22743.4093795164], [0.132, 2.81496895377, 21795.21409161479], [0.127, 5.73090203501, 3340.19235060619], [0.164, 1.87613918877, 6709.6740408674], [0.123, 3.61238958991, 22324.9050567094], [0.129, 4.92064308735, 2540.7913015344], [0.121, 6.16922638434, 20206.141196331], [0.122, 5.79901866314, 1854.6323056346], [0.133, 0.50941998058, 3274.1250177854], [0.151, 1.61342807879, 1107.1388056848], [0.165, 2.02795177586, 290.4854794696], [0.125, 0.52719797619, 2604.735913168], [0.144, 5.68526782434, 8827.3902698748], [0.126, 3.80246508251, 765.7930644464], [0.116, 1.79450246249, 647.0108333148], [0.126, 2.00195272473, 699.2711482276], [0.147, 6.22619740782, 6040.3472460174], [0.119, 2.05840518265, 15121.102785216], [0.114, 2.7487709147, 6460.8122109608], [0.155, 1.78154091696, 21265.5231265202], [0.146, 3.37351237411, 1861.7458526354], [0.118, 4.07281676691, 418.504322807], [0.116, 0.10434606071, 13362.3823964964], [0.129, 0.78419803719, 3427.9206312396], [0.152, 0.32620694442, 3443.7052009184], [0.11, 0.56398082486, 661.232926781], [0.111, 4.05380946072, 568.8218740274], [0.108, 3.17700641574, 3448.2759506384], [0.138, 4.47698517191, 3326.3853326982], [0.108, 4.89922372003, 9588.1255422226], [0.114, 4.80828825403, 6657.3464156518], [0.108, 4.10637483972, 13553.8979729108], [0.125, 0.33573243959, 18849.2275499742], [0.115, 3.18885465852, 2409.249339848], [0.104, 3.23074163851, 3472.1543883862], [0.104, 0.09799515047, 30065.5118402982], [0.112, 1.64487733528, 10001.061884607], [0.143, 3.53781769283, 6518.7582172674], [0.113, 5.20979306912, 2125.8774073792], [0.104, 2.77582098882, 38.1330356378], [0.133, 5.88513337452, 5835.1420186484], [0.105, 4.11662579413, 6675.7019290922], [0.102, 0.60100887043, 10264.5658840734], [0.101, 3.78636130664, 10042.6126755918], [0.139, 1.80936944447, 12323.4230960088], [0.101, 2.47217208753, 7380.4960016272], [0.13, 2.53454569863, 11769.8536931664], [0.1, 5.72291104291, 14.2270940016], [0.135, 4.2023756451, 4672.6673142406], [0.133, 0.34413768012, 16489.763038061], [0.098, 1.44874403589, 3370.0419352358], [0.131, 1.31336606248, 3313.210870603], [0.111, 3.12463539337, 309.2783226558], [0.101, 3.15369992044, 24150.080051345], [0.102, 6.13479937096, 2277.7073781616], [0.099, 0.10085261274, 12839.8722887054], [0.134, 2.91637947295, 57.8786960038], [0.104, 3.3028305233, 3399.9862886134], [0.108, 4.92699760221, 802.3639224462], [0.106, 2.89298330043, 7799.9806455024], [0.112, 3.12761163915, 5989.0672521728], [0.094, 3.42562596561, 3510.1926098328], [0.102, 0.94285421551, 3209.0704650134], [0.096, 0.79636181668, 3024.2205570432], [0.093, 1.08979608844, 14577.1847261198], [0.097, 3.56551535742, 14421.8316369884], [0.092, 5.0227963751, 2494.5295919486], [0.123, 5.83481108101, 7747.7203305896], [0.111, 3.31406538379, 11610.9101753832], [0.118, 5.0084532296, 1581.959348283], [0.091, 2.36839307589, 11140.5930722022], [0.099, 2.93269536697, 2067.9314010726], [0.124, 3.15220420912, 22345.2603761082], [0.09, 0.85462370851, 17232.7530985936], [0.125, 1.54866979468, 1435.1476617594], [0.113, 4.57220387105, 14712.317116458], [0.103, 0.11158194413, 11.0457002639], [0.113, 2.41110151532, 5244.049239201], [0.091, 1.7718473028, 2221.856634597], [0.114, 1.92696878615, 8226.5788363784], [0.118, 0.29322259611, 2945.9865416406], [0.089, 4.49875865671, 21947.1113727], [0.104, 1.36766858693, 4032.7700279266], [0.116, 4.67476277278, 272.6729573516], [0.105, 3.7332797385, 4989.0591838972], [0.095, 0.34653808205, 13517.8027959306], [0.086, 2.70925448214, 7218.029365495], [0.112, 5.27572276726, 17499.3601403154], [0.114, 3.37335971932, 2938.9403049426], [0.09, 0.26623024836, 9485.032768004], [0.086, 3.66786582491, 6997.6167230562], [0.087, 4.0782360868, 18606.4989460002], [0.117, 5.61863859185, 16511.6138673874], [0.084, 2.80171829534, 8584.6616659008], [0.086, 5.87459621301, 73.6009559152], [0.09, 1.07789160729, 10721.108428327], [0.084, 0.78729386249, 146.8116865236], [0.112, 2.31690430881, 9638.9407478762], [0.083, 5.90575201511, 16858.41522263039], [0.082, 4.316905577, 9374.8264467846], [0.083, 1.41315204958, 22854.596021804], [0.084, 0.90320571725, 2171.0241752912], [0.082, 1.59442952041, 9947.0556815321], [0.082, 0.44163602941, 4782.87363546], [0.086, 5.18335054161, 12410.7313005486], [0.085, 3.61669636863, 8965.9784682592], [0.097, 5.3551176514, 4996.172730898], [0.085, 2.36814442737, 1062.9050485382], [0.078, 1.75580354602, 2060.8178540718], [0.087, 0.98702744399, 10156.9023601348], [0.098, 0.35294347682, 23546.7536230308], [0.101, 1.03298143418, 20040.15144184979], [0.088, 0.56201084357, 17101.2111369072], [0.082, 2.65765057749, 12979.553174576], [0.085, 1.07007237991, 10706.8813343254], [0.082, 0.8058839632, 20735.83216142559], [0.092, 4.87180501294, 9389.0535407862], [0.078, 3.22869264518, 11925.2740926006], [0.074, 5.59171946181, 8535.8571590342], [0.08, 0.42260849968, 956.2891559706], [0.082, 1.47379060963, 16.83220104979], [0.073, 3.76950560688, 8859.3625756916], [0.073, 4.5913018263, 362.1211367308], [0.072, 5.15373872266, 9872.2740829648], [0.098, 2.47740242208, 5401.4302807716], [0.071, 0.08395696279, 15849.865751747], [0.078, 0.04212599783, 16703.1294438018], [0.075, 3.77172360793, 4845.9002357928], [0.072, 2.01742377451, 1329.51209026], [0.076, 0.30413402871, 72.0557333548], [0.097, 5.1510931855, 1.4844727083], [0.07, 0.33648335823, 23141.5583829246], [0.068, 0.34828385806, 20047.1976785478], [0.078, 1.42772075938, 16063.164847185], [0.081, 2.37498404818, 16703.0448798468], [0.069, 3.66727984195, 13363.4300278674], [0.067, 1.77194706681, 18451.07854656599], [0.073, 0.41181711796, 33406.124266998], [0.067, 3.1594684038, 8799.988713778], [0.067, 4.07602260745, 10448.4354709754], [0.068, 1.78981361818, 224.3447957019], [0.066, 1.01449371817, 4193.8088084518], [0.067, 4.89249339125, 12082.6551341712], [0.081, 0.61914094848, 949.1756089698], [0.066, 3.39914635235, 10184.3039162316], [0.064, 5.50528849889, 4936.7988689844], [0.064, 1.8260823549, 3077.528503327], [0.069, 2.48571574894, 10018.2468514476], [0.064, 2.8044732232, 20809.4676246452], [0.068, 0.9790733543, 6717.252720077], [0.087, 2.45966764758, 7321.1221397136], [0.062, 1.69131771765, 632.7837393132], [0.081, 4.40575713075, 16703.07938715119], [0.063, 3.63625395496, 25685.872802808], [0.075, 5.54907590704, 16872.642316632], [0.061, 0.33159827734, 12012.5822971404], [0.063, 3.16314818302, 11670.2840372968], [0.062, 0.23148800541, 7314.0085927128], [0.078, 1.65377731167, 11614.4332937322], [0.068, 1.10866475394, 6155.057006654], [0.068, 4.45713540461, 9175.7544453482], [0.081, 3.66553577428, 15265.8865193004], [0.068, 5.59792852411, 377.3736079158], [0.059, 6.25689995147, 41427.4869831788], [0.072, 3.39739853142, 685.1113645288], [0.062, 0.11206359088, 14047.4937610252], [0.057, 4.31819630987, 95.9792272178], [0.07, 5.98596344975, 6531.661656265], [0.066, 5.93804470886, 3490.1756238344], [0.056, 5.11205539684, 7322.1024607818], [0.056, 3.36788837326, 4379.6390374902], [0.056, 2.20908914878, 6688.2710900976], [0.057, 4.57828186723, 10037.0897512844], [0.057, 0.04695703833, 24889.5747959916], [0.065, 2.70973517401, 19617.07636932279], [0.068, 3.51423189318, 14556.8967170238], [0.056, 5.94452825242, 21548.9623692918], [0.056, 3.94541346495, 25665.5174834092], [0.055, 0.45166365461, 16702.9948231962], [0.062, 0.05229160039, 14061.7208550268], [0.055, 1.14774475393, 4459.3682188026], [0.065, 6.21442820689, 6947.8318951214], [0.056, 5.01712943722, 485.9720527896], [0.065, 1.51615558729, 5511.636601991], [0.072, 4.90742373357, 25287.7237993998], [0.057, 5.31542907454, 28628.3362260996], [0.055, 4.02023620788, 4005.3684718298], [0.054, 5.51196184505, 44.6538332402], [0.053, 0.46840976995, 19645.5255567906], [0.053, 4.51539970261, 9886.772200064], [0.069, 3.37092084432, 41.5507909848], [0.072, 4.66520155151, 6685.1061887576], [0.052, 2.05209599225, 7366.2689076256], [0.052, 6.25882226723, 12509.2533250472], [0.06, 0.33350021257, 13575.7488022372], [0.059, 5.94433755684, 625.6701923124], [0.05, 2.65624501709, 10124.930054318], [0.068, 2.92105834159, 10025.4277087512], [0.051, 2.88289068067, 39601.8919124496], [0.069, 1.09637075565, 24076.4445881254], [0.052, 2.65290577481, 15650.7937503106], [0.052, 3.2868331301, 6756.0064519669], [0.054, 5.34683925496, 6578.132079181], [0.054, 2.77410607136, 6705.1032911474], [0.049, 2.657002099, 6944.3087767724], [0.053, 5.67436244967, 1883.0814931024], [0.048, 5.68336050679, 8646.0634802536], [0.051, 0.113906433, 17402.3332817266], [0.065, 1.03099992649, 4106.4054911462], [0.06, 1.00159365247, 151.8972810852], [0.05, 3.84651247899, 45494.58142974879], [0.047, 3.03959709242, 5408.5438277724], [0.063, 4.16165369755, 8186.5126624926], [0.046, 2.69368087378, 16547.6417340648], [0.051, 2.99576014378, 3774.3241645766], [0.044, 2.00664763411, 6418.1409300268], [0.045, 4.01853755929, 19406.6782881746], [0.058, 3.1447475355, 4025.6564809258], [0.05, 2.59881540437, 6621.850991486], [0.043, 4.87912487459, 6414.6178116778], [0.042, 5.20400092044, 4447.7512323846], [0.051, 1.99634375899, 5032.7780962022], [0.043, 1.28813888865, 6643.0918177618], [0.04, 0.9680161856, 14591.4118201214], [0.039, 1.84985100829, 10001.48196070061], [0.039, 5.69967200167, 6106.8800550648], [0.038, 3.27498743518, 18052.9295431578], [0.039, 2.84167905068, 6652.7756659318], [0.044, 0.57891618854, 16865.5287696312], [0.043, 4.61937364869, 3341.0325027934], [0.042, 6.02555835659, 6691.8615187494], [0.034, 4.9773499235, 6670.5881880498], [0.033, 1.39167727215, 4825.544916394], [0.035, 6.02955363644, 3568.0885594888], [0.035, 0.31961016732, 6645.1969867222], [0.032, 5.63043769073, 3511.285297319], [0.031, 5.4297846421, 9945.5712088238], [0.038, 5.66461657503, 3416.8784979754], [0.03, 0.98518793666, 20426.571092422], [0.038, 0.12870962242, 6604.958782124], [0.037, 5.48374357342, 3311.18291816379], [0.032, 6.1110697981, 4392.8808098882], [0.031, 3.18481282781, 3341.0423098265], [0.034, 2.32358226279, 9072.6616711296], [0.039, 4.11042361929, 3312.163239232], [0.027, 0.57810321636, 3391.89276456221], [0.029, 2.48646403166, 9815.6517316622], [0.031, 0.44265747667, 3451.7990689874], [0.027, 6.13498177783, 3362.4632560262], [0.027, 6.21846173482, 5223.6939198022], [0.027, 2.94945830517, 7203.8022714934], [0.027, 3.261798558, 8756.269801473], [0.027, 3.943852717, 23958.6317852334], [0.033, 3.77237326006, 12808.8803039568], [0.03, 4.75096367323, 15906.7641266826], [0.031, 0.88248871193, 3340.1825435731], [0.025, 0.31303295413, 6571.0185321802], [0.031, 4.29076841627, 10020.8569590312], [0.026, 2.22427360058, 10050.2864675672], [0.025, 0.67881122439, 23937.856389741], [0.031, 1.72899093511, 13745.3462390224], [0.024, 0.20355912395, 3229.4257844122], [0.032, 3.37195631109, 2284.7536148596]], [[58015.791, 2.04979463279, 3340.6124266998], [54187.645, 0.0, 0.0], [13908.426, 2.45742359888, 6681.2248533996], [2465.104, 2.80000020929, 10021.8372800994], [398.379, 3.14118428289, 13362.4497067992], [222.022, 3.19436080019, 3.523118349], [120.957, 0.54325292454, 155.4203994342], [61.517, 3.48529427371, 16703.062133499], [53.638, 3.54191121461, 3344.1355450488], [34.268, 6.00188499119, 2281.2304965106], [31.665, 4.14015171788, 191.4482661116], [29.839, 1.99870679845, 796.2980068164], [23.168, 4.33403365928, 242.728603974], [21.659, 3.44532466378, 398.1490034082], [16.044, 6.11000472441, 2146.1654164752], [20.37, 5.421913754, 553.5694028424], [14.927, 6.09541783564, 3185.1920272656], [16.227, 0.65678953303, 0.9803210682], [14.317, 2.61851897591, 1349.8674096588], [14.416, 4.01923812101, 951.7184062506], [11.934, 3.86122163021, 6684.7479717486], [15.648, 1.2208612194, 1748.016413067], [11.26, 4.71822363671, 2544.3144198834], [13.352, 0.60189008414, 1194.4470102246], [10.396, 0.25038714677, 382.8965322232], [9.468, 0.68170713564, 1059.3819301892], [9.229, 3.83209092321, 20043.6745601988], [9.005, 3.88271826102, 3738.761430108], [7.501, 5.46498630412, 1751.539531416], [6.497, 5.47773072872, 1592.5960136328], [6.311, 2.34104793674, 3097.88382272579], [6.859, 2.57522504136, 3149.1641605882], [5.87, 1.14783576679, 7.1135470008], [6.681, 2.37843690339, 4136.9104335162], [4.647, 4.42957708526, 6151.533888305], [4.166, 3.68631477611, 5614.7293762096], [4.764, 2.89684755585, 3333.498879699], [4.045, 6.12493402657, 5628.9564702112], [3.653, 4.06679068397, 1990.745017041], [3.618, 2.46868561769, 529.6909650946], [3.277, 0.68101740787, 8962.4553499102], [3.253, 2.7956534039, 3894.1818295422], [3.091, 4.56861203364, 3496.032826134], [2.921, 5.41458945995, 2914.0142358238], [2.921, 1.23050883841, 2787.0430238574], [2.784, 1.38911141844, 4292.3308329504], [2.62, 1.04061894134, 3341.592747768], [2.888, 3.41062353663, 3337.0893083508], [2.418, 0.96341462666, 4535.0594369244], [2.357, 4.84628239765, 9492.1463150048], [2.593, 5.74934234498, 3340.5951730476], [2.191, 3.26449527357, 213.299095438], [2.594, 1.49510566123, 3340.629680352], [2.344, 4.18104725028, 10025.3603984484], [2.63, 4.67640929857, 3583.3410306738], [2.602, 2.64911714813, 2388.8940204492], [1.83, 0.97181050149, 1589.0728952838], [2.416, 1.04749173375, 4399.994356889], [2.386, 4.2707257555, 7079.3738568078], [2.187, 0.16036551231, 6525.8044539654], [2.344, 0.01425578204, 4690.4798363586], [1.617, 4.95614491689, 5088.6288397668], [1.633, 1.10703599922, 12303.06777661], [2.126, 0.48290227706, 2700.7151403858], [1.629, 4.94267977718, 1221.8485663214], [1.504, 0.11031912519, 2957.7158944766], [1.759, 3.81170701376, 3723.508958923], [1.401, 3.85907867678, 6283.0758499914], [1.338, 5.29685392418, 6677.7017350506], [1.763, 2.51660121293, 2810.9214616052], [1.392, 2.73498041122, 7477.522860216], [1.431, 2.97747408389, 6489.776587288], [1.236, 3.7724596559, 2699.7348193176], [1.234, 1.88931735265, 6681.2421070518], [1.513, 2.92614134711, 640.8776073822], [1.234, 6.14168429036, 6681.2075997474], [1.408, 1.54395721611, 3347.7259737006], [1.038, 5.82880072933, 4933.2084403326], [1.156, 1.50825464304, 426.598190876], [1.362, 4.1779429752, 23384.2869868986], [1.135, 3.77506455273, 3870.3033917944], [0.916, 3.81726339298, 5092.1519581158], [0.853, 3.82520490669, 3340.545116397], [1.077, 5.0506282876, 5621.8429232104], [1.074, 3.8144692047, 3553.9115221378], [0.847, 3.41702696402, 3340.6797370026], [0.92, 1.91108056416, 3532.0606928114], [0.738, 4.25786145387, 9623.6882766912], [0.908, 4.12911006922, 162.4666361322], [0.647, 3.10301033831, 7234.794256242], [0.8, 5.20674574801, 87.30820453981], [0.657, 1.57895580467, 2487.4160449478], [0.65, 2.78932995437, 574.3447983348], [0.659, 5.16655918817, 12832.7587417046], [0.712, 5.79288230676, 3339.6321056316], [0.66, 0.25125103909, 8969.568896911], [0.527, 4.62218528897, 10419.9862835076], [0.607, 3.84724721085, 5486.777843175], [0.5, 4.66323134619, 6836.6452528338], [0.509, 0.32548381735, 8031.0922630584], [0.613, 1.72250879737, 7632.9432596502], [0.516, 1.37906978509, 7740.6067835888], [0.469, 1.31324778369, 7875.6718636242], [0.442, 5.34515135225, 10018.3141617504], [0.496, 4.49656852602, 692.1576012268], [0.544, 1.444653692, 15643.6802033098], [0.467, 1.40928870138, 6682.2051744678], [0.547, 4.42021065522, 5331.3574437408], [0.433, 1.25048504108, 4929.6853219836], [0.409, 3.80689273098, 6681.2921637024], [0.403, 1.5719023931, 6127.6554505572], [0.401, 4.59976459753, 7210.9158184942], [0.406, 0.60945437905, 11773.3768115154], [0.367, 0.97726583907, 6041.3275670856], [0.361, 0.13117924893, 639.897286314], [0.411, 4.21323421517, 6681.1575430968], [0.441, 4.49050100878, 13365.9728251482], [0.474, 5.1856252413, 2301.58581590939], [0.334, 2.21001303889, 10021.8545337516], [0.37, 5.02880065186, 6923.9534573736], [0.333, 0.18229887483, 10021.8200264472], [0.342, 2.49988747611, 6438.4962494256], [0.32, 1.3237447689, 2118.7638603784], [0.33, 2.98027481579, 5729.506447149], [0.34, 0.51409045792, 9866.4168806652], [0.283, 4.03219455446, 8955.3418029094], [0.281, 3.33891891806, 9830.3890139878], [0.271, 1.53144358045, 1039.0266107904], [0.252, 3.04356928941, 10818.1352869158], [0.27, 2.22972724035, 5828.0284716476], [0.259, 4.24406546278, 6894.5239488376], [0.237, 5.07818982743, 8429.2412664666], [0.263, 2.00552313665, 3767.2106175758], [0.241, 4.06396704332, 7064.1213856228], [0.25, 0.45422818547, 6298.3283211764], [0.24, 1.94655459341, 6688.3384004004], [0.209, 0.03043017984, 3914.9572250346], [0.218, 4.5320181825, 26724.8994135984], [0.246, 3.85272742042, 4562.4609930212], [0.254, 1.19313236635, 8432.7643848156], [0.231, 1.70340106651, 2942.4634232916], [0.209, 3.82345999055, 6467.9257579616], [0.175, 3.26444055581, 3981.490034082], [0.21, 3.55052707697, 10575.4066829418], [0.162, 5.95176683701, 310.8407988684], [0.165, 5.04267055142, 10177.2576795336], [0.198, 0.80464315638, 15113.9892382152], [0.188, 1.99007233842, 3127.3133312618], [0.188, 4.55406803143, 12964.300703391], [0.163, 2.14874886056, 10973.55568635], [0.154, 4.35708331036, 3360.96774609859], [0.169, 2.40504327781, 3355.8648978848], [0.164, 5.5387562097, 16173.3711684044], [0.144, 0.30186831602, 1903.4368125012], [0.161, 3.18977924032, 6674.1113063988], [0.135, 1.65570006128, 3325.3599555148], [0.143, 6.25825818399, 9595.2390892234], [0.158, 6.1425560834, 8273.8208670324], [0.17, 5.98413937993, 3320.257107301], [0.124, 1.74571336137, 11081.2192102886], [0.146, 2.22851709304, 3178.1457905676], [0.126, 5.02927593525, 3475.6775067352], [0.123, 4.99342648375, 13760.5987102074], [0.141, 4.5673581549, 10021.7699697966], [0.118, 5.42945437851, 13358.9265884502], [0.116, 4.22080571309, 5884.9268465832], [0.119, 4.09962692144, 10021.9045904022], [0.124, 1.79723243306, 18984.2926300096], [0.135, 1.00085140609, 18454.601664915], [0.106, 5.76342924005, 2288.3440435114], [0.103, 0.63812052706, 12310.1813236108], [0.1, 4.3794694526, 9808.5381846614], [0.104, 4.01151451052, 13916.0191096416], [0.125, 4.94825577002, 10551.528245194], [0.098, 5.91086068785, 14584.2982731206], [0.126, 1.55752034021, 8270.2977486834], [0.098, 2.5286981053, 3191.0492295652], [0.095, 5.5080831162, 3319.8370312074], [0.108, 1.67115668669, 11216.284290324], [0.09, 1.71281301325, 1505.28780909299], [0.088, 0.42472333366, 11371.7046897582], [0.089, 4.83867235269, 16706.585251848], [0.106, 1.78998252916, 10022.8176011676], [0.087, 5.8960268815, 16858.4825329332], [0.085, 0.55423657166, 13362.432453147], [0.091, 1.61117547913, 24093.2767891752], [0.083, 0.55328893146, 3344.2028553516], [0.083, 1.06830368571, 3364.4908644476], [0.084, 6.22980173043, 3369.0616141676], [0.085, 2.58442459869, 13362.4669604514], [0.079, 3.08636079495, 2818.035008606], [0.077, 1.53791408869, 5459.3762870782], [0.075, 3.34890581175, 9070.1188738488], [0.097, 2.99973987655, 3316.733988952], [0.084, 5.55309637085, 3427.9206312396], [0.089, 4.16432726564, 6158.6474353058], [0.078, 3.7237573039, 13171.0014406876], [0.083, 0.11917380846, 3337.021998048], [0.073, 4.91632010974, 13362.3823964964], [0.076, 4.52961122356, 708.98980227659], [0.071, 5.37905772348, 10264.5658840734], [0.084, 1.93007660929, 9468.267877257], [0.073, 5.28498987702, 4845.9002357928], [0.08, 4.81193020727, 13149.1506113612], [0.076, 4.77873149036, 8671.9698704406], [0.069, 0.86312560839, 13207.029307365], [0.07, 1.22001285505, 2274.1169495098], [0.07, 0.53977528244, 13119.72110282519], [0.07, 0.09801356525, 1437.1756141986], [0.069, 2.23597403243, 7107.8230442756], [0.074, 0.67876411085, 16460.33352952499], [0.068, 0.5439361719, 12935.8515159232], [0.084, 5.1161735664, 13892.1406718938], [0.078, 5.27206373031, 853.196381752], [0.065, 4.74504626032, 6144.4203413042], [0.065, 2.89744951086, 7903.073419721], [0.089, 5.44755326514, 13517.8701062334], [0.073, 3.81554166604, 3503.079062832], [0.066, 0.47312197978, 3980.5097130138], [0.065, 1.38901912957, 3253.30422216], [0.086, 5.44050231013, 6816.289933435], [0.072, 3.44697351738, 14158.7477136156], [0.086, 4.50213985772, 13362.517017102], [0.074, 1.34701853675, 3361.3878221922], [0.076, 6.0400295943, 5085.038411115], [0.065, 0.07623776004, 5099.2655051166], [0.066, 2.0916071729, 14421.8316369884], [0.077, 2.75740817982, 19402.7969528166], [0.059, 3.61679189501, 7322.1024607818], [0.06, 4.67079289372, 10235.1363755374], [0.064, 6.17220244155, 9381.9399937854], [0.066, 0.35824154106, 7255.5696517344], [0.059, 4.52818219212, 9499.2598620056], [0.065, 1.86765892646, 11610.9101753832], [0.074, 3.12276411101, 1107.1388056848], [0.06, 1.35069679183, 19800.9459562248], [0.055, 0.64581579779, 6677.6344247478], [0.055, 0.65206957868, 7373.3824546264], [0.055, 0.41979092764, 9779.1086761254], [0.074, 3.8527624282, 2766.267628365], [0.056, 2.49261586879, 5642.1982426092], [0.055, 2.62555306434, 14314.1681130498], [0.054, 3.95212835807, 4032.7700279266], [0.055, 0.51062350773, 15110.4661198662], [0.053, 5.88757767795, 21265.5231265202], [0.051, 5.99253934388, 21947.1113727], [0.049, 5.16723732129, 20047.1976785478], [0.067, 1.53758821512, 9380.9596727172], [0.057, 5.34893894346, 17101.2111369072], [0.049, 1.9267860277, 12721.572099417], [0.046, 2.3159032048, 10028.9508271002], [0.052, 4.92463460288, 16304.9131300908], [0.05, 1.69803302925, 9225.539273283], [0.045, 2.91271003676, 8982.810669309], [0.044, 4.38728556203, 12168.0026965746], [0.047, 4.44933635857, 6872.6731195112], [0.043, 2.13295656057, 22324.9050567094], [0.05, 1.34759191325, 8439.8779318164], [0.044, 0.89037464728, 20752.6643624754], [0.041, 2.76164156557, 6696.4773245846], [0.042, 4.45031185062, 10404.7338123226], [0.044, 3.20262780268, 22743.4093795164], [0.042, 3.54559408987, 30376.3526391666], [0.042, 0.82118836477, 20597.2439630412], [0.052, 4.59037852162, 22345.2603761082], [0.042, 3.79872109079, 28628.3362260996], [0.041, 2.3625360208, 16062.1845261168], [0.05, 1.48377570574, 6040.3472460174], [0.041, 5.33088551342, 765.7930644464], [0.039, 1.57984331116, 24889.5747959916], [0.038, 0.21571600948, 9168.6408983474], [0.038, 3.47667842127, 1066.49547719], [0.052, 0.81427285458, 9638.9407478762], [0.041, 0.04356010851, 6660.8695340008], [0.046, 0.89345529755, 16703.0448798468], [0.044, 0.85335841824, 17468.8551979454], [0.039, 0.27098916103, 11614.4332937322], [0.036, 3.93388136028, 33716.9650658664], [0.047, 3.90896957151, 5244.049239201], [0.034, 2.37310468308, 10213.285546211], [0.034, 4.85454495742, 14469.588512484], [0.035, 1.96497348634, 6702.000248892], [0.033, 2.14488758889, 13363.4300278674], [0.046, 2.92422266239, 16703.07938715119], [0.035, 1.78692835372, 2648.454825473], [0.033, 4.24484480826, 8584.6616659008], [0.043, 6.09391349922, 6660.4494579072], [0.035, 5.72426647579, 16699.53901514999], [0.031, 1.95254273311, 6665.9723822146], [0.028, 5.88548900893, 19513.9835951042], [0.03, 4.38908125588, 12295.9542296092], [0.029, 6.25276686131, 17924.9106998204], [0.025, 4.89000247975, 30065.5118402982], [0.026, 2.43119321236, 6518.7582172674], [0.028, 3.97032105354, 4407.1079038898], [0.025, 1.88631752737, 4379.6390374902], [0.028, 3.06196380356, 6247.5131155228], [0.029, 5.98057498931, 6680.2445323314], [0.032, 4.65556810177, 6701.5801727984], [0.026, 0.76018385758, 3863.1898447936], [0.023, 0.31107548102, 8827.3902698748], [0.022, 1.11553014451, 6684.8152820514], [0.02, 4.81193192299, 15508.6151232744], [0.019, 5.11656455993, 12012.5822971404], [0.026, 1.07254469525, 8425.6508378148], [0.021, 2.68436255141, 6261.7402095244], [0.022, 2.15631095909, 3335.0895023924], [0.017, 0.03684125273, 3877.4169387952], [0.017, 2.84467149903, 3344.4937620578], [0.02, 5.41519706836, 3205.5473466644]], [[1482.423, 0.44434694876, 3340.6124266998], [662.095, 0.88469178686, 6681.2248533996], [188.268, 1.28799982497, 10021.8372800994], [41.474, 1.64850786997, 13362.4497067992], [22.661, 2.05267665262, 155.4203994342], [25.994, 0.0, 0.0], [8.024, 1.99858757687, 16703.062133499], [10.454, 1.58006906385, 3.523118349], [4.9, 2.82452457966, 242.728603974], [3.782, 2.01914272515, 3344.1355450488], [3.176, 4.59144897927, 3185.1920272656], [3.134, 0.65044714325, 553.5694028424], [1.684, 5.53835848782, 951.7184062506], [1.511, 5.71795850828, 191.4482661116], [1.448, 0.45869142895, 796.2980068164], [1.442, 2.34368495577, 20043.6745601988], [1.302, 5.36284013048, 0.9803210682], [1.169, 4.14601161433, 1349.8674096588], [1.133, 2.38180830662, 6684.7479717486], [1.037, 1.76892750558, 382.8965322232], [0.894, 5.33688328934, 1194.4470102246], [0.807, 2.74798886181, 1748.016413067], [0.64, 6.10665147849, 3496.032826134], [0.558, 1.8521234236, 398.1490034082], [0.567, 5.85922384979, 7.1135470008], [0.647, 3.17645475605, 3583.3410306738], [0.452, 5.98109989317, 2787.0430238574], [0.508, 1.01139298015, 3149.1641605882], [0.519, 4.93376176788, 6525.8044539654], [0.405, 1.27295444059, 2281.2304965106], [0.399, 2.32888685659, 3738.761430108], [0.472, 0.84411483892, 4136.9104335162], [0.333, 5.42704539231, 1059.3819301892], [0.313, 3.70599897858, 3097.88382272579], [0.281, 5.74581724084, 3341.592747768], [0.287, 2.69304799864, 10025.3603984484], [0.237, 5.68519881994, 4535.0594369244], [0.215, 2.49494803822, 1990.745017041], [0.26, 2.67996877129, 23384.2869868986], [0.269, 1.10390153866, 2388.8940204492], [0.186, 4.86408411823, 2957.7158944766], [0.176, 3.86618588087, 1592.5960136328], [0.177, 0.85374318134, 3894.1818295422], [0.191, 4.58805692093, 3337.0893083508], [0.185, 5.8089931655, 4399.994356889], [0.143, 1.15592612974, 7477.522860216], [0.173, 2.70622920014, 7079.3738568078], [0.146, 1.37569151302, 6489.776587288], [0.121, 3.24333934982, 9492.1463150048], [0.116, 5.7163981953, 12303.06777661], [0.111, 2.69566947038, 6151.533888305], [0.103, 3.53587741373, 6923.9534573736], [0.097, 5.23712981002, 8962.4553499102], [0.089, 0.0595132422, 6127.6554505572], [0.093, 5.29818155587, 9866.4168806652], [0.084, 5.68544044325, 4292.3308329504], [0.091, 6.16223680965, 6682.2051744678], [0.081, 4.3272333062, 4933.2084403326], [0.077, 5.6318982417, 1589.0728952838], [0.102, 6.26937663026, 3347.7259737006], [0.076, 3.05724276091, 13365.9728251482], [0.063, 3.12770931753, 10419.9862835076], [0.062, 1.45647168723, 7234.794256242], [0.069, 4.82266605869, 6677.7017350506], [0.064, 1.73713448446, 3870.3033917944], [0.058, 4.85723088492, 5486.777843175], [0.058, 6.0984951679, 7875.6718636242], [0.063, 4.14716431158, 3340.5951730476], [0.065, 6.17932665318, 3340.629680352], [0.057, 1.48905992502, 5729.506447149], [0.06, 6.08710604997, 7740.6067835888], [0.056, 1.96253427165, 3553.9115221378], [0.059, 0.89874385953, 3339.6321056316], [0.053, 3.04776975379, 26724.8994135984], [0.061, 3.63390789623, 12832.7587417046], [0.059, 0.2298974604, 6681.2421070518], [0.053, 3.97996929188, 5092.1519581158], [0.059, 4.48255178273, 6681.2075997474], [0.045, 3.88055745121, 10264.5658840734], [0.058, 4.85371375265, 5621.8429232104], [0.049, 4.03623343126, 16173.3711684044], [0.061, 2.90942510134, 5331.3574437408], [0.043, 1.8099071834, 9830.3890139878], [0.044, 4.10828944542, 4690.4798363586], [0.044, 3.49332765553, 13760.5987102074], [0.048, 1.81207342615, 3723.508958923], [0.041, 1.59906754314, 10818.1352869158], [0.041, 2.05797417369, 6681.2921637024], [0.038, 3.38619280993, 16706.585251848], [0.041, 2.53336616026, 6681.1575430968], [0.041, 1.79026132252, 3340.545116397], [0.05, 4.7032478409, 8273.8208670324], [0.037, 3.37898394417, 30065.5118402982], [0.039, 2.65566008587, 6894.5239488376], [0.035, 2.58475025674, 9623.6882766912], [0.037, 6.07442797404, 4929.6853219836], [0.042, 3.04642561189, 12964.300703391], [0.037, 5.23784488646, 6298.3283211764], [0.043, 6.17835198533, 15643.6802033098], [0.034, 2.44806511268, 7210.9158184942], [0.038, 0.26295105909, 10022.8176011676], [0.028, 0.74281728305, 10021.8545337516], [0.028, 4.99536302577, 10021.8200264472], [0.034, 5.04118058624, 8969.568896911], [0.025, 2.59849002421, 8955.3418029094], [0.03, 1.14354290938, 2146.1654164752], [0.027, 0.26980783576, 18984.2926300096], [0.025, 0.39810308575, 6688.3384004004], [0.024, 5.64558695441, 13207.029307365], [0.027, 6.24398988438, 5088.6288397668], [0.024, 0.25455613132, 11081.2192102886], [0.023, 0.53673547304, 3333.498879699], [0.024, 1.80155161992, 6674.1113063988], [0.029, 4.3995350792, 10018.3141617504], [0.023, 2.91040060956, 10551.528245194], [0.022, 1.20895727897, 529.6909650946], [0.026, 0.08254324904, 7632.9432596502], [0.026, 1.81668969835, 6283.0758499914], [0.021, 0.67232850824, 6836.6452528338], [0.017, 5.19518401928, 2914.0142358238], [0.017, 5.16488977775, 8031.0922630584], [0.021, 3.62973082412, 5884.9268465832], [0.018, 5.06870872024, 2544.3144198834], [0.014, 2.50522181917, 7064.1213856228], [0.017, 0.4183559895, 9468.267877257], [0.011, 2.21363101654, 6438.4962494256], [0.013, 1.38424462832, 3340.6797370026], [0.012, 3.28248484262, 8671.9698704406], [0.014, 0.23027665815, 3767.2106175758]], [[113.969, 3.14159265359, 0.0], [28.725, 5.63662412043, 6681.2248533996], [24.447, 5.13868481454, 3340.6124266998], [11.187, 6.03161074431, 10021.8372800994], [3.19, 3.56267988299, 155.4203994342], [3.252, 0.13228350651, 13362.4497067992], [0.787, 0.49340783377, 16703.062133499], [0.776, 1.31734531594, 242.728603974], [0.494, 3.06356214498, 3185.1920272656], [0.374, 2.15785846355, 553.5694028424], [0.331, 6.23159792887, 3.523118349], [0.197, 0.44350153983, 3344.1355450488], [0.181, 0.81531283571, 20043.6745601988], [0.168, 3.73509781785, 3496.032826134], [0.086, 0.79259553758, 6684.7479717486], [0.115, 1.66898531261, 3583.3410306738], [0.092, 3.40530361815, 6525.8044539654], [0.064, 4.47443580658, 2787.0430238574], [0.045, 5.17216217058, 3097.88382272579], [0.041, 1.21875027733, 23384.2869868986], [0.036, 5.53975653407, 3149.1641605882], [0.039, 5.40966345885, 4136.9104335162], [0.028, 4.85378781404, 6127.6554505572], [0.027, 0.42811091036, 3738.761430108], [0.032, 1.22337093927, 10025.3603984484], [0.025, 1.56348878811, 26724.8994135984], [0.029, 2.40178626971, 3894.1818295422], [0.023, 4.16371253947, 3341.592747768], [0.022, 5.98429191667, 7477.522860216], [0.019, 2.03228980685, 6923.9534573736], [0.02, 3.79275573433, 9866.4168806652], [0.021, 4.27532111122, 6836.6452528338], [0.015, 1.56315497374, 13365.9728251482], [0.011, 1.33261955275, 2281.2304965106], [0.009, 6.15390464542, 6489.776587288], [0.007, 4.23894194106, 4535.0594369244]], [[0.71, 4.04089996521, 6681.2248533996], [0.868, 3.14159265359, 0.0], [0.51, 4.49214901625, 10021.8372800994], [0.357, 5.07435505061, 155.4203994342], [0.223, 3.51351884241, 3340.6124266998], [0.199, 4.85313666795, 13362.4497067992], [0.1, 6.09089356066, 242.728603974], [0.069, 5.19017483537, 16703.062133499], [0.064, 1.55783055571, 3185.1920272656], [0.035, 3.68246171643, 553.5694028424], [0.025, 5.22079788019, 3496.032826134], [0.024, 0.17861991485, 3583.3410306738], [0.019, 5.5918471446, 20043.6745601988], [0.014, 5.95565787085, 23384.2869868986], [0.012, 1.93859256739, 6525.8044539654]]]

This table contains Mars’ periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric longitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 421-424.

pymeeus.Mars.VSOP87_R = [[[153033488.276, 0.0, 0.0], [14184953.153, 3.47971283519, 3340.6124266998], [660776.357, 3.81783442097, 6681.2248533996], [46179.117, 4.15595316284, 10021.8372800994], [8109.738, 5.55958460165, 2810.9214616052], [7485.315, 1.77238998069, 5621.8429232104], [5523.193, 1.3643631888, 2281.2304965106], [3825.16, 4.49407182408, 13362.4497067992], [2306.539, 0.09081742493, 2544.3144198834], [1999.399, 5.36059605227, 3337.0893083508], [2484.385, 4.92545577893, 2942.4634232916], [1960.198, 4.74249386323, 3344.1355450488], [1167.115, 2.11261501155, 5092.1519581158], [1102.828, 5.0090826416, 398.1490034082], [899.077, 4.40790433994, 529.6909650946], [992.252, 5.83862401067, 6151.533888305], [807.348, 2.10216647104, 1059.3819301892], [797.91, 3.44839026172, 796.2980068164], [740.98, 1.49906336892, 2146.1654164752], [692.34, 2.13378814785, 8962.4553499102], [633.144, 0.89353285018, 3340.5951730476], [725.583, 1.24516913473, 8432.7643848156], [633.14, 2.92430448169, 3340.629680352], [574.352, 0.82896196337, 2914.0142358238], [526.187, 5.38292276228, 3738.761430108], [629.976, 1.28738135858, 1751.539531416], [472.776, 5.19850457873, 3127.3133312618], [348.095, 4.83219198908, 16703.062133499], [283.702, 2.90692294913, 3532.0606928114], [279.552, 5.25749247548, 6283.0758499914], [233.827, 5.10546492529, 5486.777843175], [219.428, 5.58340248784, 191.4482661116], [269.891, 3.76394728622, 5884.9268465832], [208.333, 5.25476080773, 3340.545116397], [275.224, 2.90818883832, 1748.016413067], [275.501, 1.21767967781, 6254.6266625236], [239.133, 2.03669896238, 1194.4470102246], [223.19, 4.19861593779, 3149.1641605882], [182.686, 5.08062683355, 6684.7479717486], [186.213, 5.69871555748, 6677.7017350506], [175.995, 5.95341786369, 3870.3033917944], [178.613, 4.18423025538, 3333.498879699], [208.336, 4.84626442122, 3340.6797370026], [228.128, 3.2552902062, 6872.6731195112], [144.286, 0.21296012258, 5088.6288397668], [163.534, 3.79889068111, 4136.9104335162], [133.12, 1.5391010671, 7903.073419721], [141.759, 2.47790321309, 4562.4609930212], [114.941, 4.31745088059, 1349.8674096588], [118.781, 2.12178071222, 1589.0728952838], [102.096, 6.18138550087, 9492.1463150048], [128.555, 5.49883294915, 8827.3902698748], [111.538, 0.55339169625, 11243.6858464208], [82.498, 1.6222704459, 11773.3768115154], [83.212, 0.61553380568, 8429.2412664666], [84.47, 0.6227459311, 1592.5960136328], [86.659, 1.74988330093, 2700.7151403858], [71.826, 2.47489899385, 12303.06777661], [85.312, 1.61621097912, 4690.4798363586], [63.641, 2.67334126661, 426.598190876], [68.599, 2.40197828418, 4399.994356889], [58.559, 4.72052787516, 213.299095438], [62.015, 1.10065866221, 1221.8485663214], [66.509, 2.21307705185, 6041.3275670856], [55.811, 1.23288325946, 3185.1920272656], [54.989, 5.72691385306, 951.7184062506], [52.418, 3.02366828926, 4292.3308329504], [55.686, 5.44686699242, 3723.508958923], [58.959, 3.26242666052, 6681.2421070518], [44.629, 2.0147364039, 8031.0922630584], [58.959, 1.23165502899, 6681.2075997474], [42.444, 2.26551590902, 155.4203994342], [38.956, 2.57760416009, 3341.592747768], [51.561, 5.72326937712, 7079.3738568078], [48.939, 5.61614696751, 3553.9115221378], [45.414, 5.43290921705, 6467.9257579616], [36.435, 4.43921812388, 3894.1818295422], [35.98, 1.15966567007, 2288.3440435114], [35.265, 5.49029710802, 1990.745017041], [42.191, 1.6325374276, 5628.9564702112], [44.292, 5.0034136685, 5614.7293762096], [33.623, 5.17029029766, 20043.6745601988], [43.256, 1.03732072925, 11769.8536931664], [39.237, 1.24237122859, 3339.6321056316], [31.943, 4.59258406791, 2274.1169495098], [30.345, 2.4417767013, 11371.7046897582], [32.259, 2.38215172582, 4535.0594369244], [31.87, 4.37521442752, 3.523118349], [29.35, 4.06034813442, 3097.88382272579], [31.972, 1.93970478412, 382.8965322232], [26.166, 5.58466944895, 9623.6882766912], [27.904, 4.25805969214, 3191.0492295652], [33.065, 0.85467740581, 553.5694028424], [27.543, 1.57668567401, 9595.2390892234], [25.159, 0.81355213242, 10713.9948813262], [22.07, 0.85747723964, 3319.8370312074], [24.772, 5.38970742761, 2818.035008606], [23.359, 6.01453778225, 3496.032826134], [24.732, 2.58034797703, 2803.8079146044], [19.365, 5.18528750472, 6681.2921637024], [19.122, 5.41968559451, 10025.3603984484], [19.364, 5.59378382138, 6681.1575430968], [18.33, 5.7956732424, 7064.1213856228], [18.193, 5.61307426173, 7.1135470008], [20.392, 4.53637816869, 6489.776587288], [21.26, 6.19160142215, 14054.607308026], [17.094, 1.55004739305, 2957.7158944766], [22.791, 3.41709388606, 7632.9432596502], [20.585, 2.98697279083, 3361.3878221922], [18.005, 2.81431094394, 4032.7700279266], [17.049, 6.15528099726, 10404.7338123226], [16.488, 3.84534700818, 10973.55568635], [16.052, 0.92823508003, 14584.2982731206], [21.027, 2.38474290907, 4989.0591838972], [16.267, 1.92321585819, 7373.3824546264], [16.291, 6.28233085307, 7210.9158184942], [18.585, 4.07325116588, 2388.8940204492], [15.977, 4.58368417141, 3264.3463554242], [19.913, 2.7351844595, 5099.2655051166], [19.661, 1.86285979, 3443.7052009184], [16.5, 4.14061745086, 7477.522860216], [19.495, 6.03778234182, 10018.3141617504], [15.104, 2.65433427561, 2787.0430238574], [19.099, 0.22623441108, 13745.3462390224], [17.163, 3.18825562972, 3347.7259737006], [13.423, 2.12818658793, 3344.2028553516], [15.41, 2.2077350796, 2118.7638603784], [17.238, 3.67067776368, 3205.5473466644], [13.113, 4.27490214998, 14314.1681130498], [16.451, 2.86641622696, 14712.317116458], [13.734, 1.68629769646, 3337.021998048], [16.659, 4.52130808861, 6674.1113063988], [11.83, 0.19684525299, 3475.6775067352], [11.767, 3.22897247987, 5828.0284716476], [11.886, 4.82057654742, 7234.794256242], [10.609, 1.73997337551, 639.897286314], [11.154, 0.23859830185, 12832.7587417046], [11.03, 0.4454170644, 10213.285546211], [10.24, 5.74758340632, 242.728603974], [10.051, 2.45102946726, 4929.6853219836], [10.061, 0.78907665448, 9381.9399937854], [10.065, 5.37506605762, 5085.038411115], [11.902, 0.79897698904, 3265.8308281325], [8.99, 0.96463418322, 4933.2084403326], [8.97, 4.18326774405, 9225.539273283], [8.982, 1.98501418026, 15113.9892382152], [8.324, 1.93694866513, 1648.4467571974], [7.833, 2.04997447879, 1758.6530784168], [7.957, 3.92331072722, 2921.1277828246], [10.224, 2.66497189021, 2487.4160449478], [8.277, 0.94860765546, 2906.900688823], [7.371, 0.84378341481, 692.1576012268], [7.545, 5.68031160782, 13916.0191096416], [7.912, 2.81294761885, 15643.6802033098], [6.958, 3.32193127272, 3230.4061054804], [7.426, 6.09656283295, 3583.3410306738], [6.402, 4.19806996774, 5202.3582793352], [6.529, 6.1192925271, 135.0650800354], [6.13, 0.00117252232, 6836.6452528338], [6.226, 6.10683955669, 17256.6315363414], [8.193, 5.24811458833, 10575.4066829418], [6.168, 3.60069207439, 10021.8545337516], [6.169, 1.56992114335, 10021.8200264472], [5.671, 0.1365030666, 13524.9163429314], [6.257, 4.50450768937, 8425.6508378148], [5.249, 2.70122358603, 4459.3682188026], [6.479, 2.74267498287, 7740.6067835888], [5.53, 6.06408145092, 10419.9862835076], [5.536, 5.74996063243, 12168.0026965746], [6.826, 4.69327545839, 17654.7805397496], [5.005, 4.68382632238, 522.5774180938], [6.328, 3.31896726895, 3767.2106175758], [4.734, 0.00755678425, 3325.3599555148], [5.032, 2.33696685608, 1052.2683831884], [4.661, 5.15051711401, 1066.49547719], [4.724, 5.77956037309, 9808.5381846614], [5.136, 1.57259709878, 6525.8044539654], [4.522, 1.44218620352, 3369.0616141676], [6.189, 4.58996159356, 6531.661656265], [6.205, 4.48164856516, 22747.2907148744], [5.329, 4.55145599182, 1744.4259844152], [4.511, 5.94511266539, 6894.5239488376], [4.33, 3.10901365758, 4569.574540022], [5.366, 5.08043436437, 2707.8286873866], [5.134, 1.28568358496, 8439.8779318164], [4.127, 5.48538052912, 2699.7348193176], [5.394, 5.21695066244, 5305.4510535538], [4.449, 5.56764082611, 16865.5287696312], [3.898, 1.4878243479, 9168.6408983474], [3.863, 1.2305080393, 16858.4825329332], [3.766, 0.27090392616, 17395.2197347258], [4.683, 3.05668892586, 5518.7501489918], [4.258, 2.7909014579, 3503.079062832], [3.864, 0.37957291785, 10177.2576795336], [3.992, 1.8442476803, 3134.4268782626], [3.643, 2.95318600206, 6144.4203413042], [3.654, 1.58063207414, 6680.2445323314], [3.931, 1.98436570971, 8969.568896911], [3.35, 2.72637081667, 7875.6718636242], [3.623, 2.91544991631, 6682.2051744678], [4.392, 0.81931997702, 3302.479391062], [4.062, 5.46935175827, 3120.199784261], [3.319, 1.77193665786, 3116.2676309979], [3.51, 1.18027333874, 10184.3039162316], [4.008, 1.33675167812, 6247.5131155228], [3.603, 0.15469852619, 2178.137722292], [3.313, 3.12853663982, 17277.4069318338], [4.138, 4.39568891039, 3074.005384978], [3.201, 3.36492925275, 2384.3232707292], [3.991, 3.8286783691, 3355.8648978848], [4.205, 1.9053227917, 263.0839233728], [3.743, 4.25458024187, 6261.7402095244], [3.111, 1.65445053349, 20199.094959633], [3.634, 5.55063049451, 632.7837393132], [2.892, 1.915149207, 12935.8515159232], [3.373, 5.50812408522, 23384.2869868986], [3.312, 5.83174680245, 5331.3574437408], [3.124, 5.44069658195, 6048.4411140864], [3.813, 0.8027448743, 13517.8701062334], [3.612, 3.68140265686, 5724.935697429], [2.813, 1.68598843422, 2391.43681773], [2.902, 5.30666239739, 8955.3418029094], [3.225, 2.29832592489, 3312.163239232], [3.863, 3.48188264725, 20618.0193585336], [2.738, 5.49768261369, 149.5631971346], [2.809, 4.76933217397, 1964.838626854], [2.711, 2.69244730345, 3178.1457905676], [2.711, 2.38275660721, 2648.454825473], [2.743, 1.09492569851, 536.8045120954], [2.821, 5.91845472246, 12964.300703391], [2.716, 6.10377796874, 3973.396166013], [2.487, 3.87703916286, 1861.7458526354], [2.617, 2.65526535627, 8329.671610597], [2.938, 5.68402398615, 6158.6474353058], [2.336, 3.24847913311, 4672.6673142406], [2.318, 1.69214259672, 3914.9572250346], [2.371, 4.75067664712, 103.0927742186], [2.963, 0.23381699914, 20597.2439630412], [2.19, 6.18344448099, 3346.1353510072], [2.444, 1.92547995169, 7799.9806455024], [2.121, 4.87491216115, 9830.3890139878], [2.532, 5.3955008727, 3863.1898447936], [2.101, 2.84309138388, 3415.3940252671], [2.176, 0.58632570025, 162.4666361322], [2.106, 3.06229353931, 19800.9459562248], [2.347, 3.90795942709, 3335.0895023924], [2.031, 5.52057907797, 10021.9045904022], [1.997, 2.77243710569, 13936.794505134], [2.139, 5.40620646615, 266.6070417218], [2.147, 0.089669876, 13358.9265884502], [1.996, 2.62541669265, 20.7753954924], [1.961, 4.88521794174, 3237.5196524812], [2.216, 1.06829128652, 3320.257107301], [2.131, 3.02112533027, 5625.3660415594], [2.124, 3.68620121537, 5618.3198048614], [1.938, 1.29006691721, 17924.9106998204], [2.555, 4.91826220321, 6604.958782124], [2.561, 2.10055088914, 7910.1869667218], [1.82, 5.57528712663, 3351.2490920496], [1.786, 5.77310414452, 3607.2194684216], [1.78, 4.48010071981, 10818.1352869158], [2.106, 5.75526661975, 13365.9728251482], [1.987, 2.61151965233, 3546.797975137], [1.799, 2.73192475257, 3360.96774609859], [1.715, 1.50805385053, 1692.1656695024], [1.752, 2.21455466761, 13119.72110282519], [1.913, 3.32230688971, 6702.000248892], [1.724, 1.43449979531, 4885.9664096786], [2.05, 1.19293239093, 6660.4494579072], [1.774, 2.18404386388, 6784.3176276182], [1.722, 4.86031154305, 10014.7237330986], [1.773, 2.09448668554, 3603.6963500726], [1.606, 3.48105136801, 23141.5583829246], [1.621, 5.73820120882, 4555.3474460204], [1.579, 1.88769198841, 6298.3283211764], [1.53, 5.1638156423, 76.2660712756], [1.615, 3.24110713658, 3657.0042963564], [1.576, 3.52622401575, 6688.3384004004], [2.034, 2.63620520451, 16460.33352952499], [2.025, 5.92907541624, 10021.7699697966], [1.689, 4.41053057494, 5729.506447149], [1.878, 4.53291044847, 3329.97576135], [1.53, 4.76331644411, 7895.9598727202], [1.529, 1.35289110986, 1581.959348283], [1.807, 1.86212004697, 2693.601593385], [1.855, 2.38561742394, 6843.6914895318], [1.518, 3.9847615775, 6546.1597733642], [1.389, 1.82099537095, 9779.1086761254], [1.447, 2.35649936427, 6034.2140200848], [1.386, 5.55304113895, 4775.7600884592], [1.372, 1.07224580315, 12722.5524204852], [1.423, 4.46530428193, 574.3447983348], [1.424, 2.57162391016, 3399.9862886134], [1.38, 5.76156315252, 16335.8378045366], [1.338, 2.97604558638, 6127.6554505572], [1.479, 4.74310691166, 12566.1516999828], [1.706, 0.30579918494, 10551.528245194], [1.281, 2.00285974432, 6677.6344247478], [1.35, 0.78892333409, 853.196381752], [1.534, 4.33326399444, 640.8776073822], [1.247, 1.02503908468, 3024.2205570432], [1.289, 1.92786975543, 3347.6586633978], [1.243, 2.44217806237, 6684.8152820514], [1.453, 1.74218016403, 3333.5661900018], [1.675, 1.7969345633, 1118.7557921028], [1.491, 2.59386711806, 2494.5295919486], [1.293, 3.31710472549, 3407.0998356142], [1.188, 4.92989260576, 22743.4093795164], [1.329, 1.99426530402, 1228.9621133222], [1.373, 2.5335498734, 5459.3762870782], [1.183, 4.25338096667, 3344.4937620578], [1.231, 2.50206227837, 4356.275444584], [1.243, 2.6517626786, 74.7815985673], [1.285, 4.34087881585, 3326.3853326982], [1.119, 1.91321862491, 3281.2385647862], [1.094, 5.50748655535, 3017.1070100424], [1.259, 3.7765466283, 11236.57229942], [1.285, 1.38335267684, 3077.528503327], [1.1, 1.17130732373, 6606.4432548323], [1.115, 5.81275569652, 2675.8563815698], [1.38, 5.70641426169, 2807.3983432562], [1.256, 3.35479933251, 4039.8835749274], [1.187, 2.41348693872, 10596.1820784342], [1.052, 3.33521939538, 3304.5845600224], [1.188, 5.84735836632, 3336.7310913418], [1.072, 2.78383184435, 8270.2977486834], [1.105, 3.03463252672, 3929.677253708], [1.013, 3.52026711847, 8013.2797409404], [1.079, 0.51857999039, 2814.4445799542], [0.999, 4.7273400876, 533.2140834436], [1.131, 0.52584038526, 6816.289933435], [1.191, 0.6087429252, 2301.58581590939], [1.313, 2.07273299121, 23539.7073863328], [0.996, 4.03971126547, 16062.1845261168], [0.954, 5.90340414098, 20206.141196331], [0.993, 0.07132588892, 24150.080051345], [1.051, 2.2209653487, 3980.5097130138], [1.089, 1.25512213569, 5938.234792867], [0.912, 2.54221161167, 433.7117378768], [1.249, 0.60003625956, 16173.3711684044], [1.027, 4.95999945094, 19676.4502312364], [1.108, 4.3420944816, 3339.1279539915], [1.188, 6.21563747433, 2679.3794999188], [0.849, 0.82548606454, 2597.6223661672], [1.145, 4.48151980872, 19402.7969528166], [0.948, 1.30280088857, 8273.8208670324], [1.016, 5.1446481583, 1596.1864422846], [0.832, 5.6062365203, 3340.19235060619], [1.035, 4.71893106874, 419.4846438752], [0.903, 0.45419000582, 12995.2253778368], [1.089, 0.51294377637, 11250.7993934216], [0.84, 5.30858028008, 26084.0218062162], [0.99, 2.06776368865, 7255.5696517344], [0.808, 6.25630819993, 15508.6151232744], [0.806, 3.09007612135, 5415.6573747732], [0.782, 4.62274599734, 2547.8375382324], [0.963, 2.10680539916, 6456.8800576977], [0.778, 3.56602161857, 12721.572099417], [0.873, 5.09097164784, 2540.7913015344], [0.772, 3.08101797047, 11081.2192102886], [0.965, 2.33106703115, 18454.601664915], [0.859, 4.14788214122, 6438.4962494256], [1.012, 4.4501166454, 3316.733988952], [0.906, 4.29336078401, 3344.5445799629], [0.741, 2.6144640358, 2284.7536148596], [0.79, 6.03436225041, 12509.2533250472], [0.738, 0.52092422137, 18052.9295431578], [0.737, 4.11165247543, 3760.097070575], [0.727, 3.28066632751, 3510.1926098328], [1.006, 0.45037465289, 27490.6924780448], [0.923, 2.78717931388, 1332.0548875408], [0.756, 0.86881841787, 1545.3539829788], [0.774, 3.715355419, 6571.0185321802], [0.9, 2.74944190055, 316.3918696566], [0.704, 1.89617185328, 13362.432453147], [0.701, 2.21328293796, 20995.3929664494], [0.701, 3.926894387, 13362.4669604514], [0.695, 5.52658147215, 3364.4908644476], [0.764, 1.88253040972, 5732.0492444298], [0.693, 0.34849213821, 5835.1420186484], [0.698, 1.79132650081, 206.1855484372], [0.687, 0.11649928911, 13760.5987102074], [0.827, 0.49766945172, 3376.6402933772], [0.686, 0.23965591265, 2409.249339848], [0.672, 0.51352450554, 25685.872802808], [0.699, 5.9016759508, 19004.6479494084], [0.647, 3.01091875955, 5223.6939198022], [0.643, 4.88507402785, 11766.2632645146], [0.723, 3.28296530537, 4142.976349146], [0.66, 4.2733439383, 1214.7350193206], [0.675, 0.48874492682, 5408.5438277724], [0.809, 3.13310075522, 18984.2926300096], [0.646, 3.63004914186, 7107.8230442756], [0.831, 4.49449658957, 3341.0325027934], [0.68, 0.16949964513, 110.2063212194], [0.592, 6.03272224596, 20809.4676246452], [0.627, 4.93438097728, 9872.2740829648], [0.698, 1.45709305452, 3377.217792004], [0.583, 4.01887095237, 664.75604513], [0.591, 4.01381288194, 19406.6782881746], [0.571, 1.20823284619, 5621.8601768626], [0.68, 4.72905586557, 8116.372515159], [0.739, 3.19765996917, 9380.9596727172], [0.571, 5.46064659057, 5621.8256695582], [0.702, 0.14107083764, 6923.9534573736], [0.598, 3.05986754375, 3341.0423098265], [0.601, 2.17944973698, 7270.2896804078], [0.572, 0.42001145821, 15110.4661198662], [0.655, 1.08706089359, 3169.9395560806], [0.582, 1.68224967199, 26087.9031415742], [0.543, 2.42716241058, 170.6728706192], [0.543, 1.68460678113, 11780.4903585162], [0.533, 2.63982684952, 2277.7073781616], [0.55, 2.54220679987, 7380.4960016272], [0.576, 1.69042028754, 3384.3313390048], [0.535, 5.0127922346, 1375.7737998458], [0.579, 5.99182453047, 2149.6885348242], [0.598, 0.75754342787, 3340.1825435731], [0.575, 1.33793171924, 3296.8935143948], [0.689, 0.02993986536, 22345.2603761082], [0.526, 6.14212516186, 13149.1506113612], [0.54, 5.54137118955, 8646.0634802536], [0.528, 2.74183495775, 3826.5844794894], [0.689, 6.28205551764, 12295.9542296092], [0.499, 0.25665224668, 2142.6422981262], [0.498, 5.91370528026, 6460.8122109608], [0.588, 3.39977690249, 3329.5667264359], [0.507, 0.63367870048, 20735.83216142559], [0.59, 3.87951788923, 9065.5481241288], [0.509, 2.59333214746, 3877.4169387952], [0.486, 4.01113864377, 23937.856389741], [0.541, 1.55072392536, 2221.856634597], [0.482, 0.00200643783, 10235.1363755374], [0.474, 4.14503805378, 3113.1362939108], [0.523, 2.89171162726, 6040.3472460174], [0.458, 4.08131432844, 1162.4747044078], [0.493, 2.98933582802, 1039.0266107904], [0.489, 4.88201647585, 5511.636601991], [0.537, 1.24870344441, 48835.19385644859], [0.585, 5.5338491934, 4981.9456368964], [0.462, 5.38999453893, 15664.03552270859], [0.531, 1.22287288928, 10721.108428327], [0.44, 4.69966067585, 799.8211251654], [0.588, 5.15076051189, 3873.8265101434], [0.465, 5.49236978535, 3342.0968994081], [0.545, 5.91813092143, 1478.8665740644], [0.44, 2.28287871244, 12310.1813236108], [0.436, 0.12478564862, 956.2891559706], [0.573, 3.86388572602, 26482.1708096244], [0.429, 1.20474317285, 28.4491874678], [0.435, 3.75437730899, 5195.2447323344], [0.457, 1.45606713663, 5636.070017212], [0.553, 5.30628175145, 2766.267628365], [0.494, 0.63303483918, 3274.1250177854], [0.53, 3.18458612574, 8535.8571590342], [0.535, 1.89165024367, 9866.4168806652], [0.433, 0.33270291162, 6665.9723822146], [0.404, 4.6793996459, 4825.544916394], [0.402, 3.25727658426, 5820.9149246468], [0.415, 1.41915166067, 21947.1113727], [0.414, 3.32843373219, 8859.3625756916], [0.403, 1.68400791606, 9588.1255422226], [0.399, 0.93465630912, 2295.4575905122], [0.402, 0.85364636108, 29026.48522950779], [0.494, 4.57792960199, 8542.970706035], [0.413, 2.60545132222, 38.1330356378], [0.413, 5.44081623497, 4407.1079038898], [0.404, 5.33168348188, 3189.5647568569], [0.385, 1.90313951519, 10020.8569590312], [0.454, 1.18358809702, 10610.9021071076], [0.381, 4.90212003667, 19146.7592661418], [0.415, 3.07892141478, 11216.284290324], [0.378, 0.19461412344, 2067.9314010726], [0.418, 1.14626975196, 6643.0918177618], [0.426, 4.33863084563, 220.4126424388], [0.412, 0.02314567339, 3192.5337022735], [0.391, 4.75902617217, 6414.6178116778], [0.399, 1.3770857398, 9654.612951137], [0.381, 2.74120772781, 1854.6323056346], [0.378, 4.16366866018, 13553.8979729108], [0.409, 3.12117409635, 3723.4917052708], [0.379, 5.87578711682, 6357.7194367422], [0.375, 3.29175394061, 31022.7531708562], [0.358, 3.99134138048, 8958.9322315612], [0.39, 2.01175211992, 1903.4368125012], [0.373, 1.27018251531, 2111.6503133776], [0.493, 4.66294641806, 1435.1476617594], [0.379, 4.08720452061, 10706.8813343254], [0.461, 1.9012230147, 25287.7237993998], [0.364, 3.2523113684, 5095.6750764648], [0.382, 2.18684874688, 16276.463942623], [0.359, 2.29096599931, 28628.3362260996], [0.362, 4.15084528423, 6696.4773245846], [0.374, 5.78780163439, 3490.1756238344], [0.386, 4.73230339383, 3981.490034082], [0.344, 5.7915671479, 26880.3198130326], [0.368, 3.44405073824, 15.252471185], [0.41, 1.76294940448, 6709.6740408674], [0.339, 1.71242500987, 224.3447957019], [0.373, 2.71286157688, 3472.1543883862], [0.334, 1.10569460106, 59.3738619136], [0.394, 4.02046774116, 2075.0449480734], [0.402, 3.27520695853, 931.3630868518], [0.318, 3.2889252478, 9485.032768004], [0.319, 4.05344391333, 3450.8187479192], [0.341, 6.08567978892, 17085.9586657222], [0.378, 0.71609301686, 3209.0704650134], [0.326, 4.58257191106, 8982.810669309], [0.369, 6.17228742886, 8671.9698704406], [0.308, 1.01924467785, 18606.4989460002], [0.37, 2.84011243059, 4392.8808098882], [0.303, 5.00239879717, 2810.9387152574], [0.303, 2.97162741204, 2810.904207953], [0.419, 2.798305624, 5106.3790521174], [0.358, 1.15955325186, 4076.4889402316], [0.36, 5.8322612331, 26724.8994135984], [0.298, 5.57160706753, 3041.4860324306], [0.298, 3.06970285022, 11670.2840372968], [0.388, 5.01197738185, 12323.4230960088], [0.336, 4.60208332758, 9602.3526362242], [0.371, 2.23508025241, 4996.172730898], [0.3, 6.04069385215, 9499.2598620056], [0.345, 1.74260482164, 5617.9107699473], [0.302, 3.0112734994, 7483.5887758458], [0.289, 0.39479288685, 2412.772458197], [0.289, 2.21430640344, 11140.5930722022], [0.33, 5.81605457596, 4246.0691233646], [0.394, 2.1222910724, 6475.0393049624], [0.301, 5.26147877814, 9945.5712088238], [0.338, 4.94717046909, 5625.7750764735], [0.372, 5.469686628, 3561.0250691386], [0.279, 0.54063870001, 3226.2133197864], [0.291, 5.21021494024, 13171.0014406876], [0.384, 3.23921380878, 10022.8176011676], [0.309, 3.17514941939, 14047.4937610252], [0.273, 1.68203034215, 4253.1826703654], [0.272, 0.11218647217, 7314.0085927128], [0.281, 5.15132055967, 2825.1485556068], [0.292, 3.33720586058, 9468.267877257], [0.316, 1.41719074976, 589.0648270082], [0.264, 0.4884559473, 16699.53901514999], [0.266, 1.69694779915, 647.0108333148], [0.318, 2.47072726153, 8436.2875031646], [0.26, 2.54459932529, 20.3553193988], [0.275, 2.78608579994, 2970.9126107594], [0.295, 5.96367554548, 4025.6564809258], [0.268, 3.01034973031, 6518.7582172674], [0.259, 5.20888482695, 7366.2689076256], [0.298, 2.71010678192, 6652.7756659318], [0.276, 0.785451083, 3735.238311759], [0.305, 6.19137255377, 6677.3435180416], [0.265, 3.25145629239, 24889.5747959916], [0.26, 3.99612605351, 2171.0241752912], [0.252, 4.14773813625, 5642.1982426092], [0.254, 1.38470256851, 846.0828347512], [0.258, 2.03261985834, 2089.782230399], [0.298, 3.81212222628, 28230.18722269139], [0.241, 2.96550398155, 27682.1407441564], [0.259, 4.79545870271, 6657.3464156518], [0.238, 1.18977479528, 3171.0322435668], [0.256, 1.01427800277, 568.8218740274], [0.236, 5.56425829084, 14.2270940016], [0.304, 3.81556245925, 1190.9238918756], [0.237, 1.37222961867, 2277.2983432475], [0.239, 2.47752611026, 5430.3946570988], [0.234, 4.34929504798, 6675.7019290922], [0.239, 0.14012746335, 3742.284548457], [0.286, 5.04045301355, 5607.6158292088], [0.305, 4.5973907966, 6685.1061887576], [0.254, 5.03693878366, 1905.4647649404], [0.323, 1.67390215145, 4922.5717749828], [0.232, 4.82565548677, 9070.1188738488], [0.236, 2.40662610715, 3620.3989310522], [0.26, 5.72282468723, 17468.8551979454], [0.259, 6.15179402778, 16706.585251848], [0.263, 0.63922292958, 2008.557539159], [0.3, 3.78527265088, 34363.365597556], [0.226, 1.86970344963, 6418.1409300268], [0.239, 0.046169974, 13362.3823964964], [0.241, 4.85896907298, 14158.7477136156], [0.225, 1.70179250908, 18451.07854656599], [0.288, 2.26316945288, 6621.850991486], [0.231, 2.19861265305, 3936.7908007088], [0.251, 5.51232121883, 3416.8784979754], [0.245, 3.30613942274, 1197.9701285736], [0.253, 4.54308131689, 2285.1626497737], [0.225, 5.50822507089, 4936.7988689844], [0.249, 1.06089727346, 3313.210870603], [0.309, 6.21936675838, 16304.9131300908], [0.244, 1.94855224181, 3.5904286518], [0.287, 5.70461951656, 792.7748884674], [0.254, 5.34446995416, 5401.4302807716], [0.263, 1.49663212332, 6364.832983743], [0.223, 2.66825139116, 31968.9486527994], [0.222, 2.48370132727, 5355.2358814886], [0.22, 5.20799024654, 23017.0626579362], [0.215, 2.72743996418, 6740.5987153132], [0.218, 1.30797197521, 29822.7832363242], [0.27, 0.90714939427, 6155.057006654], [0.216, 4.73975263349, 6679.7403806913], [0.211, 3.72756562629, 10042.6126755918], [0.211, 2.61999755641, 10124.930054318], [0.293, 6.07059383381, 14061.7208550268], [0.219, 2.98472846458, 131.5419616864], [0.21, 5.27496906319, 13355.3361597984], [0.259, 1.2526730583, 2641.3412784722], [0.208, 3.30241021109, 6850.8050365326], [0.226, 5.48438086246, 7203.8022714934], [0.243, 2.44748800604, 3311.18291816379], [0.208, 1.13500579457, 5888.4499649322], [0.251, 4.67012983729, 6666.997759398], [0.227, 1.59926413307, 10001.061884607], [0.264, 3.72622435628, 6747.712262314], [0.216, 0.34122804918, 6686.747777707], [0.26, 3.67749190896, 6645.1969867222], [0.209, 4.31928920378, 3337.8609160888], [0.218, 4.08068730999, 3378.7454623376], [0.275, 1.64274205426, 2011.1003364398], [0.204, 0.73237459784, 3.9321532631], [0.219, 0.88584017263, 19513.9835951042], [0.205, 2.60851826933, 2771.7905526724], [0.215, 2.99299817517, 10824.2012025456], [0.249, 0.99914444136, 5753.3848848968], [0.225, 0.23309143434, 4782.87363546], [0.275, 0.86215660461, 8749.1562544722], [0.201, 2.87118854159, 21548.9623692918], [0.246, 3.34468800742, 3333.9287628257], [0.203, 4.11410443276, 31570.7996493912], [0.202, 4.96805650734, 8166.1573430938], [0.232, 2.69372584349, 5989.0672521728], [0.214, 4.83852070026, 6681.6449294932], [0.258, 2.66551831451, 1062.9050485382], [0.197, 0.55202541352, 735.8765135318], [0.256, 2.76274941586, 2480.302497947], [0.216, 4.02506717011, 3133.9116894032], [0.193, 1.52645682146, 949.1756089698], [0.209, 0.67348618655, 13892.1406718938], [0.22, 1.52502617699, 6660.8695340008], [0.223, 1.09348882524, 6148.010769956], [0.192, 2.90571322264, 8799.988713778], [0.243, 3.36420301442, 8965.9784682592], [0.206, 5.11175800472, 4140.4335518652], [0.189, 1.06641624209, 9374.8264467846], [0.24, 5.92078519032, 13362.517017102], [0.248, 5.79997873732, 15806.146839442], [0.193, 3.19008521814, 6756.0064519669], [0.237, 4.11979030463, 22487.3716928416], [0.218, 0.84212090761, 6717.252720077], [0.2, 2.4310084663, 10018.2468514476], [0.199, 5.81238461796, 4289.7880356696], [0.214, 5.95026024979, 6680.804777306], [0.192, 3.06285109033, 32765.2466596158], [0.229, 1.68884404323, 11614.4332937322], [0.185, 3.13072183492, 3253.30422216], [0.246, 2.58151525126, 1795.258443721], [0.187, 4.06797969837, 14577.1847261198], [0.185, 0.96747889626, 2604.735913168], [0.184, 1.46731725339, 1437.1756141986], [0.186, 2.55094700069, 3188.7151456146], [0.211, 4.23522784526, 16703.07938715119], [0.196, 2.80582160764, 2796.6943676036], [0.198, 5.9237206756, 4133.3873151672], [0.238, 2.30957041178, 1879.5583747534], [0.224, 3.13550652378, 3613.2853840514], [0.223, 1.81801741599, 3184.2117061974], [0.199, 3.64983703995, 4271.9755135516], [0.181, 2.71721121316, 4186.695261451], [0.184, 2.03051030984, 6674.1786167016], [0.182, 1.5443144281, 9947.0556815321], [0.179, 4.38762678121, 9886.772200064], [0.181, 1.80044971979, 6717.8302187038], [0.19, 4.97714900529, 6670.5881880498], [0.247, 5.77972128678, 29424.634232916], [0.194, 5.90745451439, 6705.1032911474], [0.224, 5.61893896091, 227.476132789], [0.182, 2.77233344458, 6887.4104018368], [0.224, 1.94094757956, 8226.5788363784], [0.181, 4.6138108133, 3361.9480671668], [0.203, 5.24659800837, 7586.6815500644], [0.183, 5.23826533455, 6578.132079181], [0.207, 0.88292186428, 10156.9023601348], [0.232, 0.75375986797, 3232.9489027612], [0.179, 5.89794151802, 4452.2546718018], [0.177, 6.16223629155, 3547.3131639964], [0.177, 0.1929289803, 401.6721217572], [0.173, 3.898140641, 6019.9919266186], [0.172, 2.42933586666, 6944.3087767724], [0.201, 6.18392570315, 6947.8318951214], [0.183, 5.82189570737, 8962.438096258], [0.189, 2.71231990816, 742.9900605326], [0.172, 3.86810071059, 10028.9508271002], [0.188, 5.22462530948, 2125.8774073792], [0.196, 1.883885699, 5032.7780962022], [0.209, 5.78130707501, 3343.3639373108], [0.167, 6.26758992296, 15849.865751747], [0.189, 2.38894304278, 3212.5935833624], [0.208, 5.62485439431, 31172.650645983], [0.17, 1.0734640106, 20426.571092422], [0.183, 5.21160560654, 27832.0382192832], [0.181, 2.19756653553, 16703.0448798468], [0.214, 1.66101921272, 21265.5231265202], [0.165, 2.10517924574, 6688.2710900976], [0.172, 0.85495655009, 14591.4118201214], [0.164, 1.68898542913, 3468.6312700372], [0.183, 1.56948199057, 8962.4726035624], [0.191, 5.54553650068, 2806.9893083421], [0.162, 4.06699160265, 5209.471826336], [0.165, 3.44003333876, 14421.8316369884], [0.163, 2.42152585351, 6314.0005244372], [0.189, 0.57681608522, 2973.3880977374], [0.169, 2.86190807726, 5490.300961524], [0.174, 1.69333072403, 1744.493294718], [0.224, 2.35886332922, 9638.9407478762], [0.207, 3.13737248079, 3336.6802734367], [0.221, 3.14807587279, 11610.9101753832], [0.158, 5.87599422932, 4606.1799053262], [0.166, 4.61834424167, 9175.7544453482], [0.162, 5.40045489036, 23.8784377478], [0.158, 5.57047764661, 4503.0871311076], [0.156, 3.08339691033, 3448.2759506384], [0.202, 2.56469307457, 7321.1221397136], [0.164, 1.10347159072, 3710.3122426402], [0.158, 3.65995745934, 6997.6167230562], [0.169, 1.85985317117, 1329.51209026], [0.211, 1.66624816725, 3304.0070613956], [0.206, 1.81572746145, 1596.1191319818], [0.169, 0.46310427277, 17101.2111369072], [0.159, 5.73384451559, 1265.5674786264], [0.159, 0.92643196778, 4001.8453534808], [0.189, 2.7416385092, 2910.4911174748], [0.181, 5.48699984659, 3319.2767862328], [0.156, 5.9546211847, 8584.6616659008], [0.158, 3.38732507447, 8742.0427074714], [0.171, 3.11406750626, 5621.9102335132], [0.199, 2.86370198218, 10025.4277087512], [0.173, 4.73384838991, 9389.0535407862], [0.16, 3.06861532268, 1612.9513330316], [0.203, 1.71629299113, 699.2711482276], [0.198, 0.56267868345, 15265.8865193004], [0.186, 2.44573687199, 2814.8536148683], [0.167, 0.4441794226, 37895.4262903674], [0.152, 5.0861661053, 3322.7999045818], [0.162, 2.58982908935, 1883.0814931024], [0.178, 4.58774508034, 6685.1570066627], [0.191, 4.12771141768, 9911.63095888], [0.185, 4.32284898739, 323.5054166574], [0.199, 1.83524172935, 3436.5916539176], [0.199, 6.00292619279, 4427.3959129858], [0.153, 3.4644766959, 22324.9050567094], [0.171, 3.52256446633, 5621.7756129076], [0.165, 3.32970937124, 1272.6810256272], [0.149, 0.13370088791, 36.0278666774], [0.149, 1.23280447264, 4193.8088084518], [0.156, 0.13018524921, 11925.2740926006], [0.146, 1.24102730441, 3372.5847325166], [0.154, 5.63537863362, 3185.2593375684], [0.197, 3.2336418844, 3774.3241645766], [0.18, 3.47485722477, 8564.306346502], [0.185, 2.18248214016, 802.3639224462], [0.145, 2.62035460481, 3368.0139827966], [0.18, 6.01236697222, 6691.8615187494], [0.148, 2.5171017883, 3262.8618827159], [0.151, 4.17118896078, 16894.5103996106], [0.185, 3.0393966835, 3354.8395207014], [0.143, 3.37267915445, 3468.5639597344], [0.16, 2.1670595973, 0.9803210682], [0.19, 1.63240538938, 2324.9494088156], [0.14, 1.27592043896, 6549.6828917132], [0.186, 1.44849264278, 1015.6630178842], [0.141, 4.19208049402, 5813.291189322], [0.153, 5.97405255778, 3568.0885594888], [0.136, 0.45455359025, 3193.8007401762], [0.188, 0.98977442882, 2538.2485042536], [0.157, 3.32117477144, 3181.6689089166], [0.164, 1.67705754742, 2751.5475996916], [0.134, 5.26327877742, 13212.8865096646], [0.184, 0.73082474043, 369.6998159404], [0.145, 5.54086212771, 3152.68727893721], [0.139, 3.30464120245, 6151.5166346528], [0.132, 0.96753793729, 3487.4241132234], [0.148, 1.55321724063, 7696.8878712838], [0.14, 5.390007578, 2945.9865416406], [0.155, 4.35207037526, 4005.3684718298], [0.142, 5.13441372991, 1641.3332101966], [0.131, 2.48606821423, 1353.3905280078], [0.131, 2.18754536881, 1765.7666254176], [0.133, 3.0130058204, 3283.7140517642], [0.177, 2.37558492362, 11346.7786206394], [0.145, 0.79525636457, 2281.2477501628], [0.133, 5.96263652624, 34513.2630726828], [0.165, 1.32559153826, 6510.5519827804], [0.132, 4.31118469609, 1971.9521738548], [0.176, 3.17539133688, 6701.5801727984], [0.14, 1.18723558164, 1461.0540519464], [0.128, 6.07261046225, 3362.4632560262], [0.139, 5.33541181199, 6151.5511419572], [0.143, 1.04060603784, 3351.6581269637], [0.138, 1.96009952022, 2014.6234547888], [0.127, 2.12310260285, 2917.5373541728], [0.142, 0.29094317859, 3212.6608936652], [0.128, 0.4997445644, 10264.5658840734], [0.125, 1.62548810323, 10191.4174632324], [0.128, 3.55358985291, 3223.2925584796], [0.14, 5.87379732521, 6382.0984591304], [0.129, 2.90428606882, 6812.766815086], [0.127, 4.03101399507, 10448.4354709754], [0.128, 3.23265469, 4576.6880870228], [0.124, 2.02283056331, 6724.9437657046], [0.134, 0.19295362623, 3130.8364496108], [0.145, 5.04767049759, 2281.2132428584], [0.143, 4.45744983982, 7100.7094972748], [0.133, 5.00404182123, 11883.5831327348], [0.124, 0.73925895836, 1485.9801210652], [0.123, 0.47283015475, 3347.2960905739], [0.137, 5.73370922615, 5244.049239201], [0.152, 5.0146445546, 3358.4249488178], [0.122, 1.37003015612, 3370.0419352358], [0.143, 1.95740753086, 2921.6880277992], [0.123, 3.94139290312, 4957.0868780804], [0.13, 0.90844304292, 3427.9206312396], [0.135, 3.56996218538, 3229.4257844122], [0.143, 5.3022576787, 14128.2427712456], [0.134, 2.47836558803, 7167.1969061892], [0.15, 5.89116199733, 966.9708774356], [0.123, 3.58787674774, 3318.7615973734], [0.153, 0.37199746202, 6533.1461289733], [0.145, 1.73326841661, 6637.5059410946], [0.133, 3.27553306809, 11876.469585734], [0.119, 5.15087396729, 15636.566656309], [0.117, 3.70999224131, 3343.1552239806], [0.115, 5.99541570797, 11986.6759069534], [0.152, 5.6666233996, 6530.1771835567], [0.123, 0.05231448642, 9801.4246376606], [0.13, 1.4237792604, 16063.164847185], [0.12, 4.19579234337, 604.8497407048], [0.126, 1.38788085609, 169.580183133], [0.122, 0.18785107006, 18849.2275499742], [0.113, 4.67731144918, 24491.4257925834], [0.122, 1.21803689218, 3067.9394693482], [0.118, 3.92389195187, 2963.238818784], [0.137, 0.80076862963, 3123.7902129128], [0.124, 0.77274469912, 12465.5344127422], [0.132, 4.73888023892, 2267.003402509], [0.122, 3.66231014052, 8756.269801473], [0.113, 3.74955221887, 21393.5419698576], [0.153, 5.00596002145, 15906.7641266826], [0.109, 1.4639407844, 2854.6403739102], [0.125, 6.00744459186, 1442.2612087602], [0.14, 0.64532646558, 13532.0298899322], [0.108, 2.11691804278, 43.718912305], [0.13, 1.4318591196, 3370.1042450032], [0.133, 2.31239626151, 9072.6616711296], [0.107, 5.68864833782, 4878.8528626778], [0.116, 3.91262234002, 11904.9187732018], [0.106, 1.99989592271, 3497.0131472022], [0.106, 5.79020088316, 1.4844727083], [0.105, 1.79751699456, 3517.3061568336], [0.13, 0.80396347034, 3397.5108016354], [0.107, 5.29449090921, 10.6366653498], [0.137, 0.47037516401, 13575.7488022372], [0.104, 5.03145022037, 1751.5222777638], [0.146, 2.57659804831, 3308.640120883], [0.103, 3.29589452622, 4379.6390374902], [0.104, 0.77903634693, 1751.5567850682], [0.118, 4.11892224522, 10927.2939767642], [0.106, 2.25714927822, 13207.029307365], [0.126, 1.10289326962, 6680.7949702729], [0.105, 1.41449747957, 10081.211142013], [0.11, 6.16072219971, 3338.069629419], [0.113, 0.61947991056, 13421.8235687128], [0.139, 2.21345603147, 1954.7171503636], [0.102, 3.81767069895, 6670.1791531357], [0.101, 3.44583422545, 1505.28780909299], [0.105, 2.46134952447, 5525.8636959926], [0.119, 5.64454862995, 8425.7181481176], [0.101, 1.87446179141, 9161.5273513466], [0.111, 5.46183253107, 7214.4389368432], [0.123, 0.14056284625, 16489.763038061], [0.128, 0.00452525697, 2185.2512692928], [0.106, 6.2022517933, 3717.9860346156], [0.099, 1.70554147455, 1655.5603041982], [0.1, 1.76373681853, 3002.3697277168], [0.101, 0.55693458655, 3337.1566186536], [0.101, 0.56441794685, 30774.5016425748], [0.098, 1.93983799659, 5562.4690612968], [0.13, 5.65255471249, 2735.762685995], [0.125, 6.18575288406, 9698.331863442], [0.1, 2.35767934317, 3337.0720546986], [0.1, 3.76317527562, 3344.152798701], [0.105, 5.33897491215, 5096.0841113789], [0.103, 1.24189801298, 1385.8952763362], [0.101, 1.42727612221, 37455.7264959744], [0.096, 2.55328478399, 4466.4817658034], [0.097, 5.8677912741, 5220.1708014532], [0.101, 2.61513508379, 16858.41522263039], [0.107, 4.23943588615, 8823.8671515258], [0.1, 4.38845221965, 3337.106562003], [0.1, 1.73240240188, 3344.11829139661], [0.101, 3.51764169063, 4694.0029547076], [0.096, 3.16895015703, 12825.6451947038], [0.101, 6.24060604565, 2942.5307335944], [0.103, 1.09500325425, 12089.768681172], [0.106, 5.57931664756, 39048.3225096072], [0.126, 3.4052173855, 6681.6547365263], [0.105, 2.52404371984, 1755.062649765], [0.115, 6.10031030713, 3145.6410422392], [0.092, 5.06385191401, 5085.1057214178], [0.097, 1.11670836674, 3341.7930693519], [0.092, 5.83209800268, 6682.7093261079], [0.121, 2.39411154886, 18208.349942592], [0.11, 2.51677822824, 1045.1548361876], [0.091, 1.07173725022, 927.8399685028], [0.096, 3.60155667418, 13363.4300278674], [0.097, 5.34224904711, 7636.4663779992], [0.094, 1.20811080231, 9495.6694333538], [0.09, 4.17568982529, 0.0673103028], [0.097, 3.20862890174, 5298.337506553], [0.092, 3.20029831258, 4403.517475238], [0.09, 3.79900428724, 685.044054226], [0.101, 2.1277832928, 10050.2864675672], [0.098, 3.89390262307, 2373.6415492642], [0.09, 4.49046504054, 6453.7487206106], [0.096, 5.13129666936, 7792.8670985016], [0.089, 4.51228904794, 10037.0897512844], [0.098, 0.65689906709, 2810.988771908], [0.114, 4.15908543927, 9090.4741932476], [0.094, 4.78960145866, 35707.7100829074], [0.087, 6.26525215858, 34554.8138636676], [0.087, 1.50181194995, 9983.7042444616], [0.087, 1.43790822626, 9488.6231966558], [0.09, 2.79573736864, 47477.5637760738], [0.094, 5.68919291448, 6106.8800550648], [0.087, 0.74049208991, 41990.7859328988], [0.101, 0.99308133443, 6614.7374444852], [0.115, 3.49732055752, 4.5034394172], [0.086, 0.18628425275, 216.822213787], [0.099, 1.06539589813, 2810.8541513024], [0.087, 3.02856210899, 7218.029365495], [0.085, 4.58476007089, 1699.2792165032], [0.088, 4.47996444588, 21957.680727747], [0.106, 6.1201188073, 4819.4790007642], [0.089, 3.88600719587, 12199.9750023914], [0.097, 2.70091698598, 3339.4317840477], [0.118, 1.027395272, 34115.1140692746], [0.101, 0.36591831115, 2942.3961129888], [0.084, 5.66081869654, 1169.5882514086], [0.086, 1.91214909013, 55516.4187098482], [0.084, 4.30909434949, 4150.0898961468], [0.094, 1.36645151323, 9093.9973115966], [0.097, 2.26544245706, 13361.469385731], [0.099, 1.16054562056, 128.0188433374], [0.094, 1.10573952457, 4591.4426230006], [0.092, 0.74386387542, 4845.9002357928], [0.101, 1.5157029904, 7807.0941925032], [0.096, 1.02187746571, 2899.7871418222], [0.086, 0.66787658068, 2957.7331481288], [0.087, 3.4967618964, 4061.751657906], [0.095, 3.35452781355, 661.232926781], [0.087, 0.04840436087, 23546.7536230308], [0.114, 2.83270741566, 394.6258850592], [0.081, 3.44420073782, 148.0787244263], [0.081, 1.27062968985, 4893.0799566794], [0.083, 5.48462687348, 4349.1618975832], [0.105, 3.4784203613, 3413.9095525588], [0.084, 4.33209852801, 51449.3242632782], [0.093, 1.59775582035, 5088.2198048527], [0.088, 3.29950478012, 2655.501062171], [0.081, 1.65543714666, 78263.70942472259], [0.086, 1.19342535692, 4029.2469095776], [0.079, 4.41964678009, 151.0476698429], [0.084, 1.96289182788, 14867.73751589219], [0.091, 5.76229906142, 2544.3316735356], [0.086, 3.78659802914, 1481.4093713452], [0.082, 2.85633413428, 14164.8136292454], [0.078, 4.29426812598, 187.9251477626], [0.078, 5.38566529072, 2655.5683724738], [0.084, 2.15121245434, 3311.1206083964], [0.078, 2.01651247942, 9124.9219860424], [0.083, 4.28280129037, 74923.09699802278], [0.077, 1.45903147715, 2544.3817301862], [0.081, 3.62204400197, 12306.590894959], [0.1, 1.33498371324, 9278.8472195668], [0.089, 2.62080312892, 24341.5283174566], [0.098, 3.78877505378, 3198.4337996636], [0.081, 4.34306418828, 10177.1903692308], [0.08, 5.80054348103, 2751.01515718], [0.092, 2.80228448795, 3707.8367556622], [0.082, 2.4581289624, 9815.6517316622], [0.076, 3.03616461584, 9993.3880926316], [0.076, 3.92674885488, 2910.0820825607], [0.076, 3.2000404072, 7733.493236588], [0.098, 3.28574616663, 3289.33208883739], [0.077, 2.0594893001, 12928.7379689224], [0.075, 0.85784191736, 28638.9055811466], [0.078, 0.29690749181, 10654.6210194126], [0.101, 0.72388999452, 48827.4311857326], [0.085, 5.1943801013, 2146.148162823], [0.083, 4.42475849926, 2060.8178540718], [0.075, 5.19097428778, 1055.4497769261], [0.096, 6.24132708357, 11.0457002639], [0.074, 3.37882325472, 8006.1661939396], [0.101, 0.95332927487, 8186.5126624926], [0.092, 0.961730051, 151.8972810852], [0.074, 2.2271663021, 272.6729573516], [0.092, 5.56705883046, 27873.589010268], [0.091, 3.73152787182, 2544.2971662312], [0.084, 0.41493230617, 4296.9015826704], [0.074, 5.09669613096, 9755.2302383776], [0.078, 1.79565224435, 3564.9572224017], [0.075, 4.58345774133, 9153.9036160218], [0.074, 3.88658218247, 25298.2931544468], [0.085, 5.31472029744, 4716.3862265456], [0.074, 1.46907693289, 11527.1250891924], [0.101, 2.94847804254, 12032.9376165392], [0.072, 0.24413748615, 1324.94134054], [0.078, 0.17721609024, 3391.89276456221], [0.073, 1.65072742864, 5452.2627400774], [0.073, 4.9173008347, 10787.6303445458], [0.073, 3.28285909319, 8830.9133882238], [0.081, 5.4634074205, 3856.0762977928], [0.073, 4.61913155968, 3288.352111787], [0.096, 5.71767221046, 206.7007372966], [0.08, 4.47918417138, 12299.544658261], [0.071, 4.9813032833, 12942.965062924], [0.073, 2.86057567032, 4960.6099964294], [0.072, 5.14120362338, 4665.5537672398], [0.076, 0.00928867041, 6534.413166876], [0.09, 5.38224594245, 2125.8100970764], [0.085, 0.94196641948, 2146.1826701274], [0.096, 0.68069708134, 10006.5848089144], [0.073, 1.06048379839, 3866.7802734454], [0.072, 0.84342376295, 3334.54651107], [0.091, 5.12701600437, 3392.8727416126], [0.076, 5.96038992872, 3482.791053736], [0.09, 1.46230169383, 5092.169211768], [0.071, 1.16745785331, 1574.8458012822], [0.072, 3.86137692169, 16762.4359954126], [0.07, 0.07310763691, 12839.8722887054], [0.073, 0.11725123446, 10507.809332889], [0.081, 5.86817748181, 3495.9655158312], [0.071, 2.07963275673, 1063.3140834523], [0.068, 3.30993028662, 4106.4054911462], [0.069, 0.33467954461, 5.5229243074], [0.068, 1.56404561711, 2398.5503647308], [0.09, 2.61953849393, 3346.6783423296], [0.068, 1.06108185791, 191.3809558088], [0.077, 0.87794040199, 2917.9463890869], [0.067, 0.29712068423, 12012.5822971404], [0.067, 2.55451787747, 11567.1912630782], [0.083, 1.82578570364, 3511.285297319], [0.068, 2.68247854175, 20213.25474333179], [0.086, 2.79273636804, 367.2243289624], [0.086, 0.81171860574, 209.775977089], [0.067, 5.28035928877, 8966.3875031733], [0.067, 0.20258020424, 27433.88921587499], [0.071, 2.76410148218, 15650.7937503106], [0.09, 0.71593793107, 3451.7990689874], [0.067, 6.18148420146, 3966.2826190122], [0.074, 3.61959120765, 7064.1041319706], [0.068, 2.69550405031, 12725.453434775], [0.074, 1.24854309783, 8027.5691447094], [0.084, 2.47006028699, 3738.7441764558], [0.077, 5.89874180572, 4307.5833041354], [0.067, 0.33285041428, 19645.5255567906], [0.083, 3.79134493696, 2472.6787626222], [0.064, 0.43216125634, 1994.26813539], [0.071, 0.65707804543, 860.3099287528], [0.064, 0.98960038205, 3376.1751611684], [0.07, 0.96227192685, 8428.8322315525], [0.066, 0.65425879867, 8219.4652893776], [0.07, 4.36060455306, 8436.6965380787], [0.084, 4.50083253887, 3738.7786837602], [0.073, 5.69670871544, 14687.3910473392], [0.071, 0.36334330253, 2619.4731954936], [0.08, 5.85771861744, 7747.7203305896], [0.068, 3.06409889136, 8446.9914788172], [0.066, 1.07137364271, 1987.221898692], [0.061, 3.71171429905, 1055.8588118402], [0.079, 0.06487001849, 6286.5989683404], [0.075, 1.54177744365, 1059.3991838414], [0.061, 1.47350010728, 1685.0521225016], [0.061, 0.46897959303, 1727.6610936682], [0.064, 2.11869877898, 3305.0496922312], [0.06, 1.17940250396, 97670.38771289718], [0.06, 5.13953821352, 1898.3339642874], [0.064, 4.04058406722, 3945.4621674046], [0.063, 5.20562384814, 24606.13555322], [0.061, 0.55428968913, 7082.8969751568], [0.075, 4.81208819076, 27299.2442119332], [0.059, 1.75511446129, 12082.6551341712], [0.061, 5.8833385561, 6901.6374958384], [0.074, 3.46408580786, 14556.8967170238], [0.074, 4.40649822049, 9360.6043533184], [0.058, 4.22827613192, 4531.5363185754], [0.08, 2.14103357856, 7917.3005137226], [0.075, 1.8561801142, 52566.19261584059], [0.075, 5.1583065968, 45884.967762441], [0.068, 2.06915254754, 8958.5231966471], [0.056, 3.77847713307, 299.1263942692], [0.062, 2.25564130818, 9758.7533567266], [0.059, 2.68657637673, 6283.0585963392], [0.056, 5.54148283448, 13286.1836355236], [0.056, 3.892008116, 8962.3880396074], [0.063, 2.07254352069, 7593.7950970652], [0.061, 4.31994402891, 4709.2726795448], [0.075, 5.79419108898, 1059.364676537], [0.056, 0.18569912415, 7768.0083396856], [0.059, 5.49627068572, 7322.1024607818], [0.064, 3.9599211222, 3050.1269472302], [0.055, 2.19506741266, 7.046236698], [0.057, 4.052526953, 3930.2096962196], [0.075, 3.99788100837, 5483.254724826], [0.06, 4.61703903739, 6990.5031760554], [0.073, 4.20362525534, 21150.8133658836], [0.066, 2.82009591985, 8771.0070837986], [0.054, 0.38782719267, 360.1107819616], [0.059, 4.71734799803, 6283.0931036436], [0.068, 5.74655335863, 987.746272928]], [[1107433.34, 2.0325052495, 3340.6124266998], [103175.886, 2.37071845682, 6681.2248533996], [12877.2, 0.0, 0.0], [10815.88, 2.70888093803, 10021.8372800994], [1194.55, 3.04702182503, 13362.4497067992], [438.579, 2.88835072628, 2281.2304965106], [395.698, 3.42324611291, 3344.1355450488], [182.572, 1.58428644001, 2544.3144198834], [135.85, 3.38507017993, 16703.062133499], [128.204, 0.6299122057, 1059.3819301892], [127.068, 1.9538977574, 796.2980068164], [118.443, 2.99761345074, 2146.1654164752], [128.362, 6.04343360441, 3337.0893083508], [87.537, 3.42052758979, 398.1490034082], [83.026, 3.85574986653, 3738.761430108], [75.598, 4.45101839349, 6151.533888305], [71.999, 2.7644218068, 529.6909650946], [66.542, 2.54892602695, 1751.539531416], [54.314, 0.67750943459, 8962.4553499102], [51.035, 3.72585409207, 6684.7479717486], [66.43, 4.40597549957, 1748.016413067], [47.863, 2.28527896843, 2914.0142358238], [49.428, 5.72959428364, 3340.5951730476], [49.424, 1.47717922226, 3340.629680352], [57.518, 0.54354327916, 1194.4470102246], [48.318, 2.58061691301, 3149.1641605882], [36.384, 6.02728752344, 3185.1920272656], [37.176, 5.81439911546, 1349.8674096588], [36.036, 5.89508336048, 3333.498879699], [31.115, 0.9783250696, 191.4482661116], [38.953, 2.31900090554, 4136.9104335162], [27.244, 5.41367977087, 1592.5960136328], [24.3, 3.75843924498, 155.4203994342], [22.804, 1.74830773908, 5088.6288397668], [22.324, 0.9393204073, 951.7184062506], [21.708, 3.83571581352, 6283.0758499914], [21.304, 0.78049229782, 1589.0728952838], [21.631, 4.56895741061, 3532.0606928114], [17.956, 4.21930481803, 3870.3033917944], [18.237, 0.41328624131, 5486.777843175], [16.251, 3.80760134974, 3340.545116397], [16.803, 5.54857987615, 3097.88382272579], [16.85, 4.53690440252, 4292.3308329504], [15.755, 4.75736730681, 9492.1463150048], [15.746, 3.72356090283, 20043.6745601988], [20.428, 3.13540712557, 4690.4798363586], [14.699, 5.95325006816, 3894.1818295422], [16.251, 3.39910907599, 3340.6797370026], [14.259, 3.99897353022, 1990.745017041], [16.528, 0.96752074938, 4399.994356889], [13.01, 5.14230107067, 6677.7017350506], [12.492, 1.03211063742, 3341.592747768], [16.463, 3.53882915214, 2700.7151403858], [16.171, 2.34870953554, 553.5694028424], [13.169, 0.41461716663, 5614.7293762096], [11.272, 1.02375627844, 12303.06777661], [12.408, 6.23142869816, 5628.9564702112], [12.747, 0.69046314049, 3723.508958923], [11.827, 6.25283898676, 2274.1169495098], [10.384, 1.23257236014, 426.598190876], [11.208, 1.31750963435, 3496.032826134], [10.345, 0.9006246469, 4535.0594369244], [12.215, 4.22316056098, 7079.3738568078], [9.765, 3.45310940204, 382.8965322232], [8.586, 1.16471901139, 2787.0430238574], [7.879, 5.7380886179, 2288.3440435114], [9.195, 1.81689739851, 6681.2421070518], [7.751, 4.15046998466, 6041.3275670856], [9.195, 6.06945250657, 6681.2075997474], [9.026, 2.58210941053, 2388.8940204492], [6.771, 0.23987737854, 11773.3768115154], [7.087, 3.51414944377, 8031.0922630584], [9.159, 3.9015859055, 3553.9115221378], [6.702, 4.25572879119, 242.728603974], [7.232, 3.70287400141, 2818.035008606], [6.546, 0.04353472459, 2957.7158944766], [8.781, 2.19735028572, 1221.8485663214], [6.54, 2.11834687923, 8429.2412664666], [6.836, 4.04512263654, 10025.3603984484], [7.28, 4.26943100715, 2803.8079146044], [7.676, 1.00782250264, 8432.7643848156], [5.732, 3.13956241764, 213.299095438], [5.344, 3.78220670098, 5092.1519581158], [5.991, 2.96408254428, 6489.776587288], [5.132, 3.98288453952, 7.1135470008], [6.261, 1.90346469972, 5621.8429232104], [5.241, 2.6709379505, 7477.522860216], [6.261, 1.60056695152, 3347.7259737006], [6.526, 2.76281601349, 3339.6321056316], [4.591, 1.81986278078, 2810.9214616052], [5.46, 4.60874445963, 3583.3410306738], [4.733, 0.9056002634, 5099.2655051166], [5.486, 4.91408093456, 7632.9432596502], [4.004, 4.14067157211, 9623.6882766912], [3.837, 0.03343295627, 7234.794256242], [3.621, 5.76532393672, 4933.2084403326], [3.747, 0.08778985966, 6525.8044539654], [3.016, 3.73838855125, 6681.2921637024], [3.975, 4.91288592965, 2942.4634232916], [3.911, 0.67451768877, 3127.3133312618], [3.923, 3.07703531632, 3.523118349], [3.944, 0.53974754515, 5884.9268465832], [2.901, 4.66281989264, 7210.9158184942], [2.803, 1.00530177454, 7064.1213856228], [3.153, 4.54673175664, 2487.4160449478], [2.784, 0.05495331967, 639.897286314], [2.759, 5.17099857257, 5828.0284716476], [3.017, 4.14668877243, 6681.1575430968], [2.999, 0.82918667275, 5085.038411115], [2.677, 0.69427974692, 2699.7348193176], [3.023, 2.59489020298, 2906.900688823], [2.596, 1.08693013783, 4929.6853219836], [3.126, 1.00027692782, 2118.7638603784], [2.598, 5.01195749912, 10018.3141617504], [2.606, 5.34420770679, 10973.55568635], [2.779, 3.98358744953, 6467.9257579616], [2.46, 1.52653571249, 6836.6452528338], [2.382, 3.93610586965, 11371.7046897582], [2.59, 5.08892664109, 12832.7587417046], [2.201, 0.18880589605, 9595.2390892234], [2.128, 5.69450469171, 3191.0492295652], [2.065, 3.541331746, 1066.49547719], [1.868, 5.0159253181, 3475.6775067352], [2.081, 1.3027445922, 7740.6067835888], [1.83, 5.68365327697, 3319.8370312074], [2.022, 6.1609232806, 1744.4259844152], [1.708, 2.21675931288, 2921.1277828246], [1.836, 6.16477009621, 8425.6508378148], [2.06, 6.24041853265, 6674.1113063988], [1.735, 4.58243571826, 10419.9862835076], [1.852, 1.36883022935, 15643.6802033098], [1.689, 1.92829590736, 3767.2106175758], [1.954, 0.46215988899, 10575.4066829418], [1.8, 2.3091334366, 3355.8648978848], [1.444, 2.15042616899, 10021.8545337516], [1.76, 5.87267582299, 3320.257107301], [1.845, 4.06123235448, 23384.2869868986], [1.423, 4.65085713203, 4562.4609930212], [1.41, 1.50438410845, 3325.3599555148], [1.444, 0.11969993808, 10021.8200264472], [1.443, 0.55828572929, 15113.9892382152], [1.334, 1.25483731308, 7875.6718636242], [1.442, 1.38958943728, 6682.2051744678], [1.606, 4.34241260905, 5331.3574437408], [1.377, 0.1479168382, 1758.6530784168], [1.282, 5.78533014319, 14584.2982731206], [1.281, 1.35125896423, 10404.7338123226], [1.471, 0.34649469321, 8969.568896911], [1.245, 6.02681709446, 3264.3463554242], [1.234, 1.88341938354, 10177.2576795336], [1.552, 5.92727420332, 8439.8779318164], [1.182, 4.18100226016, 3360.96774609859], [1.333, 1.86551437099, 692.1576012268], [1.189, 0.89892514263, 13916.0191096416], [1.192, 4.30473818946, 6894.5239488376], [1.145, 0.15197504252, 3134.4268782626], [1.299, 1.44631688592, 6254.6266625236], [1.494, 1.54417907271, 3361.3878221922], [1.054, 0.67591855339, 3344.2028553516], [1.21, 0.85117132607, 3120.199784261], [1.061, 0.13258232364, 522.5774180938], [1.003, 1.28021784912, 4569.574540022], [1.012, 5.77497169905, 14314.1681130498], [1.169, 2.99767730172, 6247.5131155228], [1.062, 0.25467691252, 3337.021998048], [1.032, 5.6983368362, 536.8045120954], [1.082, 2.58016159997, 6261.7402095244], [0.867, 1.50283829131, 6127.6554505572], [0.953, 2.92377030638, 5729.506447149], [0.887, 5.28743574972, 10213.285546211], [1.108, 2.8433917189, 640.8776073822], [0.861, 3.21491381593, 3914.9572250346], [1.069, 0.49400181869, 11243.6858464208], [0.8, 4.64154002129, 6144.4203413042], [0.799, 3.33215212691, 9830.3890139878], [1.046, 4.059078777, 6158.6474353058], [0.743, 4.9333799729, 3230.4061054804], [0.74, 3.01511102229, 10818.1352869158], [0.716, 2.52567242762, 5202.3582793352], [0.705, 4.39344403231, 9808.5381846614], [0.786, 1.72357089999, 3178.1457905676], [0.719, 0.38924465445, 6298.3283211764], [0.717, 6.23927283856, 3369.0616141676], [0.704, 1.96763488855, 6688.3384004004], [0.882, 2.10339285493, 2301.58581590939], [0.913, 2.30662326829, 13517.8701062334], [0.914, 4.36610748804, 13365.9728251482], [0.659, 3.40905557071, 1648.4467571974], [0.828, 2.13305589137, 7903.073419721], [0.652, 5.97050449428, 574.3447983348], [0.688, 4.02232587894, 1052.2683831884], [0.709, 2.24658423912, 9225.539273283], [0.59, 0.67418318613, 8955.3418029094], [0.604, 2.73550395152, 16858.4825329332], [0.785, 3.58704322751, 2693.601593385], [0.57, 4.11146135269, 6034.2140200848], [0.624, 4.45415856101, 12964.300703391], [0.563, 3.72383942144, 13119.72110282519], [0.547, 3.04142188931, 2707.8286873866], [0.536, 4.65546776421, 135.0650800354], [0.68, 3.62640859214, 6048.4411140864], [0.535, 3.32503801413, 9779.1086761254], [0.615, 0.31792697641, 7910.1869667218], [0.506, 1.24339056369, 4555.3474460204], [0.633, 1.32124830132, 2648.454825473], [0.671, 2.88173567087, 3316.733988952], [0.57, 4.94522781693, 6923.9534573736], [0.489, 0.48479532469, 12935.8515159232], [0.49, 1.57712746955, 162.4666361322], [0.492, 4.08592823251, 10021.9045904022], [0.468, 4.50628939729, 2384.3232707292], [0.462, 1.30653882308, 17256.6315363414], [0.444, 5.20556841675, 13358.9265884502], [0.511, 5.29436707935, 853.196381752], [0.458, 5.52316111365, 6438.4962494256], [0.443, 4.37626774329, 12168.0026965746], [0.429, 4.06329082027, 149.5631971346], [0.502, 6.12188881856, 8273.8208670324], [0.42, 3.51990468754, 9168.6408983474], [0.452, 0.15931716927, 7895.9598727202], [0.401, 0.93276882765, 433.7117378768], [0.491, 4.49372643902, 10021.7699697966], [0.39, 1.26790524143, 5459.3762870782], [0.46, 3.56765356005, 1596.1864422846], [0.514, 4.14617297678, 16460.33352952499], [0.51, 2.12338136542, 3335.0895023924], [0.365, 0.84035244694, 3364.4908644476], [0.444, 0.42154996651, 9866.4168806652], [0.38, 2.74315160117, 3344.4937620578], [0.355, 2.20831807719, 5518.7501489918], [0.374, 0.93920520997, 3863.1898447936], [0.38, 0.60825828556, 3980.5097130138], [0.366, 1.45297694305, 1039.0266107904], [0.458, 5.01867719021, 10551.528245194], [0.352, 5.59661824792, 16062.1845261168], [0.361, 5.43698827477, 11236.57229942], [0.323, 3.25474887566, 3116.2676309979], [0.396, 5.43635200834, 16173.3711684044], [0.316, 5.10862851689, 17395.2197347258], [0.325, 4.59103320065, 19800.9459562248], [0.32, 0.1002213259, 1692.1656695024], [0.313, 4.76509182263, 3304.5845600224], [0.329, 3.51515201342, 1903.4368125012], [0.361, 1.4017957282, 8270.2977486834], [0.38, 1.11278812152, 3503.079062832], [0.309, 1.63585786252, 11081.2192102886], [0.304, 6.27804875103, 2391.43681773], [0.336, 2.95777936427, 6680.2445323314], [0.299, 0.48751113813, 3347.6586633978], [0.327, 3.19951479738, 3981.490034082], [0.298, 4.26967988388, 13936.794505134], [0.309, 5.0577507818, 12721.572099417], [0.31, 6.10243075443, 17924.9106998204], [0.29, 4.52880846817, 5724.935697429], [0.279, 4.30091602167, 3607.2194684216], [0.293, 1.90646493379, 6702.000248892], [0.375, 5.37146136739, 3376.6402933772], [0.268, 4.93796347898, 13760.5987102074], [0.269, 5.63342755549, 4032.7700279266], [0.361, 4.70448724123, 9380.9596727172], [0.285, 4.37639190605, 6040.3472460174], [0.305, 3.60878132297, 7255.5696517344], [0.265, 5.82002998533, 1214.7350193206], [0.246, 3.48844723382, 3237.5196524812], [0.339, 6.05128485092, 6660.4494579072], [0.325, 5.12798981834, 11250.7993934216], [0.243, 0.48346700024, 13362.432453147], [0.246, 4.41923388458, 3546.797975137], [0.239, 3.73073204843, 76.2660712756], [0.239, 6.27709788173, 1964.838626854], [0.242, 2.51411096474, 13362.4669604514], [0.238, 4.61745673345, 17277.4069318338], [0.232, 3.13987850882, 20199.094959633], [0.245, 3.88310965561, 4407.1079038898], [0.242, 3.07232693388, 12566.1516999828], [0.277, 3.88618268628, 10596.1820784342], [0.277, 6.1445946998, 19402.7969528166], [0.222, 2.20253799065, 7107.8230442756], [0.218, 1.37621606096, 3415.3940252671], [0.297, 3.78408680173, 2766.267628365], [0.264, 5.35345322905, 6816.289933435], [0.213, 1.10915354432, 19004.6479494084], [0.213, 4.60032427636, 3973.396166013], [0.23, 4.39356021431, 26724.8994135984], [0.202, 0.60981942427, 6677.6344247478], [0.268, 5.05058237041, 9381.9399937854], [0.199, 1.34402137469, 8329.671610597], [0.198, 5.08527311506, 5820.9149246468], [0.201, 0.05002970566, 11780.4903585162], [0.199, 2.66187512344, 6696.4773245846], [0.227, 1.69939961119, 18984.2926300096], [0.217, 4.71565260831, 8671.9698704406], [0.199, 0.66532566162, 15664.03552270859], [0.201, 3.90133282111, 266.6070417218], [0.242, 0.76562027191, 3281.2385647862], [0.254, 6.0771214653, 14054.607308026], [0.193, 6.08798590746, 8982.810669309], [0.202, 1.12506176909, 6684.8152820514], [0.212, 0.41763591084, 5732.0492444298], [0.191, 0.63315794517, 3017.1070100424], [0.184, 5.68898048651, 5642.1982426092], [0.18, 4.60366258431, 10235.1363755374], [0.198, 1.01742381306, 3336.7310913418], [0.207, 0.80702499658, 3877.4169387952], [0.202, 1.61753574776, 11216.284290324], [0.177, 0.20305783491, 22743.4093795164], [0.181, 6.17864681592, 4885.9664096786], [0.228, 0.90779655425, 18454.601664915], [0.165, 3.97299091423, 20.3553193988], [0.206, 3.58770221682, 3205.5473466644], [0.185, 2.7708843606, 220.4126424388], [0.163, 0.00569068383, 1437.1756141986], [0.185, 6.2312887516, 6660.8695340008], [0.164, 4.64548469502, 3253.30422216], [0.21, 4.85590304986, 5618.3198048614], [0.226, 1.76563729092, 5625.3660415594], [0.163, 0.67931390118, 12310.1813236108], [0.211, 1.51278040364, 4039.8835749274], [0.177, 2.14779710666, 3346.1353510072], [0.154, 3.33525296567, 9070.1188738488], [0.178, 1.65162116131, 10713.9948813262], [0.156, 6.12783235584, 103.0927742186], [0.155, 3.51854579269, 7373.3824546264], [0.157, 4.91614155659, 15508.6151232744], [0.191, 1.74459210202, 10022.8176011676], [0.178, 3.53665589741, 533.2140834436], [0.154, 2.64640687885, 3333.5661900018], [0.162, 1.2723539268, 5415.6573747732], [0.144, 1.30886254982, 6460.8122109608], [0.173, 3.76291627342, 3561.0250691386], [0.144, 0.86629692094, 7380.4960016272], [0.15, 0.23529641094, 1228.9621133222], [0.144, 0.12285484149, 647.0108333148], [0.16, 0.24157324936, 11614.4332937322], [0.146, 4.76067886088, 16706.585251848], [0.188, 2.96688973732, 2178.137722292], [0.175, 1.66915420767, 22345.2603761082], [0.141, 1.75571255457, 3657.0042963564], [0.145, 0.71777671857, 6784.3176276182], [0.138, 2.74151377335, 6546.1597733642], [0.139, 4.12056692213, 3351.2490920496], [0.152, 4.88528890547, 110.2063212194], [0.134, 0.86682710306, 3603.6963500726], [0.17, 5.54401695608, 3265.8308281325], [0.165, 2.74557093704, 4672.6673142406], [0.129, 0.94520493983, 419.4846438752], [0.167, 3.43007767272, 1581.959348283], [0.136, 3.68877945956, 13171.0014406876], [0.16, 0.68321924763, 6475.0393049624], [0.129, 4.46548223743, 9499.2598620056], [0.144, 1.88085102951, 9468.267877257], [0.149, 3.49118810274, 14158.7477136156], [0.138, 1.92770959208, 15.252471185], [0.172, 0.23189971635, 12323.4230960088], [0.121, 1.75813513715, 4379.6390374902], [0.12, 6.04299490267, 6606.4432548323], [0.134, 1.98845453946, 8965.9784682592], [0.118, 0.22641710036, 11766.2632645146], [0.122, 2.92219895926, 21947.1113727], [0.147, 5.86576524955, 3169.9395560806], [0.121, 5.75886629308, 19513.9835951042], [0.119, 3.93419985914, 4936.7988689844], [0.123, 4.65853055862, 13149.1506113612], [0.151, 4.38870879458, 13362.517017102], [0.134, 4.49208622602, 2480.302497947], [0.115, 5.78268772131, 12722.5524204852], [0.126, 4.43971496486, 3568.0885594888], [0.114, 0.36704570747, 3384.3313390048], [0.117, 0.67607782416, 13207.029307365], [0.124, 5.80386208894, 10721.108428327], [0.115, 0.23672592056, 224.3447957019], [0.11, 0.26402316132, 3077.528503327], [0.112, 3.50979462224, 1375.7737998458], [0.108, 5.30086016687, 10264.5658840734], [0.146, 2.36972522432, 4989.0591838972], [0.143, 0.92798026058, 5401.4302807716], [0.111, 2.47771615302, 18606.4989460002], [0.124, 1.13870545502, 2807.3983432562], [0.105, 5.87122793977, 4193.8088084518], [0.115, 3.01754571849, 1118.7557921028], [0.107, 2.03274473347, 25685.872802808], [0.107, 4.82345245872, 13362.3823964964], [0.105, 1.21018340855, 8584.6616659008], [0.104, 5.07527834174, 23141.5583829246], [0.1, 4.08698733114, 3511.285297319], [0.105, 1.1383323428, 1162.4747044078], [0.102, 2.55243872323, 664.75604513], [0.138, 3.04361079523, 3329.97576135], [0.13, 3.04769575195, 3341.0325027934], [0.117, 2.97177407391, 9602.3526362242], [0.098, 4.54292546461, 3362.4632560262], [0.097, 2.21618504638, 10042.6126755918], [0.1, 5.4554164858, 3024.2205570432], [0.097, 1.55448890675, 8799.988713778], [0.107, 5.1500176439, 956.2891559706], [0.1, 1.80839732601, 6665.9723822146], [0.104, 0.04641040148, 10001.061884607], [0.097, 0.30502193916, 10014.7237330986], [0.125, 3.71144870102, 3873.8265101434], [0.102, 5.38933965862, 13892.1406718938], [0.108, 4.3343889579, 3490.1756238344], [0.095, 2.32591017464, 10028.9508271002], [0.113, 1.7432394516, 11610.9101753832], [0.119, 4.94578003013, 3443.7052009184], [0.096, 1.63239207663, 11925.2740926006], [0.124, 0.82697196609, 9638.9407478762], [0.101, 1.51065535085, 1062.9050485382], [0.107, 4.3665371608, 6531.661656265], [0.09, 2.0153477417, 22324.9050567094], [0.094, 4.85202869277, 14047.4937610252], [0.089, 1.23714034226, 20809.4676246452], [0.095, 5.69916785631, 6717.252720077], [0.095, 2.15038299943, 8013.2797409404], [0.111, 3.91313035726, 3311.18291816379], [0.089, 1.37925538521, 74.7815985673], [0.094, 3.24872875047, 6657.3464156518], [0.089, 0.70324117212, 23.8784377478], [0.087, 0.40376031248, 2221.856634597], [0.092, 3.3316578619, 2540.7913015344], [0.12, 3.09344469205, 6685.1061887576], [0.087, 4.9269430907, 1505.28780909299], [0.091, 1.66121998822, 24150.080051345], [0.09, 5.47687082598, 16699.53901514999], [0.119, 2.53709230647, 3312.163239232], [0.118, 5.56523997231, 2814.4445799542], [0.093, 1.61394240489, 3341.0423098265], [0.084, 1.19439840758, 3450.8187479192], [0.085, 4.95060410388, 7314.0085927128], [0.084, 3.92244493446, 170.6728706192], [0.096, 5.49205832489, 3427.9206312396], [0.106, 1.61703818023, 3774.3241645766], [0.101, 6.18535119914, 5511.636601991], [0.081, 3.16562241132, 52175.8062831484], [0.093, 5.15512549422, 3451.7990689874], [0.108, 0.33314004399, 6709.6740408674], [0.078, 2.38080208142, 13553.8979729108], [0.085, 1.1858843064, 6705.1032911474], [0.098, 3.24856024758, 25287.7237993998], [0.08, 2.54327778068, 6675.7019290922], [0.078, 4.70533248161, 24889.5747959916], [0.095, 1.59916172961, 4271.9755135516], [0.076, 0.90799171644, 2675.8563815698], [0.091, 3.80728044706, 2125.8774073792], [0.093, 5.59480359619, 3340.1825435731], [0.095, 2.06299921822, 6518.7582172674], [0.1, 6.02550501045, 3313.210870603], [0.075, 6.1609589009, 3370.0419352358], [0.077, 4.92444879515, 3229.4257844122], [0.09, 4.55063359845, 6701.5801727984], [0.078, 2.01202524407, 14421.8316369884], [0.079, 5.92142974185, 6155.057006654], [0.101, 2.07923317336, 15265.8865193004], [0.082, 6.04078010866, 3760.097070575], [0.073, 3.01106366205, 206.1855484372], [0.078, 1.71095661489, 3399.9862886134], [0.073, 3.32824316241, 9588.1255422226], [0.076, 1.74030672711, 6756.0064519669], [0.073, 1.44980946324, 5408.5438277724], [0.077, 5.64501410813, 3209.0704650134], [0.08, 5.70272305344, 10156.9023601348], [0.075, 3.83222347813, 39048.3225096072], [0.072, 0.82629826575, 7366.2689076256], [0.083, 4.71804515025, 14061.7208550268], [0.072, 4.35767091893, 21548.9623692918], [0.086, 1.50107043029, 5989.0672521728], [0.073, 3.77377582806, 28628.3362260996], [0.082, 0.7874018109, 16276.463942623], [0.07, 2.69225539304, 3296.8935143948], [0.069, 1.01941228196, 12295.9542296092], [0.081, 4.64227979982, 6947.8318951214], [0.094, 0.74502278458, 5244.049239201], [0.067, 4.4732887165, 20206.141196331], [0.091, 2.95968633697, 3326.3853326982], [0.076, 2.86128350856, 8542.970706035], [0.065, 1.31079130285, 23546.7536230308], [0.065, 3.31422850411, 6414.6178116778], [0.064, 3.98415414793, 3368.0139827966], [0.065, 4.15810281695, 3340.19235060619], [0.071, 3.82044323862, 6578.132079181], [0.08, 1.02128994578, 7321.1221397136], [0.064, 1.07965886113, 6944.3087767724], [0.064, 1.20215520018, 38.1330356378], [0.07, 5.11166911478, 9485.032768004], [0.067, 2.22216014849, 4845.9002357928], [0.083, 1.86067842148, 931.3630868518], [0.063, 0.45029141698, 6418.1409300268], [0.062, 5.68207205878, 4459.3682188026], [0.062, 0.62454636835, 6688.2710900976], [0.076, 0.41820625869, 5032.7780962022], [0.062, 5.72811519809, 2008.557539159], [0.06, 1.98790201827, 12199.9750023914], [0.078, 2.18035217615, 3232.9489027612], [0.06, 1.08971396071, 10124.930054318], [0.072, 4.08555524166, 3416.8784979754], [0.061, 2.49066420507, 4005.3684718298], [0.059, 2.9375514437, 9886.772200064], [0.069, 1.02371083242, 6621.850991486], [0.061, 4.57446273568, 2277.7073781616], [0.059, 4.7474548172, 16865.5287696312], [0.069, 3.6257698172, 15906.7641266826], [0.058, 4.15993379336, 1854.6323056346], [0.06, 4.92798256747, 3391.89276456221], [0.07, 4.51699340219, 16304.9131300908], [0.056, 3.5935463928, 7322.1024607818], [0.068, 0.8121709197, 16703.0448798468], [0.056, 3.19997567622, 4140.4335518652], [0.058, 1.73479637157, 2409.249339848], [0.054, 5.5431093749, 2604.735913168], [0.059, 2.0292225638, 45486.81875903279], [0.063, 5.29505507594, 17101.2111369072], [0.054, 4.8823066075, 48300.16010269], [0.071, 4.843810412, 3289.33208883739], [0.054, 1.76917054114, 3510.1926098328], [0.063, 2.80175814276, 16894.5103996106], [0.058, 0.91631357427, 10018.2468514476], [0.054, 1.06826755543, 8948.2282559086], [0.072, 1.36121375974, 10025.4277087512], [0.061, 0.92427393171, 17468.8551979454], [0.068, 2.84271358352, 16703.07938715119], [0.053, 3.42679182927, 14867.73751589219], [0.054, 0.41070672545, 18451.07854656599], [0.06, 5.86922287544, 7447.017917846], [0.051, 1.64684042106, 3472.1543883862], [0.057, 6.13250399703, 17085.9586657222], [0.053, 4.16969434701, 6106.8800550648], [0.05, 3.17196717347, 2111.6503133776], [0.055, 5.7260754556, 10706.8813343254], [0.062, 0.57333106196, 3171.0322435668], [0.053, 1.29007833025, 6652.7756659318], [0.05, 2.96441858632, 10037.0897512844], [0.065, 5.11165617529, 3113.1362939108], [0.053, 4.87447079015, 1485.9801210652], [0.05, 2.52848298042, 10448.4354709754], [0.059, 1.69623653028, 4025.6564809258], [0.047, 5.15559748285, 12012.5822971404], [0.049, 1.19473362353, 3448.2759506384], [0.063, 1.01191427607, 11769.8536931664], [0.064, 3.86219786087, 18208.349942592], [0.059, 2.96261275062, 14071.43950907579], [0.049, 1.41657179779, 2938.9403049426], [0.048, 2.95878690387, 11527.1250891924], [0.052, 0.01971915447, 8226.5788363784], [0.045, 5.07966377852, 3318.7615973734], [0.043, 1.23879381294, 7218.029365495], [0.058, 5.58121433163, 6643.0918177618], [0.048, 5.02446939402, 6645.1969867222], [0.043, 0.69492704598, 20995.3929664494], [0.044, 4.02272101657, 9389.0535407862], [0.055, 4.38138154697, 1478.8665740644], [0.051, 4.24292455428, 792.7748884674], [0.042, 2.74826708762, 14577.1847261198], [0.044, 4.18397905503, 8535.8571590342], [0.047, 1.33588473182, 632.7837393132], [0.042, 5.05676915852, 3397.5108016354], [0.042, 0.28204510006, 10001.48196070061], [0.042, 0.75310918544, 6357.7194367422], [0.042, 4.94532732982, 18052.9295431578], [0.052, 4.09912687749, 5835.1420186484], [0.054, 2.46533302314, 8186.5126624926], [0.043, 4.77713978044, 32124.36905223359], [0.053, 6.08293348275, 3377.217792004], [0.041, 2.51168269556, 4186.695261451], [0.041, 1.24482327948, 3212.5935833624], [0.041, 5.42003026893, 685.044054226], [0.041, 5.04768364997, 6571.0185321802], [0.042, 2.08904552145, 13363.4300278674], [0.048, 4.82888746454, 1835.3246176068], [0.043, 4.17203713456, 43340.6533425576], [0.046, 0.81640935106, 45884.967762441], [0.042, 2.26773068307, 12729.665967486], [0.039, 5.85791936573, 846.0828347512], [0.043, 2.90976420757, 6872.6731195112], [0.045, 1.98725045807, 1861.7458526354], [0.045, 0.50053853542, 14128.2427712456], [0.046, 2.86512929328, 38650.173506199], [0.038, 3.65846461938, 29698.2875113358], [0.039, 4.57679716458, 6901.6374958384], [0.039, 3.85504465583, 9945.5712088238], [0.04, 0.06127203284, 9947.0556815321], [0.043, 5.28854105201, 3274.1250177854], [0.047, 6.25707790441, 24606.13555322], [0.037, 5.02115296017, 11128.9760857842], [0.039, 1.7142191987, 7696.8878712838], [0.037, 4.3465298512, 3283.7140517642], [0.037, 0.05572748092, 21150.8133658836], [0.042, 4.9787204146, 13575.7488022372], [0.05, 4.24170332288, 7747.7203305896], [0.037, 4.07496312186, 8646.0634802536], [0.038, 0.44080908793, 24491.4257925834], [0.036, 1.73681874925, 3468.6312700372], [0.041, 5.69294900686, 26087.9031415742], [0.036, 1.80256389689, 8756.269801473], [0.036, 3.37374689465, 48429.2821823244], [0.035, 0.10555289345, 8742.0427074714], [0.041, 4.26832466355, 21000.9158907568], [0.038, 0.73199792046, 26084.0218062162]], [[44242.247, 0.47930603943, 3340.6124266998], [8138.042, 0.86998398093, 6681.2248533996], [1274.915, 1.22594050809, 10021.8372800994], [187.387, 1.57298991982, 13362.4497067992], [40.744, 1.9708017506, 3344.1355450488], [52.396, 3.14159265359, 0.0], [26.616, 1.91665615762, 16703.062133499], [17.825, 4.43499505333, 2281.2304965106], [11.713, 4.5251045373, 3185.1920272656], [10.209, 5.39143469548, 1059.3819301892], [9.95, 0.41870577185, 796.2980068164], [9.237, 4.53579272961, 2146.1654164752], [7.299, 3.14218509183, 2544.3144198834], [7.217, 2.29300859074, 6684.7479717486], [6.808, 5.26702580055, 155.4203994342], [6.528, 2.30781369329, 3738.761430108], [7.785, 5.93369079547, 1748.016413067], [5.84, 1.05191350362, 1349.8674096588], [6.749, 5.30194395749, 1194.4470102246], [4.695, 0.76880586144, 3097.88382272579], [5.391, 1.00223256041, 3149.1641605882], [4.406, 2.45556303355, 951.7184062506], [4.286, 3.89643520638, 1592.5960136328], [3.514, 1.85168391963, 398.1490034082], [3.699, 2.26043707772, 20043.6745601988], [3.377, 3.81683532672, 1751.539531416], [4.585, 0.8078744174, 4136.9104335162], [3.201, 2.11657635165, 5614.7293762096], [3.622, 1.32395191387, 3333.498879699], [2.916, 1.19337460559, 529.6909650946], [2.979, 2.86481008776, 6151.533888305], [3.057, 4.55276793064, 5628.9564702112], [2.906, 1.20295377623, 3894.1818295422], [3.85, 3.86055626689, 553.5694028424], [2.82, 2.48683324916, 1990.745017041], [2.657, 6.07411629964, 4292.3308329504], [2.7, 2.9213977335, 3496.032826134], [2.395, 5.94175921617, 2787.0430238574], [2.264, 2.56219866409, 191.4482661116], [2.167, 5.36812435483, 8962.4553499102], [2.149, 2.74950075397, 242.728603974], [2.217, 1.85265984462, 3337.0893083508], [1.996, 5.76429928131, 3341.592747768], [1.999, 3.82349238481, 2914.0142358238], [1.835, 5.68592723044, 1589.0728952838], [1.812, 3.32042068028, 5088.6288397668], [2.413, 4.68291336853, 4690.4798363586], [1.97, 4.17480610904, 3340.5951730476], [1.97, 6.20643855008, 3340.629680352], [1.627, 5.67733051452, 4535.0594369244], [2.16, 1.07452599834, 2388.8940204492], [1.964, 3.10805316088, 3583.3410306738], [1.985, 5.7585035184, 4399.994356889], [1.507, 4.95936409838, 382.8965322232], [1.278, 4.82232889938, 2957.7158944766], [1.475, 2.22707926559, 3723.508958923], [1.196, 3.2672445892, 9492.1463150048], [1.349, 4.87573224485, 6525.8044539654], [1.433, 2.69734916443, 7079.3738568078], [1.224, 2.62012336714, 10025.3603984484], [1.404, 5.19056026479, 2700.7151403858], [1.202, 0.93472783088, 2810.9214616052], [0.869, 5.81340811635, 12303.06777661], [0.867, 2.20046640409, 2699.7348193176], [0.83, 2.01484544773, 5092.1519581158], [0.855, 5.96220147975, 426.598190876], [0.848, 2.26407047301, 6283.0758499914], [0.917, 1.40295785881, 6489.776587288], [0.833, 1.17384197174, 7477.522860216], [1.041, 6.27171470048, 3347.7259737006], [0.965, 3.39855816541, 5621.8429232104], [0.722, 4.26304776331, 4933.2084403326], [0.706, 2.34131594714, 7.1135470008], [0.768, 2.06208352904, 5486.777843175], [0.953, 2.11123497948, 3870.3033917944], [0.844, 2.2393196324, 3553.9115221378], [0.646, 2.24669034469, 3340.545116397], [0.653, 3.99043329363, 6677.7017350506], [0.714, 0.29739480601, 6681.2421070518], [0.828, 0.2286361767, 3532.0606928114], [0.612, 1.55388376751, 7234.794256242], [0.714, 4.54969883976, 6681.2075997474], [0.586, 3.30118433303, 1221.8485663214], [0.646, 1.83853693231, 3340.6797370026], [0.56, 5.05848353328, 8031.0922630584], [0.651, 0.1589747216, 7632.9432596502], [0.488, 3.08086378649, 6836.6452528338], [0.534, 4.25727954634, 3339.6321056316], [0.504, 2.59990772815, 23384.2869868986], [0.372, 6.27186983164, 2487.4160449478], [0.343, 4.71059403854, 639.897286314], [0.449, 1.34123846614, 640.8776073822], [0.342, 5.96338023755, 4929.6853219836], [0.329, 2.6595525877, 9623.6882766912], [0.352, 6.09567212646, 7740.6067835888], [0.326, 6.05498346093, 2118.7638603784], [0.403, 4.96465831103, 8969.568896911], [0.402, 2.84624835384, 5331.3574437408], [0.319, 1.44545457475, 5729.506447149], [0.303, 0.01918776551, 6127.6554505572], [0.297, 5.74070606294, 6041.3275670856], [0.297, 3.06763224975, 10419.9862835076], [0.282, 6.04069352017, 7875.6718636242], [0.278, 5.11654962157, 11773.3768115154], [0.259, 2.89786343627, 7210.9158184942], [0.273, 3.83181794308, 8429.2412664666], [0.256, 1.08862226474, 2288.3440435114], [0.288, 6.1357268768, 6682.2051744678], [0.302, 3.61490647715, 12832.7587417046], [0.235, 2.21413387615, 6681.2921637024], [0.317, 3.60634897209, 2301.58581590939], [0.289, 5.08223311018, 2274.1169495098], [0.254, 0.36603904729, 3767.2106175758], [0.235, 2.6243448155, 6681.1575430968], [0.226, 3.45305949713, 6923.9534573736], [0.205, 3.88943452829, 10018.3141617504], [0.206, 3.44453113177, 10177.2576795336], [0.21, 0.57926734389, 10973.55568635], [0.194, 1.57870686859, 10818.1352869158], [0.19, 2.42312911773, 8955.3418029094], [0.194, 2.45887376159, 7064.1213856228], [0.193, 0.58793888724, 5828.0284716476], [0.183, 1.68247271963, 213.299095438], [0.236, 1.98863774162, 10575.4066829418], [0.245, 2.17761779228, 4562.4609930212], [0.177, 0.66379705293, 10021.8545337516], [0.176, 4.91607557961, 10021.8200264472], [0.217, 2.93968443649, 13365.9728251482], [0.167, 4.74764434327, 3914.9572250346], [0.213, 0.15734917857, 2942.4634232916], [0.155, 1.78776991092, 9830.3890139878], [0.18, 5.21088564787, 9866.4168806652], [0.161, 5.1768386138, 6298.3283211764], [0.159, 2.6898068485, 6894.5239488376], [0.149, 6.26524493469, 1039.0266107904], [0.147, 0.36939961702, 6688.3384004004], [0.151, 1.2227289229, 574.3447983348], [0.137, 2.09492296067, 1066.49547719], [0.165, 6.15952050903, 15643.6802033098], [0.163, 4.66507592292, 8273.8208670324], [0.124, 0.67855210339, 6438.4962494256], [0.128, 1.69206367749, 3981.490034082], [0.116, 2.78191248964, 3360.96774609859], [0.128, 0.84461423001, 3355.8648978848], [0.124, 1.63253732557, 6674.1113063988], [0.12, 0.31762150109, 3127.3133312618], [0.129, 2.26678583645, 6467.9257579616], [0.104, 0.07355376701, 3325.3599555148], [0.13, 4.4177719083, 3320.257107301], [0.095, 1.31957248342, 7903.073419721], [0.114, 0.65681602343, 3178.1457905676], [0.092, 4.98392367746, 9779.1086761254], [0.101, 4.10670787374, 536.8045120954], [0.106, 5.41622566807, 15113.9892382152], [0.096, 3.52561014696, 3475.6775067352], [0.101, 2.91169549546, 692.1576012268], [0.093, 3.21464368291, 8671.9698704406], [0.087, 5.24375873119, 13119.72110282519], [0.106, 3.76804681559, 13517.8701062334], [0.089, 5.73652101746, 11371.7046897582], [0.104, 5.90078964406, 8432.7643848156], [0.099, 3.61425346453, 853.196381752], [0.078, 0.95802015551, 3191.0492295652], [0.089, 2.50872076312, 1052.2683831884], [0.078, 2.98115354616, 26724.8994135984], [0.079, 5.9151499393, 6040.3472460174], [0.09, 3.00950470302, 12964.300703391], [0.075, 1.31512531841, 17924.9106998204], [0.073, 5.01153593776, 1903.4368125012], [0.075, 2.57969241717, 10021.9045904022], [0.073, 4.09954161905, 3319.8370312074], [0.07, 5.37678396256, 12310.1813236108], [0.071, 0.9842299824, 13362.4669604514], [0.068, 4.69140248943, 522.5774180938], [0.068, 3.24217441291, 16706.585251848], [0.069, 2.53964193741, 5884.9268465832], [0.07, 2.38237948321, 13916.0191096416], [0.066, 3.48443797546, 13760.5987102074], [0.068, 5.27435069681, 3980.5097130138], [0.076, 0.12288413214, 11216.284290324], [0.073, 3.94785759909, 16173.3711684044], [0.062, 0.15518975647, 11081.2192102886], [0.074, 2.99926779692, 10021.7699697966], [0.08, 6.18812323827, 9380.9596727172], [0.064, 3.99294283669, 13358.9265884502], [0.061, 2.56817782412, 149.5631971346], [0.059, 3.80850908229, 10264.5658840734], [0.06, 4.79879360562, 1437.1756141986], [0.068, 2.07515658228, 1596.1864422846], [0.06, 2.26503107747, 28628.3362260996], [0.058, 6.10782258899, 5459.3762870782], [0.063, 0.24407077742, 18984.2926300096], [0.058, 5.22738430747, 13362.432453147], [0.056, 1.88708253797, 9070.1188738488], [0.055, 5.72587156499, 433.7117378768], [0.056, 1.18238857561, 6696.4773245846], [0.062, 3.98214740104, 3427.9206312396], [0.056, 5.37129176649, 5099.2655051166], [0.057, 0.86204712032, 5642.1982426092], [0.055, 1.31787605222, 8982.810669309], [0.056, 5.49808236951, 24093.2767891752], [0.054, 3.77562154746, 10213.285546211], [0.054, 2.36294643031, 33716.9650658664], [0.063, 3.53402427573, 3205.5473466644], [0.066, 6.25810929981, 8270.2977486834], [0.067, 0.5859281308, 3335.0895023924], [0.055, 4.74995645767, 6660.8695340008], [0.053, 0.31930032532, 12721.572099417], [0.069, 2.42905593362, 6158.6474353058], [0.055, 5.03192783121, 7255.5696517344], [0.051, 5.45351947711, 13207.029307365], [0.05, 0.23368526162, 4379.6390374902], [0.053, 2.1282634402, 13171.0014406876], [0.049, 2.35512151368, 4032.7700279266], [0.049, 2.8177305089, 9808.5381846614], [0.067, 2.26295786556, 2766.267628365], [0.049, 0.72597680486, 10028.9508271002], [0.05, 6.1011945035, 3253.30422216], [0.059, 0.27861398526, 9225.539273283], [0.053, 1.27330874549, 3344.4937620578], [0.049, 2.91499389416, 10404.7338123226], [0.047, 0.48598973231, 17395.2197347258], [0.049, 3.40240207389, 3304.5845600224], [0.06, 3.40554368741, 10551.528245194], [0.05, 1.83471955355, 30376.3526391666], [0.046, 3.04980996832, 6144.4203413042], [0.049, 0.33200904496, 6702.000248892], [0.053, 0.35820094732, 9468.267877257], [0.05, 0.15378507249, 2648.454825473], [0.044, 0.79762157297, 7107.8230442756], [0.05, 2.41332661328, 4407.1079038898], [0.054, 0.21682940856, 10022.8176011676], [0.044, 5.78502737591, 3364.4908644476], [0.044, 0.75508636274, 16062.1845261168], [0.043, 3.10581037685, 10235.1363755374], [0.044, 5.21252098878, 7373.3824546264], [0.058, 4.51680312444, 6660.4494579072], [0.043, 0.15523355839, 1505.28780909299], [0.055, 5.93371026829, 8439.8779318164], [0.042, 5.40417232308, 3344.2028553516], [0.056, 3.87534582911, 6816.289933435], [0.049, 5.57153056447, 17468.8551979454], [0.046, 3.07783299049, 12722.5524204852], [0.045, 1.49303542795, 6247.5131155228], [0.055, 6.26098836404, 3361.3878221922], [0.042, 4.74455545491, 3369.0616141676], [0.04, 1.58676666294, 2818.035008606], [0.043, 4.97295184315, 3337.021998048], [0.055, 3.8021563852, 3376.6402933772], [0.047, 1.97367775421, 1581.959348283], [0.045, 2.03598705348, 5244.049239201], [0.049, 4.43182954044, 9595.2390892234], [0.043, 0.38914582094, 6665.9723822146], [0.04, 1.06953099245, 23695.127785767], [0.038, 0.59996214864, 10713.9948813262], [0.039, 3.79055778605, 33318.8160624582], [0.041, 5.54542347834, 3863.1898447936], [0.037, 5.27208151144, 20752.6643624754], [0.039, 3.15412760412, 14469.588512484], [0.041, 0.55705920174, 3346.1353510072], [0.048, 1.42210748234, 3316.733988952], [0.049, 5.44942247991, 9638.9407478762], [0.038, 2.11846271943, 15664.03552270859], [0.035, 5.30782933148, 6677.6344247478], [0.036, 2.68151450016, 8584.6616659008], [0.046, 3.09450395763, 6701.5801727984], [0.038, 1.81885395671, 14158.7477136156], [0.037, 5.80483071722, 6684.8152820514], [0.047, 2.60317702777, 162.4666361322], [0.038, 2.22559377525, 3503.079062832], [0.035, 0.84358942718, 6518.7582172674], [0.033, 4.92302322062, 23141.5583829246], [0.043, 0.95148893985, 34115.1140692746], [0.046, 4.99457196207, 9381.9399937854], [0.043, 1.73832102244, 12323.4230960088], [0.032, 2.92741580696, 9499.2598620056], [0.043, 1.50296327105, 27035.7402124668], [0.033, 5.41731109688, 20597.2439630412], [0.032, 4.13881058425, 31570.7996493912], [0.04, 5.8446306918, 16460.33352952499], [0.035, 5.50083743557, 8425.6508378148], [0.038, 5.91991985929, 3336.7310913418], [0.03, 5.09155042811, 5085.038411115], [0.031, 4.27211180916, 36659.428489158], [0.03, 4.87389489592, 1692.1656695024], [0.03, 3.75494646937, 4845.9002357928], [0.034, 3.71030605417, 8827.3902698748], [0.03, 0.0159945685, 11243.6858464208], [0.029, 2.66198696023, 12295.9542296092], [0.028, 3.12114207206, 11925.2740926006], [0.036, 1.16568750904, 18052.9295431578], [0.032, 1.72704226918, 12566.1516999828], [0.028, 2.80254457895, 3607.2194684216], [0.032, 4.04390839531, 6680.2445323314], [0.027, 2.53565904393, 19004.6479494084], [0.036, 3.33518515689, 29978.2036357584], [0.028, 0.58104982217, 20354.5153590672], [0.029, 5.85207825749, 31172.650645983], [0.026, 2.22598820379, 3.523118349], [0.033, 5.15903548241, 10596.1820784342], [0.028, 1.89792803028, 3333.5661900018], [0.027, 2.25129832716, 76.2660712756], [0.026, 4.32703172263, 17085.9586657222], [0.026, 5.12847780702, 11766.2632645146], [0.028, 0.80926596905, 20735.83216142559], [0.026, 5.06814803493, 17412.0519357756], [0.024, 4.473991556, 3134.4268782626], [0.024, 4.35557152695, 14584.2982731206], [0.027, 4.98717355201, 3877.4169387952], [0.025, 5.63712701265, 14054.607308026], [0.024, 4.12573657295, 4193.8088084518], [0.025, 1.40880282063, 8186.5126624926], [0.024, 4.96463811748, 26087.9031415742]], [[1113.107, 5.14987350142, 3340.6124266998], [424.446, 5.61343766478, 6681.2248533996], [100.044, 5.99726827028, 10021.8372800994], [19.606, 0.07633062094, 13362.4497067992], [3.477, 0.42951907576, 16703.062133499], [4.693, 3.14159265359, 0.0], [2.869, 0.44711842697, 3344.1355450488], [2.428, 3.02115527957, 3185.1920272656], [0.688, 0.80693359444, 6684.7479717486], [0.54, 3.86836515672, 1059.3819301892], [0.577, 0.7785327512, 20043.6745601988], [0.468, 4.52450786544, 3496.032826134], [0.487, 1.60862391345, 3583.3410306738], [0.362, 4.42397903418, 2787.0430238574], [0.397, 5.71967986581, 3149.1641605882], [0.299, 0.75640033535, 3738.761430108], [0.35, 5.55691984889, 4136.9104335162], [0.314, 3.37632898783, 6525.8044539654], [0.233, 2.13965262306, 3097.88382272579], [0.212, 4.20487494011, 3341.592747768], [0.214, 0.56779556947, 155.4203994342], [0.201, 2.35284464564, 1592.5960136328], [0.204, 0.96723315302, 1990.745017041], [0.23, 5.82959057146, 2388.8940204492], [0.16, 4.14974194757, 4535.0594369244], [0.156, 5.13345210285, 796.2980068164], [0.146, 3.29541339704, 2957.7158944766], [0.156, 1.13805508457, 10025.3603984484], [0.159, 3.76174286126, 1194.4470102246], [0.136, 5.58293924642, 3894.1818295422], [0.145, 3.02112488974, 3337.0893083508], [0.146, 4.25359617225, 4399.994356889], [0.1, 4.26740096115, 1589.0728952838], [0.091, 6.12108227231, 6489.776587288], [0.101, 1.17242141914, 7079.3738568078], [0.098, 1.12613498307, 23384.2869868986], [0.075, 6.02182689533, 529.6909650946], [0.078, 5.93418069229, 7477.522860216], [0.068, 1.70775041911, 9492.1463150048], [0.07, 3.67253155189, 8962.4553499102], [0.062, 4.14954627063, 4292.3308329504], [0.067, 0.1509224655, 3870.3033917944], [0.066, 1.12578506413, 6151.533888305], [0.062, 1.93984222091, 6923.9534573736], [0.06, 4.30641513096, 12303.06777661], [0.074, 4.72156358149, 3347.7259737006], [0.055, 2.75742802464, 4933.2084403326], [0.053, 4.77894621871, 6127.6554505572], [0.05, 2.57807944338, 3340.5951730476], [0.048, 3.72532068729, 9866.4168806652], [0.042, 6.15391373101, 7234.794256242], [0.043, 3.43955584179, 5486.777843175], [0.05, 4.60885064189, 3340.629680352], [0.044, 4.47943289816, 426.598190876], [0.045, 6.244852075, 2274.1169495098], [0.04, 0.73805316471, 7.1135470008], [0.038, 1.06497784748, 9623.6882766912], [0.041, 4.60954640493, 6682.2051744678], [0.038, 4.60963924082, 7740.6067835888], [0.036, 3.15129246169, 639.897286314], [0.037, 6.14629970622, 5729.506447149], [0.04, 1.4739554485, 13365.9728251482], [0.035, 2.60772245492, 4690.4798363586], [0.035, 2.450779319, 2288.3440435114], [0.034, 4.50544497582, 7875.6718636242], [0.042, 2.11383330882, 12832.7587417046], [0.033, 3.97655860802, 191.4482661116], [0.032, 4.06047154083, 3532.0606928114], [0.034, 5.06671994554, 6681.2421070518], [0.042, 4.67024017441, 15643.6802033098], [0.036, 0.29140871479, 3723.508958923], [0.033, 4.52588149629, 4929.6853219836], [0.034, 2.7449907289, 6677.7017350506], [0.03, 1.57743012295, 10419.9862835076], [0.04, 1.31713176335, 5331.3574437408], [0.034, 3.03490000148, 6681.2075997474], [0.031, 1.25306164576, 242.728603974], [0.029, 5.44118048011, 10021.8545337516], [0.029, 3.41037097794, 10021.8200264472], [0.028, 4.81855060968, 6836.6452528338], [0.028, 0.72745302325, 6283.0758499914], [0.03, 3.06267495632, 2281.2304965106], [0.027, 0.62535799761, 6681.2921637024], [0.03, 3.56389476096, 8969.568896911], [0.032, 5.31078691958, 553.5694028424], [0.033, 2.00753799963, 5884.9268465832], [0.027, 1.18001479303, 8955.3418029094], [0.025, 2.94122791628, 2544.3144198834], [0.025, 0.17808889827, 9830.3890139878], [0.031, 5.73384204593, 3339.6321056316], [0.028, 3.70436008855, 6298.3283211764], [0.024, 0.07739730466, 10818.1352869158], [0.027, 1.03401737006, 6681.1575430968], [0.024, 0.09987383242, 382.8965322232], [0.027, 0.60053652251, 3553.9115221378], [0.027, 4.97107900859, 3767.2106175758], [0.024, 3.36621347824, 8031.0922630584], [0.026, 4.80509833364, 7632.9432596502], [0.022, 1.43966107077, 26724.8994135984], [0.02, 0.36901153144, 398.1490034082], [0.019, 1.00325306041, 7064.1213856228], [0.02, 0.19821371186, 6674.1113063988], [0.018, 1.07169297658, 7210.9158184942], [0.021, 2.6951214034, 10018.3141617504], [0.023, 3.25670295081, 5621.8429232104], [0.018, 0.24542781929, 3981.490034082], [0.018, 5.14428605713, 6688.3384004004], [0.02, 0.97539014916, 6894.5239488376], [0.024, 4.42156401638, 1748.016413067], [0.016, 0.6538950344, 3340.545116397], [0.016, 5.28427106012, 3333.498879699]], [[19.552, 3.58211650473, 3340.6124266998], [16.323, 4.05116076923, 6681.2248533996], [5.848, 4.46383962094, 10021.8372800994], [1.532, 4.84374321619, 13362.4497067992], [0.375, 1.50962233608, 3185.1920272656], [0.339, 5.20684967613, 16703.062133499], [0.151, 5.16472931648, 3344.1355450488], [0.125, 2.19233532803, 3496.032826134], [0.148, 0.0, 0.0], [0.087, 0.10275067375, 3583.3410306738], [0.07, 5.55303619365, 20043.6745601988], [0.048, 2.91797786512, 2787.0430238574], [0.049, 5.5703851483, 6684.7479717486], [0.057, 1.86867280743, 6525.8044539654], [0.034, 3.63370917313, 3097.88382272579], [0.021, 2.30677637991, 1059.3819301892], [0.021, 4.03682122005, 4136.9104335162], [0.018, 4.1743875589, 3149.1641605882], [0.013, 1.97805475719, 155.4203994342], [0.017, 5.9485641469, 10025.3603984484], [0.012, 0.51097435253, 6923.9534573736], [0.012, 3.27945299261, 6127.6554505572], [0.013, 2.22938285522, 9866.4168806652], [0.016, 2.64206771227, 4399.994356889], [0.013, 2.75813969974, 6836.6452528338], [0.013, 4.51988349676, 6489.776587288], [0.014, 0.76591550754, 3894.1818295422], [0.011, 5.47381242145, 3738.761430108]], [[0.476, 2.47617204701, 6681.2248533996], [0.268, 2.91510547706, 10021.8372800994], [0.115, 1.76888962311, 3340.6124266998], [0.096, 3.31378377179, 13362.4497067992], [0.048, 6.27457828287, 3185.1920272656], [0.027, 3.69380877066, 16703.062133499], [0.013, 3.72005807206, 3496.032826134], [0.012, 4.88179002689, 3583.3410306738], [0.012, 3.14159265359, 0.0]]]

This table contains Mars’ periodic terms (all of them) from the planetary theory VSOP87 for the radius vector at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 425-426.

Mercury

Class to model Mercury planet.

class pymeeus.Mercury.Mercury[source]

Class Mercury models that planet.

__weakref__

list of weak references to the object (if defined)

static apparent_heliocentric_position(epoch)[source]

This method computes the apparent heliocentric position of planet Mercury for a given epoch, using the VSOP87 theory.

Parameters:epoch (Epoch) – Epoch to compute Mercury position, as an Epoch object
Returns:A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order
Return type:tuple
Raises:TypeError if input values are of wrong type.
static eastern_elongation(epoch)[source]

This method computes the time of the eastern elongation closest to the given epoch, as well as the corresponding maximum elongation angle.

Parameters:epoch (Epoch) – Epoch close to the desired eastern elongation
Returns:A tuple with the time when the eastern elongation happens, as an Epoch, and the maximum elongation angle, as an Angle
Return type:tuple
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1990, 8, 1.0)
>>> time, elongation = Mercury.eastern_elongation(epoch)
>>> y, m, d = time.get_date()
>>> print(y)
1990
>>> print(m)
8
>>> print(round(d, 4))
11.8514
>>> print(round(elongation, 4))
27.4201
static geocentric_position(epoch)[source]

This method computes the geocentric position of Mercury (right ascension and declination) for the given epoch, as well as the elongation angle.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing the right ascension, the declination and the elongation angle as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 12, 20.0)
>>> ra, dec, elon = Mercury.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
16h 33' 59.3''
>>> print(dec.dms_str(n_dec=1))
-20d 53' 31.6''
>>> print(elon.dms_str(n_dec=1))
18d 24' 29.8''
static geometric_heliocentric_position(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of planet Mercury for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Mercury position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2018, 10, 27.0)
>>> l, b, r = Mercury.geometric_heliocentric_position(epoch)
>>> print(round(l.to_positive(), 4))
287.4887
>>> print(round(b, 4))
-6.0086
>>> print(round(r, 5))
0.45113
static inferior_conjunction(epoch)[source]

This method computes the time of the inferior conjunction closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired inferior conjunction
Returns:The time when the inferior conjunction happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 10, 1.0)
>>> conjunction = Mercury.inferior_conjunction(epoch)
>>> y, m, d = conjunction.get_date()
>>> print(y)
1993
>>> print(m)
11
>>> print(round(d, 4))
6.1449
>>> epoch = Epoch(1631, 10, 1.0)
>>> conjunction = Mercury.inferior_conjunction(epoch)
>>> y, m, d = conjunction.get_date()
>>> print(y)
1631
>>> print(m)
11
>>> print(round(d, 3))
7.306
static magnitude(sun_dist, earth_dist, phase_angle)[source]

This function computes the approximate magnitude of Mercury.

Parameters:
  • sun_dist (float) – Distance from Mercury to Sun, in Astronomical Units
  • earth_dist (float) – Distance Mercury to Earth, in Astronomical Units
  • phase_angle (float, Angle) – Mercury phase angle
Returns:

Mercury’s magnitude

Return type:

float

Raises:

TypeError if input values are of wrong type.

static orbital_elements_j2000(epoch)[source]

This method computes the orbital elements of Mercury for the standard equinox J2000.0 for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Mercury.orbital_elements_j2000(epoch)
>>> print(round(l, 6))
202.579453
>>> print(round(a, 8))
0.38709831
>>> print(round(e, 7))
0.2056451
>>> print(round(i, 6))
7.001089
>>> print(round(ome, 5))
48.24873
>>> print(round(arg, 6))
29.311401
static orbital_elements_mean_equinox(epoch)[source]

This method computes the orbital elements of Mercury for the mean equinox of the date for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Mercury.orbital_elements_mean_equinox(epoch)
>>> print(round(l, 6))
203.494701
>>> print(round(a, 8))
0.38709831
>>> print(round(e, 7))
0.2056451
>>> print(round(i, 6))
7.006171
>>> print(round(ome, 5))
49.10765
>>> print(round(arg, 6))
29.367732
static passage_nodes(epoch, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of Mercury, nearest to the given epoch.

Parameters:
  • epoch (Epoch) – Epoch closest to the node passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2019, 1, 1)
>>> time, r = Mercury.passage_nodes(epoch)
>>> year, month, day = time.get_date()
>>> print(year)
2018
>>> print(month)
11
>>> print(round(day, 1))
24.7
>>> print(round(r, 4))
0.3143
static perihelion_aphelion(epoch, perihelion=True)[source]

This method computes the time of Perihelion (or Aphelion) closer to a given epoch.

Parameters:
  • epoch (Epoch) – Epoch close to the desired Perihelion (or Aphelion)
  • peihelion – If True, the epoch of the closest Perihelion is computed, if False, the epoch of the closest Aphelion is found.
Returns:

The epoch of the desired Perihelion (or Aphelion)

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2000, 1, 1.0)
>>> e = Mercury.perihelion_aphelion(epoch)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2000
>>> print(m)
2
>>> print(d)
15
>>> print(h)
18
>>> epoch = Epoch(2000, 3, 1.0)
>>> e = Mercury.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2000
>>> print(m)
3
>>> print(d)
30
>>> print(h)
17
static station_longitude_1(epoch)[source]

This method computes the time of the 1st station in longitude (i.e. when the planet is stationary and begins to move westward - retrograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired inferior conjunction
Returns:Time when the 1st statin in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 10, 1.0)
>>> sta1 = Mercury.station_longitude_1(epoch)
>>> y, m, d = sta1.get_date()
>>> print(y)
1993
>>> print(m)
10
>>> print(round(d, 4))
25.9358
static station_longitude_2(epoch)[source]

This method computes the time of the 2nd station in longitude (i.e. when the planet is stationary and begins to move eastward - prograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired inferior conjunction
Returns:Time when the 2nd station in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 10, 1.0)
>>> sta2 = Mercury.station_longitude_2(epoch)
>>> y, m, d = sta2.get_date()
>>> print(y)
1993
>>> print(m)
11
>>> print(round(d, 4))
15.0724
static superior_conjunction(epoch)[source]

This method computes the time of the superior conjunction closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired superior conjunction
Returns:The time when the superior conjunction happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 10, 1.0)
>>> conjunction = Mercury.superior_conjunction(epoch)
>>> y, m, d = conjunction.get_date()
>>> print(y)
1993
>>> print(m)
8
>>> print(round(d, 4))
29.3301
static western_elongation(epoch)[source]

This method computes the time of the western elongation closest to the given epoch, as well as the corresponding maximum elongation angle.

Parameters:epoch (Epoch) – Epoch close to the desired western elongation
Returns:A tuple with the time when the western elongation happens, as an Epoch, and the maximum elongation angle, as an Angle
Return type:tuple
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 11, 1.0)
>>> time, elongation = Mercury.western_elongation(epoch)
>>> y, m, d = time.get_date()
>>> print(y)
1993
>>> print(m)
11
>>> print(round(d, 4))
22.6386
>>> print(round(elongation, 4))
19.7506
pymeeus.Mercury.ORBITAL_ELEM = [[252.250906, 149474.0722491, 0.0003035, 1.8e-08], [0.38709831, 0.0, 0.0, 0.0], [0.20563175, 2.0407e-05, -2.83e-08, -1.8e-10], [7.004986, 0.0018215, -1.81e-05, 5.6e-08], [48.330893, 1.1861883, 0.00017542, 2.15e-07], [77.456119, 1.5564776, 0.00029544, 9e-09]]

This table contains the parameters to compute Mercury’s orbital elements for the mean equinox of date. Based in Table 31.A, page 212

pymeeus.Mercury.ORBITAL_ELEM_J2000 = [[252.250906, 149472.6746358, -5.36e-06, 2e-09], [7.004986, -0.0059516, 8e-07, 4.3e-08], [48.330893, -0.1254227, -8.833e-05, -2e-07], [77.456119, 0.1588643, -1.342e-05, -7e-09]]

This table contains the parameters to compute Mercury’s orbital elements for the standard equinox J2000.0. Based on Table 31.B, page 214

pymeeus.Mercury.VSOP87_B = [[[11737528.962, 1.98357498767, 26087.9031415742], [2388076.996, 5.03738959685, 52175.8062831484], [1222839.532, 3.14159265359, 0.0], [543251.81, 1.79644363963, 78263.70942472259], [129778.77, 4.83232503961, 104351.61256629678], [31866.927, 1.58088495667, 130439.51570787099], [7963.301, 4.60972126348, 156527.41884944518], [2014.189, 1.35324164694, 182615.3219910194], [513.953, 4.37835409309, 208703.2251325936], [207.674, 4.91772564073, 27197.2816936676], [208.584, 2.02020294153, 24978.5245894808], [132.013, 1.11908492283, 234791.12827416777], [100.454, 5.65684734206, 20426.571092422], [121.395, 1.81271752059, 53285.1848352418], [91.566, 2.28163128692, 25028.521211385], [99.214, 0.09391887097, 51116.4243529592], [94.574, 1.24184909234, 31749.2351907264], [78.785, 4.4072588, 57837.1383323006], [77.747, 0.52557061749, 1059.3819301892], [84.264, 5.08510388314, 51066.427731055], [49.948, 3.49752993688, 5661.3320491522], [46.454, 3.23739270829, 77204.32749453338], [44.767, 4.87849816734, 79373.087976816], [40.766, 2.46558332165, 46514.4742339962], [37.378, 4.45768797944, 4551.9534970588], [34.082, 4.14209210575, 260879.03141574195], [35.911, 1.09057317869, 1109.3785520934], [31.953, 1.18516389747, 83925.0414738748], [30.954, 3.5032802721, 21535.9496445154], [31.808, 2.41474588439, 47623.8527860896], [28.691, 1.84828614269, 77154.33087262919], [25.765, 2.77593370583, 27043.5028831828], [25.199, 3.5906226646, 27147.28507176339], [20.244, 3.06833797229, 51646.11531805379], [18.591, 5.5842727444, 73711.75592766379], [16.971, 0.02791276551, 103292.23063610759], [20.099, 4.06593040301, 25132.3033999656], [17.002, 6.13739392193, 41962.5207369374], [14.984, 1.64717994813, 105460.99111839019], [14.186, 0.33074185469, 10213.285546211], [15.577, 6.07693643204, 53131.406024757], [15.795, 3.79629547258, 529.6909650946], [14.011, 5.52786452723, 72602.37737557039], [12.309, 3.16626298867, 14765.2390432698], [11.261, 0.11326534696, 13521.7514415914], [12.448, 4.05109331029, 39609.6545831656], [13.044, 3.48016433624, 37410.5672398786], [11.042, 4.23192662377, 110012.94461544899], [11.152, 0.5565846182, 63498.47038145279], [10.717, 1.53686240986, 25661.3049506982], [10.213, 2.87881017166, 12566.1516999828], [9.924, 0.94824584866, 65697.55772473979], [11.047, 5.79741510309, 51749.20809227239], [10.46, 5.82962163777, 50586.73338786459], [9.774, 1.6627176265, 24498.8302462904], [9.412, 1.82364886045, 15874.6175953632], [12.866, 4.81650804018, 30639.856638633], [9.123, 4.8860439411, 103242.2340142034], [9.011, 1.04262074744, 426.598190876], [8.735, 3.04132552652, 68050.42387851159], [8.491, 1.05130498445, 1589.0728952838], [8.835, 0.88128343813, 286966.9345573162], [8.823, 5.81343662067, 11322.6640983044], [8.196, 0.84015129448, 51220.20654153979], [7.64, 3.43584035231, 36301.18868778519], [9.175, 6.16059719071, 77734.01845962799], [8.897, 0.39691733779, 53235.18821333759], [7.253, 2.37179970828, 99799.65906923798], [7.104, 5.73557153523, 26617.5941066688], [8.322, 5.271571288, 25558.2121764796], [6.578, 2.66741925057, 52705.49724824299], [5.825, 6.25072627414, 33326.5787331742], [5.625, 3.0803000023, 129380.13377768178], [5.295, 1.35863387771, 45892.73043315699], [5.116, 2.67576280851, 76674.63652943878], [5.035, 2.66614676257, 77837.11123384659], [4.762, 4.68983196238, 131548.89425996438], [5.714, 2.87339047644, 79219.3091663312], [5.601, 5.3719088515, 955.5997416086], [4.965, 3.47619946892, 59414.4818747484], [5.468, 1.43781223143, 56727.7597802072], [4.08, 4.01667499, 91785.46086631398], [3.971, 5.44452771841, 6283.0758499914], [4.063, 5.64291749144, 26068.2333806744], [3.877, 3.60887633874, 89586.37352302698], [4.047, 5.95235957644, 38654.05484155699], [4.064, 1.46283079734, 26107.57290247399], [3.681, 0.47365215122, 62389.09182935939], [4.247, 6.23163402945, 40853.142184844], [3.694, 2.75543227024, 7238.6755916], [3.348, 5.91868911857, 43071.8992890308], [4.475, 2.28937952702, 98690.28051714458], [3.115, 0.74943919509, 32858.61374281979], [3.1, 3.35203735852, 19804.8272915828], [3.215, 6.11374633777, 94138.32702008578], [3.558, 0.98820289555, 136100.84775702318], [2.908, 4.06284172838, 26514.5013324502], [2.799, 1.63602212056, 129330.13715577759], [2.8, 3.88358619611, 77308.10968311399], [2.68, 4.48235268618, 71980.63357473118], [2.767, 4.12700796923, 27676.976036858], [3.285, 0.3939808152, 18849.2275499742], [3.29, 2.93487892542, 103821.92160120218], [3.048, 0.67698362024, 9103.9069941176], [2.484, 5.4233220496, 125887.56221081219], [2.663, 1.70280488847, 16983.9961474566], [2.791, 2.76839978418, 26091.7844769322], [2.747, 5.75135788288, 19317.1925403286], [2.676, 5.73635682216, 78793.40038981718], [2.71, 4.3127490272, 58946.51688439399], [2.877, 3.45410696457, 79323.09135491178], [2.787, 4.34025817469, 26084.0218062162], [2.097, 2.09090732812, 23869.1460373874], [2.297, 3.9032125153, 313054.83769889036], [2.535, 3.05170623483, 69159.80243060499], [2.211, 4.651202109, 28306.66024576099], [1.912, 5.78403850812, 102762.53967101299], [2.265, 3.34478937379, 22645.32819660879], [1.817, 5.74251490625, 103925.01437542078], [1.961, 5.94577427093, 105307.21230790539], [1.922, 4.43763124338, 82815.66292178139], [1.667, 4.51887419928, 52195.47604404819], [1.771, 6.12278757535, 155468.036919256], [1.515, 1.7245811583, 54394.56338733519], [1.585, 0.23900687506, 85502.38501632259], [1.477, 4.73359545019, 29530.4780865396], [1.469, 1.44574704924, 157636.79740153858], [1.653, 2.41345886386, 52156.1365222486], [1.377, 0.59981573116, 26080.78959457339], [1.43, 0.7841694399, 117873.36400788819], [1.68, 3.42684715134, 6770.7106012456], [1.604, 4.52048871587, 3442.5749449654], [1.345, 0.31857167988, 51535.90899683439], [1.357, 3.17349203273, 25874.6040461362], [1.25, 2.33380858079, 25448.00585526019], [1.196, 2.09277609512, 48733.23133818299], [1.194, 0.36376300747, 115674.27666460119], [1.443, 2.73186009497, 64741.95798313119], [1.375, 5.32672767568, 124778.18365871879], [1.325, 3.57805811914, 88476.99497093359], [1.115, 0.26092087309, 639.897286314], [1.094, 2.22755234371, 32370.9789915656], [1.433, 3.03965981318, 66941.04532641819], [1.37, 3.45924813827, 44937.1306915484], [1.003, 0.28769164324, 25934.1243310894], [1.136, 1.11057140999, 52171.9249477904], [1.0, 0.5245751492, 26241.681952059], [1.033, 2.55563840213, 45405.0956819028], [1.096, 5.01257889902, 7.1135470008], [1.146, 5.40631829059, 213.299095438], [1.08, 5.97835772937, 129909.82474277639], [0.988, 1.25815251981, 98068.53671630539], [1.062, 2.88132742088, 120226.23016165999], [0.892, 0.63710475446, 103396.01282468818], [1.041, 0.89365572198, 52602.4044740244], [0.978, 0.93067667928, 53764.8791784322], [1.136, 5.82023159264, 52179.6876185064], [0.838, 4.66556603681, 155418.04029735178], [0.91, 5.53568417425, 58458.88213313979], [0.834, 5.16159172473, 49957.0491789616], [1.1, 4.0215776119, 162188.75089859738], [0.805, 1.03425281191, 23969.1392811958], [0.835, 5.28205659749, 50057.04242277], [0.891, 0.21542628779, 105410.99449648599], [0.743, 0.86945390288, 52389.1053785864], [0.783, 3.32304812554, 26301.2022370122], [0.711, 1.57780048955, 2118.7638603784], [0.801, 2.18220012579, 151975.46535238638], [0.915, 1.71247948367, 51962.5071877104], [0.832, 5.53506450006, 74821.13447975718], [0.75, 2.16183196338, 52168.69273614759], [0.923, 2.50170936928, 104881.30353139139], [0.727, 6.05394635764, 95247.70557217918], [0.64, 2.71738158564, 131395.11544947958], [0.628, 1.43868691098, 55618.3812281138], [0.622, 3.46102298068, 77623.81213840858], [0.825, 1.00561540075, 85034.42002596818], [0.611, 0.99677911598, 2218.7571041868], [0.605, 4.68164610499, 52182.9198301492], [0.646, 2.57803910757, 128850.44281258718], [0.621, 1.16576338077, 108903.56606335558], [0.651, 1.60040223342, 26095.016688575], [0.599, 2.51123620954, 130012.91751699499], [0.57, 1.27714994259, 78283.37918562238], [0.616, 2.88990323867, 52026.2430860138], [0.553, 5.17654422678, 25938.3399444396], [0.56, 3.32834155275, 51109.31080595839], [0.538, 4.7459289211, 80482.46652890938], [0.514, 5.52495783925, 25021.4076643842], [0.512, 2.12021253064, 25035.6347583858], [0.545, 1.31029342517, 26555.8681319286], [0.475, 4.05390077061, 149.5631971346], [0.464, 3.26222495894, 111590.2881578968], [0.46, 5.34048307893, 46848.3301747656], [0.55, 5.84636069235, 25619.9381512198], [0.447, 3.5768857164, 1066.49547719], [0.55, 6.22077946049, 51123.53789995999], [0.596, 0.6449235299, 339142.7408404646], [0.484, 3.16177806139, 38519.945791972], [0.441, 0.67395966884, 1052.2683831884], [0.477, 0.22606306742, 71025.0338331226], [0.423, 2.08215220948, 76144.94556434419], [0.472, 3.35508518254, 35191.8101356918], [0.418, 3.57908956341, 52329.58509363319], [0.441, 4.91196768491, 78050.41032928458], [0.44, 4.47866581814, 183724.7005431128], [0.435, 1.98197259533, 26094.53170047421], [0.564, 5.45416215614, 78244.0396638228], [0.54, 2.87570725847, 181555.94006083018], [0.45, 6.09063658976, 93028.94846799239], [0.461, 3.82361162048, 143961.2671494624], [0.408, 3.34314470563, 52022.0274726636], [0.412, 2.07516355558, 150866.08680029298], [0.435, 5.12507754577, 26081.27458267419], [0.409, 0.56822912556, 64607.84893354619], [0.388, 4.16039183226, 78259.82808936459], [0.393, 3.23715146834, 13655.8604911764], [0.375, 5.33297275541, 26011.6370702986], [0.467, 5.77388878977, 90829.86112470538], [0.35, 5.62301652558, 71492.99882347698], [0.352, 3.27694758804, 26727.8004278882], [0.35, 3.39302729957, 141762.17980617538], [0.39, 2.58800166779, 78267.59076008058], [0.365, 3.19925143022, 52099.5402118728], [0.433, 1.5518516339, 20760.4270331914], [0.327, 5.69228054184, 12432.0426503978], [0.339, 1.5808857282, 45494.58142974879], [0.338, 2.73161573173, 155997.72788435058], [0.315, 4.00061444247, 78477.00852016058], [0.435, 0.36408526333, 114564.89811250778], [0.344, 5.02616143626, 78256.59587772179], [0.346, 4.14121333484, 111122.32316754239], [0.286, 5.40513646014, 6681.2248533996], [0.283, 3.65516534367, 76.2660712756], [0.325, 4.3041208046, 124156.43985787958], [0.364, 2.32771554672, 84546.78527471398], [0.331, 0.768825599, 188276.6540401716], [0.267, 3.81778097058, 19406.6782881746], [0.27, 6.02010732963, 78114.14622758799], [0.273, 3.6672618024, 129483.91596626239], [0.263, 0.18743596408, 77197.21394753258], [0.268, 3.25051884036, 131498.89763806018], [0.284, 1.93848296863, 76044.9523205358], [0.295, 5.53951004419, 130969.20667296558], [0.335, 5.92048177497, 146314.13330323418], [0.246, 1.45343047775, 78270.82297172339], [0.259, 3.0824170478, 77211.44104153418], [0.253, 2.86398164134, 121335.60871375339], [0.338, 3.9582339601, 78690.30761559859], [0.317, 3.9813836922, 79852.78232000639], [0.232, 4.66776441683, 28206.6670019526], [0.247, 1.40414696612, 181505.94343892598], [0.228, 0.25677390582, 103711.71527998279], [0.219, 4.69799359762, 71582.48457132299], [0.221, 4.46394113791, 81706.28436968799], [0.254, 1.43735157085, 5327.4761083828], [0.199, 5.76674433704, 157483.01859105378], [0.253, 2.47481215159, 72936.23331633979], [0.191, 4.17749403686, 134991.4692049298], [0.246, 5.2155277312, 178063.3684939606], [0.182, 4.31488794636, 104371.28232719658], [0.206, 1.62004139707, 106570.36967048359], [0.234, 2.1897992144, 100909.03762133139], [0.176, 3.58325574282, 48835.19385644859], [0.188, 2.58568452037, 51707.84129279399], [0.177, 1.8946109513, 52169.17772424839], [0.168, 3.01264496377, 23754.70674870219], [0.222, 4.35573235377, 52643.7712735028], [0.169, 5.25194313253, 102232.84870591838], [0.188, 5.55333225508, 156100.82065856917], [0.163, 1.72109994467, 104138.31347085879], [0.205, 5.64507146979, 154938.34595416137], [0.161, 0.06514575292, 78187.44335344699], [0.155, 3.29540644622, 97112.93697469679], [0.152, 1.66425291176, 25654.19140369739], [0.179, 2.20248310353, 104331.94280539699], [0.157, 5.91615237188, 51742.09454527159], [0.176, 5.03409571975, 52182.4348420484], [0.145, 0.34814763869, 78417.48823520739], [0.151, 0.8401618205, 26237.46633870879], [0.143, 0.36102957131, 27154.3986187642], [0.142, 5.87490895177, 26037.90651966999], [0.167, 4.43520444137, 25668.418497699], [0.137, 2.8508932935, 119116.85160956658], [0.161, 5.91020381915, 207643.8432024044], [0.13, 6.26801612444, 137678.191299471], [0.13, 0.93376066695, 433.7117378768], [0.14, 1.22522976768, 26137.8997634784], [0.144, 4.56326656247, 419.4846438752], [0.145, 2.53141564902, 116917.76426627958], [0.145, 3.74606280935, 27140.17152476259], [0.155, 3.65976494728, 365230.6439820388], [0.124, 0.92716868075, 104347.73123093879], [0.14, 0.1128733417, 78109.93061423779], [0.126, 1.13823138141, 51322.60990139639], [0.146, 3.25675289634, 3340.6124266998], [0.122, 5.10611624534, 176953.98994186718], [0.125, 5.63666753628, 104355.49390165479], [0.155, 2.3086138149, 51756.3216392732], [0.136, 3.41914767255, 140652.80125408198], [0.115, 6.25299482333, 39743.7636327506], [0.113, 0.79353194356, 7994.5284420242], [0.126, 0.12477487369, 52815.7035694624], [0.121, 0.68099507149, 50483.640613646], [0.118, 0.87294905519, 137210.22630911658], [0.112, 2.41390426449, 97580.90196505119], [0.13, 1.22267912068, 209812.60368468694], [0.11, 3.15687226733, 25234.70675982219], [0.109, 2.85465805569, 24395.7374720718], [0.108, 5.7358716071, 853.196381752], [0.141, 4.76875897743, 28421.0995344462], [0.143, 0.57659923971, 170049.1702910366], [0.127, 5.39590556187, 110634.68841628819], [0.11, 0.79294568581, 104564.91166173479], [0.103, 5.77115680934, 182085.63102592478], [0.108, 0.78147749534, 42153.969003049], [0.101, 6.24176236571, 1692.1656695024], [0.125, 1.72822604057, 104344.49901929598], [0.112, 1.53691309669, 18093.37469954999], [0.1, 6.03656277681, 147423.51185532758], [0.102, 2.16777222106, 32769.1279949738], [0.127, 5.69552946334, 44181.27784112419], [0.096, 2.81662615895, 104202.04936916218], [0.094, 6.16378269144, 103299.34418310839], [0.095, 3.08582674985, 70269.18098269838], [0.096, 3.26682732105, 103285.11708910679], [0.101, 1.49832461293, 40565.2543247742], [0.099, 0.11817727117, 167850.0829477496], [0.099, 3.80154992347, 214364.55718174577], [0.093, 3.27120904242, 90695.75207512038], [0.104, 5.35405285854, 126996.94076290558], [0.105, 0.73008875321, 104778.21075717278], [0.089, 2.82753100547, 50579.61984086379], [0.098, 0.55393078868, 33967.99229491319], [0.087, 1.47928882834, 97670.38771289718], [0.117, 0.17401840597, 61279.713277266], [0.089, 0.41552735762, 26164.1692128498], [0.091, 2.28447351962, 157057.10981453978], [0.103, 2.67784306575, 172402.0364448084], [0.084, 4.31852113132, 60055.89543648739], [0.085, 4.50666554965, 104358.72611329758], [0.098, 0.74967522191, 105940.68546158058], [0.082, 2.80078395016, 52101.02468458109], [0.086, 0.38069361609, 74923.09699802278], [0.077, 4.91602955543, 24491.71669928959], [0.104, 6.08692240129, 10021.8372800994], [0.094, 2.2175482918, 25973.46385288896], [0.079, 4.63574888508, 2333.196392872], [0.076, 0.0667660763, 157586.80077963436], [0.076, 4.09119863738, 1596.1864422846], [0.089, 0.51926466594, 50593.84693486539], [0.078, 5.85412082904, 18207.81398823521], [0.083, 1.48347794862, 54294.57014352679], [0.102, 1.11648927836, 150244.3429994538], [0.081, 0.43168464249, 155571.81910783658], [0.071, 2.77560894834, 77829.99768684579], [0.098, 3.04617186486, 16066.0658614748], [0.089, 3.91487126164, 68241.8721446232], [0.076, 3.32839538947, 129799.61842155698], [0.091, 4.99146967087, 102132.85546210999], [0.088, 4.54401955709, 51543.0225438352], [0.092, 4.8882571486, 26202.34243025941], [0.066, 1.97272013972, 632.7837393132], [0.066, 1.34921841483, 52808.59002246159], [0.071, 1.2155124162, 107794.1875112622], [0.088, 3.90671333341, 74.7815985673], [0.076, 1.1168426292, 78731.674415077], [0.06, 4.94665488683, 78257.08086582259], [0.067, 4.24719146625, 14477.3511832], [0.069, 5.46721744006, 77844.22478084739], [0.059, 2.80000354604, 25863.55834587229], [0.06, 4.23924716288, 52225.8029050526], [0.059, 5.90340687048, 103.0927742186], [0.059, 3.81127888964, 76571.54375522019], [0.06, 5.62072757879, 77795.74443436819], [0.069, 4.36673018646, 207593.8465805002], [0.066, 0.49890308433, 51951.46148744649], [0.058, 1.63810168022, 51013.33157874059], [0.058, 4.28286858594, 77410.51304297059], [0.066, 0.61313044187, 51639.00177105299], [0.057, 3.15657420172, 104275.34649502118], [0.058, 4.41262101447, 26720.68688088739], [0.075, 0.13973480485, 1581.959348283], [0.057, 0.41985749035, 23439.44831610119], [0.069, 6.04001555481, 29428.515568274], [0.055, 0.87548003173, 161079.37234650398], [0.054, 2.10504641371, 2648.454825473], [0.07, 1.90064683191, 204151.27163553477], [0.054, 3.73359360369, 24925.4284371664], [0.055, 4.74493087072, 49527.35145767539], [0.071, 2.67007207774, 24505.94379329119], [0.057, 1.10422154948, 130459.18546877075], [0.068, 5.29164108644, 26013.1215430069], [0.054, 0.06047544079, 52072.71350892979], [0.053, 0.0641936055, 536.8045120954], [0.053, 5.00852687358, 25977.69682035479], [0.052, 4.1740388604, 25131.61398560359], [0.052, 3.31036935415, 7880.08915333899], [0.07, 6.10702300469, 52278.89905736699], [0.059, 1.97971323674, 51219.51712717779], [0.052, 0.17883872581, 224.3447957019], [0.057, 2.64616122722, 52125.80966124419], [0.051, 2.51127480556, 183570.921732628], [0.05, 4.67814206741, 130226.21661243298], [0.05, 4.7732602477, 25780.3455206046], [0.053, 2.8157918125, 55516.4187098482], [0.057, 2.13355985608, 128320.75184749259], [0.049, 2.32162107938, 26395.46076254379], [0.049, 4.96049794937, 956.2891559706], [0.047, 4.20636709156, 52250.5878817157], [0.058, 2.23088591593, 52065.59996192899], [0.048, 5.31209962934, 1162.4747044078], [0.062, 6.11793881, 22747.2907148744], [0.051, 5.16823572193, 130419.8459469712], [0.058, 1.50494628165, 54509.0026760204], [0.06, 0.43836944868, 116783.65521669458], [0.059, 1.50474668065, 26507.38778544939], [0.047, 3.28426374672, 25565.3257234804], [0.056, 2.45288584577, 181026.24909573558], [0.051, 3.46813929041, 53242.3017603384], [0.045, 0.64303440167, 52698.38370124219], [0.049, 0.43622928396, 27999.1026247914], [0.046, 0.93537805397, 26162.6847401415], [0.043, 5.95311422864, 76667.52298243798], [0.06, 1.79764830651, 78270.3379836226], [0.056, 2.27809233545, 182188.72380014337], [0.043, 3.95909386803, 26521.614879451], [0.043, 2.06740816154, 51859.41441349179], [0.051, 5.31772214752, 66653.15746634839], [0.044, 1.68470111077, 23888.81579828719], [0.054, 3.94217571152, 52325.36948028299], [0.043, 5.1386495594, 11610.5519583742], [0.042, 4.61363107691, 52492.19815280499], [0.046, 3.39633739377, 104505.39137678158], [0.046, 4.83387098498, 110.2063212194], [0.045, 3.54092987543, 50800.03248330259], [0.041, 5.69167231584, 24712.1293417284], [0.04, 0.05181171325, 123200.84011627098], [0.053, 0.61042891791, 53228.07466633679], [0.039, 3.11194295827, 25984.8103673556], [0.046, 2.5352841036, 50696.93970908399], [0.038, 4.44293961717, 29416.03879785439], [0.041, 2.66264705448, 233731.7463439786], [0.037, 3.37388547918, 1375.7737998458], [0.038, 5.61891042604, 143005.6674078538], [0.037, 5.42828179354, 28286.9904848612], [0.049, 5.33653478407, 99024.13645791399], [0.04, 5.63484527365, 522.5774180938], [0.039, 3.40419666656, 25551.09862947879], [0.036, 5.94925007197, 145204.75475114078], [0.038, 2.07740095188, 153084.84390447979], [0.039, 3.20021878147, 163766.0944410452], [0.037, 5.22659089943, 52595.29092702359], [0.042, 4.90625897857, 25771.5112719176], [0.041, 2.99128318097, 26190.99591579279], [0.044, 1.11685231827, 26404.2950112308], [0.045, 4.61987657347, 132658.27281205778], [0.037, 0.21788276252, 166740.70439565618], [0.034, 1.94222980062, 203041.8930834414], [0.045, 3.16157322891, 104197.83375581198], [0.046, 4.46372826281, 316.3918696566], [0.039, 2.02681719442, 136722.59155786238], [0.034, 1.34191646454, 467.9649903544], [0.043, 3.34582658464, 78903.60671103658], [0.039, 3.65232351757, 196137.07343261078], [0.037, 0.3728911138, 391318.54712361295], [0.037, 2.88378512797, 36109.7404216736], [0.037, 1.66197775716, 52290.24557183361], [0.036, 3.91856090884, 54087.0057663656], [0.034, 0.07777074766, 26294.08869001139], [0.033, 2.57658065167, 26941.0995233262], [0.034, 1.66706631543, 49842.60989027639], [0.042, 3.65143192554, 76681.75007643958], [0.032, 4.02685079656, 24356.7807886416], [0.041, 3.48117117726, 26610.48055966799], [0.04, 1.30798263894, 77630.92568540938], [0.033, 3.31591322468, 65831.6667743248], [0.042, 4.68305225464, 24609.0365675098], [0.034, 2.43308912753, 26421.7590823436], [0.031, 0.55207634036, 13362.4497067992], [0.031, 3.97168176907, 130435.63437251298], [0.035, 5.90195011358, 78188.92782615528], [0.032, 5.58275762493, 25881.717593137], [0.032, 3.03394602316, 27780.06881107659], [0.038, 4.616024782, 130432.40216087017], [0.031, 5.37268049479, 75930.51303185058], [0.034, 4.68006477569, 25754.0472008048], [0.03, 2.7691739915, 173511.41499690176], [0.037, 4.3753749777, 1478.8665740644], [0.03, 2.69970929614, 208173.534167499], [0.029, 2.28199342452, 130443.39704322898], [0.039, 4.04390928499, 34282.1784747828], [0.033, 1.47153495142, 55503.94193942859], [0.029, 3.09374594552, 27819.0254945068], [0.03, 2.30968283835, 26624.70765366959], [0.035, 2.18534594257, 22759.76748529401], [0.027, 0.63624513172, 240452.46032331997], [0.035, 5.4058831234, 58857.03113654799], [0.028, 5.46904052697, 123668.80510662538], [0.028, 3.82629644574, 130866.11389874699], [0.027, 3.91273567728, 163298.1294506908], [0.032, 3.55783772742, 52252.07235442399], [0.036, 5.26852179816, 52061.36699446317], [0.027, 0.81868301401, 25455.119402261], [0.03, 6.23608007707, 24176.703658357], [0.025, 1.48874402537, 60370.08161635699], [0.027, 4.41957053501, 78896.49316403578], [0.025, 3.33404428554, 206.1855484372], [0.025, 2.22580879047, 12725.453434775], [0.025, 5.37774707105, 183145.012956114], [0.026, 3.83674753452, 132028.58860315479], [0.025, 2.9360535584, 129387.24732468258], [0.025, 5.8616145474, 130289.95251073639], [0.024, 4.03572089813, 26089.38761428249], [0.024, 3.09138745629, 26086.4186688659], [0.024, 1.4045297785, 25446.4895798352], [0.033, 3.35253473958, 193937.9860893238], [0.024, 4.8134227557, 27311.72098235281], [0.024, 2.36840229716, 25440.89230825939], [0.024, 2.60590286552, 125112.03959948818], [0.027, 2.64006708171, 44295.7171298094], [0.029, 3.85906422319, 130652.81480330898], [0.033, 4.2600726241, 235900.50682626115], [0.026, 3.37356285012, 87367.61641884019], [0.024, 3.83432680564, 52381.99183158559], [0.027, 4.14811634858, 176332.24614102798], [0.023, 0.19227535404, 647.0108333148], [0.025, 0.03897225418, 129373.02023068098], [0.023, 5.73072631591, 26729.31670331319], [0.026, 2.78110886808, 64901.25971792339], [0.028, 6.14191568069, 38813.3565763492], [0.025, 5.64677901976, 198489.9395863826], [0.022, 2.4748926331, 24864.08530079559], [0.023, 4.2668224139, 26222.0121911592], [0.024, 4.52962335246, 123758.29085447139], [0.023, 2.88962909157, 25953.79409198919], [0.028, 4.67408679361, 80382.47328510099], [0.021, 2.19925857864, 23866.04650697719], [0.025, 0.81737451667, 94329.77528619739], [0.021, 5.56863005528, 52712.61079524379], [0.021, 0.94657470314, 27684.0895838588], [0.023, 1.24923754668, 130446.62925487179], [0.022, 1.55521175306, 24998.19435038059], [0.024, 3.25930776298, 27669.86248985719], [0.021, 3.16657819785, 183674.70392120857], [0.02, 1.45970914613, 75615.25459924959], [0.028, 2.65124448902, 78366.80219894118], [0.021, 2.85719729554, 78160.61665050399], [0.022, 0.14164137879, 51528.79544983359], [0.022, 1.54435105177, 158746.17595363196], [0.019, 1.95606380894, 25344.9130810416], [0.019, 3.62491058376, 78039.36462902068], [0.019, 2.59809360557, 17893.6278083656], [0.019, 5.86487152937, 103917.90082841998], [0.019, 5.07516493363, 230239.17477710897], [0.023, 1.73809221823, 128220.75860368418], [0.018, 3.70453311537, 77726.90491262719], [0.02, 5.58951443277, 27177.6119327678], [0.019, 2.26298959398, 103932.12792242158], [0.018, 5.26103373994, 28736.3579670472], [0.018, 4.77075669731, 77101.23472031478], [0.019, 4.18613339997, 104819.57755665119], [0.019, 3.72825596269, 31415.379249957], [0.018, 5.11985094325, 77307.42026875199], [0.019, 1.61447515906, 51653.22886505459], [0.022, 3.45569006244, 101011.00013959699], [0.017, 3.34823797519, 23919.1426592916], [0.017, 0.84289136609, 86143.79857806159], [0.018, 0.8199762803, 26073.67604757259], [0.02, 0.96632907921, 52609.51802102519], [0.016, 1.27839838984, 51868.2486621788], [0.02, 0.07187923898, 155887.52156313116], [0.018, 5.44524309894, 25508.2155545754], [0.016, 0.6272245515, 102659.44689679438], [0.016, 0.52102795891, 2221.856634597], [0.017, 3.93009669878, 51852.30086649099], [0.016, 5.7418031822, 96357.08412427259], [0.019, 5.09029341511, 118828.96374949679], [0.017, 2.59947793429, 24448.8336243862], [0.016, 5.52244950928, 2199.087343287], [0.015, 3.36667960581, 1911.1994832172], [0.021, 3.53223071778, 181659.72224941078], [0.019, 1.29524947399, 233681.74972207437], [0.016, 1.11236515889, 103498.41618454478], [0.02, 3.19274792861, 51969.62073471119], [0.017, 3.27645001526, 26312.2479372761], [0.016, 5.54159968247, 207114.15223730978], [0.015, 2.75565944373, 26709.6469424134], [0.015, 1.72732606714, 104344.98400739678], [0.016, 5.31828785394, 78153.50310350319], [0.016, 1.13565154505, 742.9900605326], [0.015, 6.19247438386, 130363.24963659538], [0.015, 1.16646378812, 92741.06060792258], [0.015, 4.39941321864, 25466.159340735], [0.014, 1.03341872997, 78313.70604662679], [0.016, 1.77081422797, 27044.1922975448], [0.016, 1.77854347809, 26667.590728573], [0.014, 2.39782698608, 103883.64757594238], [0.019, 6.27226219255, 25764.39772491679], [0.014, 1.89621592736, 37698.4550999484], [0.014, 5.86393829627, 81604.32185142238], [0.015, 2.41952075336, 27250.37784598199], [0.017, 5.6237861587, 51432.81622261579], [0.014, 0.57479381854, 8194.2753332086], [0.014, 2.0191587364, 156507.7490885454], [0.014, 4.00033644851, 187167.2754880782], [0.016, 3.05516572588, 22625.658435709], [0.014, 0.41333257896, 76887.93562487679], [0.014, 3.81333935444, 28256.66362385679], [0.016, 5.63829774136, 209658.82487420217], [0.017, 2.79674558169, 323.5054166574], [0.015, 4.52292533775, 27726.9726587622], [0.017, 1.61686538851, 26198.1094627936], [0.017, 4.2862866237, 133882.09065283637], [0.013, 1.02936352404, 25867.49049913539], [0.014, 5.57651447296, 2008.557539159], [0.014, 1.55161726953, 156314.1197540072], [0.017, 6.07989986315, 49953.94964855139], [0.015, 4.87081069542, 104358.2411251968], [0.013, 3.77228393975, 19.66976089979], [0.015, 5.4142973337, 208276.62694171758], [0.013, 1.15273910706, 949.1756089698], [0.017, 4.64614224273, 112231.70171963578], [0.015, 5.32485053265, 154408.65498906677], [0.013, 4.02426203972, 417406.4502651872], [0.013, 2.83441937048, 25169.9728555924], [0.016, 3.55004561005, 86457.98475793119], [0.014, 3.36717179008, 12546.481939083], [0.013, 0.99900287294, 78338.49102328988], [0.012, 3.72935261349, 78786.28684281638], [0.013, 4.55769261775, 80596.9058175946], [0.013, 3.68794178346, 79315.97780791098], [0.014, 4.16918945992, 156547.08861034497], [0.012, 3.12295185577, 149288.74325784517], [0.012, 2.69822851627, 153.7788104848], [0.012, 4.38117483432, 27005.83342755599], [0.012, 0.19322533903, 27463.67694142], [0.014, 4.1512708228, 29550.14784743939], [0.012, 2.80411772823, 102755.42612401219], [0.011, 5.82734448081, 259819.64948555277], [0.011, 2.40607503106, 169093.57054942797], [0.012, 0.49737747696, 102769.65321801379], [0.014, 5.69923121834, 76784.84285065818], [0.012, 5.56466695759, 26402.0893214438], [0.012, 1.48301102812, 78580.10129437919], [0.011, 5.15388067065, 77947.31755506598], [0.011, 1.64586759073, 25773.71696170459], [0.011, 2.45779334771, 34082.4315835984], [0.014, 2.00354520885, 846.0828347512], [0.013, 0.71980668578, 78413.27262185719], [0.011, 5.17906120193, 162810.49469943656], [0.011, 2.73596940194, 171292.65789271498], [0.011, 5.59141622457, 24203.0019781568], [0.011, 0.45608202666, 2111.6503133776], [0.01, 3.29404880642, 192828.60753723036], [0.01, 0.458570525, 222224.97657418498], [0.013, 5.70684493376, 78213.71280281838], [0.011, 4.37474459591, 103718.82882698359], [0.011, 0.63918585951, 26118.2300025786], [0.013, 5.83092856998, 26411.4085582316], [0.01, 5.45367935399, 52483.36390411799], [0.01, 4.70344741563, 2125.8774073792], [0.011, 0.28816338163, 26057.57628056979], [0.01, 5.5776490348, 151199.94274106238], [0.011, 0.03362968403, 104991.50985261079], [0.01, 3.71565881071, 148532.89040742096], [0.013, 0.25119201649, 79330.20490191258], [0.01, 6.23763004539, 128106.31931499895], [0.011, 6.23138757669, 130285.73689738619], [0.013, 3.60703035316, 39629.32434406539], [0.011, 2.08623018213, 78683.19406859778], [0.011, 2.89478268807, 122444.98726584678], [0.011, 1.47224457688, 156520.30530244438], [0.012, 0.18308102701, 130593.29451835579], [0.009, 5.24611723729, 138319.60486120995], [0.009, 5.64920582852, 1265.5674786264], [0.009, 6.25551575071, 53906.92863608099], [0.011, 3.36985744471, 142871.55835826878], [0.009, 5.47085206361, 156531.3001848032], [0.009, 4.79150958411, 101703.15774082378], [0.009, 2.73233240797, 38.1330356378], [0.009, 5.91954900221, 62197.64356324779], [0.009, 4.73154570336, 78378.1487134078], [0.011, 0.80389582741, 3328.13565628019], [0.009, 6.25489842872, 91919.56991589899], [0.009, 5.87197255624, 199599.31813847594], [0.009, 0.76033087382, 156523.5375140872], [0.008, 0.63159267832, 80174.90890793978], [0.009, 5.02352759781, 229129.79622501557], [0.008, 2.63272452796, 25138.7275326044], [0.008, 0.59154768044, 156954.01704032117], [0.008, 3.95681232703, 120417.67842777158], [0.008, 3.46882638388, 77616.69859140778], [0.008, 0.20349823136, 113455.51956041438], [0.008, 0.21724719953, 13541.42120249119], [0.008, 1.77719128692, 26076.8574413103], [0.009, 6.2187869044, 189853.99758261937], [0.007, 5.887681462, 51226.63067417859], [0.007, 0.61161547244, 158116.491744729], [0.008, 2.05860519043, 78149.27013603736], [0.007, 0.09500184933, 90989.16285949759], [0.007, 0.56541937862, 25985.94062330859], [0.007, 0.73212945216, 78469.89497315978], [0.007, 0.44088896603, 104127.26777059489], [0.008, 5.86653927002, 104454.70534051539], [0.007, 0.70585294359, 52177.29075585669], [0.009, 1.96929942879, 1272.6810256272], [0.01, 2.72173324175, 104276.83096772949], [0.007, 5.1631579803, 26189.8656598398], [0.007, 5.1707974073, 179172.74704605396], [0.008, 5.26981396126, 48847.6706268682], [0.008, 0.19880797043, 1.4844727083], [0.007, 6.26371276121, 52174.32181044009], [0.008, 0.98956493578, 16703.062133499], [0.007, 0.08448723866, 26098.9488418381], [0.008, 5.67030179581, 53029.0026649004], [0.007, 1.15333561308, 261988.40996783535], [0.007, 0.70724943755, 65717.22748563958], [0.007, 0.52800551865, 103814.80805420138], [0.008, 2.25202792521, 149756.7082481996], [0.007, 1.45586274187, 51841.950342379], [0.007, 2.28027029168, 54374.8936264354], [0.007, 1.96795602434, 103395.32341032618], [0.007, 0.91100826202, 27972.80430499159], [0.007, 6.04142381509, 155475.15046625677], [0.008, 0.66187102958, 156740.7179448832], [0.007, 0.94700216301, 202420.14928260216], [0.008, 0.34397341638, 78339.97549599818], [0.008, 1.99164711035, 84944.9342781222], [0.006, 3.16647388859, 76041.85279012559], [0.007, 1.18920934641, 104984.39630560997], [0.007, 6.12812258419, 53867.97195265079], [0.007, 2.68832841048, 156377.8556523106], [0.007, 4.82261895829, 52286.01260436779], [0.006, 2.12110075547, 148.0787244263], [0.006, 3.05937939252, 151.0476698429], [0.007, 0.09315209734, 220025.88923089797], [0.008, 5.56250511075, 52509.6622239178], [0.006, 2.57622376266, 224577.84272795677], [0.007, 2.65171386195, 220.4126424388], [0.006, 2.00091220299, 102018.41617342478], [0.007, 0.86158158633, 50444.6839302158], [0.007, 1.6199048214, 103189.13786188899], [0.006, 2.68512587119, 77520.71936418998], [0.006, 4.82671721903, 154308.6617452584], [0.006, 2.40727316051, 78800.51393681798], [0.006, 5.66286619587, 234261.43730907317], [0.007, 1.38238075345, 106470.37642667518], [0.007, 4.6219355895, 81591.84508100279], [0.007, 0.26927581545, 127098.90328117118], [0.006, 0.92172283144, 57503.2823915312], [0.006, 5.39808870469, 130020.03106399579], [0.006, 2.52761413373, 52817.21984488739], [0.006, 0.06817978613, 53757.76563143139], [0.007, 3.1354731214, 155460.9233722552], [0.005, 2.17501494391, 209232.91609768817], [0.005, 2.16759656006, 104241.40624507738], [0.006, 2.68409858369, 130005.80396999417], [0.005, 1.58914721681, 50167.24874398939], [0.005, 1.01687539089, 55638.05098901359], [0.007, 1.31888655444, 149846.1939960456], [0.005, 2.48117306579, 9384.8410080752], [0.005, 3.70948655428, 266540.3634648941], [0.007, 5.71513815276, 70383.6202713836], [0.006, 4.55015130253, 51955.39364070959], [0.005, 3.51602263966, 102975.83876645098], [0.005, 3.69945557546, 39450.3528483734], [0.005, 3.98232048303, 53771.99272543299], [0.006, 1.01394190869, 77940.20400806518], [0.005, 2.50588363651, 102872.74599223239], [0.007, 3.0124494408, 50264.6067999312], [0.006, 0.45316437598, 50064.15596977079], [0.007, 6.03933985106, 1485.9801210652], [0.005, 1.35734487293, 53814.87580033639], [0.005, 4.43939776623, 51534.3927214094], [0.005, 2.29075654159, 61560.64729122359], [0.005, 0.07896316759, 78057.52387628538], [0.005, 0.95484155225, 130907.4806982254], [0.005, 1.56485117164, 53399.624123927], [0.005, 4.55586232099, 52137.67324751059], [0.006, 4.34778590755, 156534.53239644598], [0.005, 3.7269181897, 128747.35003836859], [0.004, 0.56386565513, 189386.03259226496], [0.004, 2.67910077904, 107692.22499299659], [0.006, 6.10947724529, 104248.51979207818], [0.004, 3.99859010561, 104401.60918820098], [0.004, 0.51280078907, 54344.56676543099], [0.005, 4.1991766574, 129586.31932611899], [0.004, 5.91763059229, 52041.69723356339], [0.005, 3.1863383495, 181975.4247047054], [0.005, 0.99354989216, 1795.258443721], [0.004, 6.20030341798, 209762.60706278277], [0.004, 4.57601261459, 184834.07909520617], [0.006, 4.81632935419, 77741.13200662879], [0.004, 2.32553366031, 53265.515074342], [0.004, 4.83867556795, 52755.49387014719], [0.004, 0.47379105299, 105403.88094948517], [0.004, 2.62000942355, 50049.92887576919], [0.005, 1.01847704961, 52309.9153327334], [0.004, 5.12416312887, 52027.72755872209], [0.004, 0.26524339921, 50007.0458008658], [0.005, 0.30725353996, 207747.625390985], [0.004, 4.93794243881, 63786.3582415226], [0.004, 4.51168915835, 77956.15180375299], [0.005, 1.16733741695, 27566.76971563859], [0.004, 3.77703754152, 104501.17576343138], [0.004, 5.4485951193, 129971.55071751658], [0.005, 5.22593130125, 51329.7234483972], [0.004, 1.64237114391, 130446.14426677099], [0.004, 1.28513103275, 112545.88789950538], [0.004, 3.50115780256, 76152.05911134499], [0.004, 4.79032272131, 130432.88714897096], [0.004, 5.62786746084, 43981.5309499398], [0.004, 4.1268797505, 52024.75861330549], [0.004, 5.13202982684, 735.8765135318], [0.004, 4.64327471216, 76255.15188556358], [0.004, 1.34781477964, 106684.80895916879], [0.004, 2.34997151211, 177287.84588263658]], [[429151.362, 3.50169780393, 26087.9031415742], [146233.668, 3.14159265359, 0.0], [22675.295, 0.0151536688, 52175.8062831484], [10894.981, 0.48540174006, 78263.70942472259], [6353.462, 3.42943919982, 104351.61256629678], [2495.743, 0.16051210665, 130439.51570787099], [859.585, 3.18452433647, 156527.41884944518], [277.503, 6.21020774184, 182615.3219910194], [86.233, 2.95244391822, 208703.2251325936], [26.133, 5.97708962692, 234791.12827416777], [27.696, 0.29068938889, 27197.2816936676], [12.831, 3.37744320558, 53285.1848352418], [12.72, 0.53792661684, 24978.5245894808], [7.781, 2.71768609268, 260879.03141574195], [7.527, 3.58305121268, 51066.427731055], [6.183, 2.92383205004, 31749.2351907264], [5.453, 1.97318763801, 51116.4243529592], [3.394, 0.34761695275, 77154.33087262919], [3.481, 0.10739761667, 79373.087976816], [2.932, 5.95430013169, 57837.1383323006], [2.742, 0.98758439378, 25028.521211385], [2.126, 4.16352818018, 47623.8527860896], [2.286, 5.74036496396, 286966.9345573162], [2.38, 4.0021366655, 21535.9496445154], [1.651, 4.43606584681, 27043.5028831828], [1.523, 1.97926797181, 5661.3320491522], [1.518, 5.01636479848, 77204.32749453338], [1.398, 0.66375029294, 20426.571092422], [1.345, 3.39193943388, 103242.2340142034], [1.297, 5.34251327744, 37410.5672398786], [1.076, 0.95624460335, 50586.73338786459], [1.05, 3.00944151152, 26107.57290247399], [0.918, 1.89988871166, 1059.3819301892], [1.063, 1.28486292967, 53131.406024757], [0.905, 3.34776562702, 25558.2121764796], [0.929, 4.81159652409, 51646.11531805379], [0.782, 6.08817839271, 529.6909650946], [0.783, 1.5096269941, 41962.5207369374], [0.794, 2.16868396183, 63498.47038145279], [0.731, 0.92148918837, 73711.75592766379], [0.755, 4.1091063739, 26068.2333806744], [0.703, 2.22466530621, 10213.285546211], [0.922, 2.30268247092, 1109.3785520934], [0.739, 3.05842748947, 105460.99111839019], [0.681, 1.40695567526, 51749.20809227239], [0.841, 5.9320678781, 26084.0218062162], [0.616, 5.9536898243, 39609.6545831656], [0.61, 2.96796433797, 25132.3033999656], [0.721, 1.16472614778, 46514.4742339962], [0.638, 1.16941585214, 26091.7844769322], [0.633, 3.07427024064, 30639.856638633], [0.665, 2.47994200156, 313054.83769889036], [0.669, 4.10310179631, 72602.37737557039], [0.495, 0.14776350456, 129330.13715577759], [0.474, 2.61466823958, 32858.61374281979], [0.47, 5.04436148211, 13521.7514415914], [0.494, 0.0743055645, 28306.66024576099], [0.459, 5.81611579004, 51220.20654153979], [0.467, 5.56622114735, 4551.9534970588], [0.433, 2.10197184422, 24498.8302462904], [0.43, 3.91046377635, 76674.63652943878], [0.436, 1.46213785727, 43071.8992890308], [0.383, 6.05537830853, 52195.47604404819], [0.335, 0.5599660533, 23869.1460373874], [0.369, 4.43217995206, 22645.32819660879], [0.329, 2.59508442112, 65697.55772473979], [0.346, 2.03170085305, 27147.28507176339], [0.424, 0.29775934661, 1589.0728952838], [0.378, 5.09810178577, 53235.18821333759], [0.308, 3.30225015955, 54394.56338733519], [0.314, 2.40932519602, 83925.0414738748], [0.364, 5.87784809361, 58946.51688439399], [0.352, 0.879394819, 52156.1365222486], [0.352, 5.92675293084, 25661.3049506982], [0.31, 2.69873876637, 52171.9249477904], [0.345, 0.84406679212, 98690.28051714458], [0.358, 6.14890038263, 56727.7597802072], [0.248, 2.3439684006, 51535.90899683439], [0.286, 2.39648280163, 19804.8272915828], [0.338, 1.55189200325, 52705.49724824299], [0.239, 3.35169081927, 52168.69273614759], [0.234, 2.51108507067, 77308.10968311399], [0.229, 5.16737598091, 36301.18868778519], [0.245, 4.269960324, 19317.1925403286], [0.21, 3.16281965425, 29530.4780865396], [0.212, 5.33861521612, 15874.6175953632], [0.291, 4.22929240183, 52179.6876185064], [0.263, 4.64138649646, 69159.80243060499], [0.235, 5.08060846802, 59414.4818747484], [0.251, 1.9004750479, 14765.2390432698], [0.253, 4.21581970504, 79219.3091663312], [0.194, 5.05904557922, 51109.31080595839], [0.188, 3.90664116889, 48733.23133818299], [0.207, 2.89949362192, 7.1135470008], [0.179, 4.43018837604, 77837.11123384659], [0.223, 2.96569885227, 110012.94461544899], [0.176, 5.15204624857, 89586.37352302698], [0.215, 4.50903357312, 78793.40038981718], [0.173, 3.1849677146, 155418.04029735178], [0.205, 1.89888752382, 79323.09135491178], [0.175, 2.91183047213, 82815.66292178139], [0.165, 0.4912369438, 25035.6347583858], [0.183, 1.42148796836, 77734.01845962799], [0.158, 3.63030783882, 49957.0491789616], [0.201, 4.78711687782, 40853.142184844], [0.157, 3.02451795123, 52182.9198301492], [0.192, 5.5021820905, 339142.7408404646], [0.145, 3.39803928124, 45892.73043315699], [0.14, 2.64826898848, 16983.9961474566], [0.19, 3.05043439775, 27676.976036858], [0.169, 3.40273824751, 25874.6040461362], [0.148, 3.87588943419, 124778.18365871879], [0.134, 0.9493002873, 25021.4076643842], [0.174, 5.88326736492, 136100.84775702318], [0.138, 2.34393108627, 1052.2683831884], [0.163, 6.05484015332, 26080.78959457339], [0.142, 3.0720910315, 3442.5749449654], [0.137, 2.10984857727, 426.598190876], [0.126, 1.8943260926, 1066.49547719], [0.122, 1.04298624291, 45405.0956819028], [0.135, 4.66414339767, 25448.00585526019], [0.115, 2.8136585152, 78283.37918562238], [0.114, 4.47315411813, 68050.42387851159], [0.134, 5.35393682799, 213.299095438], [0.125, 1.61827845372, 129380.13377768178], [0.158, 5.53788931475, 9103.9069941176], [0.116, 0.5007523578, 102762.53967101299], [0.136, 0.245596581, 50057.04242277], [0.124, 2.20590858584, 33326.5787331742], [0.106, 6.15493608726, 11322.6640983044], [0.123, 4.432657352, 639.897286314], [0.137, 3.93191153638, 78244.0396638228], [0.138, 4.46503235172, 51123.53789995999], [0.119, 3.64440622006, 26617.5941066688], [0.099, 6.18313188027, 55618.3812281138], [0.101, 5.52733987069, 103396.01282468818], [0.107, 4.79994153405, 6770.7106012456], [0.096, 0.01853371395, 80482.46652890938], [0.115, 1.57423656512, 66941.04532641819], [0.111, 1.00588061631, 78267.59076008058], [0.121, 5.90839328752, 26095.016688575], [0.095, 5.74549458142, 78259.82808936459], [0.1, 1.90676485528, 103292.23063610759], [0.107, 5.73194510449, 131548.89425996438], [0.098, 5.49064814924, 77623.81213840858], [0.112, 0.87682090108, 74821.13447975718], [0.09, 5.82373560803, 955.5997416086], [0.093, 0.15279056716, 78256.59587772179], [0.1, 1.21759895953, 104881.30353139139], [0.087, 4.20722631983, 12566.1516999828], [0.088, 5.00176994115, 38519.945791972], [0.086, 1.23375034376, 26301.2022370122], [0.085, 1.88852891739, 77197.21394753258], [0.082, 3.75652571856, 99799.65906923798], [0.089, 4.95684147986, 105410.99449648599], [0.096, 5.10490831351, 52389.1053785864], [0.075, 2.50722139185, 2218.7571041868], [0.093, 6.00229475799, 53764.8791784322], [0.073, 6.11603054445, 78270.82297172339], [0.091, 4.67762120545, 155468.036919256], [0.08, 1.9856425664, 7238.6755916], [0.089, 1.62820970873, 6283.0758499914], [0.073, 5.93728826025, 108903.56606335558], [0.087, 2.61787684648, 162188.75089859738], [0.092, 2.55298032665, 85034.42002596818], [0.076, 4.44230028342, 38654.05484155699], [0.07, 2.07147354168, 25934.1243310894], [0.078, 1.79664677749, 23969.1392811958], [0.068, 2.15267768357, 64607.84893354619], [0.069, 1.37976390686, 77211.44104153418], [0.08, 0.75440631101, 2118.7638603784], [0.06, 5.95179539253, 18849.2275499742], [0.058, 0.98126270514, 51962.5071877104], [0.057, 0.63495768344, 150866.08680029298], [0.063, 0.40577774917, 76044.9523205358], [0.061, 3.20728040856, 76144.94556434419], [0.053, 1.34424134476, 51742.09454527159], [0.052, 4.11944860444, 71492.99882347698], [0.054, 2.23964604878, 44937.1306915484], [0.064, 1.19785741966, 64741.95798313119], [0.058, 6.22316473811, 181505.94343892598], [0.06, 2.12727479557, 88476.99497093359], [0.049, 1.76854754615, 13655.8604911764], [0.049, 1.27506119902, 26727.8004278882], [0.048, 2.04581990152, 78477.00852016058], [0.05, 4.62948267835, 93028.94846799239], [0.055, 5.47526225139, 62389.09182935939], [0.047, 4.99113735496, 27154.3986187642], [0.055, 4.79762177368, 94138.32702008578], [0.051, 5.56459812422, 52602.4044740244], [0.055, 1.20462687751, 95247.70557217918], [0.05, 2.21530140501, 365230.6439820388], [0.049, 0.68636780387, 104331.94280539699], [0.047, 4.30403626352, 23754.70674870219], [0.042, 3.32657201754, 25654.19140369739], [0.051, 1.08082309375, 25619.9381512198], [0.047, 2.79966035046, 26514.5013324502], [0.04, 2.9193266898, 81706.28436968799], [0.04, 4.65660434525, 129909.82474277639], [0.041, 4.21875403274, 130969.20667296558], [0.05, 1.46644208786, 120226.23016165999], [0.047, 3.77053215629, 25973.46385288896], [0.047, 2.82867670887, 25668.418497699], [0.046, 4.14427477722, 125887.56221081219], [0.039, 4.06156914485, 104355.49390165479], [0.037, 3.22245380356, 51322.60990139639], [0.039, 2.26439106521, 129483.91596626239], [0.04, 0.54598734169, 105307.21230790539], [0.035, 5.5389589782, 433.7117378768], [0.038, 6.0532946799, 419.4846438752], [0.039, 2.72082598885, 79852.78232000639], [0.035, 1.72937228501, 131498.89763806018], [0.034, 0.83611265968, 12432.0426503978], [0.032, 4.45254278754, 50579.61984086379], [0.042, 1.4145702213, 181555.94006083018], [0.032, 4.7334998692, 52026.2430860138], [0.036, 5.60766535694, 188276.6540401716], [0.033, 3.98525990131, 78050.41032928458], [0.032, 5.86059322955, 104371.28232719658], [0.04, 5.45287901295, 27140.17152476259], [0.031, 5.17982917253, 71025.0338331226], [0.039, 3.34206786809, 26202.34243025941], [0.029, 1.94010215318, 103821.92160120218], [0.036, 0.65969730203, 51756.3216392732], [0.03, 0.82864967511, 46848.3301747656], [0.038, 0.80809536333, 151975.46535238638], [0.029, 2.8922779253, 104358.72611329758], [0.029, 4.49728060011, 103299.34418310839], [0.035, 1.48121158024, 85502.38501632259], [0.028, 5.48224379273, 91785.46086631398], [0.03, 3.11318420566, 106570.36967048359], [0.034, 4.26548581082, 90829.86112470538], [0.031, 5.67743476614, 117873.36400788819], [0.028, 4.97598935775, 103285.11708910679], [0.033, 5.18111128318, 114564.89811250778], [0.027, 0.88054842818, 157636.79740153858], [0.026, 2.57652351573, 134991.4692049298], [0.029, 2.64144900778, 26137.8997634784], [0.028, 3.23650761988, 128850.44281258718], [0.03, 6.03255187776, 32370.9789915656], [0.029, 3.23415692694, 104344.49901929598], [0.032, 3.21019810469, 28421.0995344462], [0.024, 2.52484264487, 1596.1864422846], [0.024, 0.27171495756, 24491.71669928959], [0.026, 1.20902208843, 44181.27784112419], [0.027, 5.71639245109, 111122.32316754239], [0.031, 3.68314656803, 28206.6670019526], [0.03, 2.36500429653, 103711.71527998279], [0.022, 4.4754796526, 77829.99768684579], [0.022, 5.93080138405, 98068.53671630539], [0.021, 4.45887879737, 52815.7035694624], [0.022, 1.51276188597, 35191.8101356918], [0.025, 3.67349275753, 853.196381752], [0.021, 5.21045664362, 104564.91166173479], [0.023, 3.52400873624, 100909.03762133139], [0.021, 0.91705070968, 97580.90196505119], [0.021, 3.93681460045, 25455.119402261], [0.02, 2.51210823023, 104347.73123093879], [0.027, 2.35592427305, 78690.30761559859], [0.02, 5.09828683951, 52099.5402118728], [0.019, 3.37799607043, 45494.58142974879], [0.021, 1.47540794459, 115674.27666460119], [0.02, 1.17802900406, 155997.72788435058], [0.025, 4.46628547605, 146314.13330323418], [0.023, 2.29934592297, 33967.99229491319], [0.02, 0.67974525638, 24505.94379329119], [0.02, 5.32443861216, 25234.70675982219], [0.018, 4.83011056299, 50593.84693486539], [0.02, 2.19515561332, 51639.00177105299], [0.02, 4.54362105039, 26037.90651966999], [0.018, 3.66945372389, 176953.98994186718], [0.022, 2.36457126914, 143961.2671494624], [0.02, 1.91605933726, 53242.3017603384], [0.017, 3.65797302958, 25938.3399444396], [0.017, 4.72356636284, 39743.7636327506], [0.017, 4.6338502937, 70269.18098269838], [0.023, 3.47296935942, 102132.85546210999], [0.018, 3.89075237232, 77844.22478084739], [0.016, 1.39550514982, 119116.85160956658], [0.017, 3.19413997784, 2333.196392872], [0.018, 0.10505670252, 52290.24557183361], [0.015, 5.66501892458, 7994.5284420242], [0.017, 5.59546671313, 60055.89543648739], [0.015, 3.35297565546, 58458.88213313979], [0.019, 1.88696722328, 1581.959348283], [0.016, 3.51339563149, 26094.53170047421], [0.015, 5.8779684464, 105940.68546158058], [0.014, 4.90677373859, 632.7837393132], [0.017, 2.94915136654, 18093.37469954999], [0.016, 3.30923893089, 26507.38778544939], [0.017, 2.79032831551, 124156.43985787958], [0.017, 2.32026007183, 53228.07466633679], [0.015, 1.27735280723, 103925.01437542078], [0.014, 0.47578456087, 104138.31347085879], [0.014, 4.33486658309, 18207.81398823521], [0.014, 6.25912081869, 102232.84870591838], [0.016, 5.19489448771, 52022.0274726636], [0.015, 3.36079341013, 26241.681952059], [0.016, 0.62153007569, 71980.63357473118], [0.016, 0.34240403974, 26081.27458267419], [0.015, 4.43868814661, 207643.8432024044], [0.017, 3.44704905407, 183724.7005431128], [0.016, 0.08608453345, 77410.51304297059], [0.013, 4.45469253351, 90695.75207512038], [0.014, 5.26281612633, 391318.54712361295], [0.013, 2.28140033187, 26521.614879451], [0.013, 4.75564434373, 536.8045120954], [0.013, 3.72895039092, 130419.8459469712], [0.015, 6.26388997196, 54509.0026760204], [0.014, 1.32802909705, 20760.4270331914], [0.012, 0.9618285308, 157057.10981453978], [0.017, 3.00168933222, 207593.8465805002], [0.016, 0.54167157981, 52061.36699446317], [0.016, 3.76004077423, 178063.3684939606], [0.012, 0.50356687265, 5327.4761083828], [0.014, 0.65739903621, 84546.78527471398], [0.014, 2.64166191335, 42153.969003049], [0.011, 1.8737562471, 97112.93697469679], [0.012, 5.28144640817, 26610.48055966799], [0.012, 1.02715379165, 130012.91751699499], [0.011, 4.76973198116, 157586.80077963436], [0.011, 4.03645617358, 26011.6370702986], [0.012, 1.0377409492, 116917.76426627958], [0.011, 2.34762914711, 214364.55718174577], [0.013, 5.96105286469, 49527.35145767539], [0.013, 0.38784055589, 54294.57014352679], [0.011, 0.80279403389, 130443.39704322898], [0.012, 1.91910219792, 140652.80125408198], [0.011, 4.82050468552, 647.0108333148], [0.012, 3.95784286024, 72936.23331633979], [0.01, 2.38363926963, 52698.38370124219], [0.012, 5.21962000846, 25551.09862947879], [0.011, 1.24041943634, 51543.0225438352], [0.01, 1.23610986711, 76667.52298243798], [0.011, 5.27116774881, 155571.81910783658], [0.011, 5.98419309923, 107794.1875112622], [0.01, 0.55390559777, 26941.0995233262], [0.01, 1.49161844344, 52329.58509363319], [0.011, 4.68946178137, 26190.99591579279], [0.009, 5.63092803389, 27684.0895838588], [0.011, 6.09445403088, 26555.8681319286], [0.01, 0.09698975387, 29416.03879785439], [0.01, 0.72339727974, 22759.76748529401], [0.009, 1.96066446481, 51528.79544983359], [0.009, 4.28124553384, 121335.60871375339], [0.008, 4.26127907796, 182085.63102592478], [0.009, 3.34775259107, 22747.2907148744], [0.008, 1.25238578145, 129387.24732468258], [0.008, 3.86388656969, 24864.08530079559], [0.01, 1.34737181255, 2648.454825473], [0.008, 5.72234642822, 161079.37234650398], [0.009, 5.45351693096, 104778.21075717278], [0.011, 2.85637796333, 52643.7712735028], [0.008, 3.27339488052, 27311.72098235281], [0.01, 1.31510855953, 52125.80966124419], [0.009, 1.17621493154, 172402.0364448084], [0.008, 2.43297081646, 131395.11544947958], [0.009, 0.46231104626, 26624.70765366959], [0.007, 4.93485551094, 48835.19385644859], [0.007, 5.92438953036, 130446.62925487179], [0.007, 5.1510763867, 149.5631971346], [0.008, 0.00476652316, 209812.60368468694], [0.008, 5.0655882241, 61279.713277266], [0.009, 0.56618846666, 522.5774180938], [0.007, 2.63009300708, 130459.18546877075], [0.008, 2.0895971735, 25565.3257234804], [0.009, 5.37562306264, 170049.1702910366], [0.008, 4.055541562, 156100.82065856917], [0.007, 5.58541192959, 129799.61842155698], [0.007, 1.76385898252, 129373.02023068098], [0.006, 4.86066957244, 7880.08915333899], [0.008, 4.47849277972, 10021.8372800994], [0.006, 5.30561035943, 77726.90491262719], [0.006, 1.27631388714, 103917.90082841998], [0.006, 4.61189217781, 157483.01859105378], [0.006, 3.96170038596, 123668.80510662538], [0.006, 1.33523648266, 78903.60671103658], [0.006, 0.5570238657, 204151.27163553477], [0.005, 1.55562437906, 26294.08869001139], [0.006, 2.05839183005, 130652.81480330898], [0.005, 5.58094407959, 130435.63437251298], [0.005, 1.47580092631, 78114.14622758799], [0.006, 4.10195998301, 51707.84129279399], [0.005, 5.4235609608, 3340.6124266998], [0.005, 0.71252148739, 103932.12792242158], [0.005, 3.31021043385, 111590.2881578968], [0.005, 5.18242316734, 13362.4497067992], [0.007, 0.02670007799, 130432.40216087017], [0.006, 5.6496176752, 52225.8029050526], [0.006, 0.24412111381, 128220.75860368418], [0.005, 4.45623339313, 145204.75475114078], [0.006, 5.59932602145, 154938.34595416137], [0.005, 0.44843767302, 203041.8930834414], [0.006, 0.61515143577, 126996.94076290558], [0.006, 3.76267562514, 110634.68841628819], [0.005, 3.87958020217, 25440.89230825939], [0.006, 6.1289854729, 132658.27281205778], [0.006, 1.78589858446, 76681.75007643958], [0.006, 3.31942003464, 25881.717593137], [0.005, 4.83610476376, 78417.48823520739], [0.005, 1.62128192664, 65831.6667743248], [0.006, 5.79832326006, 150244.3429994538], [0.004, 4.90210493212, 123200.84011627098], [0.004, 0.04822157393, 71582.48457132299], [0.004, 1.25993980368, 233731.7463439786], [0.004, 4.09490053686, 143005.6674078538], [0.004, 0.60263195052, 6681.2248533996], [0.005, 3.53504145685, 130226.21661243298], [0.004, 2.52659732174, 132028.58860315479], [0.004, 5.09490146272, 76.2660712756], [0.004, 1.41880070183, 31415.379249957], [0.005, 5.67226040777, 68241.8721446232], [0.006, 6.07125845396, 1478.8665740644], [0.004, 2.90387262796, 128320.75184749259], [0.004, 3.16756186361, 78378.1487134078], [0.004, 0.3258927484, 52595.29092702359], [0.005, 1.7809608149, 116783.65521669458], [0.004, 4.99518857973, 166740.70439565618], [0.005, 4.90494970331, 79330.20490191258], [0.004, 5.2343783992, 206.1855484372], [0.004, 2.64302747396, 75615.25459924959], [0.004, 0.8140714413, 75930.51303185058], [0.004, 0.53239895977, 156507.7490885454], [0.004, 4.27504704332, 956.2891559706], [0.004, 3.01307667234, 80596.9058175946], [0.003, 4.15170143655, 25867.49049913539], [0.003, 4.02158764895, 52712.61079524379], [0.004, 5.97032773544, 78731.674415077], [0.004, 5.13753166239, 137678.191299471], [0.003, 5.3837822517, 79315.97780791098], [0.003, 4.90402266218, 77630.92568540938], [0.004, 3.35681065144, 80382.47328510099], [0.004, 3.34724303278, 55503.94193942859], [0.003, 4.39477038963, 102755.42612401219], [0.004, 2.19880101386, 137210.22630911658], [0.003, 1.9219127492, 87367.61641884019], [0.004, 3.62687237484, 78149.27013603736], [0.003, 5.34278285975, 77616.69859140778], [0.003, 4.04927793779, 183145.012956114], [0.003, 2.33740424416, 86143.79857806159], [0.003, 0.29051326311, 66653.15746634839], [0.004, 3.19530187424, 103498.41618454478], [0.003, 1.8367025094, 78187.44335344699], [0.004, 6.08402133763, 233681.74972207437], [0.003, 5.44799723236, 52609.51802102519], [0.003, 3.88568044923, 156531.3001848032], [0.003, 1.56467339056, 183674.70392120857], [0.003, 2.37223694472, 11610.5519583742], [0.004, 2.36349454401, 3328.13565628019], [0.003, 2.21015804942, 130866.11389874699], [0.003, 1.00111385284, 12546.481939083], [0.003, 5.04736992413, 167850.0829477496], [0.004, 2.74224804458, 133882.09065283637], [0.003, 6.04124419781, 16066.0658614748], [0.003, 2.00390511344, 25984.8103673556], [0.003, 3.5845123152, 19406.6782881746], [0.003, 5.58865591583, 52381.99183158559], [0.003, 5.49839860031, 78786.28684281638], [0.003, 2.3525187781, 50483.640613646], [0.003, 2.23638545873, 417406.4502651872], [0.003, 0.89820153238, 182188.72380014337], [0.003, 2.18659555288, 196137.07343261078], [0.003, 1.23213629886, 183570.921732628], [0.003, 0.65362427623, 1162.4747044078], [0.003, 2.37265737062, 141762.17980617538], [0.003, 2.3716713866, 103.0927742186], [0.003, 3.43071585489, 51219.51712717779], [0.002, 5.43620933898, 240452.46032331997], [0.002, 4.79210725186, 64901.25971792339], [0.003, 0.58543714627, 136722.59155786238], [0.002, 3.65273296014, 53029.0026649004], [0.003, 1.40305085463, 52278.89905736699], [0.003, 2.91888451759, 235900.50682626115], [0.002, 5.24862580724, 32769.1279949738], [0.003, 0.92825301327, 29428.515568274], [0.002, 1.28026650043, 96357.08412427259], [0.003, 3.47745075021, 49842.60989027639], [0.003, 1.27522510736, 44295.7171298094], [0.003, 2.06356044829, 181659.72224941078], [0.002, 1.82577636633, 181026.24909573558], [0.002, 3.73653346143, 48847.6706268682], [0.002, 4.29258038531, 198489.9395863826], [0.003, 1.30423082531, 26237.46633870879], [0.002, 5.6240507486, 112231.70171963578], [0.003, 4.3496990758, 78213.71280281838], [0.002, 4.40950391344, 155475.15046625677], [0.002, 5.10859116787, 27669.86248985719], [0.002, 2.40342983563, 53771.99272543299], [0.002, 1.76898437388, 104505.39137678158], [0.002, 1.13321786137, 208173.534167499], [0.003, 4.95012664609, 102769.65321801379], [0.002, 2.37593594042, 51951.46148744649], [0.003, 0.6555617912, 1692.1656695024], [0.002, 1.65727778641, 163766.0944410452]], [[11830.934, 4.79065585784, 26087.9031415742], [1913.516, 0.0, 0.0], [1044.801, 1.21216540536, 52175.8062831484], [266.213, 4.43418336532, 78263.70942472259], [170.28, 1.62255638714, 104351.61256629678], [96.3, 4.80023692017, 130439.51570787099], [44.692, 1.60758267772, 156527.41884944518], [18.316, 4.66904655377, 182615.3219910194], [6.927, 1.4340488893, 208703.2251325936], [2.479, 4.47495202955, 234791.12827416777], [1.739, 1.830800396, 27197.2816936676], [0.852, 1.22749255198, 260879.03141574195], [0.641, 4.87358642253, 53285.1848352418], [0.301, 1.9609892443, 51066.427731055], [0.306, 5.03912693671, 24978.5245894808], [0.284, 4.25874901943, 286966.9345573162], [0.235, 3.14549432371, 51116.4243529592], [0.232, 4.22847849119, 31749.2351907264], [0.186, 5.05207772442, 77154.33087262919], [0.143, 5.71074961492, 21535.9496445154], [0.114, 5.6223246077, 27043.5028831828], [0.123, 1.51066137419, 79373.087976816], [0.093, 1.83776226489, 103242.2340142034], [0.081, 0.85802178989, 57837.1383323006], [0.079, 5.50027152752, 47623.8527860896], [0.093, 1.01040170383, 313054.83769889036], [0.058, 2.35944147105, 53131.406024757], [0.074, 2.28645155343, 50586.73338786459], [0.049, 1.7819375356, 28306.66024576099], [0.058, 5.88387132512, 77204.32749453338], [0.06, 0.54679388547, 37410.5672398786], [0.046, 5.77182292982, 529.6909650946], [0.052, 3.58488737294, 25558.2121764796], [0.061, 1.64891174657, 20426.571092422], [0.043, 6.15538236294, 51646.11531805379], [0.042, 4.89875940528, 129330.13715577759], [0.036, 5.61094806248, 22645.32819660879], [0.033, 4.34189175312, 32858.61374281979], [0.037, 4.50512068847, 26107.57290247399], [0.032, 1.99466664427, 25132.3033999656], [0.03, 0.7660773863, 5661.3320491522], [0.027, 4.8718083816, 54394.56338733519], [0.029, 5.66168505554, 26068.2333806744], [0.025, 3.31115218239, 1059.3819301892], [0.029, 2.70280425915, 41962.5207369374], [0.029, 3.56940606994, 63498.47038145279], [0.029, 4.01947170286, 339142.7408404646], [0.028, 0.80200569507, 39609.6545831656], [0.023, 5.30820497885, 23869.1460373874], [0.024, 4.8636944533, 46514.4742339962], [0.027, 3.32081057071, 10213.285546211], [0.03, 1.15631768661, 26084.0218062162], [0.024, 2.71284750937, 26091.7844769322], [0.021, 5.85119251529, 25874.6040461362], [0.026, 3.11971794265, 43071.8992890308], [0.023, 1.1425826685, 58946.51688439399], [0.021, 4.78965226125, 51220.20654153979], [0.025, 5.17153436907, 76674.63652943878], [0.02, 6.05659966832, 25028.521211385], [0.017, 4.06375348164, 51535.90899683439], [0.019, 2.26589689692, 72602.37737557039], [0.019, 2.02802084878, 73711.75592766379], [0.02, 2.44092663198, 51749.20809227239], [0.017, 1.67702029587, 155418.04029735178], [0.018, 2.11191340126, 26617.5941066688], [0.019, 0.32685450395, 4551.9534970588], [0.016, 4.0210564377, 105460.99111839019], [0.014, 2.35860855509, 26080.78959457339], [0.013, 3.28426450224, 25661.3049506982], [0.016, 2.09223320909, 103292.23063610759], [0.013, 2.08475100066, 49957.0491789616], [0.014, 5.66400816218, 48733.23133818299], [0.013, 1.65023710844, 26095.016688575], [0.015, 5.43792291298, 25973.46385288896], [0.012, 5.15541566845, 79219.3091663312], [0.012, 2.93766606728, 33326.5787331742], [0.011, 5.16599347976, 15874.6175953632], [0.015, 3.49521469034, 83925.0414738748], [0.012, 1.33980027148, 77308.10968311399], [0.012, 2.74476655782, 19317.1925403286], [0.014, 5.48457159802, 98690.28051714458], [0.012, 6.17629016531, 36301.18868778519], [0.012, 5.16549673414, 1589.0728952838], [0.01, 3.19718718931, 24498.8302462904], [0.01, 3.10957426655, 16983.9961474566], [0.01, 2.67818215946, 77734.01845962799], [0.012, 1.64438976704, 26202.34243025941], [0.011, 6.12421691815, 52705.49724824299], [0.01, 5.42117419251, 14765.2390432698], [0.011, 1.59577581724, 50057.04242277], [0.012, 2.44342322463, 213.299095438], [0.011, 4.59333229552, 56727.7597802072], [0.008, 2.22267415318, 6283.0758499914], [0.01, 3.63881306668, 65697.55772473979], [0.008, 0.85708473896, 365230.6439820388], [0.01, 3.56346926379, 53235.18821333759], [0.009, 3.03935867498, 78793.40038981718], [0.008, 2.05186284069, 30639.856638633], [0.008, 6.07959531374, 59414.4818747484], [0.007, 1.48753095657, 29530.4780865396], [0.007, 0.54370332724, 38519.945791972], [0.008, 5.99792913268, 7.1135470008], [0.009, 6.08426293157, 69159.80243060499], [0.007, 1.3551301451, 82815.66292178139], [0.008, 3.00335450338, 40853.142184844], [0.007, 3.40544433462, 1066.49547719], [0.007, 5.80782632115, 45405.0956819028], [0.007, 3.82318715536, 1052.2683831884], [0.006, 4.57200111034, 55618.3812281138], [0.006, 4.85942618671, 52168.69273614759], [0.008, 0.34211699258, 79323.09135491178], [0.006, 0.6782367506, 110012.94461544899], [0.007, 4.12285655199, 45892.73043315699], [0.007, 5.41918774642, 1109.3785520934], [0.007, 3.14407932401, 51962.5071877104], [0.006, 5.13879522396, 76044.9523205358], [0.007, 2.06447590782, 124778.18365871879], [0.006, 1.61443478349, 3442.5749449654], [0.005, 2.013597281, 27676.976036858], [0.007, 5.49596353318, 23754.70674870219], [0.006, 0.7144527205, 27147.28507176339], [0.005, 5.5815366372, 68050.42387851159], [0.006, 4.72387999717, 52290.24557183361], [0.005, 1.65565332809, 80482.46652890938], [0.005, 4.67655631038, 181505.94343892598], [0.005, 5.35730277715, 12566.1516999828], [0.005, 2.24953488234, 52061.36699446317], [0.004, 1.93085125724, 52156.1365222486], [0.006, 5.23350745087, 129380.13377768178], [0.005, 6.27908880897, 66941.04532641819], [0.006, 0.86124028508, 52195.47604404819], [0.004, 0.23100295125, 89586.37352302698], [0.005, 4.23944686799, 103396.01282468818], [0.004, 0.29398633221, 51109.31080595839], [0.005, 0.38451698643, 955.5997416086], [0.005, 5.7581296517, 104881.30353139139], [0.005, 3.78671774559, 52171.9249477904], [0.004, 5.32828531774, 25448.00585526019], [0.005, 3.20016226905, 426.598190876], [0.005, 3.86489045633, 9103.9069941176], [0.004, 0.62543334322, 11322.6640983044], [0.004, 6.07508617692, 2118.7638603784], [0.004, 2.43638238426, 74821.13447975718], [0.004, 5.29735530203, 52179.6876185064], [0.003, 3.19112063073, 13521.7514415914], [0.004, 5.09850398144, 77837.11123384659], [0.004, 1.81128771043, 102762.53967101299], [0.004, 2.92685125689, 639.897286314], [0.004, 4.37998582536, 52182.9198301492], [0.004, 0.905624683, 77623.81213840858], [0.004, 3.40653389629, 105410.99449648599], [0.004, 5.56139758889, 26301.2022370122], [0.003, 3.84817111044, 2218.7571041868], [0.004, 3.40685398189, 52389.1053785864], [0.003, 3.64497587259, 64607.84893354619], [0.003, 4.90907522926, 99799.65906923798], [0.003, 0.33551297325, 13655.8604911764], [0.003, 4.38738526963, 108903.56606335558], [0.003, 2.7199654281, 38654.05484155699], [0.003, 5.2163956913, 150866.08680029298], [0.003, 5.79669813464, 131548.89425996438], [0.003, 4.24481036893, 136100.84775702318], [0.003, 4.74285528385, 53764.8791784322], [0.003, 5.12230469501, 32370.9789915656], [0.003, 4.9197929909, 18849.2275499742], [0.003, 1.21305125502, 105307.21230790539], [0.002, 2.6174140723, 71492.99882347698], [0.002, 5.29927753161, 64741.95798313119], [0.002, 2.59250638038, 155468.036919256], [0.002, 5.60083003625, 26514.5013324502], [0.003, 4.14284031224, 85034.42002596818], [0.002, 3.04958336441, 93028.94846799239], [0.003, 6.16142033746, 78477.00852016058], [0.003, 4.49779099, 76144.94556434419], [0.002, 2.74114399659, 130969.20667296558], [0.002, 6.18606575651, 51123.53789995999], [0.003, 1.68659744145, 28421.0995344462], [0.002, 1.39891525246, 81706.28436968799], [0.002, 1.36487993355, 79852.78232000639], [0.002, 0.86961235954, 129483.91596626239], [0.002, 0.16105302705, 25021.4076643842], [0.002, 0.20969999844, 19804.8272915828], [0.002, 0.99320491085, 162188.75089859738], [0.002, 3.94039306142, 391318.54712361295], [0.002, 1.80783236802, 23969.1392811958], [0.002, 5.1209935622, 51322.60990139639], [0.002, 2.80140642811, 62389.09182935939], [0.002, 2.60965333457, 52602.4044740244], [0.002, 2.72257468038, 7994.5284420242], [0.002, 5.84222491614, 103821.92160120218], [0.002, 6.0451587872, 25035.6347583858], [0.001, 2.34997564292, 85502.38501632259], [0.001, 0.17409967102, 131498.89763806018], [0.001, 3.11496551907, 25934.1243310894], [0.002, 5.12532278095, 78267.59076008058], [0.001, 5.49175475674, 104331.94280539699], [0.001, 0.44808516059, 78050.41032928458], [0.002, 1.92656028088, 102132.85546210999], [0.002, 1.93198050022, 853.196381752], [0.001, 2.42972717822, 94138.32702008578], [0.002, 5.13550087739, 6770.7106012456], [0.001, 4.6544150087, 78259.82808936459], [0.001, 3.9968745549, 188276.6540401716], [0.001, 4.3906969233, 104371.28232719658], [0.001, 1.64083661387, 78283.37918562238], [0.001, 1.50558734911, 78378.1487134078], [0.002, 6.27597485867, 91785.46086631398], [0.001, 4.00786092689, 78244.0396638228], [0.001, 1.70741856509, 28206.6670019526], [0.001, 5.31900403501, 78149.27013603736], [0.001, 1.40205887414, 44937.1306915484], [0.001, 1.03752853909, 104347.73123093879], [0.001, 0.66520680194, 419.4846438752], [0.001, 2.46437105095, 104355.49390165479], [0.001, 0.81835364761, 35191.8101356918], [0.001, 0.3378067084, 88476.99497093359], [0.001, 6.0834623193, 70269.18098269838], [0.001, 1.86810476133, 125887.56221081219], [0.001, 2.1046897466, 25619.9381512198], [0.001, 3.99494842792, 71025.0338331226], [0.001, 0.57714874874, 71980.63357473118], [0.001, 5.66312942513, 97580.90196505119], [0.001, 3.06688416266, 129909.82474277639], [0.001, 5.66709359706, 433.7117378768], [0.001, 0.91634007063, 103925.01437542078], [0.001, 6.02359186416, 181555.94006083018], [0.001, 1.44980129997, 26727.8004278882], [0.001, 1.4544292039, 207593.8465805002], [0.001, 1.12941846578, 60055.89543648739], [0.001, 1.16964771504, 134991.4692049298]], [[235.423, 0.35387524604, 26087.9031415742], [160.537, 0.0, 0.0], [18.904, 4.36275460261, 52175.8062831484], [6.376, 2.50715381439, 78263.70942472259], [4.58, 6.14257817571, 104351.61256629678], [3.061, 3.12497552681, 130439.51570787099], [1.732, 6.26642412058, 156527.41884944518], [0.857, 3.07673166705, 182615.3219910194], [0.384, 6.14815319932, 208703.2251325936], [0.159, 2.9243737832, 234791.12827416777], [0.062, 5.97292432097, 260879.03141574195], [0.054, 3.31612529961, 27197.2816936676], [0.023, 2.74287679452, 286966.9345573162], [0.017, 0.77798463435, 24978.5245894808], [0.012, 6.24116133415, 53285.1848352418], [0.008, 5.79551081392, 313054.83769889036], [0.006, 5.81555175073, 31749.2351907264], [0.004, 4.67212195693, 51116.4243529592], [0.004, 3.36833718999, 77154.33087262919], [0.003, 0.26522113546, 103242.2340142034], [0.003, 0.79794705473, 27043.5028831828], [0.004, 0.82832725003, 21535.9496445154], [0.002, 2.57068697582, 339142.7408404646], [0.002, 1.8230939704, 1109.3785520934], [0.002, 0.74986942696, 47623.8527860896], [0.002, 3.61692083154, 50586.73338786459], [0.002, 4.70766241226, 51066.427731055], [0.001, 3.3368854909, 129330.13715577759], [0.001, 2.64641192612, 57837.1383323006], [0.001, 4.93247555987, 25558.2121764796], [0.002, 5.00344393497, 20426.571092422], [0.002, 4.80841415889, 25028.521211385], [0.002, 5.85039338716, 1059.3819301892], [0.001, 1.85116662745, 37410.5672398786], [0.002, 3.97317842825, 25132.3033999656], [0.001, 2.144942913, 79373.087976816], [0.001, 2.53223701416, 46514.4742339962], [0.001, 5.8492163243, 5661.3320491522], [0.001, 3.81958470276, 53131.406024757], [0.001, 1.05410669937, 1589.0728952838], [0.001, 1.39436798574, 51646.11531805379], [0.001, 0.36358097174, 22645.32819660879], [0.001, 2.7660997227, 28306.66024576099], [0.001, 3.67689055309, 4551.9534970588], [0.001, 5.39398540975, 32858.61374281979], [0.001, 3.7357912717, 24498.8302462904], [0.001, 0.60289607514, 26068.2333806744], [0.001, 5.78167324673, 26107.57290247399], [0.001, 3.81913361795, 26091.7844769322], [0.001, 5.64455351094, 365230.6439820388], [0.001, 4.87981157471, 10213.285546211], [0.001, 2.44816565966, 26084.0218062162], [0.0, 3.45284067711, 105460.99111839019]], [[4.276, 1.74579932115, 26087.9031415742], [1.023, 3.14159265359, 0.0], [0.425, 4.03419509143, 52175.8062831484], [0.257, 0.20643590425, 78263.70942472259], [0.116, 3.75237354024, 104351.61256629678], [0.073, 1.18210375402, 130439.51570787099], [0.051, 4.54581086194, 156527.41884944518], [0.031, 1.44226942756, 182615.3219910194], [0.016, 4.56372679459, 208703.2251325936], [0.008, 1.34684622635, 234791.12827416777], [0.003, 4.40269422669, 260879.03141574195], [0.001, 4.69096566687, 27197.2816936676], [0.001, 1.16082903756, 286966.9345573162], [0.0, 1.44918128781, 24978.5245894808], [0.0, 4.1804627869, 313054.83769889036]], [[0.106, 3.94555784256, 26087.9031415742], [0.075, 3.14159265359, 0.0], [0.022, 1.30514874546, 52175.8062831484], [0.007, 4.99717136857, 78263.70942472259], [0.004, 2.05662545278, 104351.61256629678], [0.002, 5.43162058632, 130439.51570787099], [0.001, 2.68052517331, 156527.41884944518], [0.001, 6.00841870284, 182615.3219910194], [0.0, 2.85941734701, 208703.2251325936], [0.0, 5.96962108614, 234791.12827416777]]]

This table contains Mercury’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric latitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 415-416.

pymeeus.Mercury.VSOP87_L = [[[440250710.144, 0.0, 0.0], [40989414.976, 1.48302034194, 26087.9031415742], [5046294.199, 4.4778548954, 52175.8062831484], [855346.843, 1.16520322351, 78263.70942472259], [165590.362, 4.11969163181, 104351.61256629678], [34561.897, 0.77930765817, 130439.51570787099], [7583.476, 3.7134840051, 156527.41884944518], [3559.74, 1.51202669419, 1109.3785520934], [1726.012, 0.35832239908, 182615.3219910194], [1803.463, 4.1033317841, 5661.3320491522], [1364.682, 4.59918318745, 27197.2816936676], [1589.923, 2.99510417815, 25028.521211385], [1017.332, 0.8803143904, 31749.2351907264], [714.182, 1.54144865265, 24978.5245894808], [643.759, 5.30266110787, 21535.9496445154], [404.2, 3.28228847025, 208703.2251325936], [352.441, 5.24156297101, 20426.571092422], [343.313, 5.76531885335, 955.5997416086], [339.214, 5.86327765, 25558.2121764796], [451.137, 6.04989275289, 51116.4243529592], [325.335, 1.3367433478, 53285.1848352418], [259.587, 0.98732428184, 4551.9534970588], [345.212, 2.79211901539, 15874.6175953632], [272.947, 2.49451163975, 529.6909650946], [234.83, 0.266721189, 11322.6640983044], [238.793, 0.11343953378, 1059.3819301892], [264.336, 3.91705094013, 57837.1383323006], [216.645, 0.65987207348, 13521.7514415914], [183.359, 2.62878670784, 27043.5028831828], [175.965, 4.53636829858, 51066.427731055], [181.629, 2.43413502466, 25661.3049506982], [208.995, 2.09178234008, 47623.8527860896], [172.643, 2.45200164173, 24498.8302462904], [142.316, 3.36003948842, 37410.5672398786], [137.942, 0.29098447849, 10213.285546211], [118.233, 2.78149786369, 77204.32749453338], [96.86, 6.2039820274, 234791.12827416777], [125.219, 3.72079804425, 39609.6545831656], [86.819, 2.64219349385, 51646.11531805379], [86.723, 1.9595304265, 46514.4742339962], [88.329, 5.41338795963, 26617.5941066688], [106.422, 4.20572116254, 19804.8272915828], [89.987, 5.85243631094, 41962.5207369374], [84.971, 4.33100364958, 79373.087976816], [69.247, 4.19446437496, 19.66976089979], [63.463, 3.14700877722, 7238.6755916], [68.493, 0.63424819267, 83925.0414738748], [69.729, 3.57201709671, 25132.3033999656], [59.481, 2.74692752, 16983.9961474566], [64.83, 0.0476292581, 33326.5787331742], [55.376, 4.05312663019, 30639.856638633], [54.442, 3.14331542453, 27147.28507176339], [47.56, 5.49722099211, 3.881335358], [49.567, 3.98985863874, 6770.7106012456], [56.531, 5.11920557675, 73711.75592766379], [41.764, 5.64185159566, 53131.406024757], [51.458, 5.47786463494, 50586.73338786459], [44.744, 1.22366857463, 77154.33087262919], [41.882, 5.19309298528, 6283.0758499914], [38.045, 2.43117327523, 12566.1516999828], [35.627, 0.81390126585, 32858.61374281979], [48.007, 5.49260554912, 51749.20809227239], [35.392, 3.36964859355, 36301.18868778519], [33.951, 2.78618091049, 14765.2390432698], [30.56, 5.84045074182, 43071.8992890308], [35.964, 1.4238083863, 2218.7571041868], [34.044, 0.47470299167, 65697.55772473979], [30.8, 5.77017310191, 103292.23063610759], [28.496, 0.65048992658, 426.598190876], [26.215, 5.24158618719, 22645.32819660879], [26.253, 0.64807043102, 1589.0728952838], [29.538, 0.69771244088, 213.299095438], [27.504, 0.98010127839, 45892.73043315699], [22.347, 5.65335125838, 77734.01845962799], [22.047, 4.93398225193, 72602.37737557039], [22.275, 2.17909842576, 52705.49724824299], [24.252, 4.39994170609, 7.1135470008], [26.751, 1.06145361792, 3442.5749449654], [23.656, 2.84168536986, 260879.03141574195], [22.908, 2.58462026514, 68050.42387851159], [27.086, 0.08501738669, 63498.47038145279], [22.247, 3.22418265191, 25448.00585526019], [17.803, 3.61202297483, 110012.94461544899], [22.407, 1.02520094825, 105460.99111839019], [17.576, 4.71742326981, 25874.6040461362], [18.586, 4.52709871258, 28306.66024576099], [14.176, 6.12394176563, 53235.18821333759], [14.186, 5.14246797066, 26068.2333806744], [17.244, 0.28394746813, 51220.20654153979], [17.176, 3.26084092971, 153.7788104848], [14.938, 1.83542009339, 99799.65906923798], [13.387, 0.76564655407, 56727.7597802072], [13.978, 2.30193139916, 76674.63652943878], [14.428, 0.96646356501, 26107.57290247399], [11.99, 6.20492907598, 18849.2275499742], [14.381, 1.90956715654, 23969.1392811958], [11.233, 2.04817126136, 32370.9789915656], [13.392, 4.51750784605, 26080.78959457339], [11.632, 2.3849686026, 79219.3091663312], [12.412, 2.22280944169, 77837.11123384659], [9.95, 2.0459444888, 48733.23133818299], [9.803, 2.26706433546, 26091.7844769322], [9.362, 5.44291958209, 38654.05484155699], [9.747, 3.83976857418, 26084.0218062162], [9.264, 4.02987000812, 467.9649903544], [8.961, 0.11062526114, 62389.09182935939], [11.543, 4.17789167759, 103242.2340142034], [11.146, 3.78292300417, 26301.2022370122], [9.677, 2.98527809776, 59414.4818747484], [8.977, 3.47888073089, 91785.46086631398], [9.664, 5.77941968495, 25938.3399444396], [8.855, 2.84672636028, 25035.6347583858], [8.181, 5.77857196635, 40853.142184844], [8.033, 2.45692824195, 129380.13377768178], [8.343, 5.34499871294, 19317.1925403286], [7.425, 4.7116033039, 6.62855890001], [9.001, 6.23396256413, 25021.4076643842], [8.126, 1.12294634635, 26095.016688575], [6.568, 3.66248946629, 26514.5013324502], [7.038, 3.99035923761, 71980.63357473118], [6.956, 1.62821260299, 23869.1460373874], [7.595, 0.18334396433, 12432.0426503978], [6.061, 3.67044794062, 27676.976036858], [5.896, 5.57171141866, 94138.32702008578], [5.716, 5.18204203484, 78793.40038981718], [5.855, 2.14311779301, 20760.4270331914], [5.681, 1.60727624525, 98690.28051714458], [5.788, 2.3546749239, 103821.92160120218], [5.121, 3.77832929907, 58946.51688439399], [5.873, 5.76210244486, 286966.9345573162], [5.858, 6.12538452806, 26011.6370702986], [5.215, 3.29186833997, 38519.945791972], [6.0, 0.00057044073, 51535.90899683439], [4.647, 0.29020584575, 136100.84775702318], [5.787, 4.44783057272, 19406.6782881746], [5.908, 4.12195491631, 29530.4780865396], [5.918, 3.98930701135, 131548.89425996438], [5.728, 3.02314979708, 89586.37352302698], [3.928, 4.8143793369, 125887.56221081219], [3.929, 2.48449041501, 69159.80243060499], [3.681, 2.80180999964, 79323.09135491178], [4.498, 1.50325539137, 51962.5071877104], [3.687, 5.33717753698, 102762.53967101299], [3.497, 1.85400531491, 52156.1365222486], [3.867, 1.25354714671, 54394.56338733519], [4.459, 4.88911997687, 50057.04242277], [3.396, 3.73870967348, 82815.66292178139], [3.525, 6.07665337319, 25934.1243310894], [3.492, 1.28206984744, 52168.69273614759], [3.411, 6.13976263434, 639.897286314], [4.395, 3.2547591476, 77308.10968311399], [2.99, 5.27323635392, 46848.3301747656], [3.218, 5.20938751579, 103925.01437542078], [2.899, 5.08451495112, 58458.88213313979], [3.708, 0.02713701028, 26241.681952059], [2.991, 2.92278339368, 44937.1306915484], [3.177, 0.05753403864, 22747.2907148744], [3.163, 5.38713552769, 105307.21230790539], [3.556, 3.96231142071, 52195.47604404819], [2.787, 0.54704419913, 52389.1053785864], [2.458, 1.14904830408, 2333.196392872], [2.492, 5.24922078791, 25668.418497699], [2.409, 2.14208355028, 64741.95798313119], [2.509, 0.61934630416, 85034.42002596818], [2.416, 5.26204437192, 52179.6876185064], [2.296, 3.09900451546, 88476.99497093359], [2.357, 0.17742385045, 117873.36400788819], [3.012, 0.83689268367, 129330.13715577759], [2.421, 3.95913346049, 49.9966219042], [2.197, 2.56129546358, 3340.6124266998], [2.402, 0.55121112633, 52171.9249477904], [2.106, 5.41271503337, 155468.036919256], [2.566, 3.00606194044, 51109.31080595839], [2.392, 0.17898534184, 103.0927742186], [2.737, 1.08192567668, 632.7837393132], [2.523, 5.90356438675, 51123.53789995999], [2.098, 2.4713206914, 66941.04532641819], [2.003, 3.75422326828, 16066.0658614748], [2.188, 1.18654376903, 2118.7638603784], [2.593, 2.55122032446, 25654.19140369739], [2.559, 1.18101453315, 45494.58142974879], [1.918, 0.79899605678, 26555.8681319286], [1.819, 0.69178943674, 98068.53671630539], [2.471, 2.55057179214, 52026.2430860138], [1.704, 0.3672357774, 52602.4044740244], [2.129, 2.66251948472, 18093.37469954999], [1.715, 4.6217746471, 49957.0491789616], [1.916, 5.8372646205, 85502.38501632259], [1.976, 3.57365896777, 24395.7374720718], [1.581, 0.36987184257, 53764.8791784322], [1.589, 1.3353124195, 114.43928868521], [2.042, 2.05385564074, 45405.0956819028], [1.539, 2.25468618977, 120226.23016165999], [1.525, 1.48231179113, 26094.53170047421], [2.055, 4.16315644175, 52182.9198301492], [1.829, 0.38846130335, 522.5774180938], [2.105, 4.04128506778, 25234.70675982219], [1.48, 1.87644604156, 104881.30353139139], [1.46, 1.01790185557, 25455.119402261], [1.453, 0.3412522219, 1052.2683831884], [1.449, 3.39742463494, 24505.94379329119], [1.48, 4.55094492082, 124778.18365871879], [1.481, 3.62242942443, 149.5631971346], [1.516, 5.3232780244, 129909.82474277639], [1.594, 3.00887674765, 77623.81213840858], [1.927, 3.90378108197, 74.7815985673], [1.373, 4.32419381493, 80482.46652890938], [1.419, 3.90109225299, 7880.08915333899], [1.525, 4.62451312025, 26081.27458267419], [1.567, 0.65981123945, 157636.79740153858], [1.725, 4.40112128069, 316.3918696566], [1.263, 4.96320745251, 74821.13447975718], [1.472, 5.56006656586, 95247.70557217918], [1.315, 1.83254115004, 76144.94556434419], [1.439, 0.8328616637, 55618.3812281138], [1.355, 3.15837061982, 1066.49547719], [1.224, 3.24032680768, 162188.75089859738], [1.39, 5.13745290383, 419.4846438752], [1.31, 5.2825063668, 25619.9381512198], [1.477, 2.40227455027, 313054.83769889036], [1.252, 5.65227031449, 26013.1215430069], [1.143, 0.38707356937, 42153.969003049], [1.082, 2.56550728704, 26190.99591579279], [1.493, 2.89973504649, 52099.5402118728], [1.468, 5.7150779125, 24491.71669928959], [1.034, 1.4954429444, 151975.46535238638], [1.314, 5.91505351846, 115674.27666460119], [1.065, 3.61081835123, 206.1855484372], [1.053, 5.1799602632, 23754.70674870219], [0.964, 2.05264296353, 128850.44281258718], [1.032, 3.39114761061, 25551.09862947879], [1.065, 3.38225524038, 25863.55834587229], [1.153, 5.76498787983, 44181.27784112419], [0.96, 5.74774250678, 105410.99449648599], [1.137, 6.20919445956, 103396.01282468818], [0.914, 4.28855434634, 78256.59587772179], [0.917, 3.27543718918, 76.2660712756], [0.892, 4.82397571946, 78244.0396638228], [0.976, 4.86442946387, 25131.61398560359], [1.086, 0.73424633411, 33967.99229491319], [1.162, 4.52128441898, 78050.41032928458], [0.868, 2.78848256837, 52022.0274726636], [0.943, 4.0973685387, 26720.68688088739], [0.973, 4.54018615747, 24925.4284371664], [0.845, 5.05414707498, 25977.69682035479], [0.841, 1.89412486884, 130012.91751699499], [0.92, 3.02504494542, 52329.58509363319], [0.814, 3.15330668609, 48835.19385644859], [0.876, 0.41318857467, 108903.56606335558], [0.818, 1.61477924287, 40565.2543247742], [1.074, 1.37296024678, 23439.44831610119], [0.812, 2.82156935191, 25984.8103673556], [0.775, 2.86911510061, 26727.8004278882], [0.755, 5.44067645183, 24609.0365675098], [0.921, 4.7255790143, 14477.3511832], [0.914, 4.70826349904, 6681.2248533996], [0.749, 1.80279541026, 84546.78527471398], [0.907, 0.64974692551, 78283.37918562238], [0.854, 5.05058435764, 307.5576209696], [0.766, 5.89942349817, 71025.0338331226], [0.713, 3.55192633098, 78477.00852016058], [0.718, 1.85061030321, 100909.03762133139], [0.858, 5.43959629234, 536.8045120954], [0.794, 3.77076518156, 155418.04029735178], [0.848, 2.08790526575, 131395.11544947958], [0.622, 3.14583461131, 143961.2671494624], [0.623, 4.58424507963, 9103.9069941176], [0.623, 5.10535773746, 90829.86112470538], [0.706, 4.19554833142, 71582.48457132299], [0.738, 0.15942404038, 24712.1293417284], [0.621, 1.32834420218, 3328.13565628019], [0.714, 1.88052234658, 2199.087343287], [0.678, 6.01392909264, 77197.21394753258], [0.65, 5.51227348491, 29428.515568274], [0.658, 2.03299256393, 51756.3216392732], [0.593, 6.06807779961, 114564.89811250778], [0.666, 0.70706334861, 26162.6847401415], [0.597, 5.15771478155, 333.8559407694], [0.616, 1.94902289932, 78267.59076008058], [0.774, 2.84206828086, 13655.8604911764], [0.698, 5.60747842278, 51742.09454527159], [0.557, 2.07529602574, 181555.94006083018], [0.547, 3.17747066781, 90695.75207512038], [0.541, 4.20816350943, 28421.0995344462], [0.639, 5.55908134374, 78114.14622758799], [0.529, 3.60209913515, 1911.1994832172], [0.62, 4.87816246784, 25771.5112719176], [0.569, 3.56250435364, 111122.32316754239], [0.51, 4.2033182373, 28206.6670019526], [0.539, 5.42639519551, 93028.94846799239], [0.659, 3.45407389663, 26610.48055966799], [0.613, 3.52133069078, 78259.82808936459], [0.594, 1.16299449628, 26404.2950112308], [0.576, 0.8161726673, 51322.60990139639], [0.497, 5.37540191935, 26037.90651966999], [0.663, 2.63246066036, 77211.44104153418], [0.487, 1.96691664683, 26507.38778544939], [0.474, 3.65243004234, 124156.43985787958], [0.55, 5.81040334783, 1731.1223529326], [0.472, 3.79351701945, 52643.7712735028], [0.467, 4.50175920356, 110.2063212194], [0.593, 3.04818872924, 12725.453434775], [0.552, 0.68733268561, 26137.8997634784], [0.525, 0.87988157932, 78270.82297172339], [0.6, 0.33902061394, 50483.640613646], [0.443, 3.33385484899, 78690.30761559859], [0.441, 1.31034191525, 76044.9523205358], [0.588, 2.37074288411, 121335.60871375339], [0.427, 0.14810668871, 50593.84693486539], [0.413, 3.33346664325, 79852.78232000639], [0.403, 5.20705536949, 146314.13330323418], [0.524, 5.02853960393, 71492.99882347698], [0.418, 5.99113644745, 103711.71527998279], [0.388, 4.44142037364, 29416.03879785439], [0.39, 4.02400157761, 51543.0225438352], [0.442, 2.37158178341, 111590.2881578968], [0.375, 4.47565026408, 52182.4348420484], [0.387, 4.83640155029, 130969.20667296558], [0.39, 1.20415517897, 150866.08680029298], [0.416, 3.60399872842, 183724.7005431128], [0.407, 0.529385305, 433.7117378768], [0.439, 2.45401498182, 50579.61984086379], [0.412, 0.50186886239, 27999.1026247914], [0.391, 0.68517124695, 134.109049585], [0.398, 1.99594942261, 155997.72788435058], [0.346, 3.40308148193, 27140.17152476259], [0.422, 5.83293462268, 38813.3565763492], [0.342, 0.83679406818, 25764.39772491679], [0.368, 3.80659045949, 81706.28436968799], [0.355, 1.99286044781, 1089.7087911936], [0.462, 3.33451630664, 25440.89230825939], [0.33, 0.37013669364, 26237.46633870879], [0.33, 6.19331560111, 188276.6540401716], [0.407, 2.17141736652, 641.41356173899], [0.321, 5.0253200265, 102232.84870591838], [0.33, 5.5308696608, 10021.8372800994], [0.336, 2.49163362426, 25344.9130810416], [0.381, 5.90928705861, 78187.44335344699], [0.316, 2.42532836233, 52101.02468458109], [0.331, 4.38897286971, 26202.34243025941], [0.401, 1.99380933624, 49842.60989027639], [0.422, 0.4655666994, 1.4844727083], [0.31, 6.18819197073, 27154.3986187642], [0.302, 4.68575942793, 25565.3257234804], [0.296, 1.70818196194, 25973.46385288896], [0.375, 5.31085497894, 339142.7408404646], [0.329, 5.32609571265, 853.196381752], [0.299, 5.81101886868, 1692.1656695024], [0.378, 1.33745475273, 52169.17772424839], [0.293, 4.43993559835, 579.6875869988], [0.276, 4.45147472194, 178063.3684939606], [0.283, 6.19860164015, 25881.717593137], [0.315, 1.95956643364, 51707.84129279399], [0.337, 4.21457120705, 34282.1784747828], [0.334, 3.00354887525, 23866.04650697719], [0.268, 1.3443749352, 35191.8101356918], [0.306, 5.9444523141, 64607.84893354619], [0.283, 0.96234220412, 1639.069517188], [0.287, 1.28099267608, 51013.33157874059], [0.269, 0.55818949975, 3462.2447058652], [0.274, 5.61047457506, 52278.89905736699], [0.352, 0.49071599781, 26294.08869001139], [0.358, 1.23360990528, 1223.81784077861], [0.343, 4.29256939583, 49527.35145767539], [0.255, 5.03019684368, 154938.34595416137], [0.297, 2.87172991159, 129483.91596626239], [0.252, 0.09044630682, 13541.42120249119], [0.301, 1.22789205624, 104138.31347085879], [0.274, 3.67792692372, 68241.8721446232], [0.321, 2.49914111769, 141762.17980617538], [0.29, 1.02241335068, 8194.2753332086], [0.24, 0.99284920524, 104344.49901929598], [0.278, 0.53151576617, 949.1756089698], [0.249, 2.39787134441, 131498.89763806018], [0.274, 2.09560778105, 26624.70765366959], [0.24, 3.14668052954, 23976.2528281966], [0.239, 0.8519855924, 52808.59002246159], [0.266, 0.18324709351, 2168.7604822826], [0.226, 4.85701184113, 156100.82065856917], [0.228, 2.19799888298, 50696.93970908399], [0.231, 1.49522976308, 104331.94280539699], [0.245, 4.68642861263, 5327.4761083828], [0.281, 1.63579312063, 51219.51712717779], [0.219, 5.75893553103, 78109.93061423779], [0.233, 5.99853185125, 78417.48823520739], [0.227, 6.02396548637, 1581.959348283], [0.218, 5.42819370607, 18207.81398823521], [0.22, 3.72017611382, 7994.5284420242], [0.271, 0.20833686608, 51639.00177105299], [0.244, 2.33639123341, 25138.7275326044], [0.254, 5.46143104532, 621.7438008392], [0.209, 0.01908528531, 26164.1692128498], [0.208, 6.18336687237, 74923.09699802278], [0.274, 0.1542389879, 51951.46148744649], [0.212, 1.95557421945, 735.8765135318], [0.236, 4.28368070837, 24079.34560241519], [0.206, 5.86972946528, 52072.71350892979], [0.201, 1.6122687707, 25241.820306823], [0.235, 3.60446251088, 104371.28232719658], [0.229, 3.66187363672, 1596.1864422846], [0.198, 5.85298126352, 52815.7035694624], [0.22, 1.39541547612, 32769.1279949738], [0.229, 3.36265291664, 134991.4692049298], [0.192, 1.03510456065, 25867.49049913539], [0.199, 4.7812628927, 110634.68841628819], [0.191, 4.2411099766, 14.2270940016], [0.21, 5.44710702022, 147423.51185532758], [0.229, 0.7626653182, 220.4126424388], [0.185, 0.24752751791, 104564.91166173479], [0.211, 1.8182667082, 52065.59996192899], [0.182, 2.31946183497, 9384.8410080752], [0.207, 0.77329376239, 917.9302859818], [0.19, 0.91354241432, 97670.38771289718], [0.184, 3.32299343484, 30.3268610044], [0.209, 0.41150840785, 181505.94343892598], [0.225, 5.06158596891, 157483.01859105378], [0.184, 2.71529935065, 103285.11708910679], [0.191, 1.96528922573, 314.1861798696], [0.182, 4.30249539122, 1884.9011634174], [0.192, 4.820978767, 126996.94076290558], [0.188, 0.98150502881, 26049.7701059364], [0.184, 0.6702869759, 106570.36967048359], [0.167, 5.71084692524, 96357.08412427259], [0.184, 2.33710037381, 77829.99768684579], [0.201, 2.57648669602, 97112.93697469679], [0.176, 3.20466399658, 39629.32434406539], [0.169, 2.30516098722, 101.9625182656], [0.163, 6.11134623776, 170049.1702910366], [0.195, 5.18276528052, 99024.13645791399], [0.165, 6.00583599609, 224.3447957019], [0.167, 3.75645242744, 52250.5878817157], [0.172, 4.28474997892, 25780.3455206046], [0.216, 3.20425967752, 50800.03248330259], [0.157, 1.61810971101, 24815.222115947], [0.163, 1.77694235279, 116917.76426627958], [0.156, 1.94644057334, 26421.7590823436], [0.164, 3.8148761948, 77410.51304297059], [0.158, 4.95279229085, 35472.7441496494], [0.15, 5.03580916221, 207643.8432024044], [0.208, 2.59008696784, 27819.0254945068], [0.18, 5.62518388437, 103299.34418310839], [0.165, 2.25945126594, 104202.04936916218], [0.148, 3.94625893131, 24601.92302050899], [0.149, 4.4976634152, 956.2891559706], [0.157, 1.62995234425, 51859.41441349179], [0.166, 0.21228205353, 52698.38370124219], [0.151, 2.75061488385, 140652.80125408198], [0.161, 1.72952408524, 2648.454825473], [0.169, 2.61298183547, 26086.4186688659], [0.17, 0.78905798191, 72936.23331633979], [0.177, 5.06009562295, 77844.22478084739], [0.142, 2.61984020842, 24292.64469785319], [0.15, 4.93124201089, 28286.9904848612], [0.175, 5.79468120941, 39743.7636327506], [0.163, 3.37032055762, 76571.54375522019], [0.15, 1.79967850988, 3.9321532631], [0.159, 4.9036016347, 104355.49390165479], [0.149, 4.20242344258, 52492.19815280499], [0.146, 1.31203861446, 26198.1094627936], [0.162, 2.25640253895, 55516.4187098482], [0.178, 1.81205070225, 26395.46076254379], [0.132, 0.90685777764, 54294.57014352679], [0.142, 1.70641940798, 92741.06060792258], [0.138, 0.642980433, 86143.79857806159], [0.125, 0.32592941945, 150244.3429994538], [0.131, 0.91963253985, 54509.0026760204], [0.144, 4.17124383409, 24822.3356629478], [0.135, 3.86821614788, 104358.72611329758], [0.159, 4.72016316702, 4083.9885067044], [0.122, 2.0813340737, 52125.80966124419], [0.141, 2.08765477131, 119116.85160956658], [0.122, 5.01211051965, 52595.29092702359], [0.149, 0.38744219837, 487.6347512542], [0.121, 3.30215904574, 1263.15736257819], [0.138, 1.04671626049, 1083.0802322936], [0.157, 5.17018916622, 23962.02573419499], [0.163, 3.26593103179, 26089.38761428249], [0.13, 0.56779128434, 25936.85547173129], [0.16, 0.19385295261, 104347.73123093879], [0.116, 2.69818513122, 129799.61842155698], [0.113, 4.26323214388, 102132.85546210999], [0.115, 1.35196569742, 75615.25459924959], [0.135, 1.70032124143, 97580.90196505119], [0.121, 0.20372434486, 38.1330356378], [0.118, 0.49434134122, 78731.674415077], [0.119, 5.5456272589, 76667.52298243798], [0.133, 4.67446352847, 2014.9816717978], [0.126, 6.24694138116, 636.9962720242], [0.12, 3.20442216756, 76681.75007643958], [0.125, 3.65255045892, 29550.14784743939], [0.118, 5.26052652437, 26729.31670331319], [0.113, 6.26688921593, 104778.21075717278], [0.134, 1.56524046563, 25939.82441714789], [0.114, 3.52566774494, 24356.7807886416], [0.12, 1.72596426067, 22759.76748529401], [0.145, 3.6163842157, 52225.8029050526], [0.107, 5.72285490406, 24176.703658357], [0.112, 0.28882268029, 209812.60368468694], [0.121, 0.11234419157, 51528.79544983359], [0.12, 4.17769370414, 25754.0472008048], [0.105, 1.88137155058, 172402.0364448084], [0.106, 6.27133163237, 105940.68546158058], [0.104, 3.850613951, 1478.8665740644], [0.108, 2.96292200098, 1375.7737998458], [0.132, 4.60210460022, 11610.5519583742], [0.114, 5.20612177122, 137678.191299471], [0.107, 0.00557717441, 13362.4497067992], [0.101, 0.73934409276, 77630.92568540938], [0.097, 1.19155686364, 78270.3379836226], [0.1, 0.25974575144, 160.40736938481], [0.105, 0.03739853961, 180.0771302846], [0.114, 5.13609864972, 1135.6768718932], [0.101, 4.1432325844, 176953.98994186718], [0.095, 0.49488385937, 107794.1875112622], [0.095, 1.54869651436, 25973.50403466079], [0.1, 1.51228088427, 157057.10981453978], [0.106, 4.57237246234, 26073.67604757259], [0.094, 3.53697338405, 26521.614879451], [0.091, 3.13017596287, 64901.25971792339], [0.088, 5.20234335205, 1485.2907067032], [0.116, 5.96693811684, 24182.4383766338], [0.099, 2.1200254924, 66653.15746634839], [0.105, 4.04764282865, 27726.9726587622], [0.094, 2.62198655221, 104275.34649502118], [0.106, 2.06629215696, 125112.03959948818], [0.088, 3.8824070331, 51852.30086649099], [0.085, 2.83285123847, 214364.55718174577], [0.083, 5.44599307753, 78188.92782615528], [0.083, 3.35497157412, 52325.36948028299], [0.104, 4.95116515346, 182085.63102592478], [0.11, 6.04814955763, 49953.94964855139], [0.093, 1.00014028766, 9745.3205558566], [0.081, 4.03821735964, 132658.27281205778], [0.084, 0.11234538521, 53228.07466633679], [0.094, 5.55962830464, 51432.81622261579], [0.08, 6.13595673095, 137210.22630911658], [0.08, 2.72256616799, 25042.7483053866], [0.08, 4.2913724856, 77101.23472031478], [0.085, 0.97100574775, 25788.776747305], [0.082, 1.89501710792, 128320.75184749259], [0.077, 1.16185579398, 204151.27163553477], [0.092, 4.44154858356, 26091.83529483729], [0.078, 3.73813140716, 26222.0121911592], [0.076, 4.28770981047, 86457.98475793119], [0.076, 2.88868549481, 53242.3017603384], [0.104, 4.32540467122, 23888.81579828719], [0.094, 4.32453647728, 78257.08086582259], [0.074, 4.96325610801, 26823.77965510599], [0.077, 1.07428657729, 50167.24874398939], [0.075, 2.56662960973, 19202.75325164339], [0.099, 6.00141798836, 19958.6061020676], [0.087, 3.55579419373, 52381.99183158559], [0.078, 1.00822618263, 25352.02662804239], [0.088, 3.52269656514, 60055.89543648739], [0.078, 5.82066892741, 155571.81910783658], [0.076, 2.96046756402, 25024.58905812189], [0.076, 4.2442123571, 130226.21661243298], [0.076, 2.22645638378, 36109.7404216736], [0.072, 2.23348468194, 173511.41499690176], [0.079, 1.13204602827, 52290.24557183361], [0.074, 1.55328520138, 51653.22886505459], [0.071, 2.26106298981, 159.3017347922], [0.073, 2.05345178568, 26941.0995233262], [0.095, 1.93550514722, 365230.6439820388], [0.07, 4.74315846161, 52061.36699446317], [0.085, 1.31607641314, 26667.590728573], [0.076, 5.58726680703, 13675.5302520762], [0.092, 3.24599684677, 28256.66362385679], [0.067, 1.15071488774, 55503.94193942859], [0.068, 2.92993581219, 23919.1426592916], [0.067, 1.77035470445, 181026.24909573558], [0.066, 2.59648990707, 27780.06881107659], [0.082, 5.36282814327, 167850.0829477496], [0.064, 3.99165913279, 130432.40216087017], [0.069, 5.13777502156, 52712.61079524379], [0.063, 0.54837259436, 34082.4315835984], [0.065, 3.89976847376, 27005.83342755599], [0.073, 6.19252091852, 50064.15596977079], [0.066, 1.91671959572, 102018.41617342478], [0.082, 0.8782465164, 25446.4895798352], [0.063, 3.87624799927, 78896.49316403578], [0.062, 1.55377407031, 182188.72380014337], [0.062, 4.71223563105, 103.7821885806], [0.087, 3.57434964589, 27037.07875054399], [0.077, 3.43626093365, 54087.0057663656], [0.078, 4.92073893807, 77795.74443436819], [0.071, 2.76139796167, 11.0457002639], [0.064, 5.37974575072, 51226.63067417859], [0.082, 3.78003355754, 26308.315784013], [0.062, 2.70733081732, 104505.39137678158], [0.071, 5.05097183202, 27177.6119327678], [0.07, 4.29342266024, 27311.72098235281], [0.068, 2.34136362165, 78366.80219894118], [0.06, 4.90888421377, 25508.2155545754], [0.068, 6.04917764171, 647.0108333148], [0.058, 2.46745404038, 104197.83375581198], [0.067, 2.96573339768, 51969.62073471119], [0.066, 5.33871332672, 157586.80077963436], [0.058, 2.17528608366, 323.5054166574], [0.062, 4.44991435917, 130419.8459469712], [0.063, 0.27396211581, 130459.18546877075], [0.063, 5.22327184571, 76784.84285065818], [0.064, 4.64108529425, 61279.713277266], [0.062, 1.84001159422, 183570.921732628], [0.055, 1.66692917947, 31415.379249957], [0.058, 4.06522187846, 32132.1317229496], [0.057, 2.0756938708, 17893.6278083656], [0.055, 2.49038254003, 22625.658435709], [0.077, 6.17301946895, 25032.45336464809], [0.068, 4.68765980625, 77307.42026875199], [0.054, 4.63708190151, 51329.7234483972], [0.055, 0.21233757772, 2221.856634597], [0.068, 2.36358626958, 25953.79409198919], [0.053, 2.88564903323, 101011.00013959699], [0.062, 1.19998944516, 26083.97098831109], [0.054, 3.90599349467, 123758.29085447139], [0.052, 2.6059599715, 78160.61665050399], [0.072, 0.83460657204, 22909.7573510066], [0.066, 3.17005690509, 78039.36462902068], [0.052, 2.13323028898, 44295.7171298094], [0.061, 1.63440457571, 61.7259747402], [0.053, 2.00748586733, 24448.8336243862], [0.051, 2.50978165702, 78903.60671103658], [0.051, 3.22110952745, 130652.81480330898], [0.06, 6.23105854697, 76887.93562487679], [0.066, 3.23596712512, 77726.90491262719], [0.059, 1.53485505891, 6044.2285813754], [0.059, 1.10559326249, 26102.1302355758], [0.06, 1.08408977503, 27972.80430499159], [0.049, 2.24548271996, 425.908776514], [0.055, 3.33645161611, 207593.8465805002], [0.067, 0.59579109206, 94329.77528619739], [0.056, 4.05652507832, 26010.1525975903], [0.056, 1.49670493057, 136722.59155786238], [0.049, 4.72236375377, 5193.3670587978], [0.049, 2.99400480872, 52252.07235442399], [0.049, 4.15104806247, 51955.39364070959], [0.05, 5.31916782876, 103917.90082841998], [0.051, 4.32173710361, 58857.03113654799], [0.05, 0.42233074233, 27684.0895838588], [0.066, 5.06498799279, 73.297125859], [0.048, 0.80745705976, 2703.6161546756], [0.048, 0.16882113823, 24918.31489016559], [0.049, 5.71984539931, 50380.54783942739], [0.061, 0.05575706789, 161079.37234650398], [0.047, 5.70016549134, 129373.02023068098], [0.048, 4.71754734372, 50903.1252575212], [0.05, 0.77120384679, 50689.82616208319], [0.05, 4.75557775921, 143005.6674078538], [0.046, 1.03065291695, 51868.2486621788], [0.046, 4.07474771884, 52137.67324751059], [0.045, 2.75496032307, 196137.07343261078], [0.056, 1.48667124221, 30171.8916482786], [0.047, 3.49884159195, 26575.53789282839], [0.048, 2.04489119557, 27573.1938482774], [0.046, 1.96812600979, 27223.5800134674], [0.044, 0.58466186909, 1243.4876016784], [0.043, 0.48582749664, 78338.49102328988], [0.046, 0.10663541022, 102659.44689679438], [0.049, 1.92223535597, 50049.92887576919], [0.047, 5.34811633125, 846.0828347512], [0.046, 2.32911930278, 129387.24732468258], [0.056, 1.46049477175, 28102.884813372], [0.05, 5.62967300375, 53906.92863608099], [0.046, 5.09770472011, 151199.94274106238], [0.043, 2.30154744958, 26709.6469424134], [0.051, 2.88082546361, 27669.86248985719], [0.055, 5.55849793732, 123200.84011627098], [0.044, 0.48527820908, 80174.90890793978], [0.048, 2.59296696271, 6720.7139793414], [0.044, 0.24824938054, 742.9900605326], [0.045, 2.489494983, 65831.6667743248], [0.045, 4.86503115391, 52483.36390411799], [0.041, 5.23419163545, 130289.95251073639], [0.041, 0.91885509326, 50910.238804522], [0.044, 3.12424163301, 26126.036177212], [0.042, 5.66855218492, 166740.70439565618], [0.039, 5.01739570944, 26402.0893214438], [0.038, 0.02313645928, 2111.6503133776], [0.049, 4.11697361923, 25227.59321282139], [0.038, 0.09191461136, 26118.2300025786], [0.038, 5.0314609238, 24203.0019781568], [0.051, 4.8630590664, 78153.50310350319], [0.038, 0.13003640396, 27351.06050415239], [0.038, 1.34984785206, 70269.18098269838], [0.038, 0.52032944033, 103498.41618454478], [0.04, 5.66117959398, 52174.32181044009], [0.038, 0.92511339052, 112231.70171963578], [0.051, 4.15223165568, 27170.98337386779], [0.037, 1.67308781547, 54374.8936264354], [0.038, 6.26592309401, 202.2533951741], [0.036, 3.23911910889, 176332.24614102798], [0.037, 1.90730795656, 3308.4658953804], [0.037, 3.03203144287, 76041.85279012559], [0.038, 3.17519743409, 78786.28684281638], [0.035, 3.90697621183, 80382.47328510099], [0.038, 2.00924199028, 1162.4747044078], [0.036, 1.80080871248, 19336.86230122839], [0.035, 4.66254825701, 77947.31755506598], [0.043, 1.57972686428, 130443.39704322898], [0.035, 0.74694549648, 25985.94062330859], [0.04, 2.11415671365, 3492.5715668696], [0.038, 4.65738726744, 22003.9146348698], [0.037, 0.7757183811, 16703.062133499], [0.035, 5.00128829727, 52509.6622239178], [0.047, 0.02275392308, 25014.29411738339], [0.043, 3.15273137814, 130435.63437251298], [0.034, 3.05681901713, 2820.8311441262], [0.037, 4.68248751145, 123668.80510662538], [0.034, 5.73615227262, 45290.65639321759], [0.04, 2.76893017076, 50270.341518208], [0.038, 6.01229835605, 26057.57628056979], [0.034, 6.25090722416, 21716.0267748], [0.034, 0.95587257158, 78580.10129437919], [0.033, 3.35217476663, 235900.50682626115], [0.032, 2.35469869139, 2383.1930147762], [0.037, 3.80938441515, 8989.46770543239], [0.043, 2.27476214717, 25169.9728555924], [0.032, 4.14291864821, 2686.7220945412], [0.037, 0.0457118584, 52177.29075585669], [0.032, 1.53610678036, 233731.7463439786], [0.038, 3.98892541543, 1300.826818205], [0.042, 5.10993958059, 145204.75475114078], [0.033, 2.91530565997, 130866.11389874699], [0.043, 1.77793563831, 103932.12792242158], [0.035, 5.35726747093, 26189.8656598398], [0.035, 0.65119403092, 1535.9767429694], [0.044, 3.08976502022, 8014.198202924], [0.031, 0.90638189649, 128220.75860368418], [0.042, 3.37905134636, 23549.6546373206], [0.038, 0.38543000653, 515.463871093], [0.039, 1.08681725797, 25773.71696170459], [0.036, 4.30448026071, 52286.01260436779], [0.031, 5.08183330827, 78213.71280281838], [0.038, 3.16432629306, 91805.13062721379], [0.039, 1.4749400211, 4022.2625319642], [0.042, 0.60192138814, 24388.62392507099], [0.037, 3.2360628526, 28791.5192962498], [0.04, 0.26646931277, 78313.70604662679], [0.036, 4.38588497247, 81591.84508100279], [0.035, 0.17056359345, 6129.2970395066], [0.03, 2.50459470137, 102755.42612401219], [0.04, 4.58870970073, 26076.8574413103], [0.04, 4.09419634913, 35833.2236974308], [0.03, 4.79837659477, 28736.3579670472], [0.032, 3.42931668217, 24402.8510190726], [0.029, 2.52212486456, 1353.7487450168], [0.03, 4.69352116507, 24072.9214697764], [0.029, 5.31070299201, 199599.31813847594], [0.03, 3.20350587499, 23762.9537327586], [0.036, 2.44362166097, 23336.3555418826], [0.028, 2.77231585227, 26312.2479372761], [0.028, 0.26775880889, 50444.6839302158], [0.029, 3.50869792127, 15406.65260500879], [0.03, 2.95993198433, 132028.58860315479], [0.028, 3.41609673663, 133882.09065283637], [0.033, 2.39929042753, 61560.64729122359], [0.032, 1.34796958829, 37698.4550999484], [0.028, 1.75026246832, 78683.19406859778], [0.033, 4.51080770987, 3776.4308857348], [0.032, 5.0066530782, 29396.3690369546], [0.037, 5.23066729388, 81604.32185142238], [0.028, 0.99927277404, 1322.6776475314], [0.029, 2.0015977077, 25004.8229092806], [0.035, 4.69198477732, 22065.64060961], [0.029, 3.80697601044, 24513.057340292], [0.032, 4.69401466159, 27250.37784598199], [0.031, 5.86715902954, 5815.11085963699], [0.027, 1.26702311366, 27044.1922975448], [0.03, 3.44351888035, 104819.57755665119], [0.028, 5.36078058708, 412.3710968744], [0.028, 5.73893599832, 240452.46032331997], [0.034, 5.19151430726, 2008.557539159], [0.03, 1.73241634839, 163766.0944410452], [0.027, 5.30425762252, 24864.08530079559], [0.032, 1.12362303179, 625.6701923124], [0.03, 2.04171272941, 193937.9860893238], [0.032, 4.78663079749, 75930.51303185058], [0.03, 4.4689122615, 25450.90686955], [0.032, 4.73906176949, 48847.6706268682], [0.027, 4.12514822062, 104358.2411251968], [0.026, 0.67609297065, 35077.37084700659], [0.033, 2.69651735555, 25647.07785669659], [0.026, 4.94767789631, 209658.82487420217], [0.035, 3.86705432105, 25466.159340735], [0.026, 4.79912409089, 198489.9395863826], [0.026, 1.59971503257, 31281.270200372], [0.026, 1.20008223797, 153084.84390447979], [0.026, 3.02443658098, 26724.8994135984], [0.025, 2.03567222767, 52817.21984488739], [0.027, 1.23585314301, 53.0961523144], [0.026, 5.53069670975, 25657.37279743509], [0.028, 0.93845909288, 158746.17595363196], [0.025, 1.46977800361, 1272.6810256272], [0.026, 2.45961936761, 181659.72224941078], [0.034, 2.39774146758, 39763.43339365039], [0.029, 6.23821353511, 102769.65321801379], [0.029, 4.90111965589, 116783.65521669458], [0.025, 3.02186465541, 39450.3528483734], [0.027, 3.77575599741, 103718.82882698359], [0.027, 3.9212504685, 80596.9058175946], [0.023, 0.26970481255, 52609.51802102519], [0.023, 5.98846059571, 27463.67694142], [0.025, 1.22968381596, 49976.71893986139], [0.023, 5.57437029749, 155887.52156313116], [0.023, 5.9950798502, 50007.0458008658], [0.023, 1.44496012077, 5687.630368952], [0.024, 0.46516912647, 130446.62925487179], [0.023, 0.94331115897, 28774.6252361154], [0.027, 0.80529908381, 2698.4514473772], [0.027, 0.27124610516, 1265.5674786264], [0.023, 0.89381228793, 156314.1197540072], [0.023, 2.96257779899, 12546.481939083], [0.022, 5.42940490576, 1485.9801210652], [0.022, 1.03839316349, 103189.13786188899], [0.023, 1.35379542887, 52161.57918914679], [0.026, 6.01331218379, 122444.98726584678], [0.03, 2.66518277698, 25600.26839032], [0.023, 4.07521268525, 230239.17477710897], [0.024, 0.64355332403, 203041.8930834414], [0.022, 1.39463873909, 952.0766232596], [0.023, 1.98852683178, 7392.4544020848], [0.028, 1.37381287166, 309.2783226558], [0.022, 2.15165551798, 104276.83096772949], [0.025, 4.93854060665, 101703.15774082378], [0.023, 3.12039946936, 77616.69859140778], [0.028, 0.40745832322, 55638.05098901359], [0.024, 0.4419926444, 24285.5311508524], [0.023, 1.33496997363, 163298.1294506908], [0.021, 4.0146938126, 120417.67842777158], [0.024, 0.63196904603, 77940.20400806518], [0.022, 5.70851933792, 2840.500905026], [0.024, 4.45840068641, 183145.012956114], [0.023, 3.62152465067, 5635.0337293524], [0.021, 3.04515069387, 9123.5767550174], [0.021, 1.96886020684, 177287.84588263658], [0.023, 0.59040250365, 25672.35065096209], [0.021, 3.40810269373, 129586.31932611899], [0.021, 3.09046433472, 26267.9802718588], [0.024, 1.94276984966, 183674.70392120857], [0.021, 3.98455358233, 6191.0230142468], [0.028, 0.93414213433, 51841.950342379], [0.02, 4.59348701559, 52061.40717623499], [0.027, 4.61439897742, 52027.72755872209], [0.02, 0.48128544481, 52309.9153327334], [0.02, 3.31281154655, 26248.310510959], [0.023, 1.67970146036, 23113.2931869632], [0.02, 2.44057473344, 50264.6067999312], [0.025, 5.43422956232, 2.9689454166], [0.026, 3.61410457829, 52024.75861330549], [0.02, 0.60321200025, 138319.60486120995], [0.02, 2.62628682595, 164.43591058941], [0.02, 0.653247742, 156520.30530244438], [0.027, 4.74395008878, 391318.54712361295], [0.021, 4.45035214874, 25862.073873164], [0.021, 1.54947465846, 148.0787244263], [0.027, 5.13202499307, 12382.0460284936], [0.02, 0.68567124507, 42.8830749034], [0.019, 1.92072938625, 78800.51393681798], [0.027, 2.48188330716, 25665.23710396129], [0.027, 1.27457874648, 7860.4193924392], [0.022, 2.29809961839, 25865.04281858059], [0.019, 4.09473921906, 76255.15188556358], [0.02, 4.67174071386, 207114.15223730978], [0.022, 2.63315058351, 7768.3665566946], [0.02, 1.24271716091, 52179.73843641149], [0.02, 6.11431848045, 24824.745778996], [0.023, 4.18071159026, 2125.8774073792], [0.021, 0.74169140667, 1795.258443721], [0.019, 2.66558529381, 191.4482661116], [0.02, 3.22150044915, 156547.08861034497], [0.021, 6.18753985884, 104127.26777059489], [0.02, 5.52295053123, 130363.24963659538], [0.021, 3.90684382108, 51534.3927214094], [0.02, 3.1001950954, 838.9692877504], [0.025, 5.79466888187, 26098.9488418381], [0.021, 6.23594952039, 103814.80805420138], [0.019, 5.79715725254, 26279.35140768579], [0.022, 0.71256272418, 959.1228599576], [0.021, 1.39589766697, 103395.32341032618], [0.018, 1.52837590084, 107.3053069296], [0.019, 0.6026210276, 27566.76971563859], [0.025, 0.78252166479, 53814.87580033639], [0.025, 2.29282750485, 77520.71936418998], [0.018, 2.11606037402, 26.2983197998], [0.024, 1.60264230919, 208173.534167499], [0.021, 6.27983567062, 54344.56676543099], [0.018, 2.13288203799, 77314.53381575279], [0.019, 5.02228884604, 26114.201461374], [0.02, 5.52520867267, 9591.5417453718], [0.017, 4.12183264175, 24602.61243487099], [0.022, 0.51026067819, 95.9792272178], [0.017, 4.488898325, 208276.62694171758], [0.017, 3.94937058994, 25459.05155552409], [0.017, 5.29323037427, 76137.83201734339], [0.019, 3.67294881327, 6885.14988993081], [0.018, 1.02433476262, 53399.624123927], [0.02, 2.79332004367, 25927.49577218939], [0.018, 5.83348216244, 293.4107843772], [0.024, 3.0007843166, 23446.561863102], [0.02, 1.11172116756, 156507.7490885454], [0.017, 0.56645607004, 104984.39630560997], [0.02, 4.48412602835, 52755.49387014719], [0.019, 5.18601674976, 2544.6726368924], [0.023, 4.19936868759, 24952.226269681], [0.017, 2.06473217893, 130005.80396999417], [0.019, 0.55214472899, 52396.2189255872], [0.019, 1.79653943961, 89.485747846], [0.022, 3.72989530019, 48997.6604925808], [0.02, 5.93006048006, 11852.355063399], [0.018, 6.24870732707, 233681.74972207437], [0.021, 3.0156672555, 25907.8260112896], [0.016, 1.73390726659, 52911.68279668019], [0.017, 3.23716624064, 117893.03376878797], [0.022, 0.46092942812, 19367.1891622328], [0.016, 5.06429474773, 43981.5309499398], [0.021, 1.13950009268, 25650.2592504343], [0.019, 3.19311280972, 47803.9299163742], [0.021, 4.64218889935, 112545.88789950538], [0.017, 2.96216633831, 102975.83876645098], [0.016, 0.60226326404, 149846.1939960456], [0.016, 5.86803075725, 127098.90328117118], [0.018, 1.20391834667, 87367.61641884019], [0.016, 4.53670173929, 2667.0523336414], [0.017, 5.77652308057, 51130.65144696079], [0.018, 5.8770643204, 78057.52387628538], [0.019, 5.24206436649, 60370.08161635699], [0.016, 1.31713012946, 78843.39701172139], [0.019, 5.33584429695, 104454.70534051539], [0.015, 4.52789928708, 25984.1209529936], [0.016, 4.1216258545, 189386.03259226496], [0.017, 3.51115348265, 45455.092303807], [0.015, 1.65943772958, 51596.1186961496], [0.015, 4.28577331083, 117.3198682202], [0.016, 0.28814169191, 78469.89497315978], [0.015, 0.64079475058, 53093.73656913019], [0.02, 5.58915267196, 1423.564731963], [0.015, 6.19871258212, 156740.7179448832], [0.015, 2.05066243688, 16342.5825857176], [0.018, 0.93517825293, 104344.98400739678], [0.015, 4.64013294295, 2974.609954611], [0.015, 2.61010767947, 7830.0925314348], [0.015, 2.60585262136, 151.0476698429], [0.018, 0.92309429794, 1577.3435424478], [0.017, 1.36952124854, 78115.63070029629], [0.018, 1.95659679786, 102872.74599223239], [0.017, 5.37350443158, 25384.26995695679], [0.015, 2.1295253236, 128106.31931499895], [0.018, 4.06290374391, 51439.92976961659], [0.015, 4.32808623679, 77741.13200662879], [0.014, 3.46389680879, 104426.39416486409], [0.02, 5.15870331048, 154408.65498906677], [0.014, 4.53089771582, 57503.2823915312], [0.016, 3.64720066701, 24072.23205541439], [0.015, 2.96793644807, 24719.24288872919], [0.014, 0.79165737765, 25928.601406782], [0.014, 4.36570321274, 78249.48233072099], [0.014, 5.35774038541, 896.0794566554], [0.014, 5.57146329055, 104248.51979207818], [0.014, 6.22061869408, 104874.18998439058], [0.015, 0.66056760946, 77622.29586298359], [0.017, 4.3940408425, 162810.49469943656], [0.017, 4.01700926317, 51876.67988887919], [0.014, 5.96074966457, 4371.8763667742], [0.014, 5.51412243126, 48713.5615772832], [0.014, 5.04161806976, 53029.0026649004], [0.014, 3.099795747, 128747.35003836859], [0.019, 4.6170254761, 16028.396405848], [0.017, 2.09526572835, 52277.768801414], [0.014, 1.5151690827, 52164.76058288449], [0.014, 2.76589411039, 26734.913974889], [0.017, 5.31477308011, 103608.62250576419], [0.013, 6.04881581356, 52812.8025551726], [0.015, 0.92065367569, 256327.07791868312], [0.016, 2.76936523753, 46046.5092436418], [0.019, 4.91561037107, 277.0349937414], [0.015, 1.87874008695, 26161.20026743319], [0.013, 1.4859308936, 54824.2611086214], [0.015, 1.37228117638, 18043.37807764579], [0.018, 2.95472168569, 76152.05911134499], [0.017, 1.57020520015, 104241.40624507738], [0.018, 2.97721991956, 187167.2754880782], [0.013, 3.49902133309, 78397.81847430758], [0.018, 2.18386661425, 149288.74325784517], [0.017, 5.3885117007, 52041.69723356339], [0.013, 6.2695666077, 90989.16285949759], [0.013, 1.1367469174, 237009.88537835455], [0.014, 2.18322393546, 225687.22128005017], [0.013, 6.15204536524, 35211.47989659159], [0.017, 1.32178768936, 106262.81204951399], [0.014, 1.73651187343, 2912.8839798708], [0.013, 0.84907711504, 102343.05502713779], [0.013, 2.3997022038, 155460.9233722552], [0.017, 4.15374414668, 26014.60601571519], [0.013, 0.72484082297, 153878.9640239722], [0.013, 3.04907288197, 80432.46990700519], [0.013, 1.37316946035, 104035.22069664019], [0.015, 3.12808384217, 173.44857138459], [0.013, 2.93774353095, 533.6231183577], [0.013, 2.24535401962, 246113.79237247215], [0.016, 0.39665846969, 78112.66175487968], [0.015, 4.75053341616, 130020.03106399579], [0.016, 0.76587038276, 557.4507382004], [0.015, 6.01045796437, 51112.49219969609], [0.015, 0.93774708323, 461.3364314544], [0.012, 4.03988032603, 77956.15180375299], [0.015, 1.43833460468, 169093.57054942797], [0.014, 2.1474910882, 78129.60037513758], [0.012, 4.57098987537, 6751.0408403458], [0.017, 0.640869336, 5131.6410840576], [0.013, 5.02936180992, 144916.86689107097], [0.016, 3.65387335184, 104028.10714963939], [0.013, 3.37789792164, 79212.88503369238], [0.013, 1.38408689559, 4885.8094378282], [0.012, 4.95862705668, 50536.73676596039], [0.014, 2.05563043425, 107692.22499299659], [0.012, 3.9377239153, 104668.00443595338], [0.014, 3.26407683636, 104401.60918820098], [0.014, 2.94492731309, 51120.35650622229], [0.013, 5.3055485999, 155475.15046625677], [0.014, 5.14050840336, 726.4820198702], [0.012, 2.41433841278, 24551.92639860479], [0.013, 3.02673254226, 182828.62108645737], [0.012, 2.94598982599, 5039.588248313], [0.013, 3.57478000552, 78484.12206716138], [0.013, 2.94343799803, 79315.97780791098], [0.012, 5.17024351037, 103402.43695732698], [0.012, 3.19152649116, 28309.75977617119], [0.012, 6.16852058989, 78413.27262185719], [0.013, 4.35939831008, 133767.65136415116], [0.013, 5.96217383792, 2538.2485042536], [0.012, 2.97455363125, 26290.15653674829], [0.012, 1.94777069809, 156377.8556523106], [0.012, 1.81926611664, 70069.43409151399], [0.013, 1.24212367708, 4437.51420837359], [0.012, 0.5377584257, 106470.37642667518], [0.012, 4.0602950761, 79487.5272655012], [0.012, 1.39982040688, 77417.62658997139], [0.012, 5.70094378358, 79330.20490191258], [0.012, 2.36617272843, 79994.83177765518], [0.012, 4.77094162628, 78999.58593825439], [0.012, 5.23189289937, 26411.4085582316], [0.014, 2.99800402366, 1073.6090241908], [0.012, 6.15146193785, 103704.60173298199], [0.012, 1.58617824624, 78571.26704569219], [0.013, 0.37894193721, 53124.98189211819], [0.012, 3.86549077079, 189853.99758261937], [0.013, 4.70785515154, 234261.43730907317], [0.012, 4.5409764894, 56259.79478985279], [0.012, 1.32257018476, 149756.7082481996], [0.011, 5.69779744921, 222224.97657418498], [0.012, 0.60900120711, 2751.5475996916], [0.011, 0.79876219873, 78225.57638908479], [0.013, 2.57664086838, 1116.4920990942], [0.012, 0.86411055123, 78043.29678228378], [0.011, 4.02869363295, 263097.78851992876], [0.011, 3.97587600566, 76998.14194609619], [0.011, 5.29433199334, 52797.55008398759], [0.013, 5.69550284497, 51688.1715318942], [0.015, 3.91946731118, 27665.246684022], [0.013, 4.89334198524, 45424.76544280259], [0.012, 2.33066141026, 130336.42293365239], [0.012, 2.97893637259, 25885.64974640009], [0.012, 0.33532325982, 41494.55574658299], [0.011, 1.81390783997, 104301.61594439259], [0.011, 3.67540306066, 79181.63971070439], [0.013, 1.92207364074, 2962.880601775], [0.012, 4.51335455691, 54190.78795494619], [0.012, 5.8914039722, 156954.01704032117], [0.012, 5.80412470555, 72134.41238521598], [0.011, 2.54446138738, 26183.88236879199], [0.011, 0.57810940674, 142871.55835826878], [0.014, 1.49797486148, 103883.64757594238], [0.011, 0.25563634033, 52663.44103440259], [0.011, 4.34226157432, 63786.3582415226], [0.011, 5.79546155779, 76358.24465978218], [0.011, 5.43581617959, 4398.17468657401], [0.01, 3.45435285202, 26830.8932021068], [0.01, 1.05961891051, 216897.50046580215], [0.01, 5.54078372768, 53867.97195265079], [0.013, 4.09291929409, 78378.1487134078], [0.012, 6.09214378282, 156523.5375140872], [0.012, 2.30793560033, 192828.60753723036], [0.011, 5.49984194986, 130593.29451835579], [0.01, 5.02934387609, 63.7358983034], [0.01, 2.56161075764, 3178.1457905676], [0.01, 4.51229030686, 80912.1642501956], [0.01, 3.26964460988, 143980.93691036216], [0.014, 0.09133406732, 138.5174968707], [0.014, 4.26704901561, 52171.87412988529], [0.01, 2.12874423735, 181563.05360783098], [0.01, 2.68594312022, 53551.5800829942], [0.01, 5.01052160566, 53311.4831550416], [0.013, 2.21304135803, 287.8878600698], [0.01, 5.99285759925, 129063.74190802519], [0.01, 0.23580667035, 159969.99379441058], [0.014, 4.15846442712, 52190.03337714999], [0.014, 2.17544501087, 2506.6449642566], [0.01, 2.39055885342, 78262.22495201428], [0.01, 5.33589950489, 128843.32926558638], [0.01, 3.69795961564, 175934.09713761977], [0.01, 5.50982370855, 181548.82651382938], [0.012, 0.91293309387, 53258.88651544199], [0.01, 0.21546965297, 155674.22246769318], [0.01, 5.05408550952, 182465.7587938848], [0.011, 1.47055363263, 76991.02839909539], [0.014, 1.74381856487, 36.6485629295], [0.014, 1.73080789777, 171292.65789271498], [0.01, 1.79047706298, 235746.72801577637], [0.012, 2.869185171, 2045.3085328022], [0.013, 5.94639118711, 168959.46149984296], [0.01, 5.24213703651, 130285.73689738619], [0.014, 6.10459624713, 454.9093665273], [0.01, 5.39397583397, 77.7505439839], [0.011, 1.99827759086, 1088.603156601], [0.01, 1.76064600598, 52489.992463018], [0.01, 5.11611480967, 113455.51956041438], [0.014, 4.11983704037, 54060.70744656579], [0.012, 2.84049561669, 183041.9201818954], [0.012, 3.1829708579, 228508.0524241764], [0.01, 1.62042818189, 231348.55332920235], [0.01, 2.3830820052, 181975.4247047054], [0.01, 5.17901157458, 203375.74902421076], [0.01, 1.70609651468, 78597.56536549199], [0.01, 3.0188061819, 104501.17576343138], [0.011, 1.42631059185, 58220.0348645238], [0.01, 3.45269160846, 99979.7361995226], [0.011, 4.42716378223, 235320.81923926238], [0.01, 4.45423293249, 5469.8837830406], [0.009, 4.68983089958, 80462.79676800959], [0.009, 1.77635894319, 50290.905119731], [0.01, 1.41464391522, 48091.817776444], [0.011, 5.93477819724, 158116.491744729], [0.01, 2.55614008171, 105418.10804348679], [0.009, 3.11835021508, 52206.1331441528], [0.009, 2.24380470375, 299.1263942692], [0.009, 3.22171579815, 51006.21803173979], [0.009, 3.24808968579, 78697.42116259939], [0.011, 0.73383746517, 17605.7399482958], [0.01, 2.45523846147, 233835.52853255917], [0.009, 4.35363918141, 190809.59732422797], [0.009, 2.77090630961, 76094.94894244], [0.012, 0.23038883503, 130907.4806982254], [0.009, 5.05551915235, 70383.6202713836], [0.009, 5.11051597902, 156093.7071115684], [0.011, 5.44617170556, 56777.7564021114], [0.009, 4.67339642631, 104771.09721017198], [0.009, 4.56456351898, 259819.64948555277], [0.009, 0.73352390338, 75085.56363415498], [0.01, 2.64743106367, 153186.8064227454], [0.01, 5.18315351919, 1382.1979324846], [0.012, 4.75714453262, 250665.74586953095], [0.011, 5.79093643324, 292628.26660646836], [0.009, 6.24971585432, 202420.14928260216], [0.012, 5.83966176266, 11790.6290886588], [0.011, 2.84614041718, 184204.39488630317], [0.01, 3.41187941424, 1905.4647649404], [0.01, 3.0024026508, 118828.96374949679], [0.009, 3.90754065548, 154308.6617452584], [0.01, 0.88848120961, 51315.49635439559], [0.011, 4.4943130123, 156531.3001848032], [0.009, 0.37279337773, 182622.43553802016], [0.009, 5.94479236467, 38634.3850806572], [0.009, 0.28434529807, 5019.9184874132], [0.011, 5.30507160437, 51257.8759971666], [0.009, 5.05598171209, 62197.64356324779], [0.009, 2.0074301127, 154194.22245657316], [0.01, 2.29548861266, 1211.341070359], [0.009, 1.40840962373, 78149.27013603736], [0.011, 2.69818187519, 195047.36464141717], [0.009, 3.7733811002, 52073.84376488279], [0.01, 4.16632261841, 1130.1539475858], [0.009, 4.71851534374, 257436.45647077652], [0.009, 1.56697202296, 156107.93420556997], [0.01, 3.84491070936, 42790.9652750732], [0.01, 0.84911221571, 61921.12683900499], [0.011, 3.4350449899, 81725.95413058778], [0.008, 3.46841587447, 156534.53239644598], [0.009, 3.07023951195, 78265.19389743089], [0.011, 5.3324059131, 49424.25868345679], [0.009, 3.80703237983, 184834.07909520617], [0.01, 5.24984657637, 860.3099287528], [0.008, 2.32846981012, 156451.15277816958], [0.009, 5.86810139691, 221135.26778299137], [0.009, 0.07267483428, 54879.422437824], [0.009, 3.53847001127, 1169.5882514086], [0.008, 0.40730399, 5852.7803152638], [0.01, 5.08938165465, 53661.0969898516], [0.009, 0.09227292796, 285857.5560052227], [0.009, 1.53921610006, 171004.7700326452], [0.01, 6.0236999988, 105403.88094948517], [0.009, 1.41005383919, 215473.93573383917], [0.008, 2.95064025568, 182611.44065566137], [0.011, 0.82592745776, 52098.05573916449], [0.011, 1.89268014069, 53265.515074342], [0.009, 0.91534494504, 130446.14426677099], [0.011, 5.68651428373, 97466.46267636596], [0.008, 6.09336539202, 65538.25598994759], [0.01, 4.71864870979, 1865.2314025176], [0.011, 0.33942008091, 2352.8661537718], [0.01, 0.58149039679, 51554.06248230919], [0.009, 4.63908561414, 130329.30938665158], [0.008, 3.29340479484, 76532.58707178998], [0.008, 0.39996086139, 31722.9368709266], [0.009, 2.07892055945, 84307.93800609799], [0.008, 0.10251061291, 130489.51232977519], [0.009, 4.86488540298, 197380.5610342892], [0.008, 2.84319355109, 247223.17092456558], [0.009, 5.40644601602, 205260.65018762814], [0.008, 2.99554948925, 28199.55345495179], [0.008, 2.31903661034, 50951.98844236979], [0.009, 3.67243760379, 132558.2795682494], [0.01, 3.84482406254, 199.0720014364], [0.008, 5.13311255182, 133780.12813457078], [0.008, 4.50659262629, 31775.5335105262], [0.01, 3.05711078565, 12098.1867096284], [0.009, 5.43609233651, 65851.33653522459], [0.008, 3.1647127512, 53438.96364572659], [0.008, 5.49628419906, 208063.32784627957], [0.009, 0.80806156177, 84944.9342781222], [0.008, 1.45936166924, 50160.82461135059], [0.009, 3.83369994945, 79902.77894191058], [0.008, 5.05169260225, 220025.88923089797], [0.01, 0.99908522442, 78373.91574594198], [0.008, 1.78435325528, 4743.4017631704], [0.009, 2.44642878457, 76468.45098100159], [0.01, 0.640410795, 106684.80895916879], [0.008, 0.22706755866, 130514.29730643828], [0.008, 4.45568539518, 175844.61138977378], [0.008, 5.30875425569, 104991.50985261079], [0.008, 4.26578657244, 78267.64157798568], [0.01, 3.66900856638, 22595.33157470459], [0.008, 5.3953090617, 1168.8988370466], [0.007, 2.97217552646, 130962.09312596478], [0.008, 5.4165915664, 106082.73491922939], [0.007, 6.14449914187, 154835.25317994278], [0.009, 3.77109166248, 76777.72930365738], [0.01, 2.68699198523, 31903.01400121119], [0.01, 4.1132528617, 51861.62010327879], [0.01, 6.22285311837, 52213.9393187862], [0.008, 4.05691998652, 130432.88714897096], [0.008, 5.44182392744, 24844.41553989579], [0.008, 5.31551782104, 26247.2048763664], [0.007, 3.34982243781, 53771.99272543299], [0.007, 0.76435484795, 103829.03514820298], [0.009, 0.48166296597, 4571.62325795859], [0.01, 2.5385762885, 23735.03698780239], [0.009, 3.0693298264, 51102.19725895759], [0.009, 0.81667861584, 180396.56488683258], [0.008, 1.37381137878, 182619.20332637738], [0.01, 4.53462580754, 195181.47369100217], [0.007, 5.92229713446, 102129.75593169978], [0.009, 1.70197819412, 114.3991069134], [0.009, 2.75554865259, 52145.47942214399], [0.007, 5.030029299, 78905.12298646157], [0.008, 4.70162992466, 77684.02183772379], [0.007, 2.16016333042, 252884.50297371778], [0.007, 4.7010481161, 197092.67317421938], [0.008, 3.34882273958, 92.0528357446], [0.007, 4.64287583099, 104659.17018726638], [0.007, 1.74834665027, 79116.90580647459], [0.007, 1.40803395997, 78149.31031780918], [0.007, 5.96603423152, 1685.0521225016], [0.008, 5.74025115791, 27441.651886591], [0.007, 3.32172728837, 186057.89693598478], [0.007, 5.77399157694, 52822.81711646319], [0.009, 5.4096900728, 25970.58327335399], [0.007, 5.0309737967, 51092.7260508548], [0.008, 4.85500497006, 79353.41821591619], [0.009, 2.91790460578, 128857.55635958798], [0.01, 2.62831495455, 104145.42701785959], [0.008, 3.65717048924, 50476.52706664519], [0.01, 4.97375703081, 128960.64913380658], [0.007, 0.63731291763, 132350.71519108818], [0.007, 3.70718359263, 61165.27398858079], [0.007, 1.524098908, 224577.84272795677], [0.007, 5.83295581556, 78339.97549599818], [0.007, 1.2898265788, 127791.06088239799], [0.007, 4.38077281912, 87648.55043279778], [0.007, 0.78772735446, 104044.0549453272], [0.007, 5.55018242223, 148532.89040742096], [0.008, 3.9435380026, 77929.8534839532], [0.007, 4.68484570125, 129971.55071751658], [0.007, 5.46082675395, 76352.50994150538], [0.007, 0.89727780818, 28213.78054895339], [0.006, 2.25546242417, 79955.87509422498], [0.007, 1.85784871452, 28096.46068073319], [0.006, 6.2231897778, 261988.40996783535], [0.006, 3.92166942434, 182402.02289558138], [0.006, 4.54553590954, 26235.9818660005], [0.006, 0.04385251847, 182634.99175191918], [0.006, 3.27000773736, 104557.79811473397], [0.006, 1.4831694091, 26191.68533015479], [0.006, 1.42098831764, 26026.177166834], [0.006, 4.63624566094, 57369.17334194619], [0.006, 2.24614788518, 131079.41299418497], [0.008, 1.46359871781, 74935.5737684424], [0.007, 0.19039890992, 117077.06600107178], [0.006, 2.30839350284, 27353.47062020059], [0.008, 4.05701479596, 60170.3347251726], [0.006, 2.25676540184, 118007.4730574732], [0.007, 5.19369769843, 91919.56991589899], [0.006, 2.17221286567, 27573.88326263939], [0.006, 3.04358438526, 83591.18553310538], [0.006, 5.50261387027, 26238.95081141709], [0.006, 5.55141392261, 207747.625390985], [0.007, 3.67760971466, 229129.79622501557], [0.006, 5.14998820697, 130364.73410930368], [0.006, 2.59291082745, 52186.8519834123], [0.006, 3.70620257597, 182608.20844401856], [0.007, 5.89987227798, 53757.76563143139], [0.007, 1.17954845926, 209232.91609768817], [0.007, 1.99199973963, 88285.54670482199], [0.006, 5.29985761538, 175376.64639941938], [0.007, 1.76338847974, 55484.27217852879], [0.008, 0.55724966367, 129806.73196855778], [0.005, 4.19687137282, 111032.83741969639], [0.006, 1.86021237763, 96471.52341295779], [0.006, 1.44535366888, 20043.6745601988], [0.006, 1.48244229587, 260349.34045064732], [0.006, 1.00031747475, 51538.81001112419], [0.005, 0.08842088266, 79859.89586700719], [0.006, 2.17116807817, 156373.64003896038], [0.007, 2.57540094308, 77218.55458853499], [0.006, 4.66124811472, 65717.22748563958], [0.005, 5.69376389474, 52400.1510788503], [0.006, 2.47972848111, 266540.3634648941], [0.005, 4.47086994598, 27360.58416720139], [0.005, 3.20880924837, 259769.65286364855], [0.005, 3.98361684334, 54862.5283776896], [0.007, 2.86077141334, 179172.74704605396], [0.005, 2.46087822928, 156681.19765992998], [0.007, 5.00361119157, 209762.60706278277], [0.005, 5.35670104895, 26513.8119180882], [0.006, 3.62607025643, 27883.16158529519], [0.005, 0.80991017339, 25661.9943650602], [0.006, 0.20069428083, 50490.75416064679], [0.005, 3.77056538505, 164407.50800278416], [0.005, 2.71005052987, 104427.87863757239], [0.006, 0.84754795471, 104466.051854982], [0.005, 2.69389382491, 180496.558130641], [0.005, 4.04820376371, 129277.04100346318], [0.006, 0.5782905701, 50600.9604818662], [0.006, 4.21216601811, 182595.65223011957], [0.005, 3.59670550074, 131072.29944718417], [0.005, 0.08842684725, 27993.3679065146], [0.006, 0.00392034365, 73891.83305794839], [0.006, 4.68979746906, 26149.62911631439], [0.005, 4.61789756581, 20894.5360827764], [0.005, 3.5709323278, 53654.67285721279], [0.005, 0.36682731238, 146505.58156934578], [0.005, 1.4054582464, 233202.055378884], [0.006, 2.35439456378, 139543.4227019886], [0.004, 1.28935961583, 234364.53008329176], [0.004, 1.10749672173, 51086.09749195479], [0.005, 3.64294402198, 27331.3907432526], [0.004, 0.00216060134, 213255.1786296524], [0.004, 4.40507427126, 129483.22655190038], [0.004, 2.18529936793, 23384.2869868986], [0.005, 0.93391333656, 52102.50915728939], [0.004, 2.33941435272, 23389.451694197], [0.004, 3.59370682931, 46564.4708559004], [0.004, 2.90835831307, 61299.38303816579], [0.004, 6.27884818175, 170068.84005193636], [0.004, 4.90170477242, 104888.41707839219], [0.004, 4.56426377076, 46131.577701773], [0.005, 2.12658067178, 130542.60848208958], [0.005, 2.50519016528, 79845.66877300559], [0.004, 6.24881318031, 18073.7049386502], [0.004, 1.10868110225, 52072.0240945678], [0.004, 6.14515791357, 34102.10134449819], [0.004, 2.9409789397, 129902.71119577558], [0.004, 2.91542426579, 130215.17091216908], [0.005, 2.2014651331, 82865.65954368559], [0.005, 4.46570663623, 104237.17327761157], [0.004, 5.1333479743, 26387.0295358434], [0.004, 5.34965278511, 24787.0763233692], [0.004, 4.17772291197, 53132.09543911899], [0.004, 2.66996288682, 25572.43927048119], [0.005, 1.14175711692, 188898.39784101077]], [[2608814706222.746, 0.0, 0.0], [1126007.832, 6.21703970996, 26087.9031415742], [303471.395, 3.05565472363, 52175.8062831484], [80538.452, 6.10454743366, 78263.70942472259], [21245.035, 2.83531934452, 104351.61256629678], [5592.094, 5.82675673328, 130439.51570787099], [1472.233, 2.51845458395, 156527.41884944518], [352.244, 3.05238094403, 1109.3785520934], [388.318, 5.48039225891, 182615.3219910194], [93.54, 6.11791163931, 27197.2816936676], [90.579, 0.00045481669, 24978.5245894808], [102.743, 2.14879173777, 208703.2251325936], [51.941, 5.62107554052, 5661.3320491522], [44.37, 4.57348500464, 25028.521211385], [28.07, 3.04195430989, 51066.427731055], [22.003, 0.86475371243, 955.5997416086], [27.295, 5.09210138837, 234791.12827416777], [20.425, 3.71509622702, 20426.571092422], [20.221, 0.51934047295, 21535.9496445154], [17.496, 5.7266360862, 4551.9534970588], [16.68, 1.35134428173, 529.6909650946], [15.306, 1.79184360652, 11322.6640983044], [15.398, 5.74263453989, 19.66976089979], [13.964, 3.59426938083, 24498.8302462904], [12.822, 2.69591798562, 53285.1848352418], [12.621, 3.89530641889, 3.881335358], [12.566, 4.70537436663, 1059.3819301892], [7.974, 4.17682324505, 26617.5941066688], [7.929, 0.50426804318, 46514.4742339962], [8.024, 3.92723313702, 27043.5028831828], [7.665, 2.48158305355, 57837.1383323006], [8.639, 6.06360282793, 77154.33087262919], [6.838, 2.77387065312, 7.1135470008], [6.554, 5.53478998989, 6770.7106012456], [5.846, 4.281396598, 16983.9961474566], [7.285, 1.74581868954, 260879.03141574195], [7.179, 2.97766079692, 2218.7571041868], [6.364, 2.1380561938, 25132.3033999656], [5.883, 2.19545230409, 13521.7514415914], [4.969, 2.4775213418, 30639.856638633], [4.578, 1.55845855383, 27147.28507176339], [4.857, 4.84757952324, 37410.5672398786], [5.022, 3.94124675992, 25661.3049506982], [4.381, 4.94471456712, 213.299095438], [4.211, 5.53886788148, 83925.0414738748], [4.299, 5.09070560802, 10213.285546211], [4.593, 0.81920676333, 25558.2121764796], [3.571, 2.34341884629, 32858.61374281979], [4.454, 5.7915915618, 3442.5749449654], [3.547, 3.59413896239, 26068.2333806744], [3.664, 1.39952931281, 77204.32749453338], [3.417, 0.49855041138, 22645.32819660879], [3.195, 1.25743024246, 14765.2390432698], [3.031, 4.45207030477, 7238.6755916], [3.284, 5.22996707635, 25448.00585526019], [2.974, 0.14234349726, 50586.73338786459], [2.855, 0.67083991526, 26091.7844769322], [2.773, 3.54351198199, 72602.37737557039], [3.132, 6.21365344759, 26080.78959457339], [2.732, 5.64171761904, 1589.0728952838], [2.652, 0.88219699366, 52705.49724824299], [3.125, 6.07160751766, 28306.66024576099], [2.799, 2.51152391376, 26107.57290247399], [2.403, 1.1551513036, 25035.6347583858], [2.274, 1.85167073193, 36301.18868778519], [2.501, 4.34723465048, 41962.5207369374], [2.321, 5.44262378304, 26084.0218062162], [2.535, 5.80101392346, 26095.016688575], [2.872, 1.63503968499, 25021.4076643842], [2.066, 1.0723184563, 43071.8992890308], [2.616, 2.78322243283, 103242.2340142034], [1.987, 2.95923214706, 23969.1392811958], [1.979, 4.44092591248, 103292.23063610759], [1.974, 0.83681704901, 12566.1516999828], [1.7, 2.28603732736, 110012.94461544899], [1.677, 4.63366122462, 53235.18821333759], [1.954, 4.67733727976, 286966.9345573162], [1.653, 1.25518276011, 33326.5787331742], [1.785, 1.80830270808, 26301.2022370122], [1.784, 5.17926273269, 426.598190876], [2.143, 5.16312278245, 51220.20654153979], [1.597, 5.53494401703, 56727.7597802072], [1.59, 0.07660134798, 23869.1460373874], [1.574, 3.7587058637, 73711.75592766379], [1.362, 1.13830507985, 68050.42387851159], [1.358, 1.45317020242, 51646.11531805379], [1.586, 4.65681044624, 79373.087976816], [1.347, 3.80254397382, 19317.1925403286], [1.242, 3.79389911401, 25874.6040461362], [1.124, 1.28920904043, 31749.2351907264], [1.065, 4.31416942177, 40853.142184844], [1.014, 3.58126441973, 48733.23133818299], [1.259, 1.73130656223, 12432.0426503978], [0.989, 0.33276224293, 52156.1365222486], [1.057, 4.35251408825, 77734.01845962799], [1.033, 3.72503880786, 6283.0758499914], [0.894, 0.29768279333, 105460.99111839019], [0.91, 0.49823258962, 99799.65906923798], [0.999, 5.29812267938, 65697.55772473979], [1.138, 2.56391312022, 29530.4780865396], [0.876, 4.91112286703, 62389.09182935939], [0.912, 0.27449857787, 98690.28051714458], [0.879, 4.78847722011, 18849.2275499742], [0.869, 3.87957425954, 78793.40038981718], [0.831, 2.35459129726, 27676.976036858], [0.791, 1.17444825871, 129380.13377768178], [0.782, 3.92653768734, 38654.05484155699], [0.782, 3.69412482234, 52179.6876185064], [0.745, 2.09648894863, 51535.90899683439], [0.736, 6.05470921559, 114.43928868521], [0.733, 3.2301997832, 47623.8527860896], [0.698, 2.99026308247, 52168.69273614759], [0.78, 5.77004504059, 129330.13715577759], [0.752, 4.22525357653, 51123.53789995999], [0.752, 4.70099207936, 51109.31080595839], [0.651, 5.87383050095, 2333.196392872], [0.699, 4.82823185979, 38519.945791972], [0.656, 3.65375726729, 25668.418497699], [0.66, 1.98037689941, 26514.5013324502], [0.808, 6.27898737551, 53131.406024757], [0.753, 5.64446551994, 45892.73043315699], [0.61, 1.21194007471, 153.7788104848], [0.604, 5.29267380518, 136100.84775702318], [0.811, 4.22885181263, 25654.19140369739], [0.697, 1.89331617498, 77308.10968311399], [0.581, 2.61707271637, 76674.63652943878], [0.549, 4.18661776549, 94138.32702008578], [0.567, 6.08785859254, 25234.70675982219], [0.549, 2.08003708209, 91785.46086631398], [0.563, 1.38660458, 79323.09135491178], [0.527, 5.83448542494, 50057.04242277], [0.524, 2.45745967369, 467.9649903544], [0.57, 3.1042551371, 15874.6175953632], [0.699, 2.57322536922, 52182.9198301492], [0.501, 0.39578180187, 32370.9789915656], [0.542, 2.77109053528, 54394.56338733519], [0.525, 1.31791713133, 313054.83769889036], [0.513, 2.28640740711, 82815.66292178139], [0.579, 5.45103833735, 52195.47604404819], [0.617, 4.18395572588, 639.897286314], [0.449, 3.10044122691, 49957.0491789616], [0.495, 2.11807671869, 52171.9249477904], [0.431, 3.0671483672, 131548.89425996438], [0.427, 5.353673111, 49.9966219042], [0.47, 1.46585019834, 1066.49547719], [0.47, 1.0748559576, 103821.92160120218], [0.415, 2.50109134151, 71980.63357473118], [0.395, 5.24320159822, 58946.51688439399], [0.408, 0.92030240581, 77837.11123384659], [0.523, 4.9239008231, 52389.1053785864], [0.377, 3.50882025297, 125887.56221081219], [0.508, 1.03838633466, 24491.71669928959], [0.418, 0.36439379673, 51962.5071877104], [0.4, 3.51557589073, 20760.4270331914], [0.359, 0.03091967859, 2118.7638603784], [0.356, 2.03727281128, 1052.2683831884], [0.423, 4.2143754624, 18093.37469954999], [0.34, 1.64349471632, 79219.3091663312], [0.336, 1.55276786593, 24505.94379329119], [0.348, 1.06528227311, 66941.04532641819], [0.327, 5.45093694594, 7880.08915333899], [0.303, 1.67537340603, 88476.99497093359], [0.323, 5.59204872298, 55618.3812281138], [0.281, 0.83478570176, 63498.47038145279], [0.393, 0.55222046684, 45405.0956819028], [0.28, 0.69995179262, 64741.95798313119], [0.381, 2.16540447546, 522.5774180938], [0.279, 4.17319236859, 155468.036919256], [0.314, 1.52755129973, 44937.1306915484], [0.28, 3.33549459014, 78244.0396638228], [0.272, 5.34763989826, 53764.8791784322], [0.287, 4.98400171694, 25551.09862947879], [0.288, 3.26773464056, 124778.18365871879], [0.275, 0.59220058467, 104881.30353139139], [0.229, 5.07700202235, 52602.4044740244], [0.265, 1.04033681288, 25938.3399444396], [0.224, 5.1072681918, 117873.36400788819], [0.242, 0.44760602599, 23754.70674870219], [0.214, 3.50460190598, 58458.88213313979], [0.23, 2.45937674101, 155418.04029735178], [0.211, 3.92377004339, 103925.01437542078], [0.282, 3.81265243625, 536.8045120954], [0.218, 4.88963285925, 103396.01282468818], [0.2, 5.41573374322, 16066.0658614748], [0.218, 0.41409439248, 78267.59076008058], [0.201, 2.38235635877, 23439.44831610119], [0.203, 2.69458032262, 59414.4818747484], [0.196, 0.92807787406, 120226.23016165999], [0.201, 2.00560473829, 162188.75089859738], [0.183, 3.83128433173, 69159.80243060499], [0.18, 2.20428238305, 89586.37352302698], [0.215, 5.3565209661, 206.1855484372], [0.178, 1.24568538055, 103.0927742186], [0.196, 0.44564203205, 51756.3216392732], [0.183, 2.88003872828, 3328.13565628019], [0.216, 4.48180965712, 26241.681952059], [0.215, 2.26752450953, 33967.99229491319], [0.193, 4.34407767816, 105307.21230790539], [0.2, 1.01165813281, 51742.09454527159], [0.17, 5.57003076622, 98068.53671630539], [0.224, 0.97932137082, 77211.44104153418], [0.168, 5.96360976147, 157636.79740153858], [0.178, 1.42319344949, 77197.21394753258], [0.196, 5.59654497318, 78270.82297172339], [0.161, 5.51918174079, 26555.8681319286], [0.197, 4.79975858562, 25455.119402261], [0.181, 4.3998767997, 105410.99449648599], [0.159, 2.63928704121, 28421.0995344462], [0.158, 0.75224521142, 51116.4243529592], [0.196, 4.92493608061, 102762.53967101299], [0.162, 2.82561928047, 26202.34243025941], [0.194, 1.02167898855, 44181.27784112419], [0.179, 5.11561177302, 25440.89230825939], [0.152, 5.21934955501, 77623.81213840858], [0.15, 5.98491689335, 78256.59587772179], [0.184, 0.26375114604, 419.4846438752], [0.144, 2.9065729497, 51322.60990139639], [0.163, 1.01728531879, 26727.8004278882], [0.16, 1.39225289207, 26011.6370702986], [0.145, 5.76503611587, 80482.46652890938], [0.14, 0.27227514908, 46848.3301747656], [0.136, 0.22641179921, 151975.46535238638], [0.142, 4.24343923379, 339142.7408404646], [0.178, 4.08547287819, 129909.82474277639], [0.142, 3.31130337074, 78050.41032928458], [0.131, 0.70125733168, 3340.6124266998], [0.154, 1.72826405606, 78477.00852016058], [0.159, 5.29643521725, 108903.56606335558], [0.129, 3.26743532785, 25973.46385288896], [0.128, 6.10775258657, 76044.9523205358], [0.144, 4.06091644657, 50579.61984086379], [0.164, 6.17696810226, 19406.6782881746], [0.139, 5.11979950242, 433.7117378768], [0.153, 1.30046862259, 13655.8604911764], [0.132, 5.23445066335, 26610.48055966799], [0.115, 4.6184579377, 50593.84693486539], [0.121, 2.52027376421, 76144.94556434419], [0.114, 4.51555533683, 27154.3986187642], [0.106, 5.18068866237, 85502.38501632259], [0.11, 3.45757703411, 25565.3257234804], [0.1, 0.11496600894, 74821.13447975718], [0.1, 3.95989644984, 26037.90651966999], [0.1, 3.0153538215, 28206.6670019526], [0.099, 5.99257260255, 29416.03879785439], [0.117, 3.56597928882, 71492.99882347698], [0.131, 5.96070215452, 1223.81784077861], [0.095, 1.840657503, 85034.42002596818], [0.102, 4.69459571654, 114564.89811250778], [0.097, 0.87353840441, 181555.94006083018], [0.118, 2.02298794976, 78283.37918562238], [0.111, 4.0731622796, 93028.94846799239], [0.09, 5.01726237192, 115674.27666460119], [0.094, 2.31806507832, 81706.28436968799], [0.089, 5.94413487088, 25131.61398560359], [0.095, 3.7229989459, 90829.86112470538], [0.12, 5.44384753792, 51749.20809227239], [0.105, 5.01803826552, 78259.82808936459], [0.086, 1.83551544255, 143961.2671494624], [0.108, 4.53825443085, 71025.0338331226], [0.083, 0.64015893446, 130012.91751699499], [0.099, 0.52218556269, 26624.70765366959], [0.094, 2.65386396812, 9103.9069941176], [0.098, 3.3148017225, 853.196381752], [0.08, 2.13424472361, 42153.969003049], [0.086, 2.05760695844, 79852.78232000639], [0.084, 0.97023030623, 131395.11544947958], [0.081, 0.28916970825, 84546.78527471398], [0.081, 5.18614814481, 220.4126424388], [0.081, 1.98383157756, 149.5631971346], [0.082, 0.05817684667, 104331.94280539699], [0.074, 1.62836007935, 25984.8103673556], [0.075, 1.84245188133, 78690.30761559859], [0.087, 3.5863485536, 130969.20667296558], [0.074, 5.06505616563, 27140.17152476259], [0.075, 5.47760610876, 134.109049585], [0.089, 6.25587801019, 150866.08680029298], [0.098, 4.71698591369, 12725.453434775], [0.069, 5.05822197567, 1911.1994832172], [0.081, 2.05307563846, 1596.1864422846], [0.075, 2.05688075943, 26137.8997634784], [0.069, 3.67576176321, 24609.0365675098], [0.081, 1.38060133126, 52329.58509363319], [0.069, 1.60181551296, 129483.91596626239], [0.067, 5.43668176629, 181505.94343892598], [0.066, 1.56953438995, 19804.8272915828], [0.066, 3.92553131581, 146314.13330323418], [0.062, 3.46967694133, 24925.4284371664], [0.079, 3.56674606057, 49842.60989027639], [0.067, 4.76959706409, 25881.717593137], [0.061, 2.61995550094, 183724.7005431128], [0.061, 1.63344766876, 13541.42120249119], [0.061, 2.31153135385, 124156.43985787958], [0.058, 3.88678278617, 18207.81398823521], [0.082, 1.36242531494, 128850.44281258718], [0.058, 2.9899017915, 110.2063212194], [0.064, 4.98131448153, 188276.6540401716], [0.067, 2.32849722473, 26294.08869001139], [0.057, 3.72454115593, 29428.515568274], [0.066, 1.69869503126, 51543.0225438352], [0.055, 2.30093263701, 52643.7712735028], [0.069, 1.78774826271, 51639.00177105299], [0.067, 4.00863968986, 103299.34418310839], [0.074, 6.14089486388, 14477.3511832], [0.054, 5.27646510692, 49527.35145767539], [0.056, 2.3349562066, 104358.72611329758], [0.062, 3.41967311766, 104355.49390165479], [0.05, 1.20854390978, 23976.2528281966], [0.064, 0.58512976749, 307.5576209696], [0.062, 3.6924578516, 641.41356173899], [0.062, 4.47317710621, 636.9962720242], [0.049, 4.09291926847, 52815.7035694624], [0.061, 0.78849475911, 155997.72788435058], [0.047, 2.1465925461, 7994.5284420242], [0.047, 0.00507866085, 104138.31347085879], [0.045, 2.28588893693, 25764.39772491679], [0.051, 2.98348805265, 40565.2543247742], [0.047, 4.03957254582, 77829.99768684579], [0.047, 3.21862563103, 178063.3684939606], [0.045, 4.41401819607, 103285.11708910679], [0.054, 3.47879330948, 77844.22478084739], [0.054, 2.83659707386, 6681.2248533996], [0.056, 1.11360360738, 131498.89763806018], [0.046, 3.38384624666, 26507.38778544939], [0.055, 2.68637168389, 25934.1243310894], [0.046, 4.78696197215, 104564.91166173479], [0.059, 1.2987910069, 38813.3565763492], [0.043, 3.86025201636, 10021.8372800994], [0.044, 1.90320971624, 51528.79544983359], [0.055, 0.4833507954, 23962.02573419499], [0.042, 4.11693586607, 26190.99591579279], [0.044, 1.64247485835, 76.2660712756], [0.042, 6.21848377968, 26094.53170047421], [0.041, 2.73996884659, 25867.49049913539], [0.043, 0.38981425968, 1089.7087911936], [0.043, 4.89046790101, 24395.7374720718], [0.041, 0.44351702671, 25619.9381512198], [0.041, 1.47439583353, 76681.75007643958], [0.039, 1.71519867865, 111590.2881578968], [0.041, 5.67594181048, 54509.0026760204], [0.049, 1.65739950579, 1581.959348283], [0.04, 1.85008425708, 27999.1026247914], [0.038, 3.99668572981, 9384.8410080752], [0.037, 2.83147987268, 102132.85546210999], [0.039, 0.84546566819, 365230.6439820388], [0.037, 4.65200082367, 90695.75207512038], [0.037, 0.94736176192, 76667.52298243798], [0.04, 0.16806354899, 22759.76748529401], [0.049, 2.02480943113, 134991.4692049298], [0.041, 5.85592543833, 52290.24557183361], [0.04, 1.214911274, 64607.84893354619], [0.041, 3.07842612799, 26081.27458267419], [0.035, 3.89800430981, 157483.01859105378], [0.037, 0.29068345666, 97580.90196505119], [0.035, 4.74965057267, 39629.32434406539], [0.035, 1.88777425098, 26521.614879451], [0.033, 3.60227423859, 156100.82065856917], [0.035, 1.9611419157, 74.7815985673], [0.045, 3.72467663437, 39609.6545831656], [0.038, 4.29218444251, 39743.7636327506], [0.032, 5.95900501016, 77410.51304297059], [0.032, 0.64794221724, 2648.454825473], [0.039, 5.08510962281, 25863.55834587229], [0.031, 1.62486752727, 141762.17980617538], [0.031, 1.25910229689, 53242.3017603384], [0.031, 2.65918037491, 104344.49901929598], [0.032, 0.00169740803, 52061.36699446317], [0.031, 6.12210016938, 25977.69682035479], [0.03, 5.72239820341, 579.6875869988], [0.03, 0.7055331987, 52125.80966124419], [0.039, 1.60801806885, 333.8559407694], [0.03, 5.28578152795, 102232.84870591838], [0.029, 0.53270948692, 50696.93970908399], [0.029, 0.40281274949, 35472.7441496494], [0.028, 2.96171859812, 100909.03762133139], [0.034, 1.41428136641, 140652.80125408198], [0.029, 6.00401578551, 54294.57014352679], [0.032, 0.45221016093, 116917.76426627958], [0.028, 5.0708896171, 26237.46633870879], [0.028, 5.33382835025, 107794.1875112622], [0.03, 3.86080757411, 207643.8432024044], [0.028, 4.81897403543, 170049.1702910366], [0.031, 1.90989851759, 26308.315784013], [0.035, 1.26114015069, 97112.93697469679], [0.028, 2.01146788563, 52698.38370124219], [0.033, 4.31496976407, 154938.34595416137], [0.028, 4.4678187573, 78417.48823520739], [0.033, 0.25034815279, 51653.22886505459], [0.026, 0.07835049738, 51013.33157874059], [0.029, 3.32582529322, 110634.68841628819], [0.027, 6.01993388409, 25227.59321282139], [0.036, 0.79025288269, 119116.85160956658], [0.026, 4.68624143375, 632.7837393132], [0.027, 1.14521834701, 121335.60871375339], [0.025, 3.42095174931, 956.2891559706], [0.028, 2.73386270717, 27311.72098235281], [0.024, 0.82215620694, 314.1861798696], [0.025, 5.21681600178, 25241.820306823], [0.025, 3.57372833543, 52712.61079524379], [0.027, 5.05183520711, 105940.68546158058], [0.031, 2.25462520789, 26720.68688088739], [0.025, 4.86890931082, 104778.21075717278], [0.023, 3.01659387998, 52182.4348420484], [0.026, 2.13973174244, 103711.71527998279], [0.023, 4.60383496965, 52072.71350892979], [0.023, 4.55605691468, 155571.81910783658], [0.022, 3.69622699918, 735.8765135318], [0.023, 2.40544682432, 8194.2753332086], [0.022, 2.44094101414, 2703.6161546756], [0.027, 5.29221944987, 26162.6847401415], [0.022, 4.11517024183, 19202.75325164339], [0.029, 4.25385019536, 647.0108333148], [0.021, 2.11851790816, 207593.8465805002], [0.029, 2.91003553544, 176953.98994186718], [0.026, 5.68398596586, 95247.70557217918], [0.021, 5.29289519906, 150244.3429994538], [0.024, 3.05210539174, 130419.8459469712], [0.02, 2.54144132983, 51219.51712717779], [0.02, 6.1640195918, 35191.8101356918], [0.022, 3.22920342008, 1083.0802322936], [0.028, 0.30709453091, 157057.10981453978], [0.023, 1.65280537431, 214364.55718174577], [0.027, 3.72484040647, 621.7438008392], [0.023, 2.59065413623, 71582.48457132299], [0.022, 0.94588004362, 52022.0274726636], [0.02, 3.8477679682, 5327.4761083828], [0.024, 4.82779429778, 104371.28232719658], [0.019, 1.94368317235, 22747.2907148744], [0.023, 3.19739923216, 6044.2285813754], [0.02, 0.58967836529, 172402.0364448084], [0.019, 2.73169091081, 55503.94193942859], [0.018, 1.63099638721, 48835.19385644859], [0.022, 1.62646807429, 104347.73123093879], [0.018, 4.90435895585, 77630.92568540938], [0.018, 0.59687432455, 183570.921732628], [0.024, 5.58828197916, 34282.1784747828], [0.018, 5.54856348293, 209812.60368468694], [0.019, 0.53136209334, 55516.4187098482], [0.02, 0.73777252741, 129387.24732468258], [0.021, 4.62446809035, 13362.4497067992], [0.021, 1.94768946886, 487.6347512542], [0.019, 4.18946427203, 78114.14622758799], [0.023, 2.43977160852, 24822.3356629478], [0.017, 2.24086275048, 26222.0121911592], [0.018, 5.08348808758, 27684.0895838588], [0.017, 4.31062701282, 50064.15596977079], [0.017, 0.6271358155, 44295.7171298094], [0.022, 0.09847423078, 26941.0995233262], [0.019, 2.09224104001, 86143.79857806159], [0.016, 0.43713509764, 101.9625182656], [0.016, 4.27219175799, 24176.703658357], [0.018, 5.24040005379, 68241.8721446232], [0.02, 5.09682447452, 60055.89543648739], [0.016, 4.08590900542, 147423.51185532758], [0.018, 2.12913862198, 106570.36967048359], [0.016, 1.0066838715, 25138.7275326044], [0.016, 5.76419504418, 14.2270940016], [0.021, 6.16511987091, 52169.17772424839], [0.016, 0.82798074394, 96357.08412427259], [0.016, 3.75399093257, 159.3017347922], [0.017, 4.95698248546, 52225.8029050526], [0.017, 6.11461465994, 26198.1094627936], [0.017, 6.19302565011, 204151.27163553477], [0.017, 5.34573358099, 78731.674415077], [0.016, 1.90468795194, 128320.75184749259], [0.017, 3.73180335896, 182085.63102592478], [0.017, 5.86222137701, 32132.1317229496], [0.019, 1.56034038551, 51969.62073471119], [0.018, 2.5408624212, 25780.3455206046], [0.015, 4.29267057949, 1692.1656695024], [0.016, 1.75865740707, 53228.07466633679], [0.02, 2.35700883433, 75615.25459924959], [0.015, 5.29296109539, 130446.62925487179], [0.014, 0.85174293693, 78903.60671103658], [0.015, 5.50776870695, 52808.59002246159], [0.017, 5.96622721781, 32769.1279949738], [0.014, 5.40589812318, 52381.99183158559], [0.014, 2.92783624754, 130226.21661243298], [0.014, 4.73334676783, 26164.1692128498], [0.018, 4.09540263999, 157586.80077963436], [0.015, 5.00568645183, 28791.5192962498], [0.013, 0.88297787282, 24292.64469785319], [0.018, 0.07544318179, 2199.087343287], [0.014, 0.39198838648, 1162.4747044078], [0.012, 4.87283902225, 64901.25971792339], [0.013, 4.28417448099, 23866.04650697719], [0.013, 3.77892895408, 391318.54712361295], [0.012, 0.90287358387, 104202.04936916218], [0.012, 1.68139724364, 72936.23331633979], [0.015, 3.7610819499, 111122.32316754239], [0.012, 1.82629728829, 22909.7573510066], [0.013, 1.25451832397, 26724.8994135984], [0.012, 5.74844907374, 97670.38771289718], [0.012, 1.52451201886, 130652.81480330898], [0.011, 5.30694474936, 24601.92302050899], [0.014, 2.82065667408, 1639.069517188], [0.015, 4.79144654769, 77726.90491262719], [0.013, 5.37369194634, 8989.46770543239], [0.013, 3.84042504901, 25953.79409198919], [0.015, 0.08558342266, 130443.39704322898], [0.011, 5.16135808879, 233681.74972207437], [0.012, 0.99700192092, 65831.6667743248], [0.012, 4.51508367315, 78187.44335344699], [0.012, 0.62022460619, 36109.7404216736], [0.011, 1.08182792, 129373.02023068098], [0.014, 5.59428027773, 25446.4895798352], [0.011, 4.68045355937, 74923.09699802278], [0.014, 4.68060965317, 27669.86248985719], [0.012, 4.91061349082, 54087.0057663656], [0.01, 0.73914692842, 103917.90082841998], [0.013, 4.96538793287, 161079.37234650398], [0.011, 0.31330958005, 182188.72380014337], [0.013, 3.74649756573, 145204.75475114078], [0.01, 1.79124533717, 949.1756089698], [0.01, 4.24347093551, 78109.93061423779], [0.01, 1.22394899357, 104505.39137678158], [0.012, 3.21001019103, 102018.41617342478], [0.011, 4.48294709049, 102769.65321801379], [0.01, 4.33936275875, 95.9792272178], [0.01, 3.73409843943, 199599.31813847594], [0.012, 6.08780023115, 25450.90686955], [0.012, 0.52219299955, 125112.03959948818], [0.012, 3.12928292612, 11610.5519583742], [0.013, 2.59745313501, 78378.1487134078], [0.01, 0.95664142687, 45290.65639321759], [0.011, 3.04942272888, 309.2783226558], [0.012, 3.42470973506, 143005.6674078538], [0.009, 5.24571653547, 34082.4315835984], [0.012, 1.94632930172, 1135.6768718932], [0.01, 2.75654212398, 103.7821885806], [0.01, 6.06089846081, 78270.3379836226], [0.009, 1.42295924162, 12546.481939083], [0.009, 5.2388907902, 160.40736938481], [0.01, 1.77339719648, 25754.0472008048], [0.011, 3.45444324976, 27177.6119327678], [0.01, 2.40808781707, 3462.2447058652], [0.012, 0.211155779, 103932.12792242158], [0.01, 0.44397528833, 26729.31670331319], [0.009, 4.39355955971, 224.3447957019], [0.009, 5.76319803259, 86457.98475793119], [0.009, 3.21350384534, 123668.80510662538], [0.009, 5.50134612867, 25352.02662804239], [0.009, 3.61240341796, 76784.84285065818], [0.009, 3.71346537596, 78213.71280281838], [0.011, 0.04658635952, 136722.59155786238], [0.009, 3.16339317765, 24079.34560241519], [0.01, 1.52307057829, 196137.07343261078], [0.009, 5.78277172101, 137210.22630911658], [0.009, 5.34709321166, 16703.062133499], [0.01, 1.10603431719, 76152.05911134499], [0.01, 2.92130709301, 78257.08086582259], [0.009, 4.9259138928, 52609.51802102519], [0.008, 4.47915729665, 167850.0829477496], [0.01, 3.52532046928, 50049.92887576919], [0.009, 5.74701495675, 128220.75860368418], [0.009, 3.39636103723, 25771.5112719176], [0.009, 0.40885845708, 173511.41499690176], [0.009, 0.0521477146, 209232.91609768817], [0.011, 4.3947350056, 166740.70439565618], [0.008, 0.83788793173, 52101.02468458109], [0.009, 0.39740145698, 208173.534167499], [0.009, 2.14648409917, 52250.5878817157], [0.011, 0.77019715443, 181026.24909573558], [0.008, 0.46458507594, 11.0457002639], [0.009, 3.75726239516, 26395.46076254379], [0.011, 3.88183253605, 99024.13645791399], [0.009, 5.91589628233, 26404.2950112308], [0.008, 3.62038830716, 28736.3579670472], [0.009, 5.53218561478, 50910.238804522], [0.008, 3.98222002302, 51226.63067417859], [0.008, 2.20332298794, 35077.37084700659], [0.01, 1.71606704784, 132028.58860315479], [0.009, 4.19828805921, 123200.84011627098], [0.008, 4.94949508683, 1263.15736257819], [0.008, 0.3825502474, 78800.51393681798], [0.008, 3.55931433878, 25508.2155545754], [0.008, 2.06623542364, 133882.09065283637], [0.008, 2.76004606287, 103498.41618454478], [0.009, 6.07146960892, 52595.29092702359], [0.01, 4.64768763301, 240452.46032331997], [0.01, 4.75089417351, 158116.491744729], [0.009, 3.16830318341, 156531.3001848032], [0.009, 0.51442466727, 233731.7463439786], [0.008, 1.84170519176, 52325.36948028299], [0.009, 1.5802092941, 130866.11389874699], [0.008, 1.31021834242, 78160.61665050399], [0.007, 3.52394232228, 209658.82487420217], [0.007, 5.30361639156, 51852.30086649099], [0.007, 1.68129390597, 103704.60173298199], [0.007, 4.93711462539, 77616.69859140778], [0.007, 4.26547182656, 130363.24963659538], [0.008, 5.88262362064, 51955.39364070959], [0.009, 2.85041915486, 52286.01260436779], [0.009, 4.54751921819, 222224.97657418498], [0.007, 2.95164397426, 58857.03113654799], [0.007, 5.09932324366, 26421.7590823436], [0.008, 5.95900851407, 625.6701923124], [0.008, 2.87611784406, 182595.65223011957], [0.007, 2.95245442922, 70269.18098269838], [0.009, 1.85768285044, 2168.7604822826], [0.009, 5.87894263333, 203041.8930834414], [0.007, 5.76376514627, 53399.624123927], [0.007, 3.19368974135, 77947.31755506598], [0.007, 0.58513513972, 17893.6278083656], [0.007, 1.25969543054, 104275.34649502118], [0.007, 1.78997113742, 187167.2754880782], [0.007, 3.04234073392, 77101.23472031478], [0.007, 5.13452237557, 77307.42026875199], [0.008, 2.39389370291, 51534.3927214094], [0.007, 0.36315569295, 179172.74704605396], [0.009, 4.65044386389, 156954.01704032117], [0.007, 5.75015377153, 78580.10129437919], [0.008, 4.90310056069, 101703.15774082378], [0.007, 2.81152781596, 92741.06060792258], [0.007, 4.53777069646, 78339.97549599818], [0.008, 3.72793390212, 77795.74443436819], [0.007, 4.99225219771, 102659.44689679438], [0.008, 1.24101149187, 128857.55635958798], [0.006, 1.24806705522, 181659.72224941078], [0.007, 1.41908776548, 39450.3528483734], [0.008, 5.07207947299, 202420.14928260216], [0.006, 3.88021248158, 104991.50985261079], [0.007, 0.4481172726, 104301.61594439259], [0.007, 6.19019459405, 37698.4550999484], [0.008, 3.27628873745, 183145.012956114], [0.006, 1.04156861985, 104197.83375581198], [0.007, 6.04804574225, 103189.13786188899], [0.007, 6.15588549143, 75930.51303185058], [0.007, 2.01982955946, 176332.24614102798], [0.007, 4.68299502093, 838.9692877504], [0.007, 4.32694078051, 104248.51979207818], [0.006, 0.30098706976, 54824.2611086214], [0.007, 2.39268679107, 80596.9058175946], [0.006, 0.45279066685, 225687.22128005017], [0.006, 4.9361756676, 215473.93573383917], [0.006, 4.22528261713, 79330.20490191258], [0.007, 5.53062936347, 917.9302859818], [0.006, 0.27837413876, 76137.83201734339], [0.007, 1.50054882304, 78313.70604662679], [0.006, 4.84865195534, 213255.1786296524], [0.007, 0.37969316028, 102872.74599223239], [0.006, 4.82915128356, 79859.89586700719], [0.007, 2.36435599398, 58220.0348645238], [0.007, 0.762437199, 183674.70392120857], [0.006, 3.48561717935, 61560.64729122359], [0.007, 3.15542325331, 53029.0026649004], [0.006, 2.04066112896, 156534.53239644598], [0.006, 4.08906102427, 91919.56991589899], [0.006, 3.6498851175, 151199.94274106238], [0.006, 4.09613031145, 53867.97195265079], [0.006, 3.49486002612, 66653.15746634839], [0.007, 2.89745929648, 230239.17477710897], [0.006, 3.99809593088, 50380.54783942739], [0.006, 3.65663654813, 70383.6202713836], [0.006, 6.23319937932, 182619.20332637738], [0.006, 0.15202166498, 51859.41441349179], [0.006, 0.36162525319, 26823.77965510599], [0.006, 5.03417122369, 78786.28684281638], [0.006, 2.61401898803, 80382.47328510099], [0.006, 5.0693978209, 51841.950342379], [0.008, 4.96432797037, 52396.2189255872], [0.006, 3.74091556543, 155475.15046625677], [0.006, 4.29792825666, 52812.8025551726], [0.007, 6.02219529486, 156507.7490885454], [0.005, 6.28085632767, 31415.379249957], [0.006, 2.7051772072, 52492.19815280499], [0.007, 6.25185953525, 74935.5737684424], [0.005, 6.03800330793, 84944.9342781222], [0.007, 2.08385155566, 104819.57755665119], [0.005, 2.79143401592, 51315.49635439559], [0.007, 0.15300257128, 2014.9816717978], [0.006, 5.45690475475, 1243.4876016784], [0.005, 1.7231082929, 103718.82882698359], [0.005, 0.0534317532, 27044.1922975448], [0.005, 1.35980682609, 94329.77528619739], [0.007, 5.94496795198, 256327.07791868312], [0.006, 1.88665916947, 80174.90890793978], [0.005, 2.15640465605, 235900.50682626115], [0.005, 5.97271372078, 156314.1197540072], [0.006, 2.6662090451, 229129.79622501557], [0.005, 2.52891655111, 123758.29085447139], [0.006, 1.20953605164, 130459.18546877075], [0.005, 4.06443360712, 130285.73689738619], [0.007, 1.34355308244, 1731.1223529326], [0.005, 2.36158299954, 78896.49316403578], [0.005, 0.96987247797, 149288.74325784517], [0.005, 0.76610110351, 24864.08530079559], [0.005, 1.95647355963, 76571.54375522019], [0.005, 1.13701088228, 26312.2479372761], [0.005, 1.05826639118, 27780.06881107659], [0.005, 4.54130791881, 156740.7179448832], [0.006, 3.58276567647, 198489.9395863826], [0.005, 0.51603916276, 171292.65789271498], [0.006, 3.03452226064, 77741.13200662879], [0.005, 1.46111595893, 101011.00013959699], [0.005, 0.02805624095, 149756.7082481996], [0.005, 5.10195955921, 112231.70171963578], [0.005, 4.87459278742, 78413.27262185719], [0.007, 3.69898590349, 81604.32185142238], [0.005, 0.76195152302, 417406.4502651872], [0.005, 0.55904094194, 2383.1930147762], [0.005, 3.95096384085, 78188.92782615528], [0.005, 1.76549372525, 53771.99272543299], [0.005, 3.3535670841, 205260.65018762814], [0.006, 5.57902902188, 87253.17713015496], [0.005, 0.26610630357, 235746.72801577637], [0.005, 2.90596877294, 154194.22245657316], [0.004, 1.1697417665, 193937.9860893238], [0.004, 3.93130462476, 130289.95251073639], [0.004, 4.33627478046, 89.485747846], [0.005, 2.8002233534, 4437.51420837359], [0.006, 4.70286246928, 91805.13062721379], [0.005, 1.82284966431, 1884.9011634174], [0.005, 2.02580304988, 259769.65286364855], [0.004, 4.65165864815, 195047.36464141717], [0.004, 0.588581477, 323.5054166574], [0.004, 4.0062366874, 175376.64639941938], [0.004, 0.64833718455, 156377.8556523106], [0.004, 2.71436739189, 182402.02289558138], [0.005, 4.68929437146, 79315.97780791098], [0.004, 5.71176695959, 81591.84508100279], [0.004, 1.42876132655, 52252.07235442399], [0.005, 2.55069425936, 154308.6617452584], [0.005, 1.42813778372, 266540.3634648941], [0.004, 2.00085806148, 189386.03259226496], [0.005, 4.29231489707, 220025.88923089797], [0.004, 6.20316213523, 79116.90580647459], [0.004, 0.85257120719, 118007.4730574732], [0.004, 5.77579934605, 129799.61842155698], [0.004, 4.47492094862, 137678.191299471], [0.004, 1.6456663118, 78697.42116259939], [0.005, 2.1751453684, 51329.7234483972], [0.006, 4.78710650697, 102755.42612401219], [0.004, 1.46002058771, 935.92998070881], [0.005, 5.13889133658, 130907.4806982254], [0.004, 1.8932118711, 2111.6503133776], [0.004, 0.10839681347, 38.1330356378], [0.005, 4.42201446083, 78057.52387628538], [0.005, 5.65870377214, 1300.826818205], [0.005, 5.90579064813, 1478.8665740644], [0.004, 5.24580055005, 52309.9153327334], [0.004, 2.74756161638, 144916.86689107097], [0.005, 3.31232177694, 48847.6706268682], [0.004, 4.43048849829, 118828.96374949679], [0.004, 0.51369916437, 181563.05360783098], [0.004, 5.22571179686, 261988.40996783535], [0.004, 0.80000960641, 1485.2907067032], [0.004, 3.25642623421, 195181.47369100217], [0.005, 5.23264312237, 126996.94076290558], [0.004, 3.86524951456, 209762.60706278277], [0.004, 3.43760746038, 234261.43730907317], [0.004, 0.67741502331, 131079.41299418497], [0.004, 5.40862384292, 104984.39630560997], [0.004, 0.30384598125, 285907.552627127], [0.004, 5.65734972357, 51868.2486621788], [0.004, 5.55015227967, 149846.1939960456], [0.004, 1.51752118872, 103814.80805420138], [0.004, 2.53135799952, 79487.5272655012], [0.004, 1.88512485652, 54879.422437824], [0.004, 5.12386500502, 182622.43553802016], [0.004, 4.36228014188, 207747.625390985], [0.004, 3.24471199066, 130020.03106399579], [0.004, 0.51045647492, 107692.22499299659], [0.004, 4.26267840541, 132658.27281205778], [0.004, 3.08522628552, 175844.61138977378], [0.004, 3.38866894732, 104888.41707839219], [0.004, 1.21404057369, 139543.4227019886], [0.005, 3.75130732, 62197.64356324779], [0.004, 0.30056239753, 233202.055378884], [0.004, 4.20598588282, 218916.51067880457], [0.004, 1.34568004641, 182828.62108645737], [0.004, 0.68519128486, 104276.83096772949], [0.004, 0.20412928769, 169093.57054942797], [0.003, 0.98973904852, 105418.10804348679], [0.004, 3.42019897755, 61279.713277266], [0.003, 5.22780381742, 78338.49102328988], [0.003, 2.67114319601, 24998.19435038059], [0.004, 1.65814724695, 50800.03248330259], [0.004, 3.24764679291, 28286.9904848612], [0.004, 6.01723954923, 104237.17327761157], [0.003, 3.99050522839, 71378.55953479178], [0.003, 3.46632047879, 45494.58142974879], [0.003, 4.27304181959, 130593.29451835579], [0.003, 4.05932083484, 52822.81711646319], [0.003, 5.89324219451, 50483.640613646], [0.003, 2.88091404327, 78149.27013603736], [0.003, 4.09573256493, 155460.9233722552], [0.003, 0.40695406256, 52278.89905736699], [0.003, 0.53381434741, 26709.6469424134], [0.003, 1.00008179165, 50264.6067999312], [0.004, 5.67939124426, 106470.37642667518], [0.003, 0.77610404005, 142871.55835826878], [0.003, 3.80375047171, 26402.0893214438], [0.003, 2.44134109777, 156520.30530244438], [0.003, 0.98764974659, 128843.32926558638], [0.003, 3.6290381593, 130435.63437251298], [0.003, 2.12651302584, 78469.89497315978], [0.003, 4.29158350083, 154408.65498906677], [0.003, 1.06499703474, 26734.913974889], [0.003, 1.86490629185, 51707.84129279399], [0.003, 5.95559848753, 104344.98400739678], [0.004, 3.60184879954, 207114.15223730978], [0.003, 3.28684847821, 208276.62694171758], [0.003, 2.80509981839, 104358.2411251968], [0.003, 5.02808401414, 130432.40216087017], [0.003, 6.1660165005, 20043.6745601988], [0.003, 5.29581547615, 57503.2823915312], [0.003, 1.3503644855, 23919.1426592916], [0.002, 3.75076268715, 130005.80396999417], [0.003, 3.05479754348, 162810.49469943656], [0.003, 2.06087055668, 52065.59996192899], [0.003, 1.11245383788, 192828.60753723036], [0.002, 1.90218644384, 24356.7807886416], [0.002, 4.74203919229, 76887.93562487679], [0.002, 0.63548334553, 23384.2869868986], [0.002, 2.51564214512, 26667.590728573], [0.002, 6.08909078783, 116783.65521669458], [0.002, 3.56733241522, 26073.67604757259], [0.003, 5.60392923976, 104466.051854982], [0.002, 3.56126103854, 26189.8656598398], [0.002, 5.97797555746, 50167.24874398939], [0.002, 4.41481991835, 65538.25598994759], [0.002, 5.91297170155, 87367.61641884019], [0.002, 5.1750816963, 163298.1294506908], [0.003, 1.10832319418, 25600.26839032], [0.002, 2.11477268878, 25773.71696170459], [0.002, 2.15515419441, 51951.46148744649], [0.003, 5.43138498093, 106684.80895916879], [0.002, 0.11511311275, 27170.98337386779], [0.002, 5.22579437397, 6885.14988993081], [0.002, 2.93412437896, 63786.3582415226], [0.003, 6.19860078008, 25004.8229092806], [0.002, 0.23150025826, 24448.8336243862], [0.002, 0.54898566845, 153084.84390447979], [0.002, 0.63373893542, 1265.5674786264], [0.002, 4.49873870855, 50007.0458008658], [0.002, 5.57750243319, 25928.601406782], [0.002, 5.66467419812, 25466.159340735], [0.002, 5.10682926241, 159969.99379441058], [0.002, 3.49751807681, 259819.64948555277]], [[53049.845, 0.0, 0.0], [16903.658, 4.69072300649, 26087.9031415742], [7396.711, 1.34735624669, 52175.8062831484], [3018.297, 4.45643539705, 78263.70942472259], [1107.419, 1.26226537554, 104351.61256629678], [378.173, 4.319980559, 130439.51570787099], [122.998, 1.06868541052, 156527.41884944518], [38.663, 4.08011610182, 182615.3219910194], [14.898, 4.6334308581, 1109.3785520934], [11.861, 0.79187646439, 208703.2251325936], [5.243, 4.71799772791, 24978.5245894808], [3.575, 3.77317513032, 234791.12827416777], [2.566, 1.44059109766, 27197.2816936676], [2.045, 1.49570544876, 51066.427731055], [1.064, 0.46023695675, 260879.03141574195], [0.972, 1.80344701358, 955.5997416086], [0.628, 6.18483168149, 529.6909650946], [0.628, 4.8493010532, 24498.8302462904], [0.763, 4.54299337366, 77154.33087262919], [0.654, 0.98170349539, 5661.3320491522], [0.572, 5.92841937309, 25028.521211385], [0.552, 2.1322864657, 20426.571092422], [0.507, 4.11466890786, 4551.9534970588], [0.608, 4.54152310086, 2218.7571041868], [0.439, 3.40705996719, 11322.6640983044], [0.381, 2.83442391504, 26617.5941066688], [0.37, 0.8236064656, 6770.7106012456], [0.312, 5.1878582963, 46514.4742339962], [0.314, 3.42002895816, 286966.9345573162], [0.307, 3.20507351217, 1059.3819301892], [0.332, 0.97416155325, 25132.3033999656], [0.327, 2.22989850002, 21535.9496445154], [0.303, 4.68482058244, 27043.5028831828], [0.247, 5.87612469398, 16983.9961474566], [0.311, 4.22422008005, 3442.5749449654], [0.237, 4.37101224231, 114.43928868521], [0.234, 0.93917232374, 30639.856638633], [0.273, 1.29086264556, 103242.2340142034], [0.209, 3.30158370895, 213.299095438], [0.197, 2.07792605062, 22645.32819660879], [0.182, 0.62534354989, 25448.00585526019], [0.219, 1.3418873834, 28306.66024576099], [0.168, 6.20806483822, 27147.28507176339], [0.156, 3.91999448441, 32858.61374281979], [0.16, 5.7937744941, 52705.49724824299], [0.153, 4.33936015634, 1589.0728952838], [0.161, 4.80105233203, 23869.1460373874], [0.148, 1.97575825359, 72602.37737557039], [0.145, 5.96024756685, 14765.2390432698], [0.129, 4.16213277137, 23969.1392811958], [0.135, 3.8677543707, 51220.20654153979], [0.14, 3.66642468738, 25558.2121764796], [0.108, 1.39723983534, 50586.73338786459], [0.115, 0.15124159675, 26301.2022370122], [0.113, 4.9813748525, 79373.087976816], [0.115, 3.05230359467, 53285.1848352418], [0.099, 3.99635236807, 56727.7597802072], [0.099, 3.84242768306, 83925.0414738748], [0.093, 2.04998627084, 26068.2333806744], [0.092, 0.08628005998, 313054.83769889036], [0.094, 4.30968259383, 129330.13715577759], [0.085, 3.01984486981, 53235.18821333759], [0.105, 5.32363189985, 7238.6755916], [0.095, 2.24093904831, 19317.1925403286], [0.099, 1.00218248773, 29530.4780865396], [0.075, 5.40269356209, 26091.7844769322], [0.074, 4.31017375756, 2333.196392872], [0.086, 0.78555390902, 57837.1383323006], [0.081, 0.9588922979, 26107.57290247399], [0.085, 3.28561166885, 12432.0426503978], [0.07, 3.55533072657, 13521.7514415914], [0.078, 0.27707431029, 37410.5672398786], [0.063, 0.6582852544, 110012.94461544899], [0.064, 2.68437002997, 43071.8992890308], [0.067, 3.8921657878, 26084.0218062162], [0.064, 2.75958867988, 40853.142184844], [0.061, 5.77836694481, 12566.1516999828], [0.069, 3.44813862795, 10213.285546211], [0.06, 0.79452201416, 53131.406024757], [0.063, 5.02106928248, 98690.28051714458], [0.063, 2.49160532665, 78793.40038981718], [0.059, 0.1554109817, 36301.18868778519], [0.056, 1.01839356017, 27676.976036858], [0.053, 1.55958841442, 49957.0491789616], [0.052, 5.14041028675, 52156.1365222486], [0.052, 1.15062443564, 26202.34243025941], [0.052, 0.5368757688, 77308.10968311399], [0.048, 1.60851837486, 25234.70675982219], [0.048, 5.19507775798, 48733.23133818299], [0.053, 5.49113976101, 25661.3049506982], [0.046, 5.18676728087, 77204.32749453338], [0.044, 4.971456138, 25973.46385288896], [0.054, 0.32708522231, 25874.6040461362], [0.042, 2.21900478384, 52179.6876185064], [0.045, 2.52716095523, 103292.23063610759], [0.048, 0.4894487653, 51646.11531805379], [0.039, 6.2527517396, 47623.8527860896], [0.041, 2.81015791586, 41962.5207369374], [0.037, 5.01445357044, 26080.78959457339], [0.038, 6.08585317961, 79323.09135491178], [0.043, 3.24574920597, 52389.1053785864], [0.041, 2.43000457106, 639.897286314], [0.039, 0.76157461206, 82815.66292178139], [0.034, 3.28090243752, 62389.09182935939], [0.037, 0.05738918168, 38519.945791972], [0.035, 5.78457148656, 68050.42387851159], [0.04, 3.14856042352, 426.598190876], [0.042, 4.09553132731, 52195.47604404819], [0.032, 2.45518077222, 38654.05484155699], [0.039, 1.80165134294, 33326.5787331742], [0.041, 4.32141055637, 26095.016688575], [0.032, 3.72358129034, 136100.84775702318], [0.04, 5.69015360764, 31749.2351907264], [0.032, 1.65828846012, 105460.99111839019], [0.032, 1.0254998481, 155418.04029735178], [0.03, 1.57915654792, 52168.69273614759], [0.031, 0.69335015231, 50057.04242277], [0.033, 4.04678616141, 55618.3812281138], [0.029, 3.72464718175, 51535.90899683439], [0.029, 5.7365444786, 129380.13377768178], [0.038, 3.74472554242, 18849.2275499742], [0.028, 3.05059885517, 339142.7408404646], [0.035, 0.74194291507, 52171.9249477904], [0.028, 0.73918545262, 7880.08915333899], [0.036, 1.26742819742, 51116.4243529592], [0.035, 5.2929814316, 45405.0956819028], [0.032, 5.79438282818, 18093.37469954999], [0.026, 5.79318346346, 66941.04532641819], [0.028, 4.27104078603, 54394.56338733519], [0.024, 5.0630479161, 2118.7638603784], [0.03, 1.05420470769, 52182.9198301492], [0.025, 1.7599691024, 124778.18365871879], [0.022, 4.43631488516, 3328.13565628019], [0.022, 5.09106835544, 99799.65906923798], [0.022, 1.88199362566, 78244.0396638228], [0.021, 2.561232112, 94138.32702008578], [0.025, 5.46150069597, 104881.30353139139], [0.025, 0.05236467599, 26514.5013324502], [0.025, 3.02983070039, 77734.01845962799], [0.02, 3.48966334599, 103396.01282468818], [0.021, 3.97495995227, 53764.8791784322], [0.018, 1.07895331282, 28421.0995344462], [0.019, 1.98308917333, 23754.70674870219], [0.018, 4.5863136596, 76044.9523205358], [0.019, 2.90042907299, 6283.0758499914], [0.019, 3.18954246101, 51109.31080595839], [0.018, 2.11231697626, 73711.75592766379], [0.017, 0.06118735536, 88476.99497093359], [0.018, 6.26984143774, 15874.6175953632], [0.018, 2.58820345674, 51123.53789995999], [0.017, 5.82864656129, 32370.9789915656], [0.018, 5.22519288335, 78267.59076008058], [0.015, 5.43053381026, 64741.95798313119], [0.015, 2.53107093357, 155468.036919256], [0.02, 4.40959528115, 1223.81784077861], [0.015, 4.05461375332, 51962.5071877104], [0.015, 3.52769852262, 79219.3091663312], [0.015, 0.45988103836, 162188.75089859738], [0.015, 0.87152359342, 78283.37918562238], [0.014, 1.87990160627, 125887.56221081219], [0.016, 2.82759858554, 105410.99449648599], [0.013, 4.67219046898, 78256.59587772179], [0.016, 0.04901690153, 78477.00852016058], [0.014, 4.21146699511, 52290.24557183361], [0.014, 4.08726245298, 78270.82297172339], [0.015, 3.80902990348, 33967.99229491319], [0.016, 0.28761005157, 44937.1306915484], [0.014, 5.8433060581, 103821.92160120218], [0.015, 6.0373826452, 13655.8604911764], [0.012, 0.81685952408, 81706.28436968799], [0.015, 3.79894620695, 108903.56606335558], [0.011, 3.26651828162, 52602.4044740244], [0.011, 1.28755195884, 29416.03879785439], [0.011, 4.03185618461, 181505.94343892598], [0.011, 5.5844804614, 120226.23016165999], [0.012, 0.32316787548, 91785.46086631398], [0.013, 2.02636565149, 71492.99882347698], [0.015, 3.56357453844, 76674.63652943878], [0.013, 3.80590035776, 78259.82808936459], [0.01, 0.04109363791, 77197.21394753258], [0.01, 6.00753285175, 365230.6439820388], [0.01, 1.74642821988, 52061.36699446317], [0.013, 2.79229719351, 636.9962720242], [0.011, 5.52780687723, 26727.8004278882], [0.011, 4.04728142335, 45892.73043315699], [0.008, 4.9698513054, 151975.46535238638], [0.008, 3.44547998787, 23439.44831610119], [0.011, 2.54429302352, 44181.27784112419], [0.01, 3.502742291, 65697.55772473979], [0.009, 2.45809063705, 93028.94846799239], [0.009, 4.9256893206, 104331.94280539699], [0.008, 0.80535713418, 71980.63357473118], [0.01, 2.20026830808, 130969.20667296558], [0.007, 2.30885367448, 18207.81398823521], [0.01, 5.72020107388, 77211.44104153418], [0.007, 0.15536656581, 129483.91596626239], [0.008, 2.31255848253, 58458.88213313979], [0.007, 2.07713892797, 90829.86112470538], [0.007, 3.50101836609, 117873.36400788819], [0.007, 3.20275960823, 64607.84893354619], [0.007, 4.73829767381, 51322.60990139639], [0.007, 5.655539467, 181555.94006083018], [0.009, 2.56870006051, 129909.82474277639], [0.008, 0.67171808844, 79852.78232000639], [0.007, 4.06204756163, 39609.6545831656], [0.007, 1.46575838897, 853.196381752], [0.007, 2.57400610109, 69159.80243060499], [0.006, 3.86283147263, 59414.4818747484], [0.006, 1.3354568195, 102132.85546210999], [0.007, 2.80506785787, 39743.7636327506], [0.006, 1.66711581835, 28206.6670019526], [0.008, 4.73806237855, 150866.08680029298], [0.006, 0.81325444169, 207593.8465805002], [0.006, 0.0692555554, 58946.51688439399], [0.006, 3.09908354288, 114564.89811250778], [0.006, 0.88473087003, 104358.72611329758], [0.006, 3.51715962887, 188276.6540401716], [0.006, 4.13083556162, 54509.0026760204], [0.006, 3.14680331401, 104564.91166173479], [0.007, 5.89465282471, 131498.89763806018], [0.005, 0.27174681491, 143961.2671494624], [0.005, 5.25316838887, 3340.6124266998], [0.007, 1.99860349328, 104355.49390165479], [0.005, 1.47362369989, 9103.9069941176], [0.007, 0.60725013988, 60055.89543648739], [0.005, 3.20081630256, 13541.42120249119], [0.006, 0.50137409605, 63498.47038145279], [0.005, 5.0773947536, 97580.90196505119], [0.005, 1.35632842517, 104344.49901929598], [0.005, 2.16611734526, 103925.01437542078], [0.005, 4.04581717475, 98068.53671630539], [0.005, 4.90166806916, 22759.76748529401], [0.005, 3.87246722733, 89586.37352302698], [0.005, 3.01510200596, 103285.11708910679], [0.006, 1.4479147408, 78050.41032928458], [0.005, 2.4783121842, 26241.681952059], [0.005, 3.85799454501, 107794.1875112622], [0.005, 0.57300969993, 134991.4692049298], [0.005, 2.38724530268, 146314.13330323418], [0.004, 6.11121027497, 90695.75207512038], [0.004, 1.8318123147, 74821.13447975718], [0.004, 5.23938469806, 130012.91751699499], [0.005, 1.18020888905, 27311.72098235281], [0.005, 3.00001411726, 85034.42002596818], [0.005, 5.56662713374, 155997.72788435058], [0.005, 2.35342507828, 145204.75475114078], [0.004, 4.57119707855, 157636.79740153858], [0.004, 5.78384635962, 51742.09454527159], [0.004, 2.41778026187, 157483.01859105378], [0.005, 2.53226316949, 103299.34418310839], [0.004, 3.7145852625, 26555.8681319286], [0.004, 3.8363997571, 150244.3429994538], [0.004, 3.30201863644, 76144.94556434419], [0.004, 0.68904721853, 124156.43985787958], [0.004, 1.73206522989, 178063.3684939606], [0.005, 3.20991489892, 71025.0338331226], [0.005, 3.69408876581, 105940.68546158058], [0.004, 2.75867944254, 391318.54712361295], [0.005, 0.535860682, 80482.46652890938], [0.004, 5.07565982849, 51756.3216392732], [0.004, 0.12462379137, 78690.30761559859], [0.004, 5.25512859919, 157057.10981453978], [0.004, 5.66367904256, 9384.8410080752], [0.004, 4.70366039546, 54294.57014352679], [0.004, 4.7476763595, 204151.27163553477], [0.003, 3.2417738566, 155571.81910783658], [0.003, 0.85377908455, 16066.0658614748], [0.003, 1.58566666033, 130226.21661243298], [0.004, 5.58218314089, 119116.85160956658], [0.004, 0.94898112028, 78378.1487134078], [0.004, 6.15781348253, 97112.93697469679], [0.004, 2.31787867435, 52815.7035694624], [0.004, 2.73401660736, 78417.48823520739], [0.004, 5.67762508473, 183674.70392120857], [0.004, 0.21138526735, 214364.55718174577], [0.004, 5.24311464709, 116917.76426627958], [0.003, 3.86634858823, 104371.28232719658], [0.004, 5.42881221134, 233731.7463439786], [0.003, 1.97251042531, 183145.012956114], [0.003, 0.60740481915, 133882.09065283637], [0.003, 6.23399386415, 181659.72224941078], [0.004, 6.22336284288, 140652.80125408198], [0.003, 5.94876130841, 25035.6347583858], [0.003, 3.83428144879, 233681.74972207437], [0.003, 2.32902857669, 182085.63102592478], [0.003, 2.8435468116, 123200.84011627098], [0.003, 1.53933182823, 176953.98994186718], [0.004, 2.45893471155, 207643.8432024044], [0.003, 5.72001402121, 102762.53967101299], [0.004, 1.40880562474, 80382.47328510099], [0.003, 4.90489886883, 51749.20809227239], [0.003, 4.76799924569, 104138.31347085879], [0.004, 6.26291139255, 25021.4076643842], [0.003, 0.40352872921, 132028.58860315479], [0.003, 2.66696150741, 157586.80077963436], [0.003, 5.23202292846, 84546.78527471398], [0.003, 4.59428408981, 131548.89425996438], [0.003, 2.53649995681, 50579.61984086379], [0.003, 2.55542640702, 77829.99768684579], [0.004, 1.67304824627, 130419.8459469712], [0.003, 6.21862713072, 95247.70557217918], [0.003, 5.37878648081, 44295.7171298094], [0.003, 4.68342323732, 156507.7490885454], [0.003, 3.36164307862, 104778.21075717278], [0.003, 2.91632245418, 166740.70439565618], [0.002, 0.72039482289, 7994.5284420242], [0.002, 5.43309839263, 78903.60671103658], [0.002, 1.12849064703, 183724.7005431128], [0.003, 1.94668130835, 143005.6674078538], [0.003, 0.5628939296, 104347.73123093879], [0.002, 1.78482957305, 156531.3001848032], [0.003, 5.0354242485, 130443.39704322898], [0.003, 4.72735160431, 78149.27013603736], [0.002, 5.31651763274, 208173.534167499], [0.003, 5.36470448658, 131395.11544947958], [0.002, 0.06581745526, 196137.07343261078], [0.002, 2.93678015526, 167850.0829477496], [0.002, 5.84781134233, 65831.6667743248], [0.002, 5.56634055777, 70269.18098269838], [0.002, 5.42145220392, 183570.921732628], [0.002, 6.06636386319, 53242.3017603384], [0.002, 4.37154457896, 128220.75860368418], [0.002, 0.35903300236, 187167.2754880782], [0.002, 2.78347515438, 79330.20490191258], [0.002, 4.51952536661, 203041.8930834414], [0.002, 3.36865001265, 170049.1702910366], [0.002, 3.08184453618, 50593.84693486539], [0.002, 4.32534428501, 55503.94193942859], [0.002, 1.81636961816, 110634.68841628819], [0.002, 5.58793955981, 103917.90082841998], [0.002, 5.79409172557, 417406.4502651872], [0.002, 0.85923934181, 235900.50682626115], [0.002, 4.60084058009, 26941.0995233262], [0.002, 5.1499567646, 182188.72380014337], [0.002, 3.91756419842, 130446.62925487179], [0.002, 2.88997273266, 27154.3986187642], [0.003, 5.85721944439, 52329.58509363319], [0.002, 6.10145799164, 77623.81213840858], [0.002, 1.98246165585, 77844.22478084739], [0.002, 0.1107175948, 130866.11389874699], [0.002, 0.64849171165, 52643.7712735028], [0.002, 3.98410950717, 104466.051854982], [0.002, 1.83715639115, 123668.80510662538], [0.002, 5.61305711026, 76667.52298243798], [0.002, 5.83992902277, 19804.8272915828], [0.002, 0.54331921743, 130459.18546877075], [0.002, 0.00997429525, 141762.17980617538], [0.002, 5.59377744943, 35191.8101356918], [0.002, 0.39746661127, 26521.614879451], [0.002, 6.1619270402, 130652.81480330898], [0.002, 0.85416063806, 25934.1243310894], [0.002, 2.18339110714, 156100.82065856917], [0.002, 4.39281517355, 130432.40216087017], [0.002, 5.50117730009, 172402.0364448084], [0.001, 3.49234867738, 130435.63437251298], [0.001, 4.8099549208, 77837.11123384659], [0.002, 6.26921260007, 87367.61641884019], [0.002, 2.79561490409, 115674.27666460119], [0.002, 4.92122664455, 24864.08530079559], [0.001, 2.4157683233, 26037.90651966999], [0.001, 6.04596837149, 129373.02023068098], [0.002, 0.94020572434, 80596.9058175946], [0.002, 0.30073776192, 51639.00177105299], [0.001, 0.18846827752, 34082.4315835984], [0.001, 3.62844435085, 161079.37234650398], [0.002, 5.13133615893, 49842.60989027639], [0.001, 0.30832555285, 53228.07466633679], [0.001, 5.56519625382, 129387.24732468258], [0.001, 5.63110777945, 46848.3301747656], [0.001, 1.38420566741, 26011.6370702986], [0.001, 5.86450783334, 26724.8994135984], [0.001, 6.14517818644, 76681.75007643958], [0.001, 3.19299019423, 25654.19140369739], [0.001, 0.34495954566, 128850.44281258718], [0.001, 3.60230008239, 20760.4270331914], [0.001, 5.80015495751, 19406.6782881746], [0.001, 4.42116052212, 100909.03762133139], [0.001, 0.48535289275, 52698.38370124219], [0.001, 6.22940855233, 111590.2881578968], [0.001, 0.16055219324, 105307.21230790539], [0.001, 2.19795772042, 29428.515568274], [0.001, 5.09783503526, 102232.84870591838], [0.001, 0.61014627166, 25668.418497699], [0.001, 5.62459774786, 25565.3257234804], [0.001, 0.90991571866, 103711.71527998279], [0.001, 0.28037611495, 25450.90686955], [0.001, 0.54824728173, 26137.8997634784], [0.001, 4.25324476801, 209812.60368468694], [0.001, 0.08089899001, 51543.0225438352], [0.001, 0.33953378597, 51528.79544983359], [0.001, 4.15667461533, 25551.09862947879], [0.001, 1.59597814656, 72936.23331633979], [0.001, 5.5936222224, 25619.9381512198], [0.001, 3.26520760555, 240452.46032331997], [0.001, 5.52286605071, 52125.80966124419]], [[188.077, 0.03466830117, 52175.8062831484], [142.152, 3.125054526, 26087.9031415742], [96.877, 3.00378171915, 78263.70942472259], [43.669, 6.01867965826, 104351.61256629678], [35.395, 0.0, 0.0], [18.045, 2.77538373991, 130439.51570787099], [6.971, 5.81808665742, 156527.41884944518], [2.556, 2.57014364454, 182615.3219910194], [0.9, 5.59308888939, 208703.2251325936], [0.307, 2.32189002493, 234791.12827416777], [0.117, 3.1656732416, 24978.5245894808], [0.102, 5.32134064237, 260879.03141574195], [0.077, 6.24155593431, 51066.427731055], [0.057, 6.11222330831, 27197.2816936676], [0.034, 2.03244612467, 286966.9345573162], [0.038, 2.99912912226, 77154.33087262919], [0.031, 3.11483471984, 53285.1848352418], [0.017, 6.02950226714, 103242.2340142034], [0.011, 5.00109293882, 313054.83769889036], [0.009, 0.59396483404, 20426.571092422], [0.009, 3.65190477342, 46514.4742339962], [0.009, 6.28305510644, 79373.087976816], [0.008, 2.74138109305, 129330.13715577759], [0.007, 5.79018632644, 25132.3033999656], [0.005, 0.33554769835, 72602.37737557039], [0.005, 1.3111581035, 26617.5941066688], [0.004, 2.46414914425, 51220.20654153979], [0.004, 1.74528964721, 339142.7408404646], [0.004, 4.31141963105, 52705.49724824299], [0.004, 3.07093349506, 27043.5028831828], [0.004, 5.6801370125, 30639.856638633], [0.003, 5.80662640937, 155418.04029735178], [0.003, 4.6451908806, 27147.28507176339], [0.004, 3.02893592955, 23869.1460373874], [0.003, 4.35199345075, 79323.09135491178], [0.003, 1.29040630287, 53235.18821333759], [0.003, 4.34017676059, 14765.2390432698], [0.003, 2.86652251194, 105460.99111839019], [0.003, 6.23875368963, 28306.66024576099], [0.003, 3.37815322354, 98690.28051714458], [0.002, 5.37466119262, 110012.94461544899], [0.002, 0.16040583556, 50586.73338786459], [0.002, 0.35038889636, 19317.1925403286], [0.002, 6.2327164965, 49957.0491789616], [0.002, 2.52219274566, 181505.94343892598], [0.002, 5.05358903232, 162188.75089859738], [0.002, 0.15071040297, 124778.18365871879], [0.002, 2.29024350361, 56727.7597802072], [0.002, 0.42411179784, 71492.99882347698], [0.002, 6.11262694468, 57837.1383323006], [0.002, 2.17198531948, 108903.56606335558], [0.002, 2.92723030315, 54394.56338733519], [0.002, 2.40411188609, 83925.0414738748], [0.002, 3.43613336205, 78267.59076008058], [0.002, 4.77873510695, 365230.6439820388], [0.002, 3.54043808451, 64741.95798313119], [0.002, 1.60502923885, 77734.01845962799], [0.002, 3.11800510932, 150866.08680029298], [0.002, 1.0209874609, 78793.40038981718], [0.002, 4.39439085682, 88476.99497093359], [0.002, 1.49912329404, 43071.8992890308], [0.002, 1.96277160647, 25558.2121764796], [0.002, 4.76774165204, 77204.32749453338], [0.002, 0.61066658116, 155468.036919256], [0.002, 5.26875308161, 77308.10968311399], [0.002, 0.5273609502, 94138.32702008578], [0.002, 2.05793854229, 103396.01282468818], [0.002, 4.12698349577, 66941.04532641819], [0.002, 5.43336870762, 78283.37918562238], [0.002, 1.97520131105, 136100.84775702318], [0.002, 5.54343111585, 81706.28436968799], [0.002, 1.25444219651, 40853.142184844], [0.002, 1.07684180123, 103292.23063610759], [0.001, 3.23979322492, 52156.1365222486], [0.002, 5.33834891475, 52182.9198301492], [0.002, 3.36867866204, 99799.65906923798], [0.002, 5.4069790667, 82815.66292178139], [0.001, 5.80853057947, 4551.9534970588], [0.001, 4.9590938512, 129483.91596626239], [0.001, 3.17481245588, 76674.63652943878], [0.001, 1.538031696, 52389.1053785864], [0.001, 2.48052961456, 53764.8791784322], [0.001, 1.20843095195, 105410.99449648599], [0.002, 3.64576833526, 45405.0956819028], [0.002, 4.00710217385, 104881.30353139139], [0.001, 3.0953209452, 76044.9523205358], [0.001, 5.52119023864, 58946.51688439399], [0.002, 5.53036712466, 131548.89425996438], [0.001, 0.38352295948, 52179.6876185064], [0.001, 0.08902944955, 51116.4243529592], [0.001, 1.4751416667, 62389.09182935939], [0.001, 4.20864838814, 131498.89763806018], [0.001, 2.88161012078, 79219.3091663312], [0.001, 5.03155341199, 51646.11531805379], [0.001, 0.05873279909, 53131.406024757], [0.001, 0.606476206, 38654.05484155699], [0.001, 1.58007357234, 391318.54712361295], [0.001, 0.68687557696, 130969.20667296558], [0.001, 3.90367213586, 129380.13377768178], [0.001, 2.11138180302, 32858.61374281979], [0.001, 0.18542211423, 78244.0396638228], [0.001, 1.24063083423, 9103.9069941176], [0.001, 1.78547815249, 188276.6540401716], [0.001, 0.94125502564, 93028.94846799239], [0.001, 2.41309932759, 55618.3812281138], [0.001, 2.29683748973, 52195.47604404819], [0.001, 3.39284109553, 25028.521211385], [0.001, 4.29717383023, 26301.2022370122], [0.001, 6.10639166059, 102132.85546210999], [0.001, 4.58189329524, 37410.5672398786], [0.001, 6.16145880062, 125887.56221081219], [0.001, 5.22010441376, 52171.9249477904], [0.001, 5.95645110567, 80482.46652890938], [0.001, 4.81981872221, 26107.57290247399], [0.001, 4.27546069271, 36301.18868778519], [0.001, 2.43374991272, 51535.90899683439], [0.001, 4.03088051207, 1109.3785520934], [0.001, 5.60495524983, 207593.8465805002], [0.001, 4.89918476796, 35191.8101356918], [0.001, 6.07747011982, 27676.976036858], [0.001, 5.48361013686, 29530.4780865396], [0.001, 0.15288602386, 25448.00585526019], [0.001, 2.18342825402, 63498.47038145279], [0.001, 3.67054321453, 21535.9496445154], [0.001, 1.49815422727, 26084.0218062162], [0.001, 1.75551273491, 26095.016688575], [0.001, 2.60061927559, 12566.1516999828], [0.001, 2.69537843932, 52290.24557183361], [0.001, 4.87760109673, 25874.6040461362], [0.001, 2.82170820105, 26091.7844769322], [0.001, 0.20736391933, 52061.36699446317], [0.001, 3.82330817663, 68050.42387851159], [0.001, 4.42501613287, 22645.32819660879], [0.001, 6.01128227925, 52168.69273614759], [0.001, 0.28595674172, 11322.6640983044], [0.001, 5.86280830053, 26202.34243025941], [0.001, 3.42109354799, 25973.46385288896], [0.001, 0.300500653, 41962.5207369374], [0.001, 2.73414310032, 25035.6347583858], [0.001, 1.72346523407, 51962.5071877104], [0.001, 4.77297529316, 78477.00852016058], [0.001, 5.84491832575, 50057.04242277], [0.001, 3.2207229087, 25021.4076643842], [0.001, 4.74388045372, 26514.5013324502], [0.001, 4.31760630574, 69159.80243060499], [0.001, 0.65529515413, 426.598190876], [0.0, 1.96307435492, 1059.3819301892], [0.001, 5.58694327783, 79852.78232000639], [0.0, 3.84680432548, 26080.78959457339], [0.001, 6.07111696987, 102762.53967101299], [0.0, 0.59142287644, 73711.75592766379], [0.001, 5.84438975852, 105307.21230790539], [0.001, 2.82906439989, 24498.8302462904]], [[114.078, 3.14159265359, 0.0], [3.247, 2.02848007619, 26087.9031415742], [1.914, 1.41731803758, 78263.70942472259], [1.727, 4.50137643801, 52175.8062831484], [1.237, 4.49970181057, 104351.61256629678], [0.645, 1.26591776986, 130439.51570787099], [0.298, 4.30600984981, 156527.41884944518], [0.128, 1.05702505039, 182615.3219910194], [0.051, 4.08566191934, 208703.2251325936], [0.02, 0.82130394681, 234791.12827416777], [0.008, 3.82199615635, 260879.03141574195], [0.003, 0.54824060574, 286966.9345573162], [0.002, 3.52134138964, 313054.83769889036], [0.001, 1.6743511854, 24978.5245894808], [0.002, 4.60718203612, 51066.427731055], [0.001, 1.11396201203, 129330.13715577759], [0.001, 4.35040700322, 103242.2340142034], [0.001, 4.17434865844, 79373.087976816], [0.001, 1.20388630609, 77154.33087262919], [0.001, 4.8467708474, 27197.2816936676], [0.001, 0.29913093643, 339142.7408404646], [0.0, 4.11587125815, 155418.04029735178], [0.0, 0.73293870976, 46514.4742339962], [0.0, 3.68822427283, 21535.9496445154], [0.0, 3.83816920045, 20426.571092422], [0.0, 4.73086078962, 1059.3819301892], [0.0, 0.40939402954, 24498.8302462904], [0.0, 3.30678220146, 365230.6439820388]], [[0.877, 3.14159265359, 0.0], [0.059, 3.37513289692, 52175.8062831484], [0.042, 0.02433099382, 78263.70942472259], [0.043, 4.65071406046, 26087.9031415742], [0.031, 2.98112204944, 104351.61256629678], [0.019, 6.00992467582, 130439.51570787099], [0.01, 2.7569979192, 156527.41884944518], [0.005, 5.79082359724, 182615.3219910194], [0.002, 2.5143544823, 208703.2251325936], [0.001, 5.49411470932, 234791.12827416777], [0.001, 2.23688504668, 260879.03141574195], [0.001, 5.18718589133, 286966.9345573162], [0.0, 2.11315496491, 313054.83769889036]]]

This table contains Mercury’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric longitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 414-415.

pymeeus.Mercury.VSOP87_R = [[[39528271.652, 0.0, 0.0], [7834131.817, 6.19233722599, 26087.9031415742], [795525.557, 2.95989690096, 52175.8062831484], [121281.763, 6.01064153805, 78263.70942472259], [21921.969, 2.77820093975, 104351.61256629678], [4354.065, 5.82894543257, 130439.51570787099], [918.228, 2.59650562598, 156527.41884944518], [260.033, 3.02817753482, 27197.2816936676], [289.955, 1.42441936951, 25028.521211385], [201.855, 5.6472504035, 182615.3219910194], [201.499, 5.59227724202, 31749.2351907264], [141.98, 6.25264202645, 24978.5245894808], [100.144, 3.73435608689, 21535.9496445154], [77.561, 3.66972526976, 20426.571092422], [63.277, 4.29905918105, 25558.2121764796], [62.951, 4.76588899933, 1059.3819301892], [66.754, 2.52520309182, 5661.3320491522], [75.5, 4.47428642962, 51116.4243529592], [48.266, 6.06824478778, 53285.1848352418], [45.748, 2.41480951648, 208703.2251325936], [35.224, 1.05917802674, 27043.5028831828], [40.815, 2.35882016415, 57837.1383323006], [44.234, 1.21957314874, 15874.6175953632], [33.873, 0.86381554651, 25661.3049506982], [37.203, 0.5173382147, 47623.8527860896], [30.092, 1.79500530627, 37410.5672398786], [28.417, 3.02063625668, 51066.427731055], [30.903, 0.88366335532, 24498.8302462904], [26.105, 2.15021963174, 39609.6545831656], [18.699, 4.96496008403, 11322.6640983044], [21.27, 5.36857139841, 13521.7514415914], [19.422, 4.98378647655, 10213.285546211], [16.941, 3.88765393402, 26617.5941066688], [15.109, 0.44510589948, 46514.4742339962], [17.087, 1.24077764194, 77204.32749453338], [13.94, 1.62573946865, 27147.28507176339], [13.382, 1.07657890477, 51646.11531805379], [15.012, 4.28173463507, 41962.5207369374], [13.977, 4.77056848793, 33326.5787331742], [12.794, 6.06437138766, 1109.3785520934], [13.938, 1.99984876578, 25132.3033999656], [16.297, 2.63293587817, 19804.8272915828], [11.933, 2.36500939134, 4551.9534970588], [10.612, 5.46555460932, 234791.12827416777], [12.754, 2.07613721222, 529.6909650946], [12.069, 2.84997619452, 79373.087976816], [9.069, 1.21263611811, 14765.2390432698], [9.491, 0.83697007534, 12566.1516999828], [9.379, 5.41195286503, 83925.0414738748], [7.499, 2.44636811119, 30639.856638633], [7.463, 5.53233943198, 32858.61374281979], [7.215, 1.17101960691, 16983.9961474566], [8.492, 3.56622930635, 73711.75592766379], [7.109, 5.32625264624, 426.598190876], [6.863, 1.82313992707, 36301.18868778519], [6.56, 4.27818149213, 43071.8992890308], [8.853, 3.87737694074, 50586.73338786459], [6.885, 5.3110852663, 1589.0728952838], [5.943, 4.06893157254, 53131.406024757], [7.653, 3.91505031889, 51749.20809227239], [6.46, 6.07127449283, 77154.33087262919], [5.415, 5.20028107807, 65697.55772473979], [5.186, 3.56743214904, 6283.0758499914], [4.09, 3.6759365871, 22645.32819660879], [4.075, 4.29142111073, 103292.23063610759], [4.428, 5.69109527379, 45892.73043315699], [3.426, 0.64911736234, 52705.49724824299], [3.354, 3.49345105494, 72602.37737557039], [4.12, 1.65386255382, 25448.00585526019], [3.261, 1.03195890028, 68050.42387851159], [3.278, 3.13863529552, 25874.6040461362], [3.054, 4.12578324522, 77734.01845962799], [3.614, 2.95861599353, 28306.66024576099], [2.82, 4.62628436074, 18849.2275499742], [2.746, 4.67880529205, 53235.18821333759], [2.713, 3.5687491398, 26068.2333806744], [2.507, 2.23312085627, 260879.03141574195], [3.044, 5.90613310181, 105460.99111839019], [2.755, 5.67587087632, 26107.57290247399], [2.267, 2.17941340037, 110012.94461544899], [2.274, 0.50173671332, 32370.9789915656], [2.741, 4.75427920262, 63498.47038145279], [2.792, 5.05148206806, 51220.20654153979], [2.557, 2.95114696617, 26080.78959457339], [2.135, 0.84621449019, 76674.63652943878], [1.971, 0.4740749431, 48733.23133818299], [1.965, 1.37420902653, 7238.6755916], [2.526, 0.34535290139, 23969.1392811958], [2.022, 0.33828477567, 99799.65906923798], [1.872, 3.93046425037, 38654.05484155699], [1.873, 0.69327393635, 26091.7844769322], [1.945, 2.37383894182, 6770.7106012456], [1.863, 2.26591720786, 26084.0218062162], [1.75, 5.50651903992, 56727.7597802072], [1.971, 3.77455887616, 19317.1925403286], [1.672, 2.15275897581, 26514.5013324502], [1.703, 4.28965990785, 40853.142184844], [1.657, 4.98021773372, 9103.9069941176], [2.084, 2.19427123968, 26301.2022370122], [1.818, 4.20870869718, 25938.3399444396], [1.78, 0.91702846577, 79219.3091663312], [1.525, 2.15720744047, 27676.976036858], [1.533, 1.54503054415, 955.5997416086], [1.614, 1.27565104562, 25035.6347583858], [1.743, 0.68269002122, 77837.11123384659], [1.389, 4.85102048256, 62389.09182935939], [1.436, 0.05742216761, 23869.1460373874], [1.563, 5.84795233948, 26095.016688575], [1.64, 4.66281337712, 25021.4076643842], [1.552, 2.83910580545, 103242.2340142034], [1.249, 1.97225274067, 91785.46086631398], [1.16, 1.73113341823, 38519.945791972], [1.005, 1.0589831486, 129380.13377768178], [1.041, 2.78036322434, 213.299095438], [1.105, 4.55512109515, 26011.6370702986], [0.979, 2.43870419667, 71980.63357473118], [0.853, 0.56334001923, 20760.4270331914], [0.874, 4.53679970936, 639.897286314], [0.783, 3.69782403005, 78793.40038981718], [0.772, 4.08714349549, 94138.32702008578], [0.797, 0.26237215917, 98690.28051714458], [0.965, 4.70784179954, 51535.90899683439], [0.952, 2.53604676495, 29530.4780865396], [0.773, 2.67893222158, 131548.89425996438], [0.734, 0.8924366949, 103821.92160120218], [0.668, 3.73113394924, 46848.3301747656], [0.828, 2.88184821542, 19406.6782881746], [0.622, 1.05579535631, 59414.4818747484], [0.676, 4.5035759936, 25934.1243310894], [0.602, 5.28399057704, 286966.9345573162], [0.619, 1.44855037685, 79323.09135491178], [0.691, 6.19733262608, 51962.5071877104], [0.563, 5.22994296186, 136100.84775702318], [0.782, 3.25257254691, 50057.04242277], [0.551, 0.33644229836, 52156.1365222486], [0.705, 4.7370537192, 26241.681952059], [0.577, 5.85654734429, 2118.7638603784], [0.517, 3.93195379429, 102762.53967101299], [0.635, 4.87720838965, 12432.0426503978], [0.635, 1.81903685898, 77308.10968311399], [0.543, 1.40877130839, 44937.1306915484], [0.556, 5.44324390449, 85034.42002596818], [0.496, 3.39004132624, 125887.56221081219], [0.546, 4.78005317483, 22747.2907148744], [0.52, 6.00172746972, 52168.69273614759], [0.463, 3.67549187956, 25668.418497699], [0.452, 3.53009000682, 58458.88213313979], [0.474, 5.9433051204, 54394.56338733519], [0.559, 2.44355554028, 52195.47604404819], [0.418, 3.73369494476, 103925.01437542078], [0.397, 0.6901460802, 64741.95798313119], [0.511, 5.88243734524, 45494.58142974879], [0.412, 2.26754404446, 82815.66292178139], [0.425, 5.24511927496, 52389.1053785864], [0.482, 0.98165400059, 25654.19140369739], [0.38, 3.74413132157, 52179.6876185064], [0.359, 5.50961077408, 26555.8681319286], [0.375, 1.97920050124, 149.5631971346], [0.385, 5.8899194879, 129330.13715577759], [0.348, 4.91064019959, 1052.2683831884], [0.417, 4.32916053867, 51123.53789995999], [0.425, 1.43228996047, 51109.31080595839], [0.464, 3.98651628073, 105307.21230790539], [0.329, 5.20636278221, 52602.4044740244], [0.354, 1.04383146533, 66941.04532641819], [0.324, 1.62975761811, 88476.99497093359], [0.378, 5.31676765847, 52171.9249477904], [0.44, 1.46381183715, 89586.37352302698], [0.355, 1.52732265492, 1066.49547719], [0.302, 5.21113786435, 53764.8791784322], [0.301, 5.02488829134, 117873.36400788819], [0.351, 2.0043334173, 24395.7374720718], [0.289, 6.19161799918, 26094.53170047421], [0.286, 3.77170690304, 7.1135470008], [0.284, 3.10942616808, 49957.0491789616], [0.385, 2.47184729453, 25234.70675982219], [0.382, 0.97683830518, 52026.2430860138], [0.271, 5.74710334372, 25455.119402261], [0.375, 0.55187466535, 45405.0956819028], [0.267, 2.86410554301, 80482.46652890938], [0.304, 6.00190488272, 2218.7571041868], [0.259, 1.82921035765, 24505.94379329119], [0.251, 4.10979574073, 155468.036919256], [0.289, 3.05373259745, 26081.27458267419], [0.242, 5.05501089774, 42153.969003049], [0.244, 2.1562166805, 3442.5749449654], [0.315, 2.61613386386, 52182.9198301492], [0.256, 3.71117332461, 25619.9381512198], [0.232, 2.21576531181, 16066.0658614748], [0.233, 5.49033130906, 98068.53671630539], [0.236, 4.08612620637, 26013.1215430069], [0.225, 0.4444933881, 76144.94556434419], [0.242, 3.29851820234, 6681.2248533996], [0.227, 1.63236736805, 76.2660712756], [0.268, 1.09037236588, 18093.37469954999], [0.255, 4.20635818545, 44181.27784112419], [0.205, 1.00234895959, 26190.99591579279], [0.228, 1.46077047931, 77623.81213840858], [0.197, 1.36693360783, 26727.8004278882], [0.259, 1.28296039354, 13655.8604911764], [0.197, 5.7330758343, 157636.79740153858], [0.196, 0.06606260924, 40565.2543247742], [0.187, 0.86187283408, 120226.23016165999], [0.262, 4.14850032709, 24491.71669928959], [0.244, 4.14399890076, 95247.70557217918], [0.232, 5.45165695316, 33967.99229491319], [0.206, 5.59196913034, 55618.3812281138], [0.203, 1.64252462466, 58946.51688439399], [0.187, 0.46291089182, 104881.30353139139], [0.192, 1.827611583, 25551.09862947879], [0.2, 1.81376901527, 25863.55834587229], [0.191, 5.57428963071, 5327.4761083828], [0.195, 3.31297083154, 124778.18365871879], [0.169, 1.69270064342, 90695.75207512038], [0.226, 1.32354627258, 52099.5402118728], [0.177, 3.296208483, 25131.61398560359], [0.178, 2.5482379505, 26720.68688088739], [0.167, 3.61983109002, 23754.70674870219], [0.159, 3.48396967776, 25977.69682035479], [0.15, 5.20072476078, 69159.80243060499], [0.179, 3.94252428767, 129909.82474277639], [0.166, 0.40320638452, 100909.03762133139], [0.176, 2.97410942402, 24925.4284371664], [0.154, 1.27206049137, 25984.8103673556], [0.144, 1.89319156163, 64607.84893354619], [0.145, 2.05409839424, 313054.83769889036], [0.152, 4.87194153709, 103396.01282468818], [0.137, 3.86782217557, 24609.0365675098], [0.141, 1.99770625298, 162188.75089859738], [0.185, 6.10038742063, 23439.44831610119], [0.135, 1.27363012793, 52022.0274726636], [0.127, 0.70464976569, 128850.44281258718], [0.142, 1.50696203402, 52329.58509363319], [0.126, 2.70555128398, 28206.6670019526], [0.126, 1.61963252183, 48835.19385644859], [0.123, 0.15629905349, 151975.46535238638], [0.137, 1.77306412615, 35191.8101356918], [0.147, 4.50311642422, 105410.99449648599], [0.125, 3.38994834526, 78244.0396638228], [0.119, 2.77644375904, 78256.59587772179], [0.156, 2.96616703196, 78050.41032928458], [0.145, 1.35569389554, 3340.6124266998], [0.126, 3.97006576134, 29428.515568274], [0.128, 5.41891989692, 26162.6847401415], [0.132, 4.86901248209, 24712.1293417284], [0.11, 3.8795470244, 85502.38501632259], [0.127, 5.49703075555, 78283.37918562238], [0.126, 0.94870979828, 121335.60871375339], [0.129, 4.00691218396, 72936.23331633979], [0.102, 0.50487650429, 130012.91751699499], [0.104, 0.29849788751, 84546.78527471398], [0.118, 0.76511176346, 131395.11544947958], [0.12, 4.45261989231, 71025.0338331226], [0.117, 3.31644134053, 25771.5112719176], [0.11, 2.632499343, 71582.48457132299], [0.097, 2.66105435933, 155418.04029735178], [0.113, 5.8873357539, 26404.2950112308], [0.098, 2.01417457095, 78477.00852016058], [0.103, 0.46416881502, 51756.3216392732], [0.093, 2.37389467504, 419.4846438752], [0.125, 1.87932536282, 26610.48055966799], [0.095, 0.34221817875, 26507.38778544939], [0.093, 3.80346806552, 26037.90651966999], [0.091, 2.63082094391, 28421.0995344462], [0.101, 5.20997240587, 433.7117378768], [0.096, 4.47724179825, 77197.21394753258], [0.108, 4.03679713919, 51742.09454527159], [0.086, 5.14039556935, 26237.46633870879], [0.092, 3.74335845403, 90829.86112470538], [0.086, 1.86276413658, 27140.17152476259], [0.102, 5.40465219833, 26137.8997634784], [0.086, 4.01653667598, 10021.8372800994], [0.1, 5.32142188276, 108903.56606335558], [0.079, 4.68108496987, 27154.3986187642], [0.092, 5.52103093635, 51322.60990139639], [0.093, 4.20604773511, 38813.3565763492], [0.078, 2.88001982141, 29416.03879785439], [0.095, 4.44018421307, 115674.27666460119], [0.104, 5.05004528676, 50483.640613646], [0.075, 1.7892706053, 143961.2671494624], [0.086, 0.51423355089, 78267.59076008058], [0.078, 4.6683117379, 114564.89811250778], [0.078, 4.20137623264, 1692.1656695024], [0.086, 4.03030391951, 78114.14622758799], [0.073, 2.27328552013, 52643.7712735028], [0.082, 3.7351059211, 853.196381752], [0.071, 4.89150553141, 50593.84693486539], [0.082, 5.22677693918, 27999.1026247914], [0.093, 1.0956916144, 77211.44104153418], [0.074, 1.97833720876, 78690.30761559859], [0.082, 3.59482991001, 71492.99882347698], [0.083, 4.10355702051, 93028.94846799239], [0.083, 3.12647584943, 14477.3511832], [0.067, 0.24182046727, 66653.15746634839], [0.074, 5.66833060422, 78270.82297172339], [0.068, 1.98236355905, 79852.78232000639], [0.064, 5.551158145, 25764.39772491679], [0.064, 6.15935356751, 76044.9523205358], [0.087, 1.77296830923, 25440.89230825939], [0.073, 2.06220281759, 111122.32316754239], [0.066, 2.28151075383, 7880.08915333899], [0.076, 2.65553220848, 34282.1784747828], [0.078, 0.40338105541, 49842.60989027639], [0.064, 0.87558639332, 181555.94006083018], [0.086, 2.0869774868, 78259.82808936459], [0.074, 0.865017517, 50579.61984086379], [0.082, 1.02659883956, 74821.13447975718], [0.059, 2.45952644668, 51543.0225438352], [0.062, 0.94273311929, 25344.9130810416], [0.058, 2.95861781205, 52182.4348420484], [0.058, 4.20402726578, 96357.08412427259], [0.061, 2.81500265978, 26202.34243025941], [0.057, 2.27689377996, 124156.43985787958], [0.057, 4.37167017012, 1581.959348283], [0.055, 0.12465494356, 25973.46385288896], [0.054, 4.79303212221, 26164.1692128498], [0.054, 3.05622204718, 25565.3257234804], [0.055, 4.51497762833, 103711.71527998279], [0.054, 3.87143037686, 18207.81398823521], [0.054, 4.62784653733, 25881.717593137], [0.053, 4.3254827227, 70269.18098269838], [0.05, 2.5006687765, 183724.7005431128], [0.058, 2.06211216656, 1596.1864422846], [0.066, 5.2029881429, 26294.08869001139], [0.047, 0.85039730966, 52101.02468458109], [0.058, 1.43409045174, 23866.04650697719], [0.048, 2.35364103056, 81706.28436968799], [0.052, 0.19368783267, 92741.06060792258], [0.053, 0.58517949906, 26624.70765366959], [0.061, 2.61493039721, 49527.35145767539], [0.047, 3.88384847335, 146314.13330323418], [0.049, 6.20308247475, 32769.1279949738], [0.053, 4.37486529196, 78187.44335344699], [0.048, 5.97568482401, 51013.33157874059], [0.048, 3.84102043742, 102232.84870591838], [0.049, 5.05464216653, 7994.5284420242], [0.044, 5.4289022484, 86143.79857806159], [0.058, 3.80571138237, 99024.13645791399], [0.044, 4.02792920142, 147423.51185532758], [0.058, 6.09746566424, 52169.17772424839], [0.042, 4.38843836266, 224.3447957019], [0.043, 1.57859396874, 23976.2528281966], [0.049, 0.46973350644, 51707.84129279399], [0.04, 4.41764731583, 52815.7035694624], [0.046, 3.51985131014, 130969.20667296558], [0.045, 4.35527612249, 39743.7636327506], [0.045, 0.78163192715, 25138.7275326044], [0.049, 0.90057831755, 632.7837393132], [0.041, 4.0422561567, 52278.89905736699], [0.039, 2.9182959512, 956.2891559706], [0.043, 0.13178694356, 2648.454825473], [0.038, 0.62377784752, 50696.93970908399], [0.042, 2.75028269027, 24079.34560241519], [0.04, 1.64358052897, 39629.32434406539], [0.037, 5.75760879379, 25867.49049913539], [0.051, 1.57829002915, 12725.453434775], [0.037, 1.62981695072, 129483.91596626239], [0.045, 0.04645406242, 51219.51712717779], [0.036, 0.098343736, 25241.820306823], [0.049, 0.0768115705, 150866.08680029298], [0.034, 4.56091607046, 536.8045120954], [0.036, 5.59483746723, 52808.59002246159], [0.039, 5.9950025247, 104138.31347085879], [0.046, 0.70772608543, 155997.72788435058], [0.033, 4.54716206885, 78417.48823520739], [0.041, 4.92673567168, 51639.00177105299], [0.032, 4.31372208361, 78109.93061423779], [0.036, 5.69791953426, 26049.7701059364], [0.034, 3.32168809248, 35472.7441496494], [0.042, 4.86530735726, 51951.46148744649], [0.033, 3.73733919231, 154938.34595416137], [0.041, 2.38147812869, 68241.8721446232], [0.035, 5.0957104722, 339142.7408404646], [0.031, 4.31506703539, 52072.71350892979], [0.032, 3.21248509301, 178063.3684939606], [0.035, 5.04278529087, 188276.6540401716], [0.041, 3.22838990589, 1162.4747044078], [0.03, 2.3306109214, 1478.8665740644], [0.032, 2.71244280066, 25780.3455206046], [0.032, 3.8041146042, 157483.01859105378], [0.03, 0.37624991562, 26421.7590823436], [0.029, 5.82513433576, 104344.49901929598], [0.031, 6.02215690021, 26198.1094627936], [0.04, 1.02201252788, 27819.0254945068], [0.03, 2.2584999502, 104371.28232719658], [0.029, 2.67851330746, 110.2063212194], [0.03, 1.34446903292, 1375.7737998458], [0.028, 4.62845152557, 74923.09699802278], [0.037, 3.03899000872, 11610.5519583742], [0.032, 0.26062549755, 52065.59996192899], [0.038, 1.257046524, 131498.89763806018], [0.032, 1.04832153595, 26086.4186688659], [0.037, 1.63595908508, 50800.03248330259], [0.03, 0.15550783905, 104331.94280539699], [0.026, 0.03549300809, 24815.222115947], [0.026, 1.03871337432, 24292.64469785319], [0.026, 3.54557412535, 156100.82065856917], [0.027, 0.60333270859, 111590.2881578968], [0.031, 3.3554055611, 126996.94076290558], [0.026, 5.73937805822, 54294.57014352679], [0.026, 2.79743885101, 86457.98475793119], [0.026, 5.70579806927, 97670.38771289718], [0.025, 2.34928986187, 24601.92302050899], [0.025, 5.70613852018, 181505.94343892598], [0.034, 0.23651097126, 26395.46076254379], [0.025, 2.19241735868, 52250.5878817157], [0.025, 1.82880416247, 74.7815985673], [0.028, 0.57661358158, 125112.03959948818], [0.024, 2.0393825417, 26521.614879451], [0.024, 5.05213893429, 104564.91166173479], [0.023, 6.23874249128, 75615.25459924959], [0.026, 3.34519516519, 110634.68841628819], [0.026, 4.74840245512, 13362.4497067992], [0.026, 0.15419927428, 22759.76748529401], [0.027, 2.39568978424, 522.5774180938], [0.028, 0.25542748453, 103.0927742186], [0.025, 3.32961707416, 28286.9904848612], [0.026, 2.07987634823, 29550.14784743939], [0.032, 1.70464933285, 26089.38761428249], [0.023, 4.16670746048, 24176.703658357], [0.024, 0.08582796512, 51859.41441349179], [0.025, 5.27240695394, 25936.85547173129], [0.024, 0.80363857551, 77829.99768684579], [0.023, 2.30360039127, 77410.51304297059], [0.03, 1.21286011206, 97112.93697469679], [0.022, 4.82094558003, 13541.42120249119], [0.023, 2.65250267545, 52492.19815280499], [0.026, 6.26936948934, 25939.82441714789], [0.024, 4.92454390318, 52698.38370124219], [0.022, 1.2347092155, 103285.11708910679], [0.023, 3.68813881444, 26729.31670331319], [0.022, 1.95831083558, 24356.7807886416], [0.022, 0.78346634338, 104202.04936916218], [0.021, 2.5293143267, 467.9649903544], [0.024, 1.84656751628, 76571.54375522019], [0.025, 2.55626379808, 24822.3356629478], [0.027, 3.61440862477, 23962.02573419499], [0.023, 1.18953680418, 141762.17980617538], [0.02, 5.49778171394, 112231.70171963578], [0.023, 2.6071960805, 25754.0472008048], [0.026, 0.75788900266, 55516.4187098482], [0.026, 2.09375500363, 134991.4692049298], [0.02, 3.35091650179, 52595.29092702359], [0.021, 0.36570195077, 97580.90196505119], [0.024, 0.51085875774, 116917.76426627958], [0.021, 5.71018496974, 60055.89543648739], [0.019, 0.56236491686, 52125.80966124419], [0.019, 2.85801633295, 60370.08161635699], [0.024, 3.50657176712, 77844.22478084739], [0.02, 0.53533403977, 26941.0995233262], [0.019, 6.25214103463, 25973.50403466079], [0.022, 5.13145226592, 104347.73123093879], [0.021, 4.13407823619, 103299.34418310839], [0.019, 0.33492578967, 102018.41617342478], [0.019, 5.67148210198, 54509.0026760204], [0.018, 1.90051892916, 52325.36948028299], [0.019, 4.27364751897, 122444.98726584678], [0.018, 2.45675888957, 104358.72611329758], [0.018, 1.05990359493, 27780.06881107659], [0.018, 1.43297513339, 53242.3017603384], [0.021, 2.99876487527, 26073.67604757259], [0.023, 1.86389686355, 116783.65521669458], [0.018, 4.87152831033, 170049.1702910366], [0.019, 4.89400475242, 53228.07466633679], [0.021, 2.47295566818, 27726.9726587622], [0.02, 4.98762998978, 104778.21075717278], [0.021, 1.46468188731, 140652.80125408198], [0.017, 4.05153553008, 76667.52298243798], [0.02, 4.80985268979, 51528.79544983359], [0.022, 0.86617331302, 119116.85160956658], [0.023, 2.08281937549, 52225.8029050526], [0.018, 1.69333480892, 76681.75007643958], [0.017, 2.09406764538, 64901.25971792339], [0.019, 5.00011023502, 105940.68546158058], [0.019, 0.74020534937, 36109.7404216736], [0.017, 2.93246868693, 102132.85546210999], [0.022, 3.55902023067, 104355.49390165479], [0.021, 3.54390310557, 106570.36967048359], [0.018, 4.65006394461, 61279.713277266], [0.019, 4.43905256177, 647.0108333148], [0.017, 2.831244806, 132658.27281205778], [0.018, 2.89808596608, 26091.83529483729], [0.017, 5.67044617806, 25788.776747305], [0.017, 5.37178978632, 78731.674415077], [0.015, 5.25910515843, 150244.3429994538], [0.019, 1.72681089737, 153.7788104848], [0.015, 2.16472550978, 26222.0121911592], [0.015, 1.1302968538, 25042.7483053866], [0.015, 2.31335544105, 51852.30086649099], [0.019, 4.38254962804, 24182.4383766338], [0.015, 5.16465400786, 27684.0895838588], [0.017, 3.97954718583, 207643.8432024044], [0.016, 5.7405789846, 25352.02662804239], [0.014, 3.42441202713, 26823.77965510599], [0.014, 5.30168284837, 742.9900605326], [0.014, 2.5043130681, 32132.1317229496], [0.014, 1.36632464908, 23919.1426592916], [0.015, 6.0749051443, 78270.3379836226], [0.019, 4.4055707896, 49953.94964855139], [0.014, 0.65475293554, 323.5054166574], [0.014, 0.47093305165, 17893.6278083656], [0.014, 1.33029112501, 129799.61842155698], [0.017, 6.0291534594, 26667.590728573], [0.014, 1.17588054181, 104275.34649502118], [0.014, 4.84032377923, 2221.856634597], [0.014, 5.53694881682, 77630.92568540938], [0.013, 5.5979123873, 209812.60368468694], [0.013, 0.84042148682, 173511.41499690176], [0.015, 3.96416547461, 51432.81622261579], [0.015, 3.17020350946, 176953.98994186718], [0.014, 2.91048815444, 78257.08086582259], [0.013, 5.34915944924, 80174.90890793978], [0.018, 1.65795375577, 28256.66362385679], [0.013, 3.34629064183, 25508.2155545754], [0.016, 1.32228458025, 27669.86248985719], [0.013, 1.38990649917, 25024.58905812189], [0.017, 2.01249037695, 27037.07875054399], [0.015, 1.99208068531, 52381.99183158559], [0.013, 2.32883800921, 27005.83342755599], [0.014, 3.86914390591, 182085.63102592478], [0.012, 3.97054224711, 78188.92782615528], [0.016, 5.59174105029, 25446.4895798352], [0.014, 0.70490117614, 172402.0364448084], [0.012, 1.54422590258, 52252.07235442399], [0.014, 3.47518139481, 27177.6119327678], [0.012, 5.46223056321, 107794.1875112622], [0.012, 5.76552608362, 50167.24874398939], [0.016, 2.18648993322, 26308.315784013], [0.014, 2.72148386686, 27311.72098235281], [0.013, 0.55524977232, 75930.51303185058], [0.012, 2.66601602132, 137210.22630911658], [0.011, 0.61596543052, 44295.7171298094], [0.011, 4.76091715459, 155571.81910783658], [0.014, 5.93896401871, 52290.24557183361], [0.011, 0.92596625175, 22625.658435709], [0.012, 6.19273795549, 51653.22886505459], [0.014, 0.79969658546, 25953.79409198919], [0.011, 2.82093111356, 77101.23472031478], [0.011, 1.26994666311, 26312.2479372761], [0.013, 2.88923696437, 112545.88789950538], [0.011, 6.05528757595, 27044.1922975448], [0.012, 3.29626000869, 52061.36699446317], [0.011, 3.58945976808, 52712.61079524379], [0.014, 2.790365075, 23888.81579828719], [0.011, 4.15810059578, 45290.65639321759], [0.011, 2.94979930726, 58857.03113654799], [0.012, 2.20589728666, 31415.379249957], [0.012, 1.34841658603, 51969.62073471119], [0.011, 3.29585795787, 28736.3579670472], [0.011, 0.43538573957, 24448.8336243862], [0.01, 2.85999162474, 130226.21661243298], [0.013, 4.41880429822, 19958.6061020676], [0.012, 5.96394058241, 26083.97098831109], [0.01, 5.442971467, 163298.1294506908], [0.012, 1.57767582029, 91805.13062721379], [0.01, 3.83536418151, 51226.63067417859], [0.013, 0.34187342138, 157057.10981453978], [0.01, 1.12787053523, 78903.60671103658], [0.01, 4.67818130014, 2111.6503133776], [0.012, 3.56391619799, 77795.74443436819], [0.011, 5.80720491261, 26102.1302355758], [0.012, 5.802523822, 27972.80430499159], [0.011, 2.47026109919, 26010.1525975903], [0.013, 4.60245036657, 25032.45336464809], [0.01, 1.14221106164, 9384.8410080752], [0.013, 5.56953201474, 22909.7573510066], [0.01, 4.35806585483, 157586.80077963436], [0.01, 1.11553298844, 65831.6667743248], [0.011, 4.67108617661, 50064.15596977079], [0.011, 2.80726281395, 81591.84508100279], [0.009, 0.4735375306, 128106.31931499895], [0.009, 1.42459829123, 104505.39137678158], [0.009, 2.37565722096, 78896.49316403578], [0.009, 4.84820485208, 24918.31489016559], [0.011, 6.2383400887, 30171.8916482786], [0.011, 1.65565660037, 78039.36462902068], [0.009, 3.65734666897, 151199.94274106238], [0.009, 5.40966654859, 130459.18546877075], [0.01, 0.87714716556, 78366.80219894118], [0.009, 3.04701773654, 51329.7234483972], [0.009, 1.96005885441, 26575.53789282839], [0.01, 1.18004009296, 50270.341518208], [0.009, 5.48583841069, 138319.60486120995], [0.01, 3.21154218694, 77307.42026875199], [0.009, 5.55407965409, 8194.2753332086], [0.008, 1.35584545211, 12546.481939083], [0.009, 0.42023516699, 27223.5800134674], [0.01, 1.7670450966, 77726.90491262719], [0.009, 1.60501838348, 77616.69859140778], [0.009, 5.46388323313, 16703.062133499], [0.009, 1.60520912676, 117893.03376878797], [0.009, 6.2352873989, 846.0828347512], [0.009, 5.66619352199, 50910.238804522], [0.009, 1.18753574623, 104197.83375581198], [0.009, 0.69327774851, 26709.6469424134], [0.01, 5.48870132496, 94329.77528619739], [0.008, 1.17006056902, 78160.61665050399], [0.009, 0.4996506522, 27573.1938482774], [0.011, 6.20705720585, 28102.884813372], [0.011, 0.75657533913, 128320.75184749259], [0.008, 3.8643079482, 103917.90082841998], [0.009, 3.64580324894, 76784.84285065818], [0.008, 4.52722085618, 27463.67694142], [0.009, 1.73726961641, 28791.5192962498], [0.011, 1.86762532326, 214364.55718174577], [0.008, 3.17547134507, 50903.1252575212], [0.008, 6.2314049198, 148.0787244263], [0.008, 0.97646930359, 19202.75325164339], [0.008, 0.87651427964, 151.0476698429], [0.009, 1.55645109653, 26126.036177212], [0.008, 3.12232090039, 22003.9146348698], [0.008, 3.45204671122, 24203.0019781568], [0.008, 2.50177739941, 51955.39364070959], [0.008, 4.20326276911, 50380.54783942739], [0.008, 2.66681931912, 130432.40216087017], [0.01, 2.61302801987, 27170.98337386779], [0.008, 6.1579179294, 37698.4550999484], [0.008, 5.36718741692, 35077.37084700659], [0.008, 0.39542025081, 183570.921732628], [0.008, 4.37576068847, 123200.84011627098], [0.008, 3.44870239791, 26402.0893214438], [0.007, 5.88380837195, 51868.2486621788], [0.007, 4.80640660702, 26118.2300025786], [0.008, 5.82773614091, 3328.13565628019], [0.009, 2.53209611805, 25227.59321282139], [0.01, 2.5279323615, 35833.2236974308], [0.008, 4.11204744654, 53906.92863608099], [0.008, 1.58745297967, 101011.00013959699], [0.009, 2.57384727244, 2125.8774073792], [0.007, 2.46084982092, 52137.67324751059], [0.008, 5.5657753539, 50689.82616208319], [0.007, 5.98112141065, 52179.73843641149], [0.01, 5.16567712694, 55638.05098901359], [0.008, 4.67643518278, 76887.93562487679], [0.007, 4.36322743599, 155887.52156313116], [0.009, 0.68598593831, 38.1330356378], [0.008, 0.46194680162, 181026.24909573558], [0.008, 0.42442705032, 182188.72380014337], [0.009, 3.57254516611, 1265.5674786264], [0.009, 1.65553917926, 65717.22748563958], [0.01, 3.53066047636, 2008.557539159], [0.007, 3.8937339755, 1485.9801210652], [0.01, 0.8255026956, 39763.43339365039], [0.007, 4.33817871844, 129373.02023068098], [0.007, 3.41340083585, 52483.36390411799], [0.008, 1.2399232388, 76041.85279012559], [0.007, 0.04567921269, 206.1855484372], [0.007, 2.56169701158, 207593.8465805002], [0.009, 1.97148507623, 365230.6439820388], [0.007, 3.14813276839, 52061.40717623499], [0.007, 4.86954611488, 27351.06050415239], [0.008, 6.27520424489, 204151.27163553477], [0.007, 5.46143749214, 25985.94062330859], [0.008, 4.44335543148, 26057.57628056979], [0.007, 1.00677483843, 129387.24732468258], [0.008, 0.22314041177, 50049.92887576919], [0.007, 3.98224449185, 13675.5302520762], [0.007, 4.34489404354, 167850.0829477496], [0.009, 0.71471851401, 233731.7463439786], [0.007, 1.69935809006, 54087.0057663656], [0.007, 6.21044393135, 203041.8930834414], [0.007, 2.53524305485, 80382.47328510099], [0.007, 0.03218225075, 31281.270200372], [0.007, 5.26037977949, 78338.49102328988], [0.007, 3.52744190481, 52509.6622239178], [0.007, 5.24771876203, 1795.258443721], [0.007, 5.20875856726, 161079.37234650398], [0.007, 3.19471628666, 24072.9214697764], [0.006, 1.5809679318, 143980.93691036216], [0.009, 0.70414754528, 25169.9728555924], [0.006, 0.15264531683, 52911.68279668019], [0.007, 4.2857845572, 51130.65144696079], [0.007, 3.42650023556, 29396.3690369546], [0.007, 4.12959254769, 52174.32181044009], [0.008, 3.79812131071, 137678.191299471], [0.007, 5.70602822567, 9745.3205558566], [0.008, 0.14316432919, 136722.59155786238], [0.007, 3.78832454636, 26189.8656598398], [0.007, 5.44664616173, 27566.76971563859], [0.006, 0.53269408847, 208173.534167499], [0.007, 3.95192199993, 145204.75475114078], [0.006, 1.8061026575, 26830.8932021068], [0.008, 5.80105964058, 25773.71696170459], [0.006, 1.20705629404, 26734.913974889], [0.008, 3.87508349031, 52041.69723356339], [0.007, 1.874291269, 1905.4647649404], [0.007, 5.68938243001, 158746.17595363196], [0.008, 3.39884199213, 78153.50310350319], [0.007, 1.20867598891, 61560.64729122359], [0.008, 3.30580293572, 130419.8459469712], [0.007, 0.39338960799, 2199.087343287], [0.006, 3.17982806365, 77947.31755506598], [0.008, 0.8858517965, 220.4126424388], [0.008, 1.46508855917, 87367.61641884019], [0.006, 0.60809363482, 118828.96374949679], [0.008, 5.53182088929, 53814.87580033639], [0.007, 1.65646088833, 196137.07343261078], [0.006, 5.74552748087, 55503.94193942859], [0.006, 1.43996863707, 2333.196392872], [0.006, 1.91186990644, 130652.81480330898], [0.006, 5.06448767269, 50444.6839302158], [0.006, 1.09838300878, 183674.70392120857], [0.007, 0.35338852938, 103932.12792242158], [0.006, 0.2892480859, 54374.8936264354], [0.006, 2.72829193454, 76255.15188556358], [0.006, 3.9229048448, 130289.95251073639], [0.007, 1.2740249479, 46046.5092436418], [0.007, 2.96149281662, 52755.49387014719], [0.008, 2.23784693584, 25466.159340735], [0.006, 1.78075029765, 78786.28684281638], [0.008, 4.71972114899, 25014.29411738339], [0.006, 5.5279847086, 103498.41618454478], [0.008, 5.43345902063, 949.1756089698], [0.006, 5.55571041746, 130446.62925487179], [0.007, 5.36488899884, 77940.20400806518], [0.006, 0.5208093082, 25004.8229092806], [0.006, 3.48878406062, 123668.80510662538], [0.008, 3.02023688443, 26076.8574413103], [0.008, 5.31586228888, 24388.62392507099], [0.006, 5.06257578673, 78469.89497315978], [0.006, 4.7950404512, 52177.29075585669], [0.006, 4.57296057068, 35211.47989659159], [0.006, 5.37176342301, 53093.73656913019], [0.006, 4.26973755729, 130363.24963659538], [0.006, 5.75364706874, 78580.10129437919], [0.006, 1.99314462977, 130435.63437251298], [0.006, 1.55918658153, 39450.3528483734], [0.008, 4.77256284659, 142871.55835826878], [0.006, 6.09530056324, 103395.32341032618], [0.006, 1.29134609458, 102975.83876645098], [0.006, 1.83917095242, 24402.8510190726], [0.005, 3.63216834248, 43981.5309499398], [0.005, 5.64850202903, 28774.6252361154], [0.007, 4.22124824964, 26098.9488418381], [0.005, 5.85936922514, 156314.1197540072], [0.005, 4.97283396704, 102659.44689679438], [0.005, 1.46473339833, 181659.72224941078], [0.006, 0.71584342921, 104276.83096772949], [0.007, 2.49362242764, 51439.92976961659], [0.006, 0.0294487624, 20043.6745601988], [0.006, 2.1948080146, 12412.372889498], [0.007, 3.28347851449, 183145.012956114], [0.005, 3.46807375357, 50536.73676596039], [0.006, 6.20804958899, 114.3991069134], [0.006, 2.26035174588, 103718.82882698359], [0.007, 3.65318062648, 143005.6674078538], [0.005, 0.12859263642, 51596.1186961496], [0.007, 0.75531928973, 77520.71936418998], [0.005, 1.5297413665, 26724.8994135984], [0.007, 3.81960920375, 62197.64356324779], [0.005, 5.08212104486, 52609.51802102519], [0.005, 4.49337901115, 50007.0458008658], [0.005, 5.0321086104, 1045.1548361876], [0.005, 6.27674019656, 1272.6810256272], [0.006, 3.84313039676, 81604.32185142238], [0.006, 3.27974922227, 144916.86689107097], [0.005, 0.50987626702, 299.1263942692], [0.006, 5.10596879808, 78313.70604662679], [0.005, 4.14575201906, 53867.97195265079], [0.007, 4.53402175332, 166740.70439565618], [0.005, 5.57648480152, 106262.81204951399], [0.007, 3.08562485832, 52027.72755872209], [0.006, 2.81224506925, 25450.90686955], [0.005, 1.51400872659, 28199.55345495179], [0.006, 1.58495517428, 47803.9299163742], [0.006, 2.79561551205, 52286.01260436779], [0.007, 1.80630878142, 23549.6546373206], [0.007, 3.72396318065, 198489.9395863826], [0.005, 5.74129147264, 103189.13786188899], [0.006, 2.94825789213, 56259.79478985279], [0.005, 4.96546514085, 78413.27262185719], [0.005, 1.7851884573, 129586.31932611899], [0.005, 0.31701812829, 78800.51393681798], [0.005, 0.55478931159, 52817.21984488739], [0.006, 1.18448496437, 25600.26839032], [0.005, 0.42862127579, 179172.74704605396], [0.006, 3.74336258475, 26247.2048763664], [0.005, 2.46583763315, 123758.29085447139], [0.006, 5.09461941443, 53124.98189211819], [0.006, 0.42320281908, 130443.39704322898], [0.006, 2.57896380153, 26014.60601571519], [0.005, 2.23635663946, 24513.057340292], [0.005, 5.98752668018, 104344.98400739678], [0.006, 0.32131472009, 102872.74599223239], [0.005, 1.95885559875, 53771.99272543299], [0.007, 2.16257501519, 52024.75861330549], [0.006, 1.37111815532, 51120.35650622229], [0.005, 0.15128494504, 78683.19406859778], [0.005, 4.00810087423, 48713.5615772832], [0.006, 1.4588311578, 76152.05911134499], [0.005, 1.72421399237, 28309.75977617119], [0.005, 0.71424864998, 102755.42612401219], [0.006, 0.0328360798, 78149.27013603736], [0.006, 2.69429372458, 78378.1487134078], [0.006, 1.12570261398, 25647.07785669659], [0.005, 3.60259399819, 11.0457002639], [0.006, 4.8317124728, 240452.46032331997], [0.005, 3.71949948652, 26411.4085582316], [0.005, 4.55172986205, 79330.20490191258], [0.005, 0.84232799985, 24551.92639860479], [0.005, 3.74067330742, 52797.55008398759], [0.005, 2.92277012561, 54190.78795494619], [0.005, 3.96038779086, 25657.37279743509], [0.005, 4.54502031861, 102769.65321801379], [0.006, 2.35342867622, 27665.246684022], [0.005, 3.72877345305, 78213.71280281838], [0.005, 6.19447408823, 26191.68533015479], [0.004, 0.53733592588, 77314.53381575279], [0.004, 1.3991722537, 26290.15653674829], [0.005, 4.85332036328, 54344.56676543099], [0.006, 0.92030946706, 23336.3555418826], [0.006, 0.37487337241, 53265.515074342], [0.004, 2.01983013209, 156547.08861034497], [0.005, 6.13113074115, 26026.177166834], [0.004, 4.94928690334, 52663.44103440259], [0.005, 0.40443457223, 28096.46068073319], [0.004, 4.40405080911, 130593.29451835579], [0.004, 4.17440698686, 91919.56991589899], [0.005, 3.7177743666, 70383.6202713836], [0.005, 1.52885825328, 51102.19725895759], [0.004, 1.71609047005, 23762.9537327586], [0.004, 0.55287089413, 26933.9859763254], [0.005, 6.02225706023, 128220.75860368418], [0.005, 1.78226900229, 187167.2754880782], [0.005, 3.32000517354, 45424.76544280259], [0.005, 4.64166221826, 24824.745778996], [0.005, 3.45997061965, 48847.6706268682], [0.006, 2.6227258092, 52171.87412988529], [0.004, 3.62789650971, 53029.0026649004], [0.006, 2.53652345505, 52190.03337714999], [0.004, 0.08235213515, 58220.0348645238], [0.006, 2.56621666334, 51876.67988887919], [0.005, 5.04323059321, 41494.55574658299], [0.004, 3.42433134364, 53311.4831550416], [0.005, 5.60899913389, 1911.1994832172], [0.004, 1.13990612191, 26183.88236879199], [0.004, 4.24142693734, 189853.99758261937], [0.004, 0.215216512, 19336.86230122839], [0.005, 0.3030674552, 103883.64757594238], [0.004, 6.09719517639, 77417.62658997139], [0.004, 3.38148734662, 316.3918696566], [0.004, 1.40344660688, 25885.64974640009], [0.006, 2.54556610763, 54060.70744656579], [0.005, 4.62289027765, 78339.97549599818], [0.004, 6.06868163269, 84944.9342781222], [0.005, 0.6497001886, 3178.1457905676], [0.004, 5.4810925636, 78225.57638908479], [0.004, 3.76404568854, 153084.84390447979], [0.004, 0.18748530762, 52489.992463018], [0.005, 1.7404411428, 79315.97780791098], [0.004, 6.06406108213, 52161.57918914679], [0.005, 0.28595106407, 26161.20026743319], [0.004, 2.11074347112, 189386.03259226496], [0.004, 0.5971553074, 16342.5825857176], [0.004, 3.91091220587, 101703.15774082378], [0.004, 1.1613029014, 50264.6067999312], [0.004, 5.51188515445, 78043.29678228378], [0.005, 4.393503226, 53757.76563143139], [0.004, 5.15437140585, 24285.5311508524], [0.005, 2.15280343086, 48997.6604925808], [0.004, 5.35316514819, 104984.39630560997], [0.005, 5.7539064007, 51841.950342379], [0.004, 1.52206374281, 26267.9802718588], [0.004, 4.66563868021, 104127.26777059489], [0.004, 2.36671017385, 19.66976089979], [0.004, 5.1095428608, 31722.9368709266], [0.004, 1.54518951672, 52206.1331441528], [0.004, 4.16791904155, 130285.73689738619], [0.004, 2.93299901703, 31775.5335105262], [0.005, 4.47247592301, 51112.49219969609], [0.004, 2.41568769208, 51534.3927214094], [0.004, 1.74441095464, 26248.310510959], [0.004, 5.23856038893, 52396.2189255872], [0.004, 4.12254586219, 27441.651886591], [0.005, 5.17529407091, 19367.1891622328], [0.004, 4.21064422396, 26279.35140768579], [0.005, 4.41570881449, 78057.52387628538], [0.004, 5.30327887066, 25672.35065096209], [0.005, 1.10382058499, 31903.01400121119], [0.005, 2.71619626622, 24952.226269681], [0.004, 2.28793023586, 235900.50682626115], [0.004, 1.58884724433, 128747.35003836859], [0.004, 5.78862899204, 22779.4372461938], [0.004, 4.22021430561, 1731.1223529326], [0.004, 4.68318371027, 103814.80805420138], [0.004, 3.29575966354, 76137.83201734339], [0.004, 5.47487283809, 132350.71519108818], [0.004, 2.99265295426, 77741.13200662879], [0.004, 3.4788961061, 53661.0969898516], [0.004, 4.76216346874, 156740.7179448832], [0.004, 1.47799681769, 120417.67842777158], [0.004, 2.78305398087, 133767.65136415116], [0.004, 2.87953962922, 25862.073873164], [0.004, 1.9297299024, 15406.65260500879], [0.005, 1.8139493043, 130866.11389874699], [0.004, 2.62752187758, 24602.61243487099], [0.004, 3.12567603415, 20894.5360827764], [0.004, 1.00432915295, 149288.74325784517], [0.004, 3.47489986602, 26114.201461374], [0.004, 4.27251739299, 104991.50985261079], [0.004, 2.20022040184, 52073.84376488279], [0.004, 3.77568584773, 14.2270940016], [0.004, 1.65179392234, 51006.21803173979], [0.004, 0.72729563393, 25865.04281858059], [0.004, 5.61140287619, 53258.88651544199], [0.004, 1.55115346866, 53438.96364572659], [0.005, 0.91157457367, 25665.23710396129], [0.005, 6.11073147567, 156507.7490885454], [0.003, 3.12711312875, 80462.79676800959], [0.004, 2.2106835847, 76777.72930365738], [0.004, 0.82472101949, 30689.8532605372], [0.004, 3.85651603357, 26513.8119180882], [0.003, 3.76311835707, 77.7505439839], [0.004, 0.76897521016, 23384.2869868986], [0.003, 4.58555781046, 57503.2823915312], [0.004, 3.82967402925, 104454.70534051539], [0.003, 2.4744892731, 77956.15180375299], [0.004, 4.93160467297, 391318.54712361295], [0.004, 1.56118199279, 1055.4497769261], [0.004, 0.77257538538, 79994.83177765518], [0.005, 3.1167545854, 26149.62911631439], [0.003, 4.05641745083, 104248.51979207818], [0.004, 2.97133561512, 30110.1656735384], [0.004, 5.6042082933, 156520.30530244438], [0.004, 5.59378669038, 51315.49635439559], [0.003, 5.33733887891, 52309.9153327334], [0.003, 5.47155908699, 149846.1939960456], [0.003, 0.19039417498, 50290.905119731], [0.003, 0.55626990901, 130005.80396999417], [0.004, 1.22491945176, 25927.49577218939], [0.004, 1.83119228357, 132028.58860315479], [0.004, 3.7891019345, 25970.58327335399], [0.004, 4.12310730501, 33856.2696982688], [0.004, 3.29497466474, 208276.62694171758], [0.003, 1.23800163682, 193937.9860893238], [0.004, 3.81093761011, 49424.25868345679], [0.004, 6.17742034131, 76991.02839909539], [0.003, 2.37855052298, 25459.05155552409], [0.003, 0.06662548789, 54824.2611086214], [0.003, 0.00882668027, 78571.26704569219], [0.004, 3.50355655289, 33480.357543659], [0.004, 1.42998120813, 23446.561863102], [0.004, 4.57967744099, 52213.9393187862], [0.004, 4.30793307856, 2538.2485042536], [0.004, 2.64175466237, 80596.9058175946], [0.004, 2.23067570586, 104819.57755665119], [0.004, 2.1086768693, 27331.3907432526], [0.003, 3.74321552731, 28471.0961563504], [0.003, 5.35951703976, 233681.74972207437], [0.004, 1.44726666359, 25907.8260112896], [0.003, 0.77055249403, 23389.451694197], [0.004, 5.53731910534, 52098.05573916449], [0.004, 2.7106584473, 107679.74822257696], [0.003, 4.85884222947, 1063.3140834523], [0.003, 6.10322230645, 48091.817776444], [0.003, 0.57378510632, 154194.22245657316], [0.003, 4.65504051632, 25896.4548754626], [0.003, 2.07685199898, 3.9321532631], [0.004, 4.67601599622, 18073.7049386502], [0.003, 4.62237776277, 21716.0267748], [0.003, 2.40811934972, 76998.14194609619], [0.004, 1.45941637429, 1073.6090241908], [0.003, 4.0696522735, 32808.6171209156], [0.003, 3.54974279869, 23401.181047033], [0.003, 5.94935193305, 6751.0408403458], [0.003, 4.32590129932, 52400.1510788503], [0.003, 1.93788940079, 45455.092303807], [0.003, 6.08303870194, 53399.624123927], [0.003, 4.45999574391, 127098.90328117118], [0.003, 5.4517602882, 26061.60482177439], [0.003, 2.26429696537, 27047.0260015318], [0.004, 1.93735592711, 26603.3670126672], [0.003, 2.94612910423, 27039.97976483379], [0.004, 3.64314833794, 860.3099287528], [0.004, 2.04162116492, 27623.8798845436], [0.004, 1.02413610685, 25991.92391435639], [0.004, 3.72190941745, 51257.8759971666], [0.003, 0.83533616968, 78262.22495201428], [0.004, 5.84174581609, 25650.2592504343], [0.003, 3.8669808813, 56777.7564021114], [0.004, 0.94091162922, 23735.03698780239], [0.003, 2.87479269049, 159855.55450572536], [0.004, 2.92372103776, 104358.2411251968], [0.003, 5.50683793531, 25928.601406782], [0.003, 1.5028298198, 4371.8763667742], [0.003, 2.10941795435, 60170.3347251726], [0.003, 1.71064218785, 170068.84005193636], [0.003, 1.97431548371, 104426.39416486409], [0.003, 2.96711706073, 25984.1209529936], [0.003, 1.86795145608, 126067.63934109679], [0.003, 4.74630310296, 54879.422437824], [0.004, 3.71365034796, 29580.4747084438], [0.003, 4.20767161544, 128843.32926558638], [0.003, 0.91166163253, 76468.45098100159], [0.003, 6.20945940475, 50160.82461135059], [0.003, 6.10137777265, 52164.76058288449], [0.003, 0.31852065143, 28632.5757784666], [0.003, 2.88816579373, 27360.58416720139], [0.003, 5.29083364884, 2751.5475996916], [0.003, 0.87901414893, 1699.2792165032], [0.003, 0.1294237828, 203375.74902421076], [0.003, 1.88640533644, 27353.47062020059], [0.003, 3.77660990144, 24787.0763233692], [0.003, 5.26339958526, 289185.69166150293], [0.003, 1.34477523795, 1169.5882514086], [0.003, 0.07928565452, 104241.40624507738], [0.003, 4.47916732925, 38634.3850806572], [0.004, 1.37420794262, 128857.55635958798], [0.003, 2.08343776186, 50476.52706664519], [0.003, 4.23656246406, 76358.24465978218], [0.003, 5.54498269246, 61921.12683900499], [0.003, 3.80268685478, 25384.26995695679], [0.003, 5.22182880098, 3462.2447058652], [0.003, 0.61479556097, 171292.65789271498], [0.003, 3.12135348664, 162810.49469943656], [0.003, 4.22351187737, 67608.75720795698], [0.003, 5.30037747699, 51554.06248230919], [0.003, 4.58024970278, 34102.10134449819], [0.003, 2.07639441349, 24072.23205541439], [0.003, 4.65503825059, 104874.18998439058], [0.003, 4.53866780815, 28908.7342857004], [0.003, 1.0019131214, 155460.9233722552], [0.003, 2.05553254051, 176332.24614102798], [0.003, 3.9487029151, 155475.15046625677], [0.003, 1.43273740893, 24719.24288872919], [0.003, 0.23823986548, 24510.5595991264], [0.003, 5.21326346293, 1639.069517188], [0.003, 2.53461972944, 51861.62010327879], [0.003, 4.13978656372, 33917.99567300899], [0.003, 4.34295741397, 16964.3263865568], [0.003, 0.28015371448, 169093.57054942797], [0.003, 2.49492450438, 636.9962720242], [0.003, 4.20183911478, 149642.26895951436], [0.003, 0.73100534966, 35679.44488694599], [0.003, 1.1897797117, 143164.96914264598], [0.003, 1.17691552034, 52145.47942214399], [0.003, 4.94963823249, 49637.55777889479], [0.003, 3.00732745961, 24705.01579472759], [0.003, 5.76323456196, 49976.71893986139], [0.003, 4.83245208446, 156523.5375140872], [0.002, 3.69719041336, 24616.1501145106], [0.003, 0.18439316147, 78597.56536549199], [0.003, 4.98373933018, 102129.75593169978], [0.003, 0.02228487734, 1.4844727083], [0.003, 4.06250318984, 97466.46267636596], [0.003, 2.65726234287, 13705.8571130806], [0.002, 0.1288386868, 149756.7082481996], [0.003, 2.82299563379, 53132.09543911899], [0.003, 5.9906150951, 29864.334027309], [0.003, 3.9301871107, 17098.43543614181], [0.002, 4.22698039366, 10681.2505365654], [0.002, 1.31889013785, 25572.43927048119], [0.002, 3.49816744164, 51092.7260508548], [0.003, 1.5236169166, 78265.19389743089], [0.003, 0.52188463522, 52277.768801414], [0.003, 3.80600862869, 25124.50043860279], [0.003, 6.14366757538, 48153.54375118419], [0.002, 0.58190501461, 27573.88326263939], [0.003, 5.63901497713, 106470.37642667518], [0.002, 3.36639066096, 42430.4857272918], [0.003, 3.08628517069, 4083.9885067044], [0.002, 6.13024035669, 104035.22069664019], [0.003, 1.81280963372, 104401.60918820098], [0.003, 3.34404708133, 130020.03106399579], [0.002, 1.22333771717, 76094.94894244], [0.002, 0.6354233409, 1485.2907067032], [0.003, 5.24568241255, 6885.14988993081], [0.003, 2.46305012048, 133882.09065283637], [0.002, 0.84094631125, 163766.0944410452], [0.003, 2.12660879166, 42790.9652750732], [0.002, 2.98805690719, 26235.9818660005], [0.003, 3.26197855217, 156531.3001848032], [0.002, 4.50734435605, 25248.9338538238], [0.002, 4.32859791317, 1685.0521225016], [0.002, 5.62335584014, 28213.78054895339], [0.002, 3.87492323552, 199599.31813847594], [0.002, 2.60597304148, 26713.57333388659], [0.003, 4.15733644316, 51688.1715318942], [0.003, 4.33101389874, 220025.88923089797], [0.002, 4.46567523081, 31127.49138988719], [0.002, 3.66265576771, 26397.18146422999], [0.002, 4.68312774052, 49850.85687433279], [0.002, 4.51215350981, 52812.8025551726], [0.003, 3.56621882535, 154408.65498906677], [0.002, 3.95708432187, 1574.8458012822], [0.002, 2.41940194318, 104668.00443595338], [0.003, 0.24921211552, 25778.62481891839], [0.002, 3.18370791629, 207114.15223730978], [0.002, 4.17768592199, 51734.98099827079], [0.002, 1.74283332135, 76532.58707178998], [0.002, 1.36339547692, 6044.2285813754], [0.002, 2.82219230315, 63786.3582415226], [0.002, 5.27165023098, 75085.56363415498], [0.002, 5.7673572032, 25661.9943650602], [0.002, 5.2466618317, 24734.1543965574], [0.002, 5.31625926462, 24998.19435038059], [0.002, 0.17868115875, 177287.84588263658], [0.003, 5.47127542511, 27388.72995977919], [0.002, 2.48055036253, 25543.985082478], [0.002, 0.16253031708, 23113.2931869632], [0.003, 1.68453793975, 2703.6161546756], [0.002, 1.17069889009, 53551.5800829942], [0.003, 3.06893058902, 230239.17477710897], [0.003, 5.00145362139, 180496.558130641], [0.002, 1.90098213386, 20272.7922819372], [0.003, 5.06877735444, 440.8252848776], [0.002, 1.33626564472, 196156.74319351057], [0.002, 4.50940380454, 65538.25598994759], [0.002, 4.55891488212, 2324.9494088156], [0.002, 0.21025125051, 18227.483749135], [0.002, 0.58359043648, 156377.8556523106], [0.002, 4.57189351312, 26926.87242932459], [0.002, 3.79747475767, 65851.33653522459], [0.002, 0.301390155, 50951.98844236979], [0.002, 3.94570007959, 225687.22128005017], [0.002, 0.99415397716, 2064.978293702], [0.002, 3.49827019018, 78905.12298646157], [0.002, 4.16512398869, 24864.08530079559], [0.002, 0.47605198546, 107692.22499299659], [0.002, 0.02213914405, 197092.67317421938], [0.002, 0.35795159068, 104301.61594439259], [0.002, 2.54426644231, 249268.47945736776], [0.002, 0.35872697789, 25462.2329492618], [0.002, 0.03956368481, 24189.5519236346], [0.002, 2.0068296723, 28786.3545889514], [0.002, 1.64612572499, 40738.70289615879], [0.002, 1.77509184801, 22595.33157470459], [0.002, 1.93881159123, 78697.42116259939], [0.002, 1.06567957268, 21562.2479643152], [0.003, 4.58782698256, 156954.01704032117], [0.002, 0.84740706727, 24494.89809302729], [0.002, 5.98697403459, 283524.3596123507], [0.002, 4.02135788869, 26238.95081141709], [0.002, 3.98649649262, 24808.1085689462], [0.002, 3.06252327958, 57369.17334194619], [0.002, 6.10258403438, 78115.63070029629], [0.002, 0.19431714321, 55484.27217852879], [0.002, 4.26819419359, 90989.16285949759], [0.002, 2.9494161028, 22065.64060961], [0.002, 4.53722544295, 52355.883413433], [0.002, 1.97399498955, 430.5303441391], [0.002, 1.99872081555, 24932.54198416719], [0.002, 0.37032643194, 26500.27423844859], [0.002, 3.83480132336, 307.5576209696], [0.002, 5.81356382744, 51538.81001112419], [0.002, 6.20773606719, 49.9966219042], [0.002, 2.40589345998, 77929.8534839532], [0.002, 4.51719783127, 21067.98465416099], [0.002, 2.06311358499, 23233.262767664], [0.002, 0.29430089395, 24765.2254940428], [0.002, 2.21513587213, 25675.5320446998], [0.002, 2.29291278322, 27410.5807891056], [0.002, 2.39356701559, 242985.40360737636], [0.002, 4.28957020884, 71378.55953479178], [0.002, 5.41199778568, 23704.71012679799], [0.002, 0.54252133289, 3.881335358], [0.002, 5.88236623932, 52072.0240945678], [0.002, 5.78749542412, 78373.91574594198], [0.002, 5.69226787602, 51040.1294112552], [0.002, 4.42185841709, 93696.66034953119], [0.002, 5.15491529148, 78112.66175487968], [0.002, 2.30493903824, 27883.16158529519], [0.002, 5.53948896377, 87253.17713015496], [0.002, 4.75957265478, 52336.2136525332], [0.002, 6.08199781417, 18043.37807764579], [0.002, 0.73324052336, 25757.28417791599], [0.002, 0.91928644358, 52186.8519834123], [0.002, 3.22142261212, 104771.09721017198], [0.002, 2.016713014, 46564.4708559004], [0.002, 4.39545799671, 41520.8540663828], [0.002, 2.52858429504, 26140.99929388859], [0.002, 2.07561943546, 53654.67285721279], [0.002, 0.08977124652, 25135.8265183146], [0.002, 1.67350036401, 66826.60603773296], [0.002, 4.57268426145, 158116.491744729], [0.002, 2.84194927894, 78249.48233072099], [0.002, 3.07002924674, 23432.33476910039], [0.002, 4.11559657607, 123554.36581794015], [0.002, 0.05687800902, 26034.8069892598], [0.002, 4.28354458896, 24484.60315228879], [0.002, 3.24222429199, 21509.65132471559], [0.002, 2.52315832958, 210614.42461581077], [0.002, 4.44247371827, 148532.89040742096], [0.002, 0.11737800376, 146505.58156934578], [0.002, 2.4137136239, 54862.5283776896], [0.002, 4.66022680664, 247223.17092456558], [0.002, 3.79260774499, 3308.4658953804], [0.002, 5.83454304626, 2974.609954611], [0.002, 5.3787850016, 77622.29586298359], [0.002, 1.63153524958, 99979.7361995226], [0.002, 5.18613735503, 50600.9604818662], [0.002, 2.55420547959, 76064.62208143558], [0.002, 4.05996888958, 24502.76239955349], [0.002, 2.47809526116, 179966.86716554637], [0.002, 1.25528265056, 50912.6489205702], [0.002, 0.75306774592, 235746.72801577637], [0.002, 2.97464643769, 31219.5442256318], [0.001, 0.17722772219, 158438.6183326624], [0.002, 4.94589808424, 168959.46149984296], [0.002, 0.63110575282, 415.5524906121], [0.001, 0.77799418557, 299398.97720771394], [0.002, 5.97867896248, 164721.69418265377], [0.002, 5.62955025847, 21819.80896338059], [0.001, 4.93638931294, 27993.3679065146], [0.002, 6.22578827437, 74935.5737684424], [0.002, 1.03965665113, 1802.3719907218], [0.001, 5.61994219678, 50690.51557644519], [0.002, 5.02281046549, 422.6660376129], [0.001, 3.57619837497, 209658.82487420217], [0.002, 0.1124953909, 38469.94917006779], [0.002, 0.62470424533, 51745.27593900929], [0.001, 0.71806518278, 28928.40404660019], [0.002, 3.91669753023, 76352.50994150538], [0.002, 3.05277164813, 225.8292684102], [0.001, 4.33602746737, 4601.950118963]], [[217347.739, 4.65617158663, 26087.9031415742], [44141.826, 1.42385543975, 52175.8062831484], [10094.479, 4.47466326316, 78263.70942472259], [2432.804, 1.24226083435, 104351.61256629678], [1624.367, 0.0, 0.0], [603.996, 4.29303116561, 130439.51570787099], [152.851, 1.0606077981, 156527.41884944518], [39.202, 4.11136751416, 182615.3219910194], [17.76, 4.54424653085, 27197.2816936676], [17.999, 4.7119372581, 24978.5245894808], [10.154, 0.87893548494, 208703.2251325936], [8.086, 3.0054085489, 25028.521211385], [4.444, 2.13639058123, 20426.571092422], [4.393, 1.48074475165, 51066.427731055], [3.51, 3.21171223697, 1059.3819301892], [3.133, 5.23846336855, 21535.9496445154], [2.65, 3.92968881423, 234791.12827416777], [2.498, 2.02623950395, 24498.8302462904], [2.011, 1.23911360588, 53285.1848352418], [1.963, 4.04524902962, 5661.3320491522], [1.546, 2.61849590442, 26617.5941066688], [1.542, 2.35659537465, 27043.5028831828], [1.417, 1.37876323533, 1109.3785520934], [1.295, 5.19094850935, 46514.4742339962], [1.241, 0.21246226135, 11322.6640983044], [1.09, 6.23733263925, 27147.28507176339], [1.271, 0.56437938715, 25132.3033999656], [1.12, 0.86374628388, 57837.1383323006], [1.005, 3.28272284427, 37410.5672398786], [1.177, 4.53194022227, 77154.33087262919], [0.841, 5.96261035419, 14765.2390432698], [0.935, 2.37277497611, 25661.3049506982], [0.742, 0.77751594919, 32858.61374281979], [0.736, 4.0688529657, 1589.0728952838], [0.712, 2.70884051645, 16983.9961474566], [0.863, 5.55308682281, 25558.2121764796], [0.707, 0.92992556568, 30639.856638633], [0.696, 0.69734796212, 260879.03141574195], [0.678, 2.0219388593, 26068.2333806744], [0.608, 0.85708468483, 4551.9534970588], [0.546, 5.38138962861, 26091.7844769322], [0.608, 3.65993973133, 25448.00585526019], [0.597, 4.64867954048, 26080.78959457339], [0.572, 3.50125649521, 10213.285546211], [0.515, 4.83662922562, 50586.73338786459], [0.532, 5.21855381213, 22645.32819660879], [0.572, 0.62751016416, 13521.7514415914], [0.516, 3.89421000089, 83925.0414738748], [0.507, 5.55466020276, 12566.1516999828], [0.606, 4.50215566301, 28306.66024576099], [0.533, 0.93587795381, 26107.57290247399], [0.435, 5.79043985706, 43071.8992890308], [0.436, 5.86659160961, 25035.6347583858], [0.429, 0.26260280461, 36301.18868778519], [0.472, 6.00507778421, 77204.32749453338], [0.443, 3.86758570847, 26084.0218062162], [0.487, 4.23950195756, 26095.016688575], [0.406, 5.60324652352, 52705.49724824299], [0.523, 0.06439941262, 25021.4076643842], [0.379, 1.95647626585, 72602.37737557039], [0.39, 3.81996185881, 426.598190876], [0.418, 2.7752141866, 41962.5207369374], [0.453, 0.7280313725, 529.6909650946], [0.358, 6.00165335616, 33326.5787331742], [0.347, 1.39524259509, 23969.1392811958], [0.34, 0.24111380317, 26301.2022370122], [0.325, 4.78747749132, 23869.1460373874], [0.29, 3.04044859601, 53235.18821333759], [0.326, 1.30033833957, 103242.2340142034], [0.316, 2.22791434675, 19317.1925403286], [0.264, 3.93160763696, 6770.7106012456], [0.332, 3.59235758173, 51220.20654153979], [0.223, 2.76528831516, 103292.23063610759], [0.215, 3.97996009773, 56727.7597802072], [0.235, 2.2405050326, 25874.6040461362], [0.215, 6.16660008496, 51646.11531805379], [0.208, 2.74551899929, 40853.142184844], [0.204, 3.44654782597, 9103.9069941176], [0.197, 0.80026289238, 27676.976036858], [0.205, 3.20844012088, 18849.2275499742], [0.196, 1.99924288764, 48733.23133818299], [0.218, 2.11865566044, 73711.75592766379], [0.189, 0.65681038131, 110012.94461544899], [0.207, 5.89082708705, 31749.2351907264], [0.184, 3.74837387583, 286966.9345573162], [0.174, 5.81264188702, 68050.42387851159], [0.163, 4.00380715262, 79373.087976816], [0.152, 5.07389967152, 52156.1365222486], [0.151, 2.83369443311, 955.5997416086], [0.151, 0.4095365021, 26514.5013324502], [0.147, 2.32191248197, 38654.05484155699], [0.154, 3.26437373895, 38519.945791972], [0.185, 0.98966099528, 29530.4780865396], [0.15, 3.69230644689, 65697.55772473979], [0.132, 2.71837382155, 77734.01845962799], [0.14, 2.05736044462, 6283.0758499914], [0.122, 3.31361750281, 62389.09182935939], [0.123, 2.07840148125, 25668.418497699], [0.118, 0.51913709271, 51535.90899683439], [0.121, 2.15433834534, 52179.6876185064], [0.151, 2.66028539824, 25654.19140369739], [0.113, 2.33243126122, 78793.40038981718], [0.124, 3.13058661995, 51109.31080595839], [0.15, 2.60376479044, 639.897286314], [0.123, 2.65137961558, 51123.53789995999], [0.106, 1.31393069594, 47623.8527860896], [0.112, 5.00798069297, 98690.28051714458], [0.107, 5.12738291017, 99799.65906923798], [0.123, 6.13795219131, 1066.49547719], [0.106, 1.42997322881, 52168.69273614759], [0.104, 4.51477063494, 25234.70675982219], [0.12, 4.0656730086, 45892.73043315699], [0.092, 4.72811907093, 2118.7638603784], [0.112, 4.78983902693, 53131.406024757], [0.096, 5.03438502363, 32370.9789915656], [0.091, 4.22099920434, 50057.04242277], [0.091, 4.35481864546, 129330.13715577759], [0.106, 0.14583281261, 12432.0426503978], [0.084, 0.32848825294, 1052.2683831884], [0.084, 5.81442139422, 129380.13377768178], [0.093, 0.34539006564, 77308.10968311399], [0.078, 1.17633266287, 76674.63652943878], [0.107, 1.01316358023, 52182.9198301492], [0.082, 6.11445014523, 79323.09135491178], [0.085, 2.50332044483, 7238.6755916], [0.072, 1.561708325, 49957.0491789616], [0.076, 1.62577226881, 15874.6175953632], [0.091, 5.75408440781, 24491.71669928959], [0.092, 3.97747935513, 52195.47604404819], [0.068, 0.44378826429, 91785.46086631398], [0.078, 0.63585741399, 52171.9249477904], [0.064, 2.57311321703, 94138.32702008578], [0.065, 2.12942233842, 7.1135470008], [0.062, 3.70751240431, 136100.84775702318], [0.068, 1.18946361248, 54394.56338733519], [0.079, 3.35596277474, 52389.1053785864], [0.064, 5.09677055426, 51962.5071877104], [0.06, 6.25938912295, 24505.94379329119], [0.061, 0.73867692725, 82815.66292178139], [0.063, 1.29883580487, 2218.7571041868], [0.07, 5.28692696943, 45405.0956819028], [0.057, 1.92365363632, 20760.4270331914], [0.054, 0.89448628916, 71980.63357473118], [0.051, 4.71710385051, 105460.99111839019], [0.054, 6.22009952451, 44937.1306915484], [0.052, 3.43365769233, 25551.09862947879], [0.052, 5.77930503293, 66941.04532641819], [0.048, 0.51937745535, 313054.83769889036], [0.052, 5.71476972233, 103821.92160120218], [0.047, 3.82203240163, 53764.8791784322], [0.05, 5.76150579489, 25938.3399444396], [0.047, 5.52705163618, 77837.11123384659], [0.043, 5.84994474092, 63498.47038145279], [0.052, 2.63638299982, 18093.37469954999], [0.042, 5.39178421925, 64741.95798313119], [0.041, 1.87113963554, 125887.56221081219], [0.045, 4.04603530632, 55618.3812281138], [0.039, 3.50934954924, 52602.4044740244], [0.048, 0.72400634326, 33967.99229491319], [0.051, 6.02427997984, 13655.8604911764], [0.038, 0.09359107033, 88476.99497093359], [0.038, 1.84297739511, 78244.0396638228], [0.041, 5.74927951755, 26727.8004278882], [0.045, 5.73633413733, 44181.27784112419], [0.035, 0.81793649503, 23439.44831610119], [0.038, 5.17914668407, 23754.70674870219], [0.036, 4.81782090538, 51116.4243529592], [0.041, 2.91943000674, 26241.681952059], [0.032, 1.91760062435, 58458.88213313979], [0.033, 1.27507180487, 131548.89425996438], [0.032, 5.01820692941, 46848.3301747656], [0.03, 3.95444605179, 26555.8681319286], [0.031, 1.17911028239, 59414.4818747484], [0.03, 0.55604674983, 3442.5749449654], [0.034, 3.55745328485, 433.7117378768], [0.033, 5.36229697065, 104881.30353139139], [0.03, 1.24209931344, 26202.34243025941], [0.033, 3.55673853222, 25440.89230825939], [0.029, 2.9884790115, 27154.3986187642], [0.035, 3.23888704617, 25455.119402261], [0.033, 1.77322555881, 124778.18365871879], [0.028, 4.35951220773, 80482.46652890938], [0.03, 5.14555074991, 51756.3216392732], [0.029, 0.03524298861, 79219.3091663312], [0.027, 2.59555966553, 155468.036919256], [0.027, 1.05480537311, 28421.0995344462], [0.03, 5.7208773684, 51742.09454527159], [0.029, 5.20529460359, 78267.59076008058], [0.026, 1.11551342052, 155418.04029735178], [0.03, 6.10884155937, 26011.6370702986], [0.027, 3.38666053174, 103396.01282468818], [0.025, 3.48592449926, 117873.36400788819], [0.025, 1.69043243445, 25973.46385288896], [0.026, 6.195779404, 77197.21394753258], [0.024, 1.47972864008, 28206.6670019526], [0.023, 3.86767325148, 16066.0658614748], [0.027, 4.06858086478, 78270.82297172339], [0.022, 4.03528313026, 419.4846438752], [0.023, 3.3842610754, 58946.51688439399], [0.022, 1.33669336918, 51322.60990139639], [0.023, 2.23954141042, 103925.01437542078], [0.024, 3.65673385174, 26610.48055966799], [0.021, 4.49565014938, 78256.59587772179], [0.021, 3.69266624882, 77623.81213840858], [0.028, 5.71652736884, 77211.44104153418], [0.021, 3.97119771059, 98068.53671630539], [0.021, 5.61140929496, 120226.23016165999], [0.025, 1.73460075205, 853.196381752], [0.024, 2.89897553229, 105410.99449648599], [0.02, 6.15988447425, 213.299095438], [0.021, 0.4212676491, 149.5631971346], [0.02, 4.41588880947, 29416.03879785439], [0.024, 2.43220296378, 50579.61984086379], [0.02, 0.47739908961, 162188.75089859738], [0.021, 0.18110422167, 35191.8101356918], [0.019, 2.3875625116, 26037.90651966999], [0.02, 0.61997291259, 85034.42002596818], [0.018, 4.60331561584, 76044.9523205358], [0.018, 3.06180224259, 50593.84693486539], [0.022, 0.45787269756, 1596.1864422846], [0.019, 1.76795970776, 78050.41032928458], [0.019, 3.58333941723, 27140.17152476259], [0.021, 0.15585183693, 78477.00852016058], [0.018, 1.81330190957, 25565.3257234804], [0.021, 3.45385724015, 102762.53967101299], [0.022, 4.62891777236, 19406.6782881746], [0.019, 5.28998871939, 26624.70765366959], [0.016, 4.3790892436, 25131.61398560359], [0.019, 2.69598918032, 105307.21230790539], [0.018, 4.13274028026, 5327.4761083828], [0.018, 1.10819559505, 76144.94556434419], [0.018, 2.04678515653, 71492.99882347698], [0.015, 0.52406345582, 42153.969003049], [0.018, 0.71897799959, 78283.37918562238], [0.02, 3.8710563228, 51749.20809227239], [0.014, 0.06732488, 25984.8103673556], [0.019, 2.51337817026, 129909.82474277639], [0.018, 3.79705759661, 108903.56606335558], [0.014, 2.30467577173, 18207.81398823521], [0.014, 4.91192145857, 151975.46535238638], [0.014, 4.25365079026, 157636.79740153858], [0.014, 3.82494343251, 7880.08915333899], [0.014, 0.47442483304, 26137.8997634784], [0.015, 1.41820144369, 40565.2543247742], [0.016, 1.92985195149, 49842.60989027639], [0.016, 2.97241905198, 71025.0338331226], [0.013, 0.07086712207, 76.2660712756], [0.013, 2.19019855275, 90829.86112470538], [0.014, 1.68395491426, 6681.2248533996], [0.012, 2.16242752229, 29428.515568274], [0.013, 0.55373605944, 79852.78232000639], [0.012, 2.10236188465, 24609.0365675098], [0.012, 3.4937235482, 64607.84893354619], [0.013, 3.16312334997, 25881.717593137], [0.012, 0.32301447482, 78690.30761559859], [0.016, 3.67591976897, 78259.82808936459], [0.012, 0.81060544329, 81706.28436968799], [0.015, 2.57802360273, 93028.94846799239], [0.013, 3.55704873434, 339142.7408404646], [0.012, 3.14169564714, 114564.89811250778], [0.011, 4.96251639039, 84546.78527471398], [0.011, 2.93160493628, 536.8045120954], [0.011, 0.04474275203, 19804.8272915828], [0.011, 2.39391294657, 10021.8372800994], [0.011, 3.22530161123, 90695.75207512038], [0.012, 0.71785378975, 26294.08869001139], [0.011, 3.51130712506, 7994.5284420242], [0.011, 1.78813511249, 69159.80243060499], [0.01, 1.89377082198, 24925.4284371664], [0.012, 6.06775243662, 52329.58509363319], [0.012, 0.11656433296, 51543.0225438352], [0.012, 0.01462307671, 1581.959348283], [0.01, 3.60476399042, 49527.35145767539], [0.009, 5.35498571113, 2648.454825473], [0.01, 2.54352513591, 52815.7035694624], [0.009, 5.25498849885, 130012.91751699499], [0.01, 5.63770719377, 181555.94006083018], [0.011, 1.65385601347, 26507.38778544939], [0.011, 4.93008131424, 104331.94280539699], [0.01, 0.35445064092, 26521.614879451], [0.01, 2.79303258728, 39743.7636327506], [0.009, 0.71144667758, 25764.39772491679], [0.008, 4.22951187793, 181505.94343892598], [0.008, 0.1751430319, 129483.91596626239], [0.01, 1.16786157884, 25934.1243310894], [0.01, 2.50335300453, 103299.34418310839], [0.009, 3.18692590406, 39629.32434406539], [0.01, 3.98242351264, 522.5774180938], [0.011, 0.23158217376, 51639.00177105299], [0.009, 0.30008658313, 27999.1026247914], [0.011, 4.84801040284, 150866.08680029298], [0.011, 5.94731028211, 38813.3565763492], [0.008, 4.66199260294, 26094.53170047421], [0.008, 0.71995165086, 52643.7712735028], [0.008, 3.3182527779, 24395.7374720718], [0.008, 2.52932369592, 26190.99591579279], [0.008, 5.11541081184, 25619.9381512198], [0.008, 1.18625312267, 25867.49049913539], [0.008, 0.31593558687, 51528.79544983359], [0.01, 2.12019897039, 130969.20667296558], [0.008, 0.24131547257, 143961.2671494624], [0.007, 5.90865595918, 23976.2528281966], [0.008, 4.88221803127, 22759.76748529401], [0.007, 3.17202081415, 632.7837393132], [0.008, 2.40875907837, 146314.13330323418], [0.007, 6.03640433343, 53242.3017603384], [0.007, 0.86406939215, 104358.72611329758], [0.007, 3.45761762182, 26237.46633870879], [0.009, 3.3062859753, 12725.453434775], [0.007, 0.74174993099, 124156.43985787958], [0.008, 5.6260015428, 131395.11544947958], [0.007, 2.52679818243, 77829.99768684579], [0.008, 1.93255904016, 77844.22478084739], [0.007, 3.6943967793, 85502.38501632259], [0.007, 5.14299105203, 35472.7441496494], [0.008, 1.52116219771, 26081.27458267419], [0.008, 3.50246944455, 25863.55834587229], [0.008, 5.17598738878, 23962.02573419499], [0.009, 2.01720755803, 104355.49390165479], [0.007, 0.57777174711, 86143.79857806159], [0.007, 2.0353430072, 100909.03762133139], [0.006, 3.30402834266, 104564.91166173479], [0.006, 5.26635186541, 50696.93970908399], [0.006, 3.60993601694, 27684.0895838588], [0.008, 5.97157930225, 131498.89763806018], [0.006, 4.4320413642, 54294.57014352679], [0.006, 4.1618373488, 54509.0026760204], [0.007, 4.35729742194, 52290.24557183361], [0.007, 4.88364528875, 26941.0995233262], [0.007, 3.84735933689, 34282.1784747828], [0.006, 0.71889591582, 89586.37352302698], [0.006, 4.7741020149, 104138.31347085879], [0.006, 5.81016662275, 70269.18098269838], [0.007, 3.59164938122, 188276.6540401716], [0.006, 1.42397911026, 102132.85546210999], [0.006, 5.15043168056, 97580.90196505119], [0.008, 2.67404385604, 647.0108333148], [0.005, 4.58227258685, 25977.69682035479], [0.007, 6.18437842544, 128850.44281258718], [0.005, 0.05338946228, 13541.42120249119], [0.006, 5.55589010148, 155997.72788435058], [0.005, 5.54731935938, 96357.08412427259], [0.006, 0.36201698821, 26308.315784013], [0.005, 3.05584811656, 103285.11708910679], [0.005, 4.80319811501, 51013.33157874059], [0.006, 3.04691542636, 13362.4497067992], [0.005, 5.59905054438, 76667.52298243798], [0.005, 3.15313951574, 26164.1692128498], [0.006, 1.15194666645, 27311.72098235281], [0.005, 6.16463589751, 76681.75007643958], [0.005, 2.77667883666, 224.3447957019], [0.005, 4.27775147717, 14477.3511832], [0.005, 5.50743820134, 52125.80966124419], [0.006, 0.68838699976, 26720.68688088739], [0.005, 4.44878671847, 25227.59321282139], [0.005, 4.88707969684, 52061.36699446317], [0.005, 3.66186576821, 25241.820306823], [0.005, 1.76383923429, 178063.3684939606], [0.005, 3.09083817171, 115674.27666460119], [0.005, 1.73277038612, 956.2891559706], [0.006, 0.59128664983, 134991.4692049298], [0.005, 1.3943570322, 104344.49901929598], [0.005, 5.66016557162, 45290.65639321759], [0.005, 2.69362119172, 50064.15596977079], [0.005, 4.11526724305, 209812.60368468694], [0.006, 3.7263359886, 26162.6847401415], [0.004, 1.01205356829, 183724.7005431128], [0.005, 2.02484630372, 52712.61079524379], [0.005, 4.47460304849, 77410.51304297059], [0.005, 0.42971081835, 52698.38370124219], [0.005, 1.56442459236, 11610.5519583742], [0.004, 0.62582613574, 22747.2907148744], [0.004, 1.51592730997, 66653.15746634839], [0.005, 6.10277243405, 97112.93697469679], [0.004, 1.00562353481, 51219.51712717779], [0.004, 0.31906550066, 48835.19385644859], [0.005, 4.98644771495, 51653.22886505459], [0.005, 4.3442901056, 32132.1317229496], [0.004, 2.9212557902, 78417.48823520739], [0.004, 5.99601868842, 121335.60871375339], [0.005, 3.13172791066, 61279.713277266], [0.005, 2.13824746365, 39609.6545831656], [0.005, 5.68604378667, 119116.85160956658], [0.004, 2.73202591375, 1692.1656695024], [0.004, 5.78251523942, 26734.913974889], [0.005, 0.77777359038, 103711.71527998279], [0.005, 0.91021434517, 71582.48457132299], [0.004, 3.03035393128, 52072.71350892979], [0.004, 0.45156085724, 31415.379249957], [0.004, 3.93028686443, 104371.28232719658], [0.004, 4.54919541216, 26198.1094627936], [0.004, 2.66986199617, 24176.703658357], [0.004, 3.50110688244, 74821.13447975718], [0.004, 5.75284691398, 25138.7275326044], [0.004, 5.44367911308, 72936.23331633979], [0.004, 1.60493978664, 176953.98994186718], [0.004, 1.93554854399, 50049.92887576919], [0.003, 3.90053130991, 107794.1875112622], [0.003, 5.45429683058, 44295.7171298094], [0.004, 0.60054840458, 104347.73123093879], [0.004, 0.88305624488, 60055.89543648739], [0.004, 6.20681068925, 140652.80125408198], [0.003, 1.44572212087, 130226.21661243298], [0.004, 4.3775024277, 32769.1279949738], [0.004, 1.75525459469, 110634.68841628819], [0.003, 0.6698019741, 26222.0121911592], [0.004, 2.20364417845, 182085.63102592478], [0.003, 5.6061526381, 129387.24732468258], [0.003, 0.96551693568, 207593.8465805002], [0.004, 4.51472339809, 52169.17772424839], [0.004, 0.86790293541, 24822.3356629478], [0.003, 2.05745330337, 156100.82065856917], [0.004, 0.27139822027, 214364.55718174577], [0.003, 3.63958954831, 102232.84870591838], [0.003, 3.33824382272, 170049.1702910366], [0.003, 6.15959485239, 12546.481939083], [0.003, 0.54712514364, 1911.1994832172], [0.003, 5.53215106225, 323.5054166574], [0.003, 5.78740917576, 27780.06881107659], [0.004, 3.60062257669, 105940.68546158058], [0.003, 5.23668974633, 17893.6278083656], [0.003, 3.21536557308, 155571.81910783658], [0.004, 3.78439308193, 68241.8721446232], [0.004, 0.35026324282, 53228.07466633679], [0.003, 1.39462627029, 110.2063212194], [0.003, 2.9858544254, 102769.65321801379], [0.003, 5.54914760118, 52101.02468458109], [0.004, 5.31358771393, 116917.76426627958], [0.004, 5.02170245911, 130443.39704322898], [0.003, 3.39708771017, 104778.21075717278], [0.003, 1.35333080979, 52182.4348420484], [0.003, 3.53872943291, 28791.5192962498], [0.003, 0.32151031474, 75615.25459924959], [0.003, 2.81736551277, 78187.44335344699], [0.003, 3.41370464721, 77616.69859140778], [0.003, 2.72102083462, 157586.80077963436], [0.004, 0.3799045894, 365230.6439820388], [0.003, 5.29398694468, 183570.921732628], [0.003, 0.53039476474, 35077.37084700659], [0.003, 0.96990585284, 25780.3455206046], [0.004, 5.03799187214, 103932.12792242158], [0.003, 0.57063116288, 52250.5878817157], [0.003, 4.90694398172, 27044.1922975448], [0.003, 5.64342324025, 78903.60671103658], [0.003, 3.90829945174, 130446.62925487179], [0.004, 5.39121442451, 52022.0274726636], [0.003, 5.38325956945, 172402.0364448084], [0.003, 3.62725946038, 161079.37234650398], [0.003, 0.02159890719, 130652.81480330898], [0.003, 5.26052772975, 55516.4187098482], [0.003, 1.45533607551, 77101.23472031478], [0.003, 2.45621582046, 207643.8432024044], [0.003, 3.04264756378, 74923.09699802278], [0.003, 3.27797530359, 27669.86248985719], [0.004, 6.20795181771, 3340.6124266998], [0.003, 2.86818821459, 79330.20490191258], [0.003, 5.42245453158, 36109.7404216736], [0.003, 1.11238018002, 2125.8774073792], [0.003, 4.70325749301, 52595.29092702359], [0.003, 4.14290639481, 25446.4895798352], [0.003, 4.11874155864, 1478.8665740644], [0.003, 4.41727880469, 128220.75860368418], [0.003, 5.8430133045, 65831.6667743248], [0.003, 0.63458746349, 112231.70171963578], [0.003, 5.2035846966, 157057.10981453978], [0.003, 4.22446997246, 53399.624123927], [0.003, 6.08145059717, 26724.8994135984], [0.003, 3.32246989691, 111122.32316754239], [0.003, 1.11208497752, 78378.1487134078], [0.003, 1.18205388535, 80382.47328510099], [0.003, 3.98183946807, 25352.02662804239], [0.003, 5.1753723875, 225687.22128005017], [0.002, 3.19970010923, 64901.25971792339], [0.003, 5.90368046078, 104505.39137678158], [0.003, 2.15712281571, 28736.3579670472], [0.002, 0.27988699718, 52325.36948028299], [0.002, 1.09392137734, 24998.19435038059], [0.003, 1.72654636472, 130419.8459469712], [0.003, 6.24477199702, 51969.62073471119], [0.003, 3.27154613105, 77630.92568540938], [0.002, 1.80684819652, 123668.80510662538], [0.002, 3.75304905922, 150244.3429994538], [0.003, 2.04107819596, 76784.84285065818], [0.003, 4.07589828594, 97670.38771289718], [0.002, 3.43439078149, 52609.51802102519], [0.002, 0.51530246334, 133882.09065283637], [0.003, 4.75031746198, 204151.27163553477], [0.002, 5.57618391474, 24292.64469785319], [0.002, 2.22207407093, 78213.71280281838], [0.002, 6.08590562625, 39450.3528483734], [0.003, 4.42541702442, 51955.39364070959], [0.003, 5.48323931966, 220.4126424388], [0.003, 5.24728665819, 26709.6469424134], [0.003, 4.52126286883, 20043.6745601988], [0.002, 1.69429787369, 53029.0026649004], [0.003, 0.98781948776, 80596.9058175946], [0.002, 2.7229153699, 23866.04650697719], [0.002, 2.23117481869, 26402.0893214438], [0.003, 2.32561622864, 145204.75475114078], [0.003, 3.55406019317, 52225.8029050526], [0.003, 0.82939608505, 87253.17713015496], [0.003, 3.59850686303, 52396.2189255872], [0.002, 0.25549281668, 22909.7573510066], [0.002, 4.18932113589, 81591.84508100279], [0.002, 5.58984236569, 104202.04936916218], [0.002, 1.5932542826, 206.1855484372], [0.002, 2.33240745085, 157483.01859105378], [0.002, 3.78499822852, 78731.674415077], [0.003, 1.73139148586, 77741.13200662879], [0.002, 1.98761216006, 102018.41617342478], [0.002, 3.82447809654, 1162.4747044078], [0.002, 3.73613869026, 24601.92302050899], [0.002, 4.87002033008, 51859.41441349179], [0.002, 0.10623356446, 111590.2881578968], [0.002, 4.43911582586, 78270.3379836226], [0.002, 2.47821765975, 78114.14622758799], [0.002, 5.8334620174, 181026.24909573558], [0.002, 2.27341561267, 25953.79409198919], [0.002, 2.73852323809, 123200.84011627098], [0.002, 2.35063735347, 78109.93061423779], [0.002, 0.45168929332, 2111.6503133776], [0.002, 4.46926491505, 25450.90686955], [0.002, 3.97278244291, 52808.59002246159], [0.002, 0.58667782465, 128320.75184749259], [0.002, 3.05065649587, 102755.42612401219], [0.002, 1.1348605474, 52492.19815280499], [0.002, 4.64642529286, 60370.08161635699], [0.002, 3.68035435205, 52309.9153327334], [0.002, 5.93910800197, 78160.61665050399], [0.002, 1.26706232, 58857.03113654799], [0.002, 5.09637370849, 26823.77965510599], [0.002, 3.88808196008, 16703.062133499], [0.002, 0.00715741623, 130866.11389874699], [0.002, 3.63338095338, 51852.30086649099], [0.002, 5.67927933196, 103917.90082841998], [0.002, 1.35964203538, 3328.13565628019], [0.002, 6.1353166559, 129373.02023068098], [0.002, 3.74140255139, 52381.99183158559], [0.002, 0.37783717379, 53771.99272543299], [0.002, 0.70779949763, 26667.590728573], [0.002, 2.05372686428, 70383.6202713836], [0.002, 6.06999395703, 23919.1426592916], [0.002, 1.22493486348, 103498.41618454478], [0.002, 4.0005881348, 129799.61842155698], [0.002, 1.62085169147, 78149.27013603736], [0.002, 1.81898501228, 25771.5112719176], [0.002, 6.2245179639, 52252.07235442399], [0.002, 0.20849484282, 25754.0472008048], [0.002, 2.38916713246, 51226.63067417859], [0.002, 4.34697979051, 26404.2950112308], [0.002, 2.87638496001, 167850.0829477496], [0.002, 4.0163819369, 51868.2486621788], [0.002, 3.38565068956, 77726.90491262719], [0.002, 5.73512271075, 189853.99758261937], [0.002, 3.93444553575, 50910.238804522], [0.002, 3.62039658007, 6885.14988993081], [0.002, 1.7649293935, 92741.06060792258], [0.002, 2.5819014903, 154938.34595416137], [0.002, 5.37279792857, 52278.89905736699], [0.002, 3.37039086197, 2221.856634597], [0.002, 6.07737780217, 94329.77528619739], [0.002, 5.16106622649, 26729.31670331319], [0.002, 1.58212922198, 26013.1215430069], [0.002, 5.77714525422, 25600.26839032], [0.002, 1.88481234244, 27177.6119327678], [0.002, 5.68695965343, 50264.6067999312], [0.002, 6.0760153167, 141762.17980617538], [0.002, 4.33545610317, 8194.2753332086], [0.002, 1.10189365852, 1223.81784077861], [0.002, 1.68048369897, 27250.37784598199], [0.002, 5.32044002117, 151199.94274106238], [0.002, 1.33411828477, 78257.08086582259], [0.002, 5.40842531044, 95247.70557217918], [0.002, 4.55349965747, 37698.4550999484], [0.002, 2.71889214634, 173511.41499690176], [0.002, 1.95076646341, 143005.6674078538], [0.002, 2.00346690661, 26073.67604757259], [0.002, 1.78781584986, 48847.6706268682], [0.002, 5.89586766332, 26312.2479372761], [0.002, 1.99160321093, 26189.8656598398], [0.002, 0.40598906242, 25773.71696170459], [0.002, 3.36946627953, 26575.53789282839], [0.002, 4.77845331095, 136722.59155786238], [0.002, 1.11920130054, 51315.49635439559], [0.002, 4.99966961564, 78800.51393681798], [0.002, 2.50164995664, 19202.75325164339], [0.002, 5.31192385841, 23384.2869868986], [0.002, 2.93563622378, 137678.191299471], [0.002, 5.00974264854, 182188.72380014337], [0.002, 2.8206637022, 118828.96374949679], [0.002, 1.23355180586, 52286.01260436779], [0.002, 0.27866926, 24356.7807886416], [0.002, 2.19163720361, 26395.46076254379], [0.002, 2.41579406356, 147423.51185532758], [0.002, 1.80661945912, 860.3099287528], [0.001, 3.75687703582, 34082.4315835984], [0.001, 5.85918351804, 163766.0944410452], [0.001, 4.84627694564, 27170.98337386779], [0.002, 3.12958128871, 195047.36464141717], [0.002, 0.59313712363, 74.7815985673], [0.002, 4.60111717878, 25004.8229092806], [0.001, 1.14751201091, 55503.94193942859], [0.002, 4.55507467591, 132658.27281205778], [0.001, 1.61844283111, 24079.34560241519], [0.002, 1.99970840056, 17098.43543614181], [0.002, 4.95650007002, 24448.8336243862], [0.001, 6.20512620421, 2333.196392872], [0.002, 1.27464400058, 144916.86689107097], [0.002, 6.17677089224, 87367.61641884019], [0.001, 1.29983905478, 154194.22245657316], [0.002, 4.47232796046, 130432.40216087017], [0.001, 4.48574397522, 101703.15774082378], [0.002, 2.19277171383, 103.0927742186], [0.001, 1.80796273878, 25508.2155545754], [0.001, 5.486640137, 22625.658435709], [0.001, 0.74294839995, 78896.49316403578], [0.001, 3.51165251141, 26421.7590823436], [0.001, 5.5566899571, 220025.88923089797], [0.002, 4.08809950869, 25466.159340735], [0.002, 2.89128653047, 166740.70439565618], [0.001, 3.92791860433, 189386.03259226496], [0.001, 0.3312846752, 76571.54375522019], [0.002, 1.98187462633, 81604.32185142238], [0.001, 3.57210475329, 78786.28684281638], [0.002, 1.13879447241, 61165.27398858079], [0.001, 5.62721081889, 122444.98726584678], [0.001, 0.51173156424, 113341.08027172917], [0.001, 0.63238768568, 130459.18546877075], [0.001, 0.62172861766, 138319.60486120995], [0.002, 0.35135879351, 132028.58860315479], [0.001, 1.68473271541, 28286.9904848612], [0.002, 2.61859360479, 61560.64729122359], [0.001, 3.42727473387, 130435.63437251298], [0.002, 3.42836265136, 65717.22748563958], [0.001, 2.98248327032, 846.0828347512], [0.001, 5.35146960556, 1265.5674786264], [0.001, 4.8837970192, 205260.65018762814], [0.001, 1.38681194099, 467.9649903544], [0.001, 5.78967137689, 76152.05911134499], [0.001, 1.6462517202, 75930.51303185058], [0.001, 0.08732855602, 103718.82882698359], [0.001, 0.74831854153, 51534.3927214094], [0.001, 1.98744571247, 26411.4085582316], [0.002, 0.58716824437, 52065.59996192899], [0.001, 5.83388253183, 104275.34649502118], [0.001, 2.07307900948, 78188.92782615528], [0.001, 4.54379329814, 203041.8930834414], [0.001, 3.67961974137, 116783.65521669458], [0.001, 2.7641982766, 52812.8025551726], [0.001, 5.76246998806, 1375.7737998458], [0.001, 3.49542841313, 79315.97780791098], [0.001, 3.09408892186, 9384.8410080752], [0.002, 2.99230815235, 91805.13062721379], [0.001, 2.3181898578, 58220.0348645238], [0.001, 2.52061585089, 91919.56991589899], [0.001, 0.20823485438, 54879.422437824], [0.001, 4.44457464944, 6044.2285813754], [0.001, 0.49331056411, 104819.57755665119], [0.001, 5.98062907857, 106570.36967048359], [0.001, 3.43578051874, 51841.950342379], [0.001, 1.50478057782, 137210.22630911658], [0.001, 0.85871789181, 25985.94062330859], [0.001, 0.00464768227, 196137.07343261078], [0.001, 4.31601888279, 50483.640613646], [0.001, 3.82192552665, 25928.601406782], [0.001, 2.13422641639, 62197.64356324779], [0.001, 0.26342054765, 1795.258443721], [0.001, 3.33069384141, 19.66976089979], [0.001, 5.0467220846, 26247.2048763664], [0.001, 3.6909155011, 77307.42026875199], [0.001, 0.68629642431, 26102.1302355758], [0.001, 5.6196302566, 104197.83375581198], [0.001, 0.41026701894, 636.9962720242], [0.001, 2.73690252229, 170068.84005193636], [0.001, 2.97981003623, 78057.52387628538], [0.001, 2.84174115238, 168959.46149984296], [0.001, 6.19695864555, 241561.83887541335], [0.001, 2.31427972623, 179172.74704605396], [0.001, 0.82072277702, 51329.7234483972], [0.001, 5.23954201903, 99024.13645791399], [0.001, 1.86269361791, 45494.58142974879], [0.001, 3.54450921353, 78338.49102328988], [0.001, 4.60745432488, 156507.7490885454], [0.001, 1.62346464256, 128106.31931499895], [0.001, 0.72186155433, 27005.83342755599], [0.001, 2.30344666604, 50380.54783942739], [0.001, 1.18658609813, 8989.46770543239], [0.001, 6.25857682168, 50800.03248330259], [0.001, 0.99962008973, 163298.1294506908], [0.001, 2.86790873835, 38634.3850806572], [0.001, 3.61827980669, 106262.81204951399], [0.001, 0.61515728295, 78469.89497315978], [0.001, 4.60636743786, 126996.94076290558], [0.001, 4.48187053152, 231348.55332920235], [0.001, 5.1982979368, 142871.55835826878], [0.001, 5.68864830775, 3178.1457905676], [0.001, 4.89753750946, 53265.515074342], [0.001, 3.68051221186, 2703.6161546756], [0.001, 0.0173753133, 103814.80805420138], [0.001, 1.79348974875, 183145.012956114], [0.001, 6.16564988887, 199599.31813847594], [0.001, 0.63301837081, 51439.92976961659], [0.001, 2.2942790431, 1485.9801210652], [0.001, 1.44184009822, 112545.88789950538], [0.001, 0.55411127132, 42790.9652750732], [0.001, 5.07507945312, 54824.2611086214], [0.001, 5.10858625008, 107679.74822257696], [0.001, 5.50068575093, 27819.0254945068], [0.001, 5.60579347269, 153084.84390447979], [0.001, 4.92352598929, 51596.1186961496], [0.001, 6.10538330268, 181659.72224941078]], [[3117.867, 3.08231840296, 26087.9031415742], [1245.396, 6.15183317423, 52175.8062831484], [424.822, 2.9258335296, 78263.70942472259], [136.13, 5.97983925842, 104351.61256629678], [42.175, 2.74936980629, 130439.51570787099], [21.759, 3.14159265359, 0.0], [12.793, 5.80143162209, 156527.41884944518], [3.825, 2.56993599584, 182615.3219910194], [1.042, 3.14648120079, 24978.5245894808], [1.131, 5.6214219697, 208703.2251325936], [0.483, 6.1430765452, 27197.2816936676], [0.332, 2.3899257567, 234791.12827416777], [0.32, 6.20674766565, 51066.427731055], [0.12, 0.56745598887, 20426.571092422], [0.113, 3.28048907943, 24498.8302462904], [0.105, 4.36663468239, 25028.521211385], [0.097, 5.44128884026, 260879.03141574195], [0.095, 1.70276410782, 1059.3819301892], [0.103, 2.98038190305, 77154.33087262919], [0.074, 1.286303818, 26617.5941066688], [0.057, 2.9675336298, 1109.3785520934], [0.066, 5.68201233964, 25132.3033999656], [0.053, 3.63699398162, 46514.4742339962], [0.059, 3.10922979724, 27043.5028831828], [0.053, 0.66673109494, 21535.9496445154], [0.043, 4.69270605698, 27147.28507176339], [0.042, 2.77372510028, 1589.0728952838], [0.036, 4.39741248058, 14765.2390432698], [0.035, 1.80468389323, 11322.6640983044], [0.043, 6.0742625499, 28306.66024576099], [0.033, 5.34572581657, 25448.00585526019], [0.031, 5.6648907507, 30639.856638633], [0.031, 2.36104565226, 32858.61374281979], [0.031, 4.27403143366, 16983.9961474566], [0.033, 3.22976052744, 23869.1460373874], [0.031, 0.5004107612, 22645.32819660879], [0.028, 2.21390393577, 286966.9345573162], [0.033, 6.03682885493, 103242.2340142034], [0.025, 4.23934105457, 52705.49724824299], [0.023, 2.59711556958, 23969.1392811958], [0.027, 2.10665521901, 25558.2121764796], [0.021, 0.4089238358, 72602.37737557039], [0.025, 5.69513499802, 5661.3320491522], [0.022, 4.86064608327, 26301.2022370122], [0.024, 0.66522740624, 19317.1925403286], [0.02, 5.61847810688, 4551.9534970588], [0.021, 2.30083904827, 51220.20654153979], [0.018, 0.4883903725, 26068.2333806744], [0.016, 6.07779022342, 50586.73338786459], [0.016, 1.47218845921, 53235.18821333759], [0.017, 2.94277588966, 53285.1848352418], [0.015, 2.39097980793, 83925.0414738748], [0.015, 3.85502950028, 26091.7844769322], [0.014, 4.13753968603, 12566.1516999828], [0.015, 5.51545801304, 6770.7106012456], [0.014, 5.67708505049, 57837.1383323006], [0.014, 5.73775080815, 27676.976036858], [0.016, 5.69298300679, 26107.57290247399], [0.014, 5.00837046884, 37410.5672398786], [0.015, 5.72321978212, 29530.4780865396], [0.012, 1.18827026407, 40853.142184844], [0.013, 2.34101240702, 26084.0218062162], [0.012, 2.43920574243, 56727.7597802072], [0.012, 1.12086684687, 43071.8992890308], [0.012, 1.86975778356, 9103.9069941176], [0.012, 4.9023641695, 36301.18868778519], [0.01, 2.33297570685, 426.598190876], [0.011, 2.80390774003, 129330.13715577759], [0.01, 5.86382886189, 26202.34243025941], [0.009, 0.03545904481, 25234.70675982219], [0.011, 0.92571990717, 639.897286314], [0.01, 3.94827815051, 25661.3049506982], [0.009, 0.00145195768, 49957.0491789616], [0.008, 5.42702003399, 110012.94461544899], [0.008, 3.39306818321, 25973.46385288896], [0.009, 4.83499870418, 38519.945791972], [0.008, 5.65148718768, 53131.406024757], [0.009, 5.73812314204, 51116.4243529592], [0.008, 1.98050481337, 13521.7514415914], [0.009, 0.95963913886, 78793.40038981718], [0.008, 5.24647237181, 313054.83769889036], [0.008, 3.52212788936, 52156.1365222486], [0.007, 3.57060093012, 48733.23133818299], [0.008, 3.47359025801, 98690.28051714458], [0.008, 5.32679971128, 51646.11531805379], [0.01, 5.07319693095, 25874.6040461362], [0.008, 4.34411026261, 31749.2351907264], [0.007, 3.44556423722, 26080.78959457339], [0.007, 5.28088749622, 77308.10968311399], [0.007, 3.46667099767, 2118.7638603784], [0.007, 1.96360039314, 10213.285546211], [0.007, 1.18631489114, 103292.23063610759], [0.007, 4.28693259279, 955.5997416086], [0.007, 0.88520158736, 38654.05484155699], [0.009, 2.1210015003, 18849.2275499742], [0.008, 2.75301666365, 26095.016688575], [0.007, 4.98530328971, 529.6909650946], [0.007, 0.20928215626, 33326.5787331742], [0.006, 4.54286088482, 79323.09135491178], [0.006, 0.60060875587, 52179.6876185064], [0.006, 1.21940434381, 41962.5207369374], [0.006, 1.74585091288, 62389.09182935939], [0.006, 2.13481309441, 51535.90899683439], [0.006, 4.92478078408, 26514.5013324502], [0.007, 4.18249532118, 77204.32749453338], [0.007, 1.68449319925, 52389.1053785864], [0.005, 4.28220819106, 68050.42387851159], [0.007, 1.69076988754, 12432.0426503978], [0.006, 3.73803069606, 45405.0956819028], [0.005, 2.6132037412, 79373.087976816], [0.005, 2.82458540907, 54394.56338733519], [0.004, 6.27439443684, 52168.69273614759], [0.005, 4.50767453332, 13655.8604911764], [0.006, 2.41451327257, 52195.47604404819], [0.005, 5.35396003655, 52171.9249477904], [0.005, 5.48187638039, 82815.66292178139], [0.004, 2.46695073802, 55618.3812281138], [0.004, 2.40470389725, 53764.8791784322], [0.004, 4.24591997877, 66941.04532641819], [0.004, 3.26730161531, 7238.6755916], [0.004, 4.24517841791, 129380.13377768178], [0.004, 5.46706523938, 50057.04242277], [0.004, 2.17208918484, 136100.84775702318], [0.004, 5.86573287261, 155418.04029735178], [0.004, 4.15256069197, 32370.9789915656], [0.004, 2.92358717546, 2218.7571041868], [0.004, 2.22141015932, 33967.99229491319], [0.005, 5.74788858603, 52182.9198301492], [0.004, 0.97295961632, 44181.27784112419], [0.003, 5.78273085505, 28421.0995344462], [0.003, 3.65975480266, 99799.65906923798], [0.004, 3.98623592167, 26727.8004278882], [0.003, 2.65056124435, 76674.63652943878], [0.003, 4.91152657563, 47623.8527860896], [0.004, 1.60135504353, 77734.01845962799], [0.003, 0.26868606771, 78244.0396638228], [0.003, 4.58298191655, 1066.49547719], [0.003, 4.04696774318, 18093.37469954999], [0.003, 1.04981780528, 94138.32702008578], [0.003, 0.82425633309, 73711.75592766379], [0.003, 5.12180734718, 1052.2683831884], [0.003, 1.58544193974, 51109.31080595839], [0.003, 0.22337858409, 124778.18365871879], [0.003, 3.08207297479, 76044.9523205358], [0.003, 6.26000429251, 853.196381752], [0.003, 3.89747679105, 64741.95798313119], [0.003, 1.86869273254, 52602.4044740244], [0.004, 0.01480665337, 7.1135470008], [0.003, 1.95420622178, 103396.01282468818], [0.003, 6.00022344367, 29416.03879785439], [0.003, 1.0582738966, 51123.53789995999], [0.003, 3.9333618709, 104881.30353139139], [0.002, 4.80666683935, 88476.99497093359], [0.002, 2.56919394798, 51962.5071877104], [0.002, 5.19328838214, 91785.46086631398], [0.003, 4.94448744333, 44937.1306915484], [0.002, 0.39272598961, 23754.70674870219], [0.003, 3.64926786888, 78267.59076008058], [0.002, 1.93776267237, 117873.36400788819], [0.002, 0.16310879863, 28206.6670019526], [0.002, 2.74232958068, 52290.24557183361], [0.002, 1.94114905421, 7994.5284420242], [0.002, 0.39437121176, 125887.56221081219], [0.002, 1.03418813348, 155468.036919256], [0.002, 2.06866763231, 339142.7408404646], [0.002, 1.29912216629, 105410.99449648599], [0.002, 0.5412418909, 74821.13447975718], [0.002, 2.12346357366, 65697.55772473979], [0.002, 2.54143985834, 78270.82297172339], [0.002, 4.87063627681, 35191.8101356918], [0.002, 0.51631216786, 71492.99882347698], [0.002, 0.7397688755, 18207.81398823521], [0.002, 5.50150244414, 78283.37918562238], [0.002, 4.78661791721, 78477.00852016058], [0.002, 4.40683761496, 103821.92160120218], [0.002, 3.07092516027, 78256.59587772179], [0.002, 5.01301614244, 3442.5749449654], [0.002, 2.58799752737, 181505.94343892598], [0.002, 4.95243490606, 129483.91596626239], [0.002, 4.12821833516, 77211.44104153418], [0.002, 4.05475453577, 120226.23016165999], [0.002, 3.34041291655, 151975.46535238638], [0.002, 3.27812728356, 51322.60990139639], [0.002, 4.06092192484, 77837.11123384659], [0.002, 5.22546741404, 162188.75089859738], [0.002, 5.57497617017, 71980.63357473118], [0.002, 1.86655156569, 23439.44831610119], [0.002, 4.79020891265, 15874.6175953632], [0.002, 2.43202419279, 45892.73043315699], [0.001, 4.91443985635, 78690.30761559859], [0.002, 2.55186486587, 39609.6545831656], [0.002, 2.04705904795, 433.7117378768], [0.001, 6.06582167254, 102132.85546210999], [0.002, 0.36512406083, 6283.0758499914], [0.002, 5.96418661485, 78050.41032928458], [0.001, 0.66730245858, 58458.88213313979], [0.001, 2.46652537811, 98068.53671630539], [0.002, 3.24884087108, 150866.08680029298], [0.002, 0.33626385981, 52061.36699446317], [0.001, 1.58214319162, 114564.89811250778], [0.001, 1.86505965946, 27140.17152476259], [0.001, 4.7095478466, 77197.21394753258], [0.001, 3.30080224324, 104331.94280539699], [0.002, 2.15014442693, 78259.82808936459], [0.001, 4.16909637294, 51742.09454527159], [0.002, 0.61993180902, 130969.20667296558], [0.001, 5.64166202504, 81706.28436968799], [0.001, 1.28449131177, 27154.3986187642], [0.001, 0.20716724934, 131548.89425996438], [0.001, 5.01586042695, 105460.99111839019], [0.001, 2.2014213773, 104371.28232719658], [0.001, 0.7154790308, 103925.01437542078], [0.001, 1.69298852699, 71025.0338331226], [0.002, 1.01857337375, 93028.94846799239], [0.002, 0.99564225222, 129909.82474277639], [0.001, 3.04953117213, 26941.0995233262], [0.001, 1.54774252742, 104564.91166173479], [0.001, 1.29736654025, 26241.681952059], [0.002, 0.39879309478, 104355.49390165479], [0.001, 1.73442408485, 64607.84893354619], [0.001, 3.52887677711, 97580.90196505119], [0.001, 3.55488474055, 84546.78527471398], [0.001, 2.68991734615, 59414.4818747484], [0.001, 2.23301107736, 107794.1875112622], [0.001, 6.04185199127, 104344.49901929598], [0.001, 2.33178230942, 108903.56606335558], [0.001, 5.23291332097, 134991.4692049298], [0.001, 5.42420842294, 79852.78232000639], [0.001, 5.56485897392, 104358.72611329758], [0.001, 2.03042058117, 76144.94556434419], [0.001, 4.42403586918, 25021.4076643842], [0.001, 4.07362401058, 181555.94006083018], [0.001, 4.39544806298, 131498.89763806018], [0.001, 3.37653548744, 22759.76748529401], [0.001, 3.34598726101, 24864.08530079559], [0.001, 0.81949463309, 52815.7035694624], [0.001, 4.13026377404, 2648.454825473], [0.001, 1.4070114617, 103285.11708910679], [0.001, 2.72338212355, 419.4846438752], [0.001, 2.8623972993, 63498.47038145279], [0.001, 4.60118276053, 19804.8272915828], [0.001, 3.76488909896, 51749.20809227239], [0.001, 5.71167880995, 78378.1487134078], [0.001, 3.11068504003, 54294.57014352679], [0.001, 5.17191010522, 1596.1864422846], [0.001, 0.84666659977, 26037.90651966999], [0.001, 1.27214241387, 39743.7636327506], [0.001, 3.62572271343, 51756.3216392732], [0.001, 0.99401491673, 50579.61984086379], [0.001, 2.65940437112, 79219.3091663312], [0.001, 2.78122688424, 157636.79740153858], [0.001, 5.02865728622, 365230.6439820388], [0.001, 4.26629771518, 26724.8994135984], [0.001, 0.69459147389, 90829.86112470538], [0.001, 3.74834736873, 44295.7171298094], [0.001, 2.67181600104, 5327.4761083828], [0.001, 5.10769130141, 58946.51688439399], [0.001, 0.55503171074, 69159.80243060499], [0.001, 4.68391610322, 90695.75207512038], [0.001, 5.17372763616, 149.5631971346], [0.001, 5.26044215633, 25934.1243310894], [0.001, 5.13679156205, 104347.73123093879], [0.001, 0.91197645609, 103299.34418310839], [0.001, 5.89466975855, 27311.72098235281], [0.001, 0.91206378451, 77829.99768684579], [0.001, 0.82686052448, 146314.13330323418], [0.001, 5.01041490382, 25450.90686955], [0.001, 0.74891931364, 10021.8372800994], [0.001, 3.75910629606, 25619.9381512198], [0.001, 1.57855828108, 61279.713277266], [0.001, 5.22196769252, 77623.81213840858], [0.001, 5.4428033736, 52643.7712735028], [0.001, 3.3876046343, 49842.60989027639], [0.001, 4.04176416141, 25565.3257234804], [0.001, 1.99169557218, 105940.68546158058], [0.001, 2.40126368211, 26555.8681319286], [0.001, 3.28153684541, 78149.27013603736], [0.001, 1.50606534242, 50593.84693486539], [0.001, 4.99390846744, 143961.2671494624], [0.001, 4.36279289081, 70269.18098269838], [0.001, 0.5633044687, 29428.515568274], [0.001, 1.96827343473, 188276.6540401716], [0.001, 6.1402409335, 3328.13565628019], [0.001, 4.38278455115, 52329.58509363319], [0.001, 5.32677211586, 26137.8997634784], [0.001, 5.49001686286, 7880.08915333899], [0.001, 2.08096369099, 26610.48055966799], [0.001, 2.81808749734, 54509.0026760204], [0.001, 3.85620334673, 26624.70765366959], [0.001, 1.15157832957, 536.8045120954], [0.001, 3.62974919098, 130012.91751699499], [0.001, 0.3597788856, 105307.21230790539], [0.001, 2.75970257539, 55503.94193942859], [0.001, 3.95087871071, 119116.85160956658], [0.001, 2.02746284465, 85034.42002596818], [0.001, 0.01631363612, 25668.418497699], [0.001, 4.69497491223, 1581.959348283], [0.001, 4.43589881789, 53242.3017603384], [0.001, 0.02851648548, 213.299095438], [0.001, 2.42155941603, 25551.09862947879], [0.001, 4.51335885923, 12546.481939083], [0.001, 3.0701219029, 104138.31347085879], [0.001, 4.25105785914, 65831.6667743248], [0.001, 0.26591217377, 89586.37352302698], [0.001, 3.25491459524, 46848.3301747656], [0.001, 5.00501348827, 51639.00177105299], [0.0, 5.50334834007, 124156.43985787958], [0.0, 4.83101429854, 76.2660712756], [0.0, 4.34030366776, 80482.46652890938], [0.001, 3.55161443787, 116917.76426627958], [0.0, 4.96302997387, 26521.614879451], [0.001, 0.12176395772, 6681.2248533996], [0.001, 0.06932929209, 48847.6706268682], [0.001, 0.08695556653, 26507.38778544939], [0.0, 1.50601747714, 632.7837393132], [0.0, 3.68453733674, 25035.6347583858], [0.0, 2.10077795936, 86143.79857806159], [0.0, 2.61352703953, 53399.624123927], [0.0, 0.84481589887, 25881.717593137], [0.0, 3.95854005744, 95247.70557217918], [0.001, 4.47600641528, 97112.93697469679], [0.001, 0.40812953108, 77844.22478084739], [0.0, 4.89912517892, 25984.8103673556], [0.0, 5.16843610094, 52698.38370124219], [0.0, 3.99449121788, 131395.11544947958], [0.0, 5.65446547429, 80596.9058175946]], [[32.676, 1.67971635359, 26087.9031415742], [24.166, 4.63403168997, 52175.8062831484], [12.133, 1.38983781545, 78263.70942472259], [5.14, 4.4391538693, 104351.61256629678], [1.981, 1.20733880274, 130439.51570787099], [1.46, 3.14159265359, 0.0], [0.719, 4.25913631362, 156527.41884944518], [0.25, 1.02794425848, 182615.3219910194], [0.084, 4.08008618813, 208703.2251325936], [0.028, 0.85051616237, 234791.12827416777], [0.023, 1.60029451014, 24978.5245894808], [0.011, 4.58074493182, 27197.2816936676], [0.012, 4.6587866039, 51066.427731055], [0.009, 3.90622332667, 260879.03141574195], [0.005, 1.43247327249, 77154.33087262919], [0.004, 1.37106678794, 53285.1848352418], [0.003, 0.67217979275, 286966.9345573162], [0.002, 5.31135121818, 20426.571092422], [0.002, 1.54812921017, 1109.3785520934], [0.002, 4.48222146022, 103242.2340142034], [0.002, 0.20057520755, 1059.3819301892], [0.002, 4.21865197056, 25132.3033999656], [0.001, 2.11997334018, 46514.4742339962], [0.001, 3.24267833975, 27147.28507176339], [0.001, 1.33238537892, 1589.0728952838], [0.001, 5.14405498793, 72602.37737557039], [0.001, 6.14595652541, 26617.5941066688], [0.001, 3.90494988936, 4551.9534970588], [0.001, 2.85134614467, 14765.2390432698], [0.001, 3.74339959279, 313054.83769889036], [0.001, 2.82234410581, 52705.49724824299], [0.001, 1.70132625273, 23869.1460373874], [0.001, 1.4410244446, 27043.5028831828], [0.001, 1.2535842334, 129330.13715577759], [0.001, 0.32054002273, 9103.9069941176], [0.001, 0.90273607509, 51220.20654153979], [0.001, 4.28935605425, 27676.976036858], [0.001, 4.41206223998, 79373.087976816], [0.001, 3.23518929162, 26301.2022370122], [0.001, 2.25667255668, 21535.9496445154], [0.001, 4.70414203873, 50586.73338786459], [0.001, 1.88608259832, 98690.28051714458], [0.001, 5.90420893056, 40853.142184844], [0.001, 4.46892853356, 53131.406024757], [0.001, 3.83684899837, 77308.10968311399], [0.001, 1.31974603498, 54394.56338733519], [0.001, 0.74728939443, 32858.61374281979], [0.001, 6.27673970277, 53235.18821333759], [0.001, 4.1481457861, 29530.4780865396], [0.001, 0.87302135775, 83925.0414738748], [0.001, 5.20339566427, 26068.2333806744], [0.001, 2.88631079597, 79323.09135491178], [0.001, 5.39853672849, 19317.1925403286], [0.001, 5.73721596586, 78793.40038981718], [0.0, 1.85241611022, 25973.46385288896], [0.0, 4.31134434847, 26202.34243025941], [0.0, 4.7430520578, 49957.0491789616], [0.001, 3.87802524387, 82815.66292178139], [0.0, 4.28937691652, 155418.04029735178], [0.001, 3.35625397389, 37410.5672398786], [0.0, 2.00313301846, 22645.32819660879], [0.0, 2.49236829957, 25028.521211385], [0.0, 0.01947787727, 25558.2121764796], [0.001, 4.13825019881, 3442.5749449654], [0.0, 2.81832388305, 25874.6040461362], [0.0, 2.53416253042, 12566.1516999828], [0.001, 4.46169102731, 28306.66024576099], [0.001, 2.16986592809, 45405.0956819028], [0.0, 2.27621739263, 26091.7844769322], [0.0, 1.95034764539, 52156.1365222486], [0.0, 4.03054078678, 30639.856638633], [0.0, 5.76722418743, 43071.8992890308], [0.0, 4.12739704581, 26107.57290247399], [0.0, 1.37713138665, 31749.2351907264], [0.001, 3.54716896556, 51646.11531805379], [0.0, 3.3916159585, 36301.18868778519], [0.0, 4.34410863436, 57837.1383323006], [0.0, 5.6208296069, 639.897286314], [0.0, 3.16268062826, 529.6909650946], [0.0, 0.77186843357, 26084.0218062162], [0.0, 3.78612072314, 110012.94461544899], [0.0, 5.50453358586, 51116.4243529592], [0.0, 0.0470913142, 52389.1053785864], [0.0, 3.93991894858, 6770.7106012456], [0.0, 1.41961180167, 76674.63652943878], [0.0, 2.61258742182, 66941.04532641819], [0.0, 0.70544164813, 426.598190876], [0.0, 0.91883551986, 55618.3812281138], [0.0, 5.30612883135, 52179.6876185064], [0.0, 2.00604152518, 2118.7638603784], [0.0, 1.08640210817, 56727.7597802072], [0.0, 3.92743267498, 58946.51688439399], [0.0, 5.52202827702, 38654.05484155699], [0.0, 1.57363600114, 24498.8302462904], [0.0, 3.49522546958, 5661.3320491522], [0.0, 0.63375195581, 51535.90899683439], [0.0, 1.34305878069, 105460.99111839019], [0.0, 0.44820055565, 339142.7408404646], [0.0, 1.39951362362, 2218.7571041868], [0.0, 0.63311095079, 18849.2275499742], [0.0, 0.82120127326, 52195.47604404819], [0.0, 2.78211363987, 47623.8527860896], [0.0, 0.94752126944, 53764.8791784322], [0.0, 3.75988526858, 52171.9249477904], [0.0, 0.4435143591, 136100.84775702318], [0.0, 1.44824925227, 76044.9523205358], [0.0, 4.83985082201, 78244.0396638228], [0.0, 0.04522486479, 62389.09182935939], [0.0, 6.28144869714, 213.299095438], [0.0, 5.17875557687, 955.5997416086], [0.0, 4.62674052433, 52168.69273614759], [0.0, 2.19907823066, 77204.32749453338], [0.0, 3.40216597806, 26514.5013324502], [0.0, 2.89630853457, 13655.8604911764], [0.0, 3.92639394174, 50057.04242277], [0.0, 0.27991454535, 11322.6640983044], [0.0, 5.63968341805, 103292.23063610759], [0.0, 1.86829495425, 48733.23133818299], [0.0, 5.77443179008, 105410.99449648599]], [[0.394, 0.3673540384, 26087.9031415742], [0.387, 3.18568771507, 52175.8062831484], [0.27, 6.16983616444, 78263.70942472259], [0.149, 2.91591904641, 104351.61256629678], [0.071, 5.95867889641, 130439.51570787099], [0.031, 2.72386700044, 156527.41884944518], [0.017, 0.0, 0.0], [0.012, 5.77775334056, 182615.3219910194], [0.005, 2.54506442647, 208703.2251325936], [0.002, 5.59978443851, 234791.12827416777], [0.001, 2.33785160871, 260879.03141574195], [0.0, 5.37943916893, 286966.9345573162], [0.0, 3.09643524101, 51066.427731055], [0.0, 0.0934285875, 24978.5245894808], [0.0, 6.02837115675, 53285.1848352418], [0.0, 6.13600004668, 77154.33087262919], [0.0, 2.93310416266, 27197.2816936676], [0.0, 2.89897922039, 103242.2340142034]], [[0.006, 3.98900269603, 26087.9031415742], [0.006, 1.55248278782, 52175.8062831484], [0.005, 4.65461721116, 78263.70942472259], [0.004, 1.40238366492, 104351.61256629678], [0.002, 4.44231488663, 130439.51570787099], [0.001, 3.14159265359, 0.0], [0.001, 1.21278177664, 156527.41884944518], [0.001, 4.2614902634, 182615.3219910194], [0.0, 0.99831133595, 208703.2251325936], [0.0, 4.0026706421, 234791.12827416777]]]

This table contains Mercury’s periodic terms (all of them) from the planetary theory VSOP87 for the radius vector at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in page 416.

Minor

Class to model minor celestial objetcs.

class pymeeus.Minor.Minor(q, e, i, omega, w, t)[source]

Class Minor models minor celestial bodies.

__init__(q, e, i, omega, w, t)[source]

Minor constructor.

The Minor object is initialized with this constructor, setting the orbital values and computing some internal parameters. This constructor is build upon the ‘set()’ method.

Parameters:
  • q (float) – Perihelion distance, in Astronomical Units
  • e (float) – Eccentricity of the orbit
  • i (Angle) – Inclination of the orbit, as an Angle object
  • omega (Angle) – Longitude of the ascending node, as an Angle object
  • w (Angle) – Argument of the perihelion, as an Angle object
  • t (Epoch) – Epoch of passage by perihelion, as an Epoch object
Raises:

TypeError if input value is of wrong type.

__weakref__

list of weak references to the object (if defined)

geocentric_position(epoch)[source]

This method computes the geocentric position of a minor celestial body (right ascension and declination) for the given epoch, and referred to the standard equinox J2000.0. Additionally, it also computes the elongation angle to the Sun.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing the right ascension, the declination and the elongation angle to the Sun, as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> a = 2.2091404
>>> e = 0.8502196
>>> q = a * (1.0 - e)
>>> i = Angle(11.94524)
>>> omega = Angle(334.75006)
>>> w = Angle(186.23352)
>>> t = Epoch(1990, 10, 28.54502)
>>> minor = Minor(q, e, i, omega, w, t)
>>> epoch = Epoch(1990, 10, 6.0)
>>> ra, dec, p = minor.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
10h 34' 13.7''
>>> print(dec.dms_str(n_dec=0))
19d 9' 32.0''
>>> print(round(p, 2))
40.51
>>> t = Epoch(1998, 4, 14.4358)
>>> q = 1.487469
>>> e = 1.0
>>> i = Angle(0.0)
>>> omega = Angle(0.0)
>>> w = Angle(0.0)
>>> minor = Minor(q, e, i, omega, w, t)
>>> epoch = Epoch(1998, 8, 5.0)
>>> ra, dec, p = minor.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
5h 45' 34.5''
>>> print(dec.dms_str(n_dec=0))
23d 23' 53.0''
>>> print(round(p, 2))
45.73
heliocentric_ecliptical_position(epoch)[source]

This method computes the heliocentric position of a minor celestial body, providing the result in ecliptical coordinates.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing longitude and latitude, as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> a = 2.2091404
>>> e = 0.8502196
>>> q = a * (1.0 - e)
>>> i = Angle(11.94524)
>>> omega = Angle(334.75006)
>>> w = Angle(186.23352)
>>> t = Epoch(1990, 10, 28.54502)
>>> epoch = Epoch(1990, 10, 6.0)
>>> minor = Minor(q, e, i, omega, w, t)
>>> lon, lat = minor.heliocentric_ecliptical_position(epoch)
>>> print(lon.dms_str(n_dec=1))
66d 51' 57.8''
>>> print(lat.dms_str(n_dec=1))
11d 56' 14.4''
set(q, e, i, omega, w, t)[source]

Method used to set the orbital values and set some internal parameters.

Parameters:
  • q (float) – Perihelion distance, in Astronomical Units
  • e (float) – Eccentricity of the orbit
  • i (Angle) – Inclination of the orbit, as an Angle object
  • omega (Angle) – Longitude of the ascending node, as an Angle object
  • w (Angle) – Argument of the perihelion, as an Angle object
  • t (Epoch) – Epoch of passage by perihelion, as an Epoch object
Raises:

TypeError if input value is of wrong type.

Moon

Module holding functions to handle coordinates.

class pymeeus.Moon.Moon[source]

Class Moon models Earth’s satellite.

__weakref__

list of weak references to the object (if defined)

static apparent_ecliptical_pos(epoch)[source]

This method computes the apparent geocentric ecliptical position (longitude, latitude) of the Moon for a given instant, referred to the mean equinox of the date, as well as the Moon-Earth distance in kilometers and the equatorial horizontal parallax.

Parameters:epoch (Epoch) – Instant to compute the Moon’s position, as an py:class:Epoch object.
Returns:Tuple containing:
  • Apparent geocentric longitude of the center of the Moon, as an py:class:Epoch object.
  • Apparent geocentric latitude of the center of the Moon, as an py:class:Epoch object.
  • Distance in kilometers between the centers of Earth and Moon, in kilometers (float)
  • Equatorial horizontal parallax of the Moon, as an py:class:Epoch object.
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 4, 12.0)
>>> Lambda, Beta, Delta, ppi = Moon.apparent_ecliptical_pos(epoch)
>>> print(round(Lambda, 5))
133.16726
>>> print(round(Beta, 6))
-3.229126
>>> print(round(Delta, 1))
368409.7
>>> print(round(ppi, 5))
0.99199
static apparent_equatorial_pos(epoch)[source]

This method computes the apparent equatorial position (right ascension, declination) of the Moon for a given instant, referred to the mean equinox of the date, as well as the Moon-Earth distance in kilometers and the equatorial horizontal parallax.

Parameters:epoch (Epoch) – Instant to compute the Moon’s position, as an py:class:Epoch object.
Returns:Tuple containing:
  • Apparent right ascension of the center of the Moon, as an py:class:Epoch object.
  • Apparent declination of the center of the Moon, as an py:class:Epoch object.
  • Distance in kilometers between the centers of Earth and Moon, in kilometers (float)
  • Equatorial horizontal parallax of the Moon, as an py:class:Epoch object.
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 4, 12.0)
>>> ra, dec, Delta, ppi = Moon.apparent_equatorial_pos(epoch)
>>> print(round(ra, 6))
134.688469
>>> print(round(dec, 6))
13.768367
>>> print(round(Delta, 1))
368409.7
>>> print(round(ppi, 5))
0.99199
static geocentric_ecliptical_pos(epoch)[source]

This method computes the geocentric ecliptical position (longitude, latitude) of the Moon for a given instant, referred to the mean equinox of the date, as well as the Moon-Earth distance in kilometers and the equatorial horizontal parallax.

Parameters:epoch (Epoch) – Instant to compute the Moon’s position, as an py:class:Epoch object.
Returns:Tuple containing:
  • Geocentric longitude of the center of the Moon, as an py:class:Epoch object.
  • Geocentric latitude of the center of the Moon, as an py:class:Epoch object.
  • Distance in kilometers between the centers of Earth and Moon, in kilometers (float)
  • Equatorial horizontal parallax of the Moon, as an py:class:Epoch object.
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 4, 12.0)
>>> Lambda, Beta, Delta, ppi = Moon.geocentric_ecliptical_pos(epoch)
>>> print(round(Lambda, 6))
133.162655
>>> print(round(Beta, 6))
-3.229126
>>> print(round(Delta, 1))
368409.7
>>> print(round(ppi, 5))
0.99199
static illuminated_fraction_disk(epoch)[source]

This method computes the approximate illuminated fraction ‘k’ of the disk of the Moon. The method used has a relatively low accuracy, but it is enough to the 2nd decimal place.

Parameters:epoch (Epoch) – Instant to compute the Moon’s illuminated fraction of the disk, as a py:class:Epoch object.
Returns:The approximate illuminated fraction of the Moon’s disk.
Return type:float
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 4, 12.0)
>>> k = Moon.illuminated_fraction_disk(epoch)
>>> print(round(k, 2))
0.68
static longitude_mean_ascending_node(epoch)[source]

This method computes the longitude of the mean ascending node of the Moon in degrees, for a given instant, measured from the mean equinox of the date.

Parameters:epoch (Epoch) – Instant to compute the Moon’s mean ascending node, as an py:class:Epoch object.
Returns:The longitude of the mean ascending node.
Return type:py:class:Angle
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1913, 5, 27.0)
>>> Omega = Moon.longitude_mean_ascending_node(epoch)
>>> print(round(Omega, 1))
0.0
>>> epoch = Epoch(2043, 9, 10.0)
>>> Omega = Moon.longitude_mean_ascending_node(epoch)
>>> print(round(Omega, 1))
0.0
>>> epoch = Epoch(1959, 12, 7.0)
>>> Omega = Moon.longitude_mean_ascending_node(epoch)
>>> print(round(Omega, 1))
180.0
>>> epoch = Epoch(2108, 11, 3.0)
>>> Omega = Moon.longitude_mean_ascending_node(epoch)
>>> print(round(Omega, 1))
180.0
static longitude_mean_perigee(epoch)[source]

This method computes the longitude of the mean perigee of the lunar orbitn in degrees, for a given instant, measured from the mean equinox of the date.

Parameters:epoch (Epoch) – Instant to compute the Moon’s mean perigee, as an py:class:Epoch object.
Returns:The longitude of the mean perigee.
Return type:py:class:Angle
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(2021, 3, 5.0)
>>> Pi = Moon.longitude_mean_perigee(epoch)
>>> print(round(Pi, 5))
224.89194
static longitude_true_ascending_node(epoch)[source]

This method computes the longitude of the true ascending node of the Moon in degrees, for a given instant, measured from the mean equinox of the date.

Parameters:epoch (Epoch) – Instant to compute the Moon’s true ascending node, as an py:class:Epoch object.
Returns:The longitude of the true ascending node.
Return type:py:class:Angle
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1913, 5, 27.0)
>>> Omega = Moon.longitude_true_ascending_node(epoch)
>>> print(round(Omega, 4))
0.8763
static moon_librations(epoch)[source]

This method computes the librations in longitude and latitude of the moon. There are several librations: The optical librations, that are the apparent oscillations in the hemisphere that the Moon turns towards the Earth, due to variations in the geometric position of the Earth relative to the lunar surface during the course of the orbital motion of the Moon. These variations allow to observe about 59% of the surface of the Moon from the Earth.

There is also the physical libration of the Moon, i.e., the libration due to the actual rotational motion of the Moon about its mean rotation. The physical libration is much smaller than the optical libration, and can never be larger than 0.04 degree in both longitude and latitude.

Finally, there is the total libration, which is the sum of the two librations mentioned above

Parameters:epoch – Epoch we want to compute the Moon’s librations.
Returns:A tuple containing the optical libration in longitude and in latitude, the physical libration also in longitude and latitude, and the total librations which is the sum of the previouse ones, all of them as Angle objects.
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 4, 12.0)
>>> lopt, bopt, lphys, bphys, ltot, btot = Moon.moon_librations(epoch)
>>> print(round(lopt, 3))
-1.206
>>> print(round(bopt, 3))
4.194
>>> print(round(lphys, 3))
-0.025
>>> print(round(bphys, 3))
0.006
>>> print(round(ltot, 2))
-1.23
>>> print(round(btot, 3))
4.2
static moon_maximum_declination(epoch, target='northern')[source]

This method computes the approximate times when the Moon reaches its maximum declination (either ‘northern’ or ‘southern’), as well as the values of these extreme declinations. The resulting times will be expressed in the uniform time scale of Dynamical Time (TT).

Parameters:
  • epoch – Approximate epoch we want to compute the Moon’s maximum declination.
  • target (str) – Either ‘northern’ or ‘southern’, depending on the maximum declination being looked for. It is ‘northern’ by default.
Returns:

A tuple containing the instant of time when the maximum declination happens, as a Epoch object, and the angle value of such declination, as a Angle object.

Return type:

tuple

Raises:

TypeError if input value is of wrong type.

>>> epoch = Epoch(1988, 12, 15.0)
>>> epo, dec = Moon.moon_maximum_declination(epoch)
>>> y, m, d, h, mi, s = epo.get_full_date()
>>> print("{}/{}/{} {}:0{}".format(y, m, d, h, mi))
1988/12/22 20:01
>>> print("{}".format(dec.dms_str(n_dec=0)))
28d 9' 22.0''
>>> epoch = Epoch(2049, 4, 15.0)
>>> epo, dec = Moon.moon_maximum_declination(epoch, target='southern')
>>> y, m, d, h, mi, s = epo.get_full_date()
>>> print("{}/{}/{} {}:{}".format(y, m, d, h, mi))
2049/4/21 14:0
>>> print("{}".format(dec.dms_str(n_dec=0)))
-22d 8' 18.0''
>>> epoch = Epoch(-4, 3, 15.0)
>>> epo, dec = Moon.moon_maximum_declination(epoch, target='northern')
>>> y, m, d, h, mi, s = epo.get_full_date()
>>> print("{}/{}/{} {}h".format(y, m, d, h))
-4/3/16 15h
>>> print("{}".format(dec.dms_str(n_dec=0)))
28d 58' 26.0''
static moon_passage_nodes(epoch, target='ascending')[source]

This method computes the approximate times when the center of the Moon passes through the ascending or descending node of its orbit. The resulting times will be expressed in the uniform time scale of Dynamical Time (TT).

Parameters:
  • epoch – Approximate epoch we want to compute the Moon’s passage through the ascending or descending node.
  • target (str) – Either ‘ascending’ or ‘descending’. It is ‘ascending’ by default.
Returns:

The instant of time when the Moon passes thhrough the ascending or descending node.

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

Raises:

ValueError if ‘target’ value is invalid.

>>> epoch = Epoch(1987, 5, 15.0)
>>> passage = Moon.moon_passage_nodes(epoch, target="ascending")
>>> y, m, d, h, mi, s = passage.get_full_date()
>>> mi += s/60.0
>>> print("{}/{}/{} {}:{}".format(y, m, d, h, round(mi)))
1987/5/23 6:26
static moon_perigee_apogee(epoch, target='perigee')[source]

This method computes the approximate times when the distance between the Earth and the Moon is a minimum (perigee) or a maximum (apogee). The resulting times will be expressed in the uniform time scale of Dynamical Time (TT).

Parameters:
  • epoch – Approximate epoch we want to compute the Moon’s perigee or apogee for.
  • target (str) – Either ‘perigee’ or ‘apogee’. It’s ‘perigee’ by default.
Returns:

A tuple containing the instant of time when the perigee or apogee happens, as a Epoch object, and the Moon’s corresponding equatorial horizontal parallax, as a Angle object.

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

Raises:

ValueError if ‘target’ value is invalid.

>>> epoch = Epoch(1988, 10, 1.0)
>>> apogee, parallax = Moon.moon_perigee_apogee(epoch, target="apogee")
>>> y, m, d, h, mi, s = apogee.get_full_date()
>>> print("{}/{}/{} {}:{}".format(y, m, d, h, mi))
1988/10/7 20:30
>>> print("{}".format(parallax.dms_str(n_dec=3)))
54' 0.679''
static moon_phase(epoch, target='new')[source]

This method computes the time of the phase of the moon closest to the provided epoch. The resulting time is expressed in the uniform time scale of Dynamical Time (TT).

Parameters:
  • epoch – Approximate epoch we want to compute the Moon phase for.
  • target (str) – Corresponding phase. It can be “new” (New Moon), “first” (First Quarter), “full” (Full Moon) and “last” (Last Quarter). It is ‘new’ by default.
Returns:

The instant of time when the provided phase happens.

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

Raises:

ValueError if ‘target’ value is invalid.

>>> epoch = Epoch(1977, 2, 15.0)
>>> new_moon = Moon.moon_phase(epoch, target="new")
>>> y, m, d, h, mi, s = new_moon.get_full_date()
>>> print("{}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s, 0)))
1977/2/18 3:37:42.0
>>> epoch = Epoch(2044, 1, 1.0)
>>> new_moon = Moon.moon_phase(epoch, target="last")
>>> y, m, d, h, mi, s = new_moon.get_full_date()
>>> print("{}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s)))
2044/1/21 23:48:17
static moon_position_angle_axis(epoch)[source]

This method computes the position angle of the Moon’s axis of rotation. The effect of the physical libration is taken into account.

Parameters:epoch – Epoch we want to compute the position angle of the Moon’s axis of rotation.
Returns:The position angle of the Moon’s axis of rotation, as a Angle object.
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 4, 12.0)
>>> p = Moon.moon_position_angle_axis(epoch)
>>> print(round(p, 2))
15.08
static position_bright_limb(epoch)[source]

This method computes the position angle of the Moon’s bright limb, i.e., the position angle of the midpoint of the illuminated limb, reckoned eastward from the North Point of the disk (not from the axis of rotation of the lunar globe).

Parameters:epoch (Epoch) – Instant to compute the position angle of the Moon’s bright limb, as a py:class:Epoch object.
Returns:The position angle of the Moon’s bright limb.
Return type:Angle
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 4, 12.0)
>>> xi = Moon.position_bright_limb(epoch)
>>> print(round(xi, 1))
285.0
pymeeus.Moon.PERIODIC_TERMS_B_TABLE = [[0, 0, 0, 1, 5128122.0], [0, 0, 1, 1, 280602.0], [0, 0, 1, -1, 277693.0], [2, 0, 0, -1, 173237.0], [2, 0, -1, 1, 55413.0], [2, 0, -1, -1, 46271.0], [2, 0, 0, 1, 32573.0], [0, 0, 2, 1, 17198.0], [2, 0, 1, -1, 9266.0], [0, 0, 2, -1, 8822.0], [2, -1, 0, -1, 8216.0], [2, 0, -2, -1, 4324.0], [2, 0, 1, 1, 4200.0], [2, 1, 0, -1, -3359.0], [2, -1, -1, 1, 2463.0], [2, -1, 0, 1, 2211.0], [2, -1, -1, -1, 2065.0], [0, 1, -1, -1, -1870.0], [4, 0, -1, -1, 1828.0], [0, 1, 0, 1, -1794.0], [0, 0, 0, 3, -1749.0], [0, 1, -1, 1, -1565.0], [1, 0, 0, 1, -1491.0], [0, 1, 1, 1, -1475.0], [0, 1, 1, -1, -1410.0], [0, 1, 0, -1, -1344.0], [1, 0, 0, -1, -1335.0], [0, 0, 3, 1, 1107.0], [4, 0, 0, -1, 1021.0], [4, 0, -1, 1, 833.0], [0, 0, 1, -3, 777.0], [4, 0, -2, 1, 671.0], [2, 0, 0, -3, 607.0], [2, 0, 2, -1, 596.0], [2, -1, 1, -1, 491.0], [2, 0, -2, 1, -451.0], [0, 0, 3, -1, 439.0], [2, 0, 2, 1, 422.0], [2, 0, -3, -1, 421.0], [2, 1, -1, 1, -366.0], [2, 1, 0, 1, -351.0], [4, 0, 0, 1, 331.0], [2, -1, 1, 1, 315.0], [2, -2, 0, -1, 302.0], [0, 0, 1, 3, -283.0], [2, 1, 1, -1, -229.0], [1, 1, 0, -1, 223.0], [1, 1, 0, 1, 223.0], [0, 1, -2, -1, -220.0], [2, 1, -1, -1, -220.0], [1, 0, 1, 1, -185.0], [2, -1, -2, -1, 181.0], [0, 1, 2, 1, -177.0], [4, 0, -2, -1, 176.0], [4, -1, -1, -1, 166.0], [1, 0, 1, -1, -164.0], [4, 0, 1, -1, 132.0], [1, 0, -1, -1, -119.0], [4, -1, 0, -1, 115.0], [2, -2, 0, 1, 107.0]]

This table contains the periodic terms for the latitude of the Moon Sigmab. Units are 0.000001 degree. In Meeus’ book this is Table 47.B and can be found in page 341.

pymeeus.Moon.PERIODIC_TERMS_LR_TABLE = [[0, 0, 1, 0, 6288774.0, -20905355.0], [2, 0, -1, 0, 1274027.0, -3699111.0], [2, 0, 0, 0, 658314.0, -2955968.0], [0, 0, 2, 0, 213618.0, -569925.0], [0, 1, 0, 0, -185116.0, 48888.0], [0, 0, 0, 2, -114332.0, -3149.0], [2, 0, -2, 0, 58793.0, 246158.0], [2, -1, -1, 0, 57066.0, -152138.0], [2, 0, 1, 0, 53322.0, -170733.0], [2, -1, 0, 0, 45758.0, -204586.0], [0, 1, -1, 0, -40923.0, -129620.0], [1, 0, 0, 0, -34720.0, 108743.0], [0, 1, 1, 0, -30383.0, 104755.0], [2, 0, 0, -2, 15327.0, 10321.0], [0, 0, 1, 2, -12528.0, 0.0], [0, 0, 1, -2, 10980.0, 79661.0], [4, 0, -1, 0, 10675.0, -34782.0], [0, 0, 3, 0, 10034.0, -23210.0], [4, 0, -2, 0, 8548.0, -21636.0], [2, 1, -1, 0, -7888.0, 24208.0], [2, 1, 0, 0, -6766.0, 30824.0], [1, 0, -1, 0, -5163.0, -8379.0], [1, 1, 0, 0, 4987.0, -16675.0], [2, -1, 1, 0, 4036.0, -12831.0], [2, 0, 2, 0, 3994.0, -10445.0], [4, 0, 0, 0, 3861.0, -11650.0], [2, 0, -3, 0, 3665.0, 14403.0], [0, 1, -2, 0, -2689.0, -7003.0], [2, 0, -1, 2, -2602.0, 0.0], [2, -1, -2, 0, 2390.0, 10056.0], [1, 0, 1, 0, -2348.0, 6322.0], [2, -2, 0, 0, 2236.0, -9884.0], [0, 1, 2, 0, -2120.0, 5751.0], [0, 2, 0, 0, -2069.0, 0.0], [2, -2, -1, 0, 2048.0, -4950.0], [2, 0, 1, -2, -1773.0, 4130.0], [2, 0, 0, 2, -1595.0, 0.0], [4, -1, -1, 0, 1215.0, -3958.0], [0, 0, 2, 2, -1110.0, 0.0], [3, 0, -1, 0, -892.0, 3258.0], [2, 1, 1, 0, -810.0, 2616.0], [4, -1, -2, 0, 759.0, -1897.0], [0, 2, -1, 0, -713.0, -2117.0], [2, 2, -1, 0, -700.0, 2354.0], [2, 1, -2, 0, 691.0, 0.0], [2, -1, 0, -2, 596.0, 0.0], [4, 0, 1, 0, 549.0, -1423.0], [0, 0, 4, 0, 537.0, -1117.0], [4, -1, 0, 0, 520.0, -1571.0], [1, 0, -2, 0, -487.0, -1739.0], [2, 1, 0, -2, -399.0, 0.0], [0, 0, 2, -2, -381.0, -4421.0], [1, 1, 1, 0, 351.0, 0.0], [3, 0, -2, 0, -340.0, 0.0], [4, 0, -3, 0, 330.0, 0.0], [2, -1, 2, 0, 327.0, 0.0], [0, 2, 1, 0, -323.0, 1165.0], [1, 1, -1, 0, 299.0, 0.0], [2, 0, 3, 0, 294.0, 0.0], [2, 0, -1, -2, 0.0, 8752.0]]

This table contains the periodic terms for the longitude (Sigmal) and distance (Sigmar) of the Moon. Units are 0.000001 degree for Sigmal, and 0.001 kilometer for Sigmar. In Meeus’ book this is Table 47.A and can be found in pages 339-340.

Neptune

Class to model Neptune planet.

class pymeeus.Neptune.Neptune[source]

Class Neptune models that planet.

__weakref__

list of weak references to the object (if defined)

static apparent_heliocentric_position(epoch)[source]

This method computes the apparent heliocentric position of planet Neptune for a given epoch, using the VSOP87 theory.

Parameters:epoch (Epoch) – Epoch to compute Neptune position, as an Epoch object
Returns:A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order
Return type:tuple
Raises:TypeError if input values are of wrong type.
static conjunction(epoch)[source]

This method computes the time of the conjunction closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired conjunction
Returns:The time when the conjunction happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 10, 1.0)
>>> conj = Neptune.conjunction(epoch)
>>> y, m, d = conj.get_date()
>>> print(y)
1994
>>> print(m)
1
>>> print(round(d, 4))
11.3057
static geocentric_position(epoch)[source]

This method computes the geocentric position of Neptune (right ascension and declination) for the given epoch, as well as the elongation angle.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing the right ascension, the declination and the elongation angle as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 12, 20.0)
>>> ra, dec, elon = Neptune.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
19h 17' 14.5''
>>> print(dec.dms_str(n_dec=1))
-21d 34' 15.1''
>>> print(elon.dms_str(n_dec=1))
19d 44' 59.6''
static geometric_heliocentric_position(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of planet Neptune for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Neptune position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2018, 10, 27.0)
>>> l, b, r = Neptune.geometric_heliocentric_position(epoch)
>>> print(round(l.to_positive(), 4))
345.3776
>>> print(round(b, 4))
-0.9735
>>> print(round(r, 5))
29.93966
static magnitude(sun_dist, earth_dist)[source]

This function computes the approximate magnitude of Neptune.

Parameters:
  • sun_dist (float) – Distance from Neptune to Sun, in Astronomical Units
  • earth_dist (float) – Distance Neptune to Earth, in Astronomical Units
Returns:

Neptune’s magnitude

Return type:

float

Raises:

TypeError if input values are of wrong type.

static opposition(epoch)[source]

This method computes the time of the opposition closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:The time when the opposition happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1846, 8, 1)
>>> oppo = Neptune.opposition(epoch)
>>> y, m, d = oppo.get_date()
>>> print(y)
1846
>>> print(m)
8
>>> print(round(d, 4))
20.1623
static orbital_elements_j2000(epoch)[source]

This method computes the orbital elements of Neptune for the standard equinox J2000.0 for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Neptune.orbital_elements_j2000(epoch)
>>> print(round(l, 6))
87.407029
>>> print(round(a, 8))
30.11038676
>>> print(round(e, 7))
0.0094597
>>> print(round(i, 6))
1.770101
>>> print(round(ome, 5))
131.74402
>>> print(round(arg, 6))
-83.6046
static orbital_elements_mean_equinox(epoch)[source]

This method computes the orbital elements of Neptune for the mean equinox of the date for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Neptune.orbital_elements_mean_equinox(epoch)
>>> print(round(l, 6))
88.321947
>>> print(round(a, 8))
30.11038676
>>> print(round(e, 7))
0.0094597
>>> print(round(i, 6))
1.763855
>>> print(round(ome, 5))
132.46986
>>> print(round(arg, 6))
-83.415521
pymeeus.Neptune.ORBITAL_ELEM = [[304.348665, 219.8833092, 0.00030882, 1.8e-08], [30.110386869, -1.663e-07, 6.9e-10, 0.0], [0.00945575, 6.033e-06, 0.0, -5e-11], [1.769953, -0.0093082, -7.08e-06, 2.7e-08], [131.748057, 1.1022039, 0.00025952, -6.37e-07], [48.120276, 1.4262957, 0.00038434, 2e-08]]

This table contains the parameters to compute Neptune’s orbital elements for the mean equinox of date. Based in Table 31.A, page 213

pymeeus.Neptune.ORBITAL_ELEM_J2000 = [[304.348665, 218.4862002, 5.9e-07, -2e-09], [1.769953, 0.0002256, 2.3e-07, 0.0], [131.748057, -0.0061651, -2.19e-06, -7.8e-08], [48.120276, 0.0291866, 7.61e-05, 0.0]]

This table contains the parameters to compute Neptune’s orbital elements for the standard equinox J2000.0. Based on Table 31.B, page 215

pymeeus.Neptune.VSOP87_B = [[[3088622.933, 1.44104372626, 38.1330356378], [27780.087, 5.91271882843, 76.2660712756], [27623.609, 0.0, 0.0], [15355.49, 2.52123799481, 36.6485629295], [15448.133, 3.50877080888, 39.6175083461], [1999.919, 1.50998669505, 74.7815985673], [1967.54, 4.37778195768, 1.4844727083], [1015.137, 3.21561035875, 35.1640902212], [605.767, 2.80246601405, 73.297125859], [594.878, 2.12892708114, 41.1019810544], [588.805, 3.18655882497, 2.9689454166], [401.83, 4.16883287237, 114.3991069134], [254.333, 3.27120499438, 453.424893819], [261.647, 3.76722704749, 213.299095438], [279.964, 1.68165309699, 77.7505439839], [205.59, 4.25652348864, 529.6909650946], [140.455, 3.52969556376, 137.0330241624], [98.53, 4.16774829927, 33.6796175129], [51.257, 1.95121181203, 4.4534181249], [67.971, 4.66970781659, 71.8126531507], [41.931, 5.41783694467, 111.4301614968], [41.822, 5.94832001477, 112.9146342051], [30.637, 0.93620571932, 42.5864537627], [11.084, 5.88898793049, 108.4612160802], [9.62, 0.03944255108, 70.3281804424], [9.664, 0.22455797403, 79.2350166922], [9.728, 5.30069593532, 32.1951448046], [7.386, 3.00684933642, 426.598190876], [7.087, 0.12535040656, 109.9456887885], [6.021, 6.20514068152, 115.8835796217], [6.169, 3.62098109648, 983.1158589136], [4.777, 0.75210194972, 5.9378908332], [6.391, 5.8464610106, 148.0787244263], [6.251, 2.41678769385, 152.5321425512], [4.539, 5.581820987, 175.1660598002], [5.006, 4.60815664851, 1059.3819301892], [4.289, 4.19647392821, 47.6942631934], [5.795, 5.07516716087, 415.2918581812], [4.749, 2.51605725604, 37.611770776], [4.119, 1.72779509865, 28.5718080822], [4.076, 6.00252170354, 145.1097790097], [4.429, 5.65995321659, 98.8999885246], [3.95, 2.74104636753, 350.3321196004], [4.091, 1.61787956945, 39.0962434843], [4.131, 4.40682554313, 37.1698277913], [4.71, 3.50929350767, 38.6543004996], [4.44, 4.78977105547, 38.084851528], [4.433, 1.23386935925, 38.1812197476], [3.762, 4.83940791709, 491.5579294568], [2.606, 1.20956732792, 451.9404211107], [2.537, 2.18628045751, 454.9093665273], [2.328, 5.19779918719, 72.0732855816], [2.502, 0.8598790435, 106.9767433719], [2.342, 0.81387240947, 4.192785694], [1.981, 0.46617960831, 184.7272873558], [1.963, 6.01909114576, 44.070926471], [2.18, 0.70099749844, 206.1855484372], [1.811, 0.40456996647, 40.5807161926], [1.814, 3.64699555185, 220.4126424388], [1.705, 6.13551142362, 181.7583419392], [1.855, 5.61635630213, 35.685355083], [1.595, 2.97147156093, 37.8724032069], [1.785, 2.42154818096, 388.4651552382], [1.595, 3.05266110075, 38.3936680687], [1.437, 1.48678704605, 135.5485514541], [1.387, 2.46149266117, 138.5174968707], [1.366, 1.52026779665, 68.8437077341], [1.575, 3.58964541604, 38.0211610532], [1.297, 5.06156596196, 33.9402499438], [1.487, 0.20211121607, 30.0562807905], [1.504, 5.80298577327, 46.2097904851], [1.192, 0.87275514483, 42.3258213318], [1.569, 2.43405967107, 38.2449102224], [1.207, 1.84658687853, 251.4321310758], [1.015, 0.53439848924, 129.9194771616], [0.999, 2.47463873948, 312.1990839626], [0.99, 3.41514319052, 144.1465711632], [0.963, 4.31733242907, 151.0476698429], [1.02, 0.98226686775, 143.6253063014], [0.941, 1.02993053785, 221.3758502853], [0.938, 2.43648356625, 567.8240007324], [1.111, 0.65175024456, 146.594251718], [0.777, 0.00175975222, 218.4069048687], [0.895, 0.2512386962, 30.7106720963], [0.795, 5.80519741659, 149.5631971346], [0.737, 3.40060492866, 446.3113468182], [0.719, 1.43795191278, 8.0767548473], [0.72, 0.0065100755, 460.5384408198], [0.766, 4.03399506246, 522.5774180938], [0.666, 1.39457824982, 84.3428261229], [0.584, 1.01405548136, 536.8045120954], [0.596, 0.62390100715, 35.212274331], [0.598, 5.39946724188, 41.0537969446], [0.475, 5.80072248338, 7.4223635415], [0.51, 1.3447857974, 258.0244132148], [0.458, 5.25325523118, 80.7194894005], [0.421, 3.24496387889, 416.7763308895], [0.446, 1.19167306357, 180.2738692309], [0.471, 0.92632922375, 44.7253177768], [0.387, 1.68488418788, 183.2428146475], [0.375, 0.15223869165, 255.0554677982], [0.354, 4.21526988674, 0.9632078465], [0.379, 2.16947487177, 105.4922706636], [0.341, 4.7919405168, 110.2063212194], [0.427, 5.15774894584, 31.5407534988], [0.302, 3.4570630628, 100.3844612329], [0.298, 2.26790695187, 639.897286314], [0.279, 0.25689162963, 39.5056337615], [0.32, 3.58085653166, 45.2465826386], [0.269, 5.72024180826, 36.7604375141], [0.247, 0.61040148804, 186.2117600641], [0.245, 0.64173616273, 419.4846438752], [0.235, 0.73189197665, 10213.285546211], [0.232, 0.37399822852, 490.0734567485], [0.23, 5.76570492457, 12.5301729722], [0.24, 4.13447692727, 0.5212648618], [0.279, 1.62614865256, 294.6729761443], [0.238, 2.1852891655, 219.891377577], [0.262, 3.08384135298, 6.592282139], [0.217, 2.93214905312, 27.0873353739], [0.217, 4.69210602828, 406.1031376411], [0.219, 1.3521271256, 216.9224321604], [0.2, 2.35215465744, 605.9570363702], [0.232, 3.92583619589, 1512.8068240082], [0.223, 5.52392277606, 187.6962327724], [0.19, 0.29169556516, 291.7040307277], [0.236, 3.12464145036, 563.6312150384], [0.193, 0.53675942386, 60.7669528868], [0.215, 3.78391259001, 103.0927742186], [0.172, 5.63262770743, 7.1135470008], [0.164, 4.14700645532, 77.2292791221], [0.162, 0.72021213236, 11.0457002639], [0.16, 4.23490438166, 487.3651437628], [0.191, 0.37651439206, 31.019488637], [0.157, 1.02419759383, 6283.0758499914], [0.157, 4.42530429545, 6206.8097787158], [0.178, 6.24797160202, 316.3918696566], [0.161, 5.65988283675, 343.2185725996], [0.153, 5.58405022784, 252.0865223816], [0.189, 4.8079103997, 641.1211265914], [0.166, 5.50438043692, 662.531203563], [0.146, 5.08949604858, 286.596221297], [0.145, 2.13015521881, 2042.4977891028], [0.156, 2.19452173251, 274.0660483248], [0.148, 4.85696640135, 442.7517005706], [0.187, 4.96121139073, 1589.0728952838], [0.155, 2.28260574227, 142.1408335931], [0.134, 1.29277093566, 456.3938392356], [0.126, 5.59769497652, 179.3588454942], [0.146, 2.53359213478, 256.5399405065], [0.14, 1.57962199954, 75.7448064138], [0.123, 0.05442220184, 944.9828232758], [0.122, 1.90676379802, 418.2608035978], [0.154, 1.86865302773, 331.3215390738], [0.144, 5.52229258454, 14.0146456805], [0.138, 2.80728175526, 82.8583534146], [0.107, 0.66995358132, 190.665178189], [0.114, 1.4889498028, 253.5709950899], [0.11, 5.32587573069, 240.125798381], [0.105, 0.65548440578, 173.6815870919], [0.102, 2.58735617801, 450.4559484024], [0.098, 0.44044795266, 328.3525936572], [0.101, 4.71267656829, 117.36805233], [0.094, 0.54938580474, 293.188503436], [0.095, 2.17636214523, 101.8689339412], [0.093, 0.63687810471, 377.1588225434], [0.091, 5.84828809934, 10137.0194749354], [0.089, 1.02830167997, 1021.2488945514], [0.094, 1.79320597168, 493.0424021651], [0.08, 1.58140274465, 69.1525242748], [0.075, 0.23453373368, 63.7358983034], [0.071, 1.5196198969, 488.5889840402]], [[227279.214, 3.8079308987, 38.1330356378], [1803.12, 1.97576485377, 76.2660712756], [1385.733, 4.82555548018, 36.6485629295], [1433.3, 3.14159265359, 0.0], [1073.298, 6.08054240712, 39.6175083461], [147.903, 3.85766231348, 74.7815985673], [136.448, 0.47764957338, 1.4844727083], [70.285, 6.18782052139, 35.1640902212], [51.899, 5.05221791891, 73.297125859], [37.273, 4.89476629246, 41.1019810544], [42.568, 0.30721737205, 114.3991069134], [37.104, 5.75999349109, 2.9689454166], [26.399, 5.21566335936, 213.299095438], [16.949, 4.26463671859, 77.7505439839], [18.747, 0.90426522185, 453.424893819], [12.951, 6.17709713139, 529.6909650946], [10.502, 1.20336443465, 137.0330241624], [4.416, 1.25478204684, 111.4301614968], [4.383, 6.14147099615, 71.8126531507], [3.694, 0.94837702528, 33.6796175129], [2.957, 4.7753287121, 4.4534181249], [2.698, 1.92435531119, 112.9146342051], [1.989, 3.96637567224, 42.5864537627], [1.15, 4.30568700024, 37.611770776], [0.871, 4.81775882249, 152.5321425512], [0.944, 2.2177777205, 109.9456887885], [0.936, 1.1705498394, 148.0787244263], [0.925, 2.40329074, 206.1855484372], [0.69, 1.57381082857, 38.6543004996], [0.624, 2.79466003645, 79.2350166922], [0.726, 4.13829519132, 28.5718080822], [0.64, 2.46161252327, 115.8835796217], [0.531, 2.969915305, 98.8999885246], [0.537, 1.95986772922, 220.4126424388], [0.539, 2.06690307827, 40.5807161926], [0.716, 0.5578184701, 350.3321196004], [0.563, 1.84072805158, 983.1158589136], [0.533, 1.3478767794, 47.6942631934], [0.566, 1.80111775954, 175.1660598002], [0.449, 1.62191691011, 144.1465711632], [0.371, 2.74239666472, 415.2918581812], [0.381, 6.11910193382, 426.598190876], [0.366, 2.3975258536, 129.9194771616], [0.456, 3.19611413854, 108.4612160802], [0.327, 3.62341506247, 38.1812197476], [0.328, 0.89613145346, 38.084851528], [0.341, 3.8726546907, 35.685355083], [0.331, 4.48858774501, 460.5384408198], [0.414, 1.03543720726, 70.3281804424], [0.31, 0.51297445145, 37.1698277913], [0.287, 2.183516518, 491.5579294568], [0.274, 6.11504724934, 522.5774180938], [0.281, 3.81657117512, 5.9378908332], [0.298, 4.00532631258, 39.0962434843], [0.265, 5.26569823181, 446.3113468182], [0.319, 1.34097217817, 184.7272873558], [0.203, 6.02944475303, 149.5631971346], [0.205, 5.5393573202, 536.8045120954], [0.226, 6.17710997862, 454.9093665273], [0.186, 3.24302117645, 4.192785694], [0.179, 4.91458426239, 451.9404211107], [0.198, 2.3077585288, 146.594251718], [0.166, 1.16793600058, 72.0732855816], [0.147, 2.10574339673, 44.070926471], [0.123, 1.98250467171, 46.2097904851], [0.159, 3.46955908364, 145.1097790097], [0.116, 5.8897111359, 38.0211610532], [0.115, 4.73412534395, 38.2449102224], [0.125, 3.42713474801, 251.4321310758], [0.128, 1.51108932026, 221.3758502853], [0.127, 0.17176461812, 138.5174968707], [0.124, 5.85160407534, 1059.3819301892], [0.091, 2.38273591235, 30.0562807905], [0.118, 5.27114846878, 37.8724032069], [0.117, 5.35267669439, 38.3936680687], [0.099, 5.19920708255, 135.5485514541], [0.114, 4.37452353441, 388.4651552382], [0.093, 4.64183693718, 106.9767433719], [0.084, 1.35269684746, 33.9402499438], [0.111, 3.5622646377, 181.7583419392], [0.082, 3.18401661435, 42.3258213318], [0.084, 5.51669920239, 8.0767548473]], [[9690.766, 5.57123750291, 38.1330356378], [78.815, 3.62705474219, 76.2660712756], [71.523, 0.4547668858, 36.6485629295], [58.646, 3.14159265359, 0.0], [29.915, 1.60671721861, 39.6175083461], [6.472, 5.60736756575, 74.7815985673], [5.8, 2.25341847151, 1.4844727083], [4.309, 1.68126737666, 35.1640902212], [3.502, 2.39142672984, 114.3991069134], [2.649, 0.65061457644, 73.297125859], [1.518, 0.37600329684, 213.299095438], [1.223, 1.2311604303, 2.9689454166], [0.766, 5.45279753249, 453.424893819], [0.779, 2.07081431472, 529.6909650946], [0.496, 0.26552533921, 41.1019810544], [0.469, 5.87866293959, 77.7505439839], [0.482, 5.63056237954, 137.0330241624], [0.345, 1.80085651594, 71.8126531507], [0.274, 2.86650141006, 33.6796175129], [0.158, 4.63868656467, 206.1855484372], [0.166, 1.24877330835, 220.4126424388], [0.153, 2.87376446497, 111.4301614968], [0.116, 3.63838544843, 112.9146342051], [0.085, 0.43712705655, 4.4534181249], [0.104, 6.12597614674, 144.1465711632]], [[273.423, 1.01688979072, 38.1330356378], [2.274, 2.36805657126, 36.6485629295], [2.029, 5.33364321342, 76.2660712756], [2.393, 0.0, 0.0], [0.538, 3.21934211365, 39.6175083461], [0.242, 4.52650721578, 114.3991069134], [0.185, 1.04913770083, 74.7815985673], [0.155, 3.62376309338, 35.1640902212], [0.157, 3.9419536961, 1.4844727083]], [[5.728, 2.66872693322, 38.1330356378]], [[0.113, 4.70646877989, 38.1330356378]]]

This table contains Neptune’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric latitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in page 453.

pymeeus.Neptune.VSOP87_L = [[[531188633.047, 0.0, 0.0], [1798475.509, 2.9010127305, 38.1330356378], [1019727.662, 0.4858092366, 1.4844727083], [124531.845, 4.83008090682, 36.6485629295], [42064.45, 5.41054991607, 2.9689454166], [37714.589, 6.09221834946, 35.1640902212], [33784.734, 1.24488865578, 76.2660712756], [16482.741, 7.729261e-05, 491.5579294568], [9198.582, 4.93747059924, 39.6175083461], [8994.249, 0.27462142569, 175.1660598002], [4216.235, 1.98711914364, 73.297125859], [3364.818, 1.03590121818, 33.6796175129], [2284.8, 4.20606932559, 4.4534181249], [1433.512, 2.78340432711, 74.7815985673], [900.24, 2.07606702418, 109.9456887885], [744.996, 3.19032530145, 71.8126531507], [506.206, 5.74785370252, 114.3991069134], [399.552, 0.34972342569, 1021.2488945514], [345.195, 3.46186210169, 41.1019810544], [306.338, 0.49684039897, 0.5212648618], [287.322, 4.50523446022, 0.0481841098], [323.004, 2.24815188609, 32.1951448046], [340.323, 3.30369900416, 77.7505439839], [266.605, 4.88932609483, 0.9632078465], [227.079, 1.79713054538, 453.424893819], [244.722, 1.24693337933, 9.5612275556], [232.887, 2.50459795017, 137.0330241624], [282.17, 2.24565579693, 146.594251718], [251.941, 5.78166597292, 388.4651552382], [150.18, 2.99706110414, 5.9378908332], [170.404, 3.3239063065, 108.4612160802], [151.401, 2.1915309428, 33.9402499438], [148.295, 0.85948986145, 111.4301614968], [118.672, 3.67706204305, 2.4476805548], [101.821, 5.70539236951, 0.1118745846], [97.873, 2.80518260528, 8.0767548473], [103.054, 4.40441222, 70.3281804424], [103.305, 0.04078966679, 0.2606324309], [109.3, 2.41599378049, 183.2428146475], [73.938, 1.32805041516, 529.6909650946], [77.725, 4.16446516424, 4.192785694], [86.379, 4.22834506045, 490.0734567485], [81.536, 5.19908046216, 493.0424021651], [71.503, 5.29530386579, 350.3321196004], [64.418, 3.5454101605, 168.0525127994], [62.57, 0.15028731465, 182.279606801], [58.488, 3.50106873945, 145.1097790097], [48.276, 1.11259925628, 112.9146342051], [47.229, 4.57373229818, 46.2097904851], [39.124, 1.6656935605, 213.299095438], [47.728, 0.12906212461, 484.444382456], [46.858, 3.01699530327, 498.6714764576], [38.659, 2.38685706479, 2.9207613068], [47.046, 4.498446604, 173.6815870919], [47.565, 2.58404814824, 219.891377577], [44.714, 5.47302733614, 176.6505325085], [32.279, 3.4575915122, 30.7106720963], [28.249, 4.13282446716, 6.592282139], [24.433, 4.55736848232, 106.9767433719], [24.661, 3.67822620786, 181.7583419392], [24.505, 1.55095867965, 7.1135470008], [21.848, 1.04366818343, 39.0962434843], [16.936, 6.10896452834, 44.7253177768], [22.169, 2.74932970271, 256.5399405065], [16.614, 4.98188930613, 37.611770776], [17.728, 3.55049134167, 1.3725981237], [17.347, 2.1406923488, 42.5864537627], [14.953, 3.36405649131, 98.8999885246], [14.566, 0.69857991985, 1550.939859646], [15.676, 6.22010212025, 454.9093665273], [13.243, 5.61712542227, 68.8437077341], [14.837, 3.52557245517, 25.6028626656], [12.757, 0.04509743861, 11.0457002639], [11.988, 4.81687553351, 24.1183899573], [11.06, 1.78958277553, 7.4223635415], [12.108, 1.87022663714, 79.2350166922], [11.698, 0.49005698002, 1.5963472929], [10.459, 2.38743199893, 381.3516082374], [11.681, 3.85151357766, 218.4069048687], [8.744, 0.1416856861, 148.0787244263], [9.196, 1.00274090619, 72.0732855816], [11.343, 0.81432278263, 525.4981794006], [10.097, 5.03383557061, 601.7642506762], [8.035, 1.7768572301, 0.2124483211], [8.382, 3.07534786987, 1.2720243872], [10.803, 2.92081211459, 293.188503436], [7.666, 1.52223325105, 115.8835796217], [7.531, 5.37537256533, 5.1078094307], [8.691, 4.74352784364, 143.6253063014], [10.183, 1.15395455831, 6244.9428143536], [8.283, 0.35956716764, 138.5174968707], [9.544, 4.02452832984, 152.5321425512], [7.274, 4.10937535938, 251.4321310758], [7.465, 1.72131945843, 31.019488637], [6.902, 4.62452068308, 2.7083129857], [7.094, 5.11528393609, 312.1990839626], [7.929, 2.10765101655, 27.0873353739], [6.156, 3.50746507109, 28.5718080822], [7.134, 2.05292376023, 278.2588340188], [8.193, 2.58588219154, 141.2258098564], [5.499, 2.09250039025, 1.6969210294], [5.279, 4.09390686798, 983.1158589136], [6.947, 3.48041784595, 415.2918581812], [5.916, 0.68957324226, 62.2514255951], [5.925, 4.0250459262, 255.0554677982], [4.606, 1.17779101436, 43.2408450685], [5.357, 3.63061058987, 5.4166259714], [5.918, 2.57693824084, 10175.1525105732], [5.482, 3.0797973728, 329.8370663655], [3.956, 5.00418696742, 184.7272873558], [5.408, 3.31313295602, 528.2064923863], [4.767, 4.91981150665, 456.3938392356], [3.77, 1.57277409442, 32.7164096664], [3.924, 4.92763242635, 180.2738692309], [3.707, 4.82965453201, 221.3758502853], [3.802, 4.96279204998, 594.6507036754], [4.014, 1.6390516403, 40.5807161926], [3.061, 0.39713858313, 1.4362885985], [3.261, 4.65478978469, 29.226199388], [3.474, 5.65891305944, 395.578702239], [2.918, 5.91079083895, 1.2238402774], [3.649, 3.88114678609, 494.5268748734], [3.225, 5.57423738665, 1014.1353475506], [2.845, 0.56009386585, 144.1465711632], [2.848, 0.55423029727, 567.8240007324], [3.44, 1.70887250883, 12.5301729722], [3.267, 5.6328779982, 488.5889840402], [3.107, 5.79335949207, 105.4922706636], [2.712, 2.43726364359, 60.7669528868], [3.202, 2.21483496593, 41.0537969446], [3.134, 4.69665220513, 82.8583534146], [3.59, 5.69939670162, 1124.34166877], [2.967, 0.54448940101, 135.5485514541], [3.211, 4.19927605853, 291.7040307277], [2.899, 5.99669788291, 22.633917249], [3.143, 2.93495725805, 31.2319369581], [2.729, 4.62707721219, 5.6290742925], [2.513, 5.60391563025, 19.1224551112], [2.69, 5.32070128202, 2.0057375701], [2.63, 6.00855841124, 37.1698277913], [2.296, 6.06934502789, 451.9404211107], [2.858, 4.88677262419, 258.0244132148], [2.879, 5.12239168488, 38.6543004996], [2.27, 2.08634524182, 30.0562807905], [2.301, 3.35951602914, 1028.3624415522], [3.001, 3.59143817947, 211.8146227297], [2.237, 0.3845555347, 3.6233367224], [2.901, 3.24755614136, 366.485629295], [2.592, 1.36262641469, 35.4247226521], [2.418, 4.93467056526, 47.6942631934], [2.089, 5.79838063413, 4.665866446], [2.586, 2.69392971321, 38.1812197476], [1.913, 5.53560681085, 149.5631971346], [1.971, 6.00790964671, 34.2008823747], [2.586, 6.24984047544, 38.084851528], [2.098, 4.57819744766, 1019.7644218431], [1.869, 3.85907708723, 911.042573332], [2.486, 5.21235809332, 140.001969579], [1.795, 1.68012868451, 1059.3819301892], [2.326, 2.82664069146, 807.9497991134], [1.984, 5.54763522932, 1022.7333672597], [1.919, 5.10717766499, 216.9224321604], [2.004, 5.47811228948, 63.7358983034], [2.021, 4.15631916516, 178.1350052168], [1.76, 6.00927149342, 172.1971143836], [2.14, 2.65037925793, 700.6642392008], [1.988, 3.3585027278, 186.2117600641], [1.956, 5.01527508588, 294.6729761443], [1.966, 4.07957525462, 20.6069278195], [1.637, 0.53823942149, 67.3592350258], [1.54, 2.62327849119, 41.7563723602], [1.81, 5.81430038477, 129.9194771616], [1.776, 4.37047808449, 328.3525936572], [1.46, 2.63664516309, 2.857070832], [1.388, 2.10598045632, 3.9321532631], [1.352, 0.55618245459, 0.6543913058], [1.668, 2.77543377384, 16.1535096946], [1.338, 0.37643611305, 14.0146456805], [1.218, 0.7345643475, 426.598190876], [1.531, 4.54891769768, 526.722019678], [1.61, 3.40993944436, 403.1341922245], [1.361, 4.48227243414, 17.6379824029], [1.589, 5.59323020112, 3302.479391062], [1.132, 5.6452072536, 151.0476698429], [1.357, 4.0639903143, 26.826702943], [1.494, 4.98692049495, 666.723989257], [1.077, 4.3091147025, 0.6331394464], [1.042, 6.02756893581, 106.0135355254], [1.06, 0.74679491358, 487.3651437628], [1.31, 3.7852638093, 386.9806825299], [1.342, 4.52685061062, 563.6312150384], [0.986, 0.00600924269, 81.3738807063], [1.232, 5.17443930901, 331.3215390738], [0.929, 4.51267465978, 38.3936680687], [0.956, 3.5044779102, 64.9597385808], [0.929, 4.43109514438, 37.8724032069], [0.926, 6.09803297747, 4.1446015842], [0.972, 0.59038366513, 8.9068362498], [1.246, 4.69840351226, 389.9496279465], [1.009, 5.98451242784, 142.1408335931], [1.02, 0.832338923, 39.3568759152], [1.013, 0.37845630298, 36.9091953604], [0.94, 2.42688145966, 343.2185725996], [0.974, 5.23958752786, 253.5709950899], [0.964, 5.09748190218, 357.4456666012], [0.835, 1.4556862667, 35.212274331], [1.077, 0.71409061316, 44.070926471], [1.083, 2.27578897621, 6.9010986797], [0.938, 5.03471583911, 69.3649725959], [1.078, 1.20253141912, 35.685355083], [1.027, 0.18243183397, 84.3428261229], [0.764, 4.62720907712, 0.8300814025], [1.013, 0.42234855022, 32.4557772355], [0.939, 4.50445799766, 365.0011565867], [0.756, 0.82872484717, 17.5261078183], [0.916, 3.89409205418, 38.2449102224], [0.736, 4.78125743795, 5.3684418616], [0.762, 0.0189733713, 189.3931538018], [0.738, 2.31770478416, 42.3258213318], [0.86, 4.82440483506, 210.3301500214], [0.888, 3.20360339895, 348.8476468921], [0.916, 5.04967792934, 38.0211610532], [0.638, 0.63267396269, 244.318584075], [0.636, 1.02615137352, 2080.6308247406], [0.774, 5.44432678139, 367.9701020033], [0.644, 1.94044989547, 446.3113468182], [0.631, 4.82928491724, 460.5384408198], [0.855, 3.57592750113, 439.782755154], [0.678, 4.48687912809, 351.8165923087], [0.724, 4.8914160928, 119.5069163441], [0.594, 0.59315717529, 491.036664595], [0.655, 1.99014093, 19.0105805266], [0.58, 2.57189536188, 492.0791943186], [0.694, 0.08328521209, 5.6772584023], [0.733, 5.81485239057, 29.7474642498], [0.666, 3.42196897591, 179.0982130633], [0.678, 0.29428615814, 171.2339065371], [0.635, 2.13805182663, 164.1203595363], [0.623, 5.6145494038, 285.3723810196], [0.529, 1.88063108785, 416.7763308895], [0.529, 5.1325078803, 697.743477894], [0.5, 1.49548514415, 704.8570248948], [0.487, 4.97772067947, 274.0660483248], [0.666, 6.26456825266, 1474.6737883704], [0.532, 0.25784352716, 477.3308354552], [0.557, 0.71378452161, 80.7194894005], [0.556, 2.60791360513, 418.2608035978], [0.584, 4.29064541383, 16.6747745564], [0.524, 5.4275939228, 290.2195580194], [0.524, 0.29054995359, 247.2393453818], [0.541, 4.36400580938, 815.0633461142], [0.526, 1.66512720297, 97.4155158163], [0.497, 4.72640318293, 401.6497195162], [0.432, 2.98481475894, 100.3844612329], [0.382, 0.28067758468, 8.385571388], [0.424, 6.16774845481, 178.7893965226], [0.484, 0.01535318279, 738.7972748386], [0.518, 4.4891659141, 875.830299001], [0.506, 5.38611121207, 404.6186649328], [0.396, 4.62747640832, 6.1503391543], [0.466, 0.23340415764, 120.9913890524], [0.409, 3.08849480895, 59.2824801785], [0.47, 5.01853200224, 313.6835566709], [0.442, 3.68919475089, 457.8783119439], [0.384, 3.69499925394, 160.9389657986], [0.364, 0.76192181046, 104.0077979553], [0.416, 0.26652109651, 103.0927742186], [0.401, 4.06530055968, 14.6690369863], [0.454, 3.72767803715, 476.4313180835], [0.434, 0.335338022, 984.6003316219], [0.34, 0.99915726716, 31.5407534988], [0.42, 3.65147769268, 20.4950532349], [0.334, 0.35121412008, 1227.4344429886], [0.323, 5.45836731979, 918.1561203328], [0.407, 4.19457842203, 309.7995875176], [0.381, 0.0136485696, 495.4900827199], [0.334, 4.05924071124, 8.3373872782], [0.38, 3.17063415023, 487.6257761937], [0.309, 0.48352303405, 118.0224436358], [0.38, 2.70238752925, 134.1122628556], [0.362, 4.8898581061, 438.2982824457], [0.327, 2.91090790412, 505.7850234584], [0.308, 0.96082817124, 21.1494445407], [0.288, 1.48123872077, 220.4126424388], [0.293, 2.56582281789, 662.531203563], [0.331, 4.37715965811, 180.7951340927], [0.326, 2.46104924164, 169.5369855077], [0.289, 2.63591886391, 55.7710180407], [0.288, 5.02487283285, 1440.7335384266], [0.344, 1.4893099727, 166.5680400911], [0.266, 0.63672427386, 79.1868325824], [0.268, 5.02354540478, 377.4194549743], [0.308, 1.50185265748, 77.2292791221], [0.324, 5.30240189273, 457.617679513], [0.265, 1.087366328, 450.4559484024], [0.264, 0.83337660655, 488.3765357191], [0.29, 1.80003152563, 101.8689339412], [0.262, 2.3039000336, 494.7393231945], [0.325, 5.52669889053, 441.2672278623], [0.254, 0.02963623277, 117.36805233], [0.3, 0.1743570554, 252.9166037841], [0.315, 5.3488501304, 183.7640795093], [0.313, 5.45945846595, 13.4933808187], [0.306, 5.23085809622, 45.2465826386], [0.237, 0.32676889138, 208.8456773131], [0.263, 2.66670785888, 464.7312265138], [0.234, 1.82700149824, 52175.8062831484], [0.275, 5.04385701142, 156.1554792736], [0.265, 5.64967127743, 326.8681209489], [0.247, 1.74540930625, 65.8747623175], [0.269, 6.09827783249, 1654.0326338646], [0.229, 2.25832077914, 190.665178189], [0.294, 5.45249564193, 206.1855484372], [0.238, 1.55647021369, 79.889407998], [0.23, 6.13158632762, 178.3474535379], [0.274, 4.10829870815, 518.3846323998], [0.225, 3.86300359251, 171.9846660625], [0.228, 2.48511565618, 12566.1516999828], [0.272, 5.61149862463, 148.3393568572], [0.214, 1.45987216039, 522.5774180938], [0.211, 4.04791980901, 6205.3253060075], [0.266, 0.99036038827, 209.106309744], [0.23, 0.5404995153, 532.6117264014], [0.226, 3.8415296162, 283.6272758804], [0.243, 5.32730346969, 485.9288551643], [0.209, 4.35051470487, 536.8045120954], [0.232, 3.01948719112, 10.9338256793], [0.264, 5.70536379124, 490.3340891794], [0.28, 3.99993658196, 674.8007441043], [0.246, 0.37698964335, 157.6399519819], [0.219, 5.67679857772, 52099.5402118728], [0.251, 1.52353965506, 6.8529145699], [0.203, 5.44328656642, 145.6310438715], [0.238, 0.96169723853, 497.1870037493], [0.219, 4.52300776062, 1615.8995982268], [0.275, 2.37619210741, 2118.7638603784], [0.258, 5.1244814878, 608.877797677], [0.26, 3.88543008475, 513.079881013], [0.191, 3.72574595369, 65.2203710117], [0.211, 0.06484535455, 215.4379594521], [0.236, 3.95835282821, 141.4864422873], [0.189, 5.28135043909, 377.1588225434], [0.243, 4.35559878377, 482.9599097477], [0.243, 6.06808644973, 154.0166152595], [0.249, 1.57215637373, 14.2270940016], [0.238, 1.93340192445, 500.1559491659], [0.209, 5.02893682321, 364.559213602], [0.227, 5.7298429854, 1543.8263126452], [0.217, 2.45036922991, 187.1749679106], [0.181, 1.65699502247, 1627.2059309216], [0.214, 1.60213179145, 11.3063326948], [0.203, 0.74638490279, 14.5571624017], [0.192, 3.17719161639, 343.4792050305], [0.177, 1.50027795761, 9.449352971], [0.177, 0.03038098292, 165.6048322446], [0.176, 4.64462444674, 315.1680293792], [0.208, 2.65835778368, 496.0113475817], [0.174, 2.76155855705, 49.1787359017], [0.196, 1.95549714182, 335.7749571987], [0.2, 4.16839394758, 285.1117485887], [0.199, 0.06168021293, 73.5577582899], [0.188, 6.17288913873, 535.3200393871], [0.215, 1.92414563346, 552.6973893591], [0.166, 5.4903813969, 10135.5350022271], [0.192, 0.9697343412, 304.2342036999], [0.209, 5.34065233845, 13.642138665], [0.203, 5.11234865419, 324.7292569348], [0.177, 3.5068084179, 207.3612046048], [0.174, 1.95010708561, 319.3126309634], [0.187, 5.57685931698, 266.1011680621], [0.181, 1.43525075751, 279.7433067271], [0.165, 4.00537112057, 493.5636670269], [0.191, 1.68313683465, 563.3705826075], [0.173, 3.93200456456, 238.9019581036], [0.161, 5.96143146317, 36.1272980677], [0.194, 2.3766423145, 944.9828232758], [0.165, 0.97421918976, 556.5176680376], [0.189, 1.11279570541, 1127.2624300768], [0.172, 0.75085513952, 267.5856407704], [0.193, 2.12636756833, 20350.3050211464], [0.181, 2.1081456208, 113.8778420516], [0.194, 1.13504964219, 57.255490749], [0.181, 6.23699820519, 355.9611938929], [0.198, 5.68125942959, 6280.1069045748], [0.173, 5.15083799917, 474.9468453752], [0.151, 1.66981962338, 116.5379709275], [0.15, 5.42593657173, 526.9826521089], [0.205, 4.16096717573, 711.4493070338], [0.177, 3.49360697678, 421.2297490144], [0.168, 0.52839230204, 487.1045113319], [0.16, 4.77712663799, 524.0137066923], [0.145, 2.81448128781, 1512.8068240082], [0.146, 4.9957011266, 142.6620984549], [0.188, 0.8210416155, 10210.3166007944], [0.145, 4.96888131586, 1189.3014073508], [0.181, 2.9970479059, 75.7448064138], [0.176, 0.41626373842, 222.8603229936], [0.137, 2.96534226337, 6206.8097787158], [0.138, 1.22260849471, 187.6962327724], [0.128, 2.53394068407, 276.7743613105], [0.13, 3.04810765699, 310.7146112543], [0.122, 3.01323006886, 70.8494453042], [0.111, 0.77449448649, 179.3588454942], [0.141, 0.18423889807, 131.4039498699], [0.126, 5.77648809669, 525.2375469697], [0.124, 2.93225731024, 179.6194779251], [0.111, 6.18471578216, 981.6313862053], [0.141, 2.63342951123, 381.6122406683], [0.11, 5.25053027081, 986.0848043302], [0.096, 3.86591534559, 240.125798381], [0.12, 3.78755085035, 1057.8974574809], [0.093, 4.54014016637, 36.6967470393], [0.109, 1.533275859, 419.7452763061], [0.094, 4.21870300178, 1024.217839968], [0.109, 2.15905156247, 289.5651667136], [0.104, 0.20665642552, 564.8550553158], [0.081, 1.89134135215, 36.6003788197], [0.08, 4.38832594589, 10137.0194749354], [0.08, 1.73940577376, 39.5056337615], [0.084, 0.81316746605, 170.7126416753], [0.09, 0.60145818457, 36.7604375141], [0.074, 4.92511651321, 1549.4553869377], [0.072, 5.06852406179, 249.9476583675]], [[3837687716.731, 0.0, 0.0], [16604.187, 4.86319129565, 1.4844727083], [15807.148, 2.27923488532, 38.1330356378], [3334.701, 3.6819967602, 76.2660712756], [1305.84, 3.67320813491, 2.9689454166], [604.832, 1.50477747549, 35.1640902212], [178.623, 3.45318524147, 39.6175083461], [106.537, 2.45126138334, 4.4534181249], [105.747, 2.7547932655, 33.6796175129], [72.684, 5.48724732699, 36.6485629295], [57.069, 5.2164980497, 0.5212648618], [57.355, 1.85767603384, 114.3991069134], [35.368, 4.51676827545, 74.7815985673], [32.216, 5.9041148968, 77.7505439839], [29.871, 3.67043294114, 388.4651552382], [28.866, 5.16877529164, 9.5612275556], [28.742, 5.16732589024, 2.4476805548], [25.507, 5.24526281928, 168.0525127994], [24.869, 4.7319306781, 182.279606801], [20.205, 5.78945415677, 1021.2488945514], [19.022, 1.82981144269, 484.444382456], [18.661, 1.31606255521, 498.6714764576], [15.063, 4.9500389376, 137.0330241624], [15.094, 3.9870525494, 32.1951448046], [10.72, 2.44148149225, 4.192785694], [11.725, 4.89255650674, 71.8126531507], [9.581, 1.23188039594, 5.9378908332], [9.606, 1.88534821556, 41.1019810544], [8.968, 0.01758559103, 8.0767548473], [9.882, 6.08165628679, 7.1135470008], [7.632, 5.51307048241, 73.297125859], [6.992, 0.61688864282, 2.9207613068], [5.543, 2.24141557794, 46.2097904851], [4.845, 3.7105582375, 112.9146342051], [3.7, 5.25713252333, 111.4301614968], [3.233, 6.10303038418, 70.3281804424], [2.939, 4.86520586648, 98.8999885246], [2.403, 2.90637675099, 601.7642506762], [2.398, 1.04343654629, 6.592282139], [2.784, 4.95821114677, 108.4612160802], [2.894, 4.20148844767, 381.3516082374], [2.111, 5.93089610785, 25.6028626656], [2.075, 5.20632201951, 30.7106720963], [2.126, 0.54976393136, 41.0537969446], [2.235, 2.38045158073, 453.424893819], [1.859, 0.89409373259, 24.1183899573], [2.018, 3.42245274178, 31.019488637], [1.7, 3.91715254287, 11.0457002639], [1.776, 3.86571077241, 395.578702239], [1.644, 0.15855999051, 152.5321425512], [1.646, 3.34591387314, 44.7253177768], [1.876, 2.59784179105, 33.9402499438], [1.614, 0.42137145545, 175.1660598002], [1.468, 6.12983933526, 1550.939859646], [1.408, 6.13722948564, 490.0734567485], [1.207, 0.59525736062, 312.1990839626], [1.336, 3.28611928206, 493.0424021651], [1.176, 5.87266726996, 5.4166259714], [1.517, 3.12967210501, 491.5579294568], [1.053, 4.6037551683, 79.2350166922], [1.037, 4.89007314395, 1.2720243872], [1.034, 5.93741289103, 32.7164096664], [1.038, 1.13470380744, 1014.1353475506], [1.002, 1.85850922283, 5.1078094307], [0.983, 0.05345050384, 7.4223635415], [0.998, 1.73689827444, 1028.3624415522], [1.193, 4.63176675581, 60.7669528868], [0.94, 3.09103721222, 62.2514255951], [0.994, 4.11489180313, 4.665866446], [0.89, 0.87049255398, 31.2319369581], [0.852, 5.35508394316, 144.1465711632], [0.922, 5.12373360511, 145.1097790097], [0.789, 0.37496785039, 26.826702943], [0.828, 4.060351946, 115.8835796217], [0.711, 3.14189997439, 278.2588340188], [0.727, 1.39718382835, 213.299095438], [0.781, 0.10946327923, 173.6815870919], [0.793, 6.13086312116, 567.8240007324], [0.669, 4.50554989443, 27.0873353739], [0.825, 1.35568908148, 129.9194771616], [0.738, 3.5676601896, 176.6505325085], [0.714, 6.24797992301, 106.9767433719], [0.654, 1.13177751192, 68.8437077341], [0.624, 0.01567750666, 28.5718080822], [0.608, 4.60180625368, 189.3931538018], [0.595, 0.00857468445, 42.5864537627], [0.53, 5.61201247153, 12.5301729722], [0.521, 1.02371768017, 415.2918581812], [0.639, 0.68930265745, 529.6909650946], [0.526, 3.02138731705, 5.6290742925], [0.456, 4.44331571392, 43.2408450685], [0.524, 3.43316448349, 38.6543004996], [0.436, 2.41630174435, 82.8583534146], [0.424, 1.95736011325, 477.3308354552], [0.443, 3.39350946329, 357.4456666012], [0.383, 1.90232196422, 22.633917249], [0.479, 5.55141744216, 37.611770776], [0.462, 3.80436154644, 343.2185725996], [0.384, 5.60377408953, 594.6507036754], [0.369, 4.45577410338, 6.9010986797], [0.358, 3.69126616347, 3.9321532631], [0.352, 3.10952926034, 135.5485514541], [0.368, 3.53577440355, 40.5807161926], [0.424, 5.27159202779, 181.7583419392], [0.361, 0.29018303419, 72.0732855816], [0.39, 5.49512204296, 350.3321196004], [0.378, 2.74122401337, 488.3765357191], [0.372, 0.39980033572, 494.7393231945], [0.353, 1.10614174053, 20.6069278195], [0.296, 0.86351261285, 149.5631971346], [0.307, 5.39420288683, 160.9389657986], [0.395, 1.93577214824, 10137.0194749354], [0.288, 2.28755739359, 47.6942631934], [0.295, 2.4873753724, 19.1224551112], [0.29, 0.18636083306, 143.6253063014], [0.266, 3.09977370364, 69.3649725959], [0.266, 1.21002824826, 505.7850234584], [0.252, 3.12745026026, 460.5384408198], [0.328, 0.50849285663, 6206.8097787158], [0.257, 3.64119914774, 446.3113468182], [0.239, 5.54080102299, 911.042573332], [0.265, 0.62702473701, 253.5709950899], [0.287, 2.44403568436, 16.6747745564], [0.231, 2.47026250085, 454.9093665273], [0.23, 3.24571542922, 1066.49547719], [0.282, 1.48595620175, 983.1158589136], [0.212, 5.41931177641, 64.9597385808], [0.213, 1.64175339637, 1089.129394439], [0.238, 2.69801319489, 882.9438460018], [0.21, 4.53976756699, 1093.322180133], [0.22, 2.30038816175, 1052.2683831884], [0.256, 0.4207359846, 23.9059416362], [0.216, 5.4422591887, 39.0962434843], [0.201, 2.58746514605, 119.5069163441], [0.224, 4.43751392203, 639.897286314], [0.186, 2.50651218075, 487.3651437628], [0.189, 4.05785534221, 120.9913890524], [0.184, 2.24245977278, 815.0633461142], [0.202, 3.43517732411, 45.2465826386], [0.175, 4.49165234532, 171.2339065371], [0.171, 5.50633466316, 179.0982130633], [0.2, 6.12663205401, 14.2270940016], [0.173, 2.61090344107, 389.9496279465], [0.167, 3.94754384833, 77.2292791221], [0.166, 3.41009128748, 81.3738807063], [0.163, 3.88198848446, 556.5176680376], [0.164, 1.49614763046, 63.7358983034], [0.176, 3.86129425367, 148.3393568572], [0.161, 2.22215642318, 574.9375477332], [0.171, 0.66899426684, 179.3106613844], [0.161, 1.21480182441, 1024.4302882891], [0.155, 3.25842414799, 10251.4185818488], [0.183, 5.45168150656, 218.4069048687], [0.152, 3.35145509017, 285.3723810196], [0.152, 0.42398786475, 274.0660483248], [0.146, 5.70714579127, 419.4846438752], [0.156, 0.6432152487, 1029.8469142605], [0.147, 4.3095893074, 157.6399519819], [0.147, 1.8068917751, 377.4194549743], [0.14, 1.49826604627, 386.9806825299], [0.137, 2.14480243915, 563.6312150384], [0.127, 3.9872659971, 84.3428261229], [0.134, 4.16039455079, 169.5369855077], [0.121, 0.29300927469, 206.1855484372], [0.129, 2.6762505701, 180.7951340927], [0.134, 3.18868986487, 166.5680400911], [0.135, 5.0751756178, 426.598190876], [0.136, 1.8167245174, 151.0476698429], [0.129, 3.64795525602, 183.7640795093], [0.116, 6.06435563172, 220.4126424388], [0.123, 4.46641157829, 1022.7333672597], [0.112, 4.34485256988, 138.5174968707], [0.116, 5.58946529961, 35.685355083], [0.108, 1.03796693383, 488.5889840402], [0.108, 2.1037848588, 494.5268748734], [0.106, 0.87068583107, 1059.3819301892], [0.097, 0.74486741478, 485.9288551643], [0.095, 5.54259914856, 497.1870037493], [0.085, 3.16062141266, 522.5774180938], [0.097, 6.05634803604, 482.9599097477], [0.095, 0.2311185273, 500.1559491659], [0.084, 2.64687252518, 536.8045120954], [0.074, 3.90678924318, 1019.7644218431]], [[53892.649, 0.0, 0.0], [281.251, 1.19084538887, 38.1330356378], [295.693, 1.85520292248, 1.4844727083], [270.19, 5.72143228148, 76.2660712756], [23.023, 1.21035596452, 2.9689454166], [7.333, 0.5403330683, 2.4476805548], [9.057, 4.42544992035, 35.1640902212], [5.223, 0.67427930044, 168.0525127994], [5.201, 3.02338671812, 182.279606801], [4.288, 3.84351844003, 114.3991069134], [3.925, 3.53214557374, 484.444382456], [3.741, 5.90238217874, 498.6714764576], [2.966, 0.31002477611, 4.4534181249], [3.415, 0.55971639038, 74.7815985673], [3.255, 1.84921884906, 175.1660598002], [2.157, 1.89135758747, 388.4651552382], [2.211, 4.3799709224, 7.1135470008], [1.847, 3.48574435762, 9.5612275556], [2.451, 4.68586840176, 491.5579294568], [1.844, 5.12281562096, 33.6796175129], [2.204, 1.69321574906, 77.7505439839], [1.652, 2.55859494053, 36.6485629295], [1.309, 4.52400192922, 1021.2488945514], [1.124, 0.38710602242, 137.0330241624], [0.664, 0.88101734307, 4.192785694], [0.497, 2.24615784762, 395.578702239], [0.512, 6.22609200672, 381.3516082374], [0.582, 5.25716719826, 31.019488637], [0.446, 0.36647221351, 98.8999885246], [0.383, 5.48585528762, 5.9378908332], [0.375, 4.61250246774, 8.0767548473], [0.354, 1.30783918287, 601.7642506762], [0.259, 5.66033623678, 112.9146342051], [0.247, 2.89695614593, 189.3931538018], [0.245, 4.26572913391, 220.4126424388], [0.2, 0.52604535784, 64.9597385808], [0.191, 4.88786653062, 39.6175083461], [0.233, 3.16423779113, 41.1019810544], [0.248, 5.85877831382, 1059.3819301892], [0.194, 2.37949641473, 73.297125859], [0.227, 0.20028518978, 60.7669528868], [0.184, 3.01962045713, 1014.1353475506], [0.19, 5.57500985081, 343.2185725996], [0.172, 3.66036463613, 477.3308354552], [0.172, 0.59550457102, 46.2097904851], [0.182, 1.92429384025, 183.7640795093], [0.171, 1.61368476689, 357.4456666012], [0.173, 6.23717119485, 493.0424021651], [0.217, 1.46218158211, 71.8126531507], [0.178, 0.34928799031, 1028.3624415522], [0.169, 4.91086673212, 166.5680400911], [0.157, 5.89200571154, 169.5369855077], [0.182, 2.33457064554, 152.5321425512], [0.151, 3.81621340568, 146.594251718], [0.136, 2.75150881988, 144.1465711632], [0.104, 6.03262825314, 529.6909650946], [0.076, 0.20932812381, 453.424893819]], [[31.254, 0.0, 0.0], [12.461, 6.04431418812, 1.4844727083], [14.541, 1.35337075856, 76.2660712756], [11.547, 6.11257808366, 38.1330356378], [1.351, 4.93951495175, 2.9689454166], [0.741, 2.35936954597, 168.0525127994], [0.715, 1.27409542804, 182.279606801], [0.537, 5.23632185196, 484.444382456], [0.523, 4.16769839601, 498.6714764576], [0.664, 0.55871435877, 31.019488637], [0.301, 2.69253200796, 7.1135470008], [0.194, 2.05904114139, 137.0330241624], [0.206, 2.51012178002, 74.7815985673], [0.16, 5.63111039032, 114.3991069134], [0.149, 3.09327713923, 35.1640902212]], [[113.998, 3.14159265359, 0.0], [0.605, 3.18211885677, 76.2660712756]], [[0.874, 3.14159265359, 0.0]]]

This table contains Neptune’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric longitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 452-453.

pymeeus.Neptune.VSOP87_R = [[[3007013206.102, 0.0, 0.0], [27062259.49, 1.3299945893, 38.1330356378], [1691764.281, 3.25186138896, 36.6485629295], [807830.737, 5.18592836167, 1.4844727083], [537760.613, 4.52113902845, 35.1640902212], [495725.642, 1.57105654815, 491.5579294568], [274571.97, 1.84552256801, 175.1660598002], [135134.095, 3.37220607384, 39.6175083461], [121801.825, 5.79754444303, 76.2660712756], [100895.397, 0.37702748681, 73.297125859], [69791.722, 3.79617226928, 2.9689454166], [46687.838, 5.74937810094, 33.6796175129], [24593.778, 0.50801728204, 109.9456887885], [16939.242, 1.59422166991, 71.8126531507], [14229.686, 1.07786112902, 74.7815985673], [12011.825, 1.92062131635, 1021.2488945514], [8394.731, 0.67816895547, 146.594251718], [7571.8, 1.07149263431, 388.4651552382], [5720.852, 2.59059512267, 4.4534181249], [4839.672, 1.9068599107, 41.1019810544], [4483.492, 2.90573457534, 529.6909650946], [4270.202, 3.41343865825, 453.424893819], [4353.79, 0.6798566237, 32.1951448046], [4420.804, 1.74993796503, 108.4612160802], [2881.063, 1.98600105123, 137.0330241624], [2635.535, 3.09755943422, 213.299095438], [3380.93, 0.84810683275, 183.2428146475], [2878.942, 3.67415901855, 350.3321196004], [2306.293, 2.80962935724, 70.3281804424], [2530.149, 5.79839567009, 490.0734567485], [2523.132, 0.48630800015, 493.0424021651], [2087.303, 0.61858378281, 33.9402499438], [1976.522, 5.1170304456, 168.0525127994], [1905.254, 1.72186472126, 182.279606801], [1654.039, 1.92782545887, 145.1097790097], [1435.072, 1.70005157785, 484.444382456], [1403.029, 4.58914203187, 498.6714764576], [1499.193, 1.01623299513, 219.891377577], [1398.86, 0.7622031762, 176.6505325085], [1403.377, 6.07659416908, 173.6815870919], [1128.56, 5.96661179805, 9.5612275556], [1228.304, 1.59881465324, 77.7505439839], [835.414, 3.97066884218, 114.3991069134], [811.186, 3.0025888087, 46.2097904851], [731.925, 2.10447054189, 181.7583419392], [615.781, 2.97874625677, 106.9767433719], [704.778, 1.1873821088, 256.5399405065], [502.04, 1.38657803368, 5.9378908332], [530.357, 4.24059166485, 111.4301614968], [437.096, 2.27029212923, 1550.939859646], [400.25, 1.25609325435, 8.0767548473], [421.011, 1.89084929506, 30.7106720963], [382.457, 3.29965259685, 983.1158589136], [422.485, 5.53186169605, 525.4981794006], [355.389, 2.27847846648, 218.4069048687], [280.062, 1.54129714238, 98.8999885246], [314.499, 3.95932948594, 381.3516082374], [280.556, 4.54238271682, 44.7253177768], [267.738, 5.13323364247, 112.9146342051], [333.311, 5.75067616021, 39.0962434843], [291.625, 4.02398326341, 68.8437077341], [321.429, 1.50625025822, 454.9093665273], [309.196, 2.85452752153, 72.0732855816], [345.094, 1.35905860594, 293.188503436], [307.439, 0.31964571332, 601.7642506762], [251.356, 3.53992782846, 312.1990839626], [248.152, 3.41078346726, 37.611770776], [306.0, 2.72475094464, 6244.9428143536], [293.532, 4.89079857814, 528.2064923863], [234.479, 0.59231043427, 42.5864537627], [239.628, 3.16441455173, 143.6253063014], [214.523, 3.6248028304, 278.2588340188], [246.198, 1.01506302015, 141.2258098564], [174.089, 5.55011789988, 567.8240007324], [163.934, 2.10166491786, 2.4476805548], [162.897, 2.48946521653, 4.192785694], [193.455, 1.5842528758, 138.5174968707], [155.323, 3.28425127954, 31.019488637], [182.469, 2.45244890571, 255.0554677982], [177.846, 4.14773474853, 10175.1525105732], [174.413, 1.53042999914, 329.8370663655], [137.649, 3.34900537767, 0.9632078465], [161.011, 5.16655038482, 211.8146227297], [113.473, 4.96286007991, 148.0787244263], [128.823, 3.25521535448, 24.1183899573], [107.363, 3.26457701792, 1059.3819301892], [122.732, 5.39399536941, 62.2514255951], [120.529, 3.08050145518, 184.7272873558], [99.356, 1.92888554099, 28.5718080822], [97.713, 2.59474415429, 6.592282139], [124.095, 3.1151675034, 221.3758502853], [124.693, 2.97042405451, 251.4321310758], [114.252, 0.25039919123, 594.6507036754], [111.006, 3.34276426767, 180.2738692309], [120.939, 1.92914010593, 25.6028626656], [104.667, 0.94883561775, 395.578702239], [109.779, 5.43147520571, 494.5268748734], [96.919, 0.86184760695, 1014.1353475506], [98.685, 0.8957795271, 488.5889840402], [88.968, 4.78109764779, 144.1465711632], [107.888, 0.98700578434, 1124.34166877], [97.067, 2.62667400276, 291.7040307277], [75.131, 5.88936524779, 43.2408450685], [93.718, 6.09873565184, 526.722019678], [94.822, 0.2066294394, 456.3938392356], [70.036, 2.39683345663, 426.598190876], [77.187, 4.2107675324, 105.4922706636], [89.874, 3.25100749923, 258.0244132148], [69.133, 4.93031154435, 1028.3624415522], [90.657, 1.69466970587, 366.485629295], [74.242, 3.14479101276, 82.8583534146], [57.995, 0.86159785905, 60.7669528868], [78.695, 1.0930757555, 700.6642392008], [57.23, 0.81331949225, 2.9207613068], [63.443, 4.39590123005, 149.5631971346], [55.698, 3.89047249911, 47.6942631934], [56.43, 5.15003563302, 0.5212648618], [56.174, 5.42986960794, 911.042573332], [61.746, 6.16453667559, 1019.7644218431], [70.503, 0.08077330612, 40.5807161926], [74.677, 4.8590449998, 186.2117600641], [61.861, 4.78702599861, 11.0457002639], [61.135, 0.83712253227, 1022.7333672597], [61.268, 5.70228826765, 178.1350052168], [52.887, 0.37458943972, 27.0873353739], [56.722, 3.52318112447, 216.9224321604], [48.819, 5.10789123481, 64.9597385808], [63.29, 4.3942491003, 807.9497991134], [64.062, 6.28297531806, 7.1135470008], [46.356, 1.34735469284, 451.9404211107], [60.54, 3.40316162416, 294.6729761443], [46.9, 0.17048203552, 7.4223635415], [56.766, 0.45048868231, 140.001969579], [55.887, 1.06815733757, 172.1971143836], [53.761, 2.79644687008, 328.3525936572], [43.828, 6.04655696644, 135.5485514541], [49.549, 0.64106656292, 41.0537969446], [53.96, 2.91774494436, 563.6312150384], [42.961, 5.40175361431, 487.3651437628], [51.508, 0.09105540708, 210.3301500214], [41.889, 3.12343223889, 29.226199388], [47.655, 3.90701760087, 63.7358983034], [41.639, 6.26847783513, 32.7164096664], [41.429, 4.45464156759, 37.1698277913], [40.745, 0.16043648294, 79.2350166922], [48.205, 1.8419837301, 403.1341922245], [36.912, 0.44771386183, 30.0562807905], [47.762, 0.88083849566, 3302.479391062], [39.465, 3.50565484069, 357.4456666012], [42.139, 0.63375113663, 343.2185725996], [41.275, 1.36370496322, 31.2319369581], [42.612, 3.55270845713, 38.6543004996], [38.931, 5.2669175327, 415.2918581812], [38.967, 5.25866056502, 386.9806825299], [33.734, 5.24400184426, 67.3592350258], [40.879, 3.55292279438, 331.3215390738], [38.768, 1.12288359393, 38.1812197476], [37.5, 6.08687972441, 35.4247226521], [38.831, 4.67876780698, 38.084851528], [38.231, 6.26491054328, 389.9496279465], [29.976, 4.45759985804, 22.633917249], [31.356, 0.07746010366, 12.5301729722], [26.341, 4.59559782754, 106.0135355254], [27.465, 5.9954158789, 206.1855484372], [25.152, 4.4986776032, 34.2008823747], [24.122, 5.17089441917, 129.9194771616], [28.997, 3.6492721021, 253.5709950899], [27.173, 4.37944546475, 142.1408335931], [30.634, 1.5934880656, 348.8476468921], [31.464, 1.05065113524, 100.3844612329], [24.056, 1.02801635413, 41.7563723602], [22.632, 4.72511111292, 81.3738807063], [21.942, 3.48416607882, 69.1525242748], [26.333, 3.01556008632, 365.0011565867], [22.355, 3.92220883921, 5.1078094307], [22.498, 4.03487494425, 19.1224551112], [22.885, 1.58977064672, 189.3931538018], [26.52, 3.61427038042, 367.9701020033], [25.496, 2.43810518614, 351.8165923087], [19.111, 2.59694457001, 2080.6308247406], [19.64, 6.15701741238, 35.212274331], [25.688, 2.00512719767, 439.782755154], [21.613, 3.32354204724, 119.5069163441], [25.389, 4.74025836522, 1474.6737883704], [18.107, 5.35129342595, 244.318584075], [23.295, 5.93767742799, 316.3918696566], [22.087, 4.81594755148, 84.3428261229], [16.972, 3.0510514994, 220.4126424388], [20.022, 4.99276451168, 179.0982130633], [20.37, 1.86508317889, 171.2339065371], [19.426, 2.04829970231, 5.4166259714], [22.628, 0.27205783433, 666.723989257], [19.072, 3.70882976684, 164.1203595363], [17.969, 3.40425338171, 69.3649725959], [18.716, 0.90215956591, 285.3723810196], [15.889, 0.42011285882, 697.743477894], [14.988, 3.08544843665, 704.8570248948], [14.774, 3.36129613309, 274.0660483248], [15.972, 1.82864185268, 477.3308354552], [13.892, 2.94161501165, 38.3936680687], [13.922, 2.85574364078, 37.8724032069], [15.481, 4.94982954853, 101.8689339412], [17.571, 5.82317632469, 35.685355083], [15.856, 5.04973561582, 36.9091953604], [16.414, 3.63049397028, 45.2465826386], [17.158, 2.51251149482, 20.6069278195], [12.941, 3.03041555329, 522.5774180938], [15.752, 5.00292909214, 247.2393453818], [12.679, 0.20331109568, 460.5384408198], [16.26, 5.93480347217, 815.0633461142], [12.903, 3.51141502996, 446.3113468182], [13.891, 5.5106469767, 31.5407534988], [13.668, 5.4557613532, 39.3568759152], [13.418, 3.95805150079, 290.2195580194], [15.368, 2.45783892707, 26.826702943], [14.246, 3.18588280921, 401.6497195162], [12.222, 4.94370170146, 14.0146456805], [15.484, 3.79703715637, 404.6186649328], [13.427, 3.79527836573, 151.0476698429], [14.45, 4.93940408761, 120.9913890524], [14.331, 4.71117327722, 738.7972748386], [11.566, 5.91003539239, 536.8045120954], [15.578, 2.91836788254, 875.830299001], [13.124, 2.16056013419, 152.5321425512], [11.744, 2.94770244071, 2.7083129857], [12.793, 1.97868575679, 1.3725981237], [12.969, 0.00535826017, 97.4155158163], [13.891, 4.7643544182, 0.2606324309], [13.729, 2.3230647385, 38.2449102224], [10.714, 6.18129683877, 115.8835796217], [11.61, 4.61712859898, 178.7893965226], [11.257, 0.79300245838, 42.3258213318], [14.5, 5.44690193314, 44.070926471], [11.534, 5.26580538005, 160.9389657986], [13.355, 5.20849186729, 32.4557772355], [13.658, 2.15687632802, 476.4313180835], [13.782, 3.47865209163, 38.0211610532], [12.714, 2.09462988855, 20.4950532349], [13.257, 5.15138524813, 103.0927742186], [9.715, 0.7459788348, 918.1561203328], [10.34, 5.38977407079, 222.8603229936], [13.357, 5.89635739027, 748.0978699633], [12.632, 1.20306997433, 16.1535096946], [11.437, 1.58444114292, 495.4900827199], [11.424, 4.74142930795, 487.6257761937], [9.098, 5.19932138822, 118.0224436358], [9.336, 0.97313630925, 662.531203563], [9.827, 4.48170250645, 505.7850234584], [8.585, 0.20375451897, 944.9828232758], [8.875, 5.53111742265, 17.5261078183], [9.957, 4.03258125243, 169.5369855077], [11.506, 3.11649121817, 17.6379824029], [9.818, 5.20376439002, 1.5963472929], [10.16, 3.74441320429, 457.617679513], [8.661, 0.31247523804, 1440.7335384266], [8.496, 1.06445636872, 55.7710180407], [11.162, 1.92907800408, 564.8550553158], [8.057, 0.31116345866, 377.4194549743], [9.851, 4.23328578127, 418.2608035978], [7.938, 2.40417397694, 488.3765357191], [9.894, 0.63707319139, 183.7640795093], [9.913, 3.94049519088, 441.2672278623], [7.867, 3.87469522964, 494.7393231945], [7.589, 3.15909316566, 416.7763308895], [8.496, 5.38968698704, 104.0077979553], [9.716, 3.06038536864, 166.5680400911], [9.377, 0.56416645296, 673.316271396], [8.771, 5.24534141981, 1057.8974574809], [7.99, 1.55726966638, 59.2824801785], [9.09, 4.32953439022, 29.7474642498], [9.667, 5.89033222679, 358.4088744477], [7.209, 2.29464803358, 79.1868325824], [8.062, 0.44458003524, 19.0105805266], [8.254, 3.47304582051, 156.1554792736], [9.804, 6.06393995615, 784.7464328928], [8.516, 5.99060386955, 180.7951340927], [8.09, 1.38588221442, 1654.0326338646], [9.074, 4.0397149046, 1017.0561088574], [6.908, 1.41919832926, 178.3474535379], [8.23, 2.53750470473, 518.3846323998], [8.594, 5.29104206063, 457.8783119439], [6.769, 5.43380191356, 171.9846660625], [8.571, 0.35876828441, 636.6677084665], [8.995, 1.36992508507, 6209.7787241324], [6.641, 2.92327140872, 0.0481841098], [9.278, 3.80308677009, 25558.2121764796], [6.567, 4.01934954352, 0.1118745846], [6.441, 4.28250687347, 36.1272980677], [7.257, 4.09776235307, 326.8681209489], [8.384, 5.49363770202, 532.6117264014], [7.471, 4.62144262894, 526.9826521089], [7.5, 0.61545750834, 485.9288551643], [7.716, 1.04880632264, 525.2375469697], [8.504, 2.79350586429, 10139.988420352], [7.466, 5.07942174095, 157.6399519819], [7.186, 6.22833818429, 77.2292791221], [7.784, 1.89308880453, 984.6003316219], [6.513, 0.07498932215, 79.889407998], [6.077, 2.96673519667, 36.6967470393], [7.706, 5.7063258079, 209.106309744], [7.265, 4.94483532589, 131.4039498699], [6.984, 2.53239305821, 497.1870037493], [7.824, 2.31462643851, 513.079881013], [7.175, 3.69203633127, 524.0137066923], [6.855, 0.14076801572, 283.6272758804], [6.922, 3.36515011915, 438.2982824457], [7.349, 3.50406958122, 500.1559491659], [6.301, 0.14776691217, 608.877797677], [5.892, 4.24403528888, 4.665866446], [7.613, 5.14905171677, 259.5088859231], [7.128, 5.92696788834, 482.9599097477], [6.829, 1.01745137848, 1543.8263126452], [5.981, 4.79954091087, 215.4379594521], [5.526, 2.34003154732, 65.2203710117], [6.817, 6.1216282969, 395.0574373772], [5.369, 3.76855960849, 52099.5402118728], [5.776, 5.61434462641, 987.5692770385], [7.523, 5.60432148128, 2810.9214616052], [7.329, 3.76815551582, 1512.8068240082], [5.616, 2.13872867116, 145.6310438715], [5.258, 0.3085083691, 36.6003788197], [5.688, 1.82274388581, 1227.4344429886], [5.658, 2.35049199704, 5.6290742925], [6.135, 4.23390561816, 496.0113475817], [5.128, 2.89050864873, 313.6835566709], [6.472, 3.49494191669, 552.6973893591], [4.983, 3.91958511552, 10135.5350022271], [5.217, 0.40052635702, 319.3126309634], [4.952, 1.42482088612, 49.1787359017], [5.964, 5.70758449643, 309.7995875176], [5.091, 6.00974510144, 1409.7140497896], [5.205, 5.5027133451, 238.9019581036], [4.8, 1.1345031067, 134.0640787458], [4.943, 1.43051344597, 422.405405182], [5.604, 2.05669305961, 207.3612046048], [6.31, 5.22966882627, 139.7413371481], [4.772, 3.06668713747, 464.7312265138], [4.919, 3.57280542629, 52175.8062831484], [4.762, 5.90654311203, 838.9692877504], [4.848, 0.77467099227, 1.6969210294], [5.694, 0.77313415569, 709.9648343255], [5.455, 0.90289242792, 208.8456773131], [4.901, 3.79986913631, 15.4991183888], [4.772, 0.15755140037, 39.5056337615], [5.673, 2.68359159067, 1127.2624300768], [5.477, 0.53123497431, 113.8778420516], [5.077, 1.59268428609, 1547.9709142294], [4.981, 1.44584050478, 1.2720243872], [5.813, 5.85024085408, 57.255490749], [5.52, 5.06396698257, 421.2297490144], [5.938, 0.96886308551, 6280.1069045748], [5.206, 3.5800381937, 474.9468453752], [5.256, 0.61005270999, 95.9792272178], [5.531, 5.28764137194, 36.7604375141], [6.158, 5.73176703797, 711.4493070338], [5.003, 2.19048397989, 501.6404218742], [5.15, 5.58407480282, 26049.7701059364], [5.138, 4.55234158942, 670.916774951], [5.609, 4.3727275978, 52.8020726241], [5.636, 2.39183054397, 10210.3166007944], [4.512, 2.59978208967, 1234.5479899894], [5.412, 4.58813638089, 179.6194779251], [4.314, 3.38846714337, 142.6620984549], [4.708, 5.23537414423, 3.6233367224], [4.471, 3.94378336812, 12566.1516999828], [5.296, 1.12249063176, 134.1122628556], [4.188, 2.52490407427, 6205.3253060075], [4.645, 1.90644271528, 13324.3166711614], [4.502, 2.01956920977, 315.1680293792], [5.346, 2.94804816223, 353.0404325861], [4.177, 2.09489065926, 803.7570134194], [5.296, 3.88249567974, 2118.7638603784], [5.325, 4.28221258353, 477.9157907918], [5.519, 0.09960891963, 600.019145537], [5.169, 0.59948596687, 6.9010986797], [4.179, 0.14619703083, 6644.5762904701], [4.49, 1.07042724999, 52139.15772021889], [3.97, 6.13227798578, 1553.9088050626], [3.97, 4.69887237362, 91.7864415238], [4.234, 0.14478458924, 65.8747623175], [5.183, 3.52837189306, 110.2063212194], [5.259, 6.20809827528, 142.7102825647], [3.869, 5.25125030487, 1558.0534066468], [4.457, 2.10248126544, 487.1045113319], [4.89, 1.83606790269, 46.5186070258], [3.875, 5.60269278935, 385.4962098216], [3.826, 1.30946706974, 2176.6100519584], [4.591, 4.84657580441, 1337.640764208], [5.111, 1.18808079775, 981.6313862053], [4.709, 1.40878215308, 52213.9393187862], [3.891, 5.43661875415, 154.6710065653], [4.145, 4.32505910718, 363.5166838784], [4.441, 3.5015842457, 187.6962327724], [3.703, 2.48768949613, 67.8804998876], [4.094, 1.4234704726, 310.7146112543], [3.681, 5.70552661143, 491.6698040414], [4.787, 3.65822147476, 589.3459522886], [4.02, 5.45643059988, 6641.6073450535], [3.656, 0.57790726599, 491.4460548722], [4.288, 3.35265955957, 203.2166030206], [3.843, 4.61508898119, 1025.7023126763], [3.767, 0.05292047125, 320.2758388099], [4.632, 0.82011276589, 3265.8308281325], [4.609, 5.25443775917, 296.1574488526], [4.555, 5.30391170376, 26013.1215430069], [3.556, 4.80267245336, 224.3447957019], [4.859, 5.52756242256, 487.4133278726], [3.626, 1.44624342082, 70.8494453042], [4.302, 1.60914544159, 12529.5031370533], [3.493, 4.75315651083, 12489.8856287072], [3.722, 0.27433061822, 949.4362414007], [4.234, 5.25112033465, 194.2885149114], [3.451, 2.97409317928, 499.6346843041], [4.796, 6.21059766333, 491.8185618877], [3.639, 1.25605018211, 2603.2082428344], [4.646, 5.71392540144, 321.7603115182], [3.702, 2.08952561657, 491.036664595], [3.672, 2.87489628704, 497.49582029], [3.965, 1.0548498824, 75.7448064138], [3.416, 0.68584132933, 305.0855369618], [4.513, 4.3892700249, 425.1137181677], [3.853, 0.61321572401, 12526.5341916367], [3.788, 3.3222199584, 3140.0127549298], [3.781, 5.58125317044, 1652.5481611563], [3.903, 5.31609723466, 408.1783111804], [3.945, 3.60558877407, 1589.0728952838], [4.084, 0.83813879869, 52.3601296394], [4.084, 3.50290269471, 23.9059416362], [3.694, 1.03218855688, 481.4754370394], [3.636, 5.31068934607, 141.4864422873], [3.345, 3.94392179077, 20389.92252949249], [4.639, 6.24618220184, 821.3949958223], [3.934, 0.26992234338, 1655.5171065729], [4.431, 2.486474378, 549.7284439425], [4.168, 5.39993754642, 236.5024616586], [4.02, 0.07393243012, 52136.18877480229], [4.055, 1.34004288978, 1054.9285120643], [3.275, 0.98533127454, 1344.7543112088], [3.213, 2.97105590703, 20386.95358407589], [4.428, 0.06728869735, 491.2972970259], [4.063, 0.0619283857, 6168.676743078], [3.804, 5.34897033476, 523.7530742614], [3.917, 5.67905809516, 1131.1945833399], [3.833, 0.87811168267, 52.6901980395], [4.02, 2.69209723289, 1439.4615140394], [4.373, 1.86209663434, 73.5577582899], [3.159, 1.04693380342, 703.3725521865], [3.116, 5.2015916684, 449.232108125], [3.258, 4.65131076542, 696.2590051857], [3.427, 0.27003884843, 2389.9091473964], [4.349, 0.07531141761, 20426.571092422], [3.383, 5.61838426864, 699.2279506023], [3.305, 1.4166687729, 562.1467423301], [3.297, 5.46677712589, 1442.2180111349], [3.277, 2.71815883511, 980.146913497], [3.171, 4.49510885866, 1439.2490657183], [4.175, 4.24327707038, 381.6122406683], [3.155, 3.40776789576, 39.7293829307], [4.112, 0.90309319273, 1087.6931058405], [3.35, 5.27474671017, 80.7194894005], [3.725, 1.52448613082, 1058.109905802], [3.65, 3.59798316565, 192.8040422031], [3.837, 1.48519528444, 10098.8864392976], [2.959, 1.23012121982, 2500.1154686158], [3.33, 6.12470287875, 10172.1835651566], [3.361, 4.31837298696, 492.0791943186], [3.288, 3.14692435376, 347.3631741838], [2.992, 5.01304660316, 175.21424391], [3.294, 2.52694043155, 1692.1656695024], [2.984, 1.8178065989, 175.1178756904], [3.013, 0.92957285991, 1515.7757694248], [3.863, 5.4604492857, 332.8060117821], [3.403, 1.10932483984, 987.3086446076], [3.312, 0.67710158807, 977.4867846211], [3.03, 1.77996261146, 156489.2858138074], [3.605, 4.89955108152, 1043.8828118004], [2.937, 0.6046967123, 990.2294059144], [3.276, 4.26765608367, 1189.3014073508], [2.966, 5.29808076929, 31.9826964835], [2.994, 2.58599359402, 178.086821107], [3.905, 1.87748122254, 1158.2819187138], [3.11, 3.09203517638, 235.933012687], [3.313, 2.70308129756, 604.4725636619], [3.276, 1.24440460327, 874.6546428334], [3.276, 5.58544609667, 950.920714109], [3.746, 0.33859914037, 913.9633346388], [3.552, 3.07180917863, 240.3864308119], [2.885, 6.01130634957, 1097.514965827], [3.643, 5.11977873355, 452.2010535416], [2.768, 4.38396269009, 391.4341006548], [2.776, 5.0182159483, 8.9068362498], [2.99, 5.62911695857, 140.6563608848], [2.761, 4.05534163807, 6283.0758499914], [3.226, 4.76711354367, 6241.973868937], [3.748, 4.84009347869, 341.7340998913], [2.752, 4.53621078796, 6206.8097787158], [3.847, 2.40982343643, 26086.4186688659], [2.727, 3.28234198801, 483.4811746095], [2.884, 4.05452029151, 1.2238402774], [2.702, 3.72061244391, 946.4672959841], [2.723, 4.37517047024, 15.1903018481], [2.847, 5.22951186538, 661.0467308547], [2.68, 4.19379121323, 13.184564278], [3.269, 0.4311977852, 496.9745554282], [3.489, 3.82213189319, 625.9945152181], [3.757, 3.88223872147, 495.702531041], [2.872, 5.00345974886, 252.0865223816], [3.742, 2.03372773652, 8.5980197091], [3.172, 1.11135762382, 260.9933586314], [3.341, 2.91360557418, 304.2342036999], [2.915, 2.63627684599, 6681.2248533996], [2.915, 1.4377362589, 6604.958782124], [2.629, 2.0982440745, 2713.4145640538], [2.901, 3.3392480023, 515.463871093], [2.803, 1.23584865903, 6643.0918177618], [3.045, 3.33515866438, 921.0768816396], [2.699, 5.4259779465, 925.2696673336], [2.808, 5.77870303237, 1024.217839968], [3.028, 3.75501312393, 511.5954083047], [3.09, 2.49453093252, 14.6690369863], [2.913, 4.83296711477, 515.936951845], [3.139, 5.9913425471, 570.7447620392], [2.752, 3.08268180744, 853.196381752], [2.779, 3.74527347899, 494.0056100116], [2.643, 1.99093797444, 470.2172884544], [2.763, 4.01095972177, 448.9714756941], [2.643, 5.24970673655, 249.9476583675], [3.426, 4.73955481174, 1050.9963588012], [2.573, 2.01267457287, 1514.2912967165], [2.633, 1.63640090603, 170.7126416753], [3.034, 4.48979734509, 560.7104537316], [3.025, 5.51446170055, 369.4545747116], [3.095, 4.01459691667, 1615.8995982268], [2.49, 0.15301603966, 78187.44335344699], [2.589, 0.79196093766, 1228.9189156969], [3.143, 5.33170343283, 1542.3418399369], [3.138, 4.50785484172, 461.7622810972], [2.812, 3.7424659412, 2.0057375701], [3.062, 4.88018345098, 227.9681324243], [2.553, 4.85437812287, 488.8496164711], [2.971, 1.27359129352, 530.914805372], [2.646, 3.64828423565, 335.7749571987], [3.329, 2.71693827722, 171.021458216], [2.648, 0.60243117586, 70.5888128733], [3.061, 5.05044834864, 378.6432952517], [2.738, 4.75405645015, 151.260118164], [2.728, 5.89052930055, 213.9534867438], [3.411, 2.24137878065, 734.4557312983], [2.623, 0.54340876464, 1586.1039498672], [3.169, 5.84871429991, 1049.5118860929], [2.43, 2.34595493263, 450.4559484024], [2.907, 5.58085498481, 597.5714649822], [3.3, 0.94221473935, 58.1705144857], [2.543, 5.30426930256, 419.4846438752], [3.175, 2.32600231924, 339.2864193365], [2.858, 2.36621678719, 32.5039613453], [2.712, 5.79983621237, 1587.5884225755], [3.34, 1.36950315448, 384.2723695442], [3.301, 5.83023910521, 51.7751743028], [2.415, 0.6944692367, 489.5521918867], [2.736, 5.74320864965, 1167.8431462694], [2.956, 5.22962139507, 199.8538987291], [3.262, 0.01501002027, 1545.3107853535], [2.506, 4.84043333582, 943.4983505675], [3.24, 2.46676155925, 1016.7954764265], [3.148, 4.62079057738, 233.533516242], [2.327, 4.10421417326, 70.1157321213], [2.371, 4.79963943424, 271.145287018], [3.006, 3.66877796077, 1476.1582610787], [2.537, 5.66681769885, 21.1494445407], [3.006, 0.9304890948, 21.9795259432], [3.033, 0.6715748869, 292.4859280204], [2.344, 1.83547256266, 492.3086889822], [3.117, 2.76268894894, 1473.1893156621], [2.323, 2.88799980853, 533.6231183577], [2.34, 4.44862573253, 490.8071699314], [2.511, 0.99467349084, 266.1011680621], [2.919, 4.75889516601, 1511.3223512999], [2.493, 6.10541658597, 1225.9499702803], [2.798, 3.06162629894, 419.7452763061], [2.691, 3.20679023131, 463.5073862364], [2.291, 5.81534758547, 246.9787129509], [2.319, 6.0551428147, 525.7588118315], [3.112, 0.89712836583, 314.9073969483], [3.085, 5.84605938859, 1192.2221686576], [2.897, 0.54747024257, 20350.3050211464], [3.067, 2.22206306288, 248.4631856592], [2.252, 0.87483094907, 61.0275853177], [2.392, 3.62837597194, 439.1977998174], [2.817, 2.73562306571, 16.6747745564], [2.379, 6.17876088396, 467.6519878206], [2.598, 4.82643304253, 384.5811860849], [2.718, 1.01823841209, 215.9592243139], [2.998, 1.097557153, 1964.7472451189], [2.884, 2.97813466834, 383.0967133766], [2.231, 4.48841493844, 4.1446015842], [2.203, 2.23336308907, 481.2629887183], [2.26, 2.3540491366, 659.6104422562], [2.491, 1.7023635707, 445.3481389717], [3.041, 5.55577674116, 674.8007441043], [2.289, 1.18497528002, 1552.4243323543], [2.975, 0.48272389481, 1052.4808315095], [2.339, 0.75318738767, 478.8153081635], [3.011, 0.16359500858, 54.2865453324], [2.82, 6.18522693724, 556.5176680376], [2.266, 5.91286000054, 3.4902102784], [2.231, 1.45038594906, 196.5067008026]], [[236338.502, 0.70498011235, 38.1330356378], [13220.279, 3.32015499895, 1.4844727083], [8621.863, 6.2162895163, 35.1640902212], [2701.74, 1.88140666779, 39.6175083461], [2153.15, 5.16873840979, 76.2660712756], [2154.735, 2.09431198086, 2.9689454166], [1463.924, 1.18417031047, 33.6796175129], [1603.165, 0.0, 0.0], [1135.773, 3.91891199655, 36.6485629295], [897.65, 5.24122933533, 388.4651552382], [789.908, 0.5331548458, 168.0525127994], [760.03, 0.02051033644, 182.279606801], [607.183, 1.0770650035, 1021.2488945514], [571.622, 3.40060785432, 484.444382456], [560.79, 2.88685815667, 498.6714764576], [490.19, 3.46830928696, 137.0330241624], [264.093, 0.86220057976, 4.4534181249], [270.526, 3.27355867939, 71.8126531507], [203.524, 2.41820674409, 32.1951448046], [155.438, 0.36537064534, 41.1019810544], [132.766, 3.60157672619, 9.5612275556], [93.626, 0.66670888163, 46.2097904851], [83.317, 3.25992461673, 98.8999885246], [72.205, 4.47717435693, 601.7642506762], [68.983, 1.46326969479, 74.7815985673], [86.953, 5.77228651853, 381.3516082374], [68.717, 4.52563942435, 70.3281804424], [64.724, 3.85477388838, 73.297125859], [68.377, 3.39509945953, 108.4612160802], [53.375, 5.43650770516, 395.578702239], [44.453, 3.61409723545, 2.4476805548], [41.243, 4.73866592865, 8.0767548473], [48.331, 1.98568593981, 175.1660598002], [41.744, 4.94257598763, 31.019488637], [44.102, 1.41744904844, 1550.939859646], [41.17, 1.41999374753, 490.0734567485], [41.099, 4.86312637841, 493.0424021651], [36.267, 5.30764043577, 312.1990839626], [36.284, 0.38187812797, 77.7505439839], [40.619, 2.27237172464, 529.6909650946], [32.36, 5.91123007786, 5.9378908332], [31.197, 2.70549944134, 1014.1353475506], [32.73, 5.22147683115, 41.0537969446], [36.079, 4.87817494829, 491.5579294568], [30.181, 3.63273193845, 30.7106720963], [29.991, 3.30769367603, 1028.3624415522], [27.048, 1.77647060739, 44.7253177768], [27.756, 4.55583165091, 7.1135470008], [27.475, 0.97228280623, 33.9402499438], [24.944, 3.10083391185, 144.1465711632], [25.958, 2.99724758632, 60.7669528868], [21.369, 4.71270048898, 278.2588340188], [21.283, 0.68957829113, 251.4321310758], [23.727, 5.12044184469, 176.6505325085], [21.392, 0.86286397645, 4.192785694], [23.373, 1.64955088447, 173.6815870919], [24.163, 3.56602004577, 145.1097790097], [20.238, 5.61479765982, 24.1183899573], [26.958, 4.14294870704, 453.424893819], [24.048, 1.00718363213, 213.299095438], [18.322, 1.98028683488, 72.0732855816], [18.266, 6.17260374467, 189.3931538018], [19.201, 4.65162168927, 106.9767433719], [17.606, 1.60307551767, 62.2514255951], [16.545, 1.69931816587, 357.4456666012], [20.132, 3.29520553529, 114.3991069134], [15.425, 4.38812302799, 25.6028626656], [19.173, 2.20014267311, 343.2185725996], [15.077, 3.66802659382, 0.5212648618], [14.029, 0.5533633329, 129.9194771616], [13.361, 5.8575108372, 68.8437077341], [15.357, 4.20731277007, 567.8240007324], [12.746, 3.52815836608, 477.3308354552], [11.724, 5.5764726346, 31.2319369581], [11.533, 0.89138506506, 594.6507036754], [10.508, 4.35552732772, 32.7164096664], [10.826, 5.21826226871, 26.826702943], [10.085, 1.98102855874, 40.5807161926], [10.518, 5.27281360238, 2.9207613068], [9.207, 0.50092534158, 64.9597385808], [9.231, 0.6818097771, 160.9389657986], [8.735, 5.80657503476, 6.592282139], [10.114, 4.51164596694, 28.5718080822], [10.392, 5.18877536013, 42.5864537627], [9.873, 3.7651215808, 181.7583419392], [8.35, 2.82449631025, 43.2408450685], [9.838, 1.494387636, 47.6942631934], [7.645, 4.07503370297, 389.9496279465], [8.004, 2.78082277326, 505.7850234584], [7.44, 2.35731983047, 11.0457002639], [7.342, 1.62279119952, 135.5485514541], [9.45, 0.27241261915, 426.598190876], [7.192, 0.82841201068, 911.042573332], [6.979, 1.86753914872, 206.1855484372], [6.874, 0.83802906828, 82.8583534146], [7.897, 1.86554246391, 38.6543004996], [6.729, 3.98338053636, 12.5301729722], [6.357, 0.90093123522, 487.3651437628], [6.72, 1.339360407, 220.4126424388], [7.695, 5.13312500855, 23.9059416362], [7.059, 5.99832463494, 639.897286314], [8.302, 3.85960902325, 37.611770776], [6.412, 2.41743702679, 1059.3819301892], [6.751, 1.9686089447, 45.2465826386], [6.431, 4.07813226506, 35.685355083], [5.517, 3.8132579089, 815.0633461142], [5.562, 0.4161960215, 563.6312150384], [6.115, 2.10934525342, 697.743477894], [6.216, 4.79301628209, 143.6253063014], [5.346, 3.13071964722, 386.9806825299], [5.245, 6.06245070403, 171.2339065371], [5.129, 0.79394555531, 179.0982130633], [5.168, 4.73765992885, 522.5774180938], [6.422, 0.64684316894, 350.3321196004], [5.006, 2.37645082899, 77.2292791221], [5.005, 4.70632786971, 460.5384408198], [5.167, 5.2024661657, 446.3113468182], [5.119, 2.17338058771, 494.7393231945], [5.025, 4.21265519856, 536.8045120954], [4.722, 6.22814313946, 63.7358983034], [5.125, 5.38138329172, 179.3106613844], [4.918, 4.09031782903, 488.3765357191], [4.652, 5.10765073368, 274.0660483248], [4.711, 5.56542374115, 42.3258213318], [4.459, 1.3078482983, 69.3649725959], [5.485, 3.88088464259, 218.4069048687], [4.416, 3.05353893868, 27.0873353739], [4.559, 4.92224120952, 285.3723810196], [4.393, 4.18047835584, 5.4166259714], [4.687, 2.2140115321, 1029.8469142605], [4.644, 1.87902594973, 1433.6199914258], [5.639, 3.05596737234, 983.1158589136], [6.045, 5.68817982786, 351.8165923087], [4.43, 3.37768805833, 377.4194549743], [4.683, 2.14346624864, 97.4155158163], [5.845, 4.62301099402, 1024.217839968], [4.536, 2.45860473853, 496.0113475817], [4.398, 5.65312496227, 3.9321532631], [4.287, 0.66340266603, 1012.6508748423], [4.086, 0.14551174994, 385.2837615005], [4.029, 5.98399329775, 178.3474535379], [4.276, 3.6820508297, 348.8476468921], [5.257, 3.75263242432, 379.8671355291], [4.012, 0.42559540783, 104313.47953065898], [4.025, 2.40645188238, 84.3428261229], [3.957, 0.86846121055, 171.9846660625], [3.961, 3.04953080906, 1017.3167412883], [5.559, 0.77714806229, 1447.8470854274], [5.071, 2.61075526868, 1536.7127656444], [4.052, 5.00014006312, 391.6465489759], [5.182, 4.73444634983, 382.8360809457], [3.763, 4.29449373755, 313.6835566709], [4.038, 2.82857942788, 1661.1461808654], [4.067, 5.7316992896, 169.5369855077], [3.841, 1.6258092842, 0.9632078465], [3.901, 2.70874386576, 14.0146456805], [3.721, 1.20062375429, 1026.8779688439], [3.911, 3.01809123569, 100.3844612329], [3.489, 4.28865448963, 1025.1810478145], [3.714, 5.05021268365, 292.4859280204], [3.816, 3.93084933114, 39.0962434843], [3.988, 2.82832650224, 134.1122628556], [3.745, 4.24728135115, 180.7951340927], [3.836, 1.02685786071, 1018.2799491348], [3.941, 5.21895739331, 183.7640795093], [4.669, 4.38080962573, 1066.49547719], [3.78, 6.03723468132, 1022.7333672597], [3.647, 3.98130320367, 608.877797677], [3.456, 5.54052355058, 846.0828347512], [4.047, 3.71041480907, 1018.0675008137], [3.865, 4.76002199091, 166.5680400911], [3.629, 3.29053233846, 447.7958195265], [3.564, 4.36703678321, 397.0631749473], [3.304, 1.49289552229, 1505.6932770074], [3.976, 2.42476188945, 106.0135355254], [4.217, 4.21677652639, 1052.2683831884], [3.294, 0.42088065654, 22.633917249], [3.615, 3.68096122231, 494.5268748734], [3.23, 5.10786091356, 69.1525242748], [3.28, 3.62226152032, 531.1754378029], [3.337, 2.7250287632, 481.4754370394], [3.187, 0.08677634706, 399.5108555021], [3.389, 1.79454271219, 1519.920371009], [3.179, 3.40418030121, 423.6292454594], [3.154, 3.69356460843, 470.2172884544], [3.706, 2.79048710497, 462.0229135281], [3.136, 4.38015969606, 385.4962098216], [3.122, 0.48346644637, 79.1868325824], [3.392, 0.48037804731, 521.0929453855], [3.465, 0.93152295589, 2183.7235989592], [3.735, 0.98809808606, 487.4133278726], [3.998, 3.38773325131, 6283.0758499914], [2.998, 2.61728063127, 487.6257761937], [3.295, 2.53821501556, 4.665866446], [2.964, 3.66274645375, 495.4900827199], [3.901, 1.65463523144, 210.3301500214], [2.95, 1.99904237956, 872.9095376942], [2.948, 2.90769224206, 391.4341006548], [2.971, 0.31626092637, 5.1078094307], [3.085, 0.95725590904, 109.9456887885], [2.995, 3.34433305798, 394.0942295307], [3.126, 5.89472116854, 105.4922706636], [3.904, 3.01022809543, 556.5176680376], [3.388, 6.24936444215, 535.3200393871], [2.93, 6.15005257333, 164.1203595363], [3.267, 4.19718045293, 518.3846323998], [3.946, 2.8884275967, 151.260118164], [3.076, 6.04134449219, 142.1408335931], [2.823, 0.60712626756, 214.7835681463], [2.917, 2.74502617182, 138.5174968707], [3.347, 6.09373507569, 6246.4272870619], [3.659, 5.12211619716, 79.2350166922], [3.01, 0.24656411754, 91.7864415238], [2.861, 6.17465663902, 422.405405182], [2.989, 2.31620917965, 485.9288551643], [3.088, 2.29186342974, 110.2063212194], [3.03, 3.698661491, 532.6117264014], [3.02, 2.36422658177, 290.2195580194], [3.17, 1.23078934548, 10176.6369832815], [2.652, 3.35836234807, 148.0787244263], [2.673, 6.03366372927, 196.5067008026], [2.63, 0.46957619348, 1970.4245035212], [2.599, 4.86022081674, 439.1977998174], [2.878, 2.61946597178, 488.5889840402], [2.72, 1.71836225398, 364.559213602], [3.333, 3.25126857354, 30.0562807905], [3.053, 2.49346960035, 6243.4583416453], [3.062, 6.23776299963, 419.4846438752], [2.786, 0.83078219939, 497.1870037493], [2.834, 3.52926079424, 457.8783119439], [2.932, 1.80245810977, 500.1559491659], [3.03, 5.10152500393, 367.9701020033], [2.956, 5.76230870725, 986.0848043302], [3.116, 2.20042242739, 495.702531041], [2.554, 0.65945973992, 67.3592350258], [2.901, 3.91891656185, 10173.6680378649], [2.84, 1.34453183591, 482.9599097477], [2.458, 1.20012815574, 489.110248902], [2.556, 3.86921927085, 487.1045113319], [2.614, 1.51881085312, 463.5073862364], [2.386, 4.58400538443, 615.9913446778], [2.438, 5.19827220476, 501.1191570124], [2.537, 1.64802783144, 519.6084726772], [2.444, 3.87859489652, 185.2485522176], [2.795, 4.0426575258, 255.0554677982], [2.895, 3.26202698812, 1646.9190868638], [2.225, 5.75197574692, 605.9570363702], [2.324, 3.99503920129, 481.2629887183], [2.962, 1.74151265966, 2080.6308247406], [2.621, 1.74442251671, 35.212274331]], [[4247.412, 5.89910679117, 38.1330356378], [217.57, 0.3458182908, 1.4844727083], [163.025, 2.2387294713, 168.0525127994], [156.285, 4.59414467342, 182.279606801], [117.94, 5.10295026024, 484.444382456], [112.429, 1.19000583596, 498.6714764576], [127.141, 2.84786298079, 35.1640902212], [99.467, 3.41578558739, 175.1660598002], [64.814, 3.4621406484, 388.4651552382], [77.286, 0.01659281785, 491.5579294568], [49.509, 4.06995509133, 76.2660712756], [39.33, 6.09521855958, 1021.2488945514], [36.45, 5.17130059988, 137.0330241624], [37.08, 5.97288967681, 2.9689454166], [30.484, 3.58259801313, 33.6796175129], [21.099, 0.76843555176, 36.6485629295], [13.886, 3.59248623971, 395.578702239], [13.117, 5.09263515697, 98.8999885246], [11.379, 1.18060018898, 381.3516082374], [9.132, 2.34787658568, 601.7642506762], [8.527, 5.25134685897, 2.4476805548], [8.136, 4.96270726986, 4.4534181249], [7.417, 4.46775409796, 189.3931538018], [7.225, 1.92287508629, 9.5612275556], [7.289, 1.6551952578, 1028.3624415522], [8.076, 5.84268048311, 220.4126424388], [9.654, 0.0, 0.0], [6.554, 0.69397520733, 144.1465711632], [7.782, 1.14341656235, 1059.3819301892], [5.665, 6.25378258571, 74.7815985673], [5.628, 5.23383764266, 46.2097904851], [5.523, 4.59041448911, 1014.1353475506], [5.177, 5.23116646157, 477.3308354552], [5.503, 3.49522319102, 183.7640795093], [4.878, 3.52934357721, 39.6175083461], [4.787, 2.08260524745, 41.1019810544], [5.055, 0.19949888617, 166.5680400911], [4.751, 1.1805494827, 169.5369855077], [4.747, 1.50608965076, 73.297125859], [6.113, 6.18326155595, 71.8126531507], [4.606, 3.91970908886, 587.5371566746], [5.756, 2.23667359233, 176.6505325085], [4.536, 2.84337336954, 7.1135470008], [4.338, 0.51553847388, 446.3113468182], [3.891, 0.26338839265, 1550.939859646], [4.465, 3.01487041298, 129.9194771616], [3.727, 2.37977930658, 160.9389657986], [3.84, 3.7929038188, 111.4301614968], [4.142, 1.70293820961, 983.1158589136], [3.296, 1.07748822909, 505.7850234584], [4.008, 0.30663868827, 494.7393231945], [3.974, 5.9735178384, 488.3765357191], [3.925, 4.85736421123, 60.7669528868], [2.966, 2.01608546009, 822.176893115], [3.972, 1.07780371834, 374.2380612366], [3.843, 5.23002047199, 350.3321196004], [2.848, 6.17799253802, 704.8570248948], [3.527, 0.79317138165, 274.0660483248], [2.828, 1.32275775835, 386.9806825299], [2.773, 5.37132330836, 251.4321310758], [3.113, 5.1262228869, 426.598190876], [3.344, 5.61433537548, 1124.34166877], [2.597, 0.67759426519, 312.1990839626], [2.581, 3.55847612121, 567.8240007324], [2.578, 1.45603792456, 1035.475988553], [2.541, 5.19427579702, 1227.4344429886], [2.51, 4.12148891512, 171.2339065371], [2.511, 2.71606957319, 179.0982130633], [2.342, 0.96469916587, 1019.7644218431], [2.5, 0.7028227603, 707.7777862016], [2.48, 4.59623030219, 693.5506922], [2.253, 0.74334306011, 976.0023119128]], [[166.297, 4.55243893489, 38.1330356378], [22.38, 3.94830879358, 168.0525127994], [21.348, 2.86296778794, 182.279606801], [16.233, 0.54226725872, 484.444382456], [15.623, 5.75702251906, 498.6714764576], [11.867, 4.4028019271, 1.4844727083], [6.448, 5.19003066847, 31.019488637], [3.655, 5.91335292846, 1007.0218005498], [3.681, 1.62865545676, 388.4651552382], [3.198, 0.70197118575, 1558.0534066468], [3.243, 1.8803566598, 522.5774180938], [3.269, 2.94301808574, 76.2660712756], [2.688, 1.87062743473, 402.6922492398], [3.246, 0.79381356193, 536.8045120954], [2.65, 5.76858449026, 343.2185725996], [2.644, 4.64542905401, 500.1559491659], [2.541, 4.79217120822, 482.9599097477], [2.523, 1.7286988978, 395.578702239], [2.69, 2.21096415618, 446.3113468182], [2.355, 5.77381398401, 485.9288551643], [2.874, 6.1964334054, 815.0633461142], [2.278, 3.66579603119, 497.1870037493]], [[4.227, 2.40375758563, 477.3308354552], [4.333, 0.10459484545, 395.578702239], [3.545, 4.78431259422, 1028.3624415522], [3.154, 3.88192942366, 505.7850234584], [3.016, 1.03609346831, 189.3931538018], [2.294, 1.10879658603, 182.279606801], [2.295, 5.67776133184, 168.0525127994]]]

This table contains Neptune’s periodic terms (all of them) from the planetary theory VSOP87 for the radius vector at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in page 454.

Pluto

Class to model Pluto planet.

pymeeus.Pluto.PLUTO_ARGUMENT = [(0.0, 0.0, 1.0), (0.0, 0.0, 2.0), (0.0, 0.0, 3.0), (0.0, 0.0, 4.0), (0.0, 0.0, 5.0), (0.0, 0.0, 6.0), (0.0, 1.0, -1.0), (0.0, 1.0, 0.0), (0.0, 1.0, 1.0), (0.0, 1.0, 2.0), (0.0, 1.0, 3.0), (0.0, 2.0, -2.0), (0.0, 2.0, -1.0), (0.0, 2.0, 0.0), (1.0, -1.0, 0.0), (1.0, -1.0, 1.0), (1.0, 0.0, -3.0), (1.0, 0.0, -2.0), (1.0, 0.0, -1.0), (1.0, 0.0, 0.0), (1.0, 0.0, 1.0), (1.0, 0.0, 2.0), (1.0, 0.0, 3.0), (1.0, 0.0, 4.0), (1.0, 1.0, -3.0), (1.0, 1.0, -2.0), (1.0, 1.0, -1.0), (1.0, 1.0, 0.0), (1.0, 1.0, 1.0), (1.0, 1.0, 3.0), (2.0, 0.0, -6.0), (2.0, 0.0, -5.0), (2.0, 0.0, -4.0), (2.0, 0.0, -3.0), (2.0, 0.0, -2.0), (2.0, 0.0, -1.0), (2.0, 0.0, 0.0), (2.0, 0.0, 1.0), (2.0, 0.0, 2.0), (2.0, 0.0, 3.0), (3.0, 0.0, -2.0), (3.0, 0.0, -1.0), (3.0, 0.0, 0.0)]

This table contains Pluto’s argument coefficients according to Table 37.A in Meeus’ book, page 265.

pymeeus.Pluto.PLUTO_LATITUDE = [(-5452852.0, -14974862), (3527812.0, 1672790.0), (-1050748.0, 327647.0), (178690.0, -292153.0), (18650.0, 100340.0), (-30697.0, -25823.0), (4878.0, 11248.0), (226.0, -64.0), (2030.0, -836.0), (69.0, -604.0), (-247.0, -567.0), (-57.0, 1.0), (-122.0, 175.0), (-49.0, -164.0), (-197.0, 199.0), (-25.0, 217.0), (589.0, -248.0), (-269.0, 711.0), (185.0, 193.0), (315.0, 807.0), (-130.0, -43.0), (5.0, 3.0), (2.0, 17.0), (2.0, 5.0), (2.0, 3.0), (3.0, 1.0), (2.0, -1.0), (1.0, -1.0), (0.0, -1.0), (0.0, 0.0), (0.0, -2.0), (2.0, 2.0), (-7.0, 0.0), (10.0, -8.0), (-3.0, 20.0), (6.0, 5.0), (14.0, 17.0), (-2.0, 0.0), (0.0, 0.0), (0.0, 0.0), (0.0, 1.0), (0.0, 0.0), (1.0, 0.0)]

This table contains the periodic terms to compute Pluto’s heliocentric latitude according to Table 37.A in Meeus’ book, page 265

pymeeus.Pluto.PLUTO_LONGITUDE = [(-19799805.0, 19850055.0), (897144.0, -4954829.0), (611149.0, 1211027.0), (-341243.0, -189585.0), (129287.0, -34992.0), (-38164.0, 30893.0), (20442.0, -9987.0), (-4063.0, -5071.0), (-6016.0, -3336.0), (-3956.0, 3039.0), (-667.0, 3572.0), (1276.0, 501.0), (1152.0, -917.0), (630.0, -1277.0), (2571.0, -459.0), (899.0, -1449.0), (-1016.0, 1043.0), (-2343.0, -1012.0), (7042.0, 788.0), (1199.0, -338.0), (418.0, -67.0), (120.0, -274.0), (-60.0, -159.0), (-82.0, -29.0), (-36.0, -29.0), (-40.0, 7.0), (-14.0, 22.0), (4.0, 13.0), (5.0, 2.0), (-1.0, 0.0), (2.0, 0.0), (-4.0, 5.0), (4.0, -7.0), (14.0, 24.0), (-49.0, -34.0), (163.0, -48.0), (9.0, -24.0), (-4.0, 1.0), (-3.0, 1.0), (1.0, 3.0), (-3.0, -1.0), (5.0, -3.0), (0.0, 0.0)]

This table contains the periodic terms to compute Pluto’s heliocentric longitude according to Table 37.A in Meeus’ book, page 265

pymeeus.Pluto.PLUTO_RADIUS_VECTOR = [(66865439.0, 68951812.0), (-11827535.0, -332538.0), (1593179.0, -1438890.0), (-18444.0, 483220.0), (-65977.0, -85431.0), (31174.0, -6032.0), (-5794.0, 22161.0), (4601.0, 4032.0), (-1729.0, 234.0), (-415.0, 702.0), (239.0, 723.0), (67.0, -67.0), (1034.0, -451.0), (-129.0, 504.0), (480.0, -231.0), (2.0, -441.0), (-3359.0, 265.0), (7856.0, -7832.0), (36.0, 45763.0), (8663.0, 8547.0), (-809.0, -769.0), (263.0, -144.0), (-126.0, 32.0), (-35.0, -16.0), (-19.0, -4.0), (-15.0, 8.0), (-4.0, 12.0), (5.0, 6.0), (3.0, 1.0), (6.0, -2.0), (2.0, 2.0), (-2.0, -2.0), (14.0, 13.0), (-63.0, 13.0), (136.0, -236.0), (273.0, 1065.0), (251.0, 149.0), (-25.0, -9.0), (9.0, -2.0), (-8.0, 7.0), (2.0, -10.0), (19.0, 35.0), (10.0, 3.0)]

This table contains the periodic terms to compute Pluto’s heliocentric radius vector according to Table 37.A in Meeus’ book, page 265

class pymeeus.Pluto.Pluto[source]

Class Pluto models that minor planet.

__weakref__

list of weak references to the object (if defined)

static geocentric_position(epoch)[source]

This method computes the geocentric position of Pluto (right ascension and declination) for the given epoch, for the standard equinox J2000.0.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing the right ascension and the declination as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the 1885-2099 range.
>>> epoch = Epoch(1992, 10, 13.0)
>>> ra, dec = Pluto.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
15h 31' 43.7''
>>> print(dec.dms_str(n_dec=0))
-4d 27' 29.0''
static geometric_heliocentric_position(epoch)[source]

This method computes the geometric heliocentric position of planet Pluto for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute Pluto position, as an Epoch object
Returns:A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order
Return type:tuple
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the 1885-2099 range.
>>> epoch = Epoch(1992, 10, 13.0)
>>> l, b, r = Pluto.geometric_heliocentric_position(epoch)
>>> print(round(l, 5))
232.74071
>>> print(round(b, 5))
14.58782
>>> print(round(r, 6))
29.711111

Saturn

Class to model Saturn planet.

pymeeus.Saturn.ORBITAL_ELEM = [[50.077444, 1223.5110686, 0.00051908, -3e-08], [9.554909192, -2.139e-06, 4e-09, 0.0], [0.05554814, -0.000346641, -6.436e-07, 3.4e-09], [2.488879, -0.0037362, -1.519e-05, 8.7e-08], [113.665503, 0.877088, -0.00012176, -2.249e-06], [93.057237, 1.9637613, 0.00083753, 4.928e-06]]

This table contains the parameters to compute Saturn’s orbital elements for the mean equinox of date. Based in Table 31.A, page 213

pymeeus.Saturn.ORBITAL_ELEM_J2000 = [[50.077444, 1222.1138488, 0.00021004, -4.6e-08], [2.488879, 0.0025514, -4.906e-05, 1.7e-08], [113.665503, -0.2566722, -0.00018399, 4.8e-07], [93.057237, 0.5665415, 0.0005285, 4.912e-06]]

This table contains the parameters to compute Saturn’s orbital elements for the standard equinox J2000.0. Based on Table 31.B, page 215

class pymeeus.Saturn.Saturn[source]

Class Saturn models that planet.

__weakref__

list of weak references to the object (if defined)

static apparent_heliocentric_position(epoch)[source]

This method computes the apparent heliocentric position of planet Saturn for a given epoch, using the VSOP87 theory.

Parameters:epoch (Epoch) – Epoch to compute Saturn position, as an Epoch object
Returns:A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order
Return type:tuple
Raises:TypeError if input values are of wrong type.
static conjunction(epoch)[source]

This method computes the time of the conjunction closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired conjunction
Returns:The time when the conjunction happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2125, 6, 1.0)
>>> conj = Saturn.conjunction(epoch)
>>> y, m, d = conj.get_date()
>>> print(y)
2125
>>> print(m)
8
>>> print(round(d, 4))
26.4035
static geocentric_position(epoch)[source]

This method computes the geocentric position of Saturn (right ascension and declination) for the given epoch, as well as the elongation angle.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing the right ascension, the declination and the elongation angle as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 12, 20.0)
>>> ra, dec, elon = Saturn.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
21h 11' 41.8''
>>> print(dec.dms_str(n_dec=1))
-17d 15' 40.8''
>>> print(elon.dms_str(n_dec=1))
46d 51' 47.7''
static geometric_heliocentric_position(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of planet Saturn for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Saturn position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2018, 10, 27.0)
>>> l, b, r = Saturn.geometric_heliocentric_position(epoch)
>>> print(round(l.to_positive(), 4))
279.5108
>>> print(round(b, 4))
0.6141
>>> print(round(r, 5))
10.06266
static magnitude(sun_dist, earth_dist, delta_U, B)[source]

This function computes the approximate magnitude of Saturn.

Parameters:
  • sun_dist (float) – Distance from Saturn to the Sun, in Astronomical Units
  • earth_dist (float) – Distance from Saturn to Earth, in Astronomical Units
  • delta_U (float, Angle) – Difference between the Saturnicentric longitudes of the Sun and the Earth, measured in the plane of the ring, in degrees
  • B (float, Angle) – Saturnicentric latitude of the Earth refered to the plane of the ring, positive towards the north, in degrees
Returns:

Saturn’s magnitude

Return type:

float

Raises:

TypeError if input values are of wrong type.

Note

In order to obtain delta_U and B, please see method ring_parameters().

>>> sun_dist = 9.867882
>>> earth_dist = 10.464606
>>> delta_U = Angle(16.442)
>>> B = Angle(4.198)
>>> m = Saturn.magnitude(sun_dist, earth_dist, delta_U, B)
>>> print(m)
1.9
static opposition(epoch)[source]

This method computes the time of the opposition closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:The time when the opposition happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(-6, 9, 1.0)
>>> oppo = Saturn.opposition(epoch)
>>> y, m, d = oppo.get_date()
>>> print(y)
-6
>>> print(m)
9
>>> print(round(d, 4))
14.3709
static orbital_elements_j2000(epoch)[source]

This method computes the orbital elements of Saturn for the standard equinox J2000.0 for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Saturn.orbital_elements_j2000(epoch)
>>> print(round(l, 6))
130.28188
>>> print(round(a, 8))
9.55490779
>>> print(round(e, 7))
0.0553209
>>> print(round(i, 6))
2.490529
>>> print(round(ome, 5))
113.49736
>>> print(round(arg, 6))
-20.068943
static orbital_elements_mean_equinox(epoch)[source]

This method computes the orbital elements of Saturn for the mean equinox of the date for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Saturn.orbital_elements_mean_equinox(epoch)
>>> print(round(l, 6))
131.196871
>>> print(round(a, 8))
9.55490779
>>> print(round(e, 7))
0.0553209
>>> print(round(i, 6))
2.486426
>>> print(round(ome, 5))
114.23974
>>> print(round(arg, 6))
-19.896331
static passage_nodes(epoch, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of Saturn, nearest to the given epoch.

Parameters:
  • epoch (Epoch) – Epoch closest to the node passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2019, 1, 1)
>>> time, r = Saturn.passage_nodes(epoch)
>>> year, month, day = time.get_date()
>>> print(year)
2034
>>> print(month)
5
>>> print(round(day, 1))
30.2
>>> print(round(r, 4))
9.0546
static perihelion_aphelion(epoch, perihelion=True)[source]

This method computes the time of Perihelion (or Aphelion) closer to a given epoch.

Parameters:
  • epoch (Epoch) – Epoch close to the desired Perihelion (or Aphelion)
  • peihelion – If True, the epoch of the closest Perihelion is computed, if False, the epoch of the closest Aphelion is found.
Returns:

The epoch of the desired Perihelion (or Aphelion)

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1944, 1, 1.0)
>>> e = Saturn.perihelion_aphelion(epoch)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
1944
>>> print(m)
9
>>> print(d)
8
>>> print(h)
1
>>> epoch = Epoch(2047, 1, 1.0)
>>> e = Saturn.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
2047
>>> print(m)
7
>>> print(d)
15
>>> print(h)
0
static ring_inclination(epoch)[source]

This function computes the inclination of the plane of Saturn’s ring, referred to the ecliptic and mean equinox of the date.

Parameters:epoch (Epoch) – Epoch to compute the ring inclination
Returns:Inclination of the ring referred to the ecliptic and mean equinox of the date
Return type:Angle
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 12, 16.00068)
>>> i = Saturn.ring_inclination(epoch)
>>> print(round(i, 6))
28.076131
static ring_logitude_ascending_node(epoch)[source]

This function computes the longitude of the ascending node of the plane of Saturn’s ring, referred to the ecliptic and mean equinox of the date.

Parameters:epoch (Epoch) – Epoch to compute the ring longitude of ascending node
Returns:Longitude of the ascending node of the ring, referred to the ecliptic and mean equinox of the date
Return type:Angle
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 12, 16.00068)
>>> omega = Saturn.ring_logitude_ascending_node(epoch)
>>> print(round(omega, 6))
169.410243
static ring_parameters(epoch)[source]

This function computes the parameters related to Saturn’s ring, like geocentric position angle of the semiminor axis, the size of the major and minor axes of the outer edge, etc.

Parameters:epoch (Epoch) – Epoch closest to the node passage
Returns:Tuple containing:
  • Saturnicentic latitude of the Earth referred to the plane of the ring (B), positive towards the north (Angle).
  • Saturnicentric latitude of the Sun referred to the plane of the ring (B’), positive towards the north (Angle).
  • Geocentric position angle of the northern semiminor axis of the apparent ellipse of the ring (P), measured from the north towards the east. This is also the position angle of the north pole of rotation of the planet (Angle).
  • Difference between the Saturnicentric longitudes of the Sun and the Earth (delta_U), measured in the plane of the ring (Angle).
  • The size of major axis of the outer edge of the outer ring (‘a’), in arcseconds (float).
  • The size of minor axis of the outer edge of the outer ring (‘b’), in arcseconds (float).
Return type:tuple
Raises:TypeError if input value is of wrong type.

Note

Factors by which the axes ‘a’ and ‘b’ of the outer edge of the outer ring are to be multiplied to obtain the axes of:

  • Inner edge of outer ring: 0.8801
  • Outer edge of inner ring: 0.8599
  • Inner edge of inner ring: 0.6650
  • Inner edge of dusky ring: 0.5486
>>> epoch = Epoch(1992, 12, 16.00068)
>>> B, Bprime, P, delta_U, a, b = Saturn.ring_parameters(epoch)
>>> print(round(B, 3))
16.442
>>> print(round(Bprime, 3))
14.679
>>> print(round(P, 3))
6.741
>>> print(round(delta_U, 3))
4.198
>>> print(round(a, 2))
35.87
>>> print(round(b, 2))
10.15
static station_longitude_1(epoch)[source]

This method computes the time of the 1st station in longitude (i.e. when the planet is stationary and begins to move westward - retrograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:Time when the 1st station in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2018, 11, 1.0)
>>> sta1 = Saturn.station_longitude_1(epoch)
>>> y, m, d = sta1.get_date()
>>> print(y)
2018
>>> print(m)
4
>>> print(round(d, 4))
17.9433
static station_longitude_2(epoch)[source]

This method computes the time of the 2nd station in longitude (i.e. when the planet is stationary and begins to move eastward - prograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:Time when the 2nd station in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2018, 11, 1.0)
>>> sta2 = Saturn.station_longitude_2(epoch)
>>> y, m, d = sta2.get_date()
>>> print(y)
2018
>>> print(m)
9
>>> print(round(d, 4))
6.4175
pymeeus.Saturn.VSOP87_B = [[[4330678.04, 3.60284428399, 213.299095438], [240348.303, 2.8523848939, 426.598190876], [84745.939, 0.0, 0.0], [30863.357, 3.48441504465, 220.4126424388], [34116.063, 0.57297307844, 206.1855484372], [14734.07, 2.1184659787, 639.897286314], [9916.668, 5.79003189405, 419.4846438752], [6993.564, 4.73604689179, 7.1135470008], [4807.587, 5.43305315602, 316.3918696566], [4788.392, 4.9651292742, 110.2063212194], [3432.125, 2.73255752123, 433.7117378768], [1506.129, 6.01304536144, 103.0927742186], [1060.298, 5.63099292414, 529.6909650946], [969.071, 5.20434966103, 632.7837393132], [942.05, 1.39646678088, 853.196381752], [707.645, 3.80302329547, 323.5054166574], [552.313, 5.13149109045, 202.2533951741], [399.675, 3.35891413961, 227.5261894396], [316.063, 1.99716764199, 647.0108333148], [319.38, 3.6257155098, 209.3669421749], [284.494, 4.88648481625, 224.3447957019], [314.225, 0.4651027241, 217.2312487011], [236.442, 2.13887472281, 11.0457002639], [215.354, 5.94982610103, 846.0828347512], [208.522, 2.12003893769, 415.5524906121], [178.958, 2.95361514672, 63.7358983034], [207.213, 0.73021462851, 199.0720014364], [139.14, 1.9982199094, 735.8765135318], [134.884, 5.24500819605, 742.9900605326], [140.585, 0.64417620299, 490.3340891794], [121.669, 3.11537140876, 522.5774180938], [139.24, 4.59535168021, 14.2270940016], [115.524, 3.10891547171, 216.4804891757], [114.218, 0.96261442133, 210.1177017003], [96.376, 4.48164339766, 117.3198682202], [80.593, 1.3169275015, 277.0349937414], [72.952, 3.0598848237, 536.8045120954], [69.261, 4.92378633635, 309.2783226558], [74.302, 2.8937653962, 149.5631971346], [68.04, 2.18002263974, 351.8165923087], [61.734, 0.67728106562, 1066.49547719], [56.598, 2.60963391288, 440.8252848776], [48.864, 5.78725874107, 95.9792272178], [48.243, 2.1821183743, 74.7815985673], [38.304, 5.29151303843, 1059.3819301892], [36.323, 1.63348365121, 628.8515860501], [35.055, 1.71279210041, 1052.2683831884], [34.27, 2.45740470599, 422.6660376129], [34.313, 5.97994514798, 412.3710968744], [33.787, 1.14073392951, 949.1756089698], [31.633, 4.14722153007, 437.6438911399], [36.833, 6.27769966148, 1162.4747044078], [26.98, 1.2715481681, 860.3099287528], [23.516, 2.74936525342, 838.9692877504], [23.46, 0.98962849901, 210.8514148832], [23.6, 4.11386961467, 3.9321532631], [23.631, 3.07427204313, 215.7467759928], [20.813, 3.51084686918, 330.6189636582], [19.509, 2.81857577372, 127.4717966068], [17.103, 3.89784279922, 214.2623032845], [17.635, 6.19715516746, 703.6331846174], [17.824, 2.28524493886, 388.4651552382], [20.935, 0.14356167048, 430.5303441391], [16.551, 1.66649120724, 38.1330356378], [19.1, 2.97699096081, 137.0330241624], [15.517, 4.54798410406, 956.2891559706], [17.065, 0.16611115812, 212.3358875915], [14.169, 0.48937283445, 213.3472795478], [19.027, 6.27326062836, 423.4167971383], [13.344, 2.37136126257, 429.7795846137], [12.565, 1.03178071173, 563.6312150384], [14.173, 3.57477564831, 213.2509113282], [11.374, 1.45300927024, 1368.660252845], [10.585, 6.1763342593, 200.7689224658], [10.6, 3.84358958373, 138.5174968707], [10.263, 2.17423692422, 76.2660712756], [10.072, 1.33197220789, 565.1156877467], [12.058, 0.441492427, 222.8603229936], [10.367, 1.85278552549, 350.3321196004], [8.706, 2.58144528603, 1155.361157407], [8.47, 1.97890349826, 625.6701923124], [8.518, 4.51649648578, 3.1813937377], [7.439, 4.92597321442, 212.7778305762], [7.409, 2.03506679104, 288.0806940053], [8.137, 3.98500592467, 85.8272988312], [7.985, 2.20794292064, 362.8622925726], [6.61, 6.14944028835, 417.0369633204], [7.753, 6.2366454907, 1478.8665740644], [6.318, 1.87388481013, 654.1243803156], [6.319, 1.17328438271, 1265.5674786264], [5.841, 2.35829915285, 750.1036075334], [5.808, 5.01602242794, 479.2883889155], [8.079, 0.42574715104, 554.0699874828], [6.014, 5.58952234348, 425.1137181677], [7.444, 5.41859596459, 213.8203602998], [7.567, 2.68446523795, 191.2076949102], [7.421, 4.19354269508, 9.5612275556], [5.466, 3.21737829505, 234.6397364404], [5.661, 1.4698271355, 265.9892934775], [5.851, 4.81776629912, 1.4844727083], [5.341, 3.45755372717, 203.7378678824], [4.96, 1.04628615559, 12.5301729722], [4.92, 3.85622235967, 173.9422195228], [4.883, 1.94823282939, 195.1398481733], [5.621, 0.81869581274, 52.6901980395], [5.2, 3.32827437636, 515.463871093], [4.927, 3.81806549732, 225.8292684102], [5.033, 0.10756875163, 252.6559713532], [4.416, 5.45506938037, 408.4389436113], [4.169, 1.21145214135, 1685.0521225016], [4.066, 6.24213578122, 1279.794572628], [3.972, 6.13850317719, 217.491881132], [5.398, 5.67212179194, 1375.7737998458], [3.916, 5.96105725915, 210.3783341312], [4.017, 0.99840226682, 842.1506814881], [3.899, 4.58983662507, 1272.6810256272], [3.764, 3.30663337976, 212.5483359126], [4.345, 3.1856224183, 414.0680179038], [3.565, 4.75262007127, 207.8824694666], [3.542, 2.30814954338, 1471.7530270636], [3.732, 1.61040235688, 635.9651330509], [3.709, 2.97082943086, 223.5940361765], [3.576, 3.83436862558, 483.2205421786], [4.053, 3.72105017218, 942.062061969], [3.756, 0.74987556308, 214.0498549634], [3.162, 3.64550741, 207.6700211455], [3.149, 2.27647454229, 728.762966531], [3.971, 4.37874143597, 216.2198567448], [3.541, 5.62281936827, 218.7157214094], [2.965, 3.40117024932, 650.9429865779], [3.949, 4.1972891245, 209.106309744], [2.853, 4.81077453523, 231.4583427027], [2.826, 0.86682282341, 217.964961884], [2.97, 5.75162134301, 160.6088973985], [2.724, 0.47941267764, 497.4476361802], [2.787, 4.03144791896, 62.2514255951], [2.605, 5.04152791794, 65.2203710117], [2.652, 0.30602610654, 424.1505103212], [2.543, 2.76499056123, 543.9180590962], [2.485, 5.78396049817, 99.1606209555], [3.209, 0.42853440759, 218.9281697305], [2.509, 2.947045891, 70.8494453042], [2.308, 0.63861650866, 251.4321310758], [2.869, 4.31959346745, 767.3690829208], [2.232, 0.56929937568, 1073.6090241908], [2.245, 1.69945964547, 488.8496164711], [2.283, 1.55589787463, 601.7642506762], [2.384, 4.4458349331, 21.3406410024], [2.096, 5.77425542767, 88.865680217], [2.363, 3.35786310868, 124.433415221], [2.162, 6.24029269257, 1795.258443721], [2.452, 3.19804814047, 208.633228992], [2.033, 4.87029603776, 327.4375699205], [1.95, 5.56004000293, 18.1592472647], [2.283, 4.22375355881, 22.0914005278], [2.217, 4.6143309463, 302.164775655], [1.888, 5.45600788064, 142.4496501338], [2.075, 3.55622165076, 1169.5882514086], [2.069, 2.75786819366, 491.8185618877], [1.81, 5.96568495526, 213.1872208534], [1.813, 1.39785500313, 211.8146227297], [1.843, 1.15001484281, 203.0041546995], [1.854, 1.41350087782, 1581.959348283], [1.697, 3.23613719814, 427.5613987225], [1.736, 5.45933992115, 916.9322800554], [1.714, 6.14729146384, 643.8294395771], [1.948, 5.70817363392, 425.6349830295], [1.77, 3.36194411768, 248.7238180901], [1.611, 0.97888081762, 2001.4439921582], [1.971, 2.59654430358, 429.0458714308], [1.628, 0.74011617198, 177.8743727859], [1.564, 2.04342011485, 1788.1448967202], [1.574, 6.01995224314, 426.6463749858], [1.939, 5.4813466938, 636.7158925763], [1.651, 4.61629429952, 621.7380390493], [1.552, 2.55542734908, 692.5874843535], [1.484, 6.17173980637, 56.6223513026], [1.782, 3.26122906302, 175.1660598002], [1.503, 2.59953333916, 228.276948965], [1.559, 0.36281050773, 776.9303104764], [1.799, 3.4639597697, 1258.4539316256], [1.521, 3.75588462293, 213.5115437591], [1.81, 4.37552745264, 213.4109700226], [1.521, 0.30214462385, 213.0866471169], [1.608, 4.66724132818, 269.9214467406], [1.525, 1.47939329423, 198.321241911], [1.408, 1.3849184675, 501.3797894433], [1.327, 0.23760037979, 148.0787244263], [1.305, 2.41201772023, 275.5505210331], [1.578, 2.82443242444, 426.5500067662], [1.203, 1.36928065935, 235.3904959658], [1.296, 5.75203277385, 1692.1656695024], [1.295, 3.04090959062, 831.8557407496], [1.283, 1.62400181159, 643.0786800517], [1.617, 1.31181209458, 214.7835681463], [1.346, 4.01262069353, 278.5194664497], [1.166, 0.09590019561, 340.7708920448], [1.115, 2.20460481017, 221.3758502853], [1.176, 1.07528227869, 312.1990839626], [1.107, 1.50329021421, 289.5651667136], [1.143, 4.40125874383, 213.5597278689], [1.253, 0.21632769953, 404.5067903482], [1.074, 3.17412275025, 98.8999885246], [1.103, 0.23626839162, 617.8058857862], [1.077, 3.51670933532, 312.4597163935], [1.039, 0.53953974796, 778.4147831847], [1.195, 2.11232088496, 205.2223405907], [1.093, 5.16243153571, 630.3360587584], [1.143, 5.93977485365, 213.0384630071], [1.04, 4.79631324365, 106.2741679563], [1.1, 0.02509241739, 219.4494345923], [1.311, 5.93900415785, 436.1594184316], [1.26, 0.72481995446, 355.7487455718], [0.95, 2.00801292252, 1045.1548361876], [1.186, 1.84906064486, 151.0476698429], [0.974, 3.01092368346, 696.5196376166], [0.924, 4.88158186437, 39.3568759152], [0.961, 2.80113869315, 738.7972748386], [1.011, 6.27004359435, 121.2520214833], [0.904, 4.15218356485, 426.0769260142], [0.904, 4.24232505252, 10.2949407385], [0.895, 2.47587956888, 447.9388318784], [1.186, 0.85270715988, 525.4981794006], [0.824, 3.97540449663, 210.5907824523], [0.831, 4.05299295705, 207.1487562837], [0.937, 5.44353432307, 344.7030453079], [0.823, 2.08766677969, 358.9301393095], [0.971, 5.09512804595, 1589.0728952838], [1.037, 1.04152859909, 2.4476805548], [0.816, 0.62175655307, 188.9200730498], [0.798, 3.36396062989, 237.6781178262], [0.755, 5.90983584858, 284.1485407422], [0.87, 1.62765846893, 114.1384744825], [0.734, 6.23523714922, 2111.6503133776], [0.767, 2.73651219269, 627.3671133418], [0.701, 0.72526525525, 10213.285546211], [0.801, 5.84130533519, 905.8865797915], [0.71, 1.78740818763, 2104.5367663768], [0.67, 0.7583937489, 2317.8358618148], [0.72, 4.95645178898, 638.4128136057], [0.796, 4.87623914638, 342.2553647531], [0.703, 0.35096991676, 220.4608265486], [0.835, 3.1949282564, 1574.8458012822], [0.824, 0.08813665925, 216.0074084237], [0.653, 4.1959963539, 247.2393453818], [0.826, 4.66845240923, 427.1194557378], [0.69, 0.41873449575, 5856.4776591154], [0.69, 1.34023204821, 6283.0758499914], [0.69, 0.58291546593, 213.4591541324], [0.639, 1.20304559619, 867.4234757536], [0.83, 1.57233214789, 1898.3512179396], [0.753, 1.5118797088, 576.1613880106], [0.629, 2.83598833891, 420.9691165835], [0.69, 3.48062808501, 213.1390367436], [0.6, 5.22938546212, 212.0270710508], [0.565, 5.28099337758, 423.6774295692], [0.552, 5.83265103738, 84.3428261229], [0.546, 3.56588711151, 1485.9801210652], [0.642, 6.15007145598, 179.3588454942], [0.697, 1.91977327925, 134.5853436076], [0.648, 5.15917450752, 8.0767548473], [0.551, 3.33109164145, 980.6681783588], [0.511, 3.87073988213, 125.9873238985], [0.506, 0.80261216855, 181.0557665236], [0.564, 4.05871107615, 831.1049812242], [0.681, 3.45804290093, 220.364458329], [0.541, 2.39252901431, 421.93232443], [0.498, 3.11515053568, 439.1283638482], [0.517, 2.754300048, 1148.2476104062], [0.491, 4.47199498503, 558.0021407459], [0.467, 4.18144797677, 444.7574381407], [0.458, 0.60848440253, 206.233732547], [0.542, 3.28613020157, 245.5424243524], [0.477, 5.48556902348, 35.4247226521], [0.474, 2.42545073874, 436.8931316145], [0.481, 3.72498040536, 206.1373643274], [0.435, 1.61732308614, 191.9584544356], [0.488, 0.2605996965, 416.3032501375], [0.493, 4.13699180247, 518.6452648307], [0.595, 5.11706007934, 214.5711198252], [0.486, 5.17710069856, 67.6680515665], [0.463, 5.53192185211, 418.5214360287], [0.421, 5.57377685121, 430.79097657], [0.446, 6.20735049659, 73.297125859], [0.421, 4.65837340438, 543.0242872189], [0.435, 2.9525655435, 5.4166259714], [0.416, 4.36391909218, 113.3877149571], [0.495, 5.38121485133, 391.1734682239], [0.52, 3.99939347071, 618.5566453116], [0.429, 3.26903461513, 144.1465711632], [0.435, 1.60816661416, 2214.7430875962], [0.398, 2.38329818919, 299.1263942692], [0.399, 0.06301179341, 206.706813299], [0.394, 2.75496219113, 425.8474313506], [0.508, 2.86873328929, 337.732510659], [0.475, 5.68530292289, 320.3240229197], [0.432, 0.68132398291, 116.4260963429], [0.404, 1.84249441289, 9786.687355335], [0.371, 5.83382962844, 2008.557539159], [0.382, 4.24995364794, 387.2413149608], [0.416, 3.81986946256, 429.5189521828], [0.491, 4.18623117082, 219.891377577], [0.352, 1.65610545221, 963.4027029714], [0.353, 5.5020900346, 305.3461693927], [0.431, 4.39380503963, 353.301065017], [0.375, 2.67828133567, 319.5732633943], [0.359, 3.54801032661, 421.1815649046], [0.339, 5.19074405462, 69.1525242748], [0.358, 1.11857595997, 1044.4040766622], [0.334, 1.8426099474, 1361.5467058442], [0.328, 6.07106596408, 710.7467316182], [0.328, 1.48618893585, 2420.9286360334], [0.359, 5.62797136991, 78.7137518304], [0.405, 2.91366762549, 1891.2376709388], [0.398, 2.08900381937, 4.665866446], [0.326, 1.62373774313, 5.6290742925], [0.405, 1.87470341223, 114.3991069134], [0.393, 0.56487847337, 128.9562693151], [0.312, 5.29291124448, 347.8844390456], [0.31, 0.31232452686, 427.3489504014], [0.308, 2.84912656825, 487.3651437628], [0.291, 3.2597776278, 494.2662424425], [0.303, 4.9396287369, 373.9079928365], [0.289, 2.83591185309, 212.0752551606], [0.289, 2.0537143135, 214.5229357154], [0.398, 6.03822674845, 432.2272651685], [0.288, 6.16001418475, 969.6224780949], [0.296, 0.3033252409, 1055.4497769261], [0.28, 1.29728455136, 241.6102710893], [0.28, 5.41630221077, 1493.093668066], [0.315, 6.24003908326, 465.9550667912], [0.274, 5.03981944861, 458.8415197904], [0.296, 3.04457317761, 211.6021744086], [0.274, 2.72607352851, 145.6310438715], [0.293, 1.32452002382, 159.1244246902], [0.263, 6.11559198968, 2428.0421830342], [0.323, 1.17502395659, 815.0633461142], [0.345, 5.37083374878, 428.0826635843], [0.258, 0.43205106363, 2634.2277314714], [0.275, 0.91628212149, 849.2642284889], [0.34, 1.29378813067, 329.7251917809], [0.294, 4.29399534634, 4.192785694], [0.339, 1.03883773894, 32.2433289144], [0.244, 3.52504227332, 184.9879197867], [0.243, 3.13047989401, 525.7588118315], [0.26, 5.99216785208, 20.6069278195], [0.303, 3.96772261614, 934.9485149682], [0.285, 5.69474711283, 220.9339073006], [0.239, 2.09516779457, 292.0128472684], [0.242, 0.98744748894, 282.4516197128], [0.278, 2.81667003542, 87.3117715395], [0.285, 4.76303256917, 54.1746707478], [0.236, 5.79560286324, 280.9671470045], [0.246, 1.83689902078, 214.9960164674], [0.221, 0.48302467341, 153.4953503977], [0.238, 3.52738705554, 267.4737661858], [0.293, 5.91401607974, 14.977853527], [0.235, 0.29884419224, 14.0146456805], [0.229, 3.91975580405, 182.279606801], [0.217, 3.9632856194, 894.8408795276], [0.218, 1.46057992688, 2531.1349572528], [0.21, 2.01138855049, 211.8628068395], [0.21, 2.8782376161, 214.7353840365], [0.223, 2.49651288358, 1464.6394800628], [0.217, 4.03234048538, 835.0371344873], [0.209, 2.97542058241, 273.1028404783], [0.21, 2.56849303008, 593.426863398], [0.218, 1.7185910151, 0.9632078465], [0.232, 1.86083014117, 221.1634019642], [0.199, 3.53454927143, 219.6618829134], [0.197, 2.65338829617, 864.2420820159], [0.219, 3.46267185338, 1182.9215735329], [0.199, 2.56046317223, 264.5048207692], [0.199, 2.035087089, 757.2171545342], [0.237, 5.05443109284, 254.9435932136], [0.191, 2.07106909876, 756.3233826569], [0.192, 1.67985944172, 1677.9385755008], [0.191, 1.05067348453, 702.1487119091], [0.181, 1.89151852263, 6.1503391543], [0.205, 1.98151360584, 199.2844497575], [0.181, 1.25381796494, 2737.32050569], [0.186, 2.81416016738, 569.0478410098], [0.215, 4.52373060846, 3060.8259223474], [0.222, 2.90133577623, 205.4347889118], [0.246, 3.55891849574, 1251.3403846248], [0.191, 4.20221553993, 556.5176680376], [0.217, 2.6450996717, 2207.6295405954], [0.225, 0.14271906959, 131.4039498699], [0.189, 1.27260556263, 192.6921676185], [0.179, 6.15189171649, 2.9207613068], [0.178, 2.01622328964, 705.1176573257], [0.181, 3.62483757675, 233.9060232575], [0.188, 2.9283680984, 227.3137411185], [0.164, 3.50682537694, 1382.8873468466], [0.166, 5.85452227121, 637.4496057592], [0.16, 0.13309484488, 431.264057322], [0.158, 5.92242110049, 96.8729990951], [0.178, 4.55557913565, 46.470422916], [0.157, 1.35908014451, 51.2057253312], [0.155, 6.24092514222, 464.7312265138], [0.155, 6.02684189458, 1286.9081196288], [0.155, 1.36669731999, 206.9363079626], [0.175, 4.95121713507, 1905.4647649404], [0.153, 6.06094547271, 561.1835344836], [0.208, 4.50537355579, 24.3790223882], [0.185, 5.49802440713, 205.6642835754], [0.16, 4.18196878816, 3340.6124266998], [0.16, 2.85370771355, 209.1544938538], [0.161, 4.98020340619, 2648.454825473], [0.152, 0.85558875667, 570.7447620392], [0.156, 2.03601440129, 217.4436970222], [0.192, 3.98017256784, 212.4053235607], [0.192, 0.90945359875, 214.1928673153], [0.198, 3.54289000289, 533.6231183577], [0.16, 2.51522796187, 3127.3133312618], [0.145, 0.93414637377, 1994.3304451574], [0.141, 5.66801998888, 120.358249606], [0.141, 3.88995778619, 454.9093665273], [0.152, 1.01453902153, 2840.4132799086], [0.172, 4.15145223592, 2.9689454166], [0.146, 5.26789260159, 7.065362891], [0.177, 0.43196690516, 140.001969579], [0.144, 3.95680110579, 300.6108669775], [0.152, 4.29475572258, 555.5544601911], [0.143, 4.15264164139, 31.019488637], [0.138, 4.20096561019, 731.9443602687], [0.139, 0.79924371385, 166.828672522], [0.135, 1.27192121638, 92.940845832], [0.165, 1.94881873062, 107.0249274817], [0.153, 3.07590434707, 3480.3105662226], [0.125, 3.41796878361, 1802.3719907218], [0.128, 5.83700968658, 2324.9494088156], [0.129, 2.75851443754, 480.7728616238], [0.122, 4.75728514255, 2854.6403739102], [0.129, 4.67730374872, 913.9633346388], [0.121, 1.19957548726, 572.2292347475], [0.146, 3.7123287785, 546.956440482], [0.12, 4.59083886034, 339.2864193365], [0.127, 6.19372294369, 59.8037450403], [0.123, 5.9848439397, 477.8039162072], [0.122, 5.82973501131, 990.2294059144], [0.151, 2.39413061881, 2524.021410252], [0.147, 4.9819929177, 850.0149880143], [0.127, 0.47350572907, 6.592282139], [0.116, 4.71488890981, 1130.2313754934], [0.129, 5.42665311725, 2538.2485042536], [0.111, 4.51520219898, 1699.2792165032], [0.114, 2.06120434865, 952.0963702766], [0.112, 4.14736642579, 422.405405182], [0.111, 5.53230411085, 857.1285350151], [0.109, 3.00005651288, 420.4478517217], [0.112, 2.20667724213, 395.578702239], [0.147, 1.52324472511, 552.5855147745], [0.118, 5.47495367121, 2957.7331481288], [0.113, 2.57036693965, 462.0229135281], [0.122, 4.96246567897, 638.9340784675], [0.104, 1.91139383428, 472.1748419147], [0.116, 2.82742160564, 450.9772132642], [0.115, 2.26043201622, 1781.0313497194], [0.11, 4.86686492403, 2914.0142358238], [0.109, 4.4384872728, 405.9912630565], [0.102, 5.90112611078, 99.9113804809], [0.101, 2.5339241033, 640.8604941605], [0.112, 5.53802838779, 381.3516082374], [0.099, 5.92199927896, 411.620337349], [0.1, 5.21941099517, 426.4863162914], [0.137, 2.20269111622, 7.1617311106], [0.097, 1.27914551364, 2847.5268269094], [0.115, 5.22953781515, 1119.1856752295], [0.095, 4.26135357007, 540.7366653585], [0.098, 5.27107833435, 639.9454704238], [0.107, 4.38879925113, 412.5835451955], [0.093, 5.35954173624, 334.5511169213], [0.094, 1.16749092536, 5643.1785636774], [0.106, 4.19443004843, 486.4019359163], [0.096, 0.59816870672, 714.6788848813], [0.094, 0.54205024076, 423.6292454594], [0.109, 2.82817225044, 468.2426886516], [0.083, 6.12100285205, 380.12776796], [0.084, 2.20217125255, 909.8187330546], [0.085, 5.20920130934, 562.1467423301], [0.105, 2.66415710279, 460.5384408198], [0.084, 0.14646013561, 681.5417840896], [0.08, 3.03551986945, 409.9234163196], [0.097, 5.09373549436, 92.0470739547], [0.11, 2.03622569317, 642.3449668688], [0.08, 5.71035549752, 361.3778198643], [0.084, 3.00961145133, 426.8106391971], [0.085, 4.28770375688, 135.5485514541], [0.093, 5.32943472274, 432.0148168474], [0.086, 1.51247258028, 760.25553592], [0.084, 5.83905303748, 426.3857425549], [0.1, 3.62925349363, 426.7100654606], [0.094, 4.30151510535, 3377.217792004], [0.098, 2.07334671974, 639.8491022042], [0.08, 4.11576173565, 774.4826299216], [0.075, 2.8912265661, 806.725958836], [0.08, 0.88468467902, 856.3777754897], [0.072, 4.85259171933, 392.6579409322], [0.083, 0.11133738383, 402.2191684878]], [[397554.998, 5.33289992556, 213.299095438], [49478.641, 3.14159265359, 0.0], [18571.607, 6.09919206378, 426.598190876], [14800.587, 2.3058606052, 206.1855484372], [9643.981, 1.6967466012, 220.4126424388], [3757.161, 1.25429514018, 419.4846438752], [2716.647, 5.91166664787, 639.897286314], [1455.309, 0.85161616532, 433.7117378768], [1290.595, 2.9177085709, 7.1135470008], [852.63, 0.43572078997, 316.3918696566], [284.386, 1.61881754773, 227.5261894396], [292.185, 5.3157425127, 853.196381752], [275.09, 3.88864137336, 103.0927742186], [297.726, 0.91909206723, 632.7837393132], [172.359, 0.05215146556, 647.0108333148], [127.731, 1.20711452525, 529.6909650946], [166.237, 2.44351613165, 199.0720014364], [158.22, 5.20850125766, 110.2063212194], [109.839, 2.45695551627, 217.2312487011], [81.759, 2.75839171353, 210.1177017003], [81.01, 2.86038377187, 14.2270940016], [68.658, 1.65537623146, 202.2533951741], [59.281, 1.82410768234, 323.5054166574], [65.161, 1.25527521313, 216.4804891757], [61.024, 1.25273412095, 209.3669421749], [46.386, 0.81534705304, 440.8252848776], [36.163, 1.81851057689, 224.3447957019], [34.041, 2.83971297997, 117.3198682202], [32.164, 1.18676132343, 846.0828347512], [33.114, 1.3055708001, 412.3710968744], [27.282, 4.64744847591, 1066.49547719], [22.805, 4.12923703368, 415.5524906121], [27.128, 4.44228739187, 11.0457002639], [18.1, 5.56392353608, 860.3099287528], [20.851, 1.4099927374, 309.2783226558], [14.947, 1.34302610607, 95.9792272178], [15.316, 1.22393617996, 63.7358983034], [14.601, 1.0075370497, 536.8045120954], [12.842, 2.27059911053, 742.9900605326], [12.832, 4.88898877901, 522.5774180938], [13.137, 2.45991904379, 490.3340891794], [11.883, 1.87308666696, 423.4167971383], [13.027, 3.21731634178, 277.0349937414], [9.946, 3.11650057543, 625.6701923124], [12.71, 0.29501589197, 422.6660376129], [9.644, 1.74586356703, 330.6189636582], [8.079, 2.41931187953, 430.5303441391], [8.245, 4.68121931659, 215.7467759928], [8.958, 0.46482448501, 429.7795846137], [6.547, 3.01351967549, 949.1756089698], [7.251, 5.97098186912, 149.5631971346], [6.056, 1.491150111, 234.6397364404], [5.791, 5.36720639912, 735.8765135318], [5.994, 0.02442871989, 654.1243803156], [6.647, 3.90879134581, 351.8165923087], [6.824, 1.52456408861, 437.6438911399], [5.134, 3.81149834833, 74.7815985673], [3.959, 5.63505813057, 210.8514148832], [3.811, 2.63992803111, 3.1813937377], [3.643, 1.73267151007, 1059.3819301892], [3.554, 4.98621474362, 3.9321532631], [4.568, 4.33599514584, 628.8515860501], [3.145, 2.51404811765, 1162.4747044078], [3.522, 1.16093567319, 223.5940361765], [2.933, 2.06057834252, 956.2891559706], [2.644, 5.62559379305, 203.7378678824], [2.992, 5.06312015437, 515.463871093], [2.304, 2.73123930535, 21.3406410024], [2.168, 2.91805928238, 203.0041546995], [2.398, 3.99421633537, 1279.794572628], [2.146, 0.87500689888, 408.4389436113], [2.074, 1.65731069687, 137.0330241624], [1.797, 1.56879308343, 124.433415221], [2.088, 1.85721384366, 138.5174968707], [1.769, 4.82294294946, 1073.6090241908], [1.635, 1.20387813348, 88.865680217], [2.202, 5.93027042684, 1052.2683831884], [1.843, 0.22126910774, 750.1036075334], [1.851, 2.4547040929, 340.7708920448], [1.89, 0.41025631859, 127.4717966068], [1.582, 5.63360832372, 214.2623032845], [1.92, 3.77935901504, 350.3321196004], [1.786, 5.78644477326, 635.9651330509], [1.497, 3.1302689321, 703.6331846174], [1.583, 3.46882532865, 38.1330356378], [1.577, 4.02973226017, 388.4651552382], [1.645, 5.59115773632, 483.2205421786], [1.405, 4.07880624509, 728.762966531], [1.498, 5.87094430469, 362.8622925726], [1.317, 2.22386203585, 213.3472795478], [1.321, 2.91534782718, 1265.5674786264], [1.307, 5.41748323885, 217.964961884], [1.483, 0.91111666841, 543.9180590962], [1.291, 2.6233380107, 554.0699874828], [1.406, 0.34582712649, 85.8272988312], [1.287, 2.82247279651, 231.4583427027], [1.563, 4.88438049382, 208.633228992], [1.316, 5.30963570131, 213.2509113282], [1.164, 1.39531381032, 210.3783341312], [1.295, 2.46089213219, 200.7689224658], [1.236, 3.03659580871, 838.9692877504], [1.449, 4.00934078371, 195.1398481733], [1.251, 1.46674521697, 218.7157214094], [1.568, 1.89939852487, 212.3358875915], [1.067, 5.34734443894, 207.6700211455], [1.111, 0.70962013461, 447.9388318784], [1.012, 1.3721722064, 636.7158925763], [1.163, 6.00108996618, 191.2076949102], [0.887, 2.84483069917, 191.9584544356], [1.005, 2.72373040634, 1478.8665740644], [0.879, 1.19585734916, 417.0369633204], [0.829, 4.94182950387, 497.4476361802], [0.878, 6.24981924813, 265.9892934775], [0.781, 4.61973017912, 424.1505103212], [0.924, 3.64210508536, 222.8603229936], [0.971, 2.89404568581, 563.6312150384], [0.946, 5.72987725592, 1368.660252845], [0.834, 6.12384852532, 209.106309744], [0.911, 1.06795057723, 650.9429865779], [0.731, 0.81660632103, 142.4496501338], [0.795, 5.54574074566, 76.2660712756], [1.012, 5.97140626297, 643.0786800517], [0.703, 2.41479303782, 10.2949407385], [0.726, 4.52598413209, 565.1156877467], [0.691, 2.31682364985, 160.6088973985], [0.695, 0.37889317398, 212.7778305762], [0.676, 4.436062709, 842.1506814881], [0.769, 4.47368582271, 52.6901980395], [0.658, 0.32331118921, 621.7380390493], [0.838, 4.68035046143, 288.0806940053], [0.674, 5.63961963995, 867.4234757536], [0.695, 1.32062509205, 1169.5882514086], [0.841, 2.46995220838, 1375.7737998458], [0.633, 3.46145143241, 18.1592472647], [0.722, 0.04119071457, 269.9214467406], [0.757, 2.15030650611, 207.8824694666], [0.692, 0.87072324976, 213.8203602998], [0.602, 0.85288769518, 225.8292684102], [0.635, 4.76109030475, 831.8557407496], [0.701, 1.20410854661, 479.2883889155], [0.624, 2.30585779534, 643.8294395771], [0.582, 0.18811617696, 1.4844727083], [0.513, 2.5652596784, 404.5067903482], [0.502, 4.97423814367, 212.5483359126], [0.644, 2.10955154583, 1272.6810256272], [0.467, 4.47217820662, 235.3904959658], [0.566, 4.44740324446, 429.0458714308], [0.448, 0.57491120802, 22.0914005278], [0.52, 1.15131866397, 337.732510659], [0.476, 4.78513362967, 218.9281697305], [0.519, 0.61616177345, 436.8931316145], [0.442, 2.10204008144, 416.3032501375], [0.536, 1.08779067908, 344.7030453079], [0.477, 2.42483193385, 216.2198567448], [0.469, 5.22622034028, 942.062061969], [0.392, 0.41137926465, 302.164775655], [0.4, 5.1721647847, 414.0680179038], [0.383, 3.58419227076, 1045.1548361876], [0.443, 1.11051326413, 425.1137181677], [0.517, 3.44547026103, 12.5301729722], [0.369, 1.60095273908, 56.6223513026], [0.354, 2.79123486392, 1581.959348283], [0.405, 5.93402105921, 173.9422195228], [0.319, 4.31850876624, 219.4494345923], [0.33, 0.62529198264, 358.9301393095], [0.305, 0.8240442342, 1485.9801210652], [0.391, 2.59385552893, 1795.258443721], [0.291, 3.12019266878, 217.491881132], [0.294, 2.18552193901, 444.7574381407], [0.281, 0.77791302266, 757.2171545342], [0.355, 5.44570491928, 1685.0521225016], [0.305, 2.65927043884, 355.7487455718], [0.269, 6.00323720265, 934.9485149682], [0.287, 2.60486363576, 113.3877149571], [0.348, 0.98872551635, 70.8494453042], [0.331, 5.62133883922, 9.5612275556], [0.255, 4.1408660503, 284.1485407422], [0.311, 6.27145060602, 207.1487562837], [0.267, 4.72606312146, 696.5196376166], [0.319, 4.68828119248, 1155.361157407], [0.227, 3.10352674343, 1361.5467058442], [0.228, 1.19253095837, 1589.0728952838], [0.244, 5.3632797601, 245.5424243524], [0.218, 2.16069250901, 177.8743727859], [0.254, 4.51652534648, 1148.2476104062], [0.211, 2.82699627326, 106.2741679563], [0.23, 4.63171743406, 107.0249274817], [0.201, 4.52152562223, 508.3503240922], [0.23, 5.93560798508, 618.5566453116], [0.253, 2.08074949572, 252.6559713532], [0.234, 2.43423283339, 1692.1656695024], [0.196, 1.01284131123, 114.3991069134], [0.196, 2.73629728926, 214.0498549634], [0.191, 1.51642829677, 6069.7767545534], [0.252, 5.10097595426, 1258.4539316256], [0.24, 2.93712394928, 916.9322800554], [0.224, 4.42406538277, 251.4321310758], [0.223, 2.34400676548, 1677.9385755008], [0.228, 5.00073557208, 1574.8458012822], [0.183, 5.09056895026, 220.4608265486], [0.178, 6.05669760153, 206.1373643274], [0.185, 3.73859309582, 114.1384744825], [0.2, 1.89409546254, 2420.9286360334], [0.158, 2.78517362162, 2008.557539159], [0.191, 2.28724146195, 2435.155730035], [0.188, 4.29343910228, 1471.7530270636], [0.155, 5.3519412342, 576.1613880106], [0.174, 2.80423114755, 1781.0313497194], [0.166, 5.32531835813, 2001.4439921582], [0.165, 2.62993712087, 525.4981794006], [0.141, 4.73916921092, 501.3797894433], [0.161, 5.8336852375, 181.0557665236], [0.137, 1.45135867137, 131.5469622218], [0.157, 3.22870773657, 1493.093668066], [0.136, 4.20279658293, 710.7467316182], [0.144, 4.61003572124, 121.2520214833], [0.131, 5.85409245557, 175.1660598002], [0.144, 0.96056164245, 214.7835681463], [0.146, 3.95687956474, 421.93232443], [0.138, 1.0308057361, 4.665866446], [0.167, 1.97508934614, 62.2514255951], [0.123, 2.28640485589, 1898.3512179396], [0.168, 4.63122081226, 1891.2376709388], [0.129, 0.05327999225, 211.8146227297], [0.134, 3.49720535944, 488.8496164711], [0.117, 3.43819501459, 436.1594184316], [0.125, 5.87007326241, 963.4027029714], [0.12, 0.70795300239, 81.7521332162], [0.125, 4.50999471095, 2317.8358618148], [0.116, 6.11600926571, 558.0021407459], [0.117, 4.78666549046, 601.7642506762], [0.108, 0.45464469172, 1802.3719907218], [0.111, 1.44669239244, 2531.1349572528], [0.109, 6.14289264597, 151.0476698429], [0.113, 4.05600865495, 1286.9081196288], [0.129, 5.1393694616, 849.2642284889], [0.127, 3.88189432056, 98.8999885246], [0.133, 2.3829063407, 2111.6503133776], [0.122, 4.40757611742, 778.4147831847], [0.095, 0.07909774752, 213.4109700226], [0.095, 1.66925524906, 213.1872208534], [0.103, 1.88058957173, 99.1606209555], [0.119, 3.62785705509, 248.7238180901], [0.09, 4.63029999228, 228.276948965], [0.092, 5.48700119144, 767.3690829208], [0.089, 4.61331934339, 431.264057322], [0.099, 3.60670326134, 776.9303104764], [0.085, 4.93878023673, 2.4476805548], [0.089, 6.24541644164, 661.2379273164], [0.085, 0.4589634906, 1382.8873468466], [0.088, 3.81144552178, 1788.1448967202], [0.103, 3.20558404998, 312.1990839626], [0.08, 2.28889729136, 213.0866471169], [0.08, 5.74264101239, 213.5115437591], [0.082, 3.23546757052, 198.321241911], [0.078, 6.0384119105, 835.0371344873], [0.08, 0.22601918692, 427.5613987225], [0.072, 2.05164614795, 2634.2277314714], [0.091, 5.97938003596, 556.5176680376], [0.087, 2.71469794199, 617.8058857862]], [[20629.977, 0.50482422817, 213.299095438], [3719.555, 3.99833475829, 206.1855484372], [1627.158, 6.181899395, 220.4126424388], [1346.067, 0.0, 0.0], [705.842, 3.03914308836, 419.4846438752], [365.042, 5.09928680706, 426.598190876], [329.632, 5.27899210039, 433.7117378768], [219.335, 3.82841533795, 639.897286314], [139.393, 1.04272623499, 7.1135470008], [103.98, 6.15730992966, 227.5261894396], [92.961, 1.97994412845, 316.3918696566], [71.242, 4.14754353431, 199.0720014364], [51.927, 2.88364833898, 632.7837393132], [48.961, 4.43390206741, 647.0108333148], [41.373, 3.15927770079, 853.196381752], [28.602, 4.52978327558, 210.1177017003], [23.969, 1.11595912146, 14.2270940016], [20.511, 4.35095844197, 217.2312487011], [19.532, 5.30779711223, 440.8252848776], [18.263, 0.85391476786, 110.2063212194], [15.742, 4.25767226302, 103.0927742186], [16.84, 5.68112084135, 216.4804891757], [13.613, 2.99904334066, 412.3710968744], [11.567, 2.5267992841, 529.6909650946], [7.963, 3.3151242392, 202.2533951741], [6.599, 0.28766025146, 323.5054166574], [6.312, 1.16121321336, 117.3198682202], [5.891, 3.58260177246, 309.2783226558], [6.648, 5.55714129949, 209.3669421749], [5.59, 2.47783944511, 1066.49547719], [6.192, 3.61231886519, 860.3099287528], [4.231, 3.02212363572, 846.0828347512], [3.612, 4.79935735435, 625.6701923124], [3.398, 3.76732731354, 423.4167971383], [3.387, 6.04222745633, 234.6397364404], [2.578, 5.63610668746, 735.8765135318], [2.831, 4.81642822334, 429.7795846137], [2.817, 4.47516563908, 654.1243803156], [2.573, 0.22467245054, 522.5774180938], [2.61, 3.29126967191, 95.9792272178], [2.419, 0.02986335489, 415.5524906121], [2.112, 4.55964179603, 422.6660376129], [2.304, 6.25081073546, 330.6189636582], [1.758, 5.53430456858, 536.8045120954], [1.814, 5.05675881426, 277.0349937414], [1.55, 5.60375604692, 223.5940361765], [1.457, 4.47767649852, 430.5303441391], [1.607, 5.535995501, 224.3447957019], [1.172, 4.71017775994, 203.0041546995], [1.231, 0.2511593188, 3.9321532631], [1.105, 1.01595427676, 21.3406410024], [0.868, 4.84623483952, 949.1756089698], [0.939, 1.35429452093, 742.9900605326], [0.693, 6.03599130692, 124.433415221], [0.712, 4.45550701473, 191.9584544356], [0.69, 5.44243765037, 437.6438911399], [0.81, 0.46198177342, 515.463871093], [0.694, 5.23748122403, 447.9388318784], [0.604, 2.95749705544, 88.865680217], [0.669, 0.08457977809, 215.7467759928], [0.579, 0.65329445948, 3.1813937377], [0.712, 6.05964117622, 11.0457002639], [0.698, 2.91371419321, 1073.6090241908], [0.526, 2.24947851818, 1059.3819301892], [0.511, 2.86838724347, 408.4389436113], [0.589, 5.79268515755, 63.7358983034], [0.519, 1.76641574095, 1279.794572628], [0.503, 5.73762297081, 728.762966531], [0.482, 4.68234512154, 838.9692877504], [0.494, 4.04363805503, 490.3340891794], [0.458, 1.17998315936, 210.8514148832], [0.38, 5.28045750432, 1052.2683831884], [0.404, 4.58953258519, 302.164775655], [0.377, 5.20131800999, 74.7815985673], [0.328, 0.11893501088, 956.2891559706], [0.29, 3.99300398632, 1162.4747044078], [0.262, 2.04320741578, 1471.7530270636], [0.259, 3.76206113036, 635.9651330509], [0.254, 0.16694559092, 195.1398481733], [0.309, 5.4492117596, 543.9180590962], [0.237, 1.27761853769, 231.4583427027], [0.288, 1.32449995239, 203.7378678824], [0.229, 4.19748765966, 1265.5674786264], [0.238, 4.02925601887, 643.0786800517], [0.238, 0.49997895983, 10.2949407385], [0.257, 3.69107889837, 867.4234757536], [0.191, 0.17807919948, 628.8515860501], [0.246, 5.62469599682, 351.8165923087], [0.183, 3.38184740572, 636.7158925763], [0.172, 3.8317349403, 1581.959348283], [0.22, 1.03443668151, 483.2205421786], [0.217, 4.65210162713, 750.1036075334], [0.143, 2.31969979791, 18.1592472647], [0.137, 5.50046852846, 1169.5882514086], [0.12, 3.70151294359, 416.3032501375], [0.136, 3.38453909352, 1155.361157407], [0.149, 0.85459831932, 1375.7737998458], [0.15, 5.71949902293, 618.5566453116], [0.125, 4.82446274394, 436.8931316145], [0.12, 3.26968058035, 1478.8665740644], [0.131, 0.11496484259, 1898.3512179396], [0.099, 4.57241894541, 643.8294395771], [0.095, 4.92115458463, 650.9429865779], [0.09, 2.09300085806, 621.7380390493], [0.111, 0.11975665259, 831.8557407496], [0.089, 2.54351587616, 85.8272988312], [0.08, 5.09103451442, 340.7708920448], [0.078, 3.17395501851, 497.4476361802], [0.085, 0.18997660997, 1258.4539316256], [0.081, 1.16732337173, 217.964961884], [0.072, 5.47328223678, 337.732510659]], [[666.252, 1.99006340181, 213.299095438], [632.35, 5.69778316807, 206.1855484372], [398.051, 0.0, 0.0], [187.838, 4.33779804809, 220.4126424388], [91.884, 4.84104208217, 419.4846438752], [42.369, 2.38073239056, 426.598190876], [51.548, 3.42149490328, 433.7117378768], [25.661, 4.40167213109, 227.5261894396], [20.551, 5.85313509872, 199.0720014364], [18.081, 1.99321433229, 639.897286314], [10.874, 5.37344546547, 7.1135470008], [9.59, 2.54901825866, 647.0108333148], [7.085, 3.45518372721, 316.3918696566], [6.002, 4.80055225135, 632.7837393132], [5.778, 0.01680378777, 210.1177017003], [4.881, 5.63719730884, 14.2270940016], [4.501, 1.2242441901, 853.196381752], [5.542, 3.51756747774, 440.8252848776], [3.548, 4.7129937089, 412.3710968744], [2.851, 0.62679207578, 103.0927742186], [2.173, 3.71982274459, 216.4804891757], [1.991, 6.10867071657, 217.2312487011], [1.435, 1.69177141453, 860.3099287528], [1.217, 4.30778838827, 234.6397364404], [1.157, 5.75027789902, 309.2783226558], [0.795, 5.69026441157, 117.3198682202], [0.733, 0.59842720676, 1066.49547719], [0.713, 0.21700311697, 625.6701923124], [0.773, 5.4836198199, 202.2533951741], [0.897, 2.65577866867, 654.1243803156], [0.509, 2.86079833766, 429.7795846137], [0.462, 4.17742567173, 529.6909650946], [0.39, 6.11288036049, 191.9584544356], [0.505, 4.51905764563, 323.5054166574], [0.379, 3.74436004151, 223.5940361765], [0.332, 5.4937089057, 21.3406410024], [0.377, 5.25624813434, 95.9792272178], [0.384, 4.48187414769, 330.6189636582], [0.367, 5.0319092968, 846.0828347512], [0.281, 1.14133888637, 735.8765135318], [0.245, 5.8161825325, 423.4167971383], [0.241, 1.7033512018, 522.5774180938], [0.258, 3.69110118716, 447.9388318784], [0.231, 4.15697626494, 110.2063212194], [0.305, 5.97746884029, 302.164775655], [0.284, 0.66224572127, 203.0041546995], [0.204, 1.54683820621, 209.3669421749], [0.194, 4.21193801453, 124.433415221], [0.145, 4.79689259614, 88.865680217], [0.151, 3.82010884134, 536.8045120954], [0.1, 0.03596545368, 949.1756089698], [0.097, 0.91303450276, 1073.6090241908], [0.11, 2.21197473966, 515.463871093], [0.084, 2.53842533109, 422.6660376129], [0.085, 5.11102520704, 3.9321532631], [0.077, 6.04074586787, 838.9692877504], [0.085, 1.18898817378, 728.762966531], [0.084, 4.10158366806, 224.3447957019]], [[80.384, 1.11918414679, 206.1855484372], [31.66, 3.12218745098, 213.299095438], [17.143, 2.48073200414, 220.4126424388], [11.844, 3.14159265359, 0.0], [9.005, 0.38441424927, 419.4846438752], [6.164, 1.56186379537, 433.7117378768], [4.66, 1.2823563957, 199.0720014364], [4.775, 2.63498295487, 227.5261894396], [1.487, 1.43096671616, 426.598190876], [1.424, 0.66988083613, 647.0108333148], [1.075, 6.18092274059, 639.897286314], [1.145, 1.72041928134, 440.8252848776], [0.682, 3.8484109818, 14.2270940016], [0.655, 3.49486258327, 7.1135470008], [0.456, 0.47338193402, 632.7837393132], [0.509, 0.31432285584, 412.3710968744], [0.343, 5.86413875355, 853.196381752], [0.27, 2.50125594913, 234.6397364404], [0.197, 5.39156324804, 316.3918696566], [0.236, 2.11084590211, 210.1177017003], [0.172, 6.09682874401, 860.3099287528], [0.159, 5.95049154821, 216.4804891757], [0.1, 1.98534903594, 625.6701923124], [0.112, 0.85526419268, 654.1243803156], [0.115, 5.03884718594, 117.3198682202], [0.115, 0.44589613974, 110.2063212194]], [[7.895, 2.81927558645, 206.1855484372], [1.014, 0.5118721027, 220.4126424388], [0.772, 2.99484124049, 199.0720014364], [0.967, 3.14159265359, 0.0], [0.583, 5.96456944075, 433.7117378768], [0.588, 0.78008666397, 227.5261894396], [0.445, 2.38630799074, 419.4846438752], [0.098, 5.10622131539, 647.0108333148], [0.091, 5.81659714144, 7.1135470008], [0.088, 6.17828532308, 440.8252848776], [0.089, 0.5839686453, 213.299095438]]]

This table contains Saturn’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric latitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 440-442.

pymeeus.Saturn.VSOP87_L = [[[87401354.029, 0.0, 0.0], [11107659.78, 3.96205090194, 213.299095438], [1414150.958, 4.58581515873, 7.1135470008], [398379.386, 0.52112025957, 206.1855484372], [350769.223, 3.30329903015, 426.598190876], [206816.296, 0.24658366938, 103.0927742186], [79271.288, 3.8400707853, 220.4126424388], [23990.338, 4.6697693486, 110.2063212194], [16573.583, 0.43719123541, 419.4846438752], [14906.995, 5.76903283845, 316.3918696566], [15820.3, 0.9380895376, 632.7837393132], [14609.562, 1.56518573691, 3.9321532631], [13160.308, 4.44891180176, 14.2270940016], [15053.509, 2.71670027883, 639.897286314], [13005.305, 5.98119067061, 11.0457002639], [10725.066, 3.12939596466, 202.2533951741], [5863.207, 0.23657028777, 529.6909650946], [5227.771, 4.2078316238, 3.1813937377], [6126.308, 1.76328499656, 277.0349937414], [5019.658, 3.17787919533, 433.7117378768], [4592.541, 0.61976424374, 199.0720014364], [4005.862, 2.24479893937, 63.7358983034], [2953.815, 0.98280385206, 95.9792272178], [3873.696, 3.22282692566, 138.5174968707], [2461.172, 2.03163631205, 735.8765135318], [3269.49, 0.77491895787, 949.1756089698], [1758.143, 3.26580514774, 522.5774180938], [1640.183, 5.50504966218, 846.0828347512], [1391.336, 4.02331978116, 323.5054166574], [1580.641, 4.3726631412, 309.2783226558], [1123.515, 2.83726793572, 415.5524906121], [1017.258, 3.71698151814, 227.5261894396], [848.643, 3.19149825839, 209.3669421749], [1087.237, 4.18343232481, 2.4476805548], [956.752, 0.50740889886, 1265.5674786264], [789.205, 5.00745123149, 0.9632078465], [686.965, 1.74714407827, 1052.2683831884], [654.47, 1.59889331515, 0.0481841098], [748.811, 2.14398149298, 853.196381752], [633.98, 2.29889903023, 412.3710968744], [743.584, 5.25276954625, 224.3447957019], [852.677, 3.42141350697, 175.1660598002], [579.857, 3.09259007048, 74.7815985673], [624.904, 0.97046831256, 210.1177017003], [529.861, 4.44938897119, 117.3198682202], [542.643, 1.51824320514, 9.5612275556], [474.279, 5.47527185987, 742.9900605326], [448.542, 1.28990416161, 127.4717966068], [546.358, 2.12678554211, 350.3321196004], [478.054, 2.96488054338, 137.0330241624], [354.944, 3.0128648303, 838.9692877504], [451.827, 1.04436664241, 490.3340891794], [347.413, 1.53928227764, 340.7708920448], [343.475, 0.24604039134, 0.5212648618], [309.001, 3.49486734909, 216.4804891757], [322.185, 0.96137456104, 203.7378678824], [372.308, 2.27819108625, 217.2312487011], [321.543, 2.57182354537, 647.0108333148], [330.196, 0.24715617844, 1581.959348283], [249.116, 1.47010534421, 1368.660252845], [286.688, 2.37043745859, 351.8165923087], [220.225, 4.20422424873, 200.7689224658], [277.775, 0.40020408926, 211.8146227297], [204.5, 6.010822066, 265.9892934775], [207.663, 0.48349820488, 1162.4747044078], [208.655, 1.34516255304, 625.6701923124], [182.454, 5.49122292426, 2.9207613068], [226.609, 4.91003163138, 12.5301729722], [207.659, 1.283022189, 39.3568759152], [173.914, 1.86305806814, 0.7507595254], [184.69, 3.50344404958, 149.5631971346], [183.511, 0.97254952728, 4.192785694], [146.068, 6.23102544071, 195.1398481733], [164.541, 0.4400551752, 5.4166259714], [147.526, 1.53529320509, 5.6290742925], [139.666, 4.29450260069, 21.3406410024], [131.283, 4.06828961903, 10.2949407385], [117.283, 2.67920400584, 1155.361157407], [149.299, 5.73594349789, 52.6901980395], [122.373, 1.97588777199, 4.665866446], [113.747, 5.59427544714, 1059.3819301892], [102.702, 1.19748124058, 1685.0521225016], [118.156, 5.340729339, 554.0699874828], [109.275, 3.43812715686, 536.8045120954], [110.399, 0.1660402409, 1.4844727083], [124.969, 6.27737805832, 1898.3512179396], [89.949, 5.80392934702, 114.1384744825], [103.956, 2.19210363069, 88.865680217], [112.437, 1.10502663534, 191.2076949102], [106.57, 4.01156608514, 956.2891559706], [91.43, 1.8752157751, 38.1330356378], [83.791, 5.48810655641, 0.1118745846], [83.461, 2.28972767279, 628.8515860501], [96.987, 4.53666595763, 302.164775655], [100.631, 4.96513666539, 269.9214467406], [75.491, 2.18045274099, 728.762966531], [96.33, 2.8331918921, 275.5505210331], [82.363, 3.05469876064, 440.8252848776], [73.888, 5.08914205084, 1375.7737998458], [71.633, 5.1094074343, 65.2203710117], [70.409, 4.86846451411, 0.2124483211], [69.76, 3.71029022489, 14.977853527], [88.772, 3.86334563977, 278.5194664497], [68.09, 0.7341546099, 1478.8665740644], [66.501, 0.02677580336, 70.8494453042], [65.682, 2.02165559602, 142.4496501338], [75.765, 1.61410487792, 284.1485407422], [63.153, 3.49493353034, 479.2883889155], [62.539, 2.58713611532, 422.6660376129], [69.313, 3.43979731402, 515.463871093], [79.021, 4.45154941586, 35.4247226521], [63.664, 3.31749528708, 62.2514255951], [52.939, 5.51392725227, 0.2606324309], [53.011, 3.18480701697, 8.0767548473], [54.492, 2.45674090515, 22.0914005278], [50.514, 4.26749346978, 99.1606209555], [55.17, 0.9679744615, 942.062061969], [49.288, 2.38641424063, 1471.7530270636], [47.199, 2.02515248245, 312.1990839626], [61.08, 1.50295092063, 210.8514148832], [45.126, 0.93109376473, 2001.4439921582], [60.556, 2.68715551585, 388.4651552382], [43.452, 2.52602011714, 288.0806940053], [42.544, 3.81793980322, 330.6189636582], [39.915, 5.713786529, 408.4389436113], [50.145, 6.03164759907, 2214.7430875962], [45.86, 0.54229721801, 212.3358875915], [54.165, 0.78154835399, 191.9584544356], [47.016, 4.59934671151, 437.6438911399], [42.362, 1.90070070955, 430.5303441391], [39.722, 1.63259419913, 1066.49547719], [36.345, 0.84756992711, 213.3472795478], [35.468, 4.18603772925, 215.7467759928], [36.344, 3.93295730315, 213.2509113282], [38.005, 0.31313803095, 423.4167971383], [44.746, 1.12488341174, 6.1503391543], [37.902, 1.19795851115, 2.7083129857], [43.402, 1.37363944007, 563.6312150384], [43.764, 3.93043802956, 525.4981794006], [34.825, 1.01566605408, 203.0041546995], [31.755, 1.69273634405, 0.1600586944], [30.88, 6.13525703832, 417.0369633204], [36.388, 6.00586032647, 18.1592472647], [29.032, 1.19660544505, 404.5067903482], [32.812, 0.53649479713, 107.0249274817], [30.433, 0.72335287989, 222.8603229936], [32.644, 0.81204701486, 1795.258443721], [37.769, 3.69666903716, 1272.6810256272], [27.679, 1.45663979401, 7.1617311106], [27.187, 1.89731951902, 1045.1548361876], [37.699, 4.51997049537, 24.3790223882], [34.885, 4.46095761791, 214.2623032845], [32.65, 0.66372395761, 692.5874843535], [30.324, 5.30369950147, 33.9402499438], [27.48, 6.22702216249, 1.2720243872], [26.657, 4.56713198392, 7.065362891], [31.745, 5.49798599565, 56.6223513026], [28.05, 5.64447420566, 128.9562693151], [24.277, 3.93966553574, 414.0680179038], [32.017, 5.22260660455, 92.0470739547], [26.976, 0.06705123981, 205.2223405907], [22.974, 3.6581775177, 207.6700211455], [31.775, 5.59198119173, 6069.7767545534], [23.153, 2.10054506119, 1788.1448967202], [31.025, 0.37190053329, 703.6331846174], [29.376, 0.14742155778, 131.4039498699], [22.562, 5.24009182383, 212.7778305762], [26.185, 5.41311252822, 140.001969579], [25.673, 4.36038885283, 32.2433289144], [20.392, 2.8241390926, 429.7795846137], [20.659, 0.67091805084, 2317.8358618148], [24.397, 3.08740396398, 145.6310438715], [23.735, 2.54365387567, 76.2660712756], [20.157, 5.06708675157, 617.8058857862], [23.307, 3.97357729211, 483.2205421786], [22.878, 6.10452832642, 177.8743727859], [22.978, 3.20140795404, 208.633228992], [20.638, 5.22128727027, 6.592282139], [21.446, 0.72034565528, 1258.4539316256], [18.034, 6.11382719947, 210.3783341312], [22.38, 5.92299908546, 173.9422195228], [19.128, 5.77772013766, 213.8203602998], [20.871, 5.79126331864, 2531.1349572528], [19.327, 1.64147367403, 565.1156877467], [16.806, 3.27953583323, 98.8999885246], [20.833, 2.01655935909, 860.3099287528], [17.939, 3.14329498012, 831.8557407496], [15.653, 3.10137669623, 106.2741679563], [18.235, 5.22595172482, 73.297125859], [19.302, 5.9394711405, 425.1137181677], [14.514, 2.75049388379, 1.2238402774], [14.562, 5.18795088579, 305.3461693927], [14.254, 3.88079504939, 54.1746707478], [14.594, 3.25016810034, 78.7137518304], [13.637, 2.55486219141, 405.2575498736], [13.914, 1.72356993808, 69.1525242748], [13.689, 2.37430586272, 125.9873238985], [13.496, 0.82683590985, 99.9113804809], [18.483, 0.73171264866, 9999.986450773], [13.542, 3.58584380924, 234.6397364404], [13.741, 6.18458356845, 245.5424243524], [16.944, 0.72200792996, 2111.6503133776], [17.441, 0.23803796878, 134.5853436076], [14.181, 4.51963935804, 59.8037450403], [13.598, 2.53776983965, 1.6969210294], [12.24, 2.11973445754, 28.3111756513], [11.988, 1.62114832786, 1361.5467058442], [11.974, 4.0737873512, 280.9671470045], [12.758, 5.31146919749, 344.7030453079], [16.051, 3.97093160336, 355.7487455718], [11.427, 5.51123470805, 192.6921676185], [13.133, 4.69168003518, 767.3690829208], [14.746, 3.28998910617, 1589.0728952838], [11.417, 1.81615681635, 2104.5367663768], [11.626, 2.79410384978, 362.8622925726], [13.234, 4.16642914717, 225.8292684102], [10.599, 5.50554288376, 199.2844497575], [10.558, 3.57501718639, 1.4362885985], [10.485, 2.84462532686, 85.8272988312], [10.296, 0.22225264071, 198.321241911], [10.552, 0.18716643576, 217.491881132], [11.853, 0.11584857323, 7.6348118626], [10.248, 0.2190415417, 144.1465711632], [10.403, 1.68776321208, 31.019488637], [10.313, 4.72132701805, 216.2198567448], [10.719, 2.60869377832, 339.2864193365], [9.636, 3.66746262954, 212.5483359126], [9.631, 3.34275630477, 223.5940361765], [9.684, 0.41556436593, 2634.2277314714], [9.885, 4.01798130416, 207.1487562837], [13.212, 6.00683506785, 214.7835681463], [11.346, 2.61898383052, 7.8643065262], [9.158, 5.39855118256, 342.2553647531], [11.882, 4.00188476744, 267.4737661858], [12.054, 3.59904816676, 124.433415221], [8.921, 4.22716773496, 6.3627874754], [10.142, 3.60807025662, 14.0146456805], [9.35, 0.72255756005, 347.8844390456], [10.529, 2.36779614951, 831.1049812242], [8.587, 4.48439552745, 1692.1656695024], [10.142, 3.93620624488, 207.8824694666], [9.147, 4.28032835242, 312.4597163935], [8.088, 0.81225752596, 264.5048207692], [9.241, 4.26402650779, 20.6069278195], [9.614, 0.64291347187, 218.9281697305], [8.537, 0.48756672382, 1574.8458012822], [7.986, 4.71088791079, 333.657345044], [8.951, 0.90641577433, 497.4476361802], [7.959, 2.73277594136, 4.1446015842], [9.133, 5.08250578843, 241.6102710893], [9.669, 1.60623316904, 0.8937718773], [8.883, 5.55491009279, 2847.5268269094], [8.926, 5.80857835271, 329.7251917809], [7.226, 0.60164771281, 206.233732547], [7.655, 5.53676341721, 116.4260963429], [7.118, 0.18747501525, 209.106309744], [7.507, 5.43555636173, 621.7380390493], [8.885, 5.36210591059, 343.2185725996], [7.056, 0.41911130648, 756.3233826569], [8.124, 4.05571025939, 237.6781178262], [8.964, 1.6502392713, 210.3301500214], [6.961, 3.17855200943, 543.0242872189], [8.916, 0.56503620503, 2428.0421830342], [6.926, 3.66869171435, 247.2393453818], [8.982, 4.25046722481, 46.470422916], [7.089, 5.14399672225, 231.4583427027], [7.381, 1.25092810119, 217.964961884], [7.134, 2.83090354854, 1148.2476104062], [6.353, 0.82582711056, 31.492569389], [7.558, 5.62617378543, 518.6452648307], [6.383, 3.54809945181, 244.318584075], [6.914, 3.70012837706, 206.1373643274], [6.286, 5.79144749096, 179.3588454942], [6.639, 4.55197585824, 120.358249606], [5.823, 1.40737990571, 214.0498549634], [5.85, 4.86725483749, 320.3240229197], [6.213, 1.07959478499, 251.4321310758], [7.73, 3.82244175824, 380.12776796], [5.716, 1.34909972549, 1677.9385755008], [6.469, 1.34776801494, 188.9200730498], [5.668, 2.28643368177, 20.4468691251], [6.092, 3.62275289839, 1169.5882514086], [5.711, 0.51687421521, 148.0787244263], [5.804, 1.54831552984, 2420.9286360334], [5.703, 5.0599348323, 2.9689454166], [5.913, 1.66225477547, 842.1506814881], [7.449, 1.36195943673, 166.828672522], [6.482, 1.94032041024, 357.4456666012], [6.368, 2.44556930837, 654.1243803156], [6.327, 0.40654591365, 168.0525127994], [5.573, 2.69383455663, 750.1036075334], [7.216, 2.22547711392, 488.8496164711], [6.701, 6.03737590382, 160.6088973985], [6.938, 5.7836203441, 700.6642392008], [6.701, 3.14738404371, 491.8185618877], [5.684, 2.59531540359, 1.6445314027], [4.9, 2.03902856851, 0.8031491521], [5.147, 4.10182033298, 196.6243208816], [4.985, 2.96765983996, 258.8757464767], [5.911, 1.81507526918, 252.6559713532], [6.056, 3.33431010543, 182.279606801], [6.195, 5.01900871714, 273.1028404783], [6.316, 5.49053160191, 206.706813299], [5.529, 3.31498938717, 1905.4647649404], [5.102, 3.9817145361, 254.9435932136], [4.762, 2.24463685255, 635.9651330509], [5.213, 0.53609344278, 135.5485514541], [4.639, 0.04466373027, 213.1872208534], [5.951, 0.5456548749, 51.2057253312], [4.535, 0.16088614438, 2950.619601128], [4.639, 4.73769153591, 213.4109700226], [4.716, 3.13636467789, 28.5718080822], [4.748, 1.12156952989, 6.2197751235], [5.735, 0.04425142145, 348.8476468921], [4.334, 2.68814219154, 81.7521332162], [4.538, 3.83676888638, 487.3651437628], [5.582, 3.63486861028, 248.7238180901], [4.106, 3.39164360376, 50.4025761791], [5.657, 3.59967787362, 282.4516197128], [5.145, 1.33329458239, 173.6815870919], [3.898, 4.11804949361, 213.5115437591], [3.898, 0.66430577257, 213.0866471169], [4.418, 0.10784811796, 905.8865797915], [4.935, 2.19060382431, 189.7232222019], [3.799, 2.60752583205, 546.956440482], [3.96, 1.6033988901, 218.7157214094], [3.74, 3.30724497407, 274.0660483248], [3.778, 0.26606330942, 636.7158925763], [4.657, 0.37532078548, 2744.4340526908], [3.682, 5.11587898667, 458.8415197904], [4.23, 5.18313062329, 27.0873353739], [5.181, 3.75590784411, 3127.3133312618], [3.904, 2.21738744557, 358.9301393095], [4.784, 4.60666675927, 72.0732855816], [3.552, 3.23789349146, 543.9180590962], [3.502, 3.68869576093, 41.6444977756], [4.803, 4.73553427126, 240.3864308119], [3.768, 3.86077796242, 2008.557539159], [3.68, 5.36657425183, 10.0343083076], [4.298, 3.15595944154, 738.7972748386], [3.388, 0.73176365772, 11.3063326948], [3.507, 2.62508475661, 13.3333221243], [3.552, 0.28967392251, 1891.2376709388], [3.604, 4.6932409048, 295.0512286542], [3.621, 6.25264336426, 129.9194771616], [3.334, 5.04221806054, 153.4953503977], [3.837, 5.31732096284, 3163.918696566], [3.281, 5.59031570352, 2.0057375701], [4.042, 2.3708130809, 176.6505325085], [3.5, 2.5474426836, 1464.6394800628], [4.144, 5.46982520458, 6.9010986797], [3.691, 4.07518441665, 969.6224780949], [3.947, 4.27108449197, 181.806526049], [3.867, 5.4864338631, 37.8724032069], [3.339, 6.05372370584, 9.4011688612], [3.484, 5.81097824751, 13.4933808187], [3.033, 2.38897886651, 221.3758502853], [2.99, 4.13995939326, 66.70484372], [3.746, 5.29902286106, 561.1835344836], [3.233, 4.27743802321, 593.426863398], [3.17, 1.7540047777, 235.3904959658], [4.114, 2.01006788412, 601.7642506762], [2.937, 4.76351448561, 213.5597278689], [2.932, 1.83671373509, 501.3797894433], [2.937, 0.01884528825, 213.0384630071], [3.268, 4.44653949711, 60.7669528868], [3.608, 0.14307251176, 552.5855147745], [2.947, 0.74753671556, 17.5261078183], [3.979, 0.76931722276, 424.1505103212], [2.803, 1.07518176128, 1994.3304451574], [2.905, 1.27201007426, 2737.32050569], [3.61, 0.22394084, 121.2520214833], [2.846, 5.11748545179, 205.6642835754], [3.156, 2.74955723696, 494.2662424425], [3.576, 4.49826302447, 167.0893049529], [2.746, 0.66908290712, 7.0016724162], [2.78, 2.10066625279, 894.8408795276], [2.875, 2.39009721774, 151.0476698429], [3.02, 0.2547582689, 40.8413486235], [2.731, 3.74814908509, 429.0458714308], [2.793, 4.1793883723, 292.0128472684], [2.706, 5.34438894925, 327.4375699205], [2.965, 0.61653881148, 643.8294395771], [2.616, 4.8190138756, 681.5417840896], [2.548, 3.7816258082, 1485.9801210652], [3.483, 5.76091147029, 141.2258098564], [3.257, 0.75722680616, 555.5544601911], [2.887, 6.15899159727, 425.6349830295], [2.45, 1.29619859767, 193.655375465], [3.401, 2.48137843009, 43.2890291783], [3.208, 0.6600284234, 776.9303104764], [2.435, 4.58097103726, 477.8039162072], [2.577, 1.41538858001, 100.6450936638], [2.6, 3.73139519973, 17.4084877393], [2.428, 1.04400815278, 1279.794572628], [2.569, 5.36004101928, 7.2254215854], [2.844, 2.4722876765, 280.003939158], [2.847, 1.52706408796, 17.2654753874], [2.461, 2.73899140465, 172.2452984934], [3.228, 4.10258705369, 618.5566453116], [2.288, 0.18365494079, 426.6463749858], [2.952, 3.97748947007, 650.9429865779], [2.653, 0.14255829255, 162.8965192589], [2.291, 3.26940117011, 426.5500067662], [3.118, 2.80941831445, 2221.856634597], [2.343, 4.24349768377, 113.3877149571], [2.78, 4.36271946528, 130.4407420234], [2.539, 5.58396427573, 381.3516082374], [2.673, 2.74210116623, 45.5766510387], [3.017, 3.7220807074, 228.276948965], [2.781, 0.36312756349, 8.5980197091], [2.377, 4.49193242045, 25.1297819136], [2.14, 5.43424670725, 630.3360587584], [2.456, 1.71617205116, 313.6835566709], [2.071, 2.40453395841, 16.4623262353], [2.05, 6.19704773331, 3267.0114707846], [2.764, 0.40107063007, 219.4494345923], [2.307, 2.61462153778, 26.826702943], [2.65, 0.05892373791, 5856.4776591154], [1.974, 2.15890150781, 746.9222137957], [1.949, 3.13157993205, 226.6324175623], [2.063, 0.75916097286, 472.1748419147], [2.172, 1.41622302638, 23.5758732361], [2.378, 3.45446288811, 241.8709035202], [2.314, 2.92766120608, 170.7608257851], [2.409, 1.55291842382, 112.6540017742], [2.092, 4.33481587531, 210.5907824523], [1.883, 4.75777119721, 115.6229471908], [1.963, 5.63940648232, 454.9093665273], [1.871, 2.14579836453, 135.336103133], [2.304, 0.11816226543, 3060.8259223474], [2.221, 4.34506511014, 556.5176680376], [1.867, 5.70943358261, 19.1224551112], [2.269, 3.36100653157, 696.5196376166], [2.127, 0.4475492931, 216.0074084237], [1.807, 6.1542731617, 5.8415226136], [2.213, 3.42223891884, 533.6231183577], [1.866, 3.90535444843, 220.364458329], [1.767, 0.94232357739, 213.4591541324], [1.767, 3.84003619647, 213.1390367436], [1.91, 3.72504487558, 104.0559820651], [1.75, 0.82378244287, 220.4608265486], [1.838, 0.06310147657, 436.1594184316], [2.146, 4.41415180481, 184.0941479094], [1.73, 2.21039276178, 416.3032501375], [1.715, 0.26601715797, 103.1409583284], [1.71, 0.6351540758, 181.0557665236], [2.307, 3.29544714308, 569.0478410098], [1.906, 5.30639447218, 405.9912630565], [1.863, 4.68613642432, 286.596221297], [1.873, 2.26516020863, 1781.0313497194], [2.035, 3.85188859267, 672.1406152284], [2.236, 3.01959133214, 105.5404547734], [1.767, 1.45800271562, 16.6747745564], [1.633, 0.16030477876, 18.9100067901], [2.116, 2.90186702031, 486.4019359163], [2.202, 3.88125957017, 427.5613987225], [1.706, 3.35213628354, 103.0445901088], [1.604, 2.48973273967, 55.6591434561], [1.744, 1.83791106739, 1044.4040766622], [1.569, 6.10089581118, 106.0135355254], [2.081, 6.03810192844, 916.9322800554], [1.799, 5.01592570405, 731.9443602687], [1.737, 1.49651330833, 25.8634950965], [1.695, 3.53314158403, 627.3671133418], [1.543, 0.81384993001, 2310.722314814], [1.896, 3.38169845451, 2324.9494088156], [1.926, 4.66519027283, 353.301065017], [1.765, 5.14740716994, 107.2855599126], [1.556, 1.12431826916, 230.8252032563], [1.843, 0.02435960281, 102.1295663721], [1.501, 4.18415120927, 194.1766403268], [1.528, 1.00328674046, 3053.7123753466], [1.529, 5.58893570479, 212.0270710508], [1.684, 5.08547245125, 3480.3105662226], [1.461, 2.31020597821, 721.6494195302], [1.48, 5.34331643017, 418.5214360287], [1.601, 5.53623000915, 391.1734682239], [1.893, 3.62340803433, 204.7010757289], [1.529, 6.06535432009, 77.962992305], [1.529, 5.47660937625, 214.5711198252], [1.552, 2.06693539836, 36.6485629295], [1.453, 6.04709831442, 165.6048322446], [1.393, 2.2825336906, 403.0223176399], [1.444, 2.90650214018, 447.9388318784], [1.924, 1.37028714759, 468.2426886516], [1.426, 0.13255011458, 2207.6295405954], [1.389, 2.21739183113, 643.0786800517], [1.365, 1.63853880518, 629.6023455755], [1.362, 3.35131049142, 93.531546663], [1.376, 5.3698953845, 180.1619946463], [1.584, 0.85642767335, 271.4059194489], [1.405, 5.69231057947, 25.2727942655], [1.681, 5.30308110734, 835.0371344873], [1.598, 3.04233449432, 42.5382696529], [1.759, 3.5904306694, 508.3503240922], [1.394, 4.5507086329, 426.0769260142], [1.314, 1.81147178081, 1382.8873468466], [1.281, 4.2650838804, 123.5396433437], [1.742, 5.71133189432, 22.8945496799], [1.483, 1.84687831602, 289.5651667136], [1.257, 3.01131200921, 409.9234163196], [1.285, 4.41168551011, 558.0021407459], [1.355, 3.87115897452, 1802.3719907218], [1.333, 0.08474224795, 411.620337349], [1.235, 4.08060394635, 28.4541880032], [1.373, 5.06955106471, 427.1194557378], [1.565, 2.32953532704, 41.0537969446], [1.656, 6.06169130804, 268.4369740323], [1.212, 3.05966957556, 420.9691165835], [1.238, 5.25936700679, 412.5835451955], [1.22, 3.92987038126, 2.6601288759], [1.552, 1.48184004773, 9786.687355335], [1.24, 1.46716327302, 291.262087743], [1.133, 5.39046583617, 423.6774295692], [1.319, 5.79905891015, 1108.1399749656], [1.329, 0.92291650117, 778.4147831847], [1.399, 2.55906860098, 421.93232443], [1.12, 3.86777259232, 1033.3583763983], [1.164, 4.10048660918, 685.4739373527], [1.321, 1.45843550806, 1073.6090241908], [1.313, 0.11761534168, 71.8126531507], [1.438, 2.57741975416, 100.3844612329], [1.19, 5.63379509659, 5.1078094307], [1.289, 5.20604565993, 278.2588340188], [1.157, 5.00101860101, 230.5645708254], [1.233, 2.70207317014, 282.6640680339], [1.209, 4.02230498135, 980.6681783588], [1.07, 5.17569455055, 313.2104759189], [1.292, 4.30946655209, 219.891377577], [1.399, 2.58476795858, 2538.2485042536], [1.038, 0.1421219968, 820.0592809603], [1.245, 4.0827889713, 525.7588118315], [1.254, 2.46275017735, 457.617679513], [1.021, 1.11239421009, 69.3649725959], [1.009, 1.01709171385, 143.9341228421], [1.075, 2.39196853318, 48.7580447764], [1.18, 6.18938910429, 3377.217792004], [0.989, 5.94928603657, 3583.4033404412], [0.972, 4.25434114756, 397.3932433474], [0.983, 0.04442608551, 140.9651774255], [0.972, 5.67683107883, 422.405405182], [1.298, 1.34524469231, 875.830299001], [1.19, 0.67933974618, 699.7010313543], [0.95, 2.669643407, 92.3077063856], [0.933, 0.6300065658, 406.954470903], [0.959, 1.77556884452, 67.6680515665], [1.185, 3.70140604185, 285.6330134505], [0.956, 5.18928530992, 319.3126309634], [1.014, 1.97449310063, 2097.423219376], [1.048, 3.69659410655, 117.9105690512], [1.153, 2.53320305623, 104.5772469269], [1.258, 2.51536062507, 694.0719570618], [0.971, 5.19147635849, 240.125798381], [0.94, 3.94701776697, 35.212274331], [1.047, 6.1236097946, 238.9019581036], [1.185, 5.28289734361, 638.4128136057], [0.893, 0.95364488395, 14.8177948326], [1.094, 3.9300967924, 945.2434557067], [0.949, 3.46451925897, 443.8636662634], [1.002, 3.18639902867, 337.732510659], [1.017, 2.87111101661, 211.6021744086], [0.875, 0.58638080067, 2.2876218604], [0.925, 1.54981519784, 19.643719973], [1.152, 1.6852860859, 691.1030116452], [0.832, 2.64637256467, 436.8931316145], [0.834, 3.8891352157, 331.2096644892], [0.825, 2.1543787221, 739.8086667949], [0.848, 3.182632391, 196.0336200506], [1.044, 3.87842686803, 532.6117264014], [0.846, 5.38853773752, 97.6761482472], [1.021, 2.93075488512, 184.9879197867], [0.843, 6.12012061227, 616.3214130779], [0.82, 1.01380400969, 480.7728616238], [0.842, 3.56523575381, 421.1815649046], [1.076, 3.28234305253, 5.6772584023], [0.808, 2.78227865672, 212.0752551606], [0.812, 0.94281737163, 108.7218485111], [0.808, 2.21202653278, 610.6923387854], [0.808, 2.00008111713, 214.5229357154], [0.875, 2.14897461363, 114.3991069134], [0.791, 2.35474255596, 1.3725981237], [0.96, 0.25496742364, 710.7467316182], [1.001, 2.34471240227, 16.04163511], [0.994, 0.63700664871, 84.9335269539], [0.985, 2.63664920104, 395.578702239], [0.874, 2.59112594967, 418.0001711669], [0.758, 0.58117487362, 2627.1141844706], [0.894, 1.48976897396, 760.25553592], [0.768, 5.25095392845, 305.0855369618], [1.02, 2.73153988233, 268.9582388941], [0.903, 0.13224671457, 238.4288773516], [0.75, 0.76128043194, 724.8308132679], [0.903, 3.3710532337, 526.5095713569], [0.93, 2.8362259411, 2641.3412784722], [0.808, 5.23759255053, 216.2680408546], [0.864, 1.22059443823, 570.7447620392], [0.798, 3.72388187653, 124.5028511902], [0.753, 0.72747041757, 3370.1042450032], [0.844, 2.0325176781, 511.5317178299], [0.827, 4.49936223096, 444.7574381407], [0.848, 3.74330244183, 2118.7638603784], [0.795, 0.27939057139, 101.8689339412], [0.754, 5.68583497533, 662.531203563], [0.75, 4.78778128003, 102.5715093568], [0.709, 1.64518562815, 159.1244246902], [0.77, 4.0240499195, 909.8187330546], [0.765, 1.62693133597, 465.9550667912], [0.911, 5.04635658282, 913.9633346388], [0.861, 2.78971410809, 495.7507151508], [0.688, 1.10207467005, 1.536862335], [0.803, 4.3304391909, 453.424893819], [0.673, 0.03439333853, 2524.021410252], [0.856, 3.50639182375, 439.1283638482], [0.684, 3.93906807606, 337.8019466282], [0.716, 6.18909854987, 310.7146112543], [0.922, 1.7063420032, 125.1841747464], [0.885, 1.69955870744, 6283.0758499914], [0.656, 1.28102954508, 432.0148168474], [0.808, 1.64410808383, 299.1263942692], [0.656, 1.4944916462, 849.2642284889], [0.679, 4.0296298449, 429.5189521828], [0.854, 3.04068731741, 298.2326223919], [0.676, 2.17631477883, 576.1613880106], [0.881, 5.47733557925, 220.9339073006], [0.739, 5.85330901725, 938.1299087059], [0.637, 2.96294462433, 425.8474313506], [0.665, 1.62998758015, 221.1634019642], [0.693, 3.538716976, 1182.9215735329], [0.659, 1.85319023888, 72.3339180125], [0.631, 2.01234919422, 58.1068240109], [0.806, 5.21763933753, 428.0826635843], [0.804, 5.94281804567, 26.0235537909], [0.679, 2.1178446094, 256.4280659219], [0.692, 1.88791537515, 214.9960164674], [0.731, 1.95762888351, 19.0105805266], [0.786, 0.91252523635, 518.3846323998], [0.684, 4.89288171806, 3796.7024358792], [0.612, 2.08511492036, 1038.0412891868], [0.598, 3.48814927085, 219.6618829134], [0.828, 0.316894722, 25.6028626656], [0.773, 4.57524006328, 624.919432787], [0.775, 6.12920077021, 432.2272651685], [0.82, 4.1132032613, 141.4864422873], [0.588, 1.95775535412, 211.8628068395], [0.661, 5.30100397707, 103.6140390804], [0.588, 2.82460441973, 214.7353840365], [0.651, 5.56732715834, 393.4610900843], [0.564, 4.01666572198, 850.0149880143], [0.657, 2.58166087726, 526.9826521089], [0.722, 0.6849421948, 953.1077622329], [0.592, 2.3719066249, 205.4347889118], [0.738, 1.07981019512, 239.1625905345], [0.59, 6.03587790219, 188.0263011725], [0.559, 5.76010635813, 430.79097657], [0.535, 5.80499883199, 100.1720129118], [0.611, 5.954393601, 3693.6096616606], [0.591, 4.22379888536, 505.3119427064], [0.691, 2.96568305933, 606.7601855223], [0.648, 2.33387623043, 30.7588562061], [0.544, 2.21686115865, 92.7978334801], [0.517, 2.68282421083, 262.0571402144], [0.563, 1.69735688719, 2413.8150890326], [0.569, 2.85075508949, 227.3137411185], [0.531, 2.17713708433, 263.0203480609], [0.504, 4.44947885193, 343.7398374614], [0.578, 3.31462999801, 33.7278016227], [0.619, 1.83409636127, 867.4234757536], [0.546, 4.82201187196, 1048.3362299253], [0.517, 1.42016110098, 1246.6574718363], [0.681, 1.94124532036, 25874.6040461362], [0.551, 5.70617358907, 1119.1856752295], [0.523, 5.78878978812, 366.7944458357], [0.486, 1.90063955671, 1063.3140834523], [0.552, 3.64325031166, 256.5881246163], [0.612, 2.39349965241, 2854.6403739102], [0.495, 3.4683358124, 597.3590166611], [0.622, 1.86539391351, 524.0137066923], [0.48, 5.33557742428, 29.2049475286], [0.492, 4.64109549618, 384.0599212231], [0.52, 2.32171681836, 2957.7331481288], [0.545, 0.5327477871, 431.264057322], [0.479, 2.1332517724, 319.5732633943], [0.526, 4.17771910249, 136.0698163159], [0.612, 4.56148986681, 774.4826299216], [0.642, 3.25195912708, 67.8804998876], [0.527, 4.00299045889, 2435.155730035], [0.524, 4.69817741494, 336.8387387817], [0.495, 5.95703962647, 765.8846102125], [0.463, 6.097803226, 54.3347294422], [0.538, 0.22116216124, 450.9772132642], [0.465, 1.87487942848, 958.576777831], [0.5, 1.54084756342, 572.2292347475], [0.528, 3.54764543325, 233.9060232575], [0.451, 5.72664397006, 3899.7952100978], [0.514, 5.00509609437, 273.8536000037], [0.471, 2.96871670899, 306.830642101], [0.447, 1.87279400375, 62.038977274], [0.456, 5.4552199852, 1171.875873269], [0.499, 1.9282177853, 217.4436970222], [0.548, 3.21873307934, 824.7421937488], [0.579, 2.29424247924, 810.6581120991], [0.55, 0.6787519659, 315.1680293792], [0.556, 1.30277646899, 133.1008708993], [0.449, 6.05954557724, 141.6988906084], [0.447, 5.83737433218, 823.9914342234], [0.517, 3.62832879827, 934.9485149682], [0.482, 1.04855231956, 1055.4497769261], [0.482, 4.07207792722, 195.8906076987], [0.428, 0.65142455407, 427.3489504014], [0.585, 5.48406138684, 376.1956146969], [0.469, 3.87344294455, 320.5846553506], [0.488, 2.8352396426, 460.5384408198], [0.45, 4.30419652064, 88.1149206916], [0.537, 0.85582040238, 214.1928673153], [0.438, 1.32216133929, 963.4027029714], [0.56, 2.50374228728, 952.0963702766], [0.442, 2.80002649649, 209.1544938538], [0.443, 4.31062007978, 9992.8729037722], [0.469, 0.45235276525, 464.7312265138], [0.488, 0.35817443686, 36.9091953604], [0.418, 4.81080887468, 775.233389447], [0.417, 4.93943593579, 306.0969289181], [0.483, 3.9284792242, 39.6175083461], [0.467, 1.89153069484, 30.0562807905], [0.41, 5.52148731635, 118.0706277456], [0.406, 1.35991757653, 945.9942152321], [0.446, 4.0665611248, 380.3884003909], [0.466, 3.65954736664, 988.532484885], [0.418, 1.40185532806, 313.9441891018], [0.481, 1.80873987903, 43.1289704839], [0.437, 0.86746182155, 170.9732741062], [0.483, 4.49894122772, 46.2097904851], [0.398, 2.90977731924, 131.5469622218], [0.529, 3.74604329884, 699.1797664925], [0.396, 0.34033987778, 2943.5060541272], [0.545, 2.97400965609, 305.6068018236], [0.412, 3.81935995126, 84.3428261229], [0.425, 2.60672101181, 121.8427223143], [0.474, 2.41769418569, 838.218528225], [0.457, 1.27246488727, 107.7586406646], [0.519, 3.12247974037, 10213.285546211], [0.495, 4.63705386984, 301.4140161296], [0.537, 3.92653937147, 212.4053235607], [0.385, 3.3347632505, 806.725958836], [0.477, 1.66001855277, 175.4266922311], [0.378, 0.47722247042, 200.5564741447], [0.459, 5.14821844812, 960.2213092337], [0.401, 4.36420932544, 739.0579072695], [0.467, 2.96423984091, 170.0100662597], [0.457, 4.45829983338, 33.1371007917], [0.476, 3.63257697985, 20.4950532349], [0.462, 3.57494442856, 71.6002048296], [0.376, 2.94770389653, 6062.6632075526], [0.473, 5.32759318114, 373.9079928365], [0.383, 1.84111991862, 346.3999663373], [0.366, 2.05039240297, 87.3117715395], [0.383, 2.00608370504, 3274.1250177854], [0.374, 5.65444305031, 540.7366653585], [0.41, 5.62629715297, 58.319272332], [0.441, 6.26992749567, 378.9039276826], [0.451, 3.05920369737, 898.7730327907], [0.371, 5.65787287655, 89.7594520943], [0.367, 5.71998148487, 96.8729990951], [0.41, 1.06290837961, 1257.7031721002], [0.418, 2.03053179312, 146.594251718], [0.492, 0.89529424356, 423.6292454594], [0.474, 2.43080822444, 705.1176573257], [0.457, 3.42347802916, 829.6205085159], [0.419, 0.32183412086, 90.5626012464], [0.347, 3.6011680744, 449.232108125], [0.397, 2.29159647723, 782.3469364478], [0.433, 3.40938468811, 32.4557772355], [0.343, 4.30952656038, 401.3253966105], [0.351, 0.42160026295, 3686.4961146598], [0.36, 5.83204569879, 491.5579294568], [0.389, 2.73429108352, 36.1754821775], [0.434, 0.33664392528, 55.1378785943], [0.346, 5.09191837323, 392.6579409322], [0.336, 2.38696934868, 295.1942410061], [0.336, 1.56832822829, 233.7459645631], [0.4, 3.08774286568, 745.9108218394], [0.468, 4.21298903633, 832.5894539325], [0.4, 1.32415028336, 551.1010420662], [0.344, 1.52193307438, 754.8389099486], [0.433, 3.06696455642, 885.4397106664], [0.346, 4.7697143387, 4113.0943055358], [0.329, 3.31034285904, 952.3570027075], [0.425, 2.90590905341, 462.0229135281], [0.342, 5.87738962422, 561.934294009], [0.439, 0.20791179302, 768.8535556291], [0.33, 2.08599193524, 614.6244920485], [0.394, 3.59805431851, 1261.6353253633], [0.369, 6.03075127328, 199.8057146193], [0.375, 2.56075851331, 732.6951197941], [0.408, 0.69233617038, 328.2407190726], [0.331, 4.2833330937, 541.5398145106], [0.323, 0.06694179304, 433.7599219866], [0.431, 4.5060334092, 2914.0142358238], [0.343, 2.18898146246, 80.1982245387], [0.437, 5.34124436008, 387.2413149608], [0.371, 4.82569229712, 103.3534066495], [0.318, 3.75720880396, 749.2098356561], [0.344, 0.70749566894, 229.9738699944], [0.312, 6.02741985422, 361.3778198643], [0.34, 0.64358874512, 303.8616966844], [0.394, 0.49801994278, 248.4631856592], [0.309, 5.83535487659, 236.1936451179], [0.325, 2.65292455786, 757.2171545342], [0.365, 0.56788400592, 402.2191684878], [0.342, 3.83450185886, 519.3960243561], [0.306, 0.35126074897, 354.9979860464], [0.314, 5.42086935152, 1151.4290041439], [0.384, 0.09367760642, 201.5196819912], [0.307, 5.62165090342, 426.4863162914], [0.301, 1.78550205039, 1354.4331588434], [0.3, 5.23426324539, 190.4045457581], [0.296, 3.15801280224, 192.8522263129], [0.381, 1.98600461808, 109.9456887885], [0.37, 5.57659190517, 562.1467423301], [0.305, 2.73187068494, 840.6662087798], [0.374, 3.73375594662, 420.4478517217], [0.307, 4.03149340189, 426.7100654606], [0.32, 1.426651801, 2730.2069586892], [0.392, 0.143432949, 206.3979967583], [0.288, 2.44787565138, 623.2225117576], [0.344, 1.57825843162, 6290.1893969922], [0.317, 1.84490263693, 214.9436268407], [0.346, 2.16849893508, 3171.0322435668], [0.286, 1.01623455966, 315.6411101312], [0.361, 3.44807605339, 259.769518354], [0.28, 4.64272946177, 254.1404440615], [0.285, 2.09430258387, 335.1418177523], [0.281, 4.72136141979, 317.142629182], [0.289, 4.70265740009, 29.7474642498], [0.29, 2.74360609522, 551.031606097], [0.3, 5.23308974173, 1321.4390704036], [0.283, 1.21193797828, 1699.2792165032], [0.28, 0.45877292284, 38.6061163898], [0.273, 1.81952809851, 1056.2005364515], [0.336, 5.63115066542, 95.2284676924], [0.309, 3.33676739908, 1193.9672737968], [0.288, 2.57603349418, 1166.4068576709], [0.277, 3.35359995343, 532.8723588323], [0.287, 0.37229115993, 114.9416236346], [0.274, 4.21164027953, 90.8232336773], [0.267, 5.61367132586, 870.4618571394], [0.376, 6.14391456675, 913.0001267923], [0.296, 5.75705165982, 4010.0015313172], [0.304, 1.97982468634, 495.9631634719], [0.308, 5.08911712262, 481.7360694703], [0.265, 0.02893016561, 172.4577468145], [0.291, 2.10106037916, 619.2903584945], [0.273, 4.78343050572, 771.3012361839], [0.358, 0.04093867464, 637.4496057592], [0.272, 5.86505586319, 332.1728723357], [0.266, 3.28626000731, 560.7104537316], [0.312, 3.91213951915, 1226.2106027112], [0.258, 3.41185135958, 426.8106391971], [0.257, 1.06772454181, 714.6788848813], [0.258, 6.24129294573, 426.3857425549], [0.256, 0.75289096697, 103.843533744], [0.254, 3.21116652124, 102.3420146932], [0.254, 6.14632777985, 620.253566341], [0.266, 2.54280196709, 132.8884225782], [0.314, 0.31303204249, 991.7138786227], [0.317, 2.93589163442, 357.2332182801], [0.266, 6.1228063667, 57.5161231799], [0.254, 2.99730079627, 642.3449668688], [0.267, 5.54663413439, 628.5909536192], [0.348, 1.33319249154, 815.0633461142], [0.278, 5.5957374192, 334.5511169213], [0.303, 3.22789148979, 409.1897031367], [0.246, 3.90430259983, 441.576044403], [0.26, 3.8635529353, 639.3760214522], [0.25, 0.07635434166, 2840.4132799086], [0.246, 5.71009371698, 476.3194434989], [0.301, 6.15272106984, 559.6990617753], [0.268, 3.73809606804, 658.0565335787], [0.316, 4.63035287047, 745.277682393], [0.311, 3.51827727424, 2751.5475996916], [0.239, 0.51133317457, 1041.2226829245], [0.238, 5.4634727942, 4216.1870797544], [0.262, 3.20254407166, 1251.3403846248], [0.238, 1.02679111743, 1262.3860848887], [0.277, 3.32996713394, 545.4719677737], [0.271, 0.49229846069, 419.532827985], [0.303, 3.77087511317, 285.3723810196], [0.234, 3.64328189368, 407.4757357648], [0.27, 3.93080966194, 313.4711083498], [0.302, 3.15201610429, 915.235359026], [0.264, 0.46127639727, 720.8986600048], [0.235, 1.74238582338, 369.0820676961], [0.284, 5.20345848078, 395.105621487], [0.295, 5.03016292492, 594.6507036754], [0.29, 1.94941528794, 907.3710524998], [0.229, 0.11049722694, 3259.8979237838], [0.304, 1.81516929363, 49.7212526229], [0.268, 5.54944666204, 12352.8526045448], [0.248, 4.39993603541, 385.5443939314], [0.234, 1.63365119249, 3590.516887442], [0.317, 4.74907646809, 420.005908737], [0.228, 4.89094697746, 1181.4371008246], [0.258, 2.41510535278, 550.1378342197], [0.236, 4.10002766188, 6467.9257579616], [0.249, 1.97767956861, 589.4947101349], [0.226, 1.60308230318, 316.279995072], [0.286, 6.10513234736, 484.7050148869], [0.299, 3.71741328977, 1123.1178284926], [0.263, 1.85502475341, 608.877797677], [0.22, 0.94624116595, 316.5037442412], [0.292, 3.12099513976, 47.6942631934], [0.217, 4.93010394323, 281.1795953256], [0.295, 3.18346450625, 1050.9963588012], [0.248, 5.48523310249, 638.9340784675], [0.276, 1.09325899753, 544.5087599272], [0.279, 2.65446123759, 134.1122628556], [0.247, 4.17284927352, 950.1388168163], [0.212, 2.45582771491, 1164.7623262682], [0.266, 2.30028827109, 314.9073969483], [0.215, 3.55148746518, 1097.0942747017], [0.223, 0.36862624591, 81.8951455681], [0.283, 0.35013012349, 1269.4996318895], [0.263, 0.58255768951, 386.9806825299], [0.208, 4.61303945066, 668.2084619653], [0.222, 4.51639912193, 304.1223291153], [0.274, 0.63572336701, 679.2541622292], [0.215, 0.74685271552, 1008.9793540101], [0.268, 3.43326489941, 598.8434893694], [0.271, 3.98364990268, 453.6855262499], [0.215, 2.24139383226, 661.2379273164], [0.264, 2.58516335032, 2527.2028039897], [0.205, 1.94472028389, 650.1922270525], [0.258, 1.50724315598, 1759.8337210689], [0.272, 6.27135287672, 990.2294059144], [0.201, 1.11891338895, 97.4155158163], [0.236, 4.13547185065, 348.635198571], [0.201, 2.67485193508, 1546.5346256309], [0.25, 5.44391862722, 1254.5217783625], [0.203, 5.48660442144, 557.0389328994], [0.25, 0.32142312427, 25448.00585526019], [0.198, 0.91019549387, 1310.3933701397], [0.2, 0.90438804926, 47.061123747], [0.194, 4.05730813129, 426.8588233069], [0.197, 0.58292199999, 156.6767441354], [0.197, 2.5938418852, 639.8491022042], [0.201, 1.49980256114, 827.9235874865], [0.197, 5.79126360809, 639.9454704238], [0.266, 1.45514683392, 109.2431133729], [0.239, 4.63640382863, 868.7167520002], [0.194, 5.59582424111, 426.3375584451], [0.247, 2.91348766248, 689.6185389369], [0.205, 1.04616771894, 448.6895914038], [0.232, 1.76503818816, 354.2642728635], [0.224, 3.45391027762, 1190.0351205337], [0.221, 6.27951545913, 1596.1864422846], [0.237, 1.24961141369, 882.9438460018], [0.206, 5.17010664247, 253.4591205053], [0.203, 0.25518217825, 4002.8879843164], [0.245, 3.94368773869, 769.8167634756], [0.255, 6.1179075155, 763.4369296577], [0.194, 2.83197251801, 263.7016716171], [0.237, 2.1400737388, 2700.7151403858], [0.203, 3.00078001542, 1385.174968707], [0.203, 3.88000057282, 419.4364597654], [0.186, 4.79530535895, 843.6351541964], [0.203, 0.16707173895, 535.9107402181], [0.245, 0.76762638475, 5643.1785636774], [0.183, 2.20151176434, 35.1640902212], [0.242, 3.41613986919, 864.2420820159], [0.249, 3.47840802421, 1045.8885493705], [0.199, 4.70077509959, 1276.6131788903], [0.189, 1.8424761039, 434.6749457233], [0.192, 3.83148077309, 666.723989257], [0.201, 1.34290804373, 1012.9115072732], [0.21, 5.12097279511, 3494.5376602242], [0.192, 1.36630036429, 904.4021070832], [0.195, 1.62629576534, 364.3467652809], [0.179, 1.6650299905, 244.791664827], [0.186, 4.55663748319, 347.4113582936], [0.201, 0.5021968074, 36.3879304986], [0.179, 4.55153097409, 97.4636999261], [0.2, 0.68398141887, 2015.6710861598], [0.195, 2.20599546209, 66.1835788582], [0.186, 4.48925201018, 611.4430983108], [0.186, 3.13663606153, 433.663553767], [0.177, 3.62811326217, 326.6868103951], [0.206, 0.38552475035, 857.1285350151], [0.229, 1.22330638216, 2906.900688823], [0.213, 6.08436923028, 271.61836777], [0.174, 6.18833529233, 3576.2897934404], [0.22, 2.89866380776, 322.6116447801], [0.202, 2.43755817264, 812.1425848074], [0.211, 4.27999470527, 1127.2624300768], [0.188, 0.97173474238, 1080.7225711916], [0.168, 0.65008064023, 1493.093668066], [0.208, 4.68942071563, 5429.8794682394], [0.182, 0.76058628096, 504.561183181], [0.167, 6.22608046965, 108.50940019], [0.176, 2.08816807487, 670.916774951], [0.17, 1.55680702386, 1670.8250285], [0.187, 4.12687876136, 9985.7593567714], [0.166, 1.5859635437, 1379.7059531089], [0.17, 1.30946662341, 837.6972633632], [0.166, 0.02413278965, 224.6054281328], [0.204, 6.12072939658, 9360.089164459], [0.189, 0.28191962964, 1175.8080265321], [0.184, 2.8746109364, 398.1440028728], [0.172, 5.41410693088, 2306.7901615509], [0.174, 0.94052578814, 632.0329797878], [0.181, 2.20017945285, 1049.0869894507], [0.176, 1.0985763266, 531.978586955], [0.201, 2.68411933635, 795.6802585721], [0.197, 1.43444932583, 347.3631741838], [0.2, 4.33954193534, 1364.7280995819], [0.166, 2.8393687284, 3553.9115221378], [0.16, 1.28778451384, 962.5089310941], [0.206, 3.02518737424, 1141.1340634054], [0.2, 5.54644533685, 308.3151148093], [0.158, 4.7546243761, 1534.7381658416], [0.156, 3.42359004405, 241.7532834412], [0.182, 5.26192506263, 968.1380053866], [0.168, 0.3705510874, 10007.0999977738], [0.174, 4.61279044571, 223.3334037456], [0.158, 4.23116519562, 821.703812363], [0.212, 5.98406058023, 432.7485300303], [0.16, 4.08093018212, 632.7355552034], [0.179, 5.74376301842, 924.0458270562], [0.185, 3.01715709315, 55.8715917772], [0.185, 0.75718598244, 1286.9081196288], [0.17, 3.46903106526, 1304.9243545416], [0.167, 3.19767851189, 635.231419868], [0.153, 3.8300620821, 318.679491517], [0.156, 1.61558494091, 110.2545053292], [0.206, 1.62702696825, 389.9496279465], [0.184, 3.31730160238, 1578.0271950199], [0.184, 6.19913208096, 731.6837278378], [0.158, 5.58628906712, 42.3258213318], [0.159, 2.00727485442, 702.1487119091], [0.155, 0.02889842368, 1357.6145525811], [0.151, 5.80616069064, 680.0573113813], [0.157, 5.67235483479, 77837.11123384659], [0.156, 2.78001360754, 1567.7322542814], [0.203, 5.91820261629, 971.1069508032], [0.156, 5.68482948401, 649.4585138696], [0.186, 5.72093247348, 664.2763087022], [0.184, 4.05878767739, 976.7360250957], [0.159, 3.10978439502, 230.7075831773], [0.154, 4.54479813612, 1239.5439248355], [0.177, 4.68148789757, 2921.1277828246], [0.158, 4.30854435851, 633.7469471597], [0.195, 5.33376523453, 1130.2313754934], [0.188, 2.04023570497, 1127.0499817557], [0.174, 2.88817750136, 25668.418497699], [0.161, 2.9630000889, 152.7445908723], [0.17, 1.7077956077, 493.303034596], [0.156, 3.05331862578, 913.7508863177], [0.169, 3.18325334507, 757.8078553652], [0.145, 0.8967219869, 632.831923423], [0.149, 2.69519361988, 203.2647871304], [0.167, 2.96547549589, 1201.831580323], [0.187, 3.17592113403, 842.9014410135], [0.173, 1.9152883635, 3487.4241132234], [0.154, 0.37169915171, 285.1117485887], [0.198, 3.14620903981, 640.8604941605], [0.143, 3.42760427364, 520.129737539], [0.157, 2.34913118792, 5959.570433334], [0.178, 5.34566184657, 272.5815756165], [0.171, 3.34185265551, 3067.9394693482], [0.171, 4.87848878292, 354.5249052944], [0.189, 0.07069084691, 1585.8915015461], [0.137, 1.28925665885, 214.1022445901], [0.137, 3.494384829, 212.4959462859], [0.174, 3.07450555579, 64.9597385808], [0.181, 0.78652249647, 657.1627617014], [0.158, 2.93809799392, 211.6545640353], [0.133, 5.70724173596, 469.7271613599], [0.14, 0.35530248121, 219.5188705615], [0.132, 1.60614108449, 1372.5924061081], [0.164, 1.68236348359, 707.5653378805], [0.128, 1.49742950959, 45.2465826386], [0.132, 4.98075995751, 238.5718897035], [0.14, 3.62845435388, 423.8898778903], [0.134, 1.41837795083, 3906.9087570986], [0.127, 1.48966646069, 856.3777754897], [0.158, 2.57990141197, 369.9758395734], [0.132, 2.39662455993, 184.7272873558], [0.14, 4.36785639279, 207.0793203145], [0.157, 4.56655940808, 251.1714986449], [0.125, 4.60433583965, 6076.8903015542], [0.121, 1.59513269211, 184.8449074348], [0.145, 5.85121885906, 221.8971151471], [0.137, 0.76499603885, 476.1069951778], [0.139, 6.02467582226, 429.3065038617], [0.117, 0.23611722307, 426.7582495704], [0.117, 3.13382984215, 426.4381321816], [0.116, 4.3480144872, 418.9633790134], [0.135, 2.69789181467, 455.1699989582], [0.134, 1.19058772772, 502.8642621516], [0.123, 3.97560160218, 499.895316735], [0.11, 2.37032413718, 439.9315130003], [0.109, 6.20303291896, 220.3007678542], [0.109, 1.38979633175, 325.9530972122], [0.115, 0.05845336809, 631.8205314667], [0.139, 2.21086387259, 9573.388259897], [0.142, 6.14666228712, 3340.6124266998], [0.122, 4.77182119272, 604.4725636619], [0.119, 3.03461367061, 528.2064923863], [0.127, 2.97263950543, 498.9321088885], [0.111, 5.01192320232, 220.2001941177], [0.126, 3.95743516129, 566.600160455], [0.098, 2.36210526249, 634.2682120215], [0.108, 2.46872857126, 83.3796182764], [0.101, 4.88259474274, 425.3261664888], [0.127, 4.89006771254, 162.0933701068], [0.099, 0.90073463816, 586.3133163972], [0.099, 0.16310526294, 394.3548619616], [0.115, 0.49160291262, 517.1607921224], [0.101, 3.86043866859, 198.1087935899], [0.105, 3.48222097813, 5863.5912061162], [0.104, 4.61148354671, 220.5245170234], [0.101, 4.77041950285, 427.8702152632], [0.098, 2.90784721214, 199.9657733137], [0.127, 0.14136936897, 2332.0629558164], [0.091, 6.22628300117, 211.2933578679], [0.1, 5.14847283436, 226.7924762567], [0.091, 4.84054379386, 215.3048330081], [0.099, 4.375834924, 640.4185511758], [0.093, 5.30395179617, 222.7002642992], [0.086, 4.57481701854, 636.9765250072], [0.111, 0.61102669309, 1089.129394439], [0.086, 4.50969293872, 625.8826406335], [0.088, 0.36828594935, 444.1242986943], [0.093, 5.76287499885, 203.8979265768], [0.082, 2.85558603378, 318.8395502114], [0.082, 5.19618475111, 1467.8208738005], [0.086, 0.97633784601, 200.0352092829], [0.082, 4.78557953017, 195.7729876197], [0.106, 2.29520624233, 799.6124118352], [0.081, 3.57727166766, 205.9731001161], [0.078, 5.5034351258, 262.8078997398], [0.087, 0.76830756075, 201.9927627432], [0.102, 2.11516755277, 206.9363079626], [0.081, 5.29639775054, 111.1695290659], [0.075, 2.77117107886, 255.8373650909], [0.074, 5.81587984729, 316.4400537664], [0.076, 1.78743197928, 171.6545976624], [0.094, 4.99996904753, 378.6432952517], [0.089, 5.85818860151, 807.9497991134], [0.072, 0.99858616883, 280.2163874791], [0.099, 0.15018241445, 186.2117600641], [0.072, 5.15715918322, 110.1581371096]], [[21354295595.986, 0.0, 0.0], [1296855.005, 1.82820544701, 213.299095438], [564347.566, 2.88500136429, 7.1135470008], [98323.03, 1.08070061328, 426.598190876], [107678.77, 2.27769911872, 206.1855484372], [40254.586, 2.0412825709, 220.4126424388], [19941.734, 1.27954662736, 103.0927742186], [10511.706, 2.748803928, 14.2270940016], [6939.233, 0.40493079985, 639.897286314], [4803.325, 2.44194097666, 419.4846438752], [4056.325, 2.92166618776, 110.2063212194], [3768.63, 3.6496563146, 3.9321532631], [3384.684, 2.41694251653, 3.1813937377], [3302.2, 1.26256486715, 433.7117378768], [3071.382, 2.3273931775, 199.0720014364], [1953.036, 3.563946833, 11.0457002639], [1249.348, 2.62803737519, 95.9792272178], [921.683, 1.9608983425, 227.5261894396], [705.587, 4.4168924933, 529.6909650946], [649.654, 6.17418093659, 202.2533951741], [627.603, 6.11088227167, 309.2783226558], [486.843, 6.03998200305, 853.196381752], [468.377, 4.61707843907, 63.7358983034], [478.501, 4.98776987984, 522.5774180938], [417.01, 2.11708169277, 323.5054166574], [407.63, 1.29949556676, 209.3669421749], [343.826, 3.95854178574, 412.3710968744], [339.724, 3.63396398752, 316.3918696566], [335.936, 3.77173072712, 735.8765135318], [331.933, 2.86077699882, 210.1177017003], [352.489, 2.31707079463, 632.7837393132], [289.429, 2.73263080235, 117.3198682202], [265.801, 0.54344631312, 647.0108333148], [230.493, 1.64428879621, 216.4804891757], [280.911, 5.74398845416, 2.4476805548], [191.667, 2.96512946582, 224.3447957019], [172.891, 4.07695221044, 846.0828347512], [167.131, 2.59745202658, 21.3406410024], [136.328, 2.28580246629, 10.2949407385], [131.364, 3.44108355646, 742.9900605326], [127.838, 4.09533471247, 217.2312487011], [108.862, 6.16141072262, 415.5524906121], [93.909, 3.48397279899, 1052.2683831884], [92.482, 3.94755499926, 88.865680217], [97.584, 4.72845436677, 838.9692877504], [86.6, 1.21951325061, 440.8252848776], [83.463, 3.11269504725, 625.6701923124], [77.588, 6.24408938835, 302.164775655], [61.557, 1.82789612597, 195.1398481733], [61.9, 4.29344363385, 127.4717966068], [67.106, 0.28961738595, 4.665866446], [56.919, 5.01889578112, 137.0330241624], [54.16, 5.12628572382, 490.3340891794], [54.585, 0.28356341456, 74.7815985673], [51.425, 1.45766406064, 536.8045120954], [65.843, 5.64757042732, 9.5612275556], [57.78, 2.47630552035, 191.9584544356], [44.444, 2.70873627665, 5.4166259714], [46.799, 1.1772121105, 149.5631971346], [40.38, 3.88870105683, 728.762966531], [37.768, 2.53379013859, 12.5301729722], [46.649, 5.14818326902, 515.463871093], [45.891, 2.23198878761, 956.2891559706], [40.4, 0.4128152044, 269.9214467406], [37.191, 3.78239026411, 2.9207613068], [33.778, 3.21070688046, 1368.660252845], [37.969, 0.6466596718, 422.6660376129], [32.857, 0.30063884563, 351.8165923087], [33.05, 5.43038091186, 1066.49547719], [30.276, 2.84067004928, 203.0041546995], [35.116, 6.08421794089, 5.6290742925], [29.667, 3.39052569135, 1059.3819301892], [33.217, 4.64063092111, 277.0349937414], [31.876, 4.3862292377, 1155.361157407], [28.913, 2.02614760507, 330.6189636582], [28.264, 2.74178953996, 265.9892934775], [30.089, 6.18684614308, 284.1485407422], [31.329, 2.43455855525, 52.6901980395], [26.493, 4.51214170121, 340.7708920448], [21.983, 5.14437352579, 4.192785694], [22.23, 1.96481952451, 203.7378678824], [20.824, 6.16048095923, 860.3099287528], [21.69, 2.67578768862, 942.062061969], [22.552, 5.88579123, 210.8514148832], [19.807, 2.31345263487, 437.6438911399], [19.447, 4.76573277668, 70.8494453042], [19.31, 4.10209060369, 18.1592472647], [22.662, 4.13732273379, 191.2076949102], [18.209, 0.90310796389, 429.7795846137], [17.667, 1.84954766042, 234.6397364404], [17.547, 2.44735118493, 423.4167971383], [15.428, 4.23790088205, 1162.4747044078], [14.608, 3.59713247857, 1045.1548361876], [14.111, 2.94262468353, 1685.0521225016], [16.328, 4.05665272725, 949.1756089698], [13.348, 6.2450959224, 38.1330356378], [15.918, 1.06434204938, 56.6223513026], [14.059, 1.43503954068, 408.4389436113], [13.093, 5.75815864257, 138.5174968707], [15.772, 5.59350835225, 6.1503391543], [14.962, 5.77192239389, 22.0914005278], [16.024, 1.93900586533, 1272.6810256272], [16.751, 5.96673627422, 628.8515860501], [12.843, 4.24658666814, 405.2575498736], [13.628, 4.09892958087, 1471.7530270636], [15.067, 0.74142807591, 200.7689224658], [10.961, 1.55022573283, 223.5940361765], [11.695, 1.81237511034, 124.433415221], [10.346, 3.46814088412, 1375.7737998458], [12.056, 1.85655834555, 131.4039498699], [10.123, 2.38221133049, 107.0249274817], [9.855, 3.95166998848, 430.5303441391], [9.803, 2.55389483994, 99.9113804809], [10.614, 5.36692189034, 215.7467759928], [12.08, 4.84549317054, 831.8557407496], [10.21, 6.0769296137, 32.2433289144], [9.245, 3.6541746727, 142.4496501338], [8.984, 1.23808405498, 106.2741679563], [9.336, 5.81062768434, 7.1617311106], [9.717, 1.38703872827, 145.6310438715], [8.394, 4.42341211111, 703.6331846174], [8.37, 5.64015188458, 62.2514255951], [8.244, 2.42225929772, 1258.4539316256], [7.784, 0.52562994711, 654.1243803156], [7.626, 3.75258725596, 312.1990839626], [7.222, 0.28429555677, 0.7507595254], [8.236, 6.22250515902, 14.977853527], [7.054, 0.5317781074, 388.4651552382], [6.567, 3.48657341701, 35.4247226521], [9.011, 4.9491962691, 208.633228992], [8.98, 0.08138173719, 288.0806940053], [6.421, 3.32905264657, 1361.5467058442], [6.489, 2.89389587598, 114.1384744825], [6.244, 0.54973852782, 65.2203710117], [6.154, 2.67885860584, 2001.4439921582], [6.742, 0.23586769279, 8.0767548473], [7.297, 4.85321224483, 222.8603229936], [6.302, 3.80651124694, 1788.1448967202], [5.824, 4.39327457448, 81.7521332162], [6.102, 0.88585782895, 92.0470739547], [6.914, 2.04631426723, 99.1606209555], [5.363, 5.47995103139, 563.6312150384], [5.172, 2.11968421583, 214.2623032845], [5.117, 5.76987684107, 565.1156877467], [6.197, 1.625536888, 1589.0728952838], [4.97, 0.41949366126, 76.2660712756], [6.64, 5.82582210639, 483.2205421786], [5.277, 4.57975789757, 134.5853436076], [4.974, 4.20243895902, 404.5067903482], [5.15, 4.67582673243, 212.3358875915], [4.764, 4.59303997414, 554.0699874828], [4.573, 3.24875415786, 231.4583427027], [4.811, 0.46206327592, 362.8622925726], [5.148, 3.33570646174, 1.4844727083], [4.654, 5.80233066659, 217.964961884], [4.509, 5.37581684215, 497.4476361802], [4.443, 0.11349392292, 295.0512286542], [4.943, 3.78020789259, 1265.5674786264], [4.211, 4.8830602196, 98.8999885246], [4.252, 5.00120115113, 213.3472795478], [4.774, 4.53259894142, 1148.2476104062], [3.911, 0.58582192963, 750.1036075334], [5.069, 2.20305668335, 207.8824694666], [3.553, 0.35374030841, 333.657345044], [3.771, 0.98542435766, 24.3790223882], [3.458, 1.84990273999, 225.8292684102], [3.401, 5.31342401626, 347.8844390456], [3.347, 0.21414641376, 635.9651330509], [3.637, 1.61315058382, 245.5424243524], [3.416, 2.19551489078, 1574.8458012822], [3.655, 0.8054424569, 343.2185725996], [4.26, 1.80258750109, 213.2509113282], [3.11, 3.03815175282, 1677.9385755008], [3.052, 1.33858964447, 543.9180590962], [3.694, 0.81606028298, 344.7030453079], [3.016, 3.36219319026, 7.8643065262], [2.937, 4.86927342776, 144.1465711632], [2.768, 2.42707131609, 2317.8358618148], [3.059, 4.30820099442, 6062.6632075526], [3.65, 5.12802531219, 218.9281697305], [2.963, 3.53480751374, 2104.5367663768], [3.23, 2.88057019783, 216.2198567448], [2.984, 2.52971310583, 1692.1656695024], [2.897, 5.7325648224, 9992.8729037722], [2.591, 3.79880285744, 17.2654753874], [3.495, 5.29902525443, 350.3321196004], [2.859, 3.72804950659, 6076.8903015542], [2.775, 0.23549396237, 357.4456666012], [2.976, 2.48769315964, 46.470422916], [2.487, 4.3786807853, 217.491881132], [2.711, 5.1537684015, 10007.0999977738], [3.127, 1.92343235583, 17.4084877393], [3.181, 1.72419900322, 1169.5882514086], [2.348, 0.77373103004, 414.0680179038], [2.606, 3.4283691344, 31.019488637], [2.556, 0.91735028377, 479.2883889155], [2.399, 4.82440545738, 1279.794572628], [2.245, 3.76323995584, 425.1137181677], [3.02, 0.25310250109, 120.358249606], [2.503, 2.10679832121, 168.0525127994], [2.564, 1.63158205055, 182.279606801], [2.221, 3.15472373256, 212.7778305762], [2.357, 2.33145013714, 218.7157214094], [2.51, 4.51903989011, 198.321241911], [2.715, 5.76330259543, 618.5566453116], [2.204, 3.35952557362, 160.6088973985], [2.648, 0.71962005233, 85.8272988312], [2.029, 5.28642331696, 125.9873238985], [2.497, 1.36671447252, 1905.4647649404], [2.017, 1.11498225426, 447.9388318784], [2.052, 1.27587874735, 14.0146456805], [2.254, 3.2244767419, 273.1028404783], [2.014, 0.39787014152, 358.9301393095], [1.981, 2.33696859021, 28.4541880032], [2.197, 5.93386789705, 13.3333221243], [2.237, 3.64433751164, 213.8203602998], [1.93, 1.8567174034, 1.2720243872], [2.037, 5.05300562628, 424.1505103212], [1.994, 1.35690802366, 20.6069278195], [1.911, 3.44106886717, 69.1525242748], [1.925, 3.75243031545, 28.3111756513], [2.297, 4.24557050896, 1464.6394800628], [2.117, 2.25897766314, 116.4260963429], [1.847, 5.40631472802, 31.492569389], [1.841, 1.56916484272, 650.9429865779], [1.884, 6.27233535258, 25.1297819136], [1.96, 4.8948401484, 275.5505210331], [2.016, 5.45791785675, 842.1506814881], [2.282, 4.9627694744, 258.8757464767], [1.709, 3.99098237135, 416.3032501375], [2.176, 0.00746756006, 0.8937718773], [1.634, 5.30978165487, 251.4321310758], [1.687, 0.41586020065, 54.1746707478], [1.91, 2.5982575579, 329.7251917809], [2.113, 2.56582292726, 59.8037450403], [1.921, 2.42279051938, 113.3877149571], [1.658, 5.4732365154, 1073.6090241908], [1.59, 2.7754529735, 1994.3304451574], [1.936, 3.47558926847, 1581.959348283], [1.649, 1.82779010589, 128.9562693151], [1.598, 1.718064653, 129.9194771616], [1.967, 1.25160413795, 621.7380390493], [1.702, 1.910761028, 278.5194664497], [1.569, 0.16491194947, 643.0786800517], [1.989, 5.28799230992, 508.3503240922], [1.52, 0.56950979689, 320.3240229197], [1.501, 1.99815894193, 1891.2376709388], [1.532, 3.27362317849, 2420.9286360334], [1.701, 2.72041261115, 767.3690829208], [1.561, 6.09424459628, 280.9671470045], [1.331, 4.2094444379, 546.956440482], [1.381, 2.0676810083, 192.6921676185], [1.368, 6.28049502257, 1795.258443721], [1.519, 2.20299556153, 2008.557539159], [1.356, 4.01521042413, 721.6494195302], [1.296, 4.84815978742, 45.5766510387], [1.267, 5.28146654999, 173.9422195228], [1.402, 6.1295155155, 39.3568759152], [1.252, 2.19169926554, 2634.2277314714], [1.466, 4.16354845643, 26.826702943], [1.285, 3.76170874847, 2.2876218604], [1.5, 5.41022492529, 214.0498549634], [1.396, 4.78595583428, 219.4494345923], [1.43, 0.70934745161, 254.9435932136], [1.195, 3.71281085322, 264.5048207692], [1.181, 0.42635230882, 41.6444977756], [1.19, 2.02079286787, 1485.9801210652], [1.16, 5.23649231796, 181.0557665236], [1.535, 3.62746990294, 561.1835344836], [1.12, 1.0912792213, 6.592282139], [1.1, 0.27844612141, 184.0941479094], [1.227, 1.3996968127, 209.106309744], [1.353, 6.12903657666, 207.6700211455], [1.124, 6.05105541765, 291.262087743], [1.194, 4.79565407023, 1478.8665740644], [1.082, 4.73602931755, 78.7137518304], [1.202, 3.47301104146, 51.2057253312], [1.298, 2.34761557822, 210.3783341312], [1.166, 4.20037524355, 417.0369633204], [1.228, 3.94985981275, 1781.0313497194], [1.401, 2.41318931513, 636.7158925763], [1.009, 6.17414889934, 2111.6503133776], [1.084, 3.68958647346, 274.0660483248], [1.068, 0.80258823981, 436.8931316145], [1.007, 3.4279250886, 629.6023455755], [0.998, 5.57130056835, 205.2223405907], [1.058, 1.05742945779, 237.6781178262], [1.02, 3.336672903, 166.828672522], [0.965, 6.08359503243, 601.7642506762], [1.005, 3.56310748091, 643.8294395771], [0.987, 0.97129012811, 305.3461693927], [0.927, 3.87717400791, 135.336103133], [1.129, 5.94840103961, 196.6243208816], [1.118, 5.25415059584, 189.7232222019], [1.2, 1.16671933467, 2221.856634597], [0.909, 2.14001565047, 617.8058857862], [0.899, 2.31811625712, 312.4597163935], [1.081, 0.91006048421, 313.2104759189], [0.891, 3.74923531791, 916.9322800554], [0.886, 4.76066858907, 776.9303104764], [0.912, 0.99592540858, 491.8185618877], [0.88, 3.67349449376, 25.2727942655], [1.203, 1.3974926741, 337.732510659], [0.867, 0.11684071625, 267.4737661858], [0.879, 6.12222682852, 867.4234757536], [1.08, 0.15038819285, 175.1660598002], [0.988, 3.12456192471, 214.7835681463], [0.889, 4.70508769146, 148.0787244263], [0.827, 6.08977582217, 488.8496164711], [0.889, 5.05124166027, 220.4608265486], [0.828, 6.27262544155, 1382.8873468466], [1.04, 5.76735098196, 501.3797894433], [1.103, 0.4870647723, 692.5874843535], [0.81, 2.5036238508, 2310.722314814], [0.85, 4.55410385197, 77.962992305], [1.108, 5.31792012163, 235.3904959658], [0.79, 0.89213206336, 342.2553647531], [0.775, 2.85873930879, 211.8146227297], [0.842, 2.99884993009, 2737.32050569], [0.784, 0.0574845924, 543.0242872189], [0.754, 5.18317747668, 244.318584075], [0.969, 1.31760425414, 486.4019359163], [0.943, 5.48641674428, 339.2864193365], [0.759, 6.25347177163, 151.0476698429], [0.71, 2.4161996881, 247.2393453818], [0.794, 2.59522645936, 1.6445314027], [0.857, 1.99318788624, 248.7238180901], [0.717, 4.56798357445, 121.2520214833], [0.671, 2.50955477476, 444.7574381407], [0.683, 5.51033310275, 487.3651437628], [0.684, 0.01892628603, 228.276948965], [0.665, 1.47172657769, 427.5613987225], [0.761, 4.61079808671, 23.5758732361], [0.807, 3.2151371812, 1898.3512179396], [0.645, 1.92436523628, 2950.619601128], [0.624, 6.05830190539, 241.6102710893], [0.699, 4.02804515616, 425.6349830295], [0.624, 5.85966148394, 696.5196376166], [0.62, 1.86426453489, 2207.6295405954], [0.641, 5.69868017561, 319.5732633943], [0.646, 3.78920578728, 1038.0412891868], [0.672, 2.54160055954, 271.4059194489], [0.768, 1.80484245332, 2324.9494088156], [0.737, 1.50539891226, 268.4369740323], [0.836, 1.2658381101, 212.5483359126], [0.753, 5.2753616624, 204.7010757289], [0.633, 2.19920009577, 1802.3719907218], [0.72, 2.58587107868, 472.1748419147], [0.683, 3.8322386642, 43.2890291783], [0.74, 6.21601938401, 556.5176680376], [0.795, 1.14460330178, 381.3516082374], [0.678, 3.65930963429, 2097.423219376], [0.568, 5.9215866109, 2428.0421830342], [0.57, 1.18024241664, 131.5469622218], [0.566, 4.74157739398, 380.12776796], [0.586, 5.71168743146, 570.7447620392], [0.55, 4.92413290959, 188.9200730498], [0.712, 2.69456114358, 16.6747745564], [0.545, 5.387255296, 206.233732547], [0.572, 5.79167804981, 195.8906076987], [0.602, 5.81756794592, 963.4027029714], [0.588, 4.25026865253, 426.6463749858], [0.563, 3.28295055824, 193.655375465], [0.583, 5.44099997963, 526.5095713569], [0.679, 4.45748326743, 105.5404547734], [0.516, 5.99843937287, 289.5651667136], [0.52, 2.19322568805, 180.1619946463], [0.543, 4.19333695628, 213.1872208534], [0.586, 3.03470168346, 6275.9623029906], [0.572, 3.96788877624, 140.001969579], [0.611, 4.1539223987, 436.1594184316], [0.505, 2.95739392583, 135.5485514541], [0.587, 4.55320395537, 5863.5912061162], [0.492, 2.71595874382, 84.9335269539], [0.576, 5.98300938454, 9793.8009023358], [0.489, 5.68450383182, 533.6231183577], [0.519, 3.09688510923, 327.4375699205], [0.486, 5.24220804875, 5849.3641121146], [0.475, 4.51295931678, 411.620337349], [0.54, 4.44843952768, 10206.1719992102], [0.479, 0.87707794164, 207.1487562837], [0.468, 0.46572028197, 306.0969289181], [0.586, 0.86387928244, 2538.2485042536], [0.475, 6.19152982788, 397.3932433474], [0.541, 1.47958133221, 42.5382696529], [0.496, 6.07879620658, 576.1613880106], [0.447, 2.59259132013, 7.2254215854], [0.445, 5.0682730047, 778.4147831847], [0.56, 0.00461017471, 221.3758502853], [0.456, 4.60143715337, 710.7467316182], [0.449, 5.79223649465, 685.4739373527], [0.501, 1.91370965325, 831.1049812242], [0.595, 4.90329839607, 824.7421937488], [0.447, 4.88662794571, 429.0458714308], [0.445, 1.74764943142, 525.7588118315], [0.457, 0.8089271253, 458.8415197904], [0.543, 2.60317945475, 213.4109700226], [0.493, 0.61947189193, 41.0537969446], [0.455, 2.69847252264, 3053.7123753466], [0.429, 3.89071982978, 92.7978334801], [0.411, 1.34981168865, 27.0873353739], [0.448, 1.84775051361, 980.6681783588], [0.445, 4.21745990439, 905.8865797915], [0.403, 2.33067250642, 2627.1141844706], [0.404, 5.00179215709, 431.264057322], [0.384, 1.65634584042, 241.7532834412], [0.41, 0.76907037678, 395.578702239], [0.456, 1.98353741244, 213.5115437591], [0.459, 2.04878772547, 285.6330134505], [0.396, 5.04141834913, 298.2326223919], [0.377, 5.68073822097, 2744.4340526908], [0.415, 4.41600504868, 179.3588454942], [0.396, 4.2987285195, 206.706813299], [0.389, 5.69091953122, 849.2642284889], [0.369, 1.36192003466, 835.0371344873], [0.374, 0.41402282126, 9779.5738083342], [0.379, 1.72255764532, 184.9879197867], [0.365, 5.88205574821, 19.643719973], [0.456, 4.81297899859, 213.0866471169], [0.359, 1.06819138836, 206.1373643274], [0.367, 1.14184327929, 569.0478410098], [0.352, 3.04388401587, 638.4128136057], [0.463, 1.55834877017, 421.1815649046], [0.459, 5.34648461645, 699.7010313543], [0.383, 4.05921035379, 739.8086667949], [0.354, 1.09760553168, 738.7972748386], [0.382, 0.05348541587, 252.6559713532], [0.344, 1.18536656224, 439.1283638482], [0.382, 2.10483762147, 532.6117264014], [0.361, 0.50215018154, 50.4025761791], [0.351, 3.49546336297, 1354.4331588434], [0.395, 4.2627887156, 432.2272651685], [0.345, 2.38455893509, 426.0769260142], [0.35, 1.51541607946, 259.769518354], [0.426, 5.29998227949, 934.9485149682], [0.339, 5.59774645356, 519.3960243561], [0.388, 3.40083809779, 2413.8150890326], [0.324, 3.68352014131, 72.0732855816], [0.323, 1.79597508586, 405.9912630565], [0.366, 3.56764349139, 1119.1856752295], [0.358, 4.11241839677, 37.8724032069], [0.423, 1.45116702108, 2641.3412784722], [0.314, 0.68465789313, 757.2171545342], [0.32, 3.12697568936, 945.9942152321], [0.338, 4.89782013581, 898.7730327907], [0.319, 5.76881401291, 69.3649725959], [0.31, 5.35598720822, 815.0633461142], [0.369, 4.46143610142, 421.93232443], [0.311, 2.19275640712, 5856.4776591154], [0.306, 2.99917010799, 1130.2313754934], [0.33, 0.64102961163, 558.0021407459], [0.305, 0.40963115602, 661.2379273164], [0.32, 3.2926731994, 760.25553592], [0.298, 5.48693246086, 702.1487119091], [0.352, 2.18179692198, 2118.7638603784], [0.299, 5.94980651345, 572.2292347475], [0.343, 2.6290008365, 213.5597278689], [0.296, 4.12563821701, 73.297125859], [0.36, 2.94387423457, 2214.7430875962], [0.293, 5.71837797264, 60.7669528868], [0.326, 1.93806509331, 480.7728616238], [0.335, 2.60120542851, 518.3846323998], [0.322, 2.89685459163, 427.1194557378], [0.367, 2.2048984833, 518.6452648307], [0.361, 3.31464351282, 630.3360587584], [0.288, 0.8776047815, 887.7273325268], [0.29, 0.24071300709, 705.1176573257], [0.332, 5.96464701829, 100.6450936638], [0.284, 1.58760551116, 681.5417840896], [0.281, 1.68339116394, 3267.0114707846], [0.287, 3.54730637851, 756.3233826569], [0.331, 2.74250642576, 22.8945496799], [0.281, 4.79802388453, 409.9234163196], [0.372, 1.08754087151, 426.5500067662], [0.34, 0.59629116557, 627.3671133418], [0.325, 4.07319450014, 511.5317178299], [0.273, 0.71334827688, 305.0855369618], [0.272, 1.76124839309, 945.2434557067], [0.295, 4.00327005783, 432.7485300303], [0.271, 5.28903262032, 1080.7225711916], [0.276, 3.89192411657, 610.6923387854], [0.294, 2.80121651058, 724.8308132679], [0.319, 5.24824059915, 229.9738699944], [0.264, 2.36406383589, 731.9443602687], [0.288, 4.6781884493, 170.7608257851], [0.326, 3.81328980623, 525.4981794006], [0.283, 3.52027709716, 319.3126309634], [0.264, 0.25871603855, 494.2662424425], [0.261, 4.08135671345, 25.8634950965], [0.296, 4.49129913731, 693.5506922], [0.292, 0.65370180027, 25867.49049913539], [0.292, 0.12510953311, 25881.717593137], [0.254, 4.03912322565, 990.2294059144], [0.288, 3.98604904657, 707.7777862016], [0.285, 1.92328297431, 3134.4268782626], [0.284, 2.45411523294, 3120.199784261], [0.256, 3.6328275778, 430.79097657], [0.283, 2.51091647682, 286.596221297], [0.325, 4.33261281211, 732.6951197941], [0.264, 0.05450228136, 650.1922270525], [0.273, 4.90735780421, 409.1897031367], [0.304, 4.61759348542, 468.2426886516], [0.285, 5.7246790389, 33.9402499438], [0.242, 5.28336514054, 403.0223176399], [0.27, 0.51583145648, 263.7016716171], [0.263, 4.81670787366, 1055.4497769261], [0.237, 2.92617048443, 913.9633346388], [0.246, 2.19675150666, 2943.5060541272], [0.278, 4.58404840578, 398.1440028728], [0.234, 2.64374114605, 739.0579072695], [0.229, 3.80445074468, 58.1068240109], [0.3, 2.06111081979, 429.5189521828], [0.223, 3.39888651505, 188.0263011725], [0.301, 2.96411385108, 624.919432787], [0.221, 1.79137414078, 2524.021410252], [0.22, 0.95686592581, 1894.4190646765], [0.225, 4.30669421945, 637.4496057592], [0.214, 1.70442143644, 658.0565335787], [0.227, 3.22613053351, 638.9340784675], [0.22, 2.66798936385, 953.1077622329], [0.253, 3.09377787768, 29.2049475286], [0.244, 3.15828383212, 7.0016724162], [0.295, 4.95843934543, 714.6788848813], [0.209, 0.94525938634, 864.2420820159], [0.216, 0.1222123618, 28.5718080822], [0.214, 2.80190604605, 373.9079928365], [0.212, 2.07343849515, 1357.6145525811], [0.216, 1.25531205533, 477.8039162072], [0.206, 5.35971491902, 3060.8259223474], [0.204, 3.0857941046, 67.6680515665], [0.21, 1.91489853604, 938.1299087059], [0.209, 1.46554109301, 952.3570027075], [0.202, 3.57670882297, 334.5511169213], [0.228, 5.66209641464, 1699.2792165032], [0.197, 4.61055255182, 464.7312265138], [0.193, 4.24606721746, 141.6988906084], [0.266, 0.69665031373, 2854.6403739102], [0.227, 1.31845358943, 230.7075831773], [0.192, 5.26739976413, 504.561183181], [0.187, 0.8553719223, 273.8536000037], [0.199, 3.91291687807, 418.5214360287], [0.192, 6.15674105214, 611.4430983108], [0.21, 1.47873602747, 205.4347889118], [0.194, 2.37167703302, 3370.1042450032], [0.228, 2.15266015145, 55.1378785943], [0.201, 2.71380671608, 586.3133163972], [0.194, 3.29560033731, 1670.8250285], [0.201, 4.23447633663, 1493.093668066], [0.181, 3.61567262848, 9786.687355335], [0.181, 2.83211558346, 1262.3860848887], [0.242, 4.69869158516, 1141.1340634054], [0.184, 4.66807336402, 1251.3403846248], [0.221, 2.25887876254, 355.7487455718], [0.2, 1.17340443616, 4952.0635932862], [0.222, 2.23360866067, 2435.155730035], [0.175, 0.04701598422, 107.7586406646], [0.171, 5.0250074269, 93.531546663], [0.184, 5.19723697138, 835.7878940127], [0.221, 4.49141283681, 913.0001267923], [0.195, 0.92088046109, 551.031606097], [0.166, 5.01778115937, 354.9979860464], [0.165, 2.26267552932, 406.954470903], [0.189, 0.31221126958, 420.9691165835], [0.196, 2.70333585839, 774.4826299216], [0.176, 6.12029409039, 181.806526049], [0.172, 1.94132177757, 3259.8979237838], [0.16, 0.55319954265, 5429.8794682394], [0.161, 2.88623631474, 184.8449074348], [0.192, 0.26639534884, 295.1942410061], [0.167, 3.71345214172, 1056.2005364515], [0.195, 4.83926717598, 1596.1864422846], [0.156, 2.81916058733, 428.0826635843], [0.215, 1.88276472005, 220.364458329], [0.167, 2.68872854428, 423.6774295692], [0.154, 1.66553954375, 115.6229471908], [0.175, 0.20216461467, 384.0599212231], [0.201, 4.38095931887, 418.0001711669], [0.167, 1.86485857353, 393.4610900843], [0.155, 0.92480392431, 282.6640680339], [0.146, 1.97663966745, 9360.089164459], [0.16, 2.62483919699, 353.301065017], [0.186, 1.37307151419, 292.0128472684], [0.198, 1.15631374887, 2957.7331481288], [0.144, 4.82956915076, 453.424893819], [0.149, 3.60682821788, 205.6642835754], [0.147, 4.48377791879, 81.8951455681], [0.147, 5.74795037748, 856.3777754897], [0.142, 3.53823120158, 212.0270710508], [0.14, 0.70476909062, 640.8604941605], [0.139, 1.39047667205, 1261.6353253633], [0.153, 3.29559426243, 391.1734682239], [0.158, 1.79872341304, 326.6868103951], [0.174, 3.98677435872, 1049.0869894507], [0.171, 4.16825100469, 213.0384630071], [0.133, 4.74095454922, 0.0481841098], [0.155, 5.3231361873, 2015.6710861598], [0.158, 2.67557086253, 2531.1349572528], [0.158, 4.64622526567, 427.3489504014], [0.123, 2.20103444636, 210.5907824523], [0.16, 1.85888551524, 201.5196819912], [0.119, 3.12572799769, 238.5718897035], [0.12, 4.62897224203, 203.2647871304], [0.129, 4.92592016162, 1286.9081196288], [0.132, 3.44682160054, 156.6767441354], [0.143, 0.67951827513, 425.8474313506], [0.114, 5.46519773276, 552.5855147745], [0.132, 1.76335093671, 432.0148168474], [0.113, 0.68933513038, 450.9772132642], [0.128, 2.13986068877, 2751.5475996916], [0.123, 4.59695145319, 216.0074084237], [0.119, 1.04688666457, 462.0229135281], [0.108, 5.36873170289, 3377.217792004], [0.142, 6.24626256472, 299.1263942692], [0.118, 0.6344825351, 369.9758395734], [0.105, 2.31570619675, 200.5564741447], [0.124, 1.8711081514, 850.0149880143], [0.106, 0.5562366257, 114.3991069134], [0.102, 3.95315219638, 361.3778198643], [0.095, 4.10658529323, 10213.285546211], [0.097, 1.13534710734, 387.2413149608], [0.096, 4.46689094543, 401.3253966105], [0.119, 2.33636675091, 318.8395502114], [0.115, 3.37508073115, 313.9441891018], [0.106, 3.7358621165, 220.9339073006], [0.09, 0.59788492023, 227.3137411185], [0.103, 5.09172929383, 213.4591541324], [0.097, 5.95268532215, 1044.4040766622], [0.103, 1.70625660572, 213.1390367436], [0.08, 0.86872596168, 233.9060232575], [0.089, 5.3599093223, 214.1928673153], [0.08, 2.69565238975, 540.7366653585], [0.095, 1.19504849611, 460.5384408198], [0.105, 0.58624363205, 481.7360694703], [0.099, 2.68841109007, 219.891377577], [0.098, 1.59923557478, 484.7050148869], [0.081, 1.12279793521, 420.4478517217], [0.075, 4.58892231446, 394.3548619616], [0.099, 4.6889585175, 448.6895914038], [0.076, 1.66929798365, 196.0336200506], [0.087, 3.1247719509, 857.1285350151], [0.078, 5.5981938746, 364.3467652809], [0.079, 3.53267171729, 969.6224780949]], [[116441.181, 1.17987850633, 7.1135470008], [91920.844, 0.07425261094, 213.299095438], [90592.251, 0.0, 0.0], [15276.909, 4.06492007503, 206.1855484372], [10631.396, 0.25778277414, 220.4126424388], [10604.979, 5.40963595885, 426.598190876], [4265.368, 1.0459555663, 14.2270940016], [1215.527, 2.91860042123, 103.0927742186], [1164.684, 4.60942128971, 639.897286314], [1081.967, 5.6913035167, 433.7117378768], [1020.079, 0.63369182642, 3.1813937377], [1044.754, 4.04206453611, 199.0720014364], [633.582, 4.38825410036, 419.4846438752], [549.329, 5.57303134242, 3.9321532631], [456.914, 1.26840971349, 110.2063212194], [425.1, 0.20935499279, 227.5261894396], [273.739, 4.28841011784, 95.9792272178], [161.571, 1.3813914942, 11.0457002639], [129.494, 1.5658688417, 309.2783226558], [117.008, 3.88120915956, 853.196381752], [105.415, 4.90003203599, 647.0108333148], [100.967, 0.892704931, 21.3406410024], [95.227, 5.62561150598, 412.3710968744], [81.948, 1.02477558315, 117.3198682202], [74.857, 4.76178468163, 210.1177017003], [82.727, 6.05030934786, 216.4804891757], [95.659, 2.91093561539, 316.3918696566], [63.696, 0.35179804917, 323.5054166574], [84.86, 5.73472777961, 209.3669421749], [60.647, 4.8751785019, 632.7837393132], [66.459, 0.48297940601, 10.2949407385], [67.184, 0.45648612616, 522.5774180938], [53.281, 2.74730541387, 529.6909650946], [45.827, 5.69296621745, 440.8252848776], [45.293, 1.66856699796, 202.2533951741], [42.33, 5.70768187703, 88.865680217], [32.14, 0.07050050346, 63.7358983034], [31.573, 1.67190022213, 302.164775655], [31.15, 4.16379537691, 191.9584544356], [24.631, 5.6556472857, 735.8765135318], [26.558, 0.83256214407, 224.3447957019], [20.108, 5.94364609981, 217.2312487011], [17.511, 4.90014736798, 625.6701923124], [17.13, 1.62593421274, 742.9900605326], [13.744, 3.764971673, 195.1398481733], [12.236, 4.71789723976, 203.0041546995], [11.94, 0.12620714199, 234.6397364404], [16.04, 0.57886320845, 515.463871093], [11.154, 5.9221684478, 536.8045120954], [14.068, 0.206752937, 838.9692877504], [11.013, 5.60207982774, 728.762966531], [11.718, 3.12098483554, 846.0828347512], [9.962, 4.15472049127, 860.3099287528], [10.601, 3.20327613035, 1066.49547719], [10.072, 0.25709351996, 330.6189636582], [9.49, 0.46379969328, 956.2891559706], [10.24, 4.9873665607, 422.6660376129], [8.287, 2.13990364272, 269.9214467406], [7.238, 5.39724715258, 1052.2683831884], [7.73, 5.24602742309, 429.7795846137], [6.353, 4.46211130731, 284.1485407422], [5.935, 5.40967847103, 149.5631971346], [7.55, 4.03401153929, 9.5612275556], [5.779, 4.2938089111, 415.5524906121], [6.082, 5.93416924841, 405.2575498736], [5.711, 0.01824076994, 124.433415221], [5.676, 6.0223568215, 223.5940361765], [4.757, 4.92804854717, 654.1243803156], [4.727, 2.27461984667, 18.1592472647], [4.509, 4.40688707557, 942.062061969], [5.621, 0.29694719379, 127.4717966068], [5.453, 5.53868222772, 949.1756089698], [4.13, 4.68673560379, 74.7815985673], [4.098, 5.308512622, 1045.1548361876], [4.223, 2.89014939299, 56.6223513026], [4.887, 3.20022991216, 277.0349937414], [3.905, 3.30270187305, 490.3340891794], [3.923, 6.09732996823, 81.7521332162], [3.755, 4.93065184796, 52.6901980395], [4.602, 6.13908576681, 1155.361157407], [3.714, 0.40648076787, 137.0330241624], [3.407, 4.28514461015, 99.9113804809], [3.579, 0.20402442077, 1272.6810256272], [3.946, 0.36500928968, 12.5301729722], [3.246, 1.56761884227, 1059.3819301892], [4.063, 0.29084229143, 831.8557407496], [3.688, 0.15467406177, 437.6438911399], [2.895, 3.13473183482, 70.8494453042], [2.8, 0.32727938074, 191.2076949102], [2.672, 1.87612402267, 295.0512286542], [3.454, 4.77197610696, 423.4167971383], [2.623, 5.15237415384, 1368.660252845], [2.457, 3.89612890177, 210.8514148832], [2.461, 1.5852287676, 32.2433289144], [2.595, 3.59007068361, 131.4039498699], [2.289, 4.76825865118, 351.8165923087], [2.357, 5.83099000562, 106.2741679563], [2.221, 5.98277491515, 6062.6632075526], [2.221, 2.05930402282, 6076.8903015542], [2.183, 5.94985336393, 145.6310438715], [2.718, 3.37801252354, 408.4389436113], [2.288, 3.1400061932, 22.0914005278], [2.09, 1.12304173562, 9992.8729037722], [2.089, 3.48276230686, 10007.0999977738], [2.57, 5.12167203704, 265.9892934775], [1.835, 4.15379879659, 1258.4539316256], [1.82, 5.05340615445, 1361.5467058442], [1.76, 4.13532689228, 107.0249274817], [1.921, 4.51790997496, 138.5174968707], [1.707, 1.3586459328, 231.4583427027], [1.956, 5.87006093798, 1471.7530270636], [2.133, 5.2340984872, 1265.5674786264], [1.595, 5.61962698786, 447.9388318784], [1.609, 3.74893709671, 628.8515860501], [1.49, 0.4835240494, 340.7708920448], [1.56, 5.97095003614, 430.5303441391], [1.352, 0.71405348653, 28.4541880032], [1.355, 2.91219493604, 215.7467759928], [1.298, 5.84254169775, 543.9180590962], [1.664, 6.23834873469, 1148.2476104062], [1.205, 2.83373725021, 200.7689224658], [1.192, 3.52219428945, 497.4476361802], [1.122, 2.6057103027, 1279.794572628], [1.217, 6.23528359211, 1589.0728952838], [1.42, 0.85079202155, 6069.7767545534], [1.12, 4.95656566453, 1685.0521225016], [1.01, 3.39689646619, 1073.6090241908], [1.352, 2.27575429523, 9999.986450773], [0.979, 1.58571463442, 1375.7737998458], [1.159, 0.71823181781, 508.3503240922], [1.014, 2.40759054741, 703.6331846174], [0.956, 2.66256831556, 134.5853436076], [1.11, 1.19713920197, 618.5566453116], [0.945, 4.68155456977, 362.8622925726], [0.953, 4.20749172571, 288.0806940053], [1.033, 1.08781255146, 184.8449074348], [0.942, 2.4346522346, 222.8603229936], [0.909, 4.5176938536, 38.1330356378], [1.002, 1.38543153271, 483.2205421786], [1.082, 4.52832816548, 635.9651330509], [1.008, 4.91325851448, 750.1036075334], [0.862, 4.79998518474, 1677.9385755008], [0.828, 2.21940849017, 333.657345044], [0.745, 3.97279299984, 1574.8458012822], [0.903, 5.58963782799, 1788.1448967202], [0.735, 2.28191723259, 1162.4747044078], [0.773, 5.82270096882, 416.3032501375], [0.734, 2.35356586018, 120.358249606], [0.745, 4.84266000843, 76.2660712756], [0.765, 2.50840146722, 343.2185725996], [0.908, 5.01046293458, 1581.959348283], [0.707, 3.66631544506, 347.8844390456], [0.87, 0.77106152694, 113.3877149571], [0.686, 2.88543836068, 92.0470739547], [0.673, 3.75650667651, 203.7378678824], [0.656, 3.77718582702, 217.964961884], [0.675, 5.62875135263, 17.2654753874], [0.691, 0.21330089609, 99.1606209555], [0.786, 4.49318079175, 643.0786800517], [0.641, 0.67588390141, 46.470422916], [0.663, 5.74837848383, 721.6494195302], [0.809, 5.94893988352, 1464.6394800628], [0.638, 4.86195439622, 357.4456666012], [0.74, 6.00053422445, 337.732510659], [0.555, 4.95858934298, 358.9301393095], [0.581, 3.87669679805, 565.1156877467], [0.541, 1.22296838713, 62.2514255951], [0.697, 0.00715950269, 1169.5882514086], [0.524, 1.53830423608, 195.8906076987], [0.518, 5.41992758537, 312.1990839626], [0.626, 5.26580317026, 436.8931316145], [0.537, 6.170316576, 182.279606801], [0.574, 5.98607898826, 1905.4647649404], [0.541, 0.30589337713, 98.8999885246], [0.603, 3.26888470585, 208.633228992], [0.504, 3.80930996688, 168.0525127994], [0.477, 3.56642391994, 563.6312150384], [0.511, 4.70719837179, 2001.4439921582], [0.475, 1.06025557585, 5856.4776591154], [0.54, 0.87230551412, 1692.1656695024], [0.454, 2.48128029368, 9786.687355335], [0.456, 3.18303484133, 218.9281697305], [0.462, 0.71358186864, 258.8757464767], [0.424, 4.89778948357, 636.7158925763], [0.537, 2.59376221736, 313.2104759189], [0.41, 4.22147787617, 867.4234757536], [0.408, 3.06057772788, 424.1505103212], [0.407, 3.79376013938, 24.3790223882], [0.569, 3.68547825941, 350.3321196004], [0.404, 0.91401255827, 114.1384744825], [0.395, 3.50478374207, 129.9194771616], [0.395, 2.86309689622, 212.3358875915], [0.386, 5.00762729432, 388.4651552382], [0.393, 6.26835522096, 241.7532834412], [0.401, 4.60258908692, 1994.3304451574], [0.385, 0.91582119643, 160.6088973985], [0.467, 0.54876489832, 404.5067903482], [0.368, 0.35674031808, 214.2623032845], [0.471, 0.67360047481, 207.8824694666], [0.379, 0.92901327825, 767.3690829208], [0.42, 5.69797398044, 225.8292684102], [0.356, 3.10092792842, 842.1506814881], [0.428, 5.35375368944, 2104.5367663768], [0.422, 2.67975581832, 77.962992305], [0.37, 5.46144813372, 1038.0412891868], [0.379, 5.56429091578, 131.5469622218], [0.441, 5.68196668399, 1781.0313497194], [0.361, 5.20616019966, 629.6023455755], [0.341, 5.92928351979, 26.826702943], [0.419, 5.26851686707, 85.8272988312], [0.322, 0.80223983857, 6283.0758499914], [0.323, 3.86700993914, 576.1613880106], [0.321, 2.1718603297, 10213.285546211], [0.355, 2.80560859177, 344.7030453079], [0.311, 3.77477255556, 1891.2376709388], [0.318, 5.22020784209, 142.4496501338], [0.315, 0.52272202855, 5849.3641121146], [0.428, 4.63722058283, 1898.3512179396], [0.337, 0.68198429948, 45.5766510387], [0.316, 0.54074780109, 444.7574381407], [0.31, 1.41032075652, 273.1028404783], [0.311, 3.5374455623, 251.4321310758], [0.295, 1.93253015677, 436.1594184316], [0.296, 1.97705648834, 9779.5738083342], [0.326, 3.67854047003, 963.4027029714], [0.389, 5.76841276132, 39.3568759152], [0.277, 5.73995694175, 92.7978334801], [0.315, 4.96371610197, 757.2171545342], [0.295, 1.816388339, 1493.093668066], [0.287, 0.97698377929, 685.4739373527], [0.281, 2.66463042095, 1286.9081196288], [0.33, 5.7977692276, 650.9429865779], [0.292, 3.97858181479, 472.1748419147], [0.266, 4.1371611132, 601.7642506762], [0.262, 0.91887592474, 245.5424243524], [0.278, 3.08964256591, 778.4147831847], [0.277, 3.0875091688, 621.7380390493], [0.255, 3.93981592051, 181.0557665236], [0.333, 2.04835822938, 561.1835344836], [0.247, 2.92754257675, 219.4494345923], [0.306, 0.36127922606, 824.7421937488], [0.253, 1.80130756458, 5643.1785636774], [0.337, 4.97764462199, 175.1660598002], [0.273, 0.66599369335, 2008.557539159], [0.227, 4.87285356383, 661.2379273164], [0.249, 3.14202895058, 144.1465711632], [0.22, 3.93526603081, 319.5732633943], [0.212, 5.85248164087, 546.956440482], [0.234, 1.65314711167, 554.0699874828], [0.204, 0.88373842674, 31.492569389], [0.205, 2.93169866171, 1596.1864422846], [0.201, 3.36504567824, 1080.7225711916], [0.224, 4.34612745705, 1382.8873468466], [0.192, 5.13697232918, 329.7251917809], [0.208, 3.08549771485, 41.6444977756], [0.236, 0.0799874286, 1141.1340634054], [0.203, 4.13011580915, 2627.1141844706], [0.203, 0.13969067385, 1485.9801210652], [0.204, 3.38137545713, 699.7010313543], [0.212, 4.52370676085, 2310.722314814], [0.218, 5.79277335862, 2221.856634597], [0.213, 0.50441377637, 934.9485149682], [0.21, 5.04017633795, 2420.9286360334], [0.214, 4.64286758581, 2317.8358618148], [0.178, 0.84588580004, 128.3655684841], [0.17, 2.75006619605, 710.7467316182], [0.171, 4.32615182967, 291.262087743], [0.172, 3.4697130692, 501.3797894433], [0.17, 1.05408992106, 526.5095713569], [0.162, 1.1568304295, 519.3960243561], [0.18, 4.96266204107, 1670.8250285], [0.172, 1.65385549578, 916.9322800554], [0.17, 2.30821101766, 429.0458714308], [0.17, 5.98716489326, 643.8294395771], [0.173, 5.19933564968, 1354.4331588434], [0.195, 4.50165508529, 2214.7430875962], [0.156, 4.16290662749, 572.2292347475], [0.153, 1.23776248578, 2413.8150890326], [0.15, 0.63076983213, 1478.8665740644], [0.169, 4.28090123029, 305.3461693927], [0.174, 6.23077892653, 3384.3313390048], [0.149, 3.13274908516, 9573.388259897], [0.162, 6.25601818345, 213.2509113282], [0.149, 4.81749019484, 945.9942152321], [0.162, 0.8861012919, 216.2198567448], [0.133, 2.31915371262, 156.6767441354], [0.165, 6.06456216591, 732.6951197941], [0.141, 6.14293754333, 1795.258443721], [0.133, 0.06530337135, 218.7157214094], [0.162, 3.17058130506, 213.3472795478], [0.125, 2.07143636845, 425.1137181677], [0.146, 1.88627500632, 211.8146227297], [0.113, 2.79541965778, 235.3904959658], [0.117, 0.76464798684, 479.2883889155], [0.108, 3.95650672786, 570.7447620392], [0.106, 0.12820734703, 188.0263011725], [0.134, 3.58244908862, 849.2642284889], [0.114, 0.25990388555, 398.1440028728], [0.112, 2.39181495831, 217.491881132], [0.091, 2.50716605179, 121.2520214833], [0.091, 1.75367948574, 213.8203602998], [0.088, 5.26121947108, 395.578702239], [0.096, 3.98832609364, 289.5651667136], [0.091, 0.35318362186, 312.4597163935], [0.112, 1.14387590923, 1802.3719907218], [0.082, 3.73605217214, 207.6700211455], [0.082, 6.06283262812, 210.3783341312], [0.084, 3.34470673492, 67.6680515665], [0.086, 2.7391730018, 5863.5912061162], [0.083, 2.81499116485, 776.9303104764], [0.091, 1.2616009317, 212.7778305762], [0.09, 2.08722491981, 2111.6503133776], [0.08, 2.13136842916, 421.93232443], [0.082, 4.16358350281, 9793.8009023358], [0.077, 2.96973341607, 431.264057322], [0.079, 3.42790361067, 417.0369633204], [0.079, 3.18693585419, 320.3240229197], [0.08, 0.78975763683, 204.7010757289], [0.077, 1.89354243952, 556.5176680376], [0.073, 4.85923277221, 2118.7638603784], [0.071, 3.64551577433, 198.321241911]], [[16038.734, 5.73945377424, 7.1135470008], [4249.793, 4.58539675603, 213.299095438], [1906.524, 4.76082050205, 220.4126424388], [1465.687, 5.91326678323, 206.1855484372], [1162.041, 5.61973132428, 14.2270940016], [1066.581, 3.60816533142, 426.598190876], [239.377, 3.86088273439, 433.7117378768], [236.975, 5.76826451465, 199.0720014364], [165.641, 5.11641150216, 3.1813937377], [131.409, 4.74327544615, 227.5261894396], [151.352, 2.73594641861, 639.897286314], [61.63, 4.74287052463, 103.0927742186], [63.365, 0.22850089497, 419.4846438752], [40.437, 5.47298059144, 21.3406410024], [40.205, 5.9642026672, 95.9792272178], [38.746, 5.83386199529, 110.2063212194], [28.025, 3.01235311514, 647.0108333148], [25.029, 0.9880817074, 3.9321532631], [18.101, 1.02506397063, 412.3710968744], [17.879, 3.31913418974, 309.2783226558], [16.208, 3.89825272754, 440.8252848776], [15.763, 5.61667809625, 117.3198682202], [19.014, 1.91614237463, 853.196381752], [18.262, 4.96738415934, 10.2949407385], [12.947, 1.18068953942, 88.865680217], [17.919, 4.20376505349, 216.4804891757], [11.453, 5.57520615096, 11.0457002639], [10.548, 5.92906266269, 191.9584544356], [10.389, 3.94838736947, 209.3669421749], [8.65, 3.39335369698, 302.164775655], [7.58, 4.87736913157, 323.5054166574], [6.697, 0.38198725552, 632.7837393132], [5.864, 1.05621157685, 210.1177017003], [5.449, 4.64268475485, 234.6397364404], [6.327, 2.25492722762, 522.5774180938], [3.602, 2.30677010956, 515.463871093], [3.229, 2.20309400066, 860.3099287528], [3.701, 3.14159265359, 0.0], [2.583, 4.93447677059, 224.3447957019], [2.543, 0.42393884183, 625.6701923124], [2.213, 3.19814958289, 202.2533951741], [2.421, 4.76621391814, 330.6189636582], [2.85, 0.5860439501, 529.6909650946], [1.965, 4.39525359412, 124.433415221], [2.154, 1.35488209144, 405.2575498736], [2.296, 3.34809165905, 429.7795846137], [2.018, 3.06693569701, 654.1243803156], [1.979, 1.02981005658, 728.762966531], [1.868, 3.09383546177, 422.6660376129], [1.846, 4.1522598545, 536.8045120954], [2.194, 1.18918501013, 1066.49547719], [2.09, 4.15631351317, 223.5940361765], [1.481, 0.37916705169, 316.3918696566], [1.72, 5.82865773356, 195.1398481733], [1.46, 1.57663426355, 81.7521332162], [1.623, 6.03706764648, 742.9900605326], [1.286, 1.66154726117, 63.7358983034], [1.304, 5.02409881054, 956.2891559706], [1.446, 2.10575519127, 838.9692877504], [1.245, 3.8810975277, 269.9214467406], [1.018, 3.72599601656, 295.0512286542], [1.323, 1.38492882986, 735.8765135318], [1.318, 2.33460998999, 217.2312487011], [0.943, 2.75813531246, 284.1485407422], [0.906, 0.71155526266, 846.0828347512], [0.886, 3.83754799777, 447.9388318784], [0.943, 3.31480217015, 18.1592472647], [0.8, 4.71386673963, 56.6223513026], [0.908, 2.02119147951, 831.8557407496], [0.787, 0.80410269937, 1045.1548361876], [0.709, 4.27064410504, 437.6438911399], [0.651, 6.17565900032, 942.062061969], [0.785, 2.40767785311, 203.0041546995], [0.702, 1.64585301418, 423.4167971383], [0.543, 2.86326941725, 184.8449074348], [0.532, 6.25762144463, 1059.3819301892], [0.521, 3.43013038466, 149.5631971346], [0.484, 4.8836606072, 1272.6810256272], [0.437, 5.40220619672, 408.4389436113], [0.388, 2.57589594168, 508.3503240922], [0.421, 4.05836524024, 543.9180590962], [0.375, 1.22747948298, 2324.9494088156], [0.347, 0.59237194522, 22.0914005278], [0.433, 1.69090148012, 1155.361157407], [0.389, 1.46170367972, 1073.6090241908], [0.307, 1.82185086955, 628.8515860501], [0.409, 1.21858750514, 1052.2683831884], [0.309, 0.33610530663, 6076.8903015542], [0.309, 1.42279282226, 6062.6632075526], [0.34, 1.8332577031, 1141.1340634054], [0.303, 2.4158474733, 127.4717966068], [0.305, 5.34154702988, 131.4039498699], [0.298, 2.28594631393, 635.9651330509], [0.372, 1.0372391139, 313.2104759189], [0.338, 0.69100012338, 1361.5467058442], [0.325, 1.78816356937, 1148.2476104062], [0.322, 1.1862880501, 721.6494195302], [0.271, 2.4566315646, 415.5524906121], [0.251, 3.12046701975, 1382.8873468466], [0.254, 3.00353256829, 618.5566453116], [0.295, 0.35280179538, 2730.2069586892], [0.242, 1.52154324392, 70.8494453042], [0.296, 0.89576757167, 2104.5367663768], [0.264, 3.00987438634, 661.2379273164], [0.267, 0.31623829657, 1677.9385755008], [0.27, 2.56774718753, 643.0786800517], [0.261, 1.55058302472, 1457.525933062], [0.246, 2.29214585472, 867.4234757536], [0.269, 3.18157515051, 750.1036075334], [0.272, 1.12208982319, 1788.1448967202], [0.256, 0.37673546414, 1279.794572628], [0.206, 1.81129778306, 497.4476361802], [0.251, 0.61933213502, 2413.8150890326], [0.237, 3.35941544147, 436.8931316145], [0.247, 0.10102936687, 99.9113804809], [0.247, 0.93125798111, 52.6901980395], [0.221, 2.07880035795, 824.7421937488], [0.197, 6.16682223437, 1258.4539316256], [0.229, 5.5791753484, 2943.5060541272], [0.227, 0.43324651601, 2737.32050569], [0.203, 4.12623986247, 337.732510659], [0.214, 3.57607524509, 934.9485149682], [0.212, 1.25688162158, 1773.9178027186], [0.215, 0.8886764788, 1038.0412891868], [0.244, 5.5157208457, 231.4583427027], [0.181, 2.13821830481, 416.3032501375], [0.21, 4.19139167658, 2221.856634597], [0.178, 2.91685344537, 74.7815985673], [0.201, 0.46214583002, 2854.6403739102], [0.236, 4.64388694899, 1905.4647649404], [0.199, 1.54991619669, 1471.7530270636], [0.199, 0.70725247497, 2420.9286360334], [0.162, 2.5148834502, 430.5303441391], [0.16, 1.23508694599, 1596.1864422846], [0.175, 4.14605894816, 2090.3096723752], [0.152, 0.05796022559, 32.2433289144], [0.176, 1.29002070623, 490.3340891794], [0.154, 3.60622857548, 650.9429865779], [0.185, 4.74969742128, 319.5732633943], [0.154, 1.54587199996, 1464.6394800628], [0.108, 4.251257865, 145.6310438715], [0.106, 1.04047809351, 1162.4747044078], [0.114, 2.640557371, 362.8622925726], [0.093, 3.36746275886, 483.2205421786], [0.091, 2.05796248692, 210.8514148832], [0.091, 4.53336314765, 241.7532834412], [0.072, 3.74361312157, 1485.9801210652], [0.076, 3.33892447677, 195.8906076987]], [[1661.894, 3.99826248978, 7.1135470008], [257.107, 2.98436499013, 220.4126424388], [236.344, 3.90241428075, 14.2270940016], [149.418, 2.74110824208, 213.299095438], [109.598, 1.51515739251, 206.1855484372], [113.953, 3.14159265359, 0.0], [68.39, 1.72120953337, 426.598190876], [37.699, 1.23795458356, 199.0720014364], [40.06, 2.04644897412, 433.7117378768], [31.219, 3.0109418409, 227.5261894396], [15.111, 0.82897064529, 639.897286314], [9.444, 3.71485300868, 21.3406410024], [5.69, 2.41995290633, 419.4846438752], [4.47, 1.45120818748, 95.9792272178], [5.608, 1.1560709574, 647.0108333148], [4.463, 2.11783225176, 440.8252848776], [3.229, 4.09278077834, 110.2063212194], [2.871, 2.77203153866, 412.3710968744], [2.796, 3.00730249564, 88.865680217], [2.638, 0.00255721254, 853.196381752], [2.574, 0.39246854091, 103.0927742186], [1.862, 5.07955457727, 309.2783226558], [2.225, 3.77689198137, 117.3198682202], [1.769, 5.19176876406, 302.164775655], [1.921, 2.82884328662, 234.6397364404], [1.805, 2.23816036743, 216.4804891757], [1.211, 1.54685246534, 191.9584544356], [0.765, 3.44501766503, 323.5054166574], [0.763, 4.83197222448, 210.1177017003], [0.613, 4.19052656353, 515.463871093], [0.648, 2.28591710303, 209.3669421749], [0.616, 4.03194472161, 522.5774180938], [0.63, 2.37952532019, 632.7837393132], [0.639, 0.29772678242, 860.3099287528], [0.559, 2.1711006053, 124.433415221], [0.442, 2.23500083592, 447.9388318784], [0.407, 5.4451597099, 1066.49547719], [0.469, 1.26889429317, 654.1243803156], [0.488, 3.20329778617, 405.2575498736], [0.415, 3.12435410343, 330.6189636582], [0.442, 3.38933498625, 81.7521332162], [0.332, 4.12464206608, 838.9692877504], [0.32, 3.18332026736, 529.6909650946], [0.312, 1.40962796637, 429.7795846137], [0.291, 3.18885372262, 1464.6394800628], [0.333, 2.94355912397, 728.762966531], [0.235, 3.67049647573, 1148.2476104062], [0.286, 2.57895004576, 1045.1548361876], [0.223, 3.57980034401, 1155.361157407], [0.261, 2.04564143519, 1677.9385755008], [0.218, 2.61967125327, 536.8045120954], [0.262, 2.48322150677, 625.6701923124], [0.191, 4.39064160974, 1574.8458012822], [0.176, 1.26161895188, 422.6660376129], [0.19, 2.326931712, 223.5940361765], [0.185, 1.08713469614, 742.9900605326], [0.168, 0.69946458053, 824.7421937488], [0.177, 5.02663339078, 203.0041546995], [0.218, 0.40426546037, 867.4234757536], [0.178, 3.67593243311, 831.8557407496], [0.175, 5.75326979098, 1073.6090241908], [0.156, 3.02120117572, 1781.0313497194], [0.148, 2.28313808274, 295.0512286542], [0.15, 3.48436135302, 956.2891559706], [0.152, 1.91404443241, 942.062061969], [0.146, 6.1651969664, 316.3918696566], [0.096, 2.93247663741, 224.3447957019], [0.088, 4.48383632427, 423.4167971383]], [[123.615, 2.25923345732, 7.1135470008], [34.19, 2.16250652689, 14.2270940016], [27.546, 1.19868150215, 220.4126424388], [5.818, 1.21584270184, 227.5261894396], [5.318, 0.23550400093, 433.7117378768], [3.677, 6.22669694355, 426.598190876], [3.057, 2.97372046322, 199.0720014364], [2.861, 4.28710932685, 206.1855484372], [1.617, 6.25265362286, 213.299095438], [1.279, 5.27612561266, 639.897286314], [0.932, 5.56741549127, 647.0108333148], [0.756, 6.17716234487, 191.9584544356], [0.76, 0.69475544472, 302.164775655], [1.038, 0.23516951637, 440.8252848776], [1.007, 3.14159265359, 0.0], [0.549, 4.87733288264, 88.865680217], [0.504, 4.77955496203, 419.4846438752], [0.346, 4.31847547394, 853.196381752], [0.392, 5.69922389094, 654.1243803156], [0.242, 2.05052677361, 323.5054166574], [0.266, 1.11384528244, 234.6397364404], [0.199, 0.88505901097, 309.2783226558], [0.258, 5.10074489186, 95.9792272178], [0.166, 2.40063312194, 515.463871093], [0.155, 4.70433216164, 860.3099287528], [0.089, 1.3637107038, 412.3710968744], [0.102, 0.49450039082, 117.3198682202]]]

This table contains Saturn’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric longitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 435-440.

pymeeus.Saturn.VSOP87_R = [[[955758135.801, 0.0, 0.0], [52921382.465, 2.39226219733, 213.299095438], [1873679.934, 5.23549605091, 206.1855484372], [1464663.959, 1.64763045468, 426.598190876], [821891.059, 5.93520025371, 316.3918696566], [547506.899, 5.01532628454, 103.0927742186], [371684.449, 2.27114833428, 220.4126424388], [361778.433, 3.13904303264, 7.1135470008], [140617.548, 5.70406652991, 632.7837393132], [108974.737, 3.29313595577, 110.2063212194], [69007.015, 5.94099622447, 419.4846438752], [61053.35, 0.94037761156, 639.897286314], [48913.044, 1.55733388472, 202.2533951741], [34143.794, 0.19518550682, 277.0349937414], [32401.718, 5.47084606947, 949.1756089698], [20936.573, 0.46349163993, 735.8765135318], [20839.118, 1.5210259064, 433.7117378768], [20746.678, 5.33255667599, 199.0720014364], [15298.457, 3.05943652881, 529.6909650946], [14296.479, 2.60433537909, 323.5054166574], [11993.314, 5.98051421881, 846.0828347512], [11380.261, 1.73105746566, 522.5774180938], [12884.128, 1.64892310393, 138.5174968707], [7752.769, 5.85191318903, 95.9792272178], [9796.061, 5.20475863996, 1265.5674786264], [6465.967, 0.17733160145, 1052.2683831884], [6770.621, 3.00433479284, 14.2270940016], [5850.443, 1.45519636076, 415.5524906121], [5307.481, 0.5973753405, 63.7358983034], [4695.746, 2.14919036956, 227.5261894396], [4043.988, 1.64010323863, 209.3669421749], [3688.132, 0.7801613317, 412.3710968744], [3376.457, 3.69528478828, 224.3447957019], [2885.348, 1.38764077631, 838.9692877504], [2976.033, 5.68467931117, 210.1177017003], [3419.551, 4.94549148887, 1581.959348283], [3460.943, 1.85088802878, 175.1660598002], [3400.616, 0.55386747515, 350.3321196004], [2507.63, 3.53851863255, 742.9900605326], [2448.325, 6.18412386316, 1368.660252845], [2406.138, 2.96559220267, 117.3198682202], [2881.181, 0.17960757891, 853.196381752], [2173.959, 0.01508587396, 340.7708920448], [2024.483, 5.05411271271, 11.0457002639], [1740.254, 2.34657043464, 309.2783226558], [1861.397, 5.93361638244, 625.6701923124], [1888.436, 0.02968443389, 3.9321532631], [1610.859, 1.17302463549, 74.7815985673], [1462.631, 1.92588134017, 216.4804891757], [1474.547, 5.6767046113, 203.7378678824], [1395.109, 5.93669404929, 127.4717966068], [1781.165, 0.76314388077, 217.2312487011], [1817.186, 5.77713225779, 490.3340891794], [1472.392, 1.40064915651, 137.0330241624], [1304.089, 0.77235613966, 647.0108333148], [1149.773, 5.74021249703, 1162.4747044078], [1126.667, 4.46707803791, 265.9892934775], [1277.489, 2.98412586423, 1059.3819301892], [1207.053, 0.7528593316, 351.8165923087], [1071.399, 1.13567265104, 1155.361157407], [1020.922, 5.91233512844, 1685.0521225016], [1315.042, 5.11202572637, 211.8146227297], [1295.553, 4.69184139933, 1898.3512179396], [1099.037, 1.81765118601, 149.5631971346], [998.462, 2.63131596867, 200.7689224658], [985.869, 2.25992849742, 956.2891559706], [932.434, 3.66980793184, 554.0699874828], [664.481, 0.60297724821, 728.762966531], [659.85, 4.66635439533, 195.1398481733], [617.74, 5.62092000007, 942.062061969], [626.382, 5.9420823259, 1478.8665740644], [482.23, 1.84070179496, 479.2883889155], [487.689, 2.79373616806, 3.1813937377], [470.086, 0.8384775504, 1471.7530270636], [451.817, 5.64468459871, 2001.4439921582], [553.128, 3.41088600844, 269.9214467406], [534.397, 1.26443331367, 275.5505210331], [472.572, 1.8819858466, 515.463871093], [405.434, 1.64001413521, 536.8045120954], [517.196, 4.44310450526, 2214.7430875962], [452.848, 3.00349117198, 302.164775655], [494.34, 2.28626675074, 278.5194664497], [489.825, 5.80631420383, 191.2076949102], [427.459, 0.05741344372, 284.1485407422], [339.763, 1.40198657693, 440.8252848776], [340.627, 0.89091104306, 628.8515860501], [385.974, 1.99700402508, 1272.6810256272], [288.298, 1.12160250272, 422.6660376129], [294.444, 0.42577061903, 312.1990839626], [262.49, 0.31753439818, 1045.1548361876], [295.331, 0.67144493789, 88.865680217], [342.968, 5.85600322299, 1795.258443721], [341.117, 2.3758524725, 525.4981794006], [234.018, 4.22756813216, 114.1384744825], [223.729, 2.28129446763, 330.6189636582], [275.814, 0.47832439352, 38.1330356378], [224.592, 0.54754005675, 1788.1448967202], [303.3, 0.87946670205, 6069.7767545534], [292.103, 6.2142061192, 210.8514148832], [226.121, 0.37495223398, 142.4496501338], [277.257, 5.31917702012, 692.5874843535], [242.911, 5.37187983246, 1258.4539316256], [205.571, 0.95755250527, 288.0806940053], [207.567, 5.38126259725, 2317.8358618148], [186.835, 6.03591766061, 404.5067903482], [218.536, 5.25607043545, 212.3358875915], [222.155, 5.94588016768, 39.3568759152], [179.673, 4.41045924362, 408.4389436113], [241.44, 1.1252586811, 388.4651552382], [197.093, 3.9014194285, 52.6901980395], [236.639, 0.90802744873, 1375.7737998458], [171.915, 5.56318632797, 213.3472795478], [169.865, 2.8566755401, 99.1606209555], [214.398, 4.20253525974, 2531.1349572528], [172.01, 2.36537801012, 213.2509113282], [165.707, 2.63679789706, 215.7467759928], [230.892, 5.49463421262, 191.9584544356], [177.585, 0.38155817719, 430.5303441391], [191.514, 2.95906900704, 437.6438911399], [163.25, 3.4583251728, 617.8058857862], [162.305, 5.73050678664, 203.0041546995], [175.108, 5.71404465044, 1066.49547719], [183.041, 5.66851947172, 2111.6503133776], [150.077, 4.40663921925, 417.0369633204], [187.935, 6.07916265661, 563.6312150384], [145.127, 5.08176368814, 423.4167971383], [137.491, 5.43912787991, 222.8603229936], [172.824, 1.8492099409, 1589.0728952838], [165.478, 2.89132196119, 214.2623032845], [145.727, 1.56565192483, 831.8557407496], [176.864, 2.30323752987, 9999.986450773], [128.877, 2.55338644107, 414.0680179038], [120.093, 0.04329750542, 1361.5467058442], [143.441, 0.9981735772, 76.2660712756], [108.747, 2.09282278191, 207.6700211455], [132.106, 2.85902597898, 312.4597163935], [112.238, 0.26221759151, 2104.5367663768], [125.186, 4.78354048063, 205.2223405907], [104.427, 3.63671899047, 65.2203710117], [107.447, 3.67064138701, 212.7778305762], [108.642, 2.85492389024, 21.3406410024], [97.743, 5.12231845599, 2634.2277314714], [109.097, 1.63231061493, 208.633228992], [96.852, 4.19928280035, 305.3461693927], [96.507, 2.56002066845, 1692.1656695024], [85.829, 4.54545085982, 210.3783341312], [99.249, 5.13816222131, 1574.8458012822], [112.532, 5.03109281265, 703.6331846174], [84.023, 1.18337717265, 429.7795846137], [89.021, 5.38791571457, 107.0249274817], [110.191, 2.43656081234, 355.7487455718], [90.659, 4.20908809746, 213.8203602998], [95.885, 5.44594259071, 2428.0421830342], [94.109, 2.39786381418, 483.2205421786], [85.609, 0.03354346966, 860.3099287528], [88.796, 4.0576630675, 128.9562693151], [81.951, 1.66499731549, 62.2514255951], [91.24, 3.96942332591, 2847.5268269094], [83.961, 4.60845858022, 177.8743727859], [88.376, 3.86800515885, 140.001969579], [93.308, 0.73846639887, 831.1049812242], [91.872, 2.9497760532, 35.4247226521], [87.077, 1.33390590052, 1905.4647649404], [96.584, 4.84438390997, 131.4039498699], [71.01, 0.99334817658, 405.2575498736], [95.266, 2.51506908152, 2.4476805548], [72.514, 4.63213873657, 245.5424243524], [82.58, 1.52823217919, 145.6310438715], [76.693, 3.15240783008, 767.3690829208], [70.317, 4.0425370727, 173.9422195228], [86.015, 2.3010372727, 85.8272988312], [66.529, 4.75053522835, 70.8494453042], [65.835, 2.46869725001, 280.9671470045], [64.824, 0.09343869325, 9.5612275556], [71.557, 0.01212415296, 565.1156877467], [66.533, 1.08034871114, 339.2864193365], [63.488, 2.01740971153, 234.6397364404], [60.786, 5.12026947473, 756.3233826569], [58.123, 6.05732868566, 1677.9385755008], [64.236, 1.28586474622, 1148.2476104062], [73.124, 4.37810889148, 425.1137181677], [55.012, 3.85865703217, 342.2553647531], [57.101, 6.26689214029, 2420.9286360334], [64.09, 4.09854757476, 327.4375699205], [55.306, 1.60456896521, 543.0242872189], [57.987, 5.4726912434, 347.8844390456], [73.581, 3.72292337326, 92.0470739547], [73.76, 3.57045342615, 1.4844727083], [64.94, 2.44739629174, 267.4737661858], [54.414, 3.71479080197, 344.7030453079], [49.783, 3.93453970179, 192.6921676185], [49.537, 3.22831070579, 333.657345044], [47.539, 3.92925402178, 199.2844497575], [49.368, 4.90341763553, 217.491881132], [62.711, 4.40120079629, 214.7835681463], [46.359, 2.09430260266, 212.5483359126], [46.289, 2.6403845348, 10.2949407385], [54.335, 1.07179534996, 362.8622925726], [58.742, 2.62270940799, 225.8292684102], [48.457, 3.15166418511, 216.2198567448], [46.316, 4.8622664277, 2950.619601128], [45.97, 4.97297391881, 198.321241911], [46.678, 2.44960215701, 207.1487562837], [44.905, 1.77616995803, 223.5940361765], [44.521, 5.55987055442, 264.5048207692], [55.914, 4.29520232351, 329.7251917809], [49.643, 5.20789299388, 2744.4340526908], [58.829, 4.23073947869, 700.6642392008], [52.629, 3.7923062907, 343.2185725996], [41.532, 0.74488808688, 125.9873238985], [47.767, 2.39260015876, 207.8824694666], [56.157, 2.07214273531, 124.433415221], [43.345, 1.83707598036, 106.2741679563], [39.793, 4.00870764324, 12.5301729722], [53.882, 4.97905460628, 134.5853436076], [50.135, 5.75914508514, 320.3240229197], [44.96, 5.35721924134, 218.9281697305], [41.089, 4.92252591399, 1891.2376709388], [46.509, 2.06623129884, 2008.557539159], [42.949, 0.39856812529, 357.4456666012], [37.992, 2.06495914285, 247.2393453818], [48.733, 5.32762223699, 3127.3133312618], [34.583, 5.62555932761, 99.9113804809], [41.092, 2.4726489737, 237.6781178262], [40.763, 4.08408559215, 621.7380390493], [34.213, 0.73077393007, 750.1036075334], [33.967, 5.31264617621, 206.233732547], [36.509, 1.6882677575, 22.0914005278], [39.361, 3.4573071999, 241.6102710893], [34.796, 2.24780137629, 487.3651437628], [33.049, 4.86593901955, 209.106309744], [32.584, 2.22713131846, 319.5732633943], [39.035, 3.73870591196, 3163.918696566], [32.722, 1.06640549236, 252.6559713532], [38.671, 4.39617126814, 18.1592472647], [34.514, 1.8260750069, 380.12776796], [41.539, 0.08136234251, 210.3301500214], [33.527, 5.80475568528, 251.4321310758], [31.221, 1.96489151107, 244.318584075], [30.521, 2.26854188579, 1169.5882514086], [34.828, 5.96324553131, 217.964961884], [38.481, 4.43707551964, 160.6088973985], [35.998, 3.83262381556, 56.6223513026], [31.041, 4.89914223233, 144.1465711632], [32.342, 3.58191018804, 231.4583427027], [28.838, 5.80081031514, 1994.3304451574], [32.175, 2.13166877923, 206.1373643274], [32.643, 1.93131580544, 98.8999885246], [34.917, 5.65276617691, 497.4476361802], [28.928, 2.2165328892, 14.977853527], [31.569, 3.81846560564, 73.297125859], [32.199, 0.9981184629, 1464.6394800628], [29.153, 5.98414099408, 2737.32050569], [36.706, 4.75493516597, 348.8476468921], [28.665, 1.68732054583, 78.7137518304], [27.501, 6.12086395418, 214.0498549634], [28.795, 0.04448605904, 5.6290742925], [27.205, 0.24587543816, 313.2104759189], [32.441, 3.77921585847, 33.9402499438], [27.088, 5.2031009802, 148.0787244263], [34.956, 3.43886187587, 273.1028404783], [33.076, 2.44662095168, 969.6224780949], [27.745, 1.44598606685, 258.8757464767], [27.178, 4.2591859622, 179.3588454942], [27.872, 0.78772093522, 546.956440482], [29.106, 4.83947711462, 905.8865797915], [27.417, 2.44930366818, 254.9435932136], [34.296, 6.00920969644, 166.828672522], [28.859, 6.0291724991, 188.9200730498], [26.001, 0.65046992484, 654.1243803156], [33.56, 1.23732329127, 2221.856634597], [24.356, 0.5224875133, 894.8408795276], [27.767, 5.17820678484, 5.4166259714], [25.568, 3.35897159622, 0.9632078465], [22.879, 3.5129348069, 458.8415197904], [24.496, 0.00976884124, 69.1525242748], [28.794, 0.75545700854, 488.8496164711], [31.228, 2.05299907796, 282.4516197128], [25.438, 5.2903772925, 636.7158925763], [25.332, 4.9700796945, 3060.8259223474], [23.596, 2.54766434769, 196.6243208816], [29.602, 3.92688207792, 206.706813299], [28.255, 2.72125009693, 32.2433289144], [22.115, 4.75775237642, 213.1872208534], [22.13, 3.25436709191, 681.5417840896], [21.675, 4.61403328597, 3267.0114707846], [22.115, 3.16759500067, 213.4109700226], [26.912, 2.86269769133, 24.3790223882], [20.737, 1.66895754198, 274.0660483248], [28.309, 4.73122154345, 552.5855147745], [25.252, 5.11986371899, 168.0525127994], [26.364, 1.59272536419, 491.8185618877], [21.995, 0.8807900928, 635.9651330509], [27.076, 5.53694832022, 555.5544601911], [19.683, 2.14388519695, 54.1746707478], [27.266, 3.57891326986, 561.1835344836], [25.162, 1.78070903718, 182.279606801], [21.386, 3.86030772476, 116.4260963429], [25.572, 1.62093861709, 2324.9494088156], [20.025, 2.90618582553, 120.358249606], [19.882, 5.59203696008, 4.192785694], [19.454, 0.10623632006, 218.7157214094], [25.617, 2.09931460158, 248.7238180901], [19.804, 2.52180124343, 1485.9801210652], [18.516, 2.54810951896, 213.5115437591], [19.831, 0.07955320843, 842.1506814881], [18.516, 5.3775511051, 213.0866471169], [23.655, 1.59974907716, 738.7972748386], [20.375, 2.94653107321, 59.8037450403], [24.247, 3.15387696867, 240.3864308119], [18.294, 3.18715992969, 295.0512286542], [17.464, 2.90471803626, 477.8039162072], [20.698, 1.07232100334, 494.2662424425], [20.4, 1.83665590916, 533.6231183577], [21.285, 0.63341794388, 189.7232222019], [16.116, 0.60069688498, 746.9222137957], [16.297, 3.98317294128, 2.9207613068], [16.922, 4.74266972033, 2207.6295405954], [20.479, 6.05098286202, 173.6815870919], [15.447, 1.49120311247, 543.9180590962], [19.944, 4.9408663275, 121.2520214833], [17.127, 0.71458025372, 1781.0313497194], [17.24, 0.67749766724, 151.0476698429], [15.574, 5.70296527381, 3053.7123753466], [15.036, 5.52770334605, 2310.722314814], [15.928, 4.45642717299, 643.8294395771], [16.165, 0.63286131026, 358.9301393095], [14.589, 5.26158292613, 472.1748419147], [16.545, 3.52813228069, 3480.3105662226], [18.912, 0.55218675639, 4.665866446], [17.595, 2.26495491189, 672.1406152284], [18.104, 2.71285673689, 181.806526049], [15.918, 5.23446779429, 135.5485514541], [13.931, 3.19357128657, 213.5597278689], [14.058, 0.82375896652, 221.3758502853], [13.931, 4.73208739639, 213.0384630071], [14.69, 2.65882838685, 292.0128472684], [14.454, 0.21819892811, 235.3904959658], [16.168, 0.91025406068, 280.003939158], [13.327, 3.54947442109, 205.6642835754], [16.104, 0.82547975762, 176.6505325085], [16.441, 5.39398801335, 424.1505103212], [12.747, 0.75780958758, 721.6494195302], [12.754, 3.55466871752, 153.4953503977], [14.448, 0.12049617049, 313.6835566709], [16.499, 3.26383140489, 6283.0758499914], [16.564, 1.62649604519, 5856.4776591154], [14.95, 1.23923264394, 2641.3412784722], [15.724, 1.18874754834, 486.4019359163], [11.893, 0.91693668558, 416.3032501375], [11.684, 1.11385455828, 81.7521332162], [12.985, 4.74373293725, 3377.217792004], [11.864, 0.64411806416, 28.3111756513], [13.216, 4.9590402443, 1279.794572628], [16.121, 0.98185208328, 2538.2485042536], [14.9, 1.76649832526, 569.0478410098], [11.337, 4.36555105334, 3583.4033404412], [11.253, 5.98638731448, 193.655375465], [14.753, 2.92291248767, 167.0893049529], [13.774, 2.50808183571, 1802.3719907218], [11.068, 0.00471764868, 629.6023455755], [12.781, 3.62178749219, 67.6680515665], [12.238, 0.27163151602, 1044.4040766622], [11.021, 0.15223056578, 501.3797894433], [14.206, 2.63254885854, 618.5566453116], [14.365, 0.37819794671, 601.7642506762], [15.034, 2.67095006272, 46.470422916], [12.248, 2.19751851112, 650.9429865779], [10.783, 2.86375137884, 113.3877149571], [11.418, 1.20874560246, 172.2452984934], [14.613, 6.05645353059, 468.2426886516], [10.58, 2.05903854864, 429.0458714308], [13.721, 2.20936291526, 228.276948965], [12.18, 1.82585577726, 241.8709035202], [10.787, 5.06924118186, 162.8965192589], [12.056, 3.20018724042, 72.0732855816], [12.233, 4.5074193097, 425.6349830295], [12.101, 4.14977794161, 1108.1399749656], [9.843, 1.49451039604, 226.6324175623], [10.287, 2.10680007784, 1033.3583763983], [9.975, 2.81640446254, 518.6452648307], [9.597, 4.80028087522, 426.6463749858], [10.746, 4.66838299108, 129.9194771616], [12.961, 5.11568581806, 219.4494345923], [12.302, 5.335685477, 776.9303104764], [9.484, 4.85702954575, 820.0592809603], [11.441, 3.85769732764, 405.9912630565], [9.625, 1.60280478656, 426.5500067662], [9.164, 0.7020456798, 403.0223176399], [10.112, 2.7648687563, 210.5907824523], [10.816, 1.36864298163, 170.7608257851], [10.187, 2.36063948382, 685.4739373527], [12.397, 6.06349943525, 875.830299001], [12.146, 2.04060386262, 508.3503240922], [9.574, 3.19555214859, 286.596221297], [10.193, 4.01123146905, 381.3516082374], [8.9, 3.6326023588, 319.3126309634], [10.052, 5.1610725104, 216.0074084237], [8.528, 3.88076551354, 630.3360587584], [8.875, 5.46623776078, 3370.1042450032], [8.401, 5.65557131026, 213.4591541324], [10.033, 5.97497644283, 6.1503391543], [8.401, 2.27009862215, 213.1390367436], [11.661, 0.95163302252, 694.0719570618], [8.696, 2.33868966556, 220.364458329], [8.141, 5.5405974715, 220.4608265486], [9.615, 2.75755414306, 556.5176680376], [9.12, 0.44322374149, 2097.423219376], [8.109, 5.53989498262, 181.0557665236], [10.763, 0.05616402982, 691.1030116452], [9.579, 2.84979792871, 184.0941479094], [9.958, 2.38581008546, 945.2434557067], [8.526, 0.17821781104, 289.5651667136], [7.7, 0.0048137541, 7.1617311106], [8.613, 0.82900327241, 2957.7331481288], [9.517, 2.27516458273, 8.0767548473], [9.049, 3.3733502579, 731.9443602687], [7.888, 5.78452089815, 230.8252032563], [7.684, 3.10462250617, 7.065362891], [7.391, 5.29648701813, 2627.1141844706], [9.875, 4.69411059509, 10213.285546211], [7.328, 0.09051133382, 100.6450936638], [7.999, 1.60928374337, 696.5196376166], [7.6, 4.90078510977, 51.2057253312], [9.928, 5.25713005643, 699.7010313543], [7.333, 5.61982406824, 31.492569389], [7.376, 4.52737009022, 616.3214130779], [9.422, 2.44475274779, 2118.7638603784], [7.3, 4.0188547501, 212.0270710508], [7.502, 4.71301501745, 436.1594184316], [9.071, 2.75662160229, 130.4407420234], [8.913, 2.19608557019, 427.5613987225], [8.801, 4.26655882704, 141.2258098564], [6.853, 5.69082635009, 480.7728616238], [7.765, 3.27218537808, 3796.7024358792], [9.159, 3.0471367165, 9786.687355335], [9.034, 2.04165937353, 204.7010757289], [6.902, 4.61962635489, 2524.021410252], [6.728, 0.58794595002, 739.8086667949], [6.741, 0.52362906624, 135.336103133], [8.201, 5.03994203224, 411.620337349], [7.24, 3.90653111215, 214.5711198252], [6.887, 4.11954799957, 662.531203563], [6.566, 2.67659365854, 194.1766403268], [6.539, 6.25585361704, 31.019488637], [7.484, 5.56871021201, 271.4059194489], [8.078, 3.0995581756, 353.301065017], [7.072, 1.10066698352, 282.6640680339], [6.089, 0.79684364835, 593.426863398], [6.14, 3.79672343724, 180.1619946463], [6.703, 3.8285424862, 412.5835451955], [6.024, 5.46288776207, 724.8308132679], [8.102, 4.51051495778, 268.4369740323], [6.033, 1.24326252021, 447.9388318784], [7.425, 2.29394888999, 532.6117264014], [6.007, 2.87215425398, 426.0769260142], [7.568, 0.79147591036, 2854.6403739102], [5.816, 1.70824982811, 50.4025761791], [7.534, 5.3859829268, 953.1077622329], [5.863, 2.04201456623, 454.9093665273], [7.291, 0.88044346877, 457.617679513], [6.235, 4.51960341418, 3693.6096616606], [6.359, 6.27053660532, 313.9441891018], [5.722, 0.47241118592, 610.6923387854], [5.704, 0.45599464136, 643.0786800517], [6.176, 3.98739420856, 835.0371344873], [5.73, 0.5081424249, 1038.0412891868], [6.812, 4.2046338569, 938.1299087059], [5.62, 4.08049141112, 3899.7952100978], [6.77, 4.22172125738, 916.9322800554], [6.069, 3.46762401122, 278.2588340188], [5.875, 5.51773010551, 1073.6090241908], [5.558, 3.29478679376, 20.6069278195], [6.274, 4.88767368263, 0.5212648618], [5.794, 4.09991767938, 391.1734682239], [5.442, 2.79802608247, 397.3932433474], [5.754, 4.42718264879, 165.6048322446], [5.879, 6.17871525366, 291.262087743], [6.716, 2.1866384773, 627.3671133418], [5.761, 0.62536160332, 114.3991069134], [5.359, 2.29390692216, 331.2096644892], [6.21, 4.92273259045, 450.9772132642], [6.686, 2.13438181268, 285.6330134505], [5.173, 4.10128119721, 6.592282139], [5.707, 3.48716972669, 230.5645708254], [6.363, 5.64626069194, 518.3846323998], [5.241, 3.78081098206, 418.5214360287], [5.191, 4.39595146262, 84.3428261229], [6.71, 2.96748528229, 624.919432787], [4.931, 2.71959451867, 558.0021407459], [5.225, 4.65463431385, 310.7146112543], [4.857, 2.61373582429, 66.70484372], [4.847, 3.76991373317, 423.6774295692], [5.284, 1.96024672163, 1182.9215735329], [5.933, 2.74003948393, 219.891377577], [6.373, 1.4129634646, 606.7601855223], [4.728, 0.23421038001, 1063.3140834523], [6.408, 1.1668741968, 268.9582388941], [4.782, 1.56813683227, 420.9691165835], [5.399, 4.57611449409, 238.9019581036], [5.161, 0.14436456585, 2413.8150890326], [4.858, 5.21378840436, 3686.4961146598], [5.086, 1.73392381835, 337.732510659], [4.65, 3.7102912129, 305.0855369618], [4.896, 3.6778653184, 240.125798381], [5.949, 0.29956165181, 524.0137066923], [4.968, 2.53258931342, 980.6681783588], [4.944, 2.16189522746, 104.0559820651], [5.366, 3.54867806985, 107.2855599126], [4.917, 0.48641512683, 3274.1250177854], [5.617, 6.27593478237, 112.6540017742], [4.524, 5.09539085552, 103.1409583284], [5.643, 1.5272433648, 105.5404547734], [4.504, 1.68251875362, 196.0336200506], [4.897, 4.90011892854, 102.1295663721], [4.525, 1.88735156553, 103.0445901088], [4.327, 1.4540722938, 409.9234163196], [5.095, 3.40640608336, 427.1194557378], [5.782, 3.55197606731, 25874.6040461362], [4.192, 0.16603430914, 958.576777831], [4.976, 0.50639895683, 511.5317178299], [4.167, 5.9472576207, 316.4400537664], [4.353, 3.78587101731, 1171.875873269], [5.387, 2.03693287651, 2435.155730035], [4.067, 4.6659260313, 106.0135355254], [4.817, 3.53529781673, 960.2213092337], [4.048, 3.20024146722, 775.233389447], [4.016, 6.00569143107, 945.9942152321], [3.989, 3.15130319196, 115.6229471908], [4.559, 5.59555355771, 778.4147831847], [4.153, 2.75042736587, 316.3436855468], [3.983, 2.00842137744, 597.3590166611], [4.212, 4.16852690218, 823.9914342234], [5.193, 0.71717111984, 810.6581120991], [3.927, 5.04361736754, 2943.5060541272], [4.225, 0.02571003853, 0.7507595254], [4.926, 1.12994881124, 526.9826521089], [4.17, 3.94116290117, 422.405405182], [4.432, 3.995990468, 393.4610900843], [3.84, 1.21234108241, 212.0752551606], [3.866, 4.20930793423, 97.6761482472], [4.44, 1.35536679738, 211.6021744086], [3.84, 0.43014354282, 214.5229357154], [4.724, 3.62039208608, 638.4128136057], [4.87, 5.7587459962, 1246.6574718363], [4.449, 1.43384065964, 184.9879197867], [3.931, 2.36660272585, 909.8187330546], [3.787, 5.98932416906, 325.9530972122], [3.665, 0.72917314141, 20.4468691251], [4.243, 2.29103096797, 453.424893819], [3.73, 6.24831601183, 159.1244246902], [3.9, 1.31013240315, 850.0149880143], [5.134, 1.97348901289, 526.5095713569], [3.621, 2.77435773661, 123.5396433437], [3.607, 5.3205884271, 406.954470903], [3.802, 1.94444523548, 421.1815649046], [3.906, 3.02475451573, 317.3550775031], [4.473, 0.80804073855, 838.218528225], [4.081, 2.0873246818, 988.532484885], [3.843, 4.99347148246, 7.6348118626], [4.467, 6.09037793116, 760.25553592], [3.514, 3.97285766412, 426.4863162914], [3.504, 0.85064201666, 299.1263942692], [4.397, 1.68577228317, 824.7421937488], [3.581, 2.35235960566, 337.8019466282], [4.606, 3.48411642192, 913.9633346388], [3.79, 3.64538213705, 216.2680408546], [3.496, 0.95035381131, 436.8931316145], [4.422, 0.82822191292, 43.2890291783], [3.688, 2.837854438, 739.0579072695], [4.439, 1.19409419107, 421.93232443], [3.572, 2.77298538478, 444.7574381407], [4.42, 5.44308967028, 963.4027029714], [4.443, 3.73070830296, 37.8724032069], [4.322, 4.75680702521, 40.8413486235], [3.724, 0.59005210557, 256.4280659219], [4.471, 2.22367643527, 318.8395502114], [4.184, 1.5271919664, 298.2326223919], [3.534, 5.0193759957, 386.9806825299], [3.4, 3.22663067085, 4113.0943055358], [4.556, 1.35715974815, 495.7507151508], [4.453, 1.80417064247, 829.6205085159], [3.617, 1.51036385224, 41.6444977756], [3.789, 4.80357656146, 238.4288773516], [3.514, 2.38272766645, 426.7100654606], [3.208, 1.74465274123, 952.3570027075], [4.398, 2.65839000906, 832.5894539325], [4.092, 3.07954777295, 60.7669528868], [3.813, 5.63047104819, 315.4286618101], [3.219, 6.22278803635, 754.8389099486], [3.102, 2.69222024257, 343.7398374614], [4.045, 4.024637721, 376.1956146969], [3.576, 0.3853278728, 214.9960164674], [3.291, 5.49542015261, 143.9341228421], [3.981, 5.75449411958, 239.1625905345], [3.249, 0.58789568678, 619.2903584945], [3.114, 0.02831060137, 221.1634019642], [3.555, 3.12207684735, 1048.3362299253], [3.01, 1.91180343491, 93.531546663], [3.384, 1.81702854004, 443.8636662634], [3.222, 2.37342117781, 429.5189521828], [3.431, 5.92099840679, 570.7447620392], [3.271, 2.04947945059, 806.725958836], [3.207, 5.44018976766, 402.2191684878], [3.091, 0.10717557454, 3590.516887442], [2.951, 1.76365810296, 426.8106391971], [2.958, 0.23653889192, 1354.4331588434], [2.948, 4.59289832104, 426.3857425549], [3.506, 5.43222584214, 84.9335269539], [2.894, 5.69678330542, 1262.3860848887], [3.682, 1.07122313007, 395.578702239], [2.983, 5.25093816048, 313.4711083498], [3.117, 4.18767239237, 366.7944458357], [2.873, 4.45472312727, 361.3778198643], [3.521, 2.05528981993, 1261.6353253633], [3.496, 1.87950759078, 439.1283638482], [3.012, 0.64439385874, 263.0203480609], [2.849, 1.12491777974, 262.0571402144], [2.91, 2.76192171681, 541.5398145106], [3.322, 6.08893948791, 108.7218485111], [3.181, 1.01419299056, 418.0001711669], [2.793, 0.38781777981, 211.8628068395], [3.091, 2.18216748751, 306.830642101], [3.748, 3.89145855821, 220.9339073006], [2.982, 1.99831689446, 117.9105690512], [2.793, 1.25466684542, 214.7353840365], [3.512, 1.50965040301, 885.4397106664], [2.716, 0.80710391613, 757.2171545342], [3.137, 2.09889265033, 2751.5475996916], [2.738, 4.89270330923, 464.7312265138], [2.875, 4.28436709414, 4010.0015313172], [3.313, 3.01452486457, 336.8387387817], [2.746, 2.69963506928, 380.3884003909], [3.132, 2.19562786872, 2.9689454166], [3.233, 0.60809684558, 3171.0322435668], [3.034, 0.93246285284, 205.4347889118], [3.006, 5.91067479448, 2.7083129857], [3.643, 5.58302397259, 423.6292454594], [2.625, 1.07042050691, 23.5758732361], [3.495, 0.1988756203, 576.1613880106], [2.59, 0.2125277375, 110.2545053292], [2.704, 6.12908233599, 572.2292347475], [2.568, 0.17571588314, 1056.2005364515], [2.583, 2.96927378731, 384.0599212231], [2.555, 3.96441052072, 430.79097657], [2.786, 2.54945911818, 195.8906076987], [2.869, 4.82964665921, 710.7467316182], [2.534, 5.31005598763, 427.3489504014], [2.618, 1.22081401503, 36.6485629295], [3.464, 2.328113282, 285.3723810196], [3.374, 3.34109586766, 162.0933701068], [2.694, 4.64149271687, 140.9651774255], [2.603, 0.99527295832, 92.3077063856], [3.14, 5.4079027758, 328.2407190726], [2.603, 4.3153279088, 561.934294009], [2.987, 0.82758128867, 45.5766510387], [2.959, 3.35623851523, 273.8536000037], [2.561, 0.54160683162, 107.7586406646], [2.9, 1.20691455948, 462.0229135281], [2.648, 1.90547819027, 88.1149206916], [2.461, 4.68211868869, 2840.4132799086], [2.534, 5.00311256556, 431.264057322], [2.521, 3.3216047231, 136.0698163159], [2.945, 1.06452531856, 732.6951197941], [2.654, 1.36744710395, 460.5384408198], [3.297, 1.33975572602, 305.6068018236], [2.634, 2.299955338, 519.3960243561], [2.805, 5.62255444533, 1699.2792165032], [2.439, 5.14733660159, 303.8616966844], [2.434, 3.71460437051, 4216.1870797544], [2.416, 3.76296045457, 77.7505439839], [2.803, 2.55280894914, 505.3119427064], [2.592, 3.32836551071, 110.1581371096], [3.074, 1.71462387764, 256.5881246163], [3.295, 0.81766682522, 705.1176573257], [3.183, 6.15742006608, 109.2431133729], [2.908, 5.38534195293, 315.1680293792], [2.326, 1.42604031905, 131.5469622218], [2.427, 2.0462785074, 124.5028511902], [2.632, 1.41253794767, 211.6545640353], [2.297, 1.38016674676, 425.8474313506], [2.318, 6.27716072818, 317.142629182], [2.31, 4.86442292404, 3259.8979237838], [2.873, 1.10206537875, 7.8643065262], [2.616, 0.11849676899, 133.1008708993], [3.213, 4.4932046169, 432.2272651685], [2.276, 6.04688191978, 214.1022445901], [2.276, 1.96882478275, 212.4959462859], [2.917, 0.96774661857, 100.3844612329], [2.89, 5.72610904534, 322.0209439491], [2.829, 2.66887892162, 141.4864422873], [2.695, 1.4748857107, 42.5382696529], [2.697, 5.34002228297, 432.0148168474], [2.229, 4.40717937246, 540.7366653585], [2.214, 2.43714413196, 426.8588233069], [2.512, 4.68291916658, 1596.1864422846], [2.202, 5.91122030007, 867.4234757536], [2.856, 0.94736445171, 41.0537969446], [2.396, 0.10516628717, 206.9363079626], [2.345, 1.1668526778, 640.8604941605], [2.263, 4.62327588198, 188.0263011725], [2.214, 3.97566024178, 426.3375584451], [2.274, 4.9405583072, 4002.8879843164], [2.541, 0.837056152, 12352.8526045448], [2.145, 3.40120044084, 111.1695290659], [2.895, 6.07389082608, 2914.0142358238], [2.52, 1.05396310009, 184.7272873558], [2.448, 3.49820841117, 481.7360694703], [2.343, 2.86472924644, 207.0793203145], [2.964, 5.96264929181, 465.9550667912], [2.122, 4.04560058177, 118.0706277456], [2.452, 4.35251210402, 1382.8873468466], [2.131, 0.61211416273, 335.1418177523], [2.116, 4.76181734842, 765.8846102125], [2.245, 5.67078632283, 6467.9257579616], [2.425, 0.84789834075, 550.1378342197], [2.227, 1.15684015463, 227.3137411185], [2.314, 6.13104971819, 2730.2069586892], [2.344, 0.35844885568, 217.4436970222], [2.529, 3.07975959821, 774.4826299216], [2.523, 1.75026771081, 1578.0271950199], [2.111, 4.24637589094, 96.8729990951], [2.826, 1.01974994073, 87.3117715395], [2.906, 3.75374302356, 428.0826635843], [2.113, 2.19787343926, 449.232108125], [2.142, 1.19671359858, 209.1544938538], [2.882, 2.59371585952, 39.6175083461], [2.078, 2.87503604503, 14.0146456805], [2.09, 1.99032225653, 441.576044403], [2.519, 2.99001165551, 745.277682393], [2.035, 5.37147785849, 1041.2226829245], [2.054, 1.11817372961, 842.9014410135], [2.023, 2.94559148702, 668.2084619653], [2.529, 4.34280159004, 221.8971151471], [2.554, 5.56906955622, 214.1928673153], [2.712, 1.60469055827, 1050.9963588012], [2.35, 3.36541706919, 220.2001941177], [2.015, 2.60446576036, 315.6411101312], [2.158, 1.64945261993, 219.6618829134], [2.12, 2.93968038721, 304.1223291153], [2.357, 1.94433441808, 233.9060232575], [2.579, 4.54124062411, 484.7050148869], [2.046, 5.45531068264, 200.5564741447], [2.04, 2.04492641594, 1097.0942747017], [2.675, 1.20234167733, 28.5718080822], [2.528, 4.69268465973, 637.4496057592], [2.314, 2.81193072994, 25.1297819136], [2.689, 5.03868493349, 1269.4996318895], [2.115, 3.10772296248, 1276.6131788903], [2.712, 1.49710379127, 3340.6124266998], [2.138, 4.52114042624, 378.9039276826], [2.708, 0.01014338204, 389.9496279465], [2.56, 5.75783882561, 544.5087599272], [2.028, 0.24331359951, 146.594251718], [2.096, 1.44475430956, 864.2420820159], [1.897, 4.63194412388, 220.3007678542], [1.901, 1.78319572727, 192.8522263129], [2.011, 4.11578325523, 315.8706047948], [2.014, 2.26726355818, 198.1087935899], [1.905, 2.15527255015, 326.6868103951], [1.949, 3.95440811214, 103.6140390804], [2.098, 5.24613314798, 175.4266922311], [1.884, 5.66018186202, 1310.3933701397], [1.911, 2.606654466, 301.4140161296], [2.16, 3.42888079793, 420.005908737], [2.325, 5.896321781, 815.0633461142], [1.914, 0.22451332248, 171.6545976624], [1.854, 0.04278915026, 233.7459645631], [1.973, 2.6864025948, 769.8167634756], [1.941, 0.61369890353, 3487.4241132234], [1.836, 3.41496980986, 195.7729876197], [2.554, 2.35660179716, 212.4053235607], [1.822, 4.05510232882, 639.9454704238], [1.883, 6.27079329518, 16.6747745564], [1.865, 0.17460226411, 244.791664827], [2.097, 4.58369520569, 316.9131345184], [1.879, 2.76480572708, 28.4541880032], [2.111, 2.92457831824, 328.9220426288], [2.077, 0.3594303358, 589.4947101349], [1.825, 4.04945265223, 190.4045457581], [1.895, 3.89414880651, 334.5511169213], [2.425, 3.76754213762, 25558.2121764796], [2.218, 1.85341154236, 635.231419868], [1.782, 0.86927461254, 92.7978334801], [2.432, 3.78026263567, 1254.5217783625], [2.106, 0.17285594964, 354.2642728635], [1.791, 6.23892012939, 1670.8250285], [1.996, 1.40940081042, 230.7075831773], [1.753, 1.86660297451, 241.7532834412], [2.093, 2.3936677788, 187.4356003415], [2.007, 3.54083120293, 226.7924762567], [1.949, 1.36533052698, 1385.174968707], [1.737, 2.67583588366, 6.3627874754], [1.868, 4.24454204649, 1119.1856752295], [1.896, 3.81474515719, 310.9752436852], [1.86, 3.67887919389, 1321.4390704036], [2.305, 3.53252557028, 1570.9136480191], [2.008, 3.88504783546, 638.9340784675], [1.928, 2.64393870433, 525.7588118315], [1.807, 0.76057354967, 66.1835788582], [1.824, 0.85822155861, 639.8491022042], [2.221, 4.8221041383, 1585.8915015461], [2.227, 4.58488941022, 271.61836777], [1.897, 0.6433475825, 55.6591434561], [1.792, 0.00514800434, 827.9235874865], [1.831, 3.69768852728, 172.4577468145], [1.79, 4.8006297772, 3576.2897934404], [1.698, 0.72475212282, 295.1942410061], [1.744, 3.4525618329, 238.5718897035], [2.334, 1.51845210531, 170.0100662597], [1.669, 4.44620549295, 4319.279853973], [1.939, 3.43927826945, 102.5715093568], [1.733, 5.96815907422, 837.6972633632], [1.686, 2.12870436615, 491.5579294568], [1.651, 3.20586624475, 281.1795953256], [1.884, 4.2444781245, 13.4933808187], [1.88, 0.33845094634, 214.9436268407], [1.817, 3.07678560214, 220.5245170234], [1.872, 3.79328892492, 392.6579409322], [2.195, 1.93786776664, 259.769518354], [1.881, 4.49314034712, 199.8057146193], [1.662, 0.29659841675, 314.9073969483], [1.626, 2.29697402942, 3067.9394693482], [1.927, 1.00706624515, 26.826702943], [1.621, 0.01495920679, 1379.7059531089], [1.655, 4.15494230496, 4326.3934009738], [1.719, 5.9744386099, 152.5321425512], [1.653, 5.65633302949, 448.6895914038], [1.79, 3.73709604091, 10.0343083076], [1.6, 2.28430251221, 749.2098356561], [1.77, 0.03256515992, 364.3467652809], [1.939, 5.93191442558, 249.9476583675], [1.988, 4.78810872536, 101.8689339412], [1.667, 5.52149899431, 229.9738699944], [2.215, 3.55121116323, 594.6507036754], [1.95, 0.80878923373, 1049.0869894507], [1.773, 2.55608046714, 9985.7593567714], [2.088, 2.33165208016, 420.4478517217], [2.107, 2.43624356568, 453.6855262499], [1.907, 4.72569972805, 857.1285350151], [1.609, 4.96540433043, 285.1117485887], [2.152, 4.87024306306, 186.2117600641], [1.685, 5.68609178354, 200.0352092829], [1.752, 5.21532265401, 25448.00585526019], [1.87, 6.14683645342, 347.3631741838], [1.731, 1.95944272122, 934.9485149682], [1.68, 5.562466977, 170.9732741062], [1.652, 1.2452135105, 398.1440028728], [1.548, 0.38524522125, 17.2654753874], [1.577, 0.23430114545, 434.6749457233], [1.652, 2.84480428863, 385.5443939314], [1.77, 1.1505799628, 199.9657733137], [1.528, 4.02240583348, 236.1936451179], [2.118, 5.47803429266, 369.0820676961], [1.543, 2.54353574089, 632.7355552034], [1.504, 5.94300855424, 280.2163874791], [1.495, 2.19380669867, 407.4757357648], [1.894, 1.88797605501, 598.8434893694], [1.515, 4.70072295492, 211.2933578679], [1.767, 3.11910667879, 2921.1277828246], [1.515, 3.31498374761, 215.3048330081], [1.728, 5.28095966912, 219.5188705615], [1.906, 5.24236020775, 248.4631856592], [1.607, 0.80041605735, 642.3449668688], [1.64, 2.93387205029, 1364.7280995819], [1.585, 0.77219822539, 661.2379273164], [1.458, 5.67666822477, 632.831923423], [1.866, 4.40562835971, 971.1069508032], [1.838, 0.4849219076, 1127.0499817557], [1.903, 5.18692835916, 2015.6710861598], [1.59, 2.8004320807, 633.7469471597], [1.489, 4.10155671855, 77837.11123384659], [1.573, 4.23741356107, 203.8979265768], [1.69, 0.65475720351, 2700.7151403858], [1.872, 3.54376036064, 354.5249052944], [1.419, 4.53129346734, 224.6054281328], [1.575, 3.52476647615, 373.9079928365], [1.817, 3.9520388555, 6076.8903015542], [1.446, 5.41423319377, 317.8763423649], [1.552, 1.89030720529, 1304.9243545416], [1.394, 1.86243646383, 913.7508863177], [1.94, 4.36562864826, 432.7485300303], [1.655, 1.31748248488, 25668.418497699], [1.438, 5.12958189872, 71.8126531507], [1.929, 4.90721606846, 206.3979967583], [1.533, 2.10965059985, 378.6432952517], [1.421, 6.22897936063, 904.4021070832], [1.45, 1.98065714692, 205.9731001161], [1.584, 5.94110940455, 1226.2106027112], [1.51, 3.77771207288, 222.7002642992], [1.67, 2.51954641624, 976.7360250957], [1.823, 1.60093991502, 1141.1340634054], [1.564, 3.94804398924, 9566.2747128962], [1.406, 3.65940442223, 316.5037442412], [1.653, 3.62394476466, 968.1380053866], [1.495, 0.7783227917, 5959.570433334], [1.408, 5.2497092498, 316.279995072], [1.724, 0.25483952164, 125.1841747464], [1.426, 2.26871672572, 17.4084877393], [1.881, 4.12588105003, 562.1467423301], [1.37, 4.7447486688, 1357.6145525811], [1.485, 2.18712736768, 9889.7801295536], [1.369, 1.31846306523, 1160.8301730051], [1.394, 5.6692451786, 1736.9915610157], [1.375, 0.16983286236, 346.3999663373], [1.525, 2.40244831911, 419.4364597654], [1.359, 2.68668516027, 310.7627953641], [1.396, 3.6705539794, 253.4591205053], [1.454, 5.4935626244, 504.561183181], [1.813, 0.2188206686, 263.7016716171], [1.33, 3.01736059716, 254.1404440615], [1.498, 0.17578085903, 155.7829722581], [1.509, 5.13129901759, 768.8535556291], [1.55, 1.44225397189, 1894.4190646765], [1.447, 1.44933809994, 893.3564068193], [1.306, 5.76425101758, 714.6788848813], [1.66, 1.34160526151, 322.6116447801], [1.347, 3.00388920953, 843.6351541964], [1.432, 3.43786149731, 251.1714986449], [1.51, 4.39762427873, 25.2727942655], [1.587, 5.17106904014, 141.6988906084], [1.477, 5.4751837761, 226.0417167313], [1.356, 4.24406292182, 332.1728723357], [1.644, 1.74367211793, 67.8804998876], [1.407, 5.79229630947, 188.1693135244], [1.575, 0.09808372057, 702.1487119091], [1.765, 4.93410889383, 201.5196819912], [1.318, 4.91605557404, 17.5261078183], [1.701, 4.47360878108, 384.2723695442], [1.304, 6.04155032791, 25.8634950965], [1.269, 4.91035989349, 354.9979860464], [1.62, 5.54960841244, 260.360219185], [1.263, 1.16521999431, 255.8373650909], [1.744, 3.70453251764, 147.1155165798], [1.579, 4.31561365365, 2228.9701815978], [1.557, 0.57740217353, 3178.1457905676], [1.302, 0.32055726013, 119.767548775], [1.405, 3.2040748604, 395.105621487], [1.234, 2.34766954239, 318.679491517], [1.519, 4.74629629688, 100.1720129118], [1.573, 4.00132484524, 1264.2954542392], [1.222, 0.10709243166, 1372.5924061081], [1.205, 0.24105241435, 466.7582159433], [1.188, 1.27112537278, 1184.4060462412], [1.28, 4.85454052139, 535.9107402181], [1.482, 4.4716669291, 763.4369296577], [1.233, 1.64803509193, 433.663553767], [1.476, 3.7663439911, 272.5815756165], [1.199, 1.78020373551, 102.3420146932], [1.186, 4.72162748523, 795.6802585721], [1.291, 4.42697938285, 10220.3990932118], [1.576, 2.40263038916, 348.635198571], [1.497, 3.44614317326, 3024.2205570432], [1.175, 4.85145058205, 433.7599219866], [1.262, 5.79416346069, 531.978586955], [1.486, 4.39599352105, 1055.4497769261], [1.351, 0.46461977407, 707.5653378805], [1.23, 5.18147817992, 752.3912293938], [1.175, 4.35535063059, 3892.681663097], [1.581, 5.49361132323, 419.532827985], [1.247, 4.22328749428, 113.1270825262], [1.145, 2.26067253357, 199.1201855462], [1.385, 0.89711064123, 6073.7089078165], [1.228, 4.55057016747, 680.0573113813], [1.47, 1.58708185256, 409.1897031367], [1.366, 3.99684537321, 6065.8446012903], [1.131, 1.56474593118, 196.8367692027], [1.163, 5.75528918663, 2303.6087678132], [1.142, 4.35845106342, 1834.6153196362], [1.244, 1.93187654929, 623.2225117576], [1.136, 3.13253323524, 611.4430983108], [1.425, 2.65840274172, 1253.7710188371], [1.114, 3.43048279234, 771.3012361839], [1.314, 0.15326588489, 493.303034596], [1.109, 2.9580840286, 1091.6252591036], [1.177, 3.88159541809, 128.3655684841], [1.15, 4.6914056969, 1.2720243872], [1.527, 1.09983755253, 683.0262567979], [1.304, 5.24544813643, 5650.2921106782], [1.347, 4.11616699496, 97.4636999261], [1.085, 0.70231952018, 1166.4068576709], [1.224, 4.2299482253, 827.1728279611], [1.142, 5.36157631813, 199.0238173266], [1.373, 0.89371361814, 799.6124118352], [1.085, 1.15969472512, 398.2870152247], [1.098, 3.75659421786, 318.3976072267], [1.136, 1.35127769399, 205.9249160063], [1.108, 6.03201954623, 206.4461808681], [1.146, 0.18236094571, 6386.16862421], [1.216, 0.49809632153, 1178.9894202698], [1.295, 2.32056477953, 10003.9186040361], [1.082, 1.966110692, 3700.7232086614], [1.094, 5.12244388591, 314.3861320865], [1.464, 4.54056066665, 1248.1419445446], [1.277, 5.42029902662, 9996.0542975099], [1.248, 0.21625135029, 101.6083015103], [1.055, 5.5372537326, 1578.7779545453], [1.265, 5.85587479852, 82.8583534146], [1.058, 0.73824266822, 670.916774951], [1.127, 3.6345849801, 582.3811631341], [1.188, 2.10062104535, 423.8898778903], [1.217, 2.49656109071, 311.7260032106], [1.08, 3.96349373526, 118.8737768977], [1.175, 0.91096377814, 740.0692992258], [1.087, 5.46774426742, 494.4786907636], [1.08, 3.49168860514, 847.0460425977], [1.095, 0.97418295319, 1159.2933106701], [1.078, 1.75579678521, 1457.525933062], [1.087, 4.81206824168, 109.6850563576], [1.293, 0.02397468965, 2723.0934116884], [1.19, 4.49552956868, 429.3065038617], [1.127, 0.84707518843, 48.7580447764], [1.047, 4.58416926615, 89.7594520943], [1.251, 1.16783030789, 455.1699989582], [1.122, 5.7216130664, 78263.70942472259], [1.027, 0.16330222064, 229.7614216733], [1.069, 2.37188773221, 848.530515306], [1.252, 5.28238896229, 6080.8224548173], [1.181, 5.22299379363, 1459.9565672743], [1.382, 0.51603096285, 774.0095491696], [1.064, 5.95222326171, 1144.3154571431], [1.083, 5.04862249728, 629.8629780064], [1.061, 3.38604454777, 27.0873353739], [1.415, 4.85796248007, 2332.0629558164], [1.082, 4.07686503205, 1245.172999128], [1.112, 6.07617329506, 870.4618571394], [1.072, 0.73647405514, 1482.7987273275], [1.322, 2.81015928946, 223.3334037456], [1.398, 1.55232715558, 25771.5112719176], [1.065, 3.98884050015, 683.1863154923], [1.008, 5.19594380826, 316.1312372257], [1.197, 0.79148395839, 9580.5018068978], [1.402, 4.82957073563, 883.7951792637], [1.064, 4.65334775068, 201.9927627432], [1.108, 5.88857586823, 657.1627617014], [0.996, 4.99081076034, 426.7582495704], [0.996, 1.60533807224, 426.4381321816], [1.028, 5.9212831945, 108.50940019], [1.004, 3.5425959786, 754.0357607965], [1.214, 0.81213286478, 1773.9178027186], [1.318, 0.6026917613, 1123.1178284926], [1.327, 4.758850089, 321.808495628], [1.014, 5.79119811472, 6460.8122109608], [1.178, 0.47169015111, 495.9631634719], [0.999, 5.95030119388, 3906.9087570986], [1.033, 3.75433174131, 414.8187774292], [1.002, 1.39171012432, 1251.3403846248], [0.99, 1.32621236288, 1268.7488723641], [1.275, 1.95417923977, 757.8078553652], [1.174, 6.04352585298, 225.0785088848], [1.174, 5.43253033568, 849.2642284889], [1.004, 5.33434806968, 46.2097904851], [1.108, 1.28177889943, 294.3004691288], [0.976, 1.83523959034, 5.8897067234], [0.971, 3.38563950019, 306.0969289181], [1.05, 3.88449467091, 632.2624744514], [1.05, 3.26096036982, 159.7151255212], [1.041, 2.36429894351, 821.5437536686], [1.218, 4.61739999906, 990.2294059144], [1.342, 1.55614528399, 498.9321088885], [0.967, 3.84645372731, 604.4725636619], [1.171, 0.42265751679, 10011.0321510369], [0.965, 0.05396772193, 962.5089310941], [1.096, 3.04685199735, 608.404716925], [1.166, 6.14999706886, 737.3128021303], [0.986, 3.71830385737, 1235.6117715724], [0.953, 0.79704964354, 16.4623262353], [0.976, 1.05304205075, 8.3373872782], [1.142, 1.06057209808, 369.9758395734], [1.06, 4.36236322604, 633.305004175], [1.138, 4.31859245106, 98.4269077726], [1.006, 5.89037944896, 10007.0999977738], [0.967, 1.56852913547, 157.6399519819], [1.082, 0.99548769517, 4.1446015842], [1.009, 6.15037679495, 401.3253966105], [0.981, 2.37620383333, 35.212274331], [1.011, 5.42685471402, 110.7275860812], [0.989, 4.11575312649, 413.8555695827], [1.024, 1.90798238649, 1175.8080265321], [1.079, 4.95981991427, 631.8205314667], [0.982, 3.02842195594, 347.4113582936], [0.979, 3.74615289445, 700.4517908797], [0.928, 5.22236951137, 1173.5204046717], [0.912, 4.14451390992, 469.7271613599], [0.938, 1.18273838991, 254.3528923826], [0.977, 1.26684849112, 104.5772469269], [1.134, 5.87478488618, 6058.7310542895], [1.092, 4.51789158271, 532.1386456494], [1.132, 4.5542002715, 1912.5783119412], [0.915, 4.87266214195, 18.9100067901], [0.915, 5.96624579967, 1987.2168981566], [1.039, 2.40020830681, 6475.0393049624], [0.965, 4.98927479154, 394.3548619616], [0.964, 3.609037159, 3281.2385647862], [0.897, 2.81660605059, 316.2318109622], [1.008, 5.78024010734, 502.8642621516], [1.005, 6.12431717236, 6275.9623029906], [0.895, 6.09245508513, 316.551928351], [1.224, 1.73535287415, 5120.6011455836], [1.138, 2.92901543353, 1037.2905296614], [0.924, 5.70601816488, 614.8369403696], [0.893, 5.25155704274, 475.3562356524], [1.042, 1.10027795842, 1518.2234499796], [0.89, 4.03192782386, 1314.3255234028], [0.926, 3.35110915055, 635.70450062], [1.13, 5.49282680494, 92.940845832], [0.89, 2.12933822393, 3384.3313390048], [0.967, 5.86215202069, 13.3333221243], [1.004, 1.73116475997, 10316.3783204296], [1.226, 3.52834223937, 80.4106728598], [1.029, 4.90620832171, 19.1224551112], [0.996, 0.76740358631, 733.428832977], [0.91, 4.08904906301, 3333.498879699], [1.235, 1.23871819142, 357.2332182801], [1.218, 0.18349810348, 1090.4014188262], [0.864, 4.71917415767, 620.253566341], [0.935, 1.45887009044, 1042.9196039539], [0.866, 4.04792682992, 522.529233984], [1.158, 5.4332220911, 1089.129394439], [0.86, 0.49220052417, 64.9597385808], [1.19, 5.5896536965, 2810.9214616052], [0.957, 3.1291404701, 628.5909536192], [0.861, 5.69790389801, 103.843533744], [1.037, 5.91424823262, 11.3063326948], [0.918, 0.21424702155, 373.0142209592], [0.836, 3.02501867546, 387.2413149608], [1.158, 3.33343863758, 6290.1893969922], [0.856, 0.81593288669, 907.3710524998], [1.036, 3.11936047271, 5429.8794682394], [0.853, 6.23618175592, 938.8806682313], [0.982, 3.39082880963, 521.6142102473], [0.851, 5.14029961564, 802.7938055729], [0.828, 0.28399876908, 338.4832701844], [0.868, 1.89151676387, 627.1546650207], [0.878, 2.67671626912, 688.6553310904], [0.921, 0.18441593712, 3803.81598288], [0.821, 0.74694467095, 1152.1797636693], [0.841, 2.42616504698, 625.8826406335], [0.862, 3.35273419872, 425.3261664888], [0.887, 3.46938383985, 1748.788020805], [0.815, 5.95428642326, 321.0577361026], [0.958, 1.35525670354, 1201.831580323], [0.905, 5.43093361027, 236.8749686741], [0.862, 3.24167644516, 427.8702152632], [0.793, 5.01131700831, 109.9938728983], [0.791, 2.21809404489, 110.4187695405], [0.842, 5.04957483651, 444.1242986943], [0.887, 4.23752031714, 3553.9115221378], [0.851, 4.64229745145, 4105.980758535], [1.067, 4.69271921916, 559.6990617753], [0.966, 4.55013458162, 9360.089164459], [0.977, 1.50925667031, 186.472392495], [1.092, 0.5815374794, 203.2647871304], [0.997, 0.24589891452, 439.9315130003], [0.786, 3.84829878956, 194.3890886479], [0.774, 3.7605063931, 219.1406180516], [0.845, 4.21602090805, 2648.454825473], [0.962, 0.30590569897, 229.340730548], [0.763, 0.05577842075, 846.131018861], [0.839, 5.68124142701, 2620.0006374698], [0.818, 2.5260962654, 26301.2022370122], [0.929, 0.71906225883, 740.2817475469], [0.895, 5.83218231202, 4539.6924964118], [0.939, 3.68460642343, 817.7716590999], [0.755, 4.90024080821, 532.8723588323], [0.784, 1.14096100609, 551.031606097], [0.899, 1.85252071775, 835.7878940127], [0.753, 0.04254534997, 1534.7381658416], [1.033, 1.0013799327, 134.1122628556], [0.851, 6.1227286454, 1475.6851803267], [0.797, 5.14322789256, 473.659314623], [0.729, 4.94931618796, 476.1069951778], [0.852, 3.11058720799, 232.4215505492], [0.783, 4.50805467439, 1151.4290041439], [0.751, 0.92289775523, 1884.124123938], [0.832, 4.19686348297, 29.2049475286], [0.72, 0.4096104103, 522.6256022036], [0.722, 3.96121088528, 1474.9344208013], [0.788, 0.99170388242, 121.8427223143], [0.722, 4.16734185316, 232.2091022281], [0.97, 2.32204039048, 566.600160455], [0.814, 5.19337022083, 948.2124011233], [0.724, 2.30837674225, 949.12742486], [0.77, 5.89605163084, 156.6767441354], [0.705, 5.40102118863, 1193.9672737968], [0.809, 3.56474059969, 845.3320752258], [0.755, 3.94580797273, 451.7279727896], [0.731, 6.11847213487, 1239.5439248355], [0.747, 1.40599730465, 782.3469364478], [0.861, 1.84312374221, 984.6003316219], [0.695, 4.78088165969, 10419.4710946482], [0.804, 1.079984374, 89.0086925689], [0.828, 5.86080569334, 845.1196269047], [0.692, 3.38736418117, 6489.2613984286], [0.694, 3.07863807714, 316.6043179777], [0.69, 5.8668131138, 316.1794213355], [0.714, 5.38707933404, 567.8240007324], [0.767, 0.1208184965, 485.8806710545], [0.82, 1.87877245664, 499.895316735], [0.705, 0.57839934869, 1053.7528558967], [0.684, 4.8844227063, 2545.3620512544], [0.689, 6.14296395253, 622.4887985747], [0.823, 3.50224755884, 877.5754041402], [0.827, 2.59300433753, 232.942815411], [0.735, 3.05650026582, 66.9172920411]], [[6182981.282, 0.25843515034, 213.299095438], [506577.574, 0.71114650941, 206.1855484372], [341394.136, 5.7963577396, 426.598190876], [188491.375, 0.47215719444, 220.4126424388], [186261.54, 3.14159265359, 0.0], [143891.176, 1.40744864239, 7.1135470008], [49621.111, 6.0174446958, 103.0927742186], [20928.189, 5.0924565447, 639.897286314], [19952.612, 1.17560125007, 419.4846438752], [18839.639, 1.60819563173, 110.2063212194], [12892.827, 5.94330258435, 433.7117378768], [13876.565, 0.75886204364, 199.0720014364], [5396.699, 1.28852405908, 14.2270940016], [4869.308, 0.86793894213, 323.5054166574], [4247.455, 0.39299384543, 227.5261894396], [3252.084, 1.25853470491, 95.9792272178], [2856.006, 2.16731405366, 735.8765135318], [2909.411, 4.60679154788, 202.2533951741], [3081.408, 3.43662557418, 522.5774180938], [1987.689, 2.45054204795, 412.3710968744], [1941.309, 6.02393385142, 209.3669421749], [1581.446, 1.29191789712, 210.1177017003], [1339.511, 4.30801821806, 853.196381752], [1315.59, 1.25296446023, 117.3198682202], [1203.085, 1.86654673794, 316.3918696566], [1091.088, 0.07527246854, 216.4804891757], [954.403, 5.15173410519, 647.0108333148], [966.012, 0.47991379141, 632.7837393132], [881.827, 1.88471724478, 1052.2683831884], [874.215, 1.40224683864, 224.3447957019], [897.512, 0.98343776092, 529.6909650946], [784.866, 3.06377517461, 838.9692877504], [739.892, 1.38225356694, 625.6701923124], [612.961, 3.03307306767, 63.7358983034], [658.21, 4.1436293098, 309.2783226558], [649.6, 1.7248948616, 742.9900605326], [599.236, 2.54924174765, 217.2312487011], [502.886, 2.12958819475, 3.9321532631], [413.017, 4.59334402271, 415.5524906121], [356.117, 2.30312127651, 728.762966531], [344.777, 5.88787577835, 440.8252848776], [395.004, 0.53349091102, 956.2891559706], [335.526, 1.61614647174, 1368.660252845], [362.772, 4.70691652867, 302.164775655], [321.611, 0.97931764923, 3.1813937377], [277.783, 0.26007031431, 195.1398481733], [291.173, 2.83129427918, 1155.361157407], [264.971, 2.42670902733, 88.865680217], [264.864, 5.82860588985, 149.5631971346], [316.777, 3.58395655749, 515.463871093], [294.324, 2.81632778983, 11.0457002639], [244.864, 1.04493438899, 942.062061969], [215.368, 3.56535574833, 490.3340891794], [264.047, 1.28547685567, 1059.3819301892], [246.245, 0.90730313861, 191.9584544356], [222.077, 5.1319321205, 269.9214467406], [194.973, 4.56665009915, 846.0828347512], [182.802, 2.67913220473, 127.4717966068], [181.645, 4.93431600689, 74.7815985673], [174.651, 3.44560172182, 137.0330241624], [165.515, 5.99775895715, 536.8045120954], [154.809, 1.19720845085, 265.9892934775], [169.743, 4.63464467495, 284.1485407422], [151.526, 0.52928231044, 330.6189636582], [152.461, 5.43886711695, 422.6660376129], [157.687, 2.99559914619, 340.7708920448], [140.63, 2.02069760726, 1045.1548361876], [139.834, 1.3528295939, 1685.0521225016], [140.977, 1.27099900689, 203.0041546995], [136.013, 5.01678984678, 351.8165923087], [153.391, 0.26968607873, 1272.6810256272], [129.476, 1.14344730612, 21.3406410024], [127.831, 2.53876158952, 1471.7530270636], [126.538, 3.00310970076, 277.0349937414], [100.277, 3.61360169153, 1066.49547719], [103.169, 0.38175114761, 203.7378678824], [107.527, 4.31870663477, 210.8514148832], [95.934, 0.79463744168, 1258.4539316256], [82.663, 0.28181414606, 234.6397364404], [97.986, 2.56085956186, 191.2076949102], [97.389, 3.26245865063, 831.8557407496], [72.227, 4.3798463038, 860.3099287528], [70.639, 0.7319151392, 437.6438911399], [70.447, 0.87698401733, 423.4167971383], [72.057, 5.58013290518, 429.7795846137], [73.332, 0.62505906432, 1375.7737998458], [66.433, 2.68414462465, 405.2575498736], [63.812, 1.7505149818, 1361.5467058442], [61.601, 1.09332288242, 2001.4439921582], [67.006, 0.06872766216, 408.4389436113], [68.945, 2.47127505057, 949.1756089698], [60.456, 2.25094790113, 1788.1448967202], [67.074, 5.45365870159, 200.7689224658], [65.579, 0.05539079332, 1589.0728952838], [49.32, 4.17243429807, 138.5174968707], [50.648, 6.26867505289, 223.5940361765], [55.166, 4.59491533823, 628.8515860501], [47.916, 0.83929741626, 10.2949407385], [46.691, 2.17322569098, 312.1990839626], [54.179, 0.28360076018, 124.433415221], [49.511, 3.79960349195, 215.7467759928], [40.136, 5.18161452756, 1478.8665740644], [39.302, 0.56257369109, 1574.8458012822], [34.962, 4.68487505703, 38.1330356378], [42.77, 2.98582069454, 1148.2476104062], [36.521, 0.63453270366, 52.6901980395], [39.752, 0.28412706854, 131.4039498699], [31.777, 5.19036499973, 76.2660712756], [33.041, 1.9796484643, 142.4496501338], [42.053, 4.830179518, 288.0806940053], [30.757, 1.47903923433, 1677.9385755008], [42.829, 3.38225543528, 208.633228992], [29.245, 5.09869866956, 654.1243803156], [29.165, 4.95664881649, 1795.258443721], [29.136, 2.74747553685, 404.5067903482], [32.689, 6.12099521344, 145.6310438715], [28.008, 0.83185907283, 2317.8358618148], [27.725, 2.24364073545, 430.5303441391], [29.939, 1.96415498448, 2104.5367663768], [32.982, 3.28236160491, 222.8603229936], [31.772, 6.02453027348, 1905.4647649404], [26.959, 5.24308283338, 388.4651552382], [26.514, 0.99638302878, 107.0249274817], [25.421, 2.87336642463, 703.6331846174], [24.908, 1.07713811775, 99.9113804809], [24.955, 6.23974037842, 106.2741679563], [24.894, 0.81040976807, 312.4597163935], [24.34, 0.54867402916, 214.2623032845], [28.441, 0.82630052794, 1692.1656695024], [23.219, 5.07995629354, 479.2883889155], [24.362, 3.10643455533, 212.3358875915], [21.951, 6.06688237952, 85.8272988312], [22.046, 3.89863665506, 563.6312150384], [22.596, 4.86725457223, 295.0512286542], [21.256, 5.10797617452, 333.657345044], [25.985, 2.20813879137, 1265.5674786264], [20.904, 3.28855303434, 70.8494453042], [21.505, 3.79541155976, 347.8844390456], [22.067, 4.22716352578, 217.964961884], [20.629, 1.68732248608, 231.4583427027], [21.429, 3.08914428467, 554.0699874828], [21.31, 0.38868340861, 319.5732633943], [20.521, 2.45651851283, 18.1592472647], [26.055, 4.27554951169, 483.2205421786], [20.703, 5.1205793632, 362.8622925726], [22.047, 5.51249354809, 343.2185725996], [19.443, 2.02441679295, 313.2104759189], [20.163, 5.0848137311, 750.1036075334], [20.125, 3.42997916125, 213.3472795478], [24.196, 0.64787472796, 207.8824694666], [21.977, 0.72894956852, 99.1606209555], [21.12, 2.69286728009, 1464.6394800628], [17.192, 4.71525117969, 2111.6503133776], [18.54, 0.04817255506, 245.5424243524], [17.521, 3.83662880684, 497.4476361802], [16.107, 4.22374822303, 565.1156877467], [21.607, 4.16647257628, 2.4476805548], [15.979, 0.27376396113, 225.8292684102], [16.831, 1.41134653939, 114.1384744825], [15.626, 2.82768623405, 81.7521332162], [15.499, 1.20606390539, 1994.3304451574], [15.168, 3.84591816174, 1162.4747044078], [16.436, 3.04752365976, 134.5853436076], [15.87, 0.33026420429, 1891.2376709388], [20.37, 0.23170286692, 213.2509113282], [16.291, 1.70643197929, 2420.9286360334], [16.28, 4.9415942732, 357.4456666012], [18.076, 5.69515344123, 56.6223513026], [13.724, 0.5724019003, 2634.2277314714], [17.355, 3.55311137444, 218.9281697305], [13.74, 5.70545527289, 92.0470739547], [15.328, 1.3133869285, 216.2198567448], [12.538, 5.19222019427, 635.9651330509], [12.815, 1.6015113087, 320.3240229197], [13.043, 0.45068441373, 1169.5882514086], [11.984, 5.9491612357, 543.9180590962], [11.753, 2.80279347133, 217.491881132], [14.746, 5.56520105813, 344.7030453079], [12.762, 1.63557330778, 273.1028404783], [11.855, 2.46234840263, 721.6494195302], [13.309, 5.75641013916, 2221.856634597], [14.471, 0.45316163629, 2008.557539159], [11.84, 1.7572077238, 160.6088973985], [12.374, 1.01456317602, 329.7251917809], [10.747, 1.58065203003, 212.7778305762], [12.758, 1.9195237324, 1581.959348283], [11.944, 4.44720922423, 32.2433289144], [11.865, 5.10696147162, 4.665866446], [11.861, 4.30847607078, 618.5566453116], [10.036, 0.48709852137, 305.3461693927], [12.777, 3.74412991331, 508.3503240922], [10.677, 0.76645916273, 218.7157214094], [11.351, 3.00009819697, 198.321241911], [10.249, 2.40923650192, 546.956440482], [9.984, 2.63882014753, 416.3032501375], [9.345, 5.4591731786, 414.0680179038], [9.317, 4.46380159546, 2428.0421830342], [9.928, 4.04821559448, 62.2514255951], [12.767, 3.43273835457, 258.8757464767], [9.733, 1.6106632468, 327.4375699205], [11.163, 2.40665325234, 1781.0313497194], [10.608, 2.0748002083, 213.8203602998], [9.125, 2.92369523159, 1279.794572628], [9.525, 1.10338403136, 113.3877149571], [9.805, 3.28427768485, 275.5505210331], [11.263, 1.89402915826, 561.1835344836], [8.572, 2.17858055966, 425.1137181677], [8.577, 1.95484887975, 35.4247226521], [10.157, 0.09037368733, 182.279606801], [11.807, 3.71278037583, 350.3321196004], [8.595, 1.83382454431, 629.6023455755], [8.396, 3.76782674303, 251.4321310758], [8.46, 0.35676476459, 617.8058857862], [8.25, 5.31140994372, 65.2203710117], [8.342, 1.3830766388, 1.4844727083], [7.987, 5.1362289817, 22.0914005278], [8.377, 0.91817077859, 1485.9801210652], [7.98, 0.94199750915, 2310.722314814], [8.898, 0.54037636841, 168.0525127994], [8.233, 3.45785310349, 424.1505103212], [8.034, 3.38451795597, 144.1465711632], [7.871, 5.14041888473, 358.9301393095], [8.868, 6.13541788772, 621.7380390493], [7.523, 5.75475671698, 447.9388318784], [7.515, 2.18967849979, 264.5048207692], [8.083, 1.42661116937, 2737.32050569], [8.199, 0.96419579079, 767.3690829208], [8.232, 0.35471613534, 278.5194664497], [8.226, 5.44467204721, 254.9435932136], [6.779, 1.19567671732, 5.4166259714], [8.928, 4.88240256153, 120.358249606], [7.845, 4.56376829397, 280.9671470045], [6.566, 3.50152072308, 9.5612275556], [6.398, 0.33471834269, 2950.619601128], [6.881, 3.39438820076, 98.8999885246], [7.418, 4.52451404934, 5.6290742925], [8.021, 0.94470052446, 636.7158925763], [6.134, 0.18013315689, 2207.6295405954], [7.153, 3.85218295688, 214.0498549634], [6.046, 4.66733263196, 543.0242872189], [6.365, 2.12000811873, 274.0660483248], [6.481, 5.31032923608, 6076.8903015542], [5.935, 6.16808119163, 650.9429865779], [5.752, 3.55773840903, 1073.6090241908], [6.438, 0.44934410249, 10007.0999977738], [6.283, 3.20942251433, 219.4494345923], [5.542, 3.61193204407, 125.9873238985], [5.522, 3.84217355164, 181.0557665236], [5.777, 3.00590926498, 121.2520214833], [6.67, 1.65236689367, 1898.3512179396], [7.591, 0.10483002359, 2324.9494088156], [5.881, 1.04006410206, 9992.8729037722], [5.609, 4.83142709229, 643.0786800517], [5.569, 2.23863483508, 1038.0412891868], [5.755, 5.91598458372, 6062.6632075526], [5.845, 6.10234689502, 209.106309744], [5.577, 0.81426649853, 472.1748419147], [5.247, 0.56496127013, 192.6921676185], [5.493, 5.81071309534, 237.6781178262], [5.148, 4.85160826999, 267.4737661858], [6.122, 2.11480301005, 2097.423219376], [6.188, 4.59441762166, 207.6700211455], [6.303, 0.75806431119, 210.3783341312], [5.102, 4.01017179605, 205.2223405907], [6.583, 1.79054357427, 12.5301729722], [4.902, 0.8509952186, 247.2393453818], [4.918, 4.03512681632, 487.3651437628], [5.818, 5.48495503489, 2538.2485042536], [4.855, 4.18197778083, 2744.4340526908], [4.885, 0.25103933716, 129.9194771616], [5.748, 0.55968589618, 116.4260963429], [4.901, 4.48628916012, 291.262087743], [4.72, 5.57686152365, 342.2553647531], [5.962, 5.12885837444, 692.5874843535], [5.629, 4.39847572369, 196.6243208816], [5.596, 0.94874135403, 1802.3719907218], [6.197, 3.80364010966, 339.2864193365], [4.668, 3.16816375033, 148.0787244263], [4.891, 2.67234862638, 417.0369633204], [4.959, 1.63453587065, 166.828672522], [4.408, 4.95179678525, 184.0941479094], [4.449, 5.69134789394, 252.6559713532], [4.943, 0.85358212806, 46.470422916], [5.153, 3.82176885491, 842.1506814881], [5.93, 5.95484153666, 486.4019359163], [4.206, 2.97664198894, 380.12776796], [4.467, 0.249149784, 128.9562693151], [5.419, 6.19106890918, 337.732510659], [4.499, 4.71434958315, 151.0476698429], [4.233, 4.18702525973, 685.4739373527], [4.695, 1.54881559549, 214.7835681463], [4.084, 4.871732264, 14.977853527], [4.321, 5.4261516886, 436.8931316145], [5.145, 0.49931857511, 248.7238180901], [3.897, 0.74661138504, 2627.1141844706], [3.995, 3.07750371135, 710.7467316182], [4.089, 5.81996977038, 491.8185618877], [4.532, 3.67494714028, 189.7232222019], [3.69, 1.26565281569, 211.8146227297], [4.036, 1.15473702593, 3053.7123753466], [3.672, 4.52661018437, 488.8496164711], [3.662, 2.87243745783, 411.620337349], [3.653, 3.06205147988, 409.9234163196], [3.908, 3.45947158106, 220.4608265486], [4.989, 3.36376245705, 824.7421937488], [3.677, 3.55713278092, 244.318584075], [3.58, 1.57825591891, 643.8294395771], [3.546, 2.1984624503, 135.336103133], [3.56, 4.51362022045, 601.7642506762], [3.843, 0.98567531677, 271.4059194489], [3.559, 1.11005765159, 6283.0758499914], [4.266, 6.19696005871, 268.4369740323], [3.442, 4.27628882392, 867.4234757536], [4.844, 3.73706907228, 235.3904959658], [3.659, 2.21859531609, 2.9207613068], [3.958, 5.17084570945, 114.3991069134], [3.609, 5.54387488088, 458.8415197904], [4.47, 3.742569309, 699.7010313543], [3.293, 4.48068043469, 289.5651667136], [3.24, 5.94728881707, 131.5469622218], [3.477, 3.54553285172, 963.4027029714], [3.838, 4.77967877681, 175.1660598002], [3.223, 1.95410765469, 212.0270710508], [4.053, 4.19011281964, 501.3797894433], [3.1, 2.11956558345, 916.9322800554], [3.183, 1.93201605379, 1354.4331588434], [3.301, 1.80825506815, 756.3233826569], [4.187, 5.96622666047, 212.5483359126], [3.716, 3.70660462807, 204.7010757289], [3.0, 6.15443664698, 3267.0114707846], [2.993, 4.20888489881, 533.6231183577], [4.125, 6.09715151219, 2641.3412784722], [3.145, 2.55483540896, 905.8865797915], [2.982, 1.52760656472, 945.9942152321], [3.015, 1.76012152992, 28.3111756513], [3.453, 1.42473508236, 2214.7430875962], [2.926, 5.50138147476, 24.3790223882], [2.978, 4.2744005991, 195.8906076987], [3.526, 3.63935401565, 229.9738699944], [2.86, 4.52551886503, 241.6102710893], [3.059, 5.68165832697, 282.6640680339], [3.415, 5.26311934884, 67.6680515665], [2.819, 5.42053027567, 305.0855369618], [3.503, 1.31670335802, 69.1525242748], [2.746, 0.82597971627, 444.7574381407], [2.796, 0.0702104716, 681.5417840896], [3.366, 4.03843228994, 6.1503391543], [3.242, 2.63461047831, 739.8086667949], [2.718, 3.40899287465, 188.9200730498], [2.741, 3.22092213412, 776.9303104764], [2.793, 3.39766347322, 431.264057322], [2.966, 3.9142937295, 526.5095713569], [2.693, 3.38996413068, 778.4147831847], [2.68, 3.82192393959, 3060.8259223474], [2.954, 2.69669880207, 426.6463749858], [2.681, 1.04615621583, 28.4541880032], [3.182, 2.72333374876, 432.2272651685], [2.633, 2.55029306465, 10213.285546211], [2.923, 0.85695094024, 2435.155730035], [2.596, 5.42890752137, 207.1487562837], [3.225, 0.9653861573, 2118.7638603784], [2.774, 0.3326084427, 326.6868103951], [2.55, 5.88893697427, 439.1283638482], [2.716, 3.15505406487, 170.7608257851], [2.942, 4.88555233562, 397.3932433474], [3.121, 1.87815629157, 2413.8150890326], [3.263, 2.59868619716, 213.0384630071], [2.518, 0.15471130491, 945.2434557067], [3.169, 5.70993651497, 381.3516082374], [2.515, 0.06248441393, 427.5613987225], [3.279, 4.95751323467, 313.9441891018], [2.595, 5.13169797457, 299.1263942692], [2.572, 3.42558391509, 4.192785694], [2.58, 2.03280916494, 319.3126309634], [3.294, 6.24566168486, 421.1815649046], [2.58, 2.62721090534, 213.1872208534], [2.879, 0.45679876898, 285.6330134505], [2.406, 4.57473098758, 228.276948965], [2.518, 2.5550008583, 140.001969579], [2.422, 2.36310658303, 84.3428261229], [2.374, 2.25544718932, 17.2654753874], [2.627, 1.26370339212, 724.8308132679], [2.346, 3.77641630157, 206.233732547], [2.463, 5.4209427824, 395.578702239], [2.352, 0.63041319237, 210.5907824523], [3.166, 0.26273580642, 201.5196819912], [2.405, 0.78919759458, 426.0769260142], [2.39, 5.89523812458, 738.7972748386], [2.515, 0.70044371265, 2943.5060541272], [2.332, 4.06963624306, 519.3960243561], [3.132, 2.7933163219, 732.6951197941], [2.658, 3.34020209714, 1141.1340634054], [2.258, 0.1240330973, 2524.021410252], [2.697, 2.58404587754, 425.6349830295], [2.416, 3.85003724506, 696.5196376166], [2.597, 2.54164936697, 436.1594184316], [2.192, 3.07202313269, 203.2647871304], [2.424, 2.60715310452, 511.5317178299], [2.126, 0.14811901148, 405.9912630565], [2.306, 1.25068142377, 427.1194557378], [2.121, 0.43505808954, 184.9879197867], [2.755, 3.02380019321, 468.2426886516], [2.333, 3.02634928771, 216.0074084237], [2.182, 4.27912012069, 7.1617311106], [2.101, 4.31781498012, 572.2292347475], [2.362, 4.8291434111, 556.5176680376], [2.218, 0.82936075453, 3370.1042450032], [2.103, 5.25950154713, 661.2379273164], [2.58, 1.0370534038, 213.4109700226], [2.366, 6.14368355608, 205.4347889118], [2.042, 0.21462094901, 3259.8979237838], [2.547, 4.69969204009, 221.3758502853], [1.987, 3.22670561632, 1382.8873468466], [2.213, 0.89932827487, 286.596221297], [2.191, 0.08759174058, 259.769518354], [1.968, 0.57824086026, 180.1619946463], [2.037, 2.35713099759, 610.6923387854], [1.959, 2.18553775379, 72.0732855816], [2.061, 1.68041202479, 1670.8250285], [1.94, 0.62951066481, 406.954470903], [2.043, 4.39130144045, 576.1613880106], [1.936, 1.0528693453, 1262.3860848887], [1.975, 0.3194583516, 938.1299087059], [2.015, 1.66410213484, 193.655375465], [1.971, 0.72639439054, 200.5564741447], [1.952, 6.25320630177, 241.7532834412], [1.976, 1.31263772699, 135.5485514541], [2.448, 0.52850194172, 429.5189521828], [1.977, 3.13944703383, 421.93232443], [1.853, 0.17184530353, 196.0336200506], [2.552, 5.39764879348, 2854.6403739102], [1.83, 1.47821899466, 638.4128136057], [2.245, 6.0042716427, 230.7075831773], [1.822, 6.08626100417, 1261.6353253633], [2.168, 0.41741136149, 213.5115437591], [1.869, 3.67791368036, 403.0223176399], [1.866, 1.59662677545, 391.1734682239], [2.034, 1.21814866092, 3046.5988283458], [1.929, 4.93193335031, 420.9691165835], [1.746, 5.09757251683, 107.7586406646], [2.168, 3.24685294764, 213.0866471169], [2.178, 5.09777299346, 558.0021407459], [1.992, 2.29524873043, 1773.9178027186], [1.761, 2.8865562467, 141.6988906084], [1.769, 5.47051542758, 206.1373643274], [1.734, 2.11941015901, 430.79097657], [2.377, 1.0763352157, 59.8037450403], [1.797, 2.90984583978, 92.7978334801], [1.725, 5.22827286197, 757.2171545342], [2.305, 5.88235807192, 426.5500067662], [1.751, 5.2899080347, 87.3117715395], [2.202, 1.28096946505, 624.919432787], [2.043, 0.46193065602, 831.1049812242], [1.931, 1.26974971942, 219.891377577], [1.953, 2.96900002385, 398.1440028728], [1.676, 4.81683149512, 181.806526049], [1.902, 2.74426125465, 4952.0635932862], [2.133, 5.37177705284, 627.3671133418], [1.962, 3.52111949662, 213.4591541324], [1.709, 6.14073761844, 952.3570027075], [1.784, 1.05243716682, 353.301065017], [1.7, 1.1741886417, 739.0579072695], [1.609, 1.35009554392, 84.9335269539], [2.038, 2.47570829812, 26.826702943], [1.87, 5.61729116529, 2957.7331481288], [1.962, 0.13564680851, 213.1390367436], [2.041, 3.31354526279, 1596.1864422846], [1.612, 6.19495100885, 432.0148168474], [1.742, 2.87947098602, 179.3588454942], [1.964, 2.84253666387, 429.0458714308], [1.805, 0.60932632638, 532.6117264014], [1.647, 0.82347900016, 214.5711198252], [1.893, 4.33962647901, 173.9422195228], [1.689, 1.13037158144, 586.3133163972], [1.523, 2.71561930244, 73.297125859], [1.524, 5.26558677448, 5429.8794682394], [1.582, 2.79533721474, 842.9014410135], [1.608, 2.33230359324, 418.5214360287], [1.579, 1.15182102801, 731.9443602687], [1.689, 1.91915438546, 630.3360587584], [1.99, 5.23790221176, 550.1378342197], [1.772, 2.95372411478, 172.2452984934], [1.596, 0.99004701777, 953.1077622329], [1.784, 3.9139103236, 159.1244246902], [1.592, 2.99690086808, 45.5766510387], [1.968, 0.23073879009, 220.364458329], [1.549, 5.88699595922, 60.5545045657], [1.459, 5.51999778036, 273.8536000037], [1.909, 2.78415262815, 418.0001711669], [1.445, 3.25530914937, 453.424893819], [1.454, 0.16250693313, 115.6229471908], [1.566, 2.24077018103, 1056.2005364515], [1.412, 3.45442909885, 354.9979860464], [1.564, 3.38591337689, 409.1897031367], [1.631, 1.06286709889, 213.5597278689], [1.415, 1.3209187759, 373.9079928365], [1.389, 0.40584159469, 9360.089164459], [1.663, 2.33357114562, 188.0263011725], [1.426, 5.44677783737, 864.2420820159], [1.716, 3.96056093028, 1699.2792165032], [1.682, 0.3974767032, 17.4084877393], [1.368, 5.83289186692, 569.0478410098], [1.416, 3.65464640816, 6.8529145699], [1.469, 3.4906919383, 934.9485149682], [1.33, 4.41794310534, 3914.0223040994], [1.309, 1.29979865382, 428.0826635843], [1.3, 1.57748627871, 238.5718897035], [1.389, 1.31202796503, 6275.9623029906], [1.384, 0.67585082323, 2751.5475996916], [1.471, 1.21149871903, 2531.1349572528], [1.334, 4.11154515525, 206.9363079626], [1.601, 0.93356520728, 355.7487455718], [1.259, 2.56678207309, 850.0149880143], [1.277, 0.41764451386, 100.6450936638], [1.436, 4.06045514506, 177.8743727859], [1.308, 1.01324076289, 423.6774295692], [1.541, 6.03020449918, 292.0128472684], [1.307, 5.83815678434, 5863.5912061162], [1.613, 2.45074803642, 1049.0869894507], [1.249, 3.01518429832, 464.7312265138], [1.25, 6.23516728885, 823.9914342234], [1.275, 2.68217384213, 637.4496057592], [1.249, 2.97028182853, 51749.20809227239], [1.24, 2.66940683813, 2700.7151403858], [1.456, 1.85558224828, 96.8729990951], [1.491, 4.98649587341, 295.1942410061], [1.23, 4.27283851216, 12139.5535091068], [1.292, 2.73196017809, 10206.1719992102], [1.247, 3.77399749791, 504.561183181], [1.408, 1.02955773079, 518.3846323998], [1.223, 1.1220209384, 221.1634019642], [1.42, 4.39795293289, 606.7601855223], [1.19, 1.57292553631, 820.0592809603], [1.247, 0.99102599652, 9793.8009023358], [1.234, 1.10826361423, 2303.6087678132], [1.186, 4.55984967028, 9808.5381846614], [1.346, 4.94456950019, 384.0599212231], [1.514, 3.6039229173, 2015.6710861598], [1.432, 2.28704432909, 525.4981794006], [1.129, 0.8710034062, 162.0933701068], [1.196, 5.1348521485, 227.3137411185], [1.339, 2.48923887712, 206.706813299], [1.421, 1.65379789078, 857.1285350151], [1.162, 1.92099315083, 220.9339073006], [1.277, 4.85435999187, 54.1746707478], [1.153, 5.33028034679, 233.9060232575], [1.214, 4.11324721963, 3377.217792004], [1.109, 5.68915582674, 162.8965192589], [1.068, 4.85383480876, 611.4430983108], [1.119, 1.40805686363, 1987.2168981566], [1.085, 0.6420814819, 731.6837278378], [1.435, 3.20880139888, 835.7878940127], [1.184, 2.99776919968, 199.2844497575], [1.281, 3.1224533951, 427.3489504014], [1.058, 5.17851282929, 306.0969289181], [1.152, 4.39244449554, 199.9657733137], [1.036, 3.68027119804, 597.3590166611], [1.055, 3.25561743426, 394.3548619616], [1.127, 4.3325537196, 552.5855147745], [1.213, 6.2144761211, 42.5382696529], [1.117, 3.74367882111, 214.1928673153], [1.023, 3.84199833949, 894.8408795276], [1.042, 5.3012007859, 450.9772132642], [1.29, 3.96221234564, 318.8395502114], [1.073, 4.10012122884, 188.1693135244], [1.204, 0.3770236575, 393.4610900843], [1.214, 2.01826978554, 401.3253966105], [1.018, 0.02946649279, 2840.4132799086], [1.237, 5.41088851225, 425.8474313506], [1.187, 5.16511890602, 838.218528225], [1.276, 2.93572146232, 1457.525933062], [0.994, 3.40079885702, 211.6021744086], [1.042, 2.42209320898, 361.3778198643], [1.093, 3.66289018246, 226.6324175623], [0.978, 3.76334208607, 5856.4776591154], [1.263, 2.09195268609, 78.7137518304], [1.009, 5.85963705048, 1268.7488723641], [1.148, 4.39543895068, 570.7447620392], [1.051, 3.27272240682, 153.4953503977], [0.975, 3.42924642244, 105.5404547734], [0.997, 4.30943991893, 212.4053235607], [0.954, 3.88548755058, 171.6545976624], [0.96, 1.9018000528, 1159.2933106701], [0.953, 3.40787141587, 244.791664827], [0.969, 1.93369993197, 525.7588118315], [0.918, 1.73738789723, 223.3334037456], [1.164, 5.05392864346, 263.7016716171], [0.951, 4.23581224839, 92.940845832], [1.16, 5.80630916592, 460.5384408198], [1.186, 4.46262000755, 465.9550667912], [0.931, 2.09868057209, 205.6642835754], [0.942, 3.86810837922, 238.4288773516], [1.02, 5.53181822898, 0.0481841098], [0.995, 2.0345788549, 6290.1893969922], [0.888, 2.6095759299, 1912.5783119412], [0.873, 5.7843339302, 480.7728616238], [0.854, 1.63255087291, 328.2407190726], [1.123, 4.07401922216, 3693.6096616606], [0.934, 3.52355235083, 10220.3990932118], [0.833, 3.0330222784, 532.8723588323], [1.007, 2.73615455688, 4841.8572720668], [0.87, 1.06968760644, 51.2057253312], [0.891, 1.36817544763, 700.4517908797], [0.833, 5.39754715806, 159.7151255212], [0.854, 1.91765015557, 622.4887985747], [0.976, 3.09106001923, 2332.0629558164], [0.819, 5.55683690482, 462.0229135281], [0.8, 1.4704267746, 969.6224780949], [0.933, 1.40166917666, 287.9376816534], [0.784, 1.6923516277, 477.8039162072], [0.782, 3.98153416585, 702.1487119091], [0.81, 5.87689161549, 561.934294009], [0.858, 4.02964773169, 41.6444977756], [0.819, 0.98885784755, 960.2213092337], [0.882, 1.49559638306, 760.25553592], [0.767, 2.46787654531, 402.2191684878], [0.851, 3.64678001195, 348.635198571], [0.852, 1.03470840672, 2620.0006374698], [0.77, 4.67090683753, 16.6747745564], [0.849, 5.27994730935, 74.6385862154], [0.854, 2.56811257488, 432.7485300303], [0.767, 1.11806243753, 2847.5268269094], [0.729, 0.4417199071, 898.7730327907], [0.776, 5.54603607568, 3171.0322435668], [0.721, 6.05392551158, 91.7864415238], [0.739, 3.57172839746, 775.233389447], [0.73, 4.98865345688, 705.1176573257], [0.705, 0.4494244575, 219.6618829134], [0.708, 0.69014726046, 1048.3362299253], [0.706, 2.22974712805, 29.2049475286], [0.711, 0.00981284716, 2115.5824666407], [0.722, 4.14075205197, 225.0785088848], [0.735, 1.54083195463, 201.9927627432], [0.746, 4.08997409526, 849.2642284889], [0.729, 2.81779134868, 419.532827985], [0.837, 1.00844734156, 4127.3213995374], [0.939, 0.46037763932, 5488.8681053816], [0.939, 1.85473712038, 5062.2699145056], [0.721, 1.62872794201, 2200.5159935946]], [[436902.464, 4.78671673044, 213.299095438], [71922.76, 2.50069994874, 206.1855484372], [49766.792, 4.9716815087, 220.4126424388], [43220.894, 3.86940443794, 426.598190876], [29645.554, 5.96310264282, 7.1135470008], [4141.65, 4.10670940823, 433.7117378768], [4720.909, 2.47527992423, 199.0720014364], [3789.37, 3.09771025067, 639.897286314], [2963.99, 1.37206248846, 103.0927742186], [2556.363, 2.85065721526, 419.4846438752], [2208.457, 6.27588858707, 110.2063212194], [2187.621, 5.85545832218, 14.2270940016], [1956.896, 4.92448618045, 227.5261894396], [2326.801, 0.0, 0.0], [923.84, 5.46392422737, 323.5054166574], [705.936, 2.97081280098, 95.9792272178], [546.115, 4.12854181522, 412.3710968744], [373.838, 5.83435991809, 117.3198682202], [360.882, 3.27703082368, 647.0108333148], [356.35, 3.19152043942, 210.1177017003], [390.627, 4.48106176893, 216.4804891757], [431.485, 5.17825414612, 522.5774180938], [325.598, 2.26867601656, 853.196381752], [405.018, 4.17294157872, 209.3669421749], [204.494, 0.0877484859, 202.2533951741], [206.854, 4.02188336738, 735.8765135318], [178.474, 4.09716541453, 440.8252848776], [180.143, 3.59704903955, 632.7837393132], [153.656, 3.13470530382, 625.6701923124], [147.779, 0.13614300541, 302.164775655], [123.189, 4.18895309647, 88.865680217], [133.076, 2.5935046942, 191.9584544356], [100.367, 5.46056190585, 3.1813937377], [131.975, 5.93293968941, 309.2783226558], [97.235, 4.01832604356, 728.762966531], [110.709, 4.77853798276, 838.9692877504], [119.053, 5.55385105975, 224.3447957019], [93.852, 4.38395529912, 217.2312487011], [108.701, 5.29310899841, 515.463871093], [78.609, 5.72525447528, 21.3406410024], [81.468, 5.10897365253, 956.2891559706], [96.412, 6.25859229567, 742.9900605326], [69.228, 4.04901237761, 3.9321532631], [65.168, 3.77713343518, 1052.2683831884], [64.088, 5.81235002453, 529.6909650946], [62.541, 2.18445116349, 195.1398481733], [56.987, 3.14666549033, 203.0041546995], [55.979, 4.8410842286, 234.6397364404], [52.94, 5.07780548444, 330.6189636582], [50.635, 2.77318570728, 942.062061969], [41.649, 4.79014211005, 63.7358983034], [44.858, 0.56460613593, 269.9214467406], [41.357, 3.73496404402, 316.3918696566], [52.847, 3.92623831484, 949.1756089698], [38.398, 3.73966157784, 1045.1548361876], [37.583, 4.18924633757, 536.8045120954], [35.285, 2.90795856092, 284.1485407422], [33.576, 3.80465978802, 149.5631971346], [41.073, 4.57870454147, 1155.361157407], [30.412, 2.48140171991, 860.3099287528], [31.373, 4.84075951849, 1272.6810256272], [30.218, 4.3518629447, 405.2575498736], [39.43, 3.50858482049, 422.6660376129], [29.658, 1.58886982096, 1066.49547719], [35.202, 5.94478241578, 1059.3819301892], [25.829, 3.54946335477, 1368.660252845], [26.283, 4.81567477177, 124.433415221], [29.963, 3.66312205813, 429.7795846137], [33.011, 4.96879544579, 831.8557407496], [24.305, 5.31133255082, 10.2949407385], [26.332, 4.4525327339, 223.5940361765], [22.108, 2.76092021113, 415.5524906121], [27.187, 1.66347897738, 277.0349937414], [21.639, 1.03836302307, 11.0457002639], [19.713, 2.52194629263, 1258.4539316256], [17.062, 3.27669927228, 654.1243803156], [17.261, 3.49414816663, 1361.5467058442], [16.097, 1.73396878598, 490.3340891794], [21.099, 3.62102032955, 1265.5674786264], [17.692, 4.31141612385, 1471.7530270636], [13.458, 0.32327889681, 295.0512286542], [12.586, 3.13794576887, 74.7815985673], [12.023, 2.32917797741, 210.8514148832], [15.12, 3.59558424278, 265.9892934775], [12.959, 4.62359706368, 1589.0728952838], [15.424, 5.01335704925, 127.4717966068], [11.193, 4.54981248285, 81.7521332162], [13.449, 4.88710089777, 437.6438911399], [10.673, 5.05234757424, 191.2076949102], [13.963, 3.04990968366, 423.4167971383], [10.614, 5.02845923229, 137.0330241624], [14.382, 4.68720080027, 1148.2476104062], [13.47, 1.90280407135, 408.4389436113], [10.077, 5.20426583827, 340.7708920448], [10.323, 3.34460279759, 1685.0521225016], [9.563, 3.17317920222, 351.8165923087], [11.295, 5.47808960704, 1375.7737998458], [8.617, 2.81294528041, 99.9113804809], [8.46, 3.22691940753, 1677.9385755008], [7.914, 2.35624291874, 1574.8458012822], [7.587, 6.08171425316, 231.4583427027], [9.175, 3.40072244924, 1581.959348283], [7.337, 2.00393601815, 131.4039498699], [8.24, 4.04095881407, 1788.1448967202], [7.579, 3.68311134272, 846.0828347512], [6.691, 4.37253800717, 145.6310438715], [7.539, 3.29482043104, 750.1036075334], [6.367, 4.00239137708, 447.9388318784], [6.249, 4.5560367194, 106.2741679563], [6.489, 1.33782087599, 215.7467759928], [6.501, 3.78204726337, 313.2104759189], [5.978, 0.55276980086, 18.1592472647], [6.171, 2.84712795642, 138.5174968707], [6.837, 4.83481646949, 319.5732633943], [6.678, 5.43046031699, 508.3503240922], [7.175, 4.37855723752, 1464.6394800628], [5.753, 4.14268749228, 543.9180590962], [5.727, 4.35383078313, 1905.4647649404], [5.101, 2.63866058897, 288.0806940053], [5.311, 3.6252084951, 6076.8903015542], [5.498, 4.19972735173, 721.6494195302], [5.089, 5.04845206653, 10007.0999977738], [5.505, 1.13479635941, 56.6223513026], [4.82, 3.30043078578, 76.2660712756], [4.915, 6.17790518458, 483.2205421786], [5.048, 2.44627820757, 628.8515860501], [4.534, 1.19648682598, 200.7689224658], [4.817, 3.11549733365, 2001.4439921582], [4.712, 1.26507812515, 6062.6632075526], [4.811, 5.78388270496, 184.8449074348], [4.775, 0.76197795755, 333.657345044], [4.514, 0.95293919611, 343.2185725996], [4.525, 2.68827745072, 9992.8729037722], [4.378, 0.80241129896, 222.8603229936], [4.873, 5.92092913946, 618.5566453116], [4.142, 1.91878383159, 497.4476361802], [5.112, 4.50449287745, 416.3032501375], [4.125, 1.98204847532, 347.8844390456], [4.045, 2.87666810085, 38.1330356378], [4.133, 2.90478811425, 107.0249274817], [4.035, 2.92972681787, 1994.3304451574], [4.916, 3.12316267561, 1898.3512179396], [3.657, 3.24680246734, 362.8622925726], [3.753, 0.87719890943, 703.6331846174], [3.576, 3.48080143501, 388.4651552382], [3.555, 4.08436297683, 430.5303441391], [3.598, 0.05255328597, 32.2433289144], [3.561, 5.46414552453, 6283.0758499914], [3.48, 1.81622589595, 70.8494453042], [3.827, 3.1204122849, 635.9651330509], [3.399, 0.54882815021, 10213.285546211], [3.399, 3.5183335608, 629.6023455755], [3.364, 3.27821747958, 357.4456666012], [3.26, 1.97623748027, 203.7378678824], [3.118, 2.18465627368, 1891.2376709388], [3.163, 1.26040995242, 134.5853436076], [4.004, 5.45434102599, 1692.1656695024], [3.18, 2.46319174788, 867.4234757536], [3.389, 4.20503159673, 337.732510659], [3.026, 2.19331614526, 217.964961884], [3.573, 5.5509724081, 113.3877149571], [3.682, 3.78966280284, 2104.5367663768], [3.125, 4.09203641264, 1478.8665740644], [2.881, 3.9081065024, 312.1990839626], [3.199, 3.92123638342, 1038.0412891868], [4.014, 5.17826893553, 404.5067903482], [3.907, 4.1176719178, 1781.0313497194], [3.144, 1.61185684069, 1073.6090241908], [3.072, 5.00675625396, 312.4597163935], [3.034, 5.46288652854, 258.8757464767], [2.884, 2.38477237305, 181.0557665236], [2.986, 0.88783591586, 1279.794572628], [2.683, 0.00956197492, 195.8906076987], [3.081, 5.6003473733, 216.2198567448], [2.626, 6.12701960244, 273.1028404783], [2.665, 2.31576422128, 565.1156877467], [3.245, 3.87540558646, 85.8272988312], [2.74, 5.73784096806, 160.6088973985], [2.876, 4.74720607366, 213.2509113282], [2.523, 5.30458920892, 444.7574381407], [2.752, 5.0898453993, 1169.5882514086], [2.889, 1.66674437398, 213.3472795478], [2.923, 4.21481009033, 650.9429865779], [3.036, 2.5542667535, 6069.7767545534], [3.116, 2.67220972004, 52.6901980395], [2.371, 0.89591351822, 121.2520214833], [2.993, 3.96957827454, 9999.986450773], [3.088, 0.40656113014, 561.1835344836], [2.385, 4.74063881551, 218.7157214094], [2.632, 1.12706218927, 344.7030453079], [2.316, 4.08445262041, 131.5469622218], [2.214, 3.37726228553, 22.0914005278], [2.129, 3.32497715011, 358.9301393095], [2.679, 1.6897140187, 208.633228992], [2.607, 5.10250482155, 824.7421937488], [2.25, 2.60474848767, 305.3461693927], [2.087, 3.37293958793, 320.3240229197], [2.693, 3.6215945647, 436.8931316145], [2.492, 2.96129217279, 2214.7430875962], [2.704, 2.88483697319, 643.0786800517], [2.124, 1.61210282593, 218.9281697305], [2.037, 4.63481160778, 188.0263011725], [2.394, 3.46386258552, 6275.9623029906], [1.973, 2.28886138203, 2627.1141844706], [1.937, 5.67082364247, 28.4541880032], [1.92, 4.25647211328, 546.956440482], [2.498, 3.57572154405, 2420.9286360334], [1.898, 1.30987536388, 212.3358875915], [1.852, 1.58508015515, 424.1505103212], [1.85, 3.57830449726, 329.7251917809], [2.128, 3.95329215734, 1795.258443721], [2.236, 4.22073549375, 2221.856634597], [1.933, 1.68771499202, 350.3321196004], [1.799, 2.06541260431, 144.1465711632], [1.904, 4.60953896857, 182.279606801], [2.236, 5.17945392885, 99.1606209555], [1.755, 2.73425330428, 291.262087743], [2.231, 5.42548168745, 207.8824694666], [1.848, 2.24194286719, 168.0525127994], [1.726, 1.31878655393, 219.4494345923], [1.709, 5.55913931846, 92.7978334801], [1.693, 1.95360003617, 129.9194771616], [2.064, 4.84900344498, 1141.1340634054], [1.758, 5.05088656436, 214.2623032845], [1.781, 2.8588015334, 636.7158925763], [1.9, 2.90295578617, 2310.722314814], [1.759, 5.34657858395, 45.5766510387], [1.654, 6.14450664508, 554.0699874828], [1.578, 4.50941374663, 210.3783341312], [1.681, 3.55136706992, 1354.4331588434], [1.862, 3.01276783582, 2317.8358618148], [1.589, 1.1577344835, 235.3904959658], [1.551, 2.15558953807, 207.6700211455], [1.874, 4.12861627986, 225.8292684102], [1.621, 3.29992957653, 1670.8250285], [1.911, 0.1772431914, 12.5301729722], [1.477, 5.9027026057, 1.4844727083], [1.618, 5.72513459206, 1485.9801210652], [1.446, 1.7810458992, 1382.8873468466], [1.683, 3.43534671475, 2428.0421830342], [1.542, 5.51223038941, 204.7010757289], [1.42, 2.07339356364, 198.321241911], [1.444, 5.56032454849, 128.3655684841], [1.476, 6.12782257368, 212.7778305762], [1.474, 0.33626790634, 213.8203602998], [1.428, 3.25039966249, 945.9942152321], [1.41, 0.68747644676, 429.0458714308], [1.752, 2.70090942746, 12.7426212933], [1.681, 4.97526853273, 2008.557539159], [1.408, 0.80461100746, 1585.1407420207], [1.485, 0.49674043855, 120.358249606], [1.49, 2.68459799437, 207.1487562837], [1.411, 4.36399216092, 5863.5912061162], [1.315, 4.73430848989, 241.7532834412], [1.516, 4.99488503706, 1162.4747044078], [1.31, 1.98714265058, 563.6312150384], [1.286, 2.12891372062, 251.4321310758], [1.271, 5.70165238307, 2.9207613068], [1.312, 1.68811514551, 2207.6295405954], [1.259, 0.35924965717, 334.5511169213], [1.252, 2.14513440216, 1055.4497769261], [1.401, 6.13250261735, 1802.3719907218], [1.343, 5.79995727295, 9793.8009023358], [1.228, 3.29059284057, 661.2379273164], [1.202, 2.88792018909, 2413.8150890326], [1.286, 5.72360160371, 298.2326223919], [1.357, 0.93175963411, 217.491881132], [1.356, 2.28121627817, 601.7642506762], [1.19, 1.94993809928, 501.3797894433], [1.304, 0.3733792328, 3473.1970192218], [1.35, 2.8723562232, 142.4496501338], [1.349, 3.21102203937, 175.1660598002], [1.312, 3.70149813509, 2111.6503133776], [1.129, 1.08860603834, 842.1506814881], [1.237, 0.08698781252, 526.5095713569], [1.217, 3.8983534984, 209.106309744], [1.467, 1.16228775027, 621.7380390493], [1.044, 0.30512759901, 436.1594184316], [1.14, 5.33720637097, 114.1384744825], [1.295, 4.70261675421, 9786.687355335], [1.037, 4.07846687083, 156.6767441354], [1.391, 4.73554028436, 398.1440028728], [1.167, 5.68899703631, 479.2883889155], [1.035, 5.34279429465, 327.4375699205], [0.997, 1.19323192891, 710.7467316182], [1.193, 5.17722376816, 98.8999885246], [1.165, 4.58588490135, 732.6951197941], [1.161, 4.90854984994, 10206.1719992102], [1.144, 0.5039478414, 3906.9087570986], [1.182, 3.69482624364, 2854.6403739102], [0.97, 2.89031410383, 1987.2168981566], [1.039, 0.48694895443, 525.4981794006], [1.079, 3.61750956217, 2097.423219376], [1.148, 3.31015591733, 5856.4776591154], [1.241, 4.31971543677, 230.7075831773], [0.91, 4.59825926062, 380.12776796], [0.907, 1.34912454077, 685.4739373527], [1.166, 1.61085609717, 5849.3641121146], [0.882, 6.12045540405, 519.3960243561], [0.963, 4.96065454054, 699.7010313543], [1.062, 5.13323858077, 2751.5475996916], [0.865, 6.12821112133, 245.5424243524], [1.1, 2.18435744407, 1699.2792165032], [0.822, 5.55083534581, 739.0579072695], [0.926, 2.01158276144, 417.0369633204], [0.813, 5.18401872205, 214.7835681463], [1.033, 5.48677848094, 3995.7744373156], [0.872, 3.02363724703, 306.0969289181], [0.796, 0.4434366454, 486.4019359163], [0.878, 1.82164034386, 135.336103133], [0.791, 2.14989417962, 2620.0006374698], [0.881, 2.39697554334, 289.5651667136], [0.782, 4.50471317138, 980.6681783588], [0.783, 1.14229319753, 540.7366653585], [0.831, 0.69937251013, 421.93232443], [0.77, 2.40292326155, 576.1613880106], [0.95, 5.97621460162, 196.6243208816], [0.814, 4.19303098086, 831.1049812242], [0.969, 4.78071024754, 326.6868103951], [0.76, 0.4486053353, 425.6349830295], [0.907, 0.94781730418, 525.7588118315], [0.788, 0.14287187051, 916.9322800554], [0.801, 1.863831191, 3039.485281345], [0.801, 0.46947170994, 3466.083472221], [0.747, 6.05374861925, 211.8146227297], [0.968, 3.02618272726, 2634.2277314714], [0.739, 2.27110740297, 2303.6087678132], [0.75, 5.48554383902, 173.9422195228], [1.024, 1.9156492556, 229.9738699944], [0.816, 4.98990432666, 4209.0735327536], [0.728, 1.30997967935, 511.5317178299], [0.716, 3.74192651696, 3053.7123753466], [0.727, 0.39191881243, 1493.093668066], [0.717, 2.68899513085, 228.276948965], [0.739, 2.12749199443, 1176.7017984094], [0.805, 0.0718719391, 556.5176680376], [0.835, 3.482878557, 84.9335269539], [0.79, 0.48073040004, 4017.115078318], [0.725, 1.96643065215, 220.4608265486], [0.683, 2.68825142163, 151.0476698429], [0.739, 3.33688408107, 953.1077622329], [0.745, 6.22304530635, 1269.4996318895]], [[20315.005, 3.02186626038, 213.299095438], [8923.581, 3.19144205755, 220.4126424388], [6908.677, 4.35174889353, 206.1855484372], [4087.129, 4.22406927376, 7.1135470008], [3879.041, 2.01056445995, 426.598190876], [1070.788, 4.20360341236, 199.0720014364], [907.332, 2.28344368029, 433.7117378768], [606.121, 3.17458570534, 227.5261894396], [596.639, 4.13455753351, 14.2270940016], [483.181, 1.17345973258, 639.897286314], [393.174, 0.0, 0.0], [229.472, 4.69838526383, 419.4846438752], [188.25, 4.59003889007, 110.2063212194], [149.508, 3.201994444, 103.0927742186], [121.442, 3.76831374104, 323.5054166574], [101.215, 5.81884137755, 412.3710968744], [102.146, 4.70974422803, 95.9792272178], [93.078, 1.43531270909, 647.0108333148], [72.601, 4.15395598507, 117.3198682202], [84.347, 2.63462379693, 216.4804891757], [62.198, 2.31239345505, 440.8252848776], [45.145, 4.37317047297, 191.9584544356], [49.536, 2.38854232908, 209.3669421749], [54.829, 0.30526468471, 853.196381752], [40.498, 1.83836569765, 302.164775655], [38.089, 5.94455115525, 88.865680217], [32.243, 4.01146349387, 21.3406410024], [40.671, 0.6884518321, 522.5774180938], [28.209, 5.77193013961, 210.1177017003], [24.976, 3.06249709014, 234.6397364404], [20.824, 4.92570695678, 625.6701923124], [25.07, 0.73137425284, 515.463871093], [17.485, 5.73135068691, 728.762966531], [18.009, 1.45593152612, 309.2783226558], [16.927, 3.52771580455, 3.1813937377], [13.437, 3.36479898106, 330.6189636582], [11.09, 3.37212682914, 224.3447957019], [11.082, 3.41719974793, 956.2891559706], [9.978, 1.58791582772, 202.2533951741], [11.551, 5.99093726182, 735.8765135318], [10.5, 6.06911092266, 405.2575498736], [9.144, 2.93557421591, 124.433415221], [8.737, 4.65432480769, 632.7837393132], [10.023, 0.58247011625, 860.3099287528], [7.482, 4.50669216436, 942.062061969], [10.091, 0.28268774007, 838.9692877504], [9.243, 2.57034547708, 223.5940361765], [8.652, 1.75808100881, 429.7795846137], [7.564, 1.45635107202, 654.1243803156], [7.058, 5.47394786065, 1045.1548361876], [6.97, 1.51811695028, 422.6660376129], [8.067, 4.48457709292, 742.9900605326], [6.817, 4.83084424818, 316.3918696566], [7.693, 0.43769724671, 831.8557407496], [7.934, 4.20112367712, 195.1398481733], [6.119, 2.33960392135, 269.9214467406], [5.589, 1.14518720694, 284.1485407422], [5.564, 4.18123189068, 529.6909650946], [5.034, 2.12020038657, 295.0512286542], [6.556, 3.42459866876, 10.2949407385], [5.544, 2.46823271699, 536.8045120954], [6.189, 6.0143382752, 1066.49547719], [5.649, 0.82784598388, 217.2312487011], [4.264, 3.23245736673, 1272.6810256272], [4.45, 0.9247780859, 203.0041546995], [3.268, 4.32777516976, 1258.4539316256], [3.655, 0.05832123987, 81.7521332162], [3.951, 0.11124996745, 1155.361157407], [3.773, 6.01157059552, 1052.2683831884], [2.915, 5.64342950039, 3.9321532631], [3.019, 2.19411778004, 447.9388318784], [2.977, 1.8938734255, 149.5631971346], [3.146, 0.19215180096, 1148.2476104062], [2.763, 0.92363342001, 508.3503240922], [2.79, 4.97199778427, 1677.9385755008], [2.608, 2.99591016813, 1589.0728952838], [2.881, 5.40535671721, 1361.5467058442], [2.337, 1.30362271569, 184.8449074348], [2.536, 3.71412120849, 408.4389436113], [2.45, 3.22118361135, 319.5732633943], [2.585, 2.31346415454, 543.9180590962], [2.324, 5.87500715503, 721.6494195302], [1.99, 0.51565577383, 416.3032501375], [2.49, 4.24017800021, 1059.3819301892], [1.935, 2.41463084855, 337.732510659], [1.886, 0.53809070779, 635.9651330509], [1.893, 5.62352727352, 11.0457002639], [2.389, 5.73399981234, 313.2104759189], [1.9, 2.41000566465, 131.5469622218], [1.743, 4.57646237847, 1994.3304451574], [1.913, 5.17436386408, 2854.6403739102], [1.946, 6.23355845623, 1471.7530270636], [1.963, 6.17814558628, 1464.6394800628], [1.838, 5.59464577559, 1038.0412891868], [1.541, 0.60765337379, 210.8514148832], [1.617, 1.75479346067, 195.8906076987], [1.577, 0.55789908488, 2324.9494088156], [1.492, 0.26624235633, 497.4476361802], [1.659, 2.57526072926, 2090.3096723752], [1.809, 1.82317819973, 436.8931316145], [1.566, 6.15328100324, 490.3340891794], [1.771, 6.11741716855, 1073.6090241908], [1.456, 0.85374460914, 415.5524906121], [1.645, 2.95335775161, 437.6438911399], [1.391, 4.1202502856, 1574.8458012822], [1.585, 5.96841377266, 1781.0313497194], [1.507, 3.84895122542, 1251.3403846248], [1.442, 5.32547705924, 2538.2485042536], [1.805, 1.50973093681, 750.1036075334], [1.462, 3.28599831588, 1884.124123938], [1.482, 0.99340744053, 643.0786800517], [1.312, 3.79347668996, 1567.7322542814], [1.665, 0.02551523913, 423.4167971383], [1.469, 5.35285153471, 1354.4331588434], [1.352, 0.69945139243, 867.4234757536], [1.124, 1.79624810407, 618.5566453116], [1.126, 4.70052329245, 113.3877149571], [1.122, 3.9553722427, 1891.2376709388], [1.458, 1.50198846753, 430.5303441391], [1.145, 5.13093399117, 25.2727942655], [1.178, 2.97062300389, 241.7532834412], [1.274, 2.29089799814, 2420.9286360334], [1.071, 0.04888943982, 63.7358983034], [1.377, 5.58271514873, 1382.8873468466], [1.145, 3.10797488346, 2200.5159935946], [1.076, 0.79465514815, 127.4717966068], [1.046, 5.85060227045, 215.7467759928], [1.082, 3.7258944551, 131.4039498699], [1.218, 0.47504349592, 824.7421937488], [1.116, 3.78039049056, 1375.7737998458], [0.969, 5.90752273481, 265.9892934775], [1.23, 1.41325962069, 2634.2277314714], [1.07, 4.80334493874, 1987.2168981566], [0.946, 6.25968535931, 2015.6710861598], [1.03, 1.08973644893, 362.8622925726], [1.072, 5.41838042079, 1279.794572628], [0.88, 1.92224908504, 483.2205421786], [0.878, 2.96591300878, 934.9485149682], [0.879, 2.65659265685, 145.6310438715], [0.872, 6.26261969664, 2.4476805548], [1.082, 4.48298283322, 2214.7430875962], [0.959, 0.74479087918, 16.6747745564], [1.035, 4.05664979327, 231.4583427027], [0.851, 0.09360495322, 628.8515860501], [0.888, 5.98816755324, 2524.021410252], [0.866, 3.1625926563, 2207.6295405954], [0.843, 1.23731248821, 74.7815985673], [0.809, 2.89742868175, 2008.557539159], [0.779, 2.28434811609, 1478.8665740644], [0.99, 5.32604038017, 2428.0421830342], [0.795, 2.3817813581, 2228.9701815978], [0.765, 4.7003367494, 1670.8250285], [1.024, 4.23352869513, 1802.3719907218], [0.831, 5.87457134912, 1368.660252845], [0.717, 5.92144324994, 1685.0521225016], [0.772, 1.15596098579, 3053.7123753466], [0.691, 3.13193109668, 56.6223513026]], [[1202.05, 1.41499446465, 220.4126424388], [707.796, 1.16153570102, 213.299095438], [516.121, 6.2397356833, 206.1855484372], [426.664, 2.46924890293, 7.1135470008], [267.736, 0.18659206741, 426.598190876], [170.171, 5.95926972384, 199.0720014364], [145.113, 1.44211060143, 227.5261894396], [150.339, 0.4797016714, 433.7117378768], [121.033, 2.40527320817, 14.2270940016], [47.332, 5.56857488676, 639.897286314], [15.745, 2.90112466278, 110.2063212194], [16.668, 0.52920774279, 440.8252848776], [18.954, 5.85626429118, 647.0108333148], [14.074, 1.30343550656, 412.3710968744], [12.708, 2.09349305926, 323.5054166574], [14.724, 0.29905316786, 419.4846438752], [11.133, 2.4630482599, 117.3198682202], [11.32, 0.21785507019, 95.9792272178], [9.233, 2.28127318068, 21.3406410024], [9.246, 1.5649631283, 88.865680217], [8.97, 0.68301278041, 216.4804891757], [7.674, 3.59367715368, 302.164775655], [7.823, 4.48688804175, 853.196381752], [8.36, 1.27239488455, 234.6397364404], [9.552, 3.14159265359, 0.0], [4.834, 2.58836294602, 515.463871093], [6.059, 5.1677444874, 103.0927742186], [4.41, 0.02211643085, 191.9584544356], [4.364, 1.59622746023, 330.6189636582], [3.676, 3.29899839673, 210.1177017003], [4.364, 5.97349927933, 654.1243803156], [4.447, 4.97415112184, 860.3099287528], [3.22, 2.72684237392, 522.5774180938], [4.005, 1.59858435636, 405.2575498736], [3.099, 0.75235436533, 209.3669421749], [2.464, 1.19167306488, 124.433415221], [3.088, 1.32258934286, 728.762966531], [2.22, 3.28087994088, 203.0041546995], [2.127, 6.14648095022, 429.7795846137], [2.11, 0.75462855247, 295.0512286542], [2.02, 3.89394929749, 1066.49547719], [2.248, 0.49319150178, 447.9388318784], [2.18, 0.72761059998, 625.6701923124], [1.809, 0.09057839517, 942.062061969], [1.672, 1.39635398184, 224.3447957019], [1.641, 3.0246830755, 184.8449074348], [1.772, 0.81879250825, 223.5940361765], [1.902, 2.00472814984, 831.8557407496], [1.6, 5.41185167676, 824.7421937488], [1.505, 5.95520747253, 422.6660376129], [1.133, 1.11512973946, 838.9692877504], [1.19, 1.89600567803, 956.2891559706], [1.487, 2.11906469507, 529.6909650946], [1.409, 0.72254420236, 536.8045120954], [1.125, 0.89062692183, 721.6494195302], [1.301, 1.64867038984, 17.4084877393], [1.164, 5.9695798184, 195.1398481733], [0.95, 5.3608071329, 316.3918696566], [0.985, 3.05768671768, 1574.8458012822], [1.05, 1.59202481523, 735.8765135318], [0.817, 4.92838813598, 56.6223513026], [0.78, 2.72125404102, 508.3503240922], [0.969, 1.00708261792, 1045.1548361876], [0.716, 1.11042181341, 1169.5882514086]], [[128.612, 5.91282565136, 220.4126424388], [32.273, 0.69256228602, 7.1135470008], [26.698, 5.91428528629, 227.5261894396], [19.923, 0.67370653385, 14.2270940016], [20.223, 4.95136801768, 433.7117378768], [13.537, 1.45669521408, 199.0720014364], [14.097, 2.67074280191, 206.1855484372], [13.364, 4.5882699637, 426.598190876], [7.257, 4.62966127155, 213.299095438], [4.876, 3.61448275002, 639.897286314], [3.136, 4.65661021909, 191.9584544356], [2.917, 0.48665273315, 323.5054166574], [3.759, 4.89624165044, 440.8252848776], [3.303, 4.07190859545, 647.0108333148], [2.883, 3.18003019204, 419.4846438752], [2.338, 3.69553554327, 88.865680217], [1.95, 5.3272924778, 302.164775655], [2.052, 3.31663577368, 95.9792272178], [1.591, 2.67009215574, 853.196381752], [2.028, 0.56025552769, 117.3198682202], [1.56, 0.85608042681, 515.463871093], [1.678, 0.0, 0.0], [1.102, 5.98011943842, 3.1813937377], [1.285, 5.82563377753, 234.6397364404], [0.896, 5.22791858719, 216.4804891757], [1.141, 0.15741228205, 412.3710968744], [0.798, 0.37452846153, 28.4541880032], [0.837, 5.04769794123, 124.433415221]]]

This table contains Saturn’s periodic terms (all of them) from the planetary theory VSOP87 for the radius vector at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 442-445.

Sun

Module holding functions to handle coordinates.

class pymeeus.Sun.Sun[source]

Class Sun handles the parameters related to the Sun.

__init__()[source]

Sun constructor.

Returns:Sun object.
Return type:Sun
__weakref__

list of weak references to the object (if defined)

static apparent_geocentric_position(epoch, nutation=True)[source]

This method computes the apparent geocentric position of the Sun for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (bool) – Epoch to compute Sun position, as an Epoch object
  • nutation – Whether the nutation correction will be applied
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1992, 10, 13.0)
>>> lon, lat, r = Sun.apparent_geocentric_position(epoch)
>>> print(lon.to_positive().dms_str(n_dec=3))
199d 54' 21.548''
>>> print(lat.dms_str(n_dec=3))
0.721''
>>> print(round(r, 8))
0.99760852
static apparent_longitude_coarse(epoch)[source]

This method provides the Sun’s apparent longitude with a relatively low accuracy of about 0.01 degree.

Parameters:epoch (Epoch) – Epoch to compute the position of the Sun
Returns:A tuple containing the sun_apparent (ecliptical) longitude (as an Angle object) and the radius vector in astronomical units.
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 10, 13)
>>> app_lon, r = Sun.apparent_longitude_coarse(epoch)
>>> print(app_lon.dms_str(n_dec=0))
199d 54' 32.0''
>>> print(round(r, 5))
0.99766
static apparent_rightascension_declination_coarse(epoch)[source]

This method provides the Sun’s apparent right ascension and declination with a relatively low accuracy of about 0.01 degree.

Parameters:epoch (Epoch) – Epoch to compute the position of the Sun
Returns:A tuple containing the right ascension and the declination (as Angle objects) and the radius vector in astronomical units.
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epo = Epoch(1992, 10, 13)
>>> ra, delta, r = Sun.apparent_rightascension_declination_coarse(epo)
>>> print(ra.ra_str(n_dec=1))
13h 13' 31.4''
>>> print(delta.dms_str(n_dec=0))
-7d 47' 6.0''
>>> print(round(r, 5))
0.99766
static beginning_synodic_rotation(number)[source]

This method calculates the epoch when the Carrington’s synodic rotation No. ‘number’ starts.

Parameters:number (int) – Number of Carrington’s synodic rotation
Returns:Epoch when the provided rotation starts
Return type:Epoch
Raises:TypeError if input value is of wrong type.
>>> epoch = Sun.beginning_synodic_rotation(1699)
>>> print(round(epoch(), 3))
2444480.723
static ephemeris_physical_observations(epoch)[source]

This method uses Carrington’s formulas to compute the following quantities:

  • P : position angle of the northern extremity of the axis of rotation
  • B0 : heliographic latitude of the center of the solar disk
  • L0 : heliographic longitude of the center of the solar disk
Parameters:epoch (Epoch) – Epoch to compute the parameters
Returns:Parameters P, B0 and L0, in a tuple
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 10, 13)
>>> p, b0, l0 = Sun.ephemeris_physical_observations(epoch)
>>> print(round(p, 2))
26.27
>>> print(round(b0, 2))
5.99
>>> print(round(l0, 2))
238.63
static equation_of_time(epoch)[source]

This method computes the equation of time for a given epoch, understood as the difference between apparent and mean time, or the difference between the hour angle of the true Sun and the mean Sun.

Parameters:epoch (Epoch) – Epoch to compute the equation of time, as an Epoch object
Returns:Difference between apparent and mean time, as a tuple, in minutes (int) and seconds (float) of time
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(1992, 10, 13.0)
>>> m, s = Sun.equation_of_time(epoch)
>>> print(m)
13
>>> print(round(s, 1))
42.6
static geometric_geocentric_position(epoch, tofk5=True)[source]

This method computes the geometric geocentric position of the Sun for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Sun position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the geocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1992, 10, 13.0)
>>> l, b, r = Sun.geometric_geocentric_position(epoch, tofk5=False)
>>> print(round(l.to_positive(), 6))
199.907297
>>> print(b.dms_str(n_dec=3))
0.744''
>>> print(round(r, 8))
0.99760852
static get_equinox_solstice(year, target='spring')[source]

This method computes the times of the equinoxes or the solstices.

Parameters:
  • year (int) – Year we want to compute the equinox or solstice for
  • target (str) – Corresponding equinox or solstice. It can be “spring”, “summer”, “autumn”, “winter”
Returns:

The instant of time when the equinox or solstice happens

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

Raises:

ValueError if ‘target’ value is invalid.

>>> epoch = Sun.get_equinox_solstice(1962, target="summer")
>>> y, m, d, h, mi, s = epoch.get_full_date()
>>> print("{}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s, 0)))
1962/6/21 21:24:42.0
static rectangular_coordinates_b1950(epoch)[source]

This method computes the rectangular geocentric equatorial coordinates (X, Y, Z) of the Sun, referred to the mean equinox of B1950.0. The X axis is directed towards the vernal equinox (longitude 0), the Y axis lies in the plane of the equator and is directed towards longitude 90, and the Z axis is directed towards the north celestial pole.

Parameters:epoch (Epoch) – Epoch to compute Sun position, as an Epoch object
Returns:A tuple with the X, Y, Z values in astronomical units
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(1992, 10, 13.0)
>>> x, y, z = Sun.rectangular_coordinates_b1950(epoch)
>>> print(round(x, 8))
-0.94149557
>>> print(round(y, 8))
-0.30259922
>>> print(round(z, 8))
-0.11578695
static rectangular_coordinates_equinox(epoch, equinox_epoch)[source]

This method computes the rectangular geocentric equatorial coordinates (X, Y, Z) of the Sun, referred to an arbitrary mean equinox. The X axis is directed towards the vernal equinox (longitude 0), the Y axis lies in the plane of the equator and is directed towards longitude 90, and the Z axis is directed towards the north celestial pole.

Parameters:
  • epoch (Epoch) – Epoch to compute Sun position, as an Epoch object
  • equinox_epoch (Epoch) – Epoch corresponding to the mean equinox
Returns:

A tuple with the X, Y, Z values in astronomical units

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1992, 10, 13.0)
>>> e_equinox = Epoch(2467616.0)
>>> x, y, z = Sun.rectangular_coordinates_equinox(epoch, e_equinox)
>>> print(round(x, 8))
-0.93368986
>>> print(round(y, 8))
-0.32235085
>>> print(round(z, 8))
-0.13977098
static rectangular_coordinates_j2000(epoch)[source]

This method computes the rectangular geocentric equatorial coordinates (X, Y, Z) of the Sun, referred to the standard equinox of J2000.0. The X axis is directed towards the vernal equinox (longitude 0), the Y axis lies in the plane of the equator and is directed towards longitude 90, and the Z axis is directed towards the north celestial pole.

Parameters:epoch (Epoch) – Epoch to compute Sun position, as an Epoch object
Returns:A tuple with the X, Y, Z values in astronomical units
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(1992, 10, 13.0)
>>> x, y, z = Sun.rectangular_coordinates_j2000(epoch)
>>> print(round(x, 8))
-0.93740485
>>> print(round(y, 8))
-0.3131474
>>> print(round(z, 8))
-0.13577045
static rectangular_coordinates_mean_equinox(epoch)[source]

This method computes the rectangular geocentric equatorial coordinates (X, Y, Z) of the Sun, referred to the mean equinox of the date. The X axis is directed towards the vernal equinox (longitude 0), the Y axis lies in the plane of the equator and is directed towards longitude 90, and the Z axis is directed towards the north celestial pole.

Parameters:epoch (Epoch) – Epoch to compute Sun position, as an Epoch object
Returns:A tuple with the X, Y, Z values in astronomical units
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(1992, 10, 13.0)
>>> x, y, z = Sun.rectangular_coordinates_mean_equinox(epoch)
>>> print(round(x, 7))
-0.9379963
>>> print(round(y, 6))
-0.311654
>>> print(round(z, 7))
-0.1351207
static true_longitude_coarse(epoch)[source]

This method provides the Sun’s true longitude with a relatively low accuracy of about 0.01 degree.

Parameters:epoch (Epoch) – Epoch to compute the position of the Sun
Returns:A tuple containing the true (ecliptical) longitude (as an Angle object) and the radius vector in astronomical units.
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 10, 13)
>>> true_lon, r = Sun.true_longitude_coarse(epoch)
>>> print(true_lon.dms_str(n_dec=0))
199d 54' 36.0''
>>> print(round(r, 5))
0.99766

Uranus

Class to model Uranus planet.

pymeeus.Uranus.ORBITAL_ELEM = [[314.055005, 429.8640561, 0.0003039, 2.6e-08], [19.218446062, -3.72e-08, 9.8e-10, 0.0], [0.04638122, -2.7293e-05, 7.89e-08, 2.4e-10], [0.773197, 0.0007744, 3.749e-05, -9.2e-08], [74.005957, 0.5211278, 0.00133947, 1.8484e-05], [173.005291, 1.486379, 0.00021406, 4.34e-07]]

This table contains the parameters to compute Uranus’s orbital elements for the mean equinox of date. Based in Table 31.A, page 213

pymeeus.Uranus.ORBITAL_ELEM_J2000 = [[314.055005, 428.4669983, -4.86e-06, 6e-09], [0.773197, -0.0016869, 3.49e-06, 1.6e-08], [74.005957, 0.0741431, 0.00040539, 1.19e-07], [173.005291, 0.0893212, -9.47e-05, 4.14e-07]]

This table contains the parameters to compute Uranus’s orbital elements for the standard equinox J2000.0. Based on Table 31.B, page 215

class pymeeus.Uranus.Uranus[source]

Class Uranus models that planet.

__weakref__

list of weak references to the object (if defined)

static apparent_heliocentric_position(epoch)[source]

This method computes the apparent heliocentric position of planet Uranus for a given epoch, using the VSOP87 theory.

Parameters:epoch (Epoch) – Epoch to compute Uranus position, as an Epoch object
Returns:A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order
Return type:tuple
Raises:TypeError if input values are of wrong type.
static conjunction(epoch)[source]

This method computes the time of the conjunction closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired conjunction
Returns:The time when the conjunction happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 10, 1.0)
>>> conj = Uranus.conjunction(epoch)
>>> y, m, d = conj.get_date()
>>> print(y)
1994
>>> print(m)
1
>>> print(round(d, 4))
12.7365
static geocentric_position(epoch)[source]

This method computes the geocentric position of Uranus (right ascension and declination) for the given epoch, as well as the elongation angle.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing the right ascension, the declination and the elongation angle as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 12, 20.0)
>>> ra, dec, elon = Uranus.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
19h 13' 48.7''
>>> print(dec.dms_str(n_dec=1))
-22d 46' 13.0''
>>> print(elon.dms_str(n_dec=1))
18d 44' 18.7''
static geometric_heliocentric_position(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of planet Uranus for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Uranus position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2018, 10, 27.0)
>>> l, b, r = Uranus.geometric_heliocentric_position(epoch)
>>> print(round(l.to_positive(), 4))
30.5888
>>> print(round(b, 4))
-0.5315
>>> print(round(r, 5))
19.86964
static magnitude(sun_dist, earth_dist)[source]

This function computes the approximate magnitude of Uranus.

Parameters:
  • sun_dist (float) – Distance from Uranus to Sun, in Astronomical Units
  • earth_dist (float) – Distance from Uranus to Earth, in Astronomical Units
Returns:

Uranus’s magnitude

Return type:

float

Raises:

TypeError if input values are of wrong type.

static opposition(epoch)[source]

This method computes the time of the opposition closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired opposition
Returns:The time when the opposition happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1780, 12, 1.0)
>>> oppo = Uranus.opposition(epoch)
>>> y, m, d = oppo.get_date()
>>> print(y)
1780
>>> print(m)
12
>>> print(round(d, 4))
17.5998
static orbital_elements_j2000(epoch)[source]

This method computes the orbital elements of Uranus for the standard equinox J2000.0 for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Uranus.orbital_elements_j2000(epoch)
>>> print(round(l, 6))
234.602641
>>> print(round(a, 8))
19.21844604
>>> print(round(e, 7))
0.0463634
>>> print(round(i, 6))
0.772094
>>> print(round(ome, 5))
74.05468
>>> print(round(arg, 6))
99.009058
static orbital_elements_mean_equinox(epoch)[source]

This method computes the orbital elements of Uranus for the mean equinox of the date for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Uranus.orbital_elements_mean_equinox(epoch)
>>> print(round(l, 6))
235.517526
>>> print(round(a, 8))
19.21844604
>>> print(round(e, 7))
0.0463634
>>> print(round(i, 6))
0.77372
>>> print(round(ome, 5))
74.34776
>>> print(round(arg, 6))
99.630865
static passage_nodes(epoch, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of Uranus, nearest to the given epoch.

Parameters:
  • epoch (Epoch) – Epoch closest to the node passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(2019, 1, 1)
>>> time, r = Uranus.passage_nodes(epoch)
>>> year, month, day = time.get_date()
>>> print(year)
2028
>>> print(month)
8
>>> print(round(day, 1))
23.2
>>> print(round(r, 4))
19.3201
static perihelion_aphelion(epoch, perihelion=True)[source]

This method computes the time of Perihelion (or Aphelion) closer to a given epoch.

Parameters:
  • epoch (Epoch) – Epoch close to the desired Perihelion (or Aphelion)
  • peihelion – If True, the epoch of the closest Perihelion is computed, if False, the epoch of the closest Aphelion is found.
Returns:

The epoch of the desired Perihelion (or Aphelion)

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

Note

The solution provided by this method may have several days of error.

>>> epoch = Epoch(1880, 1, 1.0)
>>> e = Uranus.perihelion_aphelion(epoch)
>>> y, m, d = e.get_date()
>>> print(y)
1882
>>> print(m)
3
>>> print(int(d))
18
>>> epoch = Epoch(2090, 1, 1.0)
>>> e = Uranus.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d = e.get_date()
>>> print(y)
2092
>>> print(m)
11
>>> print(int(d))
22
pymeeus.Uranus.VSOP87_B = [[[1346277.639, 2.61877810545, 74.7815985673], [62341.405, 5.08111175856, 149.5631971346], [61601.203, 3.14159265359, 0.0], [9963.744, 1.61603876357, 76.2660712756], [9926.151, 0.57630387917, 73.297125859], [3259.455, 1.2611938596, 224.3447957019], [2972.318, 2.24367035538, 1.4844727083], [2010.257, 6.05550401088, 148.0787244263], [1522.172, 0.27960386377, 63.7358983034], [924.055, 4.03822927853, 151.0476698429], [760.624, 6.14000431923, 71.8126531507], [420.265, 5.21279984788, 11.0457002639], [430.668, 3.55445034854, 213.299095438], [436.843, 3.38082524317, 529.6909650946], [522.309, 3.3208519477, 138.5174968707], [434.625, 0.34065281858, 77.7505439839], [462.63, 0.74256727574, 85.8272988312], [232.649, 2.25716421383, 222.8603229936], [215.838, 1.5912170494, 38.1330356378], [244.698, 0.78795150326, 2.9689454166], [179.935, 3.72487952673, 299.1263942692], [174.895, 1.23550262213, 146.594251718], [173.667, 1.93654269131, 380.12776796], [160.368, 5.33635436463, 111.4301614968], [144.064, 5.96239326415, 35.1640902212], [102.049, 2.61876256513, 78.7137518304], [116.363, 5.73877190007, 70.8494453042], [106.441, 0.94103112994, 70.3281804424], [86.163, 0.70262506622, 39.6175083461], [72.617, 0.20564696113, 225.8292684102], [71.172, 0.83343269975, 109.9456887885], [57.502, 2.67039425415, 108.4612160802], [54.255, 3.35166579613, 184.7272873558], [44.47, 2.74408231138, 152.5321425512], [38.591, 5.17394663303, 202.2533951741], [39.157, 2.17108251341, 351.8165923087], [41.346, 3.22134319551, 160.6088973985], [35.14, 4.00111634363, 112.9146342051], [33.073, 3.61378095742, 221.3758502853], [31.315, 2.71969470781, 145.1097790097], [37.336, 4.02053241202, 52.6901980395], [32.028, 1.29160071142, 145.6310438715], [27.574, 3.7006426696, 36.6485629295], [24.277, 2.84989187496, 127.4717966068], [24.635, 1.11645461259, 3.9321532631], [24.315, 5.48987913644, 79.2350166922], [21.418, 0.63722900407, 277.0349937414], [19.826, 2.5933418223, 84.3428261229], [22.373, 5.73687615457, 4.4534181249], [19.137, 1.30214105578, 62.2514255951], [19.789, 4.72260849557, 297.6419215609], [20.299, 1.06070151806, 454.9093665273], [19.768, 5.77906142568, 305.3461693927], [21.348, 1.01350946382, 33.6796175129], [15.142, 2.91786832554, 426.598190876], [16.0, 1.95535748902, 186.2117600641], [13.819, 2.67163927171, 74.6697239827], [11.463, 5.73391138419, 41.1019810544], [10.741, 3.73401569675, 1059.3819301892], [11.45, 3.98177764866, 106.9767433719], [10.36, 4.75567608732, 183.2428146475], [10.232, 6.18772866993, 373.9079928365], [13.803, 5.70712120608, 74.8934731519], [10.553, 3.78602881738, 490.3340891794], [11.838, 5.96756415681, 87.3117715395], [10.03, 1.74828757238, 22.0914005278], [10.107, 0.92911975959, 65.2203710117], [9.127, 5.11093790809, 153.4953503977], [12.093, 2.53736362742, 9.5612275556], [8.646, 4.18351923569, 12.5301729722], [9.978, 5.83600622359, 604.4725636619], [11.352, 2.12645777694, 68.8437077341], [8.472, 3.36885457285, 72.3339180125], [7.797, 5.11771906359, 77.962992305], [8.302, 5.19247905162, 77.2292791221], [7.696, 3.25189037096, 71.6002048296], [7.513, 2.982659701, 114.3991069134], [6.947, 3.31871016057, 56.6223513026], [6.49, 0.88434578474, 288.0806940053], [6.394, 3.51142812432, 220.4126424388], [6.211, 0.58222518453, 340.7708920448], [6.772, 4.09374798222, 137.0330241624], [5.595, 5.68643434536, 259.5088859231], [5.309, 2.65421183211, 300.6108669775], [4.95, 4.99672086239, 219.891377577], [6.419, 0.44895727879, 140.001969579], [4.975, 4.06722486039, 143.6253063014], [5.692, 3.7656346318, 67.6680515665], [4.853, 2.03383592524, 415.5524906121], [3.796, 1.26231186682, 75.3028634291], [3.807, 2.24787582155, 909.8187330546], [3.812, 3.10475682509, 181.7583419392], [3.764, 5.2005209056, 227.3137411185], [3.445, 5.91769433069, 296.1574488526], [3.517, 5.44397685665, 628.8515860501], [3.943, 4.95136058926, 265.9892934775], [3.472, 0.3473799838, 131.4039498699], [3.39, 0.53497504164, 206.1855484372], [3.038, 4.68314286209, 159.1244246902], [3.19, 5.68929316349, 235.3904959658], [3.303, 2.09359507373, 73.8183907208], [3.069, 4.49065085092, 66.70484372], [3.285, 0.00780313833, 75.7448064138], [2.917, 4.21615078632, 258.0244132148], [3.747, 0.82999983666, 74.2603337055], [2.814, 3.96708337625, 82.8583534146], [2.474, 3.81319259323, 7.1135470008], [2.394, 2.21483198491, 54.1746707478], [2.555, 2.97023907145, 378.6432952517], [2.631, 1.55153254691, 154.0166152595], [2.633, 2.28385552693, 32.1951448046], [2.643, 3.9683272968, 381.6122406683], [2.206, 3.06995275892, 59.8037450403], [2.635, 0.53987945692, 211.8146227297], [2.071, 1.97429082033, 18.1592472647], [2.485, 3.5543384699, 96.8729990951], [2.061, 4.50102695788, 5.9378908332], [1.916, 1.60538526374, 80.1982245387], [2.48, 0.63321072542, 187.6962327724], [2.039, 2.97351088965, 191.2076949102], [1.833, 1.95824865568, 81.8951455681], [1.719, 2.22526635038, 479.2883889155], [1.745, 3.22821992592, 218.4069048687], [1.857, 1.66304484985, 984.6003316219], [1.766, 5.24239122261, 105.4922706636], [1.524, 6.05374020264, 99.1606209555], [1.519, 0.94716867229, 372.4235201282], [1.614, 3.39986066169, 230.5645708254], [1.711, 3.44237080993, 522.5774180938], [1.504, 1.34653259405, 74.5209661364], [1.577, 4.3802093672, 80.7194894005], [1.36, 5.4869124027, 74.8297826771], [1.364, 4.56045715617, 42.5864537627], [1.398, 0.33827838973, 142.4496501338], [1.709, 3.63188407264, 554.0699874828], [1.36, 2.89305157919, 74.7334144575], [1.26, 5.50922979275, 74.9416572617], [1.374, 4.398979932, 260.9933586314], [1.366, 2.15288773765, 162.0933701068], [1.244, 4.97789913094, 149.45132255], [1.269, 0.84167691738, 767.3690829208], [1.278, 4.53585702916, 294.6729761443], [1.342, 5.11117141196, 51.2057253312], [1.18, 0.79882196802, 116.4260963429], [1.495, 0.74986873597, 75.0422309982], [1.207, 3.67288675913, 20.6069278195], [1.181, 4.39598416757, 180.2738692309], [1.248, 3.13312504066, 67.3592350258], [1.263, 2.87116663203, 74.6215398729], [1.38, 3.76141611602, 92.940845832], [1.113, 3.87133607367, 39.3568759152], [1.018, 6.20393099094, 835.0371344873], [0.962, 3.30343472839, 255.0554677982], [1.238, 1.73023505315, 149.6750717192], [0.97, 1.71236273285, 115.8835796217], [1.001, 5.49914631698, 256.5399405065], [0.921, 3.07729879788, 8.0767548473], [0.914, 0.00764291274, 536.8045120954], [0.911, 6.23753038018, 200.7689224658], [0.956, 5.76811833839, 128.9562693151], [0.999, 0.33400530567, 404.5067903482], [0.952, 3.00456073496, 14.977853527], [0.765, 3.4545453366, 214.7835681463], [0.8, 3.2091293209, 28.3111756513], [0.799, 4.11425365829, 125.9873238985], [1.021, 1.79905869707, 3.1813937377], [0.706, 5.80210566917, 157.6399519819], [0.715, 5.56313177065, 146.3818033969], [0.689, 1.84748347121, 41.6444977756], [0.682, 5.16479782395, 74.0308390419], [0.673, 2.65544175682, 75.5323580927], [0.723, 4.75905991606, 331.3215390738], [0.73, 2.25510749124, 453.424893819], [0.691, 3.58561635364, 362.8622925726], [0.641, 5.77408891198, 110.2063212194], [0.671, 5.96862039131, 135.5485514541], [0.631, 1.97807297205, 639.897286314], [0.774, 0.42035450706, 565.1156877467], [0.705, 2.94649553712, 60.7669528868], [0.663, 5.32574112049, 142.1408335931], [0.612, 2.01741578932, 195.1398481733], [0.749, 5.56828487823, 2.4476805548], [0.798, 0.90969731665, 152.0108776894], [0.747, 5.07639466593, 89.7594520943], [0.65, 4.56215718085, 216.9224321604], [0.651, 2.80626026285, 50.4025761791], [0.593, 1.89556258897, 203.7378678824], [0.55, 2.90625551534, 68.1893164283], [0.548, 3.75628845322, 617.8058857862], [0.554, 2.78135114877, 14.0146456805], [0.53, 3.51385025328, 291.7040307277], [0.506, 4.94619342366, 81.3738807063], [0.649, 5.74895589744, 141.4864422873], [0.593, 5.40734033998, 692.5874843535], [0.544, 2.9991051278, 152.7445908723], [0.485, 2.36317665443, 448.6895914038], [0.481, 5.81647231299, 134.5853436076], [0.517, 4.97759795528, 387.2413149608], [0.573, 2.46311368783, 81.0013736908], [0.47, 1.30184316812, 228.276948965], [0.475, 0.53480492526, 303.8616966844], [0.485, 6.21247575899, 5.4166259714], [0.468, 0.55881267334, 23.5758732361], [0.585, 4.67924542643, 88.7962442478], [0.512, 5.86200059955, 293.188503436], [0.445, 2.50076311432, 905.8865797915], [0.501, 4.79997295899, 306.830642101], [0.418, 5.21379084769, 35.4247226521], [0.408, 5.69107313998, 284.1485407422], [0.474, 3.03149617428, 286.596221297], [0.432, 4.20907682097, 278.5194664497], [0.506, 2.05348204197, 373.0142209592], [0.41, 5.30637634877, 95.3885263868], [0.478, 2.41106642594, 358.9301393095], [0.536, 1.8261477226, 114.1384744825], [0.383, 5.54541241459, 419.4846438752], [0.413, 0.03813081773, 103.0927742186], [0.368, 4.08526832792, 1589.0728952838], [0.369, 1.82533858431, 334.2904844904], [0.491, 5.58913582973, 68.5618234438], [0.387, 0.5661931048, 602.9880909536], [0.427, 5.08349119654, 367.9701020033], [0.475, 0.17507881032, 120.358249606], [0.342, 5.27187859255, 28.5718080822], [0.407, 2.00853504718, 679.2541622292], [0.381, 4.61366060949, 329.7251917809], [0.388, 0.88856038803, 483.2205421786], [0.376, 1.28856348513, 155.7829722581], [0.326, 6.09140263554, 456.3938392356], [0.318, 0.09996195379, 69.3649725959], [0.292, 5.11578046796, 375.3924655448], [0.299, 6.04121646505, 332.8060117821], [0.328, 3.47252263966, 73.4090004436], [0.283, 1.81773059325, 647.0108333148], [0.308, 3.50154864071, 30.7106720963], [0.283, 1.88910019831, 24.3790223882], [0.278, 3.85507901929, 760.25553592], [0.273, 4.22941219477, 391.1734682239], [0.293, 5.44464406156, 477.9157907918], [0.289, 3.85492516765, 209.3669421749], [0.309, 1.97045147502, 543.0242872189], [0.324, 5.57191515554, 501.3797894433], [0.248, 2.17741598681, 611.5861106627], [0.245, 1.04008534095, 1332.4847706675], [0.248, 6.19516038159, 1134.1635287565], [0.242, 1.37720813333, 121.2520214833], [0.233, 0.50933224249, 462.0229135281], [0.319, 4.2421988104, 328.3525936572], [0.244, 6.0064485364, 295.1942410061], [0.228, 0.72608678727, 233.9060232575], [0.223, 5.35785607671, 983.1158589136], [0.304, 5.68101077712, 189.1807054807], [0.223, 2.04168197187, 370.9390474199], [0.245, 4.69742022955, 316.3918696566], [0.217, 4.33845164683, 269.9214467406], [0.267, 0.15744446718, 10213.285546211], [0.21, 5.84975171904, 147.1155165798], [0.224, 3.04829549918, 1439.5096981492], [0.226, 0.72248476212, 45.5766510387], [0.202, 1.37341689387, 302.0953396858], [0.207, 6.13936312021, 344.7030453079], [0.228, 2.33602531859, 150.5264049811], [0.203, 2.38070591912, 275.5505210331], [0.194, 5.11344829813, 1215.1649024473], [0.259, 2.78974616768, 144.1465711632], [0.199, 3.21010368905, 7.4223635415], [0.246, 6.15106498377, 6.2197751235], [0.18, 4.7037703687, 518.6452648307], [0.186, 3.85070006482, 46.2097904851], [0.175, 3.72163733058, 150.0844619964], [0.165, 1.87245210311, 310.1720945331], [0.166, 3.24028819042, 173.9422195228], [0.181, 0.39521867351, 0.9632078465], [0.144, 1.78180338482, 531.1754378029], [0.137, 6.20635855175, 369.4545747116], [0.136, 4.00164375048, 526.722019678], [0.141, 4.02238453909, 350.3321196004], [0.125, 5.28865037145, 329.8370663655], [0.134, 3.97421067761, 228.7982138268], [0.132, 4.52023845365, 148.5999892881], [0.125, 4.24724390191, 248.7238180901], [0.12, 4.08565783859, 154.979823106], [0.133, 3.16576403244, 262.4778313397]], [[206366.162, 4.12394311407, 74.7815985673], [8563.23, 0.33819986165, 149.5631971346], [1725.703, 2.12193159895, 73.297125859], [1368.86, 3.06861722047, 76.2660712756], [1374.449, 0.0, 0.0], [399.847, 2.84767037795, 224.3447957019], [450.639, 3.77656180977, 1.4844727083], [307.214, 1.25456766737, 148.0787244263], [154.336, 3.78575467747, 63.7358983034], [110.888, 5.32888676461, 138.5174968707], [112.432, 5.57299891505, 151.0476698429], [83.493, 3.59152795558, 71.8126531507], [55.573, 3.40135416354, 85.8272988312], [41.377, 4.45476669141, 78.7137518304], [53.69, 1.70455769943, 77.7505439839], [41.912, 1.21476607434, 11.0457002639], [31.959, 3.77446207748, 222.8603229936], [30.297, 2.56371683644, 2.9689454166], [26.977, 5.33695500294, 213.299095438], [26.222, 0.41620628369, 380.12776796], [20.094, 5.9308563351, 529.6909650946], [22.992, 2.48887389394, 146.594251718], [19.59, 5.37213500014, 299.1263942692], [20.408, 3.70179681605, 70.8494453042], [19.102, 1.09213276596, 111.4301614968], [19.411, 3.83015453768, 38.1330356378], [10.847, 2.66326308043, 3.9321532631], [10.249, 2.3127880772, 109.9456887885], [9.405, 2.76950513184, 39.6175083461], [7.66, 1.8110846285, 225.8292684102], [8.082, 4.69064168719, 184.7272873558], [6.584, 5.50417589189, 35.1640902212], [7.41, 1.17879753422, 65.2203710117], [6.451, 4.98294064391, 71.6002048296], [6.089, 1.31830108565, 52.6901980395], [4.768, 5.90574941745, 145.6310438715], [4.84, 4.86390682412, 221.3758502853], [4.192, 3.29643787103, 77.962992305], [4.711, 4.24289069791, 152.5321425512], [4.894, 6.01164167429, 160.6088973985], [3.738, 4.75287390209, 70.3281804424], [3.481, 0.64108927026, 153.4953503977], [3.758, 3.94715595219, 351.8165923087], [3.114, 0.10537144899, 112.9146342051], [2.788, 4.24118032837, 74.6697239827], [2.505, 0.04576283378, 297.6419215609], [2.563, 4.15665405963, 305.3461693927], [2.544, 5.25903565788, 56.6223513026], [2.247, 4.24726481845, 36.6485629295], [2.541, 0.40106060407, 77.2292791221], [2.212, 2.88960413468, 277.0349937414], [2.299, 3.57748029365, 186.2117600641], [2.661, 0.53230319176, 79.2350166922], [2.157, 2.10150995852, 127.4717966068], [2.265, 1.41055702214, 4.4534181249], [2.103, 4.27438518414, 22.0914005278], [1.861, 3.75619999278, 145.1097790097], [1.759, 2.10240976488, 131.4039498699], [1.661, 4.84483054269, 62.2514255951], [1.496, 1.72084298116, 220.4126424388], [1.659, 5.86539712478, 454.9093665273], [1.428, 0.31508367934, 137.0330241624], [1.522, 1.00801468633, 75.7448064138], [1.459, 6.17427145114, 426.598190876], [1.463, 5.14953143442, 84.3428261229], [1.453, 2.22988903923, 206.1855484372], [1.358, 5.85111427068, 183.2428146475], [1.405, 2.43582184515, 87.3117715395], [1.495, 5.55621838458, 67.6680515665], [1.317, 1.91178535183, 140.001969579], [1.068, 1.51430678116, 373.9079928365], [1.439, 0.99170994448, 74.8934731519], [1.065, 4.15616015505, 288.0806940053], [1.096, 1.63909426062, 41.1019810544], [1.189, 0.90595784409, 33.6796175129], [0.961, 5.48175535705, 490.3340891794], [0.851, 0.95029849401, 909.8187330546], [0.82, 0.78610123063, 259.5088859231], [0.881, 4.31294603221, 9.5612275556], [0.708, 7.309836e-05, 81.8951455681], [0.709, 3.18853632737, 80.1982245387], [0.786, 5.18884635415, 114.3991069134], [0.822, 0.01949759759, 18.1592472647], [0.656, 6.16899483115, 96.8729990951], [0.879, 1.82006610038, 73.8183907208], [0.872, 0.30134022304, 12.5301729722], [0.86, 0.21225398802, 3.1813937377], [0.637, 2.64378420008, 75.3028634291], [0.727, 0.02846968582, 66.70484372], [0.6, 4.42462853209, 415.5524906121], [0.59, 4.17885957237, 300.6108669775], [0.61, 6.07202921132, 219.891377577], [0.611, 0.97629869063, 296.1574488526], [0.635, 2.21125075603, 74.2603337055], [0.529, 2.35940463062, 7.1135470008], [0.622, 2.2180194485, 211.8146227297], [0.519, 2.01872911223, 142.4496501338], [0.489, 1.83419944488, 92.940845832], [0.445, 2.51784247184, 604.4725636619], [0.413, 5.36482818305, 82.8583534146], [0.445, 0.33164113115, 227.3137411185], [0.456, 2.44190834824, 381.6122406683], [0.378, 1.91873737843, 202.2533951741], [0.509, 5.83556856314, 191.2076949102], [0.455, 5.15414537021, 522.5774180938], [0.419, 2.80644155875, 72.3339180125], [0.333, 0.3201483795, 2.4476805548], [0.36, 1.47248643716, 378.6432952517], [0.306, 0.15517399606, 159.1244246902], [0.301, 4.46417652272, 536.8045120954], [0.353, 0.48749845867, 128.9562693151], [0.351, 6.24769322491, 5.9378908332], [0.298, 1.71815652029, 235.3904959658], [0.315, 2.44922921309, 187.6962327724], [0.318, 0.7017635951, 181.7583419392], [0.314, 4.68400251693, 14.977853527], [0.282, 3.70093718573, 108.4612160802], [0.272, 3.91340553608, 617.8058857862], [0.273, 3.29483889428, 387.2413149608], [0.323, 4.90410549341, 258.0244132148], [0.288, 4.42249612833, 195.1398481733], [0.25, 1.23231297183, 703.6331846174], [0.338, 2.8464576889, 154.0166152595], [0.297, 1.16538119842, 146.3818033969], [0.248, 4.90614051989, 41.6444977756], [0.275, 5.35665949805, 80.7194894005], [0.257, 1.82441994046, 230.5645708254], [0.234, 0.27679874465, 33.1371007917], [0.28, 1.73679618032, 265.9892934775], [0.229, 0.49529839431, 74.8297826771], [0.229, 4.18462288684, 74.7334144575], [0.253, 2.63817804331, 74.5209661364], [0.252, 2.04143912495, 75.0422309982], [0.213, 4.16218259902, 74.6215398729], [0.212, 0.51761494342, 74.9416572617], [0.201, 4.54140547837, 20.6069278195], [0.194, 4.17282454759, 116.4260963429], [0.213, 2.29528235429, 32.1951448046], [0.174, 3.15418942153, 228.276948965], [0.194, 0.06960211137, 42.5864537627], [0.173, 5.59700344643, 68.8437077341], [0.159, 4.91721631097, 143.6253063014], [0.15, 0.92771324396, 404.5067903482], [0.136, 2.51083022906, 372.4235201282], [0.134, 3.22507836958, 479.2883889155], [0.124, 0.42063711585, 149.45132255], [0.122, 1.20639876458, 5.4166259714], [0.119, 0.45375065997, 74.0308390419], [0.146, 5.0820733036, 294.6729761443], [0.118, 4.2264078889, 75.5323580927], [0.118, 1.50613822829, 344.7030453079], [0.121, 2.13544759505, 209.3669421749], [0.121, 6.0823907637, 260.9933586314], [0.154, 4.18369977366, 39.3568759152]], [[9211.656, 5.80044305785, 74.7815985673], [556.926, 0.0, 0.0], [286.265, 2.17729776353, 149.5631971346], [94.969, 3.84237569809, 73.297125859], [45.419, 4.87822046064, 76.2660712756], [20.107, 5.46264485369, 1.4844727083], [14.793, 0.87983715652, 138.5174968707], [13.963, 5.07234043994, 63.7358983034], [14.261, 2.84517742687, 148.0787244263], [10.122, 5.00290894862, 224.3447957019], [8.299, 6.26655615197, 78.7137518304], [4.729, 5.16274174929, 71.8126531507], [3.816, 6.28224514574, 85.8272988312], [3.488, 3.53472172445, 11.0457002639], [2.555, 1.44444215715, 151.0476698429], [2.353, 4.23069776466, 3.9321532631], [2.585, 0.41383633246, 71.6002048296], [1.394, 4.13126838571, 146.594251718], [1.183, 3.68471361409, 77.7505439839], [1.103, 5.54212014132, 222.8603229936], [1.205, 5.05109252937, 380.12776796], [1.146, 1.95280464754, 529.6909650946], [0.977, 1.52652616357, 77.962992305], [1.025, 4.33698643491, 2.9689454166], [0.858, 2.78728745263, 111.4301614968], [0.868, 5.55175791193, 38.1330356378], [0.633, 0.41074353315, 213.299095438], [0.596, 5.39265533517, 127.4717966068], [0.586, 4.00404667232, 109.9456887885], [0.543, 2.40369406419, 153.4953503977], [0.486, 2.05237757516, 299.1263942692], [0.557, 3.13408880388, 65.2203710117], [0.457, 3.96543219832, 454.9093665273], [0.481, 2.81511187371, 160.6088973985], [0.421, 2.16819778071, 56.6223513026], [0.326, 4.5292001243, 39.6175083461], [0.308, 6.26508780547, 70.3281804424], [0.338, 5.14594268587, 3.1813937377], [0.288, 0.47061435406, 22.0914005278], [0.336, 4.23512034174, 35.1640902212], [0.316, 3.93430525759, 52.6901980395], [0.306, 1.10359318443, 70.8494453042], [0.25, 3.58780257084, 202.2533951741], [0.239, 4.7767930608, 87.3117715395], [0.227, 2.74138067839, 12.5301729722], [0.263, 1.59203582407, 84.3428261229], [0.215, 3.88195737361, 131.4039498699], [0.216, 5.80700510713, 74.6697239827], [0.264, 1.82574036051, 77.2292791221], [0.222, 0.0411188355, 184.7272873558], [0.197, 1.56602555362, 9.5612275556], [0.193, 2.2641693816, 75.7448064138], [0.179, 2.69065316892, 145.6310438715], [0.17, 2.75844544119, 73.8183907208], [0.155, 3.5539324911, 18.1592472647], [0.174, 4.76111441901, 277.0349937414], [0.14, 0.2871476287, 221.3758502853], [0.134, 1.29065526326, 206.1855484372], [0.127, 6.17908901556, 62.2514255951], [0.116, 6.26646620658, 220.4126424388]], [[267.832, 1.25097888291, 74.7815985673], [11.048, 3.14159265359, 0.0], [6.154, 4.00663614486, 149.5631971346], [3.361, 5.77804694935, 73.297125859], [1.602, 1.05657834344, 63.7358983034], [1.265, 1.66795295537, 78.7137518304], [1.183, 2.58856450374, 138.5174968707], [1.087, 0.28687213135, 76.2660712756], [0.64, 1.87238784591, 71.6002048296], [0.59, 0.80206040001, 1.4844727083], [0.467, 4.42872012006, 148.0787244263], [0.272, 4.00684090176, 85.8272988312], [0.203, 0.60406901282, 71.8126531507], [0.18, 5.55657564049, 3.9321532631], [0.168, 4.67745630044, 70.8494453042], [0.17, 2.93672195979, 11.0457002639]], [[5.719, 2.85499529315, 74.7815985673], [0.3, 3.14159265359, 0.0]]]

This table contains Uranus’ periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric latitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 448-449.

pymeeus.Uranus.VSOP87_L = [[[548129294.299, 0.0, 0.0], [9260408.252, 0.8910642153, 74.7815985673], [1504247.826, 3.62719262195, 1.4844727083], [365981.718, 1.89962189068, 73.297125859], [272328.132, 3.35823710524, 149.5631971346], [70328.499, 5.39254431993, 63.7358983034], [68892.609, 6.09292489045, 76.2660712756], [61998.592, 2.26952040469, 2.9689454166], [61950.714, 2.85098907565, 11.0457002639], [26468.869, 3.14152087888, 71.8126531507], [25710.505, 6.11379842935, 454.9093665273], [21078.897, 4.36059465144, 148.0787244263], [17818.665, 1.74436982544, 36.6485629295], [14613.471, 4.73732047977, 3.9321532631], [11162.535, 5.82681993692, 224.3447957019], [10997.934, 0.48865493179, 138.5174968707], [9527.487, 2.95516893093, 35.1640902212], [7545.543, 5.23626440666, 109.9456887885], [4220.17, 3.23328535514, 70.8494453042], [4051.85, 2.27754158724, 151.0476698429], [3354.607, 1.06549008887, 4.4534181249], [2926.671, 4.62903695486, 9.5612275556], [3490.352, 5.48305567292, 146.594251718], [3144.093, 4.75199307603, 77.7505439839], [2922.41, 5.3523674338, 85.8272988312], [2272.79, 4.36600802756, 70.3281804424], [2051.209, 1.51773563459, 0.1118745846], [2148.599, 0.60745800902, 38.1330356378], [1991.726, 4.92437290826, 277.0349937414], [1376.208, 2.04281409054, 65.2203710117], [1666.91, 3.62744580852, 380.12776796], [1284.183, 3.11346336879, 202.2533951741], [1150.416, 0.93344454002, 3.1813937377], [1533.223, 2.58593414266, 52.6901980395], [1281.641, 0.54269869505, 222.8603229936], [1372.1, 4.19641615561, 111.4301614968], [1220.998, 0.19901396193, 108.4612160802], [946.195, 1.19249463066, 127.4717966068], [1150.993, 4.17898207045, 33.6796175129], [1244.342, 0.91612680579, 2.4476805548], [1072.008, 0.23564502877, 62.2514255951], [1090.461, 1.77501638912, 12.5301729722], [707.875, 5.18285226584, 213.299095438], [653.401, 0.96586909116, 78.7137518304], [627.562, 0.18210181975, 984.6003316219], [524.495, 2.01276706996, 299.1263942692], [559.37, 3.35776737704, 0.5212648618], [606.827, 5.43209728952, 529.6909650946], [404.891, 5.98689011389, 8.0767548473], [467.211, 0.41484068933, 145.1097790097], [471.288, 1.40664336447, 184.7272873558], [483.219, 2.10553990154, 0.9632078465], [395.614, 5.87039580949, 351.8165923087], [433.532, 5.52142978255, 183.2428146475], [309.885, 5.83301304674, 145.6310438715], [378.609, 2.34975805006, 56.6223513026], [398.996, 0.33810765436, 415.5524906121], [300.379, 5.64353974146, 22.0914005278], [249.229, 4.74617120584, 225.8292684102], [239.334, 2.35045874708, 137.0330241624], [294.172, 5.83916826225, 39.6175083461], [216.48, 4.77847481363, 340.7708920448], [251.792, 1.63696775578, 221.3758502853], [219.621, 1.92212987979, 67.6680515665], [201.963, 1.29693040865, 0.0481841098], [224.097, 0.51574863468, 84.3428261229], [216.549, 6.14211862702, 5.9378908332], [222.588, 2.84309380331, 0.2606324309], [207.828, 5.5802057004, 68.8437077341], [187.474, 1.31924326253, 0.1600586944], [158.028, 0.73811997211, 54.1746707478], [199.146, 0.9563415501, 152.5321425512], [168.648, 5.87874000882, 18.1592472647], [170.3, 3.67717520688, 5.4166259714], [193.652, 1.88800122606, 456.3938392356], [192.998, 0.91616058506, 453.424893819], [181.934, 3.53624029238, 79.2350166922], [173.145, 1.53860728054, 160.6088973985], [164.588, 1.42379714838, 106.9767433719], [171.968, 5.67952685533, 219.891377577], [162.792, 3.05029377666, 112.9146342051], [146.653, 1.26300172265, 59.8037450403], [139.453, 5.385977234, 32.1951448046], [138.585, 4.25994786673, 909.8187330546], [143.058, 1.29995487555, 35.4247226521], [123.84, 1.37359990336, 7.1135470008], [104.414, 5.02820888813, 0.7507595254], [103.277, 0.68095301267, 14.977853527], [94.741, 0.90674090409, 74.6697239827], [82.978, 2.92828718445, 265.9892934775], [110.163, 2.02685778976, 554.0699874828], [94.226, 3.9426632826, 74.8934731519], [79.858, 1.0144682918, 6.592282139], [109.376, 5.70581833286, 77.962992305], [85.876, 1.70649435603, 82.8583534146], [103.562, 1.45770270246, 24.3790223882], [74.667, 4.63177552576, 69.3649725959], [79.919, 3.00974084247, 297.6419215609], [84.502, 0.36887189574, 186.2117600641], [88.81, 0.52481330563, 181.7583419392], [70.303, 1.18986880009, 66.70484372], [69.965, 0.87476081875, 305.3461693927], [69.927, 3.76102749315, 131.4039498699], [84.604, 5.88725183325, 256.5399405065], [74.341, 6.24271323846, 447.7958195265], [62.31, 0.16901376623, 479.2883889155], [72.726, 2.84892775693, 462.0229135281], [69.06, 4.43934854374, 39.3568759152], [76.568, 4.5872111034, 6.2197751235], [73.387, 4.27603448634, 87.3117715395], [55.307, 1.49636544147, 71.6002048296], [57.291, 1.63015165542, 143.6253063014], [61.661, 3.18604743524, 77.2292791221], [57.634, 3.67180685401, 51.2057253312], [50.289, 1.12279384633, 20.6069278195], [53.744, 5.51890986247, 128.9562693151], [57.894, 2.66877593418, 381.6122406683], [58.112, 1.58629352171, 60.7669528868], [45.382, 0.48053933052, 14.0146456805], [37.581, 6.06822931932, 211.8146227297], [38.64, 3.43597050177, 153.4953503977], [46.087, 4.36201639577, 75.7448064138], [40.088, 4.57333927519, 46.2097904851], [34.229, 2.93967782207, 140.001969579], [38.669, 5.58941074168, 99.1606209555], [34.827, 1.02792863024, 203.7378678824], [40.024, 0.69889667397, 218.4069048687], [32.538, 4.21625657443, 200.7689224658], [31.865, 5.50961503408, 72.3339180125], [41.695, 3.82438031124, 81.0013736908], [34.795, 0.39363490236, 1.3725981237], [39.775, 6.05600836903, 293.188503436], [27.577, 2.18261286374, 125.9873238985], [36.279, 1.66586085405, 258.0244132148], [35.442, 1.96652806541, 835.0371344873], [35.361, 3.7225869003, 692.5874843535], [27.323, 2.10164372072, 209.3669421749], [26.53, 4.48265986115, 373.9079928365], [34.472, 1.07907945481, 191.2076949102], [29.915, 3.87358632506, 259.5088859231], [26.233, 3.63172504384, 490.3340891794], [25.848, 0.54461409359, 41.6444977756], [26.989, 6.27711247734, 28.5718080822], [26.391, 5.81110061049, 75.3028634291], [34.227, 6.05617272657, 275.5505210331], [24.279, 3.18776564878, 81.3738807063], [29.937, 1.88789751816, 269.9214467406], [26.235, 6.20105251336, 134.5853436076], [22.754, 0.92919725789, 288.0806940053], [25.18, 5.42547381962, 116.4260963429], [22.715, 0.53098783687, 1514.2912967165], [26.485, 4.77176167929, 284.1485407422], [27.008, 4.75281624832, 41.1019810544], [21.972, 4.58613057386, 404.5067903482], [22.012, 1.84389287183, 617.8058857862], [24.694, 4.7087519549, 378.6432952517], [28.949, 0.17127584792, 528.2064923863], [20.492, 0.10285646641, 195.1398481733], [20.696, 5.62143477633, 55.6591434561], [25.843, 0.74627159338, 278.5194664497], [22.99, 3.58378694661, 1.5963472929], [21.843, 0.05733533568, 173.9422195228], [19.05, 2.30351091243, 5.1078094307], [20.675, 2.64113858585, 105.4922706636], [21.856, 5.87352402691, 45.5766510387], [21.12, 1.98081790016, 114.3991069134], [19.279, 2.84304025179, 159.1244246902], [19.061, 0.50598371738, 67.3592350258], [20.434, 3.77601951414, 135.5485514541], [17.326, 4.47793157645, 120.358249606], [20.547, 0.88695598555, 255.0554677982], [19.32, 1.48569290504, 0.8937718773], [21.331, 2.7447002306, 28.3111756513], [17.582, 4.091396367, 296.1574488526], [15.918, 3.94525074972, 17.5261078183], [15.562, 0.92748407689, 300.6108669775], [16.439, 0.30868798605, 30.7106720963], [15.237, 4.93048601827, 7.4223635415], [19.284, 6.21950083268, 329.8370663655], [13.86, 0.56255266406, 144.1465711632], [16.206, 2.30292598693, 344.7030453079], [16.041, 0.19723295436, 103.0927742186], [14.414, 2.57606243208, 230.5645708254], [16.789, 4.93540052916, 565.1156877467], [17.052, 1.81844925116, 294.6729761443], [16.766, 0.2754218633, 73.8183907208], [15.428, 1.91577056305, 96.8729990951], [15.718, 3.87095025861, 98.8999885246], [11.923, 6.17545505441, 44.7253177768], [12.407, 6.22419970167, 80.1982245387], [13.04, 1.99652993223, 27.0873353739], [13.229, 3.43782440072, 227.3137411185], [11.669, 4.31526860843, 426.598190876], [14.378, 5.78353646474, 1059.3819301892], [15.879, 0.98454960055, 6208.2942514241], [11.158, 1.7441743069, 220.4126424388], [11.989, 5.8438865795, 13.3333221243], [11.386, 2.55925734515, 19.1224551112], [13.281, 5.39472153462, 391.1734682239], [12.295, 4.57340278496, 23.5758732361], [12.827, 1.7741026907, 180.2738692309], [11.651, 4.29138607818, 142.4496501338], [12.248, 2.44241346243, 100.3844612329], [12.421, 2.32591770919, 80.7194894005], [9.774, 0.39898140151, 7.8643065262], [13.172, 2.74099358938, 177.8743727859], [12.262, 5.42795591646, 831.1049812242], [10.272, 5.90194483926, 74.5209661364], [9.317, 3.75869700774, 74.8297826771], [10.701, 4.00709797731, 235.3904959658], [9.243, 5.38492199672, 20.4468691251], [9.461, 2.60126707172, 92.3077063856], [12.066, 5.5216310022, 74.2603337055], [10.836, 1.88393779293, 241.6102710893], [9.317, 1.1648365831, 74.7334144575], [10.718, 5.50310449842, 187.6962327724], [12.057, 6.0212005039, 154.0166152595], [9.124, 1.15458738606, 0.6331394464], [11.526, 6.26425302826, 155.7829722581], [12.2, 5.79400179483, 1364.7280995819], [10.979, 5.76614513865, 628.8515860501], [8.532, 5.1801645615, 1.6445314027], [8.66, 3.78133822411, 74.9416572617], [11.227, 1.30788626675, 604.4725636619], [10.531, 1.05867421534, 291.7040307277], [8.446, 3.52020067595, 756.3233826569], [10.291, 5.30493908317, 75.0422309982], [8.015, 6.24347048958, 543.0242872189], [7.796, 5.23497582886, 58.1068240109], [9.31, 1.65210713729, 24.1183899573], [8.642, 1.14285691458, 74.6215398729], [7.797, 4.00208030502, 31.492569389], [8.915, 3.63129389881, 408.4389436113], [7.191, 4.24536221306, 110.2063212194], [9.764, 0.10205649809, 366.485629295], [8.71, 2.2591075948, 451.9404211107], [9.43, 2.00492467431, 331.3215390738], [9.008, 1.63146330622, 443.8636662634], [7.247, 4.35313018726, 88.1149206916], [7.659, 0.61918159043, 50.4025761791], [6.836, 5.12190844483, 0.8031491521], [9.367, 1.42664537007, 414.0680179038], [8.136, 0.45279998999, 25.6028626656], [9.199, 2.41000352664, 10138.5039476437], [6.896, 5.85017813531, 339.2864193365], [6.487, 6.03397141885, 1.2238402774], [7.186, 4.00480285222, 157.6399519819], [8.13, 0.21907525983, 422.6660376129], [8.022, 2.09953974305, 92.940845832], [6.371, 4.47820781123, 79.889407998], [7.957, 5.86499639179, 760.25553592], [8.383, 2.33782809093, 417.0369633204], [7.931, 3.41952210669, 7.7042478318], [6.613, 1.39197711439, 16.6747745564], [7.142, 5.57864813931, 4.7353024152], [7.441, 0.48121969777, 68.1893164283], [7.187, 0.50441238918, 457.8783119439], [6.613, 2.84628770892, 142.1408335931], [6.399, 3.88681409308, 74.0308390419], [6.14, 1.6577690922, 350.3321196004], [7.053, 0.13890020306, 306.830642101], [6.01, 5.4643400464, 48.7580447764], [6.81, 6.15448079403, 67.8804998876], [5.982, 2.36098472874, 2.0057375701], [5.709, 1.49928444044, 206.1855484372], [6.843, 1.08172913275, 465.9550667912], [6.408, 5.07331258075, 4.665866446], [7.805, 3.98866710061, 3.6233367224], [5.527, 5.57881556653, 2.9207613068], [5.521, 3.3822598704, 149.45132255], [6.107, 1.95504762856, 216.9224321604], [5.692, 2.83076925167, 260.9933586314], [6.586, 2.71085048651, 329.7251917809], [5.826, 3.98800970226, 347.8844390456], [5.745, 0.49160564101, 0.3725070155], [5.473, 5.69158856279, 1.6969210294], [4.982, 2.40870746521, 342.2553647531], [6.04, 4.78944090986, 558.0021407459], [5.317, 2.78403764459, 13.4933808187], [5.09, 5.47747622578, 372.4235201282], [4.894, 1.77082918618, 333.657345044], [5.389, 2.94076732149, 9.4011688612], [4.757, 5.37129102802, 61.2882177486], [5.0, 3.43988321744, 518.6452648307], [5.664, 3.30309284254, 0.6543913058], [5.53, 0.45092393824, 162.0933701068], [5.746, 3.45964923866, 55.1378785943], [5.666, 1.23578675332, 328.3525936572], [5.071, 5.42033080481, 977.4867846211], [5.719, 0.66718965817, 92.0470739547], [4.994, 1.29267872727, 983.1158589136], [5.57, 2.36255927193, 6.9010986797], [5.189, 2.40682220291, 58.319272332], [5.502, 0.13301359232, 149.6750717192], [4.706, 1.85473330365, 119.5069163441], [4.305, 4.18171934306, 90.8232336773], [5.953, 1.73036741041, 152.7445908723], [5.607, 5.53187692339, 1087.6931058405], [5.591, 5.75072223569, 358.9301393095], [4.441, 0.97726075887, 4.192785694], [4.608, 3.31800103668, 89.7594520943], [4.677, 5.01422713233, 43.1289704839], [4.034, 1.08242564328, 75.5323580927], [5.626, 1.10270225604, 66.9172920411], [4.058, 1.9401213605, 17.2654753874], [4.77, 2.24207019076, 986.0848043302], [5.207, 1.3660042891, 767.3690829208], [4.94, 0.13733547633, 0.8513332619], [4.339, 5.33814728291, 152.0108776894], [3.917, 3.85320550575, 2.2876218604], [3.903, 5.87573410158, 16.4623262353], [4.655, 0.93665017107, 267.4737661858], [4.638, 5.42566923517, 16.04163511], [5.177, 3.40845690805, 1289.9465010146], [3.825, 0.5988810573, 210.3301500214], [5.048, 2.16732539242, 367.9701020033], [3.819, 1.70901925915, 5.6290742925], [5.004, 0.26759264038, 403.1341922245], [4.202, 5.12029089394, 19.0105805266], [4.472, 2.88978371811, 59.2824801785], [4.7, 4.17709035394, 130.4407420234], [4.487, 0.85521839581, 969.6224780949], [3.802, 4.59721371468, 25.8634950965], [4.024, 4.98868930941, 30.0562807905], [4.722, 6.16359211847, 173.6815870919], [4.732, 3.76697693308, 373.0142209592], [3.542, 0.76768843819, 114.1384744825], [3.37, 2.00021522907, 286.596221297], [3.626, 3.20240733896, 991.7138786227], [4.028, 0.46802022168, 387.2413149608], [3.442, 5.2095973335, 894.8408795276], [3.273, 5.46374958434, 192.6921676185], [3.291, 3.97847646998, 264.5048207692], [3.291, 1.62538722379, 681.5417840896], [3.198, 3.965808048, 146.3818033969], [4.016, 1.4065746484, 383.0967133766], [3.844, 3.60271287642, 0.590700831], [3.123, 4.50215520755, 1439.5096981492], [3.434, 5.18704419009, 97.4155158163], [3.123, 4.14198630214, 76.4785195967], [3.259, 1.65410614252, 214.7835681463], [3.557, 4.15769848885, 68.5618234438], [2.934, 2.95575531139, 120.9913890524], [2.914, 3.69930995976, 874.3940104025], [3.301, 2.14570582133, 253.5709950899], [3.362, 4.82277888708, 19.643719973], [3.218, 2.56428709831, 60.5545045657], [3.059, 3.57539890234, 117.9105690512], [3.073, 3.54739757836, 95.3885263868], [2.789, 0.65190913388, 42.5382696529], [3.235, 5.31608088666, 546.956440482], [3.657, 5.89905956226, 16.1535096946], [3.549, 2.76314903735, 82.4858463991], [3.627, 4.68663059919, 593.426863398], [3.306, 1.57486085317, 312.4597163935], [3.602, 2.51921910142, 22.8945496799], [3.431, 4.95532928836, 49.7212526229], [2.675, 2.41314606353, 29.2049475286], [3.101, 1.42849885249, 17.6379824029], [3.399, 3.02815712113, 88.7962442478], [3.379, 2.65894323745, 771.3012361839], [2.547, 6.10642153361, 455.8725743738], [2.967, 0.31461418738, 150.5264049811], [2.681, 1.16839594153, 477.8039162072], [3.343, 3.09880618811, 552.5855147745], [2.678, 1.42841144096, 1.1119656928], [2.54, 1.94053883528, 6.4804075544], [2.491, 2.97226347939, 453.9461586808], [2.744, 1.93313970916, 73.1852512744], [2.935, 4.5939410628, 167.0893049529], [3.007, 1.38745560615, 365.0011565867], [3.053, 1.91792962252, 561.1835344836], [2.496, 5.45540866674, 66.1835788582], [2.622, 1.46324659292, 33.1371007917], [3.203, 4.01683757076, 555.5544601911], [2.317, 1.13727677715, 43.2408450685], [2.341, 5.87635018071, 228.276948965], [2.841, 3.60234459541, 42.5864537627], [2.858, 1.53714262537, 353.301065017], [2.484, 3.85791009894, 104.0077979553], [2.903, 5.21967656512, 73.4090004436], [2.76, 1.21343315367, 32.2433289144], [2.269, 3.31411391807, 4.1446015842], [2.241, 2.65636547591, 70.1157321213], [2.246, 4.08175081363, 123.5396433437], [2.583, 2.38305971478, 100.6450936638], [2.761, 5.71758409791, 43.2890291783], [2.827, 6.16734582851, 101.8689339412], [2.838, 0.5488849549, 20.4950532349], [2.145, 4.04195315408, 47.061123747], [2.81, 1.90169260186, 273.1028404783], [2.922, 2.79808700183, 418.2608035978], [2.07, 5.5040271829, 47.6942631934], [2.071, 2.0197357306, 316.3918696566], [2.52, 3.12740527423, 905.8865797915], [2.17, 4.4619656005, 2.7083129857], [2.399, 3.78849518316, 75.5847477194], [2.746, 4.82558024832, 6.8529145699], [2.717, 2.33108458294, 404.6186649328], [2.416, 4.11932546205, 332.8060117821], [1.974, 5.79881978458, 11.1575748485], [1.967, 5.43918682709, 199.2844497575], [2.282, 2.79530897096, 22.633917249], [1.91, 0.27727117649, 69.1525242748], [2.471, 3.51033894778, 8.5980197091], [1.904, 3.45282024423, 472.1748419147], [2.606, 0.43601023323, 439.782755154], [2.663, 5.43112910549, 3265.8308281325], [2.058, 1.69362390174, 65.8747623175], [2.258, 5.32927779367, 908.3342603463], [1.873, 5.5539980591, 175.1660598002], [2.222, 0.96973865202, 39.0962434843], [2.121, 2.00302088316, 106.0135355254], [2.01, 1.49945418027, 29.226199388], [2.222, 4.36573603431, 468.2426886516], [2.055, 0.05798973044, 205.2223405907], [2.086, 0.44287700052, 10.2949407385], [1.77, 4.3204880583, 0.457574387], [2.112, 5.78682409103, 486.4019359163], [1.909, 0.82888506421, 254.9435932136], [1.973, 6.05826379648, 78.4049352897], [1.908, 5.55892482384, 15.4991183888], [1.888, 6.20874408008, 198.321241911], [2.092, 2.55561831566, 49.5088043018], [1.775, 6.17741514589, 258.8757464767], [2.146, 1.4050811881, 526.722019678], [1.8, 0.04238718337, 334.2904844904], [1.738, 1.99152421966, 77.0692204277], [1.641, 3.36410541913, 118.0224436358], [2.084, 5.21275540105, 134.0640787458], [1.861, 2.97480744198, 178.7893965226], [1.75, 2.01731567093, 142.6620984549], [1.6, 1.60963172329, 40.1600250673], [1.668, 1.53361997245, 0.8300814025], [1.769, 4.72689497119, 32.7164096664], [1.782, 2.60469159465, 166.828672522], [1.765, 5.57583636983, 522.5774180938], [1.877, 1.09044005603, 274.0660483248], [1.544, 1.9179841914, 303.8616966844], [1.532, 3.44973397383, 124.5028511902], [1.658, 5.23946791059, 233.9060232575], [1.743, 2.32369273283, 290.2195580194], [1.528, 0.62020771152, 1033.3583763983], [1.522, 6.11272567668, 165.6048322446], [1.496, 2.02190170195, 150.0844619964], [1.49, 3.30997217921, 820.0592809603], [1.398, 3.41567259878, 4.9959348461], [1.886, 6.25585539882, 162.8965192589], [1.388, 0.62745508416, 448.6895914038], [1.918, 0.91483173263, 1819.6374661092], [1.682, 2.11545135265, 189.7232222019], [1.711, 2.55731536599, 1108.1399749656], [1.598, 0.89607036108, 115.8835796217], [1.477, 0.22838214106, 370.9390474199], [1.727, 1.54005322759, 401.6497195162], [1.432, 3.73381952953, 8.9068362498], [1.338, 0.19338311739, 81.8951455681], [1.618, 6.02595306259, 31.2319369581], [1.452, 0.11827434627, 72.7758609972], [1.626, 4.26332651029, 369.4545747116], [1.284, 3.18389639039, 362.8622925726], [1.755, 5.57436830525, 344.9636777388], [1.451, 4.4261538175, 189.1807054807], [1.294, 2.77775613125, 63.6240237188], [1.712, 2.16785817753, 536.8045120954], [1.266, 2.78408709208, 55.7710180407], [1.7, 2.49908604932, 441.2672278623], [1.645, 2.41257585783, 10.0824924174], [1.666, 5.00664377609, 79.5169009825], [1.674, 0.00394784675, 491.5579294568], [1.334, 5.62972572008, 129.9194771616], [1.328, 0.2560613584, 114.9416236346], [1.176, 1.63208422172, 84.1827674285], [1.177, 4.10449248614, 103.3534066495], [1.384, 5.7300452987, 89.338760969], [1.287, 0.99537181009, 14.6690369863], [1.171, 5.98078310685, 57.1436161644], [1.126, 3.39586759408, 375.3924655448], [1.406, 5.18477940039, 113.8778420516], [1.397, 1.49751443233, 14.2270940016], [1.206, 3.60301196272, 480.7728616238], [1.113, 4.80418427391, 9.449352971], [1.434, 1.57158177893, 419.7452763061], [1.473, 1.03881736383, 1215.1649024473], [1.311, 2.99704179684, 458.8415197904], [1.453, 6.10676427884, 64.6991061499], [1.07, 3.16542344402, 54.3347294422], [1.389, 2.78512263875, 26.0235537909], [1.203, 0.20627563214, 0.5694489716], [1.343, 5.58004577468, 95.2284676924], [1.062, 2.40616687148, 154.979823106], [1.399, 1.66776602336, 240.3864308119], [1.036, 5.53891715915, 403.0223176399], [1.269, 2.3768452729, 37.8724032069], [1.197, 4.87553746725, 1044.4040766622], [1.009, 2.7461946296, 80.4106728598], [1.33, 0.99603813295, 483.2205421786], [1.348, 0.58829539202, 476.4313180835], [0.989, 3.31666847329, 18.9100067901], [1.054, 2.85972567059, 616.3214130779], [1.276, 4.72938141859, 691.1030116452], [1.219, 3.6290968922, 106.2741679563], [1.269, 1.53301050628, 280.9671470045], [0.968, 2.73688433893, 218.9281697305], [1.33, 5.69234088687, 694.0719570618], [1.121, 2.8054243979, 148.5999892881], [0.98, 6.04026702553, 5.4690155981], [1.235, 0.61136787453, 237.6781178262], [1.161, 5.3220902482, 369.0820676961], [0.944, 1.14261861393, 384.0599212231], [1.017, 2.49896409345, 147.1155165798], [1.082, 2.46236323548, 326.8681209489], [1.037, 5.92126063748, 4.8259251404], [1.232, 5.83725190224, 63.847772888], [0.914, 0.36627060914, 10.9338256793], [1.165, 5.32140830393, 308.3151148093], [0.952, 4.78982033367, 93.9040536785], [0.993, 3.39918521663, 10.785067833], [1.206, 3.6453050053, 699.7010313543], [0.893, 2.97140509591, 248.4631856592], [0.883, 2.85605198817, 15.1903018481], [0.875, 3.4392570928, 3.0808200012], [1.103, 4.80576195766, 6133.5126528568], [1.178, 6.01576659565, 377.1588225434], [0.974, 2.51206761828, 121.8427223143], [0.865, 5.68958102479, 141.6988906084], [0.974, 3.15729174941, 215.4379594521], [0.847, 0.84854843713, 2043.9822618111], [0.961, 0.22181374419, 0.9150237367], [1.167, 2.37544946421, 33.9402499438], [1.013, 3.43778868786, 36.9091953604], [0.838, 1.63355479706, 2.3358059702], [1.113, 2.5098969497, 405.9912630565], [0.987, 1.14030030863, 82.2039621088], [1.06, 1.70915765427, 438.2982824457], [0.829, 2.97491446672, 62.7726904569], [0.991, 4.44869793177, 406.1031376411], [0.952, 6.13897716036, 184.9879197867], [1.033, 4.19932839584, 141.4864422873], [1.029, 5.13205530996, 157.2674449664], [0.805, 3.11000318272, 93.7921790939], [0.865, 4.44578048207, 295.1942410061], [0.921, 4.88190545687, 12.0089081104], [0.949, 5.99910796869, 606.7601855223], [0.991, 1.68012021428, 40.5807161926], [0.854, 0.37823682862, 217.2312487011], [0.883, 2.3622438514, 3.7720945687], [1.016, 3.90745585959, 194.2885149114], [0.807, 5.93051451738, 302.0953396858], [0.879, 0.52695940866, 1057.8974574809], [1.009, 1.19621149495, 490.0734567485], [0.801, 4.96724351781, 661.0949149645], [0.843, 0.97496000705, 73.88782669], [1.028, 2.65189503651, 477.9157907918], [0.846, 3.3634373396, 40.8413486235], [0.772, 4.93551925711, 425.1137181677], [0.781, 0.59382881638, 97.6761482472], [0.77, 4.25621058806, 488.8496164711], [0.935, 1.24971148781, 624.919432787], [0.984, 4.44298060183, 171.6545976624], [0.806, 0.09410536829, 440.6822725257], [0.769, 4.09296452529, 140.6563608848], [0.802, 0.78515729603, 11.848849416], [1.007, 4.06909438635, 76.154196691], [0.935, 0.03808890956, 156.1554792736], [0.712, 5.35549696452, 610.6923387854], [0.911, 4.70177653335, 81.682697247], [0.926, 3.09765550633, 833.552661779], [0.812, 3.54377377085, 149.4031384402], [0.801, 5.48034970408, 21.9795259432], [0.9, 4.2173934702, 778.4147831847], [0.689, 2.56862945159, 109.3125493421], [0.685, 3.1996582898, 31.6526280834], [0.952, 4.8257997882, 1744.8558675419], [0.724, 2.16878848875, 1171.875873269], [0.897, 3.94746491183, 75.6753704446], [0.739, 5.45802693622, 252.6559713532], [0.821, 4.26046087515, 1246.6574718363], [0.663, 5.83767831921, 86.6304479833], [0.664, 1.72432848951, 216.4804891757], [0.721, 3.98089320988, 902.7051860538], [0.663, 4.98388191647, 958.576777831], [0.75, 2.66119349235, 363.5166838784], [0.828, 3.62849315181, 14.8177948326], [0.663, 3.23521229496, 207.8824694666], [0.681, 3.29667467046, 25.0603459444], [0.887, 4.81199147907, 155.5010879678], [0.646, 2.65129054432, 685.4739373527], [0.808, 5.68764955594, 280.003939158], [0.619, 1.32296886424, 193.655375465], [0.621, 2.57837200005, 703.6331846174], [0.854, 3.63173686962, 411.620337349], [0.728, 1.05845783695, 916.9322800554], [0.733, 0.75817076935, 44.0921783304], [0.629, 1.52747752455, 397.3932433474], [0.599, 5.30671888409, 180.1619946463], [0.615, 5.68908944293, 25.2727942655], [0.709, 0.64922689354, 14.5571624017], [0.729, 4.79389069212, 479.4002635001], [0.667, 1.98320895029, 37.611770776], [0.586, 1.51157853976, 668.2084619653], [0.639, 1.69085181319, 262.4778313397], [0.616, 4.62035066985, 12.2695405413], [0.687, 2.24368916079, 228.7982138268], [0.599, 2.08317681783, 149.3025647037], [0.597, 3.14660293947, 137.5542890242], [0.581, 2.69049614736, 823.9914342234], [0.709, 4.38514100216, 184.0941479094], [0.671, 3.46925958949, 105.380396079], [0.619, 2.91325544152, 236.8749686741], [0.558, 2.9617719488, 34.2008823747], [0.648, 5.56457931302, 140.9651774255], [0.581, 0.55427680962, 331.2096644892], [0.585, 0.15548306049, 232.4215505492], [0.548, 3.57525860446, 497.4476361802], [0.574, 5.60908001848, 118.8737768977], [0.702, 1.74156189506, 149.0419322728], [0.543, 0.49890445043, 133.1008708993], [0.716, 3.04149734724, 131.9252147317], [0.544, 6.22369103738, 149.6113812444], [0.539, 0.74276113752, 911.3032057629], [0.614, 5.83710659138, 181.0557665236], [0.601, 0.30768922616, 407.5876103494], [0.635, 4.03476459045, 136.0698163159], [0.526, 5.42874995984, 450.9772132642], [0.547, 3.07676037032, 204.7010757289], [0.622, 3.08666523105, 268.4369740323], [0.537, 4.25467814241, 217.4436970222], [0.566, 4.84686444604, 842.1506814881], [0.636, 2.57425168783, 621.7380390493], [0.623, 5.84341335807, 52.8020726241], [0.544, 3.629830065, 149.5150130248], [0.578, 0.34796271917, 139.4807047172], [0.537, 5.99181083831, 246.9787129509], [0.674, 2.57972741298, 602.9880909536], [0.539, 6.1966296161, 696.5196376166], [0.516, 2.19916575703, 458.090760265], [0.632, 5.2665855364, 67.0773507355], [0.581, 0.05320320337, 95.931043108], [0.504, 6.24600928623, 149.723255829], [0.638, 6.23121553223, 10063.7223490764], [0.528, 0.20662780149, 310.1720945331], [0.537, 2.96207822442, 73.1370671646], [0.508, 5.29969144068, 335.7749571987], [0.487, 2.83772541949, 143.9341228421], [0.537, 3.36808372143, 252.0865223816], [0.632, 5.88494938125, 920.8644333185], [0.523, 6.13183488285, 1589.0728952838], [0.579, 0.04597861846, 563.6312150384], [0.613, 0.34938781762, 343.4792050305], [0.495, 2.8921249981, 61.448276443], [0.623, 0.71740350315, 513.079881013], [0.498, 2.53375871592, 41.7563723602], [0.564, 2.01612524784, 449.2802922348], [0.48, 0.10535023009, 69.6737891366], [0.494, 3.25187012728, 428.0826635843], [0.536, 5.81149025999, 282.6640680339], [0.468, 0.89483830828, 541.5398145106], [0.533, 2.44239677121, 393.4610900843], [0.589, 6.24067076234, 29.7956483596], [0.465, 0.2500674371, 57.255490749], [0.622, 3.89339038121, 416.7763308895], [0.519, 2.72375973888, 469.1364605289], [0.498, 1.76422801185, 380.3884003909], [0.596, 0.83642843095, 98.3574718034], [0.459, 0.39052216206, 197.7999770492], [0.574, 2.86366933069, 170.7608257851], [0.518, 3.38058345605, 535.9107402181], [0.564, 1.20395155832, 832.5894539325], [0.556, 4.39974034374, 196.6243208816], [0.537, 3.9363706494, 460.5384408198], [0.482, 2.4156214883, 827.9235874865], [0.578, 2.39644032176, 1670.0742689746], [0.475, 4.19223519775, 271.4059194489], [0.452, 3.9914625148, 135.336103133], [0.514, 6.11377193423, 1894.4190646765], [0.531, 3.45607724228, 450.4559484024], [0.492, 5.87591888758, 170.1701249541], [0.588, 2.66953705406, 310.9752436852], [0.564, 1.0449111737, 446.3113468182], [0.44, 5.85084571537, 224.2329211173], [0.441, 2.19799439287, 119.3950417595], [0.549, 6.05651523611, 76.3779458602], [0.573, 2.2989852675, 122.4758617607], [0.473, 4.61187869812, 291.262087743], [0.553, 4.90464199013, 463.5073862364], [0.599, 1.48666209087, 149.8238295655], [0.499, 3.72896978991, 853.196381752], [0.44, 5.05024690419, 79.4474650133], [0.558, 0.42332722744, 283.6272758804], [0.458, 4.49655973916, 754.8389099486], [0.449, 1.32861330901, 308.6876218248], [0.565, 0.45628024105, 241.8709035202], [0.51, 3.70202346104, 452.4616859725], [0.404, 0.1233582124, 1097.0942747017], [0.409, 4.02092464698, 735.8765135318], [0.464, 3.82915608692, 1094.5460204104], [0.439, 2.72266354653, 376.1956146969], [0.478, 0.23380952322, 1182.9215735329], [0.412, 1.21971515436, 419.4846438752], [0.546, 0.22296640745, 829.6205085159], [0.51, 2.69499052512, 412.5835451955], [0.409, 2.51935747849, 409.0720830577], [0.451, 0.56137272347, 758.7710632117], [0.399, 0.8603731533, 337.8019466282], [0.393, 0.402024632, 107.4980082337], [0.494, 5.02745190154, 619.2903584945], [0.404, 0.08539758465, 18.9623964168], [0.504, 4.18251931021, 449.4927405559], [0.406, 3.80082989682, 34.5309507748], [0.545, 2.80919248176, 514.5643537213], [0.39, 1.65941826256, 447.2051186955], [0.448, 2.81540452771, 400.1652468079], [0.405, 4.86073222353, 1404.0849754971], [0.476, 1.61050626902, 54.2865453324], [0.406, 1.29798079034, 226.7924762567], [0.526, 5.35780726572, 838.218528225], [0.403, 2.75405589772, 285.1117485887], [0.381, 4.97702366598, 309.2783226558], [0.448, 1.37926537411, 745.277682393], [0.419, 0.90546724862, 451.7279727896], [0.45, 1.92391706975, 474.9468453752], [0.474, 5.54351717465, 494.2662424425], [0.46, 5.09575399931, 289.5651667136], [0.455, 3.1475508733, 168.5737776612], [0.372, 4.87645271422, 116.5379709275], [0.479, 1.08512503555, 154.2984995498], [0.374, 0.16389070181, 1190.7858800591], [0.422, 3.51871257208, 706.8145783551], [0.354, 4.06405413226, 124.2904028691], [0.494, 4.57924296149, 167.7224443993], [0.357, 5.78050145791, 1265.5674786264], [0.402, 2.6765270326, 464.4705940829], [0.37, 2.21677703856, 232.0490435337], [0.462, 4.1042430527, 27.7204748203], [0.364, 3.0751873248, 442.639825986], [0.403, 1.69214233165, 90.2807169561], [0.348, 1.16647947937, 357.4456666012], [0.443, 1.32306861852, 298.2326223919], [0.386, 4.34980428548, 227.5261894396], [0.337, 5.92030047826, 445.3481389717], [0.356, 2.3882420066, 511.5954083047], [0.357, 3.19265737844, 21.1976286505], [0.406, 3.72223708907, 3116.2676309979], [0.341, 3.05116722794, 15.7810026791], [0.379, 4.72472516443, 30.5987975117], [0.4, 0.71868453904, 836.5216071956], [0.37, 0.17259001853, 6531.661656265], [0.456, 0.83408547295, 674.8007441043], [0.376, 5.91068811321, 1617.3840709351], [0.392, 1.90856045571, 25863.55834587229], [0.333, 4.77074940789, 76.7873361374], [0.332, 0.8569940272, 749.2098356561], [0.321, 3.88221470645, 38.6061163898], [0.321, 2.59404134515, 1300.9922012785], [0.438, 2.60178805278, 224.4566702865], [0.371, 3.73501205989, 328.2407190726], [0.357, 0.03656571669, 148.8124376092], [0.389, 3.06990362181, 1012.9115072732], [0.392, 3.14428599675, 125.1841747464], [0.326, 2.23565995627, 89.5993933999], [0.314, 4.56810921721, 1681.1199692385], [0.333, 4.37613329736, 147.9668498417], [0.326, 4.15448016748, 21.1494445407], [0.371, 4.09066371754, 239.1625905345], [0.372, 1.12230345314, 321.7603115182], [0.305, 6.12924444546, 19.9737883731], [0.407, 3.65906570714, 679.2541622292], [0.406, 3.58469900333, 26013.1215430069], [0.31, 3.92339533494, 229.0800981171], [0.321, 1.35118535306, 172.4577468145], [0.332, 3.54513021513, 288.7350853111], [0.312, 2.87878773413, 806.725958836], [0.372, 1.99953045718, 192.8040422031], [0.302, 0.01867543539, 501.3797894433], [0.299, 3.9646896095, 20277.0078952874], [0.308, 2.66235795286, 248.7238180901], [0.298, 3.52867456736, 21.4582610814], [0.37, 3.51061046963, 91.4563731237], [0.297, 0.79872983355, 742.9900605326], [0.414, 4.81163687199, 589.4947101349], [0.302, 5.2607933805, 27.5604161259], [0.314, 3.14643487607, 361.3778198643], [0.356, 4.63707521448, 442.7517005706], [0.357, 3.44793069844, 44.6134431922], [0.37, 4.25032151516, 304.2342036999], [0.366, 5.43115395433, 625.9945152181], [0.365, 0.3045449841, 6283.0758499914], [0.322, 2.32892248876, 229.4526051326], [0.369, 3.28573365074, 104.5290628171], [0.327, 2.98588869318, 348.8476468921], [0.315, 3.66842071994, 230.9370778409], [0.356, 0.90433599977, 29.7474642498], [0.384, 0.91820739126, 549.7284439425], [0.317, 3.86462587284, 639.897286314], [0.333, 4.95319798125, 881.5075574033], [0.285, 4.09883967296, 904.1896587621], [0.338, 5.65177488491, 195.7729876197], [0.365, 0.57418860616, 285.6330134505], [0.363, 0.98999016221, 839.7030009333], [0.33, 2.26308969695, 49.1787359017], [0.335, 2.25619157817, 272.5815756165], [0.376, 5.87496858487, 268.9582388941], [0.362, 4.94491380965, 572.2292347475], [0.32, 5.58342880588, 459.3627846522], [0.299, 2.86286938521, 883.7951792637], [0.286, 2.49409963193, 156.043604689], [0.272, 3.62976505444, 754.0357607965], [0.349, 2.34615857088, 6069.7767545534], [0.279, 4.04872155075, 180.7951340927], [0.328, 1.21350330743, 148.1905990109], [0.315, 0.74270298817, 320.2758388099], [0.324, 5.54296698387, 1507.1777497157], [0.266, 4.36134021576, 1310.3933701397], [0.262, 5.84934968714, 450.1740641121], [0.28, 5.05848320657, 102.523325247], [0.347, 4.7006863962, 282.1428031721], [0.342, 5.47365149093, 163.5778428151], [0.364, 3.29301824378, 378.9039276826], [0.33, 4.63426494882, 341.9947323222], [0.259, 2.43682741156, 170.0100662597], [0.336, 3.79029047358, 9999.986450773], [0.284, 2.52583672467, 266.1011680621], [0.281, 3.93593342516, 194.1766403268], [0.297, 0.18595848541, 491.8185618877], [0.29, 4.49575150721, 151.850818995], [0.284, 1.59495665161, 336.8387387817], [0.255, 5.85817353877, 229.340730548], [0.26, 5.92834225312, 455.0694252217], [0.274, 0.53977064975, 380.2396425446], [0.259, 3.15728797958, 454.7493078329], [0.303, 0.17851964142, 384.5811860849], [0.285, 1.29732672572, 25.1297819136], [0.273, 4.18776699292, 177.3049238143], [0.326, 1.68159391466, 161.7208630913], [0.321, 2.36931686576, 2274.5468326365], [0.241, 3.57660492473, 150.31395666], [0.273, 3.787800994, 380.0158933754], [0.265, 3.02540120552, 454.7974919427], [0.265, 6.06087280189, 455.0212411119], [0.279, 3.82392760479, 31.5407534988], [0.273, 2.64820862667, 838.0060799039], [0.238, 5.17487170793, 263.0203480609], [0.299, 3.94906046599, 531.978586955], [0.317, 2.28289083599, 44.070926471], [0.25, 1.35950829789, 304.1223291153], [0.312, 2.73327875294, 442.3791935551], [0.314, 3.86400459047, 734.4557312983], [0.251, 0.15148137746, 221.1634019642], [0.272, 5.71864670101, 164.5410506616], [0.305, 4.96642198943, 1140.38330388], [0.282, 5.46073788901, 550.1378342197], [0.273, 5.68721459468, 92.4195809702], [0.256, 0.8878797087, 418.5214360287], [0.229, 5.02021405557, 144.8973306886], [0.231, 5.7023675287, 132.8884225782], [0.218, 2.0562373618, 303.0585475323], [0.3, 1.76109447754, 371.5297482509], [0.216, 2.97122807313, 176.6505325085], [0.224, 3.12798198868, 188.9200730498], [0.212, 1.30757526083, 74.1484591209], [0.238, 4.65119406609, 385.7568422525], [0.216, 0.0708691012, 893.3564068193], [0.262, 5.78959872639, 635.9651330509], [0.25, 4.47327859711, 551.1010420662], [0.222, 1.64692618955, 76.42612997], [0.254, 2.61838408005, 525.2375469697], [0.284, 4.13290731223, 544.5087599272], [0.262, 2.82476092056, 971.1069508032], [0.266, 4.1246725861, 375.6743498351], [0.212, 3.61675003296, 75.4147380137], [0.253, 3.14224867483, 270.1820791715], [0.25, 4.32883971376, 346.4481504471], [0.273, 1.95676918609, 402.2191684878], [0.259, 1.96371242284, 968.1380053866], [0.238, 1.29663338057, 421.1815649046], [0.243, 5.94961177434, 117.36805233], [0.241, 4.70849619029, 406.954470903], [0.216, 3.31232425021, 190.665178189], [0.201, 1.23733749784, 799.6124118352], [0.223, 0.98087204684, 627.3671133418], [0.226, 1.66139333004, 1366.2125722902], [0.205, 0.3383968395, 143.3434220111], [0.24, 0.71559872262, 525.7588118315], [0.223, 2.57722930616, 981.6313862053], [0.193, 4.48974066435, 172.1971143836], [0.221, 2.88670838151, 238.9019581036], [0.177, 3.87122035013, 389.6889955156], [0.175, 5.85737374379, 170.7126416753], [0.233, 0.63169996424, 980.6681783588], [0.225, 4.81504648561, 88.274979386], [0.21, 2.49819501106, 128.4350044533], [0.172, 0.91255921858, 210.8514148832], [0.176, 3.85133296117, 605.9570363702], [0.211, 1.72999855867, 10213.285546211], [0.17, 1.614053401, 1512.8068240082], [0.216, 1.54874566441, 1060.8664028975], [0.194, 6.07381783144, 520.129737539], [0.17, 2.58526747515, 1515.7757694248], [0.172, 1.45073604378, 995.6460318858], [0.16, 4.20015913513, 433.7117378768], [0.219, 1.63985385568, 630.3360587584], [0.219, 1.96273394194, 313.6835566709], [0.159, 3.62343846627, 73.9784494152], [0.206, 0.83764718449, 104.8378793578], [0.203, 0.68701289007, 1363.2436268736], [0.158, 0.81666479221, 987.5692770385], [0.172, 2.97938676702, 327.4375699205], [0.147, 2.15517092627, 73.2489417492], [0.156, 1.296434692, 216.2680408546], [0.153, 3.77492020946, 768.8535556291], [0.147, 4.74903152642, 73.3453099688], [0.198, 2.80749830888, 225.3080035484], [0.179, 0.35410767087, 421.2297490144], [0.204, 3.47423038287, 564.8550553158], [0.172, 2.8842064282, 233.533516242], [0.195, 3.09114364733, 294.3004691288], [0.181, 4.75684139861, 71.1582618449], [0.16, 3.16134209902, 70.0462961521], [0.155, 2.07144269719, 91.2439248026], [0.154, 3.37462128317, 138.4056222861], [0.192, 6.19629054455, 312.1990839626], [0.162, 0.60896273267, 73.0364934281], [0.172, 2.01712700688, 973.554631358], [0.145, 1.72582731815, 302.3772239761], [0.17, 2.97437423989, 3191.0492295652], [0.153, 0.11158566352, 138.6293714553], [0.164, 5.37129563471, 457.3570470821], [0.132, 3.15466226029, 523.4711899711], [0.137, 2.88313323946, 765.8846102125], [0.128, 1.75773421717, 77.7023598741], [0.173, 5.03552846066, 415.2918581812], [0.137, 4.77137510538, 73.4571845534], [0.163, 0.99316178485, 94.4253185403], [0.138, 4.68330115148, 517.1607921224], [0.133, 2.95376828791, 75.1541055828], [0.134, 1.35779558361, 249.9476583675], [0.168, 4.7316454297, 108.7218485111], [0.119, 1.48229220689, 237.4174853953], [0.134, 1.5227717792, 154.6710065653], [0.117, 5.4864227361, 437.6438911399], [0.131, 5.76525548944, 75.4359898731], [0.127, 2.3830922723, 208.8456773131], [0.115, 4.38951350436, 343.2185725996], [0.114, 4.48142283161, 224.8660605637], [0.117, 5.37802827323, 293.7097682978], [0.136, 2.80772094137, 374.4986936675]], [[7502543121.646, 0.0, 0.0], [154458.244, 5.24201658072, 74.7815985673], [24456.413, 1.71255705309, 1.4844727083], [9257.828, 0.42844639064, 11.0457002639], [8265.977, 1.5022003511, 63.7358983034], [7841.715, 1.31983607251, 149.5631971346], [3899.105, 0.46483574024, 3.9321532631], [2283.777, 4.17367533997, 76.2660712756], [1926.6, 0.53013080152, 2.9689454166], [1232.727, 1.58634458237, 70.8494453042], [791.206, 5.43641224143, 3.1813937377], [766.954, 1.99555409575, 73.297125859], [481.671, 2.98401996914, 85.8272988312], [449.798, 4.13826237508, 138.5174968707], [445.6, 3.72300400331, 224.3447957019], [426.554, 4.73126059388, 71.8126531507], [347.735, 2.45372261286, 9.5612275556], [353.752, 2.58324496886, 148.0787244263], [317.084, 5.57855232072, 52.6901980395], [179.92, 5.68367730922, 12.5301729722], [171.084, 3.00060075287, 78.7137518304], [205.585, 2.36263144251, 2.4476805548], [158.029, 2.90931969498, 0.9632078465], [189.068, 4.20242881378, 56.6223513026], [154.67, 5.59083925605, 4.4534181249], [183.762, 0.28371004654, 151.0476698429], [143.464, 2.59049246726, 62.2514255951], [151.984, 2.9421732689, 77.7505439839], [153.515, 4.65186885939, 35.1640902212], [121.452, 4.1483920492, 127.4717966068], [115.546, 3.73224603791, 65.2203710117], [102.022, 4.18754517993, 145.6310438715], [101.718, 6.03385875009, 0.1118745846], [88.202, 3.99035787994, 18.1592472647], [87.549, 6.15520787584, 202.2533951741], [80.53, 2.64124743934, 22.0914005278], [72.047, 6.04545933578, 70.3281804424], [68.57, 4.05071895264, 77.962992305], [59.173, 3.70413919082, 67.6680515665], [47.267, 3.54312460519, 351.8165923087], [42.534, 5.72357370899, 5.4166259714], [44.339, 5.90865821911, 7.1135470008], [35.605, 3.29197259183, 8.0767548473], [35.524, 3.32784616138, 71.6002048296], [36.116, 5.89964278801, 33.6796175129], [30.608, 5.46414592601, 160.6088973985], [31.454, 5.62015632303, 984.6003316219], [38.544, 4.91519003848, 222.8603229936], [34.996, 5.08034112149, 38.1330356378], [30.811, 5.49591403863, 59.8037450403], [28.947, 4.51867390414, 84.3428261229], [26.627, 5.54127301037, 131.4039498699], [29.866, 1.65980844667, 447.7958195265], [29.206, 1.14722640419, 462.0229135281], [25.753, 4.99362028417, 137.0330241624], [25.373, 5.73584678604, 380.12776796], [21.672, 2.80556379586, 69.3649725959], [26.605, 6.14640604128, 299.1263942692], [22.995, 2.24925345862, 111.4301614968], [19.246, 3.55645739672, 54.1746707478], [21.78, 0.93285892393, 213.299095438], [19.338, 1.86249384092, 108.4612160802], [16.153, 3.10208165842, 14.977853527], [13.126, 1.95385539499, 87.3117715395], [13.907, 1.541490458, 340.7708920448], [13.549, 4.3845512672, 5.9378908332], [13.102, 5.88301410143, 6.2197751235], [11.81, 0.32615567587, 35.4247226521], [10.98, 1.69230280951, 45.5766510387], [12.351, 0.32823896833, 51.2057253312], [10.906, 5.9706844479, 265.9892934775], [11.446, 3.37831545858, 72.3339180125], [12.013, 3.60395709253, 269.9214467406], [11.662, 1.74504271366, 79.2350166922], [13.777, 2.69028726334, 225.8292684102], [12.006, 5.34430562395, 152.5321425512], [9.866, 5.50316093605, 153.4953503977], [10.436, 4.16875643286, 24.3790223882], [10.632, 3.06875158069, 284.1485407422], [9.613, 0.49590148788, 209.3669421749], [9.283, 3.54479191952, 41.6444977756], [9.536, 5.60054956443, 82.8583534146], [9.74, 1.01087744586, 68.8437077341], [9.187, 4.49472579228, 20.6069278195], [10.159, 3.51765739489, 529.6909650946], [8.612, 3.88869873588, 60.7669528868], [10.03, 4.6479020458, 77.2292791221], [8.689, 1.96813580258, 195.1398481733], [8.37, 4.40914764204, 134.5853436076], [9.273, 3.932912279, 39.6175083461], [7.784, 5.35626068469, 75.7448064138], [7.724, 5.77176047568, 73.8183907208], [7.683, 4.44252070929, 14.0146456805], [8.355, 2.4442591043, 146.594251718], [7.954, 5.73093878181, 184.7272873558], [7.465, 2.18972405572, 145.1097790097], [6.43, 0.84582374839, 32.1951448046], [6.257, 2.17085130003, 74.8934731519], [7.911, 0.17275924476, 120.358249606], [7.036, 4.12047266896, 191.2076949102], [6.86, 2.13462553365, 116.4260963429], [5.191, 3.11155355454, 106.9767433719], [4.798, 2.25093144226, 46.2097904851], [4.566, 3.45427648666, 0.7507595254], [4.401, 3.94058045671, 6.592282139], [4.214, 5.17805765625, 144.1465711632], [4.409, 0.24427052932, 92.940845832], [4.866, 1.15344187054, 112.9146342051], [4.744, 5.18229292013, 81.0013736908], [4.332, 2.52429167546, 99.1606209555], [3.876, 2.78430217652, 565.1156877467], [3.801, 0.75133837939, 58.1068240109], [4.146, 5.84943984597, 221.3758502853], [3.885, 4.95626104286, 125.9873238985], [3.815, 3.2300440193, 479.2883889155], [3.679, 5.28098232097, 66.9172920411], [3.479, 2.95514470947, 74.6697239827], [3.514, 4.90090391308, 28.3111756513], [4.515, 4.15474629145, 344.7030453079], [4.036, 2.28903172191, 109.9456887885], [4.266, 2.68534591099, 7.8643065262], [3.428, 0.02846652682, 140.001969579], [3.644, 5.3200209381, 408.4389436113], [3.252, 1.44975192429, 128.9562693151], [4.143, 1.89070487241, 277.0349937414], [3.177, 0.04197149544, 220.4126424388], [3.901, 6.25926496244, 0.8937718773], [3.787, 0.02516903921, 152.7445908723], [3.2, 0.52009458683, 2.2876218604], [2.995, 1.94615440691, 80.1982245387], [4.029, 5.24603808726, 96.8729990951], [3.302, 4.8103355106, 422.6660376129], [3.189, 6.261566034, 456.3938392356], [2.804, 1.35626949052, 404.5067903482], [2.97, 0.54327361056, 159.1244246902], [3.465, 5.88337990735, 16.6747745564], [3.518, 4.9964940413, 36.6485629295], [3.081, 2.82772472086, 453.424893819], [3.32, 1.56223495893, 23.5758732361], [2.573, 6.19617997586, 135.5485514541], [2.547, 5.19937103778, 173.9422195228], [2.534, 1.85452635674, 490.3340891794], [3.106, 6.07067928601, 142.4496501338], [3.302, 1.02846689671, 297.6419215609], [2.429, 1.33640100979, 211.8146227297], [2.792, 3.89897022917, 358.9301393095], [2.947, 5.31528985588, 55.1378785943], [2.449, 3.44007536754, 206.1855484372], [2.407, 4.38551271701, 60.5545045657], [2.425, 2.22643225523, 66.70484372], [2.295, 2.31690029267, 31.492569389], [2.225, 0.41365126245, 81.3738807063], [2.196, 0.76281798713, 17.5261078183], [2.301, 3.60815987923, 288.0806940053], [2.557, 0.73679737974, 200.7689224658], [2.158, 2.61924330277, 13.3333221243], [2.048, 6.27204714771, 98.8999885246], [2.054, 3.61072687338, 333.657345044], [2.19, 2.496967297, 76.4785195967], [2.092, 1.66496421654, 235.3904959658], [2.206, 2.35938756479, 347.8844390456], [2.469, 4.70656858928, 186.2117600641], [2.226, 5.9732773815, 1514.2912967165], [1.851, 2.19455296942, 203.7378678824], [1.865, 4.9820720428, 5.1078094307], [2.171, 5.49034081907, 373.0142209592], [1.999, 5.80509154216, 146.3818033969], [1.903, 4.32950489567, 49.5088043018], [1.732, 3.94794012202, 24.1183899573], [1.747, 2.46883637489, 55.6591434561], [1.833, 3.3511004846, 143.6253063014], [1.686, 1.28621563322, 103.0927742186], [1.72, 2.35857527806, 1.6445314027], [1.641, 2.99507314472, 391.1734682239], [1.61, 0.97420709262, 977.4867846211], [1.696, 4.98332661473, 387.2413149608], [1.527, 3.15107379811, 7.4223635415], [1.57, 1.61119571428, 991.7138786227], [1.497, 2.89637638984, 19.643719973], [1.507, 3.32822127349, 909.8187330546], [1.375, 5.75263837916, 19.1224551112], [1.407, 2.20244941425, 67.3592350258], [1.364, 4.40006421418, 27.0873353739], [1.357, 4.33780029649, 70.1157321213], [1.311, 4.62202930578, 81.8951455681], [1.307, 2.79964247834, 25.6028626656], [1.312, 3.7362325266, 628.8515860501], [1.286, 3.96557527092, 61.2882177486], [1.723, 4.56068809303, 305.3461693927], [1.313, 4.90611014973, 617.8058857862], [1.508, 6.25017976193, 604.4725636619], [1.235, 5.93779486368, 415.5524906121], [1.278, 3.21119872139, 92.0470739547], [1.357, 0.72647086107, 546.956440482], [1.552, 5.05296247763, 10.2949407385], [1.23, 1.52077038294, 157.6399519819], [1.21, 2.63049415027, 426.598190876], [1.206, 4.83219370572, 100.3844612329], [1.234, 4.46203104116, 162.0933701068], [1.174, 5.3235619109, 17.2654753874], [1.431, 6.18138614295, 14.2270940016], [1.244, 0.16929250603, 29.2049475286], [1.18, 4.09719023908, 443.8636662634], [1.18, 3.31438239649, 44.7253177768], [1.259, 1.88793196065, 0.6543913058], [1.263, 3.49967730885, 230.5645708254], [1.168, 2.04071854201, 30.7106720963], [1.523, 2.28101186489, 373.9079928365], [1.429, 2.05075136274, 181.7583419392], [1.065, 2.95960854361, 241.6102710893], [1.253, 0.23639539817, 561.1835344836], [1.255, 1.2581992576, 155.7829722581], [1.044, 2.89293032709, 543.0242872189], [1.062, 3.26314901318, 28.5718080822], [1.124, 1.06535506684, 88.1149206916], [1.186, 5.73445278027, 329.7251917809], [1.19, 2.82438170535, 41.1019810544], [1.067, 0.2710180619, 58.319272332], [1.017, 4.30527610005, 67.8804998876], [0.959, 5.20504598622, 42.5382696529], [0.984, 4.90934403664, 465.9550667912], [0.944, 0.66925769374, 88.7962442478], [1.017, 4.37095088461, 13.4933808187], [1.222, 5.13450955699, 300.6108669775], [0.989, 0.539379093, 80.7194894005], [0.89, 3.09802121989, 110.2063212194], [1.095, 1.7063757674, 43.1289704839], [0.992, 4.17968869928, 154.0166152595], [0.95, 0.09841899432, 273.1028404783], [0.87, 4.77500238443, 33.1371007917], [0.867, 4.22078052532, 20.4468691251], [0.83, 5.23785245773, 472.1748419147], [0.884, 4.34377463442, 105.4922706636], [0.812, 3.53258780148, 39.3568759152], [1.055, 1.52219418153, 227.3137411185], [0.963, 1.87806076896, 259.5088859231], [0.859, 0.57844232244, 152.0108776894], [0.861, 4.69213709412, 1059.3819301892], [1.084, 2.79612346618, 48.7580447764], [0.994, 2.87052008214, 454.9093665273], [0.831, 1.62068330602, 554.0699874828], [0.891, 2.8502603686, 32.2433289144], [0.876, 0.83921717739, 4.7353024152], [0.707, 6.16918394997, 3.6233367224], [0.787, 1.95585343912, 16.4623262353], [0.702, 5.4955704624, 558.0021407459], [0.817, 0.38724470336, 378.6432952517], [0.804, 2.25693582099, 16.04163511], [0.866, 1.80814575866, 258.8757464767], [0.651, 3.72120167607, 286.596221297], [0.672, 1.00052727778, 522.5774180938], [0.631, 4.14839739363, 141.6988906084], [0.748, 4.19441869839, 486.4019359163], [0.668, 0.77754011576, 120.9913890524], [0.619, 4.31040053492, 455.8725743738], [0.619, 4.77556598202, 453.9461586808], [0.647, 5.74952736928, 119.5069163441], [0.609, 0.24149609998, 117.9105690512], [0.63, 1.79018649942, 440.6822725257], [0.601, 1.41196883461, 218.9281697305], [0.719, 4.27398947015, 50.4025761791], [0.594, 3.92150462249, 25.2727942655], [0.71, 0.45768559438, 536.8045120954], [0.706, 6.15599144951, 258.0244132148], [0.617, 2.80636989892, 68.5618234438], [0.587, 5.47247350993, 767.3690829208], [0.69, 3.48978614301, 835.0371344873], [0.537, 4.06668446648, 450.9772132642], [0.511, 0.60155300709, 264.5048207692], [0.694, 1.18127476921, 129.9194771616], [0.584, 1.94104733057, 106.2741679563], [0.522, 5.9518061751, 518.6452648307], [0.507, 4.39658523394, 121.8427223143], [0.627, 2.24582628581, 218.4069048687], [0.485, 0.02058107411, 106.0135355254], [0.592, 2.06072766194, 296.1574488526], [0.587, 0.1855747086, 458.090760265], [0.483, 1.50333774574, 150.5264049811], [0.474, 4.99848521665, 458.8415197904], [0.566, 1.9443518903, 699.7010313543], [0.472, 1.865197202, 180.1619946463], [0.472, 0.07145793467, 216.4804891757], [0.571, 6.01195273302, 47.061123747], [0.46, 3.76890954025, 342.2553647531], [0.489, 2.96084966272, 385.7568422525], [0.458, 1.99730631732, 275.5505210331], [0.46, 5.75982407113, 89.7594520943], [0.549, 1.43219978325, 171.6545976624], [0.544, 0.04821904056, 114.3991069134], [0.45, 1.94933296558, 148.5999892881], [0.444, 2.94093732205, 692.5874843535], [0.442, 2.15938034999, 173.6815870919], [0.543, 2.61197342701, 451.7279727896], [0.465, 0.31777753866, 756.3233826569], [0.441, 2.82271922049, 32.7164096664], [0.538, 2.39420182072, 339.2864193365], [0.569, 0.84686482736, 260.9933586314], [0.572, 5.40379754526, 278.5194664497], [0.422, 4.61520857062, 40.1600250673], [0.451, 4.5091120102, 142.1408335931], [0.501, 0.18290112601, 331.3215390738], [0.468, 0.97688759019, 760.25553592], [0.443, 4.58896013561, 149.6750717192], [0.428, 1.02564850231, 469.1364605289], [0.5, 4.34235307579, 166.828672522], [0.412, 5.69502940499, 92.3077063856], [0.404, 5.18855270166, 22.633917249], [0.396, 3.98515136901, 31.2319369581], [0.421, 5.47567810199, 104.0077979553], [0.425, 3.50702044406, 180.2738692309], [0.415, 1.5229107152, 497.4476361802], [0.43, 2.39159932023, 39.0962434843], [0.401, 0.55271143649, 95.3885263868], [0.384, 2.48712922138, 210.3301500214], [0.422, 1.02056886848, 468.2426886516], [0.465, 5.72323435231, 183.2428146475], [0.383, 2.63486938783, 685.4739373527], [0.367, 5.39331524988, 874.3940104025], [0.461, 3.5796125479, 187.6962327724], [0.409, 4.21780704807, 181.0557665236], [0.44, 0.36380766054, 367.9701020033], [0.392, 5.44355925956, 26.0235537909], [0.431, 3.83885208954, 254.9435932136], [0.366, 2.92275490656, 291.262087743], [0.416, 2.54190330826, 255.0554677982], [0.348, 0.35176743482, 46.470422916], [0.413, 2.41518097006, 483.2205421786], [0.386, 4.76483292968, 268.4369740323], [0.344, 0.20350283971, 184.0941479094], [0.35, 1.24205287122, 97.4155158163], [0.361, 5.683933914, 353.301065017], [0.359, 2.62171903648, 162.8965192589], [0.381, 3.38777292581, 114.9416236346], [0.352, 2.76374792259, 295.1942410061], [0.34, 1.3466636056, 34.2008823747], [0.433, 1.90504858871, 123.5396433437], [0.389, 2.41268196916, 381.6122406683], [0.383, 3.20416581825, 79.4474650133], [0.369, 2.1518588972, 555.5544601911], [0.37, 2.19402183275, 562.6680071919], [0.327, 3.40081544565, 309.2783226558], [0.378, 5.75737470182, 916.9322800554], [0.318, 4.53066393124, 350.3321196004], [0.376, 1.74845257914, 545.4719677737], [0.346, 4.15815107375, 282.6640680339], [0.319, 4.38123849114, 154.979823106], [0.32, 0.81846631878, 610.6923387854], [0.327, 5.07873875355, 189.7232222019], [0.306, 1.71903179875, 394.3548619616], [0.329, 1.82999432252, 706.8145783551], [0.335, 4.78622577105, 109.3125493421], [0.31, 5.08120849869, 376.1956146969], [0.327, 1.87637598331, 207.8824694666], [0.323, 1.888454518, 192.6921676185], [0.284, 2.88222063053, 384.0599212231], [0.283, 4.63187254084, 332.1728723357], [0.294, 2.84554743359, 267.4737661858], [0.285, 0.97965330777, 113.8778420516], [0.319, 5.09582764612, 285.6330134505], [0.28, 0.67871105907, 312.4597163935], [0.3, 5.93285242876, 124.2904028691], [0.32, 4.86151247369, 448.6895914038], [0.31, 3.75000484412, 253.5709950899], [0.311, 5.5968659072, 271.4059194489], [0.316, 1.89686876211, 228.276948965], [0.269, 0.14585942744, 142.6620984549], [0.27, 2.12904548682, 778.4147831847], [0.267, 0.96560769114, 90.8232336773], [0.308, 1.38454900684, 375.3924655448], [0.298, 3.99595366039, 451.9404211107], [0.278, 3.38339026214, 346.3999663373], [0.287, 1.01918432834, 905.8865797915], [0.263, 0.16921968622, 124.5028511902], [0.283, 5.95865378023, 362.8622925726], [0.266, 3.07331582044, 193.655375465], [0.264, 5.47114459575, 133.1008708993], [0.288, 2.78232740152, 1812.5239191084], [0.361, 4.30140629884, 198.321241911], [0.257, 1.60206491208, 369.0820676961], [0.274, 2.88347680082, 233.9060232575], [0.267, 4.90554019072, 681.5417840896], [0.305, 1.55983861329, 49.7212526229], [0.253, 0.50457429429, 316.3918696566], [0.258, 5.81453094409, 630.3360587584], [0.28, 1.15452517706, 986.0848043302], [0.265, 4.93584097286, 831.1049812242], [0.246, 1.2518623362, 134.0640787458], [0.298, 5.75927878031, 902.7051860538], [0.24, 2.84888261768, 44.0921783304], [0.261, 2.20643594285, 73.0846775379], [0.321, 3.4686482782, 372.4235201282], [0.234, 6.06783988023, 147.1155165798], [0.262, 2.69623862046, 167.7224443993], [0.267, 4.05985113852, 75.3028634291], [0.24, 0.48471871511, 172.1971143836], [0.261, 4.64354183979, 535.3200393871], [0.244, 5.85987959874, 507.5995645668], [0.237, 4.79666486485, 377.1588225434], [0.224, 1.94589447357, 593.426863398], [0.226, 3.71637531808, 449.2802922348], [0.233, 5.98739382153, 219.891377577], [0.24, 2.71609791875, 227.5261894396], [0.221, 2.23218400256, 460.5384408198], [0.226, 2.74516124394, 446.3113468182], [0.221, 3.2033980767, 463.5073862364], [0.203, 5.04975483055, 457.8783119439], [0.191, 4.24841510229, 4.665866446], [0.169, 0.59358171769, 983.1158589136], [0.179, 4.12060524413, 310.1720945331], [0.187, 6.22165475247, 294.6729761443], [0.162, 1.30776665222, 248.7238180901], [0.219, 4.17413407057, 303.8616966844], [0.193, 1.64715944768, 91.4563731237], [0.17, 2.18067759964, 66.1835788582], [0.156, 4.92094728667, 68.1893164283], [0.145, 5.51404722738, 280.9671470045], [0.144, 5.81835834612, 75.5323580927], [0.153, 0.48549989656, 144.8973306886], [0.168, 5.81402201452, 149.45132255], [0.15, 4.66632209585, 306.830642101], [0.131, 1.01359934164, 175.1660598002], [0.174, 3.03279013213, 298.2326223919], [0.163, 1.97665571311, 221.1634019642], [0.144, 2.5905808501, 217.2312487011], [0.167, 2.7460416758, 69.1525242748], [0.129, 2.87574897902, 156.1554792736]], [[53033.277, 0.0, 0.0], [2357.636, 2.26014661705, 74.7815985673], [769.129, 4.52561041823, 11.0457002639], [551.533, 3.25814281023, 63.7358983034], [541.532, 2.27573907424, 3.9321532631], [529.473, 4.92348433826, 1.4844727083], [257.521, 3.69059216858, 3.1813937377], [238.835, 5.85806638405, 149.5631971346], [181.904, 6.21763603405, 70.8494453042], [49.401, 6.03101301723, 56.6223513026], [53.504, 1.44225240953, 76.2660712756], [38.222, 1.78467827781, 52.6901980395], [44.753, 3.90904910523, 2.4476805548], [44.53, 0.81152639478, 85.8272988312], [37.403, 4.46228598032, 2.9689454166], [33.029, 0.86388149962, 9.5612275556], [24.292, 2.10702559049, 18.1592472647], [29.423, 5.09818697708, 73.297125859], [22.135, 4.81730808582, 78.7137518304], [22.491, 5.99320728691, 138.5174968707], [17.226, 2.53537183199, 145.6310438715], [21.392, 2.39880709309, 77.962992305], [20.578, 2.16918786539, 224.3447957019], [16.777, 3.46631344086, 12.5301729722], [12.012, 0.01941361902, 22.0914005278], [10.466, 4.45556032593, 62.2514255951], [11.01, 0.0849627437, 127.4717966068], [8.668, 4.25550086984, 7.1135470008], [10.476, 5.16453084068, 71.6002048296], [7.16, 1.24903906391, 5.4166259714], [8.387, 5.50115930045, 67.6680515665], [6.087, 5.44611674384, 65.2203710117], [6.013, 4.51836836347, 151.0476698429], [5.718, 1.8293391534, 202.2533951741], [6.109, 3.36320161279, 447.7958195265], [6.003, 5.72500086735, 462.0229135281], [5.111, 3.52374555791, 59.8037450403], [5.155, 1.05810305746, 131.4039498699], [5.969, 5.61147374852, 148.0787244263], [5.065, 3.36477113418, 4.4534181249], [4.845, 1.20298837109, 71.8126531507], [3.979, 0.67629577193, 77.7505439839], [3.673, 1.76315074166, 351.8165923087], [3.149, 3.83590892865, 45.5766510387], [3.036, 3.32062892682, 160.6088973985], [3.033, 6.14532331482, 77.2292791221], [3.596, 4.57256025582, 454.9093665273], [2.664, 5.36121614612, 269.9214467406], [2.498, 1.04819496324, 69.3649725959], [2.307, 2.69282373897, 84.3428261229], [2.249, 5.07693376112, 14.977853527], [2.228, 1.38937510191, 284.1485407422], [2.064, 4.34647674542, 984.6003316219], [2.105, 2.32047802326, 120.358249606], [1.864, 5.70354779393, 54.1746707478], [2.005, 3.87177765185, 195.1398481733], [1.622, 5.07964536529, 209.3669421749], [1.597, 0.48807990368, 137.0330241624], [1.583, 2.90536212187, 51.2057253312], [1.725, 6.25703202673, 41.6444977756], [2.073, 1.24032244487, 35.1640902212], [1.543, 2.15414338268, 70.3281804424], [1.671, 6.28283232471, 277.0349937414], [1.494, 6.04572758571, 87.3117715395], [1.418, 1.15843502159, 213.299095438], [1.239, 4.63223076077, 92.940845832], [1.238, 2.65969680342, 134.5853436076], [1.273, 5.87964059822, 60.5545045657], [1.16, 1.03320781667, 153.4953503977], [1.43, 4.68022239016, 299.1263942692], [1.117, 2.62506108047, 72.3339180125], [1.142, 4.64615099782, 152.7445908723], [0.974, 2.85233132493, 222.8603229936], [1.046, 4.81299135934, 116.4260963429], [0.872, 3.49659835508, 340.7708920448], [0.952, 2.1083748084, 20.6069278195], [0.964, 2.46471453524, 380.12776796], [0.843, 6.12869288891, 49.5088043018], [0.821, 0.27134156683, 191.2076949102], [0.813, 4.08930465981, 14.2270940016], [0.796, 6.170668463, 344.7030453079], [0.924, 2.11096444289, 14.0146456805], [0.791, 2.38927423348, 58.1068240109], [0.781, 0.7422311595, 408.4389436113], [0.759, 3.77564054479, 80.1982245387], [0.884, 1.99930014838, 265.9892934775], [0.722, 3.10001033669, 422.6660376129], [0.75, 2.33167721991, 358.9301393095], [0.687, 2.0286634204, 33.6796175129], [0.603, 1.10391172652, 55.1378785943], [0.655, 3.85415269764, 16.6747745564], [0.606, 0.15052747979, 28.3111756513], [0.639, 5.16714934188, 23.5758732361], [0.658, 0.75636229109, 76.4785195967], [0.59, 1.73778850095, 8.0767548473], [0.565, 4.92645232089, 35.4247226521], [0.656, 2.34273264083, 38.1330356378], [0.542, 5.97968975563, 146.594251718], [0.518, 3.19086220901, 152.5321425512], [0.536, 4.52808465499, 220.4126424388], [0.489, 4.80633294199, 159.1244246902], [0.491, 0.85765309118, 565.1156877467], [0.483, 3.52583593251, 144.1465711632], [0.521, 5.21561656321, 206.1855484372], [0.477, 4.25420753202, 365.9006739584], [0.466, 5.13219663072, 297.6419215609], [0.557, 0.98387565952, 225.8292684102], [0.531, 4.2253465745, 29.2049475286], [0.5, 3.49663062387, 128.9562693151], [0.445, 2.60797570173, 96.8729990951], [0.466, 6.05585106742, 70.1157321213], [0.425, 1.04692398351, 19.643719973], [0.491, 2.2612339868, 152.0108776894], [0.455, 5.45520675, 333.657345044], [0.458, 0.91654899383, 373.0142209592], [0.52, 5.72828536642, 111.4301614968], [0.432, 1.04604024916, 125.9873238985], [0.387, 2.82547341355, 200.7689224658], [0.383, 1.91679738697, 5.6290742925], [0.504, 1.95816731769, 415.5524906121], [0.37, 3.21958844151, 387.2413149608], [0.379, 2.75940848661, 81.8951455681], [0.345, 2.98021540638, 429.7795846137], [0.368, 6.20331898497, 456.3938392356], [0.335, 5.29062985955, 13.3333221243], [0.32, 0.74685222907, 347.8844390456], [0.307, 1.65925943351, 99.1606209555], [0.284, 2.0943747648, 129.9194771616], [0.275, 0.62680026669, 31.492569389], [0.339, 1.65968150805, 142.4496501338], [0.27, 2.7937834555, 977.4867846211], [0.284, 2.42261530322, 546.956440482], [0.271, 0.59225635449, 1894.4190646765], [0.263, 3.49309481771, 440.6822725257], [0.295, 0.43376026627, 373.9079928365], [0.271, 4.82853730065, 561.1835344836], [0.248, 5.72379940676, 79.2350166922], [0.252, 5.76728095309, 235.3904959658], [0.261, 0.09830739366, 991.7138786227], [0.238, 1.14634663242, 288.0806940053], [0.22, 5.12386263728, 479.2883889155], [0.263, 1.52366362053, 146.3818033969], [0.23, 0.35983101967, 109.9456887885], [0.214, 2.9438876558, 184.7272873558], [0.198, 5.72107161521, 453.424893819], [0.185, 4.7160017678, 108.4612160802], [0.139, 2.99832472431, 211.8146227297], [0.167, 1.1964352228, 39.6175083461], [0.18, 0.80198096578, 183.2428146475], [0.131, 2.73236351123, 522.5774180938], [0.142, 5.03489222377, 536.8045120954]], [[120.936, 0.02418789918, 74.7815985673], [68.064, 4.12084267733, 3.9321532631], [52.828, 2.3896406126, 11.0457002639], [43.754, 2.95965039734, 1.4844727083], [45.3, 2.0442379841, 3.1813937377], [45.806, 0.0, 0.0], [24.969, 4.88741307918, 63.7358983034], [21.061, 4.54511486862, 70.8494453042], [19.897, 2.31320314136, 149.5631971346], [8.901, 1.57548871761, 56.6223513026], [4.271, 0.22777319552, 18.1592472647], [3.613, 5.39244611308, 76.2660712756], [3.488, 4.97622811775, 85.8272988312], [3.479, 4.12969359977, 52.6901980395], [3.572, 0.95052448578, 77.962992305], [2.328, 0.85770961794, 145.6310438715], [2.696, 0.37287796344, 78.7137518304], [1.946, 2.67997393431, 7.1135470008], [2.156, 5.65647821519, 9.5612275556], [1.363, 4.86983744746, 224.3447957019], [1.333, 1.25032115614, 12.5301729722], [1.613, 0.48764377311, 71.6002048296], [1.475, 5.19957293069, 73.297125859], [1.225, 3.93406822032, 22.0914005278], [0.911, 2.18921999026, 127.4717966068], [0.811, 3.98323855938, 462.0229135281], [0.808, 5.06374463008, 447.7958195265], [0.718, 0.34600103024, 5.6290742925], [0.722, 1.05856935832, 138.5174968707], [0.687, 2.93752748595, 131.4039498699], [0.463, 1.58927254512, 151.0476698429], [0.414, 4.3290428762, 120.358249606], [0.372, 0.73596518002, 269.9214467406], [0.345, 3.05968942771, 561.1835344836], [0.338, 5.94221536204, 284.1485407422], [0.343, 4.01891371998, 546.956440482], [0.382, 5.93515231196, 45.5766510387], [0.276, 3.44212110991, 202.2533951741], [0.3, 1.13119175675, 160.6088973985], [0.268, 3.24615387968, 536.8045120954], [0.358, 1.10916640253, 333.657345044], [0.236, 4.65292396535, 387.2413149608], [0.204, 5.81663798296, 373.0142209592], [0.145, 2.75632381347, 92.940845832], [0.149, 0.13764106563, 71.8126531507], [0.156, 2.90936922804, 153.4953503977]], [[113.855, 3.14159265359, 0.0], [5.599, 4.57882424417, 74.7815985673], [3.203, 0.34623003207, 11.0457002639], [1.217, 3.42199121826, 56.6223513026], [0.634, 4.65759668097, 18.1592472647], [0.171, 3.80393539303, 149.5631971346], [0.133, 4.35519131657, 63.7358983034]], [[0.873, 3.14159265359, 0.0]]]

This table contains Uranus’ periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric longitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 445-448.

pymeeus.Uranus.VSOP87_R = [[[1921264847.881, 0.0, 0.0], [88784984.055, 5.60377526994, 74.7815985673], [3440835.545, 0.32836098991, 73.297125859], [2055653.495, 1.78295170028, 149.5631971346], [649321.851, 4.52247298119, 76.2660712756], [602248.144, 3.86003820462, 63.7358983034], [496404.171, 1.40139934716, 454.9093665273], [338525.522, 1.58002682946, 138.5174968707], [243508.222, 1.57086595074, 71.8126531507], [190521.915, 1.99809364502, 1.4844727083], [161858.251, 2.79137863469, 148.0787244263], [143705.902, 1.38368574483, 11.0457002639], [93192.359, 0.17437193645, 36.6485629295], [71424.265, 4.24509327405, 224.3447957019], [89805.842, 3.66105366329, 109.9456887885], [39009.624, 1.66971128869, 70.8494453042], [46677.322, 1.39976563936, 35.1640902212], [39025.681, 3.36234710692, 277.0349937414], [36755.16, 3.88648934736, 146.594251718], [30348.875, 0.70100446346, 151.0476698429], [29156.264, 3.18056174556, 77.7505439839], [20471.584, 1.555889615, 202.2533951741], [25620.36, 5.25656292802, 380.12776796], [25785.805, 3.78537741503, 85.8272988312], [22637.152, 0.72519137745, 529.6909650946], [20473.163, 2.79639811626, 70.3281804424], [17900.561, 0.55455488605, 2.9689454166], [12328.151, 5.96039150918, 127.4717966068], [14701.566, 4.90434406648, 108.4612160802], [11494.701, 0.43774027872, 65.2203710117], [15502.809, 5.35405037603, 38.1330356378], [10792.699, 1.42104858472, 213.299095438], [11696.085, 3.29825599114, 3.9321532631], [11959.355, 1.75044072173, 984.6003316219], [12896.507, 2.62154018241, 111.4301614968], [11852.996, 0.99342814582, 52.6901980395], [9111.446, 4.99638600045, 62.2514255951], [8420.55, 5.25350716616, 222.8603229936], [7449.125, 0.79491905956, 351.8165923087], [8402.147, 5.03877516489, 415.5524906121], [6046.37, 5.67960948357, 78.7137518304], [5524.133, 3.11499484161, 9.5612275556], [7329.454, 3.9727752784, 183.2428146475], [5444.878, 5.10575635361, 145.1097790097], [5238.103, 2.62960141797, 33.6796175129], [4079.167, 3.22064788674, 340.7708920448], [3801.606, 6.10985558505, 184.7272873558], [3919.476, 4.25015288873, 39.6175083461], [2940.492, 2.14637460319, 137.0330241624], [3781.219, 3.45840272873, 456.3938392356], [2942.239, 0.42393808854, 299.1263942692], [3686.787, 2.48718116535, 453.424893819], [3101.743, 4.14031063896, 219.891377577], [2962.641, 0.82977991995, 56.6223513026], [2937.799, 3.6765745093, 140.001969579], [2865.128, 0.30996903761, 12.5301729722], [2538.032, 4.85457831993, 131.4039498699], [1962.51, 5.24342224065, 84.3428261229], [2363.55, 0.44253328372, 554.0699874828], [1979.394, 6.12836181686, 106.9767433719], [2182.572, 2.94040431638, 305.3461693927], [1962.974, 0.0411473912, 221.3758502853], [1829.56, 4.01105771632, 68.8437077341], [1642.92, 0.35564102554, 67.6680515665], [1584.85, 3.16267171762, 225.8292684102], [1848.655, 2.91111759376, 909.8187330546], [1632.43, 4.23061792837, 22.0914005278], [1401.39, 1.39084023521, 265.9892934775], [1403.717, 5.63563637532, 4.4534181249], [1655.866, 1.96431297431, 79.2350166922], [1248.978, 5.44027380866, 54.1746707478], [1563.447, 1.47917835549, 112.9146342051], [1248.054, 4.88984353601, 479.2883889155], [1197.439, 2.52185744943, 145.6310438715], [1506.952, 5.24186185583, 181.7583419392], [1481.746, 5.66203046912, 152.5321425512], [1438.838, 1.53046287618, 447.7958195265], [1408.514, 4.41921749601, 462.0229135281], [1477.112, 4.32214690647, 256.5399405065], [1228.314, 5.9770333104, 59.8037450403], [1249.958, 6.24484546141, 160.6088973985], [906.468, 5.62025869483, 74.6697239827], [1090.681, 4.15393813845, 77.962992305], [844.931, 0.12943398585, 82.8583534146], [900.363, 2.37315925843, 74.8934731519], [1071.957, 1.74286714339, 528.2064923863], [689.708, 3.08097059985, 69.3649725959], [593.798, 4.50074517056, 8.0767548473], [718.559, 4.00047509264, 128.9562693151], [699.574, 0.03987168068, 143.6253063014], [575.656, 5.89552672641, 66.70484372], [759.004, 2.13700057433, 692.5874843535], [710.449, 5.41605755095, 218.4069048687], [548.672, 5.6281149697, 3.1813937377], [651.632, 4.42340061551, 18.1592472647], [539.825, 6.20788667166, 71.6002048296], [544.539, 5.69375108253, 203.7378678824], [710.276, 4.21967260022, 381.6122406683], [593.819, 3.83805798523, 32.1951448046], [710.134, 4.48972171999, 293.188503436], [705.482, 0.45521177725, 835.0371344873], [588.0, 5.08252923316, 186.2117600641], [598.231, 0.35815291076, 269.9214467406], [641.914, 2.71127457036, 87.3117715395], [495.621, 2.65094755989, 200.7689224658], [630.252, 4.46146214548, 275.5505210331], [575.195, 5.57862480486, 2.4476805548], [569.87, 1.6393093274, 77.2292791221], [556.672, 1.07231961344, 1059.3819301892], [449.439, 0.27981733949, 617.8058857862], [463.608, 1.43448297993, 297.6419215609], [436.547, 0.52802035072, 209.3669421749], [463.938, 2.35443114417, 211.8146227297], [435.943, 2.10077211065, 1514.2912967165], [515.534, 3.23274579379, 284.1485407422], [454.879, 4.08364210459, 99.1606209555], [477.43, 2.89397217998, 39.3568759152], [542.331, 5.39481705077, 278.5194664497], [410.087, 3.04968860441, 404.5067903482], [367.848, 0.71159607058, 125.9873238985], [503.096, 5.83931251717, 191.2076949102], [487.532, 0.06402454583, 60.7669528868], [455.043, 2.59321186669, 490.3340891794], [436.291, 2.08183813746, 51.2057253312], [435.803, 2.79445203085, 75.7448064138], [323.546, 4.82899980859, 195.1398481733], [359.363, 0.00868012078, 35.4247226521], [429.314, 3.08031550488, 41.1019810544], [320.021, 5.48625497747, 14.977853527], [414.331, 0.09012800478, 258.0244132148], [379.715, 0.05832815311, 378.6432952517], [420.062, 2.25393983318, 81.0013736908], [357.721, 4.71414305625, 173.9422195228], [358.922, 0.35213227553, 426.598190876], [405.41, 6.12263257999, 24.3790223882], [365.158, 5.59483211224, 255.0554677982], [308.102, 3.92355394354, 116.4260963429], [325.66, 4.71996698332, 134.5853436076], [292.781, 3.9952119483, 72.3339180125], [386.543, 0.68619006966, 230.5645708254], [305.686, 3.76108783519, 344.7030453079], [286.972, 1.8499033531, 153.4953503977], [353.64, 4.65717995107, 329.8370663655], [302.051, 0.13190003806, 565.1156877467], [241.128, 1.60454142389, 81.3738807063], [249.829, 4.24205256241, 75.3028634291], [245.063, 5.94905404273, 20.6069278195], [248.277, 1.06282887181, 105.4922706636], [305.353, 2.55534744586, 6208.2942514241], [296.328, 4.21100245276, 1364.7280995819], [219.938, 2.96119055727, 120.358249606], [233.564, 2.97074409938, 46.2097904851], [262.422, 3.83652250971, 831.1049812242], [233.546, 4.4811700614, 628.8515860501], [187.432, 3.03529190348, 135.5485514541], [216.776, 3.42907414802, 241.6102710893], [255.76, 1.1670789346, 177.8743727859], [220.458, 0.1963349229, 180.2738692309], [224.519, 0.40677777819, 114.3991069134], [205.398, 2.30380942634, 259.5088859231], [211.106, 4.93079982424, 103.0927742186], [175.758, 5.50822822216, 7.1135470008], [188.512, 2.23588941288, 5.4166259714], [171.718, 5.21730232334, 41.6444977756], [176.136, 1.95958319897, 756.3233826569], [170.447, 4.94978757413, 206.1855484372], [169.454, 4.04319823722, 55.6591434561], [219.015, 0.24790282027, 294.6729761443], [187.768, 2.04538775456, 408.4389436113], [182.258, 0.70728384467, 391.1734682239], [192.095, 5.76718231319, 291.7040307277], [153.684, 4.70659406659, 543.0242872189], [170.043, 4.50995820508, 288.0806940053], [164.097, 5.22527540372, 67.3592350258], [194.341, 6.1169036471, 414.0680179038], [168.027, 5.25810639105, 518.6452648307], [156.641, 0.66304836778, 220.4126424388], [182.33, 0.78383856974, 417.0369633204], [167.462, 4.92241597775, 422.6660376129], [170.77, 2.30927162659, 98.8999885246], [161.678, 3.27259601116, 443.8636662634], [132.763, 2.88875442023, 373.9079928365], [161.14, 3.82341391177, 451.9404211107], [179.292, 4.82405681293, 366.485629295], [178.153, 3.98026039043, 10138.5039476437], [141.929, 1.26972581554, 159.1244246902], [153.75, 4.27847681414, 45.5766510387], [161.513, 4.99545008738, 73.8183907208], [146.315, 2.65664902119, 465.9550667912], [124.875, 4.30470898895, 339.2864193365], [154.62, 4.3204622812, 760.25553592], [142.894, 2.07773752143, 457.8783119439], [152.408, 4.64742446768, 155.7829722581], [116.389, 4.43513730944, 5.9378908332], [113.444, 4.65351596266, 80.1982245387], [107.611, 3.77290419929, 142.4496501338], [133.74, 5.30894739047, 14.0146456805], [116.104, 2.5118272567, 296.1574488526], [129.106, 0.36277717661, 96.8729990951], [122.766, 2.38341351026, 141.4864422873], [101.368, 1.05739625315, 92.3077063856], [114.669, 6.24863527978, 767.3690829208], [113.283, 0.83051319425, 100.3844612329], [107.199, 2.39365512354, 347.8844390456], [95.443, 0.80094579583, 342.2553647531], [110.789, 0.38651051525, 216.9224321604], [126.978, 0.4235935825, 331.3215390738], [112.635, 0.08107814739, 558.0021407459], [103.166, 0.69792283389, 358.9301393095], [111.474, 0.75023459027, 80.7194894005], [90.902, 5.16530481614, 144.1465711632], [90.677, 0.22036476597, 333.657345044], [98.568, 4.33164222339, 74.5209661364], [89.306, 2.18851161761, 74.8297826771], [117.216, 3.94965784596, 74.2603337055], [89.088, 5.87783179087, 74.7334144575], [97.316, 0.6942969502, 977.4867846211], [116.587, 1.83677031994, 1289.9465010146], [85.449, 5.80255966149, 6.592282139], [86.823, 5.61973473261, 300.6108669775], [105.226, 5.94513614941, 328.3525936572], [112.117, 1.21168089807, 329.7251917809], [82.982, 2.20797412496, 74.9416572617], [94.345, 4.53937998713, 28.5718080822], [106.847, 1.82071328579, 306.830642101], [103.572, 2.99368274596, 6.2197751235], [106.357, 0.8158387475, 1087.6931058405], [77.728, 2.73390123734, 110.2063212194], [98.405, 3.73478182667, 75.0422309982], [86.231, 2.83316881064, 983.1158589136], [89.023, 4.7375445896, 604.4725636619], [83.013, 1.88273535999, 387.2413149608], [90.227, 3.80367274711, 986.0848043302], [84.598, 1.25774132938, 142.1408335931], [74.69, 1.35097482767, 350.3321196004], [95.77, 5.54845504768, 969.6224780949], [90.277, 0.36773710508, 0.9632078465], [82.748, 5.85590525764, 74.6215398729], [75.828, 2.78019216029, 88.1149206916], [83.85, 1.84386358668, 227.3137411185], [70.705, 4.65567024014, 44.7253177768], [71.322, 3.64963906751, 894.8408795276], [94.141, 4.98819201726, 403.1341922245], [88.966, 4.43895583278, 154.0166152595], [79.436, 5.66662613679, 267.4737661858], [75.615, 5.40971072536, 50.4025761791], [68.583, 4.76679841388, 991.7138786227], [65.256, 0.69286370395, 152.7445908723], [63.031, 2.89946567712, 79.889407998], [63.878, 0.09820555288, 681.5417840896], [80.101, 2.97520561915, 526.722019678], [69.693, 3.95281159807, 187.6962327724], [59.492, 3.59642351692, 58.1068240109], [59.273, 0.50930692071, 28.3111756513], [68.59, 2.4188031153, 235.3904959658], [66.007, 5.04558399435, 30.7106720963], [70.223, 3.73647415486, 546.956440482], [66.836, 0.85506033017, 522.5774180938], [63.027, 0.29269109052, 119.5069163441], [62.023, 2.31557510311, 74.0308390419], [71.379, 3.16967571102, 23.5758732361], [74.827, 5.36812537961, 373.0142209592], [64.204, 2.3681714946, 157.6399519819], [70.712, 0.55830476304, 92.940845832], [55.762, 5.27011035858, 874.3940104025], [75.638, 4.66344127677, 101.8689339412], [73.727, 6.20581665991, 312.4597163935], [72.94, 0.58406607757, 367.9701020033], [53.23, 2.24728742995, 17.5261078183], [63.139, 4.59563922296, 67.8804998876], [60.55, 0.57591315857, 253.5709950899], [52.946, 2.45947017614, 264.5048207692], [70.236, 1.51860943454, 552.5855147745], [68.624, 2.44507780453, 555.5544601911], [62.796, 0.33786296181, 561.1835344836], [49.009, 1.09233728279, 19.1224551112], [64.636, 5.274699709, 68.1893164283], [62.957, 5.35891188483, 92.0470739547], [47.664, 3.90924952181, 192.6921676185], [65.279, 4.23629510074, 771.3012361839], [65.19, 3.73942854797, 536.8045120954], [59.452, 6.10554259948, 365.0011565867], [52.153, 1.71734604937, 905.8865797915], [46.035, 3.87093684776, 210.3301500214], [46.429, 5.97423131576, 477.8039162072], [62.115, 2.67544358037, 130.4407420234], [46.038, 3.89378239085, 48.7580447764], [42.663, 3.81519760715, 61.2882177486], [53.909, 2.86457147106, 353.301065017], [46.936, 1.00011046774, 166.828672522], [42.217, 2.61748790314, 90.8232336773], [43.324, 4.15777895713, 173.6815870919], [41.296, 1.79930408254, 149.45132255], [44.96, 1.76623306927, 0.5212648618], [51.904, 2.97773319756, 383.0967133766], [42.931, 1.57416456203, 120.9913890524], [49.611, 4.0342792047, 303.8616966844], [45.263, 3.58382163089, 97.4155158163], [38.695, 2.39404211169, 31.492569389], [38.072, 5.7947367035, 75.5323580927], [50.126, 4.76412907201, 911.3032057629], [50.884, 5.15513957132, 439.782755154], [43.148, 0.84999004804, 58.319272332], [42.732, 5.17318058934, 162.0933701068], [50.298, 5.81603435915, 66.9172920411], [35.639, 1.87447823723, 472.1748419147], [49.963, 1.8894349079, 42.5864537627], [39.974, 1.74262050679, 89.7594520943], [45.252, 1.92511912328, 55.1378785943], [44.896, 1.4835590189, 450.9772132642], [34.297, 5.20257496546, 316.3918696566], [46.355, 0.33942039181, 273.1028404783], [37.152, 2.03757941865, 117.9105690512], [46.106, 5.62315633955, 1819.6374661092], [39.368, 4.19402806344, 486.4019359163], [41.039, 4.82994471947, 149.6750717192], [44.959, 0.72694662195, 3265.8308281325], [43.617, 0.75332422672, 404.6186649328], [31.823, 3.84768075667, 20.4468691251], [44.196, 4.36769721266, 418.2608035978], [37.9, 3.02928044053, 167.0893049529], [43.684, 1.57328182739, 491.5579294568], [34.004, 1.26257052908, 260.9933586314], [31.276, 4.16123711648, 13.3333221243], [39.984, 2.8662612562, 468.2426886516], [36.49, 2.58804294589, 68.5618234438], [32.364, 3.11577354875, 103.3534066495], [33.857, 0.15592410716, 24.1183899573], [35.933, 1.36784550071, 59.2824801785], [33.633, 0.755011774, 290.2195580194], [29.751, 5.33178627038, 1033.3583763983], [32.036, 4.67549858, 205.2223405907], [30.991, 4.62823866461, 258.8757464767], [35.268, 1.00718464327, 1108.1399749656], [33.366, 3.40738625377, 43.1289704839], [32.638, 5.25485850258, 114.1384744825], [29.825, 5.64157476876, 254.9435932136], [31.613, 3.7823139311, 152.0108776894], [30.98, 2.26660677937, 104.0077979553], [34.591, 5.17326577255, 25.6028626656], [28.398, 1.76872790446, 820.0592809603], [27.991, 3.92486885309, 199.2844497575], [28.986, 2.58171811759, 76.4785195967], [33.772, 5.79359878723, 274.0660483248], [29.401, 5.93638676504, 280.9671470045], [31.094, 1.39352495971, 178.7893965226], [30.118, 0.44367887423, 27.0873353739], [33.82, 6.26168443513, 401.6497195162], [27.513, 2.15194454461, 480.7728616238], [26.88, 2.5130027278, 123.5396433437], [26.139, 0.21985367371, 286.596221297], [26.455, 3.88229792258, 372.4235201282], [33.974, 1.44637843871, 88.7962442478], [30.107, 0.82723915882, 100.6450936638], [27.715, 4.64827434185, 198.321241911], [33.687, 1.14348201049, 82.4858463991], [26.493, 1.97889544238, 95.3885263868], [24.355, 2.3783917615, 146.3818033969], [26.59, 0.39881920389, 106.0135355254], [27.006, 2.10206230691, 1057.8974574809], [23.976, 6.21233637686, 16.6747745564], [30.97, 5.34005431547, 476.4313180835], [24.073, 3.42953641968, 1044.4040766622], [27.023, 0.71284764471, 248.7238180901], [29.098, 3.99184722502, 908.3342603463], [22.862, 2.26978781393, 175.1660598002], [24.026, 0.36584131268, 73.1852512744], [28.024, 3.46485782266, 1439.5096981492], [22.034, 0.051638073, 33.1371007917], [22.185, 5.32252126255, 483.2205421786], [21.027, 0.37224660652, 214.7835681463], [20.548, 1.80004483299, 118.0224436358], [27.835, 4.1241255353, 694.0719570618], [25.5, 5.49632191634, 115.8835796217], [21.377, 3.89179204956, 66.1835788582], [27.201, 5.761487979, 1215.1649024473], [24.984, 0.65339418015, 132.8884225782], [23.976, 4.56161326826, 458.8415197904], [21.116, 1.1361070625, 60.5545045657], [26.263, 2.77532723118, 490.0734567485], [26.369, 3.371200393, 49.7212526229], [22.87, 4.5313563762, 78.4049352897], [26.872, 3.26037129303, 691.1030116452], [25.004, 3.65018677651, 73.4090004436], [20.874, 3.92589972978, 134.0640787458], [20.915, 5.53955400138, 129.9194771616], [23.067, 2.56806856688, 332.8060117821], [22.63, 5.02721554401, 150.5264049811], [19.123, 1.92386327535, 124.5028511902], [20.678, 0.98302410602, 29.2049475286], [18.755, 1.07911898422, 70.1157321213], [19.458, 1.33847349577, 616.3214130779], [23.071, 3.93152899657, 43.2890291783], [23.313, 0.61185525008, 189.7232222019], [19.66, 1.40884902649, 1589.0728952838], [24.99, 0.91842956919, 441.2672278623], [23.555, 0.02127675886, 593.426863398], [18.288, 4.55111843462, 165.6048322446], [20.98, 0.88504201898, 326.8681209489], [24.94, 4.63470443286, 162.8965192589], [18.941, 5.10763304564, 81.8951455681], [18.911, 1.23351635328, 13.4933808187], [17.358, 4.05768226252, 403.0223176399], [17.362, 5.2860722764, 7.8643065262], [22.513, 3.15059891398, 419.7452763061], [21.237, 2.14856256664, 75.5847477194], [17.845, 2.54349200329, 47.061123747], [16.995, 2.48647736969, 2043.9822618111], [23.676, 5.80355919955, 232.0490435337], [22.639, 2.07623129509, 699.7010313543], [19.261, 1.56494156016, 425.1137181677], [21.067, 5.30844438236, 237.6781178262], [22.733, 0.2830312644, 0.1118745846], [16.372, 3.45984005656, 0.7507595254], [21.213, 0.95828006612, 405.9912630565], [18.033, 1.60723214246, 215.4379594521], [16.267, 4.8900201636, 69.1525242748], [21.738, 3.24738839789, 1744.8558675419], [16.149, 0.35803995032, 77.0692204277], [21.71, 0.88800040769, 344.9636777388], [17.204, 6.04366142241, 32.2433289144], [17.883, 4.01076173641, 280.003939158], [15.918, 2.96623390816, 25.8634950965], [14.769, 3.73887340623, 610.6923387854], [15.033, 4.24825484707, 228.276948965], [15.586, 5.0798708274, 114.9416236346], [15.392, 0.22971106129, 17.2654753874], [15.354, 0.25482391126, 661.0949149645], [14.617, 1.13349626273, 823.9914342234], [16.232, 3.4349974381, 147.1155165798], [14.654, 1.68288566884, 207.8824694666], [17.682, 5.94376629143, 624.919432787], [18.837, 1.3833540807, 377.1588225434], [15.425, 1.66489033237, 440.6822725257], [14.764, 4.41710614445, 16.4623262353], [14.402, 0.41359448817, 142.6620984549], [16.992, 0.16042368544, 438.2982824457], [13.268, 3.04634728126, 668.2084619653], [16.46, 0.92068542861, 369.0820676961], [17.239, 4.51659246818, 606.7601855223], [13.238, 0.13650358961, 216.4804891757], [15.832, 4.94315562971, 124.2904028691], [14.374, 2.93700606008, 419.4846438752], [12.927, 1.65950183061, 54.3347294422], [14.224, 4.42286781619, 47.6942631934], [12.753, 0.03020931725, 217.2312487011], [14.792, 1.08447500622, 49.5088043018], [14.031, 3.68785757687, 16.04163511], [13.709, 4.78890618802, 72.7758609972], [13.073, 1.54064778942, 218.9281697305], [17.474, 5.05621281434, 564.8550553158], [12.686, 3.4464088888, 958.576777831], [13.035, 0.56445754615, 1171.875873269], [12.458, 3.29187197133, 902.7051860538], [11.893, 1.41294011193, 55.7710180407], [15.018, 3.43209569509, 19.0105805266], [16.47, 2.04067754807, 411.620337349], [15.619, 1.53464600544, 833.552661779], [15.678, 5.92839374034, 778.4147831847], [12.039, 5.17748353434, 135.336103133], [15.523, 3.54656631824, 113.8778420516], [14.364, 4.19825110964, 89.338760969], [15.424, 2.12697366269, 106.2741679563], [11.957, 1.43314130608, 455.8725743738], [15.938, 5.49575810978, 513.079881013], [13.532, 4.11463529983, 95.2284676924], [15.105, 1.86350524526, 7.7042478318], [15.832, 3.42498484109, 79.5169009825], [11.492, 4.6518745562, 149.6113812444], [11.406, 1.31085455047, 63.6240237188], [14.469, 3.35284802718, 19.643719973], [11.953, 0.20979051344, 65.8747623175], [12.039, 0.0142323841, 397.3932433474], [14.157, 1.87440535404, 6283.0758499914], [11.357, 0.19079103112, 5.6290742925], [14.109, 0.09348109701, 6133.5126528568], [15.322, 3.54468546172, 252.6559713532], [11.681, 0.85100356112, 5.1078094307], [14.134, 5.66340426198, 639.897286314], [11.052, 0.47607339302, 150.0844619964], [11.507, 5.19480309409, 1182.9215735329], [11.492, 2.05801478181, 149.5150130248], [11.571, 4.7821072497, 334.2904844904], [10.671, 4.67373109923, 149.723255829], [11.651, 3.13272450186, 93.9040536785], [14.316, 0.08421279341, 240.3864308119], [10.855, 4.52379396618, 453.9461586808], [11.9, 1.41784572428, 26.0235537909], [10.851, 4.40625021974, 57.1436161644], [13.385, 0.76174742916, 37.8724032069], [10.664, 5.81644528276, 193.655375465], [10.7, 5.3459550607, 331.2096644892], [10.465, 3.82648204886, 180.1619946463], [13.35, 0.86920479636, 22.8945496799], [10.324, 2.99969783109, 525.7588118315], [14.293, 1.06904465002, 477.9157907918], [12.341, 4.62813430535, 1894.4190646765], [12.539, 3.70404881494, 67.0773507355], [11.771, 1.07971321862, 363.5166838784], [11.466, 0.9352838604, 121.8427223143], [12.839, 0.31988787839, 474.9468453752], [10.194, 6.23976471898, 84.1827674285], [12.3, 2.85238700423, 184.0941479094], [13.861, 3.4836768877, 157.2674449664], [11.395, 4.2553344068, 181.0557665236], [10.146, 6.01371693363, 43.2408450685], [9.889, 0.01753733887, 40.1600250673], [10.798, 2.4636424394, 140.6563608848], [9.893, 2.72219544398, 384.0599212231], [11.012, 3.77284307154, 494.2662424425], [10.226, 1.49169427598, 80.4106728598], [11.981, 2.69741212203, 369.4545747116], [10.658, 1.7870288097, 252.0865223816], [12.506, 4.66852994807, 64.6991061499], [11.64, 5.70405852396, 39.0962434843], [12.305, 1.73322306013, 229.0800981171], [9.954, 3.72074935511, 233.9060232575], [11.004, 3.58723041577, 449.2802922348], [10.581, 2.79550711884, 1246.6574718363], [10.411, 2.8672714553, 189.1807054807], [9.259, 5.1983482312, 749.2098356561], [12.468, 0.76477162698, 122.4758617607], [10.099, 6.06894682979, 156.1554792736], [12.671, 6.19797171716, 149.8238295655], [9.053, 0.99447742265, 109.3125493421], [9.595, 1.00827882958, 393.4610900843], [10.455, 1.23531019351, 148.5999892881], [10.645, 5.50399216121, 460.5384408198], [12.433, 5.298436616, 20.4950532349], [9.002, 5.5121689284, 133.1008708993], [9.882, 5.68987366321, 42.5382696529], [12.11, 3.14577799081, 30.0562807905], [10.38, 3.54528360301, 619.2903584945], [10.139, 1.90528799801, 25.0603459444], [11.206, 5.8782323899, 832.5894539325], [9.283, 3.00514787072, 754.8389099486], [10.994, 0.05721003392, 54.2865453324], [8.981, 5.82462023723, 248.4631856592], [8.634, 5.49123270314, 448.6895914038], [9.39, 1.32674472283, 9.4011688612], [9.621, 5.6909029939, 73.88782669], [10.843, 1.4281264822, 268.4369740323], [10.874, 2.6136174199, 446.3113468182], [9.681, 4.27051176079, 282.6640680339], [10.77, 0.19304986906, 463.5073862364], [8.223, 3.30114329151, 172.1971143836], [10.216, 5.04428111805, 241.8709035202], [8.89, 2.53320903906, 271.4059194489], [10.621, 4.39013117792, 63.847772888], [9.085, 0.99085954236, 6.9010986797], [10.414, 4.96367476854, 97.6761482472], [8.382, 5.03764591595, 370.9390474199], [8.791, 3.05426995163, 291.262087743], [8.629, 0.1467493805, 262.4778313397], [9.673, 4.2559733057, 602.9880909536], [7.939, 5.71230451368, 541.5398145106], [7.981, 2.35900017752, 196.6243208816], [7.941, 0.88239951788, 154.979823106], [8.212, 0.00845991197, 76.42612997], [10.135, 1.90258069764, 91.4563731237], [8.948, 4.31891786278, 469.1364605289], [9.906, 0.61122653279, 308.3151148093], [8.257, 4.61012292958, 69.6737891366], [10.291, 3.58217488981, 842.1506814881], [10.672, 2.28920805112, 194.2885149114], [9.024, 0.70282370018, 685.4739373527], [7.552, 4.86800510978, 1097.0942747017], [9.496, 1.0666235072, 93.7921790939], [8.413, 3.15290837718, 32.7164096664], [8.914, 5.03579282562, 450.4559484024], [8.008, 4.33420849497, 302.0953396858], [10.397, 4.90564475822, 829.6205085159], [7.401, 5.67595616187, 337.8019466282], [7.419, 3.0467243912, 7.4223635415], [7.936, 4.37116642726, 464.4705940829], [9.731, 5.703933034, 98.3574718034], [9.287, 4.16913084905, 15.4991183888], [10.072, 1.18963356664, 621.7380390493], [9.867, 1.34469368253, 142.9709149956], [8.913, 1.33679256423, 0.2606324309], [8.734, 2.03651443558, 149.4031384402], [7.745, 0.14834225031, 1404.0849754971], [9.037, 3.53203542312, 636.6677084665], [7.707, 1.87083579542, 31.6526280834], [8.566, 2.4828035791, 497.4476361802], [10.074, 2.59066128203, 711.4493070338], [8.726, 5.88905195509, 82.2039621088], [9.218, 1.10861658464, 412.5835451955], [9.483, 6.02304095716, 916.9322800554], [7.012, 6.27635752748, 376.1956146969], [9.867, 1.9314020472, 62.7726904569], [7.121, 1.54192963162, 679.2541622292], [8.44, 5.06400284478, 1.3725981237], [8.915, 2.39052372377, 76.154196691], [9.637, 3.78128664809, 838.218528225], [7.059, 5.91499106809, 74.1484591209], [9.57, 1.97721363991, 703.6331846174], [7.516, 4.87738017916, 310.1720945331], [7.059, 1.94098053303, 75.4147380137], [8.552, 6.14581140636, 17.6379824029], [6.859, 5.11679089849, 107.4980082337], [7.148, 1.73466140387, 1190.7858800591], [9.112, 0.8836866329, 362.8622925726], [9.3, 1.44257902224, 763.4369296577], [9.073, 4.31998777457, 16.1535096946], [9.126, 3.74417347717, 4.665866446], [7.869, 4.65596954763, 232.4215505492], [9.168, 3.25096522859, 155.5010879678], [7.624, 0.88232424215, 459.3627846522], [8.2, 1.51866334747, 10063.7223490764], [8.579, 2.377262345, 75.6753704446], [7.595, 2.63499505823, 657.1627617014], [8.131, 6.15861249482, 745.277682393], [6.398, 0.61376490225, 73.2489417492], [7.71, 4.02552779925, 4.7353024152], [6.38, 3.20688120531, 73.3453099688], [7.505, 0.67397826037, 228.7982138268], [7.129, 1.33525552417, 236.8749686741], [7.444, 3.05581518163, 171.6545976624], [6.361, 6.05108999867, 95.9792272178], [7.086, 4.88497877319, 6531.661656265], [6.527, 4.0138014903, 118.8737768977], [7.984, 1.70695215254, 104.5290628171], [6.239, 1.08160874504, 143.9341228421], [7.2, 1.19830150903, 1617.3840709351], [6.39, 4.83649966441, 1072.7152523135], [7.857, 3.06062400692, 341.9947323222], [6.158, 0.04340975323, 627.3671133418], [8.664, 5.60425824325, 2810.9214616052], [6.147, 4.16482048084, 1300.9922012785], [8.148, 3.1170064191, 10213.285546211], [8.603, 3.80404544682, 25558.2121764796], [7.586, 2.86885781812, 406.1031376411], [7.925, 3.11650504, 81.682697247], [7.063, 5.35078594952, 73.0364934281], [6.265, 3.27996815317, 116.5379709275], [7.345, 0.45699353973, 192.8040422031], [6.878, 1.29690429239, 22.633917249], [6.102, 2.06174377751, 73.9784494152], [7.867, 1.45455437627, 131.9252147317], [6.837, 0.07237438837, 90.2807169561], [7.74, 2.87078307084, 79.4474650133], [6.744, 0.01897075429, 572.2292347475], [6.034, 0.96635268225, 476.3194434989], [8.276, 2.40596529645, 674.8007441043], [6.002, 3.24986200464, 76.7873361374], [6.863, 1.24850658686, 400.1652468079], [6.375, 1.37050567525, 75.1541055828], [7.445, 5.47946546419, 50.66320861], [5.889, 5.83364715391, 164.1203595363], [7.19, 3.21396813566, 71.1582618449], [6.305, 1.65443603478, 70.0462961521], [6.628, 1.990437442, 1.5963472929], [6.081, 1.2659989053, 61.448276443], [7.795, 0.70956881527, 44.070926471], [7.784, 5.47416712189, 416.7763308895], [5.727, 2.39389303582, 20277.0078952874], [6.363, 1.96472326808, 288.7350853111], [5.724, 4.3053278397, 86.6304479833], [7.348, 5.28008775997, 285.6330134505], [5.693, 1.13590287643, 445.3481389717], [5.799, 2.43420435064, 180.7951340927], [6.927, 4.19297070447, 525.2375469697], [6.143, 2.23902465258, 1310.3933701397], [6.68, 5.36285833774, 452.4616859725], [5.709, 3.65303501856, 442.3791935551], [6.238, 4.60538870228, 137.5542890242], [5.932, 3.22993254909, 73.4571845534], [7.734, 5.72805659987, 154.2984995498], [5.782, 2.17577477697, 2.2876218604], [6.016, 3.4658554659, 346.3999663373], [7.517, 5.63641104589, 549.7284439425], [6.685, 4.84971092735, 148.8124376092], [5.797, 0.51568102762, 149.3025647037], [7.739, 3.23104533276, 589.4947101349], [7.59, 2.49504939023, 321.7603115182], [6.706, 5.23367324742, 769.8167634756], [7.21, 2.56243122515, 375.6743498351], [5.491, 1.84139760824, 375.3924655448], [6.592, 3.39703193659, 389.6889955156], [6.414, 3.56513278405, 488.8496164711], [6.376, 0.24081237769, 881.5075574033], [5.785, 3.49508162978, 102.523325247], [6.079, 0.84517404881, 89.5993933999], [5.799, 2.19388408812, 8.9068362498], [5.305, 1.977856112, 150.31395666], [5.422, 1.21990761182, 332.1728723357], [7.235, 2.78896876234, 748.0978699633], [6.36, 0.36304095923, 74.4090915518], [5.285, 4.41108441808, 12.0089081104], [6.602, 3.01699401726, 442.7517005706], [6.509, 0.49819168917, 1147.4968508808], [5.585, 6.04761249158, 172.4577468145], [6.673, 0.77536194908, 6069.7767545534], [7.125, 0.34356180793, 511.5954083047], [5.288, 4.27462942653, 11.1575748485], [6.767, 2.00969662613, 105.380396079], [5.611, 2.40776057824, 1286.0143477515], [6.456, 4.48699081452, 31.2319369581], [5.898, 5.26174074234, 757.8078553652], [5.153, 2.41386832919, 742.9900605326], [5.087, 6.03592089039, 980.6681783588], [6.198, 0.83056505252, 1507.1777497157], [5.425, 1.93107713343, 40.8413486235], [6.091, 5.18564204379, 487.1045113319], [5.715, 1.96802719384, 394.3548619616], [5.509, 1.3127509208, 883.7951792637], [5.32, 4.22718652038, 65.3804297061], [5.357, 1.80483136985, 139.4807047172], [5.204, 3.39869589191, 1400.152822234], [6.537, 2.31923989568, 328.2407190726], [5.041, 2.9467334644, 361.3778198643], [4.969, 6.27367198215, 0.1600586944], [5.334, 2.78985718428, 217.4436970222], [5.654, 0.51056760715, 285.1117485887], [6.432, 2.21948959433, 9999.986450773], [5.768, 5.10735836078, 216.2680408546], [4.977, 2.62435916254, 194.1766403268], [6.932, 1.71722863424, 378.9039276826], [5.187, 3.04429850681, 1083.7609525774], [5.791, 3.9406147625, 550.1378342197], [5.816, 2.24843661305, 230.9370778409], [5.319, 0.0699882535, 336.8387387817], [5.427, 0.30577275388, 40.5807161926], [6.469, 3.02579309025, 298.2326223919], [4.974, 1.21594265105, 455.0694252217], [4.96, 4.7280621023, 454.7493078329], [5.619, 2.27500303004, 227.5261894396], [6.328, 0.97544932086, 249.9476583675], [5.319, 4.59867974067, 454.7974919427], [4.791, 4.40360629153, 853.196381752], [6.519, 3.03043401282, 167.7224443993], [5.45, 6.00971547441, 25.1297819136], [5.094, 3.96693309189, 1066.49547719], [5.779, 0.65954416303, 272.5815756165], [6.491, 4.6852965154, 312.1990839626], [5.234, 4.34712255335, 233.533516242], [5.396, 5.62885554221, 418.5214360287], [5.048, 2.46802064424, 987.5692770385], [6.152, 0.79853332272, 2274.5468326365], [6.506, 1.7291557512, 125.1841747464], [4.993, 3.75975860404, 57.255490749], [6.295, 0.84778953014, 10.0824924174], [6.251, 4.78782138567, 270.1820791715], [5.785, 4.31237764709, 374.4986936675], [5.406, 5.49902863401, 632.7837393132], [6.224, 0.12733845417, 149.0419322728], [4.921, 1.43037646364, 73.1370671646], [5.076, 1.34845106372, 455.0212411119], [5.73, 3.30386575867, 88.274979386], [4.618, 0.64720625124, 119.3950417595], [6.213, 2.58827934841, 544.5087599272], [4.825, 6.08615765986, 304.1223291153], [4.825, 6.00483903794, 226.7924762567], [5.528, 5.69752791882, 548.4409131903], [5.108, 2.74489127167, 423.6292454594], [5.426, 2.44835106987, 531.978586955], [4.573, 1.61098293427, 357.4456666012], [4.487, 6.09067660554, 204.7010757289], [5.866, 6.20513223441, 772.7857088922], [5.334, 2.49860553733, 1131.1945833399], [5.656, 4.75744184558, 491.8185618877], [4.441, 0.23590452375, 35.685355083], [4.37, 3.8113649083, 1329.3033769298], [4.406, 3.42865095493, 144.8973306886], [5.251, 4.72114047741, 535.3200393871], [5.174, 1.37807596858, 520.129737539], [4.331, 2.64717426456, 1517.2602421331], [4.802, 2.6056946352, 177.3049238143], [4.368, 3.36272561974, 1503.2455964526], [4.335, 2.73379207096, 289.5651667136], [5.198, 0.97116582962, 128.4350044533], [4.437, 0.56678131875, 253.4591205053], [5.386, 5.84886051674, 268.6976064632], [5.376, 1.30096148962, 436.8138097374], [5.797, 4.33049740199, 208.8456773131], [4.353, 1.66111524192, 1261.6353253633], [4.812, 4.95769337401, 545.4719677737], [5.897, 2.0420120518, 8.5980197091], [5.032, 2.8055075977, 360.4146120178], [4.921, 2.55658380096, 260.360219185], [4.413, 3.23825819993, 973.554631358], [4.506, 0.17509624151, 380.3884003909], [4.947, 5.50324549675, 365.9006739584], [4.174, 2.99974290843, 136.0698163159], [4.553, 2.77416673233, 147.9668498417], [5.344, 1.81213470593, 521.0929453855], [5.155, 0.78324341489, 1670.0742689746], [5.133, 1.37435234967, 271.61836777], [5.708, 2.52872222038, 501.3797894433], [4.933, 1.36454104948, 238.9019581036], [4.973, 1.92960964594, 535.9107402181], [4.935, 5.04375067678, 697.8071683688], [4.129, 1.50064332826, 71.8608372605], [5.207, 4.0187736734, 92.4195809702], [4.587, 4.78553156868, 95.931043108], [5.05, 5.41251268131, 758.7710632117], [5.012, 4.50266403888, 635.9651330509], [4.248, 0.65406962267, 920.8644333185], [5.15, 1.13490701556, 310.9752436852], [4.146, 5.54040372231, 1048.3362299253], [4.256, 4.20942901957, 25.2727942655], [4.569, 5.19758291396, 10.2949407385], [4.259, 5.53202386861, 184.9879197867], [4.315, 2.80569687202, 213.9534867438], [4.604, 2.51643176466, 962.5089310941], [5.105, 1.26007002216, 971.1069508032], [4.5, 6.15796742231, 1052.2683831884], [4.095, 0.63467124507, 1321.4390704036], [3.968, 0.07377679014, 77.7023598741], [4.617, 2.77367751889, 406.954470903], [4.899, 4.65767840428, 305.6068018236], [3.9, 1.66467970991, 945.2434557067], [4.133, 3.76396043787, 263.0203480609], [3.899, 4.28677450975, 224.2329211173], [5.03, 6.24112139981, 1162.4747044078], [5.024, 0.39738855487, 968.1380053866], [4.894, 2.50422546622, 355.7487455718], [4.283, 3.15267059582, 846.0828347512], [3.941, 0.04342429962, 1235.6117715724], [4.077, 5.6885446997, 695.5564297701], [3.842, 0.37429373422, 774.4826299216], [4.674, 0.08112657673, 1366.2125722902], [4.671, 4.38923533828, 117.36805233], [5.313, 4.38472090135, 689.6185389369], [3.787, 1.41443617212, 48.9181034708], [4.236, 1.60316940746, 367.5975949878], [4.569, 2.88138923862, 551.1010420662], [4.636, 5.93442268083, 148.1905990109], [5.128, 0.17600225009, 433.7117378768], [4.264, 2.08657038625, 325.3836482406], [3.885, 5.85359840623, 450.7165808333], [4.753, 2.58442943928, 358.4088744477], [4.226, 6.24596640453, 448.9714756941], [3.776, 1.78756451192, 71.7007785661], [4.912, 4.45665056284, 51.8870488874], [3.854, 2.72138633161, 151.850818995], [4.561, 0.07201979569, 2349.3284312038], [4.291, 5.39929339966, 523.7530742614], [4.143, 0.1715886627, 735.8765135318], [3.806, 1.44358694049, 138.6293714553], [3.654, 2.41520715554, 348.8476468921], [3.728, 1.69745141654, 984.7122062065], [4.176, 4.01139155515, 195.7729876197], [4.986, 1.0356290592, 224.4566702865], [4.031, 0.92145122185, 76.0054388447], [4.098, 3.51214223942, 72.4939767069], [3.812, 4.41246815759, 1511.3223512999], [4.098, 2.39702785276, 239.1625905345], [4.894, 5.26621064696, 601.5036182453], [4.459, 5.76440378473, 836.5216071956], [4.373, 4.08948598951, 75.4359898731], [4.363, 6.01127167247, 421.1815649046], [4.414, 0.358306616, 168.3131452303], [3.7, 2.04103813925, 63.2146334416], [4.648, 2.07482117651, 1106.6555022573], [4.304, 3.03122452327, 1109.6244476739], [3.618, 4.84400847177, 893.3564068193], [4.023, 0.59685650686, 91.2439248026], [4.937, 5.49417275871, 976.7360250957], [4.373, 3.76648561161, 74.1272072615], [4.31, 3.72983787822, 673.316271396], [4.68, 3.8963125415, 163.5778428151], [4.172, 0.75349427039, 1500.0642027149], [4.492, 1.87283145714, 141.1776257466], [4.174, 5.82910805335, 346.4481504471], [3.775, 0.83052387256, 827.9235874865], [3.481, 2.70828672792, 818.574808252], [4.853, 0.95917381603, 58.1705144857], [4.021, 3.11274455034, 377.4194549743], [4.409, 0.16607520728, 630.3360587584], [3.597, 1.02560564654, 515.463871093], [3.444, 1.38488805947, 117.3198682202], [4.021, 5.68447974866, 3.4902102784], [4.244, 3.75845344717, 733.428832977], [3.933, 4.55157642432, 240.125798381], [4.421, 1.51263319894, 1610.2705239343], [3.39, 4.00215380112, 74.9940468884], [4.556, 3.41531360529, 1140.38330388], [4.171, 0.76417016678, 623.4349600787], [3.441, 2.56450835637, 14.8177948326], [3.587, 4.10186965494, 343.2185725996], [3.997, 5.74857613262, 6212.2264046872], [4.215, 0.84469743228, 176.6505325085], [4.098, 1.41920746453, 559.6990617753], [4.553, 1.09016692751, 561.8861098992], [3.493, 0.11837510368, 1031.87390369], [3.596, 5.33968666729, 394.9455627926], [3.501, 5.53309359866, 594.9113361063], [3.564, 1.57868308864, 354.9979860464], [4.279, 2.35436288262, 562.6680071919], [3.398, 1.6208634854, 941.3113024436], [3.803, 1.78948693511, 251.1714986449], [3.299, 5.13631478768, 477.0007670551], [3.422, 3.55674695079, 256.4280659219], [3.802, 4.09287840097, 268.9582388941], [3.818, 4.64162443046, 71.9245277353], [4.623, 2.72836206211, 6244.9428143536], [3.466, 1.91387688001, 58.7399634573], [3.435, 2.96178782926, 995.6460318858], [3.626, 5.35614681493, 57.5161231799], [4.512, 1.18350543284, 170.7608257851], [4.378, 0.273460377, 469.7271613599], [3.323, 4.51516827363, 454.8611824175], [3.32, 1.42938752044, 454.9575506371], [4.578, 4.7498051473, 731.9443602687], [3.249, 0.67719975914, 74.0478853844], [4.145, 5.58064267022, 57.7980074702], [3.512, 6.09122971288, 70.5888128733], [3.814, 2.49565462974, 6204.362098161], [3.828, 4.39751907192, 586.3133163972], [3.639, 4.85097208169, 138.4056222861], [3.518, 0.52105043625, 262.8078997398], [3.671, 1.99667387765, 511.5317178299], [3.215, 0.64628330219, 887.7273325268], [3.718, 3.27473813045, 454.6487340964], [3.638, 2.63250736806, 455.1699989582], [3.772, 0.88810300052, 10142.4361009068], [3.19, 4.87960158471, 455.6601260527], [3.669, 4.11456655271, 409.9234163196], [3.166, 1.24948126394, 82.6459050935], [3.53, 4.02075420346, 388.2045228073], [3.163, 1.65294183878, 765.8846102125], [3.568, 5.95965909592, 460.8472573605], [3.45, 0.08821515281, 49.1787359017], [3.27, 1.81146731641, 34.2008823747], [3.188, 1.74587038709, 18.9100067901], [3.305, 5.77382040863, 10.5244354021], [3.345, 4.15802505352, 1515.7757694248], [3.16, 1.06549289762, 454.1586070019], [3.525, 2.56091667232, 78114.14622758799], [4.124, 1.06751791085, 388.4651552382], [4.016, 2.48751669586, 531.1754378029], [3.147, 5.05814757549, 1521.4048437173], [4.18, 1.16833674781, 514.5643537213], [3.212, 3.18682610058, 1512.8068240082], [3.486, 0.22630227172, 36.5366883449], [4.211, 3.21876950029, 761.7400086283], [3.485, 3.26177495276, 36.7604375141], [3.506, 6.26633354904, 545.2750258176], [3.733, 2.55776517455, 279.4826742962], [4.227, 1.41381723926, 41.7563723602], [3.187, 1.62296832026, 138.4693127609], [3.934, 2.86731965547, 832.0681890707], [3.684, 3.941740603, 179.3106613844], [3.115, 5.67364420834, 73.5577582899], [3.663, 1.80556740809, 31.5407534988], [3.171, 4.85529878165, 138.5656809805], [3.777, 5.94890597104, 873.1701701251], [4.357, 4.15105623366, 10175.1525105732], [3.951, 1.60185888278, 576.1613880106], [3.525, 4.8031643597, 429.7795846137], [3.33, 5.62171319933, 1116.0042814918], [3.943, 4.6264154302, 898.7730327907], [3.382, 1.45717307307, 5983.9494557222], [3.215, 3.73878297941, 335.7749571987], [3.423, 5.07987216951, 143.3434220111], [4.161, 5.39091883238, 1363.2436268736], [3.457, 3.94796907904, 444.8268741099], [3.593, 3.91831549069, 10134.5717943806], [3.666, 4.2262033899, 36.1754821775], [3.58, 3.43130119859, 912.7876784712], [3.7, 0.67445695843, 73.9302653054], [3.679, 1.10949079061, 686.958410061], [3.547, 5.63096398237, 440.8947208468], [3.622, 1.10742531477, 2250.1678102483], [3.562, 3.80604468765, 1525.3369969804], [3.33, 1.76480149289, 78.9743842613], [3.738, 1.7675491018, 384.5811860849], [3.986, 1.0684287447, 743.7932096847], [3.032, 5.77852412826, 612.1768114937], [3.008, 0.64086342534, 210.8514148832], [3.334, 4.81681647959, 597.3590166611], [3.141, 3.11768616608, 6607.9277275406], [3.022, 2.08709314702, 34.5309507748], [3.226, 3.19780030434, 377.6800874052], [4.065, 3.53637930424, 402.2191684878], [4.138, 0.28927701421, 517.1607921224], [3.697, 0.89932694516, 75.6329318292], [3.918, 5.73859894835, 94.4253185403], [3.374, 0.4097440558, 677.7696895209], [3.194, 4.56998602897, 1385.174968707], [3.18, 1.03370427552, 885.4397106664], [3.235, 5.09681747179, 464.9918589447], [3.798, 5.76464888795, 586.377006872], [3.173, 5.68964342749, 4.192785694], [3.181, 2.87968862974, 9914.1591519418], [3.355, 5.45857968674, 73.0846775379], [2.899, 5.12928266291, 448.3170843883], [3.706, 2.47342147635, 64.2571631652], [3.796, 4.29502458131, 164.5410506616], [3.534, 4.42464754991, 46.470422916], [3.488, 5.62713714766, 3189.5647568569], [2.94, 4.33606107945, 78263.70942472259], [3.309, 3.10770680369, 519.6084726772], [4.03, 4.41794838679, 772.5887669361], [2.867, 5.17129632099, 346.1875180162], [3.842, 1.87994191354, 299.7170951002], [3.846, 5.38315286213, 980.146913497], [3.724, 4.94511644698, 984.4884570373], [2.814, 2.17260061398, 191.3195694948], [3.392, 3.0855211609, 245.4942402426], [2.923, 0.37358823115, 6.4804075544], [3.025, 1.19297242418, 104.8378793578], [3.47, 1.89084704021, 44.6134431922], [2.931, 0.78809830626, 540.0553418023], [3.707, 4.14868763219, 6136.4815982734], [3.931, 5.52289695589, 6171.6456884946], [3.056, 2.97000936733, 250.6020496733], [3.117, 0.76332399369, 229.4526051326], [3.091, 4.9194127978, 221.1634019642], [3.378, 3.82658652472, 25936.85547173129], [3.041, 2.14503983522, 6604.958782124], [2.865, 0.53734608663, 273.8536000037], [2.845, 0.34922064899, 85.9391734158], [3.657, 6.02755271763, 340.8827666294], [2.818, 4.44508352472, 369.342700127], [2.861, 2.19284349075, 295.1942410061], [2.865, 3.21935127992, 3.8202786785], [2.797, 5.97725967979, 2014.0265547571], [3.28, 0.74832416123, 422.7142217227], [3.509, 1.92501559437, 343.4792050305], [2.962, 2.29867992492, 661.1586054393], [3.485, 4.5320530238, 676.2852168126], [2.836, 1.2077968366, 1119.1856752295], [3.603, 2.72183511139, 508.6264628881], [3.62, 5.57691156197, 10066.691294493], [2.731, 0.9666341177, 582.3811631341], [3.306, 6.20620840278, 11.5669651257], [3.279, 6.13563821647, 276.0717858949], [2.747, 4.5747626302, 226.6324175623], [2.825, 1.24120423378, 989.0537497468], [2.707, 0.46257342768, 1458.472094566], [2.755, 5.43548338507, 246.9787129509], [3.338, 3.98641322371, 488.5889840402], [2.96, 5.31788128818, 1467.0701142751], [3.062, 1.93542241882, 987.7817253596], [3.504, 4.10521239427, 6280.1069045748], [3.584, 3.12196206517, 108.7218485111], [2.975, 0.13746189123, 9987.4562778008], [2.634, 5.61201014857, 412.3710968744], [3.702, 0.66231252049, 10101.8553847142], [3.261, 4.39228048501, 75.3722993983], [2.939, 3.2631997985, 130.552616608], [2.742, 6.24317126103, 447.2051186955], [3.008, 4.24451493185, 170.1701249541], [3.001, 2.45489658954, 230.8252032563], [2.722, 4.98348297926, 754.0357607965], [2.928, 5.73784691627, 14.6690369863], [2.699, 2.98043546816, 27.7204748203], [3.678, 3.46436124301, 26468.0309095342], [3.5, 4.41810854452, 322.6116447801], [2.943, 3.58544468129, 12489.8856287072], [2.894, 2.2699912084, 1615.8995982268], [2.679, 1.32002304425, 236.1936451179], [2.711, 1.25250599577, 52250.5878817157], [2.573, 4.41371056719, 262.0571402144], [3.483, 1.97113718781, 655.938921424], [2.6, 3.8010722697, 70.6369969831], [3.28, 1.75059058234, 683.9894646444], [3.26, 3.46047977615, 74.1908977363], [3.097, 5.47452034532, 302.3772239761], [2.565, 3.47443238116, 2042.4977891028], [3.158, 4.58160924364, 12492.8545741238], [3.373, 5.52806001629, 10210.3166007944], [2.619, 4.43681016753, 949.1756089698], [3.29, 1.35055242247, 515.6763194141], [3.18, 4.49938964982, 694.8382229522], [2.558, 5.07921716363, 197.7999770492], [2.902, 2.61388996483, 115.3623147599], [2.586, 4.09771865336, 1448.9108670104], [3.16, 4.82168102018, 714.6788848813], [3.016, 3.16691101108, 385.7568422525], [3.001, 3.24181300229, 1618.8685436434], [3.319, 5.98200177347, 533.8355666788], [3.307, 3.31452419197, 732.97125859], [2.53, 0.13809025963, 591.9423906897], [2.975, 5.72770980032, 1011.4270345649], [2.857, 4.11031053901, 2267.4332856357], [3.091, 4.87979664891, 582.641795565], [3.422, 6.18592254593, 281.4884118663], [2.501, 0.50645055144, 29.226199388], [3.502, 0.17203520151, 371.5297482509], [2.607, 3.51828908958, 112.3933693433], [2.547, 4.45612695304, 901.2207133455], [2.778, 4.97805873371, 132.5796060375], [2.476, 1.55163657371, 1234.1272988641], [2.929, 2.34725672182, 273.1510245881], [2.724, 5.73177362443, 688.6553310904], [2.667, 6.13733078138, 161.4120465506], [2.877, 5.47506403197, 1436.5407527326], [2.779, 1.54196175338, 680.0573113813], [2.427, 4.6491343131, 392.6579409322], [3.223, 2.57976952494, 267.5856407704], [2.75, 1.29662662582, 108.982480942], [3.22, 1.0629018794, 388.7257876691], [3.236, 3.47802643973, 283.6272758804], [3.027, 5.38233284458, 44.0921783304], [2.83, 5.70274947128, 327.4375699205], [2.768, 5.4225616879, 482.2573343321], [3.23, 5.65661970187, 134.3728952865], [2.685, 5.03687735302, 763.2244813366], [2.441, 5.19830386978, 380.2396425446], [2.608, 3.11386505876, 578.449009871], [2.465, 1.4924267283, 141.6988906084], [2.332, 3.19371804203, 683.0262567979], [2.307, 4.07685834192, 78.9262001515], [2.28, 2.52476606956, 156.6767441354], [2.26, 6.23958645351, 400.5746370851], [2.301, 2.47762267951, 107.918699359], [3.089, 5.69639540598, 537.3952129264], [3.074, 1.16740737548, 58.6280888727], [2.846, 0.02430566936, 563.3705826075], [2.423, 4.24559706691, 27.7417266797], [2.67, 3.48404619442, 123.0183784819], [2.228, 3.33159258912, 1257.7031721002], [2.445, 2.29979337782, 280.2163874791], [2.26, 3.85026258012, 753.1419889192], [2.195, 4.94038065567, 1222.2784494481], [2.579, 1.76841912074, 710.7467316182], [2.402, 4.47942458428, 569.0478410098], [2.181, 5.39048760967, 318.679491517], [2.317, 6.27946729049, 493.0424021651], [2.42, 3.66436222896, 3.6233367224]], [[1479896.37, 3.67205705317, 74.7815985673], [71212.085, 6.22601006675, 63.7358983034], [68626.972, 6.13411265052, 149.5631971346], [20857.262, 5.24625494219, 11.0457002639], [21468.152, 2.6017670427, 76.2660712756], [24059.649, 3.14159265359, 0.0], [11405.346, 0.01848461561, 70.8494453042], [7496.775, 0.42360033283, 73.297125859], [4243.8, 1.41692350371, 85.8272988312], [3505.936, 2.58354048851, 138.5174968707], [3228.835, 5.25499602896, 3.9321532631], [3926.694, 3.15513991323, 71.8126531507], [3060.01, 0.15321893225, 1.4844727083], [3578.446, 2.31160668309, 224.3447957019], [2564.251, 0.98076846352, 148.0787244263], [2429.445, 3.99440122468, 52.6901980395], [1644.719, 2.65349313124, 127.4717966068], [1583.766, 1.43045619196, 78.7137518304], [1413.112, 4.57461892062, 202.2533951741], [1489.525, 2.67559167316, 56.6223513026], [1403.237, 1.36985349744, 77.7505439839], [1228.22, 1.04703640149, 62.2514255951], [1508.028, 5.05996325425, 151.0476698429], [992.085, 2.17168865909, 65.2203710117], [1032.731, 0.26459059027, 131.4039498699], [861.867, 5.05530802218, 351.8165923087], [744.445, 3.07640148939, 35.1640902212], [604.362, 0.90717667985, 984.6003316219], [646.851, 4.4729042291, 70.3281804424], [574.71, 3.23070708457, 447.7958195265], [687.47, 2.49912565674, 77.962992305], [623.602, 0.8625307382, 9.5612275556], [527.794, 5.15136007084, 2.9689454166], [561.839, 2.7177815898, 462.0229135281], [530.364, 5.91655309045, 213.299095438], [460.08, 4.22302465979, 12.5301729722], [494.28, 0.46291078127, 145.6310438715], [487.336, 0.70614146398, 380.12776796], [380.908, 3.85089591694, 3.1813937377], [444.352, 2.15558291251, 67.6680515665], [338.8, 2.53820897704, 18.1592472647], [372.947, 5.05141251694, 529.6909650946], [348.345, 1.74874852104, 71.6002048296], [405.881, 1.229617276, 22.0914005278], [268.913, 6.24069521597, 340.7708920448], [255.585, 2.95695013627, 84.3428261229], [259.465, 3.92053708924, 59.8037450403], [224.731, 3.90961468562, 160.6088973985], [221.71, 3.64727173951, 137.0330241624], [254.591, 3.50411592815, 38.1330356378], [238.29, 2.04879982674, 269.9214467406], [272.355, 3.38363105223, 222.8603229936], [200.648, 1.24861003313, 69.3649725959], [234.153, 0.27825220612, 108.4612160802], [188.515, 4.41307507326, 265.9892934775], [211.691, 0.68027381802, 111.4301614968], [205.946, 1.53379817229, 284.1485407422], [196.179, 4.77152996605, 299.1263942692], [153.102, 5.21761881347, 209.3669421749], [162.563, 4.3405435361, 33.6796175129], [150.563, 1.98966326297, 54.1746707478], [137.012, 0.40323866041, 195.1398481733], [117.171, 0.39649791652, 87.3117715395], [127.913, 2.40333045173, 39.6175083461], [104.218, 2.92152185788, 134.5853436076], [103.862, 1.81622936156, 72.3339180125], [105.741, 0.17067407327, 79.2350166922], [106.419, 0.69799543514, 2.4476805548], [95.326, 4.02880266738, 82.8583534146], [104.772, 4.43616414428, 305.3461693927], [93.825, 5.01823592717, 51.2057253312], [103.739, 2.57553519741, 191.2076949102], [106.679, 1.22996874093, 225.8292684102], [93.452, 3.09274255916, 77.2292791221], [97.398, 3.81380841075, 152.5321425512], [84.583, 5.72473747348, 68.8437077341], [77.395, 0.08281157747, 45.5766510387], [76.207, 4.20384370842, 73.8183907208], [86.249, 0.53131085736, 145.1097790097], [75.795, 3.78559826812, 75.7448064138], [77.592, 1.63628139623, 479.2883889155], [84.612, 0.6166245601, 116.4260963429], [100.209, 4.94084867643, 120.358249606], [72.142, 4.30505812564, 565.1156877467], [70.733, 2.38450718488, 60.7669528868], [71.585, 3.93906647867, 153.4953503977], [84.566, 5.56037336584, 344.7030453079], [63.556, 1.93742986679, 41.6444977756], [71.619, 3.71213491656, 408.4389436113], [61.594, 3.90006698249, 4.4534181249], [64.973, 1.55845503407, 106.9767433719], [59.913, 0.60110866128, 74.8934731519], [62.0, 4.39369268007, 453.424893819], [63.361, 4.19159979468, 184.7272873558], [62.301, 3.23773103318, 422.6660376129], [54.427, 3.72545550857, 7.1135470008], [52.474, 6.08562717749, 404.5067903482], [59.073, 1.55568469603, 456.3938392356], [52.597, 3.5049223397, 125.9873238985], [52.835, 5.20100035142, 358.9301393095], [58.123, 5.33480562448, 220.4126424388], [52.909, 4.44819701196, 426.598190876], [50.934, 0.526385342, 490.3340891794], [54.968, 1.60146090981, 14.977853527], [49.491, 4.25534603275, 5.4166259714], [51.303, 0.36772379136, 206.1855484372], [51.821, 1.75832999538, 8.0767548473], [56.964, 0.84114552694, 146.594251718], [49.109, 0.94061875871, 99.1606209555], [46.361, 5.35115472594, 152.7445908723], [48.023, 1.97249712347, 288.0806940053], [43.772, 3.03713403879, 20.6069278195], [49.493, 5.84619560979, 112.9146342051], [41.987, 0.04620500196, 128.9562693151], [48.628, 3.62817742782, 81.0013736908], [41.472, 2.33730376429, 277.0349937414], [39.983, 5.09525356576, 35.4247226521], [41.948, 2.51050760642, 24.3790223882], [38.325, 3.61946898382, 173.9422195228], [38.385, 2.0600322013, 333.657345044], [42.597, 1.260887373, 1514.2912967165], [38.855, 0.74239364306, 347.8844390456], [38.535, 4.95064283065, 92.940845832], [33.234, 1.38358507432, 74.6697239827], [33.788, 3.68407945156, 66.9172920411], [38.953, 5.49236040328, 200.7689224658], [31.85, 0.53990592534, 203.7378678824], [33.32, 6.26012644668, 1059.3819301892], [30.806, 2.53797566903, 977.4867846211], [29.198, 5.43116906, 58.1068240109], [30.059, 0.19481555617, 387.2413149608], [28.997, 3.10546504714, 991.7138786227], [35.64, 3.72863820177, 96.8729990951], [27.607, 0.37142052647, 80.1982245387], [32.492, 4.38403518987, 221.3758502853], [27.029, 1.35552416596, 0.9632078465], [31.276, 0.79566430555, 373.0142209592], [31.122, 2.05381353845, 230.5645708254], [25.883, 3.46808071409, 144.1465711632], [30.201, 0.71392007232, 109.9456887885], [24.688, 3.04162764358, 14.0146456805], [27.882, 4.76559523368, 415.5524906121], [25.11, 5.12405829717, 81.3738807063], [25.582, 2.56904073164, 522.5774180938], [24.351, 2.2028905975, 628.8515860501], [25.479, 1.795218773, 143.6253063014], [24.182, 5.67160913092, 443.8636662634], [25.679, 5.43185950751, 546.956440482], [24.177, 5.59982039849, 32.1951448046], [24.428, 3.30271734903, 617.8058857862], [23.535, 0.65842590604, 46.2097904851], [22.371, 4.82094751058, 135.5485514541], [27.179, 2.02720001624, 536.8045120954], [22.213, 4.6166462422, 391.1734682239], [21.973, 4.59216260632, 241.6102710893], [20.813, 0.24392941148, 465.9550667912], [27.264, 2.15210992383, 140.001969579], [21.356, 5.27168432406, 159.1244246902], [23.632, 4.94972840898, 561.1835344836], [24.921, 0.54550733267, 181.7583419392], [23.027, 3.80632203913, 55.1378785943], [19.799, 1.30259938601, 518.6452648307], [19.252, 1.31448491434, 543.0242872189], [19.704, 4.90869636976, 909.8187330546], [20.801, 0.91178207093, 76.4785195967], [19.876, 0.66494008343, 66.70484372], [18.957, 4.67998817036, 98.8999885246], [25.913, 4.52903186569, 454.9093665273], [21.888, 1.2337293174, 41.1019810544], [18.703, 6.09640927844, 103.0927742186], [18.207, 0.97283864525, 55.6591434561], [21.247, 4.19373732137, 329.7251917809], [19.408, 4.314682308, 6.2197751235], [18.497, 5.78624335074, 142.4496501338], [22.588, 5.84591645052, 297.6419215609], [16.77, 6.09084656811, 211.8146227297], [16.432, 2.5000846902, 61.2882177486], [20.361, 3.16137245375, 186.2117600641], [15.955, 2.98317221345, 81.8951455681], [18.953, 6.01226591746, 155.7829722581], [17.686, 4.82613965176, 273.1028404783], [15.141, 3.65588411561, 472.1748419147], [18.44, 3.47582817224, 36.6485629295], [16.303, 0.13086415177, 554.0699874828], [18.633, 0.23932740251, 23.5758732361], [14.352, 2.69389896537, 70.1157321213], [15.19, 2.43789398875, 486.4019359163], [14.002, 5.12389205028, 29.2049475286], [15.758, 4.24947053051, 146.3818033969], [14.125, 1.55719788547, 110.2063212194], [17.477, 1.94549668506, 835.0371344873], [13.691, 1.63831110442, 92.0470739547], [13.801, 0.13721153975, 235.3904959658], [13.573, 2.85427895075, 49.5088043018], [12.563, 3.20921738646, 100.3844612329], [12.39, 2.88595800082, 60.5545045657], [14.986, 0.32593957273, 259.5088859231], [12.922, 2.77565630582, 105.4922706636], [12.323, 3.36427641421, 440.6822725257], [15.233, 0.2558984518, 258.8757464767], [12.106, 0.10857558014, 157.6399519819], [12.883, 0.30655541587, 124.2904028691], [10.9, 3.42905554547, 33.1371007917], [11.206, 4.98840478043, 604.4725636619], [10.812, 3.86253020441, 767.3690829208], [11.561, 2.60450144944, 166.828672522], [10.2, 5.27810824796, 264.5048207692], [10.926, 0.64149188846, 558.0021407459], [12.315, 4.33998516461, 16.6747745564], [9.946, 0.67298666287, 31.492569389], [12.641, 4.83194943583, 114.3991069134], [10.479, 0.20404797652, 275.5505210331], [11.291, 0.96120625051, 373.9079928365], [12.144, 1.91712815063, 378.6432952517], [12.229, 0.7046545467, 218.4069048687], [10.753, 5.74480767273, 88.1149206916], [9.481, 0.65566927406, 353.301065017], [11.006, 2.62953946665, 154.0166152595], [9.113, 2.99457723478, 681.5417840896], [10.429, 2.33056994007, 132.8884225782], [9.169, 4.79284571455, 216.4804891757], [9.341, 0.75923548315, 129.9194771616], [8.917, 0.78008399009, 67.3592350258], [8.757, 6.12717748848, 150.5264049811], [9.637, 2.88664912193, 67.8804998876], [10.465, 0.36943456465, 699.7010313543], [9.301, 1.49620591593, 19.643719973], [9.367, 5.26481516822, 80.7194894005], [10.076, 3.56540311122, 278.5194664497], [9.455, 3.06088968751, 149.6750717192], [9.168, 3.02528121597, 162.0933701068], [8.395, 2.1845500165, 342.2553647531], [9.233, 5.32613442062, 152.0108776894], [9.786, 2.43713607191, 75.3028634291], [10.029, 0.81917102953, 339.2864193365], [9.429, 1.93671715384, 147.1155165798], [7.861, 4.71717822837, 106.0135355254], [8.813, 0.01616162513, 42.5864537627], [7.808, 0.61104170424, 135.336103133], [8.193, 2.59644466423, 469.1364605289], [10.084, 2.58619215129, 50.4025761791], [8.574, 5.69115937472, 760.25553592], [7.525, 2.64764195045, 5.9378908332], [8.699, 0.54050826161, 66.1835788582], [8.027, 1.94079002321, 180.2738692309], [7.547, 5.94593031762, 97.4155158163], [7.597, 5.80197738402, 450.9772132642], [8.666, 3.69933873164, 300.6108669775], [7.685, 1.47377256329, 32.2433289144], [8.195, 2.30769657654, 254.9435932136], [8.473, 1.27680705911, 39.3568759152], [7.026, 0.68091865104, 874.3940104025], [8.898, 0.16273040357, 43.1289704839], [7.205, 4.9817753104, 117.9105690512], [7.389, 4.09295183164, 92.3077063856], [7.314, 5.04313738379, 756.3233826569], [8.454, 1.22026161161, 79.4474650133], [6.925, 6.04100189247, 350.3321196004], [8.793, 1.33398658801, 48.7580447764], [7.27, 3.32609286227, 68.1893164283], [6.825, 4.77832275072, 142.6620984549], [6.816, 3.90452052962, 480.7728616238], [7.062, 1.27536949417, 68.5618234438], [7.947, 4.29940380231, 624.919432787], [6.741, 5.43264472273, 610.6923387854], [6.529, 5.43599941795, 88.7962442478], [7.635, 4.81180007736, 312.4597163935], [7.235, 3.18370421558, 268.4369740323], [8.133, 1.98936178361, 692.5874843535], [6.477, 1.05238958778, 685.4739373527], [6.63, 1.37656948077, 291.262087743], [6.878, 2.59188446778, 282.6640680339], [7.123, 5.79744758808, 468.2426886516], [6.32, 2.58497126634, 458.090760265], [6.222, 5.68982546821, 113.8778420516], [7.635, 0.49482302003, 296.1574488526], [8.521, 0.00576688485, 227.3137411185], [6.52, 3.99093726386, 42.5382696529], [6.435, 1.03721543102, 365.9006739584], [6.107, 0.35071886662, 148.5999892881], [8.199, 1.13448902886, 69.1525242748], [6.102, 0.94101111641, 13.3333221243], [5.989, 4.98445156102, 184.0941479094], [6.355, 0.16346166674, 228.276948965], [7.955, 4.03567630186, 183.2428146475], [5.884, 4.40842406038, 19.1224551112], [5.938, 5.40863870407, 17.5261078183], [5.869, 5.39494525133, 95.3885263868], [5.775, 2.81250784939, 121.8427223143], [6.07, 4.23605170027, 119.5069163441], [6.349, 3.52304701692, 285.6330134505], [5.78, 0.17831551537, 458.8415197904], [5.674, 4.16711163603, 89.7594520943], [5.534, 4.24741728108, 75.5323580927], [5.648, 2.81224199321, 154.979823106], [6.939, 3.31979953743, 306.830642101], [5.682, 4.79764449768, 248.7238180901], [6.087, 4.04640130992, 271.4059194489], [6.869, 1.34392408836, 7.8643065262], [5.611, 5.32955957046, 920.8644333185], [6.495, 0.45735814276, 106.2741679563], [5.353, 2.49825965802, 24.1183899573], [6.612, 5.24626646696, 58.319272332], [5.552, 0.24515487696, 173.6815870919], [5.209, 6.07866998675, 134.0640787458], [5.176, 3.69984512887, 778.4147831847], [5.949, 3.63204266272, 189.7232222019], [6.36, 0.35370738262, 411.620337349], [5.147, 1.55440402971, 193.655375465], [6.436, 5.18759014405, 120.9913890524], [6.994, 4.85978914075, 419.4846438752], [5.323, 0.50787742639, 16.4623262353], [5.085, 1.28917723765, 267.4737661858], [5.993, 4.70505267412, 298.2326223919], [5.507, 2.72405080404, 986.0848043302], [6.163, 1.87793216012, 397.3932433474], [4.846, 5.6671411571, 90.8232336773], [4.875, 1.24385851949, 25.6028626656], [5.374, 0.31175745933, 192.6921676185], [5.262, 1.85699096844, 114.9416236346], [5.373, 6.22242588334, 91.4563731237], [5.05, 3.39322756907, 831.1049812242], [4.637, 0.84958882655, 403.0223176399], [6.382, 2.77560901069, 198.321241911], [4.685, 4.94029403928, 902.7051860538], [5.005, 1.40309022449, 6.1503391543], [5.014, 5.57665259095, 451.9404211107], [4.58, 2.47734499363, 31.2319369581], [5.129, 3.2352870415, 109.3125493421], [4.459, 6.22635092697, 207.8824694666], [5.734, 0.96616252776, 483.2205421786], [4.425, 2.74721673213, 823.9914342234], [4.575, 1.87994871749, 44.7253177768], [4.748, 0.34902594832, 457.8783119439], [4.268, 4.89983575247, 124.5028511902], [4.709, 5.28612293112, 449.2802922348], [5.761, 2.09247769051, 187.6962327724], [4.284, 0.66132439268, 210.3301500214], [4.318, 1.68857333749, 309.2783226558], [4.332, 1.41872733238, 25.1297819136], [4.305, 1.05990546337, 606.7601855223], [4.519, 5.84384426255, 905.8865797915], [3.934, 0.417688973, 180.1619946463], [3.973, 3.22666150606, 639.897286314], [4.871, 4.61331971606, 258.0244132148], [4.604, 4.77631056831, 463.5073862364], [3.943, 3.31312639875, 107.4980082337], [4.217, 0.73383451512, 497.4476361802], [4.057, 1.67333716577, 7.4223635415], [3.854, 6.13547145503, 34.2008823747], [4.617, 5.89829880253, 303.8616966844], [5.086, 2.8523551874, 28.3111756513], [5.337, 2.36556705745, 477.8039162072], [4.456, 1.74674336635, 95.9792272178], [4.138, 3.80344455465, 460.5384408198], [3.812, 2.48508006441, 25.2727942655], [4.732, 0.87519409311, 255.0554677982], [3.843, 4.02615028031, 104.0077979553], [3.776, 2.89171052095, 27.0873353739], [4.932, 0.36238909407, 123.5396433437], [4.371, 3.74322467592, 376.1956146969], [3.747, 3.04126115463, 142.1408335931], [4.232, 4.31629167726, 446.3113468182], [3.685, 3.26448469664, 170.7608257851], [3.575, 4.31199276037, 572.2292347475], [3.567, 4.08542270507, 433.7117378768], [4.496, 2.10358455875, 838.218528225], [3.505, 3.5390238439, 520.129737539], [3.524, 3.75716903766, 473.068613792], [3.962, 5.33706246667, 43.2890291783], [3.597, 3.65066955203, 976.0023119128], [3.487, 2.12239114397, 316.3918696566], [3.475, 4.44351326599, 384.0599212231], [3.628, 2.11511417759, 73.1852512744], [3.702, 3.86923731076, 981.6313862053], [3.687, 5.18698183343, 993.198351331], [3.599, 2.07986409347, 47.6942631934], [3.807, 4.21821126511, 196.6243208816], [4.707, 4.56309173897, 47.061123747], [4.312, 0.38740046308, 988.532484885], [3.867, 2.08559458308, 457.3570470821], [4.723, 4.16947683948, 219.891377577], [3.527, 0.2037157647, 394.3548619616], [3.644, 5.82023483708, 586.3133163972], [3.328, 2.93840719007, 535.9107402181], [3.321, 4.19289134366, 114.1384744825], [4.128, 3.06165703109, 377.1588225434], [3.545, 4.41886084391, 1293.8786542777], [3.295, 2.97049569593, 15.1903018481], [3.337, 6.23473900765, 9947.0556815321], [3.253, 5.22412177835, 425.1137181677], [3.677, 5.31389484415, 141.6988906084], [3.242, 4.68868636498, 978.9712573294], [3.266, 3.57072306171, 17.2654753874], [3.435, 0.52794358986, 141.4864422873], [3.242, 2.62760698007, 6.592282139], [3.613, 1.94737668557, 661.0949149645], [3.182, 0.3660331511, 449.4927405559], [3.311, 1.25616383318, 233.9060232575], [3.403, 6.0379258317, 199.2844497575], [4.196, 4.26442082589, 381.6122406683], [3.961, 4.53281422377, 916.9322800554], [3.846, 3.76849990033, 8.5980197091], [3.35, 5.63661413371, 444.8268741099], [3.78, 5.35722293289, 328.2407190726], [3.166, 2.16351748263, 983.1158589136], [3.538, 1.89746744103, 280.9671470045], [3.93, 2.09444900058, 653.9813679637], [3.282, 1.91872815218, 2349.3284312038], [3.269, 0.52855777633, 450.4559484024], [3.582, 1.60170266832, 1587.5884225755], [3.522, 2.5178203618, 237.6781178262], [3.024, 3.54567524563, 94.4253185403], [3.528, 4.79818282081, 406.954470903], [2.996, 2.5915529362, 6133.5126528568], [3.146, 2.18094827839, 216.9224321604], [3.61, 6.15486273902, 171.6545976624], [2.977, 0.6947862817, 294.3004691288], [3.377, 1.21382647091, 162.8965192589], [3.347, 4.14981703949, 214.7835681463], [2.953, 2.18721777019, 597.3590166611], [4.049, 3.15153850922, 833.552661779], [3.725, 5.84743216544, 6058.7310542895], [3.39, 1.18412112871, 167.7224443993], [3.142, 2.26934209337, 517.1607921224], [4.077, 0.07273073033, 1190.0351205337], [3.02, 2.64998251178, 20.4468691251], [3.926, 1.41612569694, 346.1875180162], [3.11, 1.11431255827, 1044.4040766622], [2.836, 0.62522723719, 749.2098356561], [2.831, 4.78996738581, 820.0592809603], [2.824, 0.87232289414, 30.7106720963], [3.114, 1.79734939525, 414.0680179038], [2.801, 3.99301180541, 10063.7223490764], [3.489, 1.86982946081, 371.5297482509], [3.725, 1.68366366742, 683.9894646444], [3.763, 3.28247771799, 432.8179659995], [3.493, 0.98765698465, 9988.9407505091], [3.523, 5.12512607932, 105.380396079], [2.839, 4.22662576295, 990.2294059144], [3.432, 2.8048316223, 764.1876891831], [2.733, 0.42373696972, 354.9979860464], [3.146, 5.19208910201, 417.0369633204], [3.041, 5.75641149588, 409.9234163196], [3.379, 5.47448876584, 1396.2206689709], [3.102, 0.4168444478, 521.0929453855], [2.863, 0.41519700992, 894.8408795276], [2.707, 3.60084311477, 621.7380390493], [3.128, 5.23384180625, 424.1505103212], [3.107, 2.44919355737, 4.665866446], [2.683, 3.88682711832, 133.1008708993], [2.66, 4.78670985324, 362.8622925726], [3.2, 1.88004939357, 331.2096644892], [2.73, 4.12217979791, 600.5404103988], [3.414, 4.93712749827, 1140.38330388], [2.653, 5.10283251074, 118.0224436358], [3.222, 4.76521772319, 294.6729761443], [3.289, 4.26401031509, 544.5087599272], [3.1, 5.4792852793, 701.1855040626], [2.785, 5.19343849039, 144.8973306886], [2.607, 4.72531286187, 122.4758617607], [2.581, 6.27329466695, 908.3342603463], [3.285, 1.9597262267, 372.4235201282], [2.897, 0.3737809018, 582.3811631341], [2.615, 2.25516923974, 74.9940468884], [3.582, 1.27992264402, 987.5692770385], [3.115, 5.10929689813, 459.0539681115], [2.857, 5.90256930211, 525.2375469697], [2.589, 1.83177157032, 657.1627617014], [2.539, 4.14968938109, 74.7334144575], [2.797, 2.82242772664, 2036.8687148103], [2.688, 2.16500211397, 262.8078997398], [2.744, 1.54445470732, 28.5718080822], [2.539, 0.46036497385, 74.8297826771], [3.322, 3.50108539407, 82.6459050935], [2.81, 6.06709915335, 374.4986936675], [2.504, 3.523948017, 1183.6723330583], [2.565, 1.64023845161, 73.4090004436], [2.531, 3.50486296784, 293.188503436], [2.663, 4.23321349902, 421.1815649046], [2.793, 2.00644423849, 75.0422309982], [2.43, 1.56119387576, 136.0698163159], [2.553, 1.25909246207, 670.4960838257], [2.604, 3.87350462519, 74.0308390419], [2.51, 3.35948960782, 464.9918589447], [3.005, 0.81031349171, 73.88782669], [3.11, 6.14956891318, 118.8737768977], [3.234, 2.45751141361, 98.3574718034], [2.774, 6.26134027482, 1022.3126761344], [2.402, 4.38353347008, 1303.2798231389], [3.296, 3.84350963765, 511.5317178299], [2.8, 2.60339313269, 74.5209661364], [3.005, 0.76247280223, 75.6753704446], [2.434, 4.9478467943, 969.6224780949], [2.632, 0.635571102, 227.5261894396], [2.669, 0.7334022821, 73.0846775379], [2.465, 1.3064877338, 77.0692204277], [3.237, 3.19110274211, 1887.3055176757], [2.395, 2.76580569447, 768.8535556291], [3.23, 0.01981320255, 881.5075574033], [2.747, 5.59085990261, 388.7257876691], [3.008, 5.6595546366, 1969.2006632438], [3.008, 0.91409756228, 2118.7638603784], [2.465, 0.26629856014, 72.4939767069], [2.629, 4.00618677646, 26.0235537909], [2.272, 2.77069357315, 515.463871093], [2.36, 4.12736987374, 74.6215398729], [2.255, 3.3657444395, 286.596221297], [2.211, 5.18239546182, 59.2824801785], [2.994, 2.83179016989, 184.9879197867], [2.492, 1.19872353228, 383.0967133766], [2.355, 0.48259604722, 74.9416572617], [2.185, 6.0799711998, 63.6240237188], [2.228, 1.4245214891, 6219.339951688]], [[22439.904, 0.6995311876, 74.7815985673], [4727.037, 1.69901641488, 63.7358983034], [1681.903, 4.64833551727, 70.8494453042], [1433.755, 3.52119917947, 149.5631971346], [1649.559, 3.0966007898, 11.0457002639], [770.188, 0.0, 0.0], [461.009, 0.76676632849, 3.9321532631], [500.429, 6.17229032223, 76.2660712756], [390.371, 4.49605283502, 56.6223513026], [389.945, 5.52673426377, 85.8272988312], [292.097, 0.20389012095, 52.6901980395], [272.898, 3.84707823651, 138.5174968707], [286.579, 3.5335768327, 73.297125859], [205.449, 3.24758017121, 78.7137518304], [219.674, 1.96418942891, 131.4039498699], [215.788, 0.84812474187, 77.962992305], [128.834, 2.08146849515, 3.1813937377], [148.554, 4.89840863841, 127.4717966068], [117.452, 4.93414907433, 447.7958195265], [112.69, 1.01361852218, 462.0229135281], [98.875, 6.15817742611, 224.3447957019], [91.379, 0.67973399531, 18.1592472647], [89.217, 0.23425778826, 202.2533951741], [88.206, 2.93094837724, 62.2514255951], [114.066, 4.7874187396, 145.6310438715], [103.858, 3.58561789629, 71.6002048296], [61.819, 3.29964272893, 351.8165923087], [57.782, 4.90737420887, 22.0914005278], [64.369, 3.39006689398, 1.4844727083], [71.11, 6.10490061068, 454.9093665273], [50.99, 3.86691997779, 65.2203710117], [63.537, 3.96202309168, 67.6680515665], [58.957, 5.55530463687, 9.5612275556], [48.7, 3.74709235789, 269.9214467406], [43.584, 1.92568752002, 59.8037450403], [42.17, 2.61650997054, 151.0476698429], [42.42, 6.13634453301, 284.1485407422], [44.34, 5.89997845114, 71.8126531507], [37.328, 5.91300114911, 984.6003316219], [36.201, 5.40315761474, 77.7505439839], [41.989, 2.09071623849, 12.5301729722], [31.411, 4.59200004835, 148.0787244263], [31.289, 2.26696307388, 195.1398481733], [27.15, 3.53242984046, 209.3669421749], [28.152, 4.57845964163, 77.2292791221], [26.097, 0.65978256272, 120.358249606], [24.372, 5.86680440531, 69.3649725959], [23.037, 1.03776963677, 84.3428261229], [22.679, 1.7143424397, 160.6088973985], [27.65, 4.91488946525, 277.0349937414], [20.816, 2.19643268155, 45.5766510387], [19.961, 2.3207735618, 2.4476805548], [16.584, 4.77529536873, 213.299095438], [16.578, 1.85615182154, 340.7708920448], [17.196, 4.36852462522, 54.1746707478], [16.053, 3.64619586667, 152.7445908723], [14.806, 5.43824503068, 408.4389436113], [13.872, 3.38531100784, 358.9301393095], [13.328, 5.25179190495, 137.0330241624], [13.286, 1.26285812368, 134.5853436076], [12.89, 3.03270380745, 92.940845832], [12.467, 1.33213558369, 51.2057253312], [13.45, 1.53176996919, 422.6660376129], [16.442, 0.40190549188, 265.9892934775], [11.996, 5.10426418352, 191.2076949102], [12.898, 4.43242192513, 87.3117715395], [11.449, 2.02645622099, 7.1135470008], [11.826, 4.65645290272, 41.6444977756], [12.045, 3.23910807852, 116.4260963429], [11.68, 3.73278249629, 220.4126424388], [11.573, 4.16500659139, 60.5545045657], [10.175, 0.32936886913, 70.3281804424], [11.332, 1.07613885149, 72.3339180125], [9.655, 3.05950236129, 2.9689454166], [9.279, 2.43997351068, 565.1156877467], [8.986, 5.18839740735, 225.8292684102], [10.284, 1.1860258206, 344.7030453079], [8.844, 6.00894470528, 5.4166259714], [8.508, 5.24741470216, 347.8844390456], [8.319, 3.71723808749, 14.977853527], [8.276, 2.27408171672, 299.1263942692], [8.064, 5.71681525179, 55.1378785943], [7.83, 0.90313686798, 222.8603229936], [8.335, 4.48600419464, 70.1157321213], [8.763, 5.8151944012, 153.4953503977], [8.472, 3.91387041805, 333.657345044], [9.874, 5.9652614366, 35.1640902212], [9.647, 0.38872626737, 415.5524906121], [7.106, 1.5059848847, 991.7138786227], [6.596, 1.18068235818, 96.8729990951], [8.065, 2.25930653257, 206.1855484372], [6.479, 2.99461362786, 380.12776796], [9.012, 6.0534362253, 146.3818033969], [6.131, 0.05596259493, 99.1606209555], [5.799, 0.82465326137, 142.4496501338], [5.816, 4.63029217647, 49.5088043018], [5.608, 0.66268449799, 58.1068240109], [5.966, 2.48916255408, 373.0142209592], [5.71, 2.23566160404, 80.1982245387], [5.272, 5.06746739956, 440.6822725257], [5.162, 4.36457872885, 977.4867846211], [5.428, 0.85181859845, 546.956440482], [5.766, 0.34229025692, 536.8045120954], [5.924, 5.48443563529, 76.4785195967], [5.34, 3.730731164, 23.5758732361], [5.174, 4.13873402677, 132.8884225782], [5.31, 6.14059082194, 39.6175083461], [5.79, 3.39593613152, 458.090760265], [5.007, 4.25821412289, 522.5774180938], [4.967, 4.79184817938, 387.2413149608], [5.183, 3.25775152471, 561.1835344836], [4.602, 1.69262282455, 152.5321425512], [5.302, 1.83522660093, 124.2904028691], [5.005, 0.3663056595, 60.7669528868], [4.454, 2.30288945184, 312.4597163935], [4.457, 0.45775730382, 33.1371007917], [5.722, 0.89523844278, 81.8951455681], [5.842, 0.92039543147, 20.6069278195], [5.743, 0.66226484448, 38.1330356378], [4.255, 3.55373860346, 479.2883889155], [4.19, 4.37674804409, 79.2350166922], [4.194, 1.6498626717, 128.9562693151], [5.125, 1.40553011416, 144.1465711632], [4.045, 6.07362424798, 19.643719973], [3.984, 5.7717840641, 288.0806940053], [5.017, 2.99521887648, 29.2049475286], [3.842, 2.60024827897, 426.598190876], [3.861, 3.19886211335, 159.1244246902], [3.87, 4.43713601497, 141.6988906084], [5.316, 4.07970979457, 111.4301614968], [4.553, 0.01384318412, 298.2326223919], [3.737, 5.28319518103, 353.301065017], [3.939, 5.27301148162, 521.0929453855], [3.71, 5.15385470848, 490.3340891794], [4.039, 0.60924359087, 152.0108776894], [3.861, 1.343943837, 535.3200393871], [4.385, 0.620576801, 827.1728279611], [3.567, 4.71986443303, 6.9010986797], [3.576, 3.24526237368, 230.5645708254], [3.469, 0.79054323335, 983.1158589136], [4.524, 2.86819565712, 129.9194771616], [3.648, 5.59395544992, 774.4826299216], [3.513, 4.49630054276, 376.1956146969], [3.432, 2.55614913808, 258.8757464767], [4.352, 2.09804374929, 404.5067903482], [3.336, 0.89628904042, 469.1364605289], [3.274, 3.86236880159, 42.5382696529], [3.201, 2.76459652868, 248.7238180901], [3.184, 0.07709843451, 1514.2912967165], [3.783, 5.29835962126, 369.0820676961], [3.266, 2.24754480216, 73.8183907208], [3.055, 2.60120354415, 433.7117378768], [3.051, 4.54953369151, 980.6681783588], [3.062, 1.27089879603, 200.7689224658], [3.055, 1.70878161343, 639.897286314], [3.11, 3.63187411723, 16.6747745564], [3.472, 4.93521260607, 411.620337349], [3.531, 4.49372794858, 881.5075574033], [3.284, 5.59170577331, 472.1748419147], [3.015, 6.02967446446, 291.262087743], [3.467, 2.17484439267, 554.0699874828], [3.138, 0.52367930477, 1094.8066528413], [3.257, 2.49339546514, 451.7279727896], [2.881, 0.50481204892, 305.3461693927], [3.082, 4.20145474081, 146.594251718], [2.883, 2.44983947531, 135.336103133], [2.965, 0.3929499553, 25.2727942655], [2.831, 2.52728803131, 867.2804634017], [2.728, 5.29491477549, 125.9873238985], [2.857, 4.71106805785, 218.9281697305], [2.763, 4.27510031656, 350.3321196004], [2.73, 1.98552777251, 82.8583534146], [2.857, 3.08706426922, 216.4804891757], [3.365, 3.67691210011, 661.0949149645], [2.925, 1.43646759644, 381.6122406683], [2.753, 0.39468041761, 33.6796175129], [2.756, 4.6267249884, 1357.6145525811], [3.45, 2.12911756067, 685.4739373527], [2.571, 5.92862393284, 89.7594520943], [2.677, 0.76342313946, 486.4019359163], [2.689, 4.16436463826, 235.3904959658], [2.646, 3.81808560938, 550.8885937451], [3.369, 3.17071565345, 108.4612160802], [2.613, 5.68333838067, 24.3790223882], [2.736, 1.87107584495, 529.6909650946], [2.606, 4.36605237304, 1080.5795588397], [2.407, 3.07343136742, 391.1734682239], [2.446, 5.7384638154, 535.9107402181], [2.334, 5.18878243102, 1059.3819301892], [2.568, 1.09886876369, 913.0001267923], [2.236, 6.10115874045, 140.001969579], [3.053, 5.35047433775, 681.5417840896]], [[1164.382, 4.73453291602, 74.7815985673], [212.367, 3.34255734999, 63.7358983034], [196.408, 2.98004616318, 70.8494453042], [104.527, 0.95807937648, 11.0457002639], [71.681, 0.02528455665, 56.6223513026], [72.54, 0.99701907912, 149.5631971346], [54.875, 2.59436811267, 3.9321532631], [34.029, 3.81553325635, 76.2660712756], [32.081, 3.5982517784, 131.4039498699], [29.641, 3.44111535957, 85.8272988312], [36.377, 5.65035573017, 77.962992305], [27.663, 0.4283600147, 3.1813937377], [27.464, 2.55126467481, 52.6901980395], [24.569, 5.14034173566, 78.7137518304], [19.39, 5.13477648625, 18.1592472647], [15.767, 0.37116951743, 447.7958195265], [15.441, 5.57271837433, 462.0229135281], [15.232, 3.85998573509, 73.297125859], [15.475, 2.97496547327, 145.6310438715], [17.951, 0.0, 0.0], [15.958, 5.19915553904, 71.6002048296], [11.056, 6.03152659562, 138.5174968707], [10.529, 3.58261852497, 224.3447957019], [7.606, 1.44542030704, 1.4844727083], [8.121, 2.61579604319, 22.0914005278], [7.107, 5.43946774526, 269.9214467406], [6.459, 4.37142319461, 284.1485407422], [6.818, 0.01396812984, 151.0476698429], [8.101, 0.29563819537, 127.4717966068], [5.768, 4.22672716593, 373.0142209592], [5.022, 1.84154937974, 202.2533951741], [4.692, 2.7840457544, 120.358249606], [5.087, 0.77745294804, 62.2514255951], [4.16, 1.83820502779, 72.3339180125], [3.922, 1.88900691473, 209.3669421749], [5.201, 4.15791319343, 195.1398481733], [3.636, 1.99709010456, 65.2203710117], [3.582, 3.92592140377, 124.2904028691], [3.808, 1.04818660873, 92.940845832], [4.241, 3.95755998904, 9.5612275556], [3.497, 1.54139696251, 148.0787244263], [3.195, 2.98608971329, 387.2413149608], [3.95, 1.85721204932, 152.7445908723], [3.277, 1.40881404192, 351.8165923087], [3.605, 1.17366167402, 153.4953503977], [2.94, 6.03594958459, 12.5301729722], [2.744, 5.64674283515, 134.5853436076], [2.8, 0.79480255927, 572.2292347475], [3.054, 5.84310939105, 160.6088973985], [2.662, 1.98593312104, 450.9772132642], [2.7, 2.77036653988, 213.299095438], [2.323, 1.67918985468, 358.9301393095], [2.254, 5.77129530133, 84.3428261229], [2.291, 4.814246016, 536.8045120954], [2.213, 2.20360299816, 465.9550667912]], [[52.996, 3.00838033088, 74.7815985673], [9.887, 1.91399083603, 56.6223513026], [7.008, 5.08677527404, 11.0457002639], [6.728, 5.42924958121, 149.5631971346], [3.703, 5.22728581851, 131.4039498699], [3.361, 1.29695290266, 85.8272988312], [2.664, 0.44064577837, 63.7358983034], [2.309, 0.92380720934, 145.6310438715], [2.383, 6.21390585593, 358.9301393095], [2.288, 2.23425399117, 440.6822725257], [3.093, 3.14159265359, 0.0]]]

This table contains Uranus’ periodic terms (all of them) from the planetary theory VSOP87 for the radius vector at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 449-451.

Venus

Class to model Venus planet.

pymeeus.Venus.ORBITAL_ELEM = [[181.979801, 58519.2130302, 0.00031014, 1.5e-08], [0.72332982, 0.0, 0.0, 0.0], [0.00677192, -4.7765e-05, 9.81e-08, 4.6e-10], [3.394662, 0.0010037, -8.8e-07, -7e-09], [76.67992, 0.9011206, 0.00040618, -9.3e-08], [131.563703, 1.4022288, -0.00107618, -5.678e-06]]

This table contains the parameters to compute Venus’ orbital elements for the mean equinox of date. Based in Table 31.A, page 212

pymeeus.Venus.ORBITAL_ELEM_J2000 = [[181.979801, 58517.815676, 1.65e-06, -2e-09], [3.394662, -0.0008568, -3.244e-05, 9e-09], [76.67992, -0.2780134, -0.00014257, -1.64e-07], [131.563703, 0.0048746, -0.00138467, -5.695e-06]]

This table contains the parameters to compute Venus’ orbital elements for the standard equinox J2000.0. Based on Table 31.B, page 214

pymeeus.Venus.VSOP87_B = [[[5923638.472, 0.26702775813, 10213.285546211], [40107.978, 1.14737178106, 20426.571092422], [32814.918, 3.14159265359, 0.0], [1011.392, 1.08946123021, 30639.856638633], [149.458, 6.25390296069, 18073.7049386502], [137.788, 0.86020146523, 1577.3435424478], [129.973, 3.67152483651, 9437.762934887], [119.507, 3.70468812804, 2352.8661537718], [107.971, 4.53903677647, 22003.9146348698], [92.029, 1.53954562706, 9153.9036160218], [52.982, 2.28138172277, 5507.5532386674], [45.617, 0.72319641722, 10239.5838660108], [38.855, 2.93437865147, 10186.9872264112], [43.491, 6.14015776699, 11790.6290886588], [41.7, 5.99126845246, 19896.8801273274], [39.644, 3.86842095901, 8635.9420037632], [39.175, 3.94960351174, 529.6909650946], [33.32, 4.83194909595, 14143.4952424306], [23.711, 2.90646621218, 10988.808157535], [23.5, 2.00770618322, 13367.9726311066], [21.809, 2.69701424951, 19651.048481098], [20.653, 0.98666685459, 775.522611324], [16.976, 4.13711782135, 10021.8372800994], [17.835, 5.96268643102, 25934.1243310894], [14.949, 5.61075168206, 10404.7338123226], [18.579, 1.80529277514, 40853.142184844], [15.407, 3.29563855296, 11015.1064773348], [12.936, 5.42651448496, 29580.4747084438], [11.962, 3.57604253827, 10742.9765113056], [11.827, 1.190709196, 8624.2126509272], [11.466, 5.12780364967, 6283.0758499914], [9.484, 2.75167834335, 191.4482661116], [13.129, 5.70735942511, 9683.5945811164], [8.583, 0.43182249199, 9786.687355335], [9.763, 0.14614896296, 20618.0193585336], [8.148, 1.30548515603, 15720.8387848784], [6.05, 6.26541665966, 11322.6640983044], [5.955, 4.92235372433, 1059.3819301892], [6.983, 3.44920932146, 17298.1823273262], [6.228, 1.13312070908, 29864.334027309], [6.186, 4.92498052443, 19367.1891622328], [6.155, 2.424139469, 4705.7323075436], [5.204, 3.42528906628, 9103.9069941176], [6.0, 3.57639095526, 3154.6870848956], [4.796, 3.86676184909, 7860.4193924392], [5.289, 4.99182712443, 7084.8967811152], [4.07, 5.5879814474, 12566.1516999828], [3.942, 5.68758787835, 10206.1719992102], [3.797, 3.89520601076, 10192.5101507186], [3.798, 6.06410995916, 10234.0609417034], [3.579, 0.73789669235, 4551.9534970588], [3.641, 2.61501257205, 15874.6175953632], [3.266, 0.97517223854, 23581.2581773176], [2.813, 0.29951755546, 9411.4646150872], [3.048, 2.5108514699, 33794.5437235286], [2.559, 4.58043833032, 801.8209311238], [2.462, 5.05790874754, 29050.7837433492], [2.593, 5.73113176751, 20213.271996984], [2.625, 4.24272906574, 213.299095438], [2.246, 0.82112963936, 28286.9904848612], [2.229, 2.22457598233, 10426.584641649], [1.742, 1.48394229233, 7058.5984613154], [1.66, 5.42775825275, 32217.2001810808], [1.491, 4.64883377941, 1109.3785520934], [2.01, 0.75702888128, 9999.986450773], [1.562, 3.93962080463, 37724.7534197482], [1.538, 2.1730957708, 21535.9496445154], [1.546, 4.70759186462, 14945.3161735544], [1.2, 1.48282382657, 9830.3890139878], [1.224, 5.55090394449, 5661.3320491522], [1.111, 1.20276209213, 9573.388259897], [1.064, 1.98891375536, 26.2983197998], [1.041, 5.38535116069, 7.1135470008], [1.036, 1.16719443387, 8662.240323563], [1.143, 3.20596958337, 3532.0606928114], [1.201, 0.81913312536, 8094.5216858326], [1.005, 2.38429892132, 27511.4678735372], [1.047, 4.56525030769, 20419.45754542119], [0.968, 6.18496721871, 25158.6017197654], [1.044, 1.98055689074, 10596.1820784342], [0.962, 0.48573513747, 23958.6317852334], [0.846, 0.01566400887, 3128.3887650958], [0.792, 5.39686899735, 24356.7807886416], [0.858, 5.34692750735, 41654.9631159678], [0.757, 6.25904553773, 20452.8694122218], [0.801, 4.62406152514, 9929.4262273458], [0.802, 5.3723489252, 10497.1448650762], [0.75, 3.85219782842, 21228.3920235458], [0.7, 1.98097957188, 3930.2096962196], [0.719, 6.11596800207, 10218.8084705184], [0.672, 6.23429601219, 14765.2390432698], [0.639, 5.37566437358, 1589.0728952838], [0.605, 2.4233039112, 10251.3132188468], [0.726, 6.16683781802, 18875.525869774], [0.613, 5.9973118069, 4732.0306273434], [0.72, 3.84286345199, 10207.7626219036], [0.637, 6.17053891156, 10220.3990932118], [0.515, 1.03001478293, 22779.4372461938], [0.574, 0.43813688572, 17085.9586657222], [0.51, 1.41065159851, 9161.0171630226], [0.569, 3.34601425125, 3340.6124266998], [0.608, 1.25236241968, 10175.2578735752], [0.524, 2.3979424867, 26087.9031415742], [0.542, 1.34665646732, 29088.811415985], [0.527, 4.01994270827, 18849.2275499742], [0.569, 1.65498800378, 39264.0692895602], [0.518, 4.96996115446, 30213.258447757], [0.514, 5.78413007838, 12592.4500197826], [0.538, 4.56198493922, 10063.7223490764], [0.484, 4.18538027381, 14919.0178537546], [0.493, 4.79939382739, 9146.790069021], [0.427, 3.76876868949, 11272.6674764002], [0.495, 0.49175293655, 45585.1728121874], [0.494, 3.74345863918, 31441.6775697568], [0.524, 0.97991794166, 30110.1656735384], [0.483, 1.87898057316, 51066.427731055], [0.505, 3.70047474212, 20400.2727726222], [0.351, 4.3402657449, 10137.0194749354], [0.355, 5.56672554631, 18837.49819713819], [0.328, 3.7842737891, 6681.2248533996], [0.349, 4.20550749672, 20956.2620575166], [0.333, 4.44969281739, 28521.0927782546], [0.296, 2.83205515646, 17277.4069318338], [0.311, 2.57334132897, 20809.4676246452], [0.294, 0.75089224483, 3149.1641605882], [0.377, 3.98143308775, 21202.093703746], [0.272, 5.56183082489, 16496.3613962024], [0.314, 0.02584607093, 13745.3462390224], [0.263, 0.55328410985, 36147.4098773004], [0.286, 5.16408902215, 426.598190876], [0.279, 4.29871615943, 19999.97290154599], [0.28, 1.92925047377, 49515.382508407], [0.265, 4.81168402147, 20235.1228263104], [0.273, 5.12740051559, 35371.8872659764], [0.306, 5.28903794869, 382.8965322232], [0.223, 2.50591724074, 26709.6469424134], [0.235, 5.96522395118, 10198.033075026], [0.234, 3.52866583267, 10228.538017396], [0.224, 6.24561979789, 7064.1213856228], [0.251, 2.84739274245, 33019.0211122046], [0.196, 1.5061039379, 31749.2351907264], [0.192, 1.69321442572, 13341.6743113068], [0.18, 6.19353087076, 39793.7602546548], [0.199, 1.1643332188, 22805.7355659936], [0.18, 3.72646417141, 1551.045222648], [0.173, 3.35235705827, 53445.5922046266], [0.195, 1.51901264131, 43232.3066584156], [0.174, 2.84049662693, 9967.4538999816], [0.163, 4.29160537719, 36949.2308084242], [0.169, 0.37000676558, 10459.1171924404], [0.137, 5.61149803116, 10529.6774158676], [0.139, 0.87847805052, 16522.6597160022], [0.139, 4.12576475427, 36301.18868778519], [0.127, 5.14447758616, 5481.2549188676], [0.131, 3.11317801589, 9896.8936765544], [0.131, 0.89697384735, 3442.5749449654], [0.121, 1.32802112907, 38734.3783244656], [0.122, 1.59017183044, 10110.1927719924], [0.123, 2.33714216061, 10316.3783204296], [0.133, 2.90682399304, 9793.8009023358], [0.111, 2.5207763476, 13936.794505134], [0.12, 0.36076947165, 536.8045120954], [0.115, 2.53355582059, 26735.9452622132], [0.108, 2.65839634325, 10232.95530711079], [0.108, 0.55230439694, 10193.61578531121], [0.138, 1.0691923924, 65236.2212932854], [0.101, 3.17012502017, 19317.1925403286], [0.127, 5.63110477712, 10288.0671447783], [0.127, 3.86278127025, 10138.5039476437], [0.137, 2.9335065946, 47162.5163546352], [0.095, 5.03917884334, 52175.8062831484], [0.094, 0.71308489207, 38500.2760310722], [0.092, 5.46204624886, 11764.330768859], [0.096, 1.52914774412, 9690.7081281172], [0.101, 0.83318284426, 6489.776587288], [0.115, 3.76443612245, 522.5774180938], [0.089, 2.53312656681, 10735.8629643048], [0.082, 0.85628515615, 2379.1644735716], [0.103, 5.2268323762, 103.0927742186], [0.09, 2.12423586627, 28313.288804661], [0.09, 0.39668501735, 9580.5018068978], [0.074, 6.0268009555, 3723.508958923], [0.081, 5.25045057985, 10419.4710946482], [0.08, 4.23724598221, 10007.0999977738], [0.091, 2.48874147947, 10846.0692855242], [0.085, 3.82784790321, 51868.2486621788], [0.081, 2.26235214191, 3903.9113764198], [0.097, 0.772950916, 18307.8072320436], [0.094, 0.17063414792, 6872.6731195112], [0.08, 5.62254102739, 29999.959352319], [0.068, 2.7176293667, 16983.9961474566], [0.066, 0.76731351736, 20.7753954924], [0.075, 0.36155638007, 39302.096962196], [0.075, 2.27327165974, 8521.1198767086], [0.058, 2.14482855875, 8631.326197928], [0.064, 5.83569051301, 2118.7638603784], [0.058, 2.98524209824, 19889.76658032659], [0.054, 1.78260668333, 40077.61957352], [0.055, 4.70485939861, 639.897286314], [0.06, 5.8966189292, 41962.5207369374], [0.066, 2.24746237999, 74.7815985673], [0.061, 3.40726181591, 27490.6924780448], [0.051, 3.07811180039, 24150.080051345], [0.057, 2.30081371235, 20529.66386664059], [0.052, 2.37192464233, 29573.361161443], [0.052, 4.76610409132, 57375.8019008462], [0.047, 1.61630288856, 30831.3049047446], [0.054, 5.89684197257, 19903.99367432819], [0.04, 5.32101847424, 42430.4857272918], [0.051, 5.29186795569, 29587.5882554446]], [[513347.602, 1.80364310797, 10213.285546211], [4380.1, 3.38615711591, 20426.571092422], [196.586, 2.53001197486, 30639.856638633], [199.162, 0.0, 0.0], [14.031, 2.27087044687, 9437.762934887], [12.958, 1.50735622957, 18073.7049386502], [11.941, 5.60462450426, 1577.3435424478], [10.324, 5.24224313355, 2352.8661537718], [9.294, 6.07545631303, 22003.9146348698], [7.441, 1.50257909439, 11790.6290886588], [8.031, 0.29371105198, 9153.9036160218], [7.514, 5.0808188599, 10186.9872264112], [4.669, 3.87801635015, 10239.5838660108], [4.399, 3.58872736593, 40853.142184844], [3.975, 1.28397121206, 10404.7338123226], [4.657, 0.75073886819, 5507.5532386674], [3.783, 4.33004753984, 19651.048481098], [3.39, 4.88976070903, 10988.808157535], [3.555, 1.25927550356, 19896.8801273274], [3.479, 5.5079700216, 529.6909650946], [2.884, 0.08549582037, 14143.4952424306], [1.786, 0.37134513186, 13367.9726311066], [1.6, 1.68378002982, 20618.0193585336], [1.539, 1.21683853657, 25934.1243310894], [1.341, 2.90077139758, 15720.8387848784], [0.993, 1.74681248965, 11322.6640983044], [1.165, 6.13437155401, 7860.4193924392], [1.115, 0.6674369038, 29580.4747084438], [0.923, 2.25384969096, 10021.8372800994], [0.965, 1.36425494833, 9683.5945811164], [0.973, 0.39071758442, 6283.0758499914], [0.805, 0.53331923557, 8624.2126509272], [0.913, 0.76046003719, 8635.9420037632], [0.991, 0.5531987933, 19367.1891622328], [0.609, 2.62364470139, 23581.2581773176], [0.532, 5.10925676528, 9786.687355335], [0.476, 6.17672999981, 11015.1064773348], [0.472, 1.696726292, 17298.1823273262], [0.503, 2.65840772485, 29864.334027309], [0.456, 5.01205315518, 10742.9765113056], [0.478, 3.94100005156, 775.522611324], [0.477, 3.71554345922, 10596.1820784342], [0.347, 2.3455106268, 9411.4646150872], [0.458, 2.31894399069, 9999.986450773], [0.374, 3.76878356974, 21228.3920235458], [0.44, 4.33400244581, 15874.6175953632], [0.349, 1.31468836511, 10234.0609417034], [0.31, 5.45422332781, 10192.5101507186], [0.346, 0.94242286364, 1059.3819301892], [0.308, 4.90145899142, 3930.2096962196], [0.331, 4.89498986674, 10206.1719992102], [0.269, 2.39650266204, 801.8209311238], [0.269, 0.00589873499, 9830.3890139878], [0.261, 3.48196147279, 7058.5984613154], [0.29, 0.10953964861, 29050.7837433492], [0.283, 6.12133736787, 20419.45754542119], [0.232, 3.0784585003, 12566.1516999828], [0.265, 4.02431894973, 33794.5437235286], [0.22, 2.37315851889, 4551.9534970588], [0.247, 3.07626728158, 28286.9904848612], [0.202, 3.56872121409, 21535.9496445154], [0.225, 5.7688889632, 213.299095438], [0.217, 0.88382111135, 20213.271996984], [0.172, 6.12653050186, 9161.0171630226], [0.195, 5.472408554, 37724.7534197482], [0.153, 4.07656151671, 27511.4678735372], [0.174, 1.33676849359, 32217.2001810808], [0.157, 5.98474214437, 26.2983197998], [0.163, 5.4551913476, 10426.584641649], [0.129, 2.08748660996, 3128.3887650958], [0.131, 1.51959002513, 10218.8084705184], [0.139, 4.42330401713, 10220.3990932118], [0.126, 2.62296638037, 22779.4372461938], [0.146, 4.69869606856, 25158.6017197654], [0.172, 6.13435208788, 18837.49819713819], [0.157, 5.44507403858, 4705.7323075436], [0.117, 6.18296175153, 20400.2727726222], [0.164, 3.30849473132, 51066.427731055], [0.113, 3.64412860654, 7.1135470008], [0.109, 5.21220660788, 8662.240323563], [0.133, 1.78047296245, 191.4482661116], [0.117, 0.14681677884, 9146.790069021], [0.116, 0.61940521198, 41654.9631159678], [0.096, 1.49631428731, 7084.8967811152], [0.096, 1.21744230443, 10198.033075026], [0.082, 1.45863866349, 10207.7626219036], [0.085, 6.04057728058, 21202.093703746], [0.083, 0.19985600927, 14919.0178537546], [0.077, 5.5013231061, 5661.3320491522], [0.077, 2.00173927326, 10228.538017396], [0.093, 1.85466268819, 45585.1728121874], [0.066, 3.25826124156, 1109.3785520934], [0.089, 0.64100435648, 3154.6870848956], [0.061, 3.80043027736, 11272.6674764002], [0.077, 1.8551635895, 3532.0606928114], [0.062, 0.81341290651, 382.8965322232], [0.072, 2.35312965005, 9103.9069941176], [0.053, 3.21969389511, 20452.8694122218], [0.067, 1.42090542131, 24356.7807886416], [0.056, 2.97733070198, 30110.1656735384], [0.051, 4.22406663447, 20809.4676246452], [0.058, 6.20761936031, 29088.811415985], [0.061, 3.27309494322, 49515.382508407], [0.046, 5.49443476235, 31441.6775697568], [0.05, 4.16651052942, 13341.6743113068], [0.047, 1.25473247769, 33019.0211122046], [0.047, 2.03402044389, 23958.6317852334], [0.036, 5.24409311105, 3149.1641605882], [0.038, 4.15337829669, 18849.2275499742], [0.042, 0.43005959574, 1589.0728952838], [0.041, 1.21289342964, 12592.4500197826], [0.038, 5.91928287144, 28521.0927782546], [0.033, 3.98241699279, 4732.0306273434], [0.035, 2.24417218267, 16496.3613962024], [0.04, 6.13293942728, 26087.9031415742], [0.044, 1.7812329486, 426.598190876], [0.041, 3.16744909855, 39264.0692895602], [0.033, 4.96183427323, 536.8045120954], [0.034, 0.12963030501, 30213.258447757], [0.036, 5.41167321573, 522.5774180938], [0.027, 4.44250239485, 17277.4069318338], [0.034, 5.94541303751, 9929.4262273458], [0.033, 0.40689057274, 10497.1448650762], [0.023, 2.59067946967, 10175.2578735752], [0.022, 0.69625017371, 19999.97290154599], [0.023, 3.76162101633, 10251.3132188468], [0.023, 0.62711494266, 35371.8872659764], [0.022, 4.64142978776, 19889.76658032659], [0.02, 4.01315480107, 26709.6469424134], [0.02, 4.0334440068, 29573.361161443], [0.023, 0.90416640595, 8094.5216858326], [0.022, 1.92092469688, 17085.9586657222], [0.019, 5.04938942644, 6681.2248533996]], [[22377.665, 3.38509143877, 10213.285546211], [281.739, 0.0, 0.0], [173.164, 5.25563766915, 20426.571092422], [26.945, 3.87040891568, 30639.856638633], [1.174, 0.09768632072, 10186.9872264112], [0.685, 3.19139067811, 11790.6290886588], [0.788, 4.36515965295, 10239.5838660108], [0.592, 5.22270440328, 40853.142184844], [0.515, 6.12821215207, 10988.808157535], [0.538, 0.57550272342, 2352.8661537718], [0.54, 3.11657836329, 18073.7049386502], [0.454, 2.79306867629, 10404.7338123226], [0.374, 6.10468482446, 9437.762934887], [0.431, 4.00778431184, 1577.3435424478], [0.36, 6.0174784232, 19651.048481098], [0.375, 1.31319959789, 22003.9146348698], [0.354, 5.12509281266, 9153.9036160218], [0.15, 4.58623687118, 15720.8387848784], [0.164, 5.41790158607, 5507.5532386674], [0.159, 2.78191550878, 19896.8801273274], [0.157, 0.65774905071, 529.6909650946], [0.155, 2.54824315372, 9683.5945811164], [0.109, 2.01866665583, 14143.4952424306], [0.106, 2.28289033017, 6283.0758499914], [0.115, 3.23636374193, 20618.0193585336], [0.128, 5.32400510939, 13367.9726311066], [0.087, 3.28265082435, 11322.6640983044], [0.09, 5.23585072275, 10596.1820784342], [0.055, 4.82369879741, 7058.5984613154], [0.044, 0.58444963462, 10206.1719992102], [0.044, 2.34401612969, 19367.1891622328], [0.038, 4.55053233088, 9999.986450773], [0.039, 5.84340580032, 10220.3990932118], [0.036, 4.41006216127, 51066.427731055], [0.039, 3.14348236386, 9411.4646150872], [0.033, 4.5574866034, 10742.9765113056], [0.037, 2.79630938717, 25934.1243310894], [0.034, 0.55287110072, 11015.1064773348], [0.034, 2.25809144959, 29580.4747084438], [0.038, 1.88638747393, 801.8209311238], [0.034, 1.22706917271, 10021.8372800994], [0.027, 4.83867137637, 9830.3890139878], [0.027, 4.3114017935, 23581.2581773176], [0.027, 2.17187621336, 8635.9420037632], [0.02, 5.66581696952, 21228.3920235458], [0.024, 2.1720810785, 18849.2275499742], [0.02, 5.29318634138, 775.522611324], [0.019, 2.73486845601, 3128.3887650958], [0.013, 3.40362915274, 1059.3819301892], [0.014, 0.05074160195, 7860.4193924392], [0.014, 5.43035907265, 26.2983197998], [0.012, 3.24834347355, 9103.9069941176], [0.013, 5.04826725887, 7.1135470008], [0.015, 1.42027402522, 29050.7837433492], [0.01, 4.9813806749, 10426.584641649], [0.011, 0.85773045784, 17298.1823273262], [0.011, 4.23048200054, 29864.334027309], [0.01, 0.26447399758, 3930.2096962196], [0.011, 1.46728576671, 20419.45754542119]], [[646.671, 4.99166565277, 10213.285546211], [19.952, 3.14159265359, 0.0], [5.54, 0.77376923951, 20426.571092422], [2.526, 5.4449376302, 30639.856638633], [0.079, 1.51447613604, 10186.9872264112], [0.056, 0.63647808442, 40853.142184844], [0.058, 5.7073117655, 10239.5838660108], [0.031, 4.72523061067, 11790.6290886588], [0.026, 1.02068113372, 10988.808157535], [0.025, 5.60599130442, 9437.762934887], [0.017, 2.05293621864, 2352.8661537718], [0.011, 4.33056892256, 10404.7338123226], [0.009, 1.36283915068, 19651.048481098], [0.007, 4.69592781899, 18073.7049386502], [0.006, 2.97926526705, 22003.9146348698]], [[14.102, 0.31537190181, 10213.285546211], [0.19, 2.35466404492, 20426.571092422], [0.164, 0.74476215141, 30639.856638633], [0.214, 3.14159265359, 0.0], [0.004, 2.34190883009, 40853.142184844]], [[0.239, 2.05201727566, 10213.285546211], [0.039, 0.0, 0.0], [0.011, 3.82500275251, 20426.571092422], [0.009, 2.32953116868, 30639.856638633]]]

This table contains Venus’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric latitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in page 420.

pymeeus.Venus.VSOP87_L = [[[317614666.774, 0.0, 0.0], [1353968.419, 5.59313319619, 10213.285546211], [89891.645, 5.30650048468, 20426.571092422], [5477.201, 4.41630652531, 7860.4193924392], [3455.732, 2.69964470778, 11790.6290886588], [2372.061, 2.99377539568, 3930.2096962196], [1317.108, 5.18668219093, 26.2983197998], [1664.069, 4.2501893503, 1577.3435424478], [1438.322, 4.15745043958, 9683.5945811164], [1200.521, 6.15357115319, 30639.856638633], [761.38, 1.9501470212, 529.6909650946], [707.676, 1.06466707214, 775.522611324], [584.836, 3.99839884762, 191.4482661116], [769.314, 0.81629615911, 9437.762934887], [499.915, 4.12340210074, 15720.8387848784], [326.221, 4.59056473097, 10404.7338123226], [429.498, 3.58642859752, 19367.1891622328], [326.967, 5.67736583705, 5507.5532386674], [231.937, 3.16251057072, 9153.9036160218], [179.695, 4.65337915578, 1109.3785520934], [128.263, 4.22604493736, 20.7753954924], [155.464, 5.57043888948, 19651.048481098], [127.907, 0.96209822685, 5661.3320491522], [105.547, 1.53721191253, 801.8209311238], [85.722, 0.35589249966, 3154.6870848956], [99.121, 0.83288185132, 213.299095438], [98.804, 5.39389655503, 13367.9726311066], [82.094, 3.21596990826, 18837.49819713819], [88.031, 3.88868860307, 9999.986450773], [71.577, 0.11145739345, 11015.1064773348], [56.122, 4.24039855475, 7.1135470008], [70.239, 0.67458813282, 23581.2581773176], [50.796, 0.24531603049, 11322.6640983044], [46.111, 5.31576465717, 18073.7049386502], [44.574, 6.06282201966, 40853.142184844], [42.594, 5.3287333721, 2352.8661537718], [42.635, 1.7995542168, 7084.8967811152], [41.177, 0.36240972161, 382.8965322232], [35.749, 2.70448479296, 10206.1719992102], [33.893, 2.02347322198, 6283.0758499914], [29.138, 3.59230925768, 22003.9146348698], [28.479, 2.22375414002, 1059.3819301892], [29.85, 4.02176977477, 10239.5838660108], [33.252, 2.10025596509, 27511.4678735372], [30.172, 4.9419191989, 13745.3462390224], [29.252, 3.51392387787, 283.8593188652], [24.424, 2.70177493852, 8624.2126509272], [20.274, 3.79493637509, 14143.4952424306], [24.322, 4.27814493315, 5.5229243074], [26.26, 0.54067587552, 17298.1823273262], [20.492, 0.58547075036, 38.0276726358], [18.988, 4.13811500642, 4551.9534970588], [23.739, 4.82870797552, 6872.6731195112], [15.885, 1.50067222283, 8635.9420037632], [19.069, 6.12025580313, 29050.7837433492], [18.269, 3.04740408477, 19999.97290154599], [13.656, 4.41336292334, 3532.0606928114], [17.094, 3.5216152643, 31441.6775697568], [10.955, 2.84562790076, 18307.8072320436], [11.048, 2.58361219075, 9786.687355335], [9.904, 1.08737710389, 7064.1213856228], [10.576, 0.85419784436, 10596.1820784342], [9.231, 5.52471655579, 12566.1516999828], [11.599, 5.81007422699, 19896.8801273274], [11.807, 1.91250672543, 21228.3920235458], [10.105, 2.34270786693, 10742.9765113056], [8.154, 1.92331359797, 15.252471185], [8.893, 1.97291388515, 10186.9872264112], [9.352, 4.94508904764, 35371.8872659764], [6.821, 4.39733188968, 8662.240323563], [6.688, 1.55310437864, 14945.3161735544], [6.413, 2.17677652923, 10988.808157535], [5.802, 1.93462125906, 3340.6124266998], [5.95, 2.96578175391, 4732.0306273434], [5.275, 5.01877102496, 28286.9904848612], [7.047, 1.00111452053, 632.7837393132], [5.048, 4.27886209626, 29580.4747084438], [6.305, 0.3550633118, 103.0927742186], [5.959, 5.04792949464, 245.8316462294], [4.651, 0.85218058876, 6770.7106012456], [5.58, 0.48723384809, 522.5774180938], [5.327, 3.03115417024, 10021.8372800994], [5.01, 5.773751665, 28521.0927782546], [4.608, 1.93302108394, 4705.7323075436], [5.526, 3.36797048901, 25158.6017197654], [3.863, 4.89351531412, 25934.1243310894], [5.303, 0.08161426841, 39302.096962196], [4.254, 5.36046113295, 21535.9496445154], [3.763, 1.05304597315, 19.66976089979], [4.407, 4.02575374517, 74.7815985673], [4.145, 1.14356412295, 9676.4810341156], [4.318, 4.38289970585, 316.3918696566], [3.642, 6.11733529325, 3128.3887650958], [3.238, 5.39551036769, 419.4846438752], [3.909, 4.0526363533, 9690.7081281172], [3.152, 0.72553551731, 16496.3613962024], [3.496, 0.72414615705, 3723.508958923], [3.755, 3.80208713127, 19786.67380610799], [2.891, 3.3378273777, 32217.2001810808], [3.016, 1.57249112496, 17277.4069318338], [3.825, 0.19612312903, 426.598190876], [3.798, 0.45524571743, 10316.3783204296], [2.57, 1.20813474107, 13936.794505134], [2.796, 3.65128969074, 206.1855484372], [2.466, 3.61988676373, 1551.045222648], [3.108, 1.50325806664, 43232.3066584156], [2.976, 4.79415001304, 29088.811415985], [2.217, 3.59623681714, 24356.7807886416], [2.227, 4.9605922194, 536.8045120954], [2.397, 3.45249688427, 19374.3027092336], [2.462, 0.53295178258, 19360.07561523199], [2.205, 2.70399309963, 12592.4500197826], [2.23, 3.01413465913, 18875.525869774], [1.858, 4.06129152783, 2379.1644735716], [1.807, 3.15086214479, 9573.388259897], [2.238, 5.52216925076, 10138.5039476437], [2.195, 2.32046770554, 8094.5216858326], [2.101, 2.90421302975, 9967.4538999816], [1.916, 4.56513949099, 2218.7571041868], [1.467, 2.42640162465, 10234.0609417034], [1.726, 5.59790693845, 20452.8694122218], [1.455, 2.44757248737, 1589.0728952838], [1.991, 4.04623390359, 31749.2351907264], [1.406, 2.71736996917, 16983.9961474566], [1.658, 0.11252373292, 153.7788104848], [1.851, 2.92898027939, 47162.5163546352], [1.492, 1.07513892753, 9103.9069941176], [1.247, 2.48433565896, 17778.11626694899], [1.549, 4.205536543, 3442.5749449654], [1.243, 3.95452438599, 170.6728706192], [1.694, 6.20694480406, 33019.0211122046], [1.221, 4.77931820602, 30110.1656735384], [1.206, 0.30531303095, 29864.334027309], [1.238, 5.05581820608, 20213.271996984], [1.152, 3.26229919481, 11.729352836], [1.179, 1.69491074791, 20400.2727726222], [1.165, 2.88995128147, 574.3447983348], [1.306, 0.14519588607, 9146.790069021], [1.113, 1.52598846804, 10426.584641649], [1.104, 2.58791423813, 18849.2275499742], [1.045, 0.5753921642, 15874.6175953632], [1.36, 2.41976595457, 38734.3783244656], [0.981, 4.37930727798, 110.2063212194], [1.095, 0.49492867814, 51066.427731055], [1.146, 4.54241454215, 10220.3990932118], [0.981, 1.65915064733, 10103.0792249916], [1.27, 4.69374306132, 9050.8108418032], [1.065, 4.41645258887, 22805.7355659936], [0.854, 2.34437926957, 6681.2248533996], [1.104, 0.49781459714, 1.4844727083], [1.075, 1.09857593161, 377.3736079158], [1.114, 4.35024775806, 51092.7260508548], [0.829, 5.41196274578, 27991.40181316], [0.9, 2.74195379617, 41962.5207369374], [1.01, 2.96092073452, 135.62532501], [0.768, 3.98260860494, 18844.61174413899], [1.018, 1.36891050752, 36949.2308084242], [0.726, 1.67728773965, 21202.093703746], [0.727, 0.89048212541, 467.9649903544], [0.869, 2.93767679827, 10192.5101507186], [0.696, 5.35698039414, 10063.7223490764], [0.92, 4.17128923588, 18734.4054229196], [0.691, 1.50594097883, 27197.2816936676], [0.835, 0.48050621092, 20618.0193585336], [0.711, 0.19750098222, 18830.38465013739], [0.811, 0.16685071959, 12432.0426503978], [0.756, 3.79022623226, 9161.0171630226], [0.622, 5.33659507738, 9411.4646150872], [0.862, 5.72705356405, 10175.1525105732], [0.853, 0.10404188453, 2107.0345075424], [0.742, 3.96365892051, 813.5502839598], [0.705, 0.71229660616, 220.4126424388], [0.584, 1.719006927, 36.0278666774], [0.612, 0.36418385449, 949.1756089698], [0.587, 1.5864894929, 6.62855890001], [0.581, 5.49288908804, 6309.3741697912], [0.581, 4.80353237853, 24150.080051345], [0.516, 6.07328802561, 38.1330356378], [0.627, 5.47281424954, 9580.5018068978], [0.601, 1.40500080774, 1162.4747044078], [0.62, 4.00681042667, 9992.8729037722], [0.611, 3.62010998629, 7255.5696517344], [0.697, 2.22359630727, 348.924420448], [0.693, 5.77432072851, 55022.9357470744], [0.494, 0.29761886866, 7058.5984613154], [0.563, 0.24172140474, 37410.5672398786], [0.487, 5.86917216517, 10137.0194749354], [0.493, 2.04534833854, 735.8765135318], [0.636, 2.79707392326, 40879.4405046438], [0.519, 4.1394565763, 16522.6597160022], [0.535, 4.6056959782, 19573.37471066999], [0.555, 5.88120421263, 26735.9452622132], [0.44, 5.61490649795, 23958.6317852334], [0.541, 0.62494922735, 10007.0999977738], [0.427, 4.02335620501, 14.2270940016], [0.434, 0.29028429049, 9264.1099372412], [0.451, 1.66320363626, 26087.9031415742], [0.422, 3.38413582674, 10787.6303445458], [0.569, 5.14001758731, 27490.6924780448], [0.421, 4.23407313457, 39793.7602546548], [0.458, 5.2878636882, 49.7570254718], [0.418, 5.6909779079, 14765.2390432698], [0.475, 0.97544690438, 1052.2683831884], [0.387, 4.41665162999, 21.8508293264], [0.523, 2.9051242687, 20235.1228263104], [0.506, 5.26999314618, 29999.959352319], [0.438, 2.49457071132, 20956.2620575166], [0.53, 0.71368442157, 33794.5437235286], [0.382, 1.9211936548, 3.9321532631], [0.365, 3.81715328784, 20419.45754542119], [0.426, 2.06384083608, 38204.687359371], [0.496, 0.44077356179, 9835.9119382952], [0.41, 4.93346326003, 19264.0963880142], [0.38, 3.79573358631, 8521.1198767086], [0.334, 5.51158557799, 10251.3132188468], [0.412, 2.56129670728, 77.673770428], [0.418, 2.37865963521, 32.5325507914], [0.325, 6.03020523465, 18947.7045183576], [0.4, 0.91999360201, 227.476132789], [0.437, 0.91420135162, 58953.145443294], [0.36, 0.82477639126, 22.7752014508], [0.413, 4.22381905655, 44809.6502008634], [0.375, 3.15657291896, 19992.85935454519], [0.371, 6.05370874275, 20007.0864485468], [0.361, 5.44371227904, 19470.28193645139], [0.386, 5.28120540405, 47623.8527860896], [0.389, 0.7321667224, 19050.7972925762], [0.32, 2.84811591194, 10199.0584522094], [0.386, 3.88754165531, 1975.492545856], [0.276, 4.33979180814, 20809.4676246452], [0.276, 0.50647429773, 9830.3890139878], [0.309, 3.79299100668, 18204.71445782499], [0.377, 0.73768791281, 11506.7697697936], [0.322, 0.961384421, 30666.1549584328], [0.363, 1.3047240669, 9367.2027114598], [0.366, 2.79972786028, 11272.6674764002], [0.271, 4.66141338193, 846.0828347512], [0.259, 0.4203117575, 39264.0692895602], [0.285, 0.40546033634, 30.914125635], [0.247, 4.80676426942, 36147.4098773004], [0.264, 2.71608177583, 11.0457002639], [0.233, 2.76423842887, 187.9251477626], [0.248, 1.60765612338, 10497.1448650762], [0.271, 0.8234891963, 19793.7873531088], [0.225, 3.80080957016, 8631.326197928], [0.263, 1.92311689852, 37724.7534197482], [0.214, 5.01663795092, 639.897286314], [0.289, 0.12342601246, 20277.0078952874], [0.21, 0.12771800254, 29.8214381488], [0.227, 4.18036609801, 17468.8551979454], [0.274, 2.34929343, 62883.3551395136], [0.26, 5.65254501655, 48739.859897083], [0.271, 4.95325404028, 4214.0690150848], [0.219, 2.08775228014, 194.9713844606], [0.191, 2.49267248333, 568.8218740274], [0.25, 1.52909737354, 6037.244203762], [0.231, 5.23674429498, 491.6632924588], [0.182, 4.98046042571, 18418.01355326299], [0.188, 2.82273639603, 1385.8952763362], [0.204, 4.09939796199, 14919.0178537546], [0.176, 3.8240098246, 9360.089164459], [0.198, 2.76491873243, 10217.2176994741], [0.168, 5.19268384202, 1066.49547719], [0.199, 1.95301487982, 7564.830720738], [0.171, 2.59623459612, 20405.7956969296], [0.172, 5.29332132623, 11764.330768859], [0.165, 2.88557908025, 10207.7626219036], [0.164, 3.25435371801, 3914.9572250346], [0.2, 3.8244321809, 18314.9207790444], [0.169, 1.78341902878, 31022.7531708562], [0.179, 0.90840065587, 7880.08915333899], [0.163, 2.79665037814, 41.5507909848], [0.154, 3.90796293476, 30213.258447757], [0.153, 0.07463240782, 28528.2063252554], [0.194, 5.95838706838, 8617.0991039264], [0.171, 4.58206324409, 20447.3464879144], [0.15, 2.11647586229, 17248.4253018544], [0.149, 2.1725998632, 9929.4262273458], [0.191, 0.82310353823, 52670.0695933026], [0.148, 2.94315921485, 41654.9631159678], [0.149, 4.49798039726, 30831.3049047446], [0.184, 2.46923348701, 34596.3646546524], [0.146, 2.694529303, 43071.8992890308], [0.159, 2.1113771357, 19317.1925403286], [0.154, 2.76536164654, 28513.97923125379], [0.14, 4.94595038686, 9256.9963902404], [0.141, 2.57248458154, 13553.8979729108], [0.137, 1.66482327575, 2636.725472637], [0.14, 5.2303960599, 22645.32819660879], [0.132, 5.35690599728, 19624.7501612982], [0.14, 2.90637712614, 48947.6638706766], [0.129, 3.95303623681, 32858.61374281979], [0.156, 6.01143316387, 29057.89729034999], [0.134, 5.75241675118, 68050.42387851159], [0.154, 3.66827363753, 276.7457718644], [0.176, 3.77298381177, 66813.5648357332], [0.126, 5.00217740223, 27461.7108480654], [0.135, 1.3480701392, 53285.1848352418], [0.15, 0.25029475344, 290.972865866], [0.152, 3.13035670092, 29043.67019634839], [0.169, 5.0434810943, 73.297125859], [0.166, 5.39219948035, 41236.0387170672], [0.163, 5.59796070987, 7576.560073574], [0.126, 0.77391784606, 49.9966219042], [0.163, 0.44241846674, 20350.3050211464], [0.136, 3.09066368912, 418.9243989006], [0.154, 0.4708619096, 28418.000004036], [0.12, 0.88536981986, 29573.361161443], [0.132, 1.4800976904, 17085.9586657222], [0.126, 1.39497760964, 966.9708774356], [0.143, 3.84026797958, 14128.2427712456], [0.147, 2.11627427804, 34363.365597556], [0.106, 2.04696932293, 37674.9963942764], [0.106, 1.43873202489, 27682.1407441564], [0.149, 0.09286508794, 8144.2787113044], [0.103, 0.0199204147, 18300.69368504279], [0.121, 3.57602835443, 45.1412196366], [0.125, 0.11630302078, 149.5631971346], [0.102, 4.1794709773, 2333.196392872], [0.099, 1.51324741657, 10419.4710946482], [0.133, 3.02183293676, 76251.32777062019], [0.136, 4.17517197268, 3646.3503773544], [0.123, 0.44045588682, 515.463871093], [0.113, 5.69261397718, 10110.1927719924], [0.098, 6.23797900467, 202.2533951741], [0.099, 3.75627530197, 59728.668054618], [0.101, 4.62832557536, 65236.2212932854], [0.111, 1.25947267588, 10846.0692855242], [0.11, 5.87455577536, 38500.2760310722], [0.128, 6.0102456216, 90394.82301305079], [0.091, 1.77665981007, 1539.315869812], [0.092, 0.99804571578, 95.9792272178], [0.12, 3.93060866244, 38526.574350872], [0.117, 2.24143299549, 56600.2792895222], [0.118, 6.0912132594, 29786.660256881], [0.098, 4.60938156207, 11787.1059703098], [0.097, 3.92727733144, 11794.1522070078], [0.093, 5.23395435043, 14169.7935622304], [0.096, 5.27525709038, 8734.4189721466], [0.094, 0.18166654805, 67589.08744705719], [0.11, 4.96279287076, 48417.97290558199], [0.086, 0.39533409505, 3956.5080160194], [0.085, 5.69642646462, 37703.9780242558], [0.114, 5.19676285428, 70743.77453195279], [0.081, 5.51324815184, 412.3710968744], [0.089, 2.13409771828, 44768.0994098786], [0.084, 6.02475904578, 10632.7701900862], [0.085, 4.60912614442, 45585.1728121874], [0.078, 4.47358603432, 114.43928868521], [0.097, 4.02223363535, 10218.8084705184], [0.081, 1.03870237004, 9793.8009023358], [0.092, 0.80301220092, 24383.0791084414], [0.087, 2.15124790938, 28313.288804661], [0.075, 5.17868679355, 63658.8777508376], [0.078, 5.81927313665, 567.7186377304], [0.075, 1.72618192481, 19580.4882576708], [0.071, 0.10259261764, 90695.75207512038], [0.077, 6.16012067704, 1573.8204240988], [0.076, 5.12884307551, 49515.382508407], [0.069, 0.29569499484, 10175.2578735752], [0.061, 4.80385549281, 19889.76658032659], [0.06, 4.56685040226, 30426.557543195], [0.062, 4.16222812699, 42430.4857272918], [0.05, 6.17899839001, 22779.4372461938], [0.048, 1.52546758016, 20639.87018786], [0.046, 4.41738494249, 34570.0663348526], [0.037, 4.69675087759, 44007.8292697396]], [[1021352943052.898, 0.0, 0.0], [95707.712, 2.46424448979, 10213.285546211], [14444.977, 0.51624564679, 20426.571092422], [213.374, 1.79547929368, 30639.856638633], [151.669, 6.10635282369, 1577.3435424478], [173.904, 2.65535879443, 26.2983197998], [82.233, 5.7023413373, 191.4482661116], [69.734, 2.68136034979, 9437.762934887], [52.408, 3.60013087656, 775.522611324], [38.318, 1.03379038025, 529.6909650946], [29.633, 1.25056322354, 5507.5532386674], [25.056, 6.10664792855, 10404.7338123226], [17.772, 6.19369798901, 1109.3785520934], [16.51, 2.6433045264, 7.1135470008], [14.23, 5.45138233941, 9153.9036160218], [12.607, 1.24464400689, 40853.142184844], [11.627, 4.97604495371, 213.299095438], [12.563, 1.88122199199, 382.8965322232], [8.869, 0.95282732248, 13367.9726311066], [7.374, 4.3947676058, 10206.1719992102], [6.552, 2.28168808058, 2352.8661537718], [6.255, 4.08056644034, 3154.6870848956], [6.697, 5.05673427795, 801.8209311238], [4.084, 4.1210382603, 18837.49819713819], [4.882, 3.44515199115, 11015.1064773348], [3.549, 6.19934345402, 5.5229243074], [3.448, 1.77405651704, 11322.6640983044], [4.29, 0.0815480921, 6283.0758499914], [3.694, 2.48453945256, 5661.3320491522], [3.555, 1.4803694942, 1059.3819301892], [3.023, 2.24092938317, 18073.7049386502], [3.0, 0.39169917698, 15.252471185], [2.563, 0.35147506973, 22003.9146348698], [2.774, 1.45683830639, 10239.5838660108], [2.951, 5.34618097429, 7084.8967811152], [2.344, 2.36652432105, 17298.1823273262], [2.405, 2.36085282088, 10596.1820784342], [1.72, 4.72129626061, 10186.9872264112], [2.209, 2.07730338665, 8635.9420037632], [2.122, 4.47091605309, 8624.2126509272], [1.527, 0.67146857292, 14143.4952424306], [1.473, 2.59350470099, 7064.1213856228], [1.311, 0.90408820221, 12566.1516999828], [1.474, 5.92236241437, 9786.687355335], [1.237, 2.59740787132, 4551.9534970588], [1.219, 2.83617320088, 9676.4810341156], [1.116, 3.83715584719, 21228.3920235458], [1.006, 4.26200749078, 426.598190876], [1.15, 2.35531987378, 9690.7081281172], [1.219, 2.27324315182, 522.5774180938], [1.15, 0.81088598778, 10742.9765113056], [1.101, 3.74248783564, 18307.8072320436], [1.031, 2.03889374176, 38.0276726358], [0.971, 6.10590045414, 3532.0606928114], [0.844, 4.75124127613, 10988.808157535], [0.908, 1.06613723738, 10021.8372800994], [0.824, 0.23090829723, 28286.9904848612], [0.821, 2.60456032773, 19.66976089979], [0.728, 0.10716917942, 4705.7323075436], [0.744, 3.33129778857, 536.8045120954], [0.816, 1.27303930175, 19896.8801273274], [0.929, 1.08024621325, 11790.6290886588], [0.797, 2.23891816523, 3723.508958923], [0.704, 5.95307260017, 20.7753954924], [0.665, 0.21346689192, 7860.4193924392], [0.733, 2.22147883292, 19360.07561523199], [0.702, 1.76206343944, 19374.3027092336], [0.575, 2.38792087791, 6770.7106012456], [0.538, 1.52023264138, 25934.1243310894], [0.69, 4.01873754171, 19651.048481098], [0.532, 4.4157613089, 574.3447983348], [0.54, 2.15936134728, 16496.3613962024], [0.576, 5.41170044566, 206.1855484372], [0.482, 0.40815793538, 3340.6124266998], [0.501, 3.08578363577, 245.8316462294], [0.488, 5.22311611589, 25158.6017197654], [0.45, 0.212798446, 11.729352836], [0.432, 1.32004964493, 103.0927742186], [0.434, 5.91094755233, 19786.67380610799], [0.564, 0.38776462529, 19367.1891622328], [0.421, 2.71057839701, 13936.794505134], [0.549, 6.08792865644, 3930.2096962196], [0.478, 4.70234715828, 14945.3161735544], [0.408, 4.80890663927, 32217.2001810808], [0.404, 2.85003595942, 29864.334027309], [0.407, 2.94002049006, 10220.3990932118], [0.359, 0.72354778897, 419.4846438752], [0.449, 1.44520508753, 8662.240323563], [0.353, 2.22195492336, 51066.427731055], [0.324, 1.40308439067, 29580.4747084438], [0.443, 1.93864353398, 9146.790069021], [0.314, 0.96837035284, 20618.0193585336], [0.324, 5.10759068171, 24356.7807886416], [0.324, 1.80146948625, 18830.38465013739], [0.37, 6.16895004656, 2218.7571041868], [0.278, 2.20429108375, 18844.61174413899], [0.286, 3.08459438435, 17277.4069318338], [0.383, 0.13890934755, 4732.0306273434], [0.292, 0.43528982259, 29088.811415985], [0.273, 5.84415407168, 9573.388259897], [0.324, 2.14144542781, 9999.986450773], [0.264, 5.20407029554, 220.4126424388], [0.254, 0.34411959301, 28521.0927782546], [0.3, 3.76014360906, 8094.5216858326], [0.301, 3.64457981649, 20400.2727726222], [0.287, 1.84003536598, 1589.0728952838], [0.206, 0.97167234723, 10234.0609417034], [0.212, 0.241736776, 36.0278666774], [0.216, 5.8861892303, 18875.525869774], [0.198, 1.89506914939, 20452.8694122218], [0.258, 6.27611355094, 1551.045222648], [0.197, 2.09222675324, 9683.5945811164], [0.217, 5.79472589364, 9103.9069941176], [0.188, 0.39123199129, 19573.37471066999], [0.195, 6.23142464829, 30110.1656735384], [0.187, 5.49670351645, 170.6728706192], [0.178, 4.90042854659, 10787.6303445458], [0.188, 1.62614804098, 9161.0171630226], [0.211, 2.71884568392, 15720.8387848784], [0.177, 1.88170417337, 33019.0211122046], [0.209, 2.66033422116, 3442.5749449654], [0.164, 4.92240093026, 10426.584641649], [0.186, 5.13678812068, 7255.5696517344], [0.177, 5.70206821967, 9992.8729037722], [0.214, 2.70027196648, 3128.3887650958], [0.208, 3.38876526854, 17778.11626694899], [0.147, 4.25008782855, 16983.9961474566], [0.148, 3.4640441813, 21202.093703746], [0.189, 1.43553862242, 2379.1644735716], [0.139, 2.99154379541, 110.2063212194], [0.159, 5.23851679605, 10007.0999977738], [0.136, 0.88942869764, 22805.7355659936], [0.155, 5.90500835975, 12592.4500197826], [0.151, 0.03422618975, 27991.40181316], [0.153, 4.01743770323, 33794.5437235286], [0.121, 0.51392111799, 21535.9496445154], [0.109, 2.25388616761, 26735.9452622132], [0.109, 0.78612823474, 6681.2248533996], [0.122, 4.84805105466, 19992.85935454519], [0.112, 3.31796669604, 36949.2308084242], [0.106, 3.34507236765, 10103.0792249916], [0.114, 4.36384000196, 20007.0864485468], [0.098, 5.07711736751, 135.62532501], [0.12, 5.41870615047, 37724.7534197482], [0.103, 2.62610244425, 20213.271996984], [0.085, 5.04808202087, 9830.3890139878], [0.103, 2.01549383816, 45585.1728121874], [0.088, 2.62613816931, 21.8508293264], [0.084, 3.50355880173, 639.897286314], [0.099, 0.61079620895, 41654.9631159678], [0.088, 3.63836700262, 49515.382508407], [0.098, 2.42401801881, 23581.2581773176], [0.081, 0.46468679835, 77.673770428], [0.092, 4.82530051729, 29043.67019634839], [0.102, 4.27051236894, 15874.6175953632], [0.09, 4.34075776744, 29057.89729034999], [0.081, 0.01896422336, 24150.080051345], [0.093, 1.79250830018, 12432.0426503978], [0.087, 5.25157021446, 14128.2427712456], [0.089, 5.65756996753, 377.3736079158], [0.097, 5.67942873241, 227.476132789], [0.076, 2.93363913259, 38204.687359371], [0.091, 2.60544242067, 1052.2683831884], [0.087, 3.82284200928, 27511.4678735372], [0.073, 4.75280755154, 40879.4405046438], [0.067, 3.54815262526, 30666.1549584328], [0.067, 5.81350818057, 20809.4676246452], [0.064, 4.24772678145, 153.7788104848], [0.064, 2.99454749109, 27197.2816936676], [0.07, 4.03868009742, 56600.2792895222], [0.071, 4.3362880685, 39264.0692895602], [0.069, 1.73648747605, 37410.5672398786], [0.065, 1.08206062736, 68050.42387851159], [0.062, 4.7769845465, 3914.9572250346], [0.061, 4.96121014691, 34596.3646546524], [0.063, 5.04865067599, 53445.5922046266], [0.058, 3.74010494151, 1066.49547719], [0.057, 5.39355890141, 20419.45754542119], [0.057, 3.59399518494, 735.8765135318], [0.065, 2.10322000074, 74.7815985673], [0.073, 1.31083648835, 11272.6674764002], [0.055, 1.33161298098, 18300.69368504279], [0.065, 4.21150522641, 49.7570254718], [0.061, 5.66161679402, 17468.8551979454], [0.053, 4.30231233835, 18849.2275499742], [0.055, 2.63906959481, 52670.0695933026], [0.05, 5.69803054279, 39793.7602546548], [0.049, 0.77345264124, 35371.8872659764], [0.048, 6.00565977593, 283.8593188652], [0.047, 2.63299859494, 51868.2486621788], [0.046, 0.05105081843, 38526.574350872], [0.05, 4.37549274002, 28513.97923125379], [0.046, 2.93422086586, 27682.1407441564], [0.051, 5.45979584751, 60530.4889857418], [0.045, 5.59492908223, 467.9649903544], [0.045, 2.34680401001, 9411.4646150872], [0.045, 0.02999265111, 44809.6502008634], [0.043, 5.62725673544, 14.2270940016], [0.047, 3.73567275749, 64460.6986819614], [0.046, 0.12586526756, 57375.8019008462], [0.044, 2.03114426076, 18314.9207790444], [0.039, 0.99375127466, 94138.32702008578], [0.053, 0.41974404621, 30831.3049047446], [0.055, 1.38351566741, 38500.2760310722], [0.041, 4.47012768909, 40077.61957352], [0.041, 0.36665992484, 19999.97290154599], [0.04, 3.06358586355, 813.5502839598], [0.04, 2.16802870803, 59728.668054618], [0.037, 1.08739100421, 17085.9586657222], [0.039, 1.31040309875, 48739.859897083], [0.036, 1.43280677914, 42456.7840470916], [0.037, 0.14190533464, 29050.7837433492], [0.037, 3.66792179278, 20956.2620575166], [0.025, 3.38876180652, 7058.5984613154], [0.031, 6.16829805337, 10192.5101507186]], [[54127.076, 0.0, 0.0], [3891.46, 0.34514360047, 10213.285546211], [1337.88, 2.02011286082, 20426.571092422], [23.836, 2.04592119012, 26.2983197998], [19.331, 3.53527371458, 30639.856638633], [9.984, 3.97130221102, 775.522611324], [7.046, 1.51962593409, 1577.3435424478], [6.014, 0.99926757893, 191.4482661116], [3.163, 4.36095475762, 9437.762934887], [2.125, 2.65810625752, 40853.142184844], [1.934, 3.39287946981, 382.8965322232], [1.46, 6.04899046273, 529.6909650946], [1.346, 2.94633106219, 5507.5532386674], [1.025, 1.40598904981, 10404.7338123226], [1.221, 3.73339139385, 3154.6870848956], [1.033, 3.52858472904, 11015.1064773348], [0.955, 5.11133878923, 801.8209311238], [0.742, 1.49198584483, 1109.3785520934], [0.525, 3.32087042103, 213.299095438], [0.578, 0.92614279843, 10239.5838660108], [0.602, 5.19220099775, 7084.8967811152], [0.431, 2.67159914364, 13367.9726311066], [0.389, 4.14116341739, 8635.9420037632], [0.355, 1.12061570874, 9153.9036160218], [0.301, 3.90047984197, 10596.1820784342], [0.212, 5.32697688872, 18837.49819713819], [0.26, 0.22761369281, 2352.8661537718], [0.243, 4.70747902991, 6283.0758499914], [0.196, 4.10467294392, 11790.6290886588], [0.194, 6.0119775947, 7860.4193924392], [0.14, 4.97015671653, 14143.4952424306], [0.134, 4.10529011674, 17298.1823273262], [0.119, 3.39375528828, 11322.6640983044], [0.126, 0.0985451614, 18073.7049386502], [0.122, 5.92478855457, 574.3447983348], [0.107, 0.35660030184, 1059.3819301892], [0.108, 2.25352052666, 12566.1516999828], [0.093, 5.48716819776, 10021.8372800994], [0.084, 4.89744332968, 18307.8072320436], [0.074, 2.35354025573, 426.598190876], [0.093, 4.99316908815, 14945.3161735544], [0.069, 3.8640906586, 51066.427731055], [0.082, 5.36280178643, 10186.9872264112], [0.077, 3.75728548372, 3723.508958923], [0.063, 5.39882267787, 21228.3920235458], [0.056, 4.11564786973, 7064.1213856228], [0.056, 6.26920407723, 32217.2001810808], [0.06, 5.02186497542, 19367.1891622328], [0.058, 5.1326370967, 20400.2727726222], [0.051, 4.52870390511, 22003.9146348698], [0.041, 3.83822107919, 16496.3613962024], [0.041, 3.36020411807, 4705.7323075436], [0.043, 5.98371820588, 15720.8387848784], [0.047, 0.18498155367, 18875.525869774], [0.038, 0.52232581277, 1551.045222648], [0.039, 5.05391675878, 10742.9765113056], [0.036, 3.16242472203, 20452.8694122218], [0.035, 5.17462577483, 29088.811415985], [0.035, 3.47325394141, 24356.7807886416], [0.031, 4.74511706231, 28521.0927782546], [0.029, 0.19383091192, 19896.8801273274], [0.033, 1.80059867635, 20618.0193585336], [0.024, 0.14022912457, 21202.093703746], [0.022, 4.73565067573, 10988.808157535], [0.018, 0.74039763161, 25158.6017197654], [0.019, 1.53770232218, 28286.9904848612], [0.014, 1.49084059765, 30110.1656735384], [0.013, 4.72171283479, 29864.334027309], [0.013, 5.79700427846, 29580.4747084438], [0.014, 3.6920522501, 27511.4678735372]], [[135.742, 4.80389020993, 10213.285546211], [77.846, 3.66876371591, 20426.571092422], [26.023, 0.0, 0.0], [1.214, 5.31970006917, 30639.856638633], [0.254, 4.15021671822, 40853.142184844], [0.008, 5.55523563261, 51066.427731055], [0.008, 1.40501229148, 1577.3435424478], [0.006, 1.27791479726, 10404.7338123226], [0.006, 5.76447068962, 10239.5838660108]], [[114.016, 3.14159265359, 0.0], [3.209, 5.20514170164, 20426.571092422], [1.714, 2.51099591706, 10213.285546211], [0.05, 0.71356059861, 30639.856638633], [0.023, 5.68127607034, 40853.142184844]], [[0.874, 3.14159265359, 0.0], [0.117, 0.54643013, 20426.571092422], [0.118, 1.90548541922, 10213.285546211], [0.002, 1.07734277826, 40853.142184844], [0.002, 1.89460223529, 30639.856638633]]]

This table contains Venus’s periodic terms (all of them) from the planetary theory VSOP87 for the heliocentric longitude at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 418-420.

pymeeus.Venus.VSOP87_R = [[[72334820.905, 0.0, 0.0], [489824.185, 4.02151832268, 10213.285546211], [1658.058, 4.90206728012, 20426.571092422], [1632.093, 2.84548851892, 7860.4193924392], [1378.048, 1.128465906, 11790.6290886588], [498.399, 2.58682187717, 9683.5945811164], [373.958, 1.42314837063, 3930.2096962196], [263.616, 5.5293818592, 9437.762934887], [237.455, 2.55135903978, 15720.8387848784], [221.983, 2.01346776772, 19367.1891622328], [119.467, 3.01975365264, 10404.7338123226], [125.896, 2.72769833559, 1577.3435424478], [76.178, 1.59577224486, 9153.9036160218], [85.336, 3.98607953754, 19651.048481098], [74.347, 4.11957854039, 5507.5532386674], [41.904, 1.64273363458, 18837.49819713819], [42.493, 3.81864530735, 13367.9726311066], [39.43, 5.39019422358, 23581.2581773176], [29.042, 5.67739528728, 5661.3320491522], [27.555, 5.72392407794, 775.522611324], [27.283, 4.82151812709, 11015.1064773348], [31.274, 2.31806719544, 9999.986450773], [19.7, 4.96157560245, 11322.6640983044], [19.809, 0.53189326492, 27511.4678735372], [13.567, 3.75530870628, 18073.7049386502], [12.921, 1.13381083556, 10206.1719992102], [16.215, 0.5645383429, 529.6909650946], [11.821, 5.09025877427, 3154.6870848956], [11.728, 0.23432298744, 7084.8967811152], [13.079, 5.24353197586, 17298.1823273262], [13.18, 3.37207825651, 13745.3462390224], [9.097, 3.07004895769, 1109.3785520934], [10.818, 2.45024712908, 10239.5838660108], [11.438, 4.56838894696, 29050.7837433492], [8.377, 5.78327612352, 30639.856638633], [8.193, 1.9502311186, 22003.9146348698], [9.308, 1.61615909286, 2352.8661537718], [10.652, 1.9552839614, 31441.6775697568], [10.357, 1.20234990061, 15874.6175953632], [9.585, 1.46639856228, 19999.97290154599], [6.506, 2.17390732263, 14143.4952424306], [7.562, 1.13789564977, 8624.2126509272], [6.434, 0.84419623033, 6283.0758499914], [5.898, 0.0109373111, 8635.9420037632], [5.632, 3.94956548631, 12566.1516999828], [5.523, 1.27394296557, 18307.8072320436], [4.488, 2.47835729057, 191.4482661116], [4.529, 4.730277704, 19896.8801273274], [6.193, 3.25881250939, 6872.6731195112], [6.07, 0.35337419942, 21228.3920235458], [4.315, 2.59737099519, 4551.9534970588], [6.005, 3.37874723475, 35371.8872659764], [3.852, 1.01162850357, 9786.687355335], [4.033, 0.0005085558, 801.8209311238], [3.92, 5.56542869407, 10596.1820784342], [2.709, 5.80195530112, 7064.1213856228], [3.216, 0.39767254848, 10186.9872264112], [3.089, 6.26174762876, 14945.3161735544], [2.982, 4.21196716354, 28521.0927782546], [3.284, 0.70709821006, 10742.9765113056], [3.484, 4.79878191875, 39302.096962196], [3.172, 1.80518954174, 25158.6017197654], [2.463, 0.68708153678, 10988.808157535], [2.374, 3.77948685343, 21535.9496445154], [2.198, 2.82996372521, 8662.240323563], [1.958, 5.41763804167, 16496.3613962024], [1.876, 2.63426768393, 29580.4747084438], [1.902, 2.85782199133, 3532.0606928114], [1.706, 3.67573010379, 26.2983197998], [1.817, 0.41611036449, 4705.7323075436], [1.858, 1.50368318296, 10021.8372800994], [2.087, 6.22112874639, 43232.3066584156], [1.95, 2.21447019683, 19786.67380610799], [1.497, 0.00134773824, 17277.4069318338], [1.819, 3.23144993268, 29088.811415985], [1.423, 5.85979618707, 9676.4810341156], [1.223, 5.55818994329, 6770.7106012456], [1.14, 5.92088900094, 13936.794505134], [1.484, 2.47665429253, 31749.2351907264], [1.185, 1.42087628351, 4732.0306273434], [1.323, 2.48821075422, 9690.7081281172], [1.249, 1.88323673734, 19374.3027092336], [1.27, 5.24647873116, 19360.07561523199], [1.402, 5.17536780118, 10316.3783204296], [1.042, 3.05454698508, 25934.1243310894], [1.174, 1.42913732999, 18875.525869774], [1.278, 1.35747287297, 47162.5163546352], [0.917, 6.26337648765, 20618.0193585336], [0.905, 1.12740203561, 12592.4500197826], [1.093, 4.64451720605, 33019.0211122046], [1.014, 1.09259406433, 1059.3819301892], [0.783, 2.02118183873, 24356.7807886416], [0.779, 0.4158527401, 3340.6124266998], [0.7, 1.14936815714, 16983.9961474566], [0.878, 0.87852464964, 38734.3783244656], [0.623, 0.89976912165, 17778.11626694899], [0.608, 1.58476225197, 9573.388259897], [0.8, 3.94213003073, 10138.5039476437], [0.76, 1.31851313748, 9967.4538999816], [0.802, 2.78173370208, 51092.7260508548], [0.664, 4.458646824, 3128.3887650958], [0.674, 5.11214939998, 382.8965322232], [0.53, 0.85392938403, 10234.0609417034], [0.509, 3.56809374595, 28286.9904848612], [0.6, 4.25927726907, 41962.5207369374], [0.601, 5.78144137895, 213.299095438], [0.595, 2.83045104588, 22805.7355659936], [0.673, 6.06079908421, 36949.2308084242], [0.535, 5.85422519711, 9103.9069941176], [0.544, 5.448060748, 3723.508958923], [0.492, 3.83802404893, 27991.40181316], [0.635, 0.76494024849, 8094.5216858326], [0.434, 6.22214487735, 27197.2816936676], [0.459, 3.55062885479, 20213.271996984], [0.398, 6.16269975784, 10426.584641649], [0.378, 2.41665947591, 18844.61174413899], [0.421, 4.86552697954, 9146.790069021], [0.5, 4.20351458644, 55022.9357470744], [0.404, 4.95834410782, 37410.5672398786], [0.402, 2.97963246945, 10220.3990932118], [0.464, 2.59869499733, 18734.4054229196], [0.352, 0.08963076359, 10103.0792249916], [0.348, 4.90260339364, 18830.38465013739], [0.338, 3.22520096478, 24150.080051345], [0.375, 6.17532088136, 26087.9031415742], [0.425, 1.2005257828, 40879.4405046438], [0.408, 3.12833060705, 9050.8108418032], [0.385, 1.94284690176, 283.8593188652], [0.337, 4.87838699272, 12432.0426503978], [0.326, 4.27369741426, 26735.9452622132], [0.309, 0.50597475053, 38204.687359371], [0.329, 3.88430599153, 29864.334027309], [0.313, 1.36138752543, 10192.5101507186], [0.347, 3.58439807209, 27490.6924780448], [0.251, 3.78618457047, 10063.7223490764], [0.244, 3.83523342668, 9411.4646150872], [0.281, 4.50895206233, 32217.2001810808], [0.237, 0.87748812245, 6681.2248533996], [0.315, 5.62657778233, 58953.145443294], [0.311, 4.15626121491, 10175.1525105732], [0.247, 2.53637594113, 16522.6597160022], [0.219, 5.08729383251, 7058.5984613154], [0.291, 3.72567217056, 29999.959352319], [0.267, 2.97685503991, 19573.37471066999], [0.28, 3.70200084294, 47623.8527860896], [0.239, 3.94545782067, 9580.5018068978], [0.246, 2.1824488393, 9161.0171630226], [0.253, 2.69506547016, 3442.5749449654], [0.265, 2.62811801237, 44809.6502008634], [0.194, 4.78926136175, 33794.5437235286], [0.187, 3.65620881095, 20452.8694122218], [0.224, 2.43601863127, 9992.8729037722], [0.193, 2.55112161845, 2379.1644735716], [0.201, 1.90356905733, 1551.045222648], [0.176, 4.29837616553, 10137.0194749354], [0.184, 6.16061560223, 36147.4098773004], [0.175, 2.7198479704, 20809.4676246452], [0.186, 2.55098927966, 14919.0178537546], [0.161, 4.13272567123, 23958.6317852334], [0.221, 4.83552377614, 20277.0078952874], [0.16, 1.81472642729, 10787.6303445458], [0.199, 5.7425979833, 30666.1549584328], [0.16, 4.46270605493, 18947.7045183576], [0.187, 2.98688597588, 2218.7571041868], [0.189, 5.34607810282, 10007.0999977738], [0.198, 0.77846666692, 62883.3551395136], [0.144, 5.00261963924, 9264.1099372412], [0.171, 2.05212624568, 7255.5696517344], [0.188, 4.08173534559, 48739.859897083], [0.146, 3.94191715702, 6309.3741697912], [0.146, 5.06313558118, 39264.0692895602], [0.135, 5.93689169614, 37724.7534197482], [0.139, 2.81266025896, 20.7753954924], [0.177, 5.16224804657, 9835.9119382952], [0.119, 1.37254262864, 40077.61957352], [0.12, 0.21443767468, 31022.7531708562], [0.128, 2.92458887798, 7.1135470008], [0.15, 5.73646272556, 632.7837393132], [0.106, 0.62224833817, 11272.6674764002], [0.114, 2.6330132652, 17468.8551979454], [0.123, 6.22518843711, 53285.1848352418], [0.107, 1.172589789, 43071.8992890308], [0.103, 1.09613781581, 41654.9631159678], [0.109, 2.01412667085, 20419.45754542119], [0.102, 4.23406964348, 10251.3132188468], [0.116, 1.27731728606, 10199.0584522094], [0.103, 5.25887538465, 9830.3890139878], [0.112, 2.24436894064, 18204.71445782499], [0.111, 2.23547857955, 8521.1198767086], [0.118, 0.237542072, 10497.1448650762], [0.123, 0.88054816668, 34596.3646546524], [0.102, 4.3943864662, 18300.69368504279], [0.131, 6.01711652115, 9367.2027114598], [0.1, 5.00532389609, 10175.2578735752], [0.107, 0.41270197502, 40853.142184844], [0.132, 5.45008342761, 11506.7697697936], [0.098, 1.07722950958, 13553.8979729108], [0.094, 2.9172009759, 44007.8292697396], [0.097, 1.04004223634, 68050.42387851159], [0.127, 2.20215372683, 66813.5648357332], [0.111, 1.57823839032, 29043.67019634839], [0.118, 2.3326817689, 18314.9207790444], [0.09, 2.42353056125, 32858.61374281979], [0.109, 3.82796787296, 19470.28193645139], [0.111, 4.47666957576, 29057.89729034999], [0.101, 3.4152849366, 19264.0963880142], [0.092, 3.66289799512, 22645.32819660879], [0.094, 6.07530805791, 10846.0692855242], [0.114, 4.02718653431, 7576.560073574], [0.087, 6.01842459303, 17085.9586657222], [0.109, 5.46886607309, 52670.0695933026], [0.107, 0.54805946713, 34363.365597556], [0.108, 5.44460610707, 19050.7972925762], [0.076, 6.15177368654, 27682.1407441564], [0.107, 4.80525404063, 8144.2787113044], [0.073, 1.60549217847, 20956.2620575166], [0.097, 5.1354205113, 22779.4372461938], [0.068, 2.31300447144, 8631.326197928], [0.091, 4.28652743953, 10110.1927719924], [0.093, 5.27290609264, 522.5774180938], [0.071, 3.6556596169, 11764.330768859], [0.089, 1.79712963206, 45585.1728121874], [0.067, 2.25900071584, 9360.089164459], [0.085, 0.67062144972, 56600.2792895222], [0.08, 1.58278081077, 19992.85935454519], [0.065, 6.23472325597, 10419.4710946482], [0.064, 0.53356325917, 17248.4253018544], [0.085, 4.52011215904, 29786.660256881], [0.068, 4.48235266554, 10632.7701900862], [0.064, 4.33495700921, 47938.0389659592], [0.071, 3.03858484137, 11787.1059703098], [0.087, 4.81823063172, 2107.0345075424], [0.07, 2.35648061034, 11794.1522070078], [0.08, 2.33248094128, 38526.574350872], [0.07, 3.704540611, 8734.4189721466], [0.077, 4.49569185467, 20007.0864485468], [0.072, 1.19410424468, 10217.2176994741], [0.068, 2.01841060183, 14128.2427712456], [0.064, 5.39293951654, 7880.08915333899], [0.066, 3.20467071127, 14765.2390432698], [0.08, 3.4162045777, 48417.97290558199], [0.08, 3.39651161571, 245.8316462294], [0.066, 5.85414440204, 9793.8009023358], [0.082, 3.62592908644, 70743.77453195279], [0.058, 4.95174942212, 30110.1656735384], [0.079, 6.24161471033, 6037.244203762], [0.069, 5.50183658445, 19793.7873531088], [0.056, 1.24148350566, 10207.7626219036], [0.07, 2.45123308846, 10218.8084705184], [0.064, 5.53983104501, 10735.8629643048], [0.054, 3.6225971324, 27461.7108480654], [0.073, 1.75882480924, 1589.0728952838], [0.075, 3.38244819846, 4214.0690150848], [0.054, 0.64971567468, 9929.4262273458], [0.054, 3.4095963723, 18418.01355326299], [0.056, 3.65815006538, 14169.7935622304], [0.056, 0.71243223808, 9896.8936765544], [0.052, 1.3334813194, 20400.2727726222], [0.067, 3.128065954, 5481.2549188676], [0.058, 0.54482893546, 28313.288804661], [0.054, 0.15603935681, 19580.4882576708], [0.051, 3.3751547351, 9256.9963902404], [0.063, 3.3884897095, 49515.382508407], [0.069, 4.90917651401, 63498.47038145279], [0.057, 5.0743774203, 18521.1063274816], [0.05, 1.59156823654, 18631.31264870099], [0.054, 6.25816208666, 37674.9963942764], [0.057, 5.48065460919, 24383.0791084414], [0.045, 1.1046649066, 10408.2569306716], [0.051, 3.61196470313, 426.598190876], [0.057, 2.09567711267, 60530.4889857418], [0.06, 5.94659889997, 13897.6635962012], [0.051, 5.4723851772, 57837.1383323006], [0.051, 2.32438478428, 19779.56025910719], [0.052, 3.23766328818, 18940.59097135679], [0.043, 5.74921510909, 51868.2486621788], [0.048, 1.12206254877, 9779.5738083342], [0.058, 3.08646083897, 12074.488407524], [0.046, 4.07536026888, 7863.9425107882], [0.045, 4.75746520642, 7856.89627409019], [0.054, 4.43528236634, 8617.0991039264], [0.05, 3.70569982975, 42456.7840470916], [0.044, 1.29248911155, 69166.430989505], [0.046, 0.41229872114, 7564.830720738], [0.044, 6.17937388307, 13341.6743113068], [0.053, 4.71388531889, 53445.5922046266], [0.041, 3.48003037828, 37895.4262903674], [0.04, 1.2330554626, 10228.538017396], [0.053, 5.04979874661, 74673.9842281724], [0.039, 1.36646013032, 21202.093703746], [0.039, 2.15376025201, 8947.7180675846], [0.041, 6.1753298446, 65236.2212932854], [0.052, 1.29052331493, 90394.82301305079], [0.039, 0.70253732683, 18093.37469954999], [0.052, 1.18164377451, 10211.8010735027], [0.047, 1.78672260794, 10401.2106939736], [0.04, 3.66961416802, 10198.033075026], [0.051, 2.71698589018, 94325.0327092704], [0.036, 1.2509171162, 10323.4918674304], [0.049, 1.2133595942, 9721.6222537522], [0.042, 6.05968230173, 105460.99111839019], [0.046, 5.06978748275, 20350.3050211464], [0.04, 1.97645050921, 32243.4985008806], [0.036, 4.96702216961, 36301.18868778519], [0.037, 5.29642935562, 38.0276726358], [0.039, 0.52064327313, 26709.6469424134], [0.035, 2.34112124655, 58946.51688439399], [0.034, 1.82989750626, 17675.0234927304], [0.034, 0.7649366411, 55798.4583583984], [0.035, 1.09353675147, 69159.80243060499], [0.031, 5.59148330297, 10639.883737087], [0.032, 3.3296078187, 71519.2971432768], [0.031, 5.98191446392, 24341.5283174566], [0.031, 0.68615213145, 10202.2398459471], [0.03, 4.42039942947, 10459.1171924404], [0.029, 1.30367701539, 20103.06567576459], [0.031, 4.51793347997, 2957.7158944766], [0.035, 4.0563432129, 19903.99367432819], [0.03, 1.32113757427, 574.3447983348], [0.029, 3.36506645849, 10288.0671447783], [0.029, 1.40019042576, 9988.9407505091], [0.032, 0.21932095318, 24978.5245894808], [0.034, 5.22945947227, 8673.969676399], [0.039, 4.50883171158, 16004.6981037436], [0.028, 2.32945945641, 11392.4800852506], [0.034, 3.92498967835, 536.8045120954], [0.032, 5.46972716255, 64607.84893354619], [0.028, 2.38858990128, 20235.1228263104], [0.03, 3.34585843979, 39793.7602546548], [0.026, 5.36096904409, 1478.8665740644]], [[34551.039, 0.89198710598, 10213.285546211], [234.203, 1.77224942714, 20426.571092422], [233.998, 3.14159265359, 0.0], [23.864, 1.11274502648, 9437.762934887], [10.568, 4.59168210921, 1577.3435424478], [9.124, 4.53540907003, 10404.7338123226], [6.599, 5.97703999838, 5507.5532386674], [4.667, 3.87683960551, 9153.9036160218], [3.84, 5.66196924375, 13367.9726311066], [2.666, 2.82413291285, 10206.1719992102], [2.194, 2.05314419626, 775.522611324], [2.094, 2.55137285015, 18837.49819713819], [1.782, 2.64808558644, 30639.856638633], [1.845, 1.87612936641, 11015.1064773348], [1.303, 0.20613045603, 11322.6640983044], [1.169, 0.79431893441, 17298.1823273262], [1.001, 6.16555101536, 10239.5838660108], [0.915, 4.59854496966, 1109.3785520934], [0.884, 0.66706834422, 18073.7049386502], [0.849, 5.5864157194, 12566.1516999828], [1.071, 4.94792017474, 6283.0758499914], [0.887, 2.47785193216, 3154.6870848956], [0.904, 0.81413053841, 10596.1820784342], [0.818, 0.90016838097, 5661.3320491522], [0.845, 5.48504338112, 529.6909650946], [0.824, 3.74837629121, 7084.8967811152], [0.652, 5.07444932607, 22003.9146348698], [0.847, 0.44119876869, 8635.9420037632], [0.638, 4.10125791268, 191.4482661116], [0.615, 3.14417599741, 10186.9872264112], [0.527, 5.86792949279, 2352.8661537718], [0.52, 5.33201358267, 14143.4952424306], [0.576, 2.25212731258, 21228.3920235458], [0.662, 2.86880467345, 8624.2126509272], [0.554, 2.17186191243, 18307.8072320436], [0.515, 4.34331395104, 9786.687355335], [0.501, 5.56479589366, 10742.9765113056], [0.426, 1.0216144312, 7064.1213856228], [0.418, 1.26803034691, 9676.4810341156], [0.391, 0.78974645621, 9690.7081281172], [0.334, 3.18175822557, 10988.808157535], [0.375, 0.66142254036, 19360.07561523199], [0.364, 0.19369831864, 19374.3027092336], [0.313, 1.09734397626, 4551.9534970588], [0.33, 0.58817502306, 16496.3613962024], [0.339, 5.76768761396, 10021.8372800994], [0.291, 3.65846764668, 25158.6017197654], [0.223, 4.33581625553, 19786.67380610799], [0.266, 3.57408827667, 801.8209311238], [0.274, 5.73346687248, 11790.6290886588], [0.275, 5.65814317085, 19896.8801273274], [0.212, 4.27038489878, 4705.7323075436], [0.23, 6.1340634559, 1059.3819301892], [0.204, 4.87348390351, 7860.4193924392], [0.241, 1.13551531894, 26.2983197998], [0.206, 0.31907973682, 382.8965322232], [0.216, 2.54741101724, 19651.048481098], [0.212, 3.15264941106, 14945.3161735544], [0.163, 1.13604744392, 13936.794505134], [0.151, 5.11341268743, 28521.0927782546], [0.151, 0.81278755582, 6770.7106012456], [0.15, 5.02227334847, 29088.811415985], [0.146, 1.37568138685, 10220.3990932118], [0.127, 4.49298610074, 3532.0606928114], [0.121, 6.26589208179, 29580.4747084438], [0.147, 6.16092774714, 8662.240323563], [0.114, 0.00114012635, 25934.1243310894], [0.115, 3.56897715344, 24356.7807886416], [0.124, 0.67547060274, 3723.508958923], [0.145, 0.36415036222, 9146.790069021], [0.104, 4.27865011376, 9573.388259897], [0.136, 5.09581116181, 19367.1891622328], [0.102, 1.53637788668, 17277.4069318338], [0.117, 0.57543238496, 9999.986450773], [0.092, 0.22936081655, 18830.38465013739], [0.112, 4.04771058036, 9103.9069941176], [0.098, 3.78447692407, 213.299095438], [0.085, 5.84471458481, 10234.0609417034], [0.079, 0.64440357793, 18844.61174413899], [0.084, 0.56950139213, 9683.5945811164], [0.107, 1.77067111589, 17778.11626694899], [0.081, 6.19048382717, 20618.0193585336], [0.087, 0.15771136594, 33019.0211122046], [0.082, 4.80683817059, 3930.2096962196], [0.086, 2.21505615071, 8094.5216858326], [0.064, 2.69215119482, 16983.9961474566], [0.069, 0.83385751986, 3128.3887650958], [0.081, 4.88025042367, 4732.0306273434], [0.059, 3.34348033725, 10787.6303445458], [0.061, 0.04044699966, 9161.0171630226], [0.064, 4.13127333938, 9992.8729037722], [0.06, 6.24603986632, 32217.2001810808], [0.054, 3.38449893196, 10426.584641649], [0.054, 5.15939119644, 28286.9904848612], [0.063, 4.32339245083, 12592.4500197826], [0.06, 4.4875384617, 18875.525869774], [0.057, 3.64912085313, 10007.0999977738], [0.049, 5.10267262491, 19573.37471066999], [0.047, 5.79444960738, 68050.42387851159], [0.052, 3.56658420552, 7255.5696517344], [0.05, 1.61783309819, 36949.2308084242], [0.053, 2.64370544855, 15874.6175953632], [0.04, 3.93466530964, 20419.45754542119], [0.051, 0.79154899901, 23581.2581773176], [0.038, 1.77428239418, 10103.0792249916], [0.049, 1.12423644455, 3442.5749449654], [0.04, 5.22874487975, 21535.9496445154], [0.038, 1.12473430132, 7.1135470008], [0.038, 0.11510547453, 11272.6674764002], [0.036, 2.02476324983, 7058.5984613154], [0.047, 0.0558943239, 12432.0426503978], [0.034, 3.45481114998, 9830.3890139878], [0.045, 4.59817214088, 10192.5101507186], [0.037, 4.93959675364, 3340.6124266998], [0.044, 0.70533027806, 20213.271996984], [0.034, 2.16487642765, 64460.6986819614], [0.031, 1.57612397319, 36147.4098773004], [0.028, 2.56454760402, 94138.32702008578], [0.033, 1.08907268562, 29864.334027309], [0.029, 0.59718407064, 59728.668054618], [0.031, 3.04423979263, 40879.4405046438], [0.035, 0.32247158762, 1589.0728952838], [0.031, 3.27727318906, 19992.85935454519], [0.027, 5.83705748551, 17085.9586657222], [0.032, 2.6426078826, 41962.5207369374], [0.028, 4.90613317287, 29050.7837433492], [0.025, 4.55050389739, 14919.0178537546], [0.028, 3.58851614957, 40853.142184844], [0.029, 2.79705093386, 20007.0864485468], [0.033, 0.93862065616, 15720.8387848784], [0.024, 2.74970637101, 18947.7045183576], [0.024, 4.38966861409, 46386.9937433112], [0.024, 0.73361964525, 9411.4646150872], [0.028, 4.19559784013, 37674.9963942764], [0.023, 1.00023735538, 22779.4372461938], [0.026, 0.46990555736, 13745.3462390224], [0.028, 4.65181292126, 1551.045222648], [0.025, 4.18690270765, 44007.8292697396], [0.022, 0.98102807789, 426.598190876], [0.03, 1.24986033487, 27461.7108480654], [0.027, 3.94986823486, 17468.8551979454], [0.021, 6.09897508157, 18300.69368504279], [0.025, 4.75875623888, 27991.40181316], [0.022, 2.95281481673, 40077.61957352], [0.028, 6.12038264955, 38500.2760310722], [0.022, 4.11184201321, 19779.56025910719], [0.027, 3.7244644608, 19793.7873531088], [0.02, 4.27086627368, 31441.6775697568], [0.022, 4.99040169444, 31022.7531708562], [0.023, 1.33505132122, 65236.2212932854], [0.021, 4.46897353468, 53285.1848352418], [0.02, 4.15140915983, 2218.7571041868], [0.025, 2.18447182965, 27511.4678735372], [0.019, 1.43653410349, 27197.2816936676], [0.027, 1.22555218015, 42430.4857272918], [0.019, 3.65054338893, 49515.382508407], [0.022, 5.88380811711, 10218.8084705184], [0.018, 2.29853355765, 19264.0963880142], [0.017, 5.44429906531, 6681.2248533996], [0.02, 3.68116637773, 14128.2427712456], [0.021, 4.30316190532, 44809.6502008634], [0.02, 2.48583613985, 33794.5437235286], [0.017, 3.02735393984, 28528.2063252554], [0.019, 5.92656850674, 22805.7355659936], [0.022, 5.30827572791, 10207.7626219036], [0.02, 0.75829381378, 18314.9207790444], [0.017, 5.63315744126, 16522.6597160022], [0.016, 1.71021408448, 536.8045120954], [0.015, 5.27016880041, 53445.5922046266], [0.017, 5.61443395877, 47938.0389659592], [0.015, 5.81110284451, 43071.8992890308], [0.015, 4.96237667003, 19999.97290154599], [0.018, 0.55618686515, 14765.2390432698], [0.014, 3.48144272414, 29786.660256881], [0.015, 5.84132627836, 10228.538017396], [0.016, 1.05720065324, 26735.9452622132], [0.014, 6.08462030302, 35371.8872659764], [0.014, 2.8453287189, 574.3447983348], [0.015, 5.3451771514, 10198.033075026], [0.013, 0.45004137509, 20452.8694122218]], [[1406.587, 5.0636639519, 10213.285546211], [15.529, 5.47321687981, 20426.571092422], [13.059, 0.0, 0.0], [1.099, 2.78883988292, 9437.762934887], [0.488, 6.27806914496, 1577.3435424478], [0.361, 6.11914188253, 10404.7338123226], [0.31, 1.38984998403, 5507.5532386674], [0.389, 1.95017779915, 11015.1064773348], [0.372, 2.33222828423, 775.522611324], [0.207, 5.63406721595, 10239.5838660108], [0.168, 1.10765197296, 13367.9726311066], [0.175, 6.1667465295, 30639.856638633], [0.168, 3.64495311632, 7084.8967811152], [0.12, 5.85815843789, 9153.9036160218], [0.16, 2.21564938463, 3154.6870848956], [0.118, 2.62358866565, 8635.9420037632], [0.112, 2.36235956804, 10596.1820784342], [0.092, 0.72664449269, 12566.1516999828], [0.067, 3.76089669118, 18837.49819713819], [0.065, 2.4798370999, 11790.6290886588], [0.048, 4.26620187144, 2352.8661537718], [0.048, 5.5089818955, 191.4482661116], [0.048, 2.54730918293, 17298.1823273262], [0.046, 3.40293459332, 14143.4952424306], [0.041, 1.83997113019, 11322.6640983044], [0.037, 6.17871126027, 1109.3785520934], [0.039, 4.77190210316, 18073.7049386502], [0.035, 3.10133256432, 4705.7323075436], [0.046, 3.30090415967, 6283.0758499914], [0.034, 3.91721765773, 10021.8372800994], [0.034, 3.24663787383, 22003.9146348698], [0.042, 3.39360926939, 14945.3161735544], [0.044, 4.42979374073, 7860.4193924392], [0.034, 2.16381407025, 16496.3613962024], [0.031, 0.45714618479, 26.2983197998], [0.035, 3.62868651241, 801.8209311238], [0.032, 1.84138997078, 382.8965322232], [0.025, 3.32908650295, 18307.8072320436], [0.026, 3.64313769818, 29088.811415985], [0.029, 3.8296717881, 10186.9872264112], [0.022, 3.17741520378, 28521.0927782546], [0.021, 2.52643834111, 529.6909650946], [0.025, 5.71401244457, 21202.093703746], [0.021, 3.77813434325, 21228.3920235458], [0.019, 5.24505118517, 19896.8801273274], [0.018, 4.62463651925, 19651.048481098], [0.016, 3.35893297896, 28286.9904848612], [0.015, 5.05571633205, 33019.0211122046], [0.014, 2.83786355803, 19786.67380610799], [0.014, 1.79922718553, 9830.3890139878], [0.014, 3.14801263138, 19367.1891622328], [0.014, 3.57896195191, 10988.808157535], [0.013, 3.06303088617, 10742.9765113056], [0.013, 5.43981998532, 25158.6017197654], [0.015, 4.83166312889, 18875.525869774], [0.012, 2.54141086214, 7064.1213856228], [0.012, 4.45255110769, 15720.8387848784], [0.01, 1.87933121728, 24356.7807886416], [0.011, 2.58708635685, 9103.9069941176], [0.01, 2.179013099, 3723.508958923], [0.008, 3.63520673832, 1059.3819301892], [0.008, 4.67523115598, 25934.1243310894], [0.009, 5.97856553283, 9683.5945811164]], [[49.582, 3.2226355452, 10213.285546211], [0.831, 3.21219077104, 20426.571092422], [0.112, 3.14159265359, 0.0], [0.013, 3.77448689585, 30639.856638633], [0.009, 4.19802043629, 10239.5838660108], [0.006, 0.20714935358, 10186.9872264112], [0.005, 0.68781956122, 8635.9420037632]], [[0.573, 0.9222969782, 10213.285546211], [0.04, 0.95468912157, 20426.571092422], [0.006, 3.14159265359, 0.0]], [[0.045, 0.30032866722, 10213.285546211], [0.002, 5.29627718483, 20426.571092422]]]

This table contains Venus’s periodic terms (all of them) from the planetary theory VSOP87 for the radius vector at the equinox of date (taken from the ‘D’ solution). In Meeus’ book a shortened version can be found in pages 420-421.

class pymeeus.Venus.Venus[source]

Class Venus models that planet.

__weakref__

list of weak references to the object (if defined)

static apparent_heliocentric_position(epoch)[source]

This method computes the apparent heliocentric position of planet Venus for a given epoch, using the VSOP87 theory.

Parameters:epoch (Epoch) – Epoch to compute Venus position, as an Epoch object
Returns:A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order
Return type:tuple
Raises:TypeError if input value is of wrong type.
static eastern_elongation(epoch)[source]

This method computes the time of the eastern elongation closest to the given epoch, as well as the corresponding maximum elongation angle.

Parameters:epoch (Epoch) – Epoch close to the desired eastern elongation
Returns:A tuple with the time when the eastern elongation happens, as an Epoch, and the maximum elongation angle, as an Angle
Return type:tuple
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2019, 10, 1.0)
>>> time, elongation = Venus.eastern_elongation(epoch)
>>> y, m, d = time.get_date()
>>> print(y)
2020
>>> print(m)
3
>>> print(round(d, 4))
24.9179
>>> print(round(elongation, 4))
46.078
static geocentric_position(epoch)[source]

This method computes the geocentric position of Venus (right ascension and declination) for the given epoch, as well as the elongation angle.

Parameters:epoch (Epoch) – Epoch to compute geocentric position, as an Epoch object
Returns:A tuple containing the right ascension, the declination and the elongation angle as Angle objects
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(1992, 12, 20.0)
>>> ra, dec, elon = Venus.geocentric_position(epoch)
>>> print(ra.ra_str(n_dec=1))
21h 4' 41.5''
>>> print(dec.dms_str(n_dec=1))
-18d 53' 16.8''
>>> print(elon.dms_str(n_dec=1))
44d 46' 8.9''
static geometric_heliocentric_position(epoch, tofk5=True)[source]

This method computes the geometric heliocentric position of planet Venus for a given epoch, using the VSOP87 theory.

Parameters:
  • epoch (Epoch) – Epoch to compute Venus position, as an Epoch object
  • tofk5 (bool) – Whether or not the small correction to convert to the FK5 system will be applied or not
Returns:

A tuple with the heliocentric longitude and latitude (as Angle objects), and the radius vector (as a float, in astronomical units), in that order

Return type:

tuple

Raises:

TypeError if input value is of wrong type.

>>> epoch = Epoch(1992, 12, 20.0)
>>> l, b, r = Venus.geometric_heliocentric_position(epoch, tofk5=False)
>>> print(round(l, 5))
26.11412
>>> print(round(b, 4))
-2.6206
>>> print(round(r, 6))
0.724602
static illuminated_fraction(epoch)[source]

This function computes an approximation of the illuminated fraction of Venus disk, as seen from Earth.

Parameters:epoch (Epoch) – Epoch to compute the illuminated fraction
Returns:Illuminated fraction of Venus disk
Return type:float
Raises:TypeError if input values are of wrong type.
>>> epoch = Epoch(1992, 12, 20)
>>> k = Venus.illuminated_fraction(epoch)
>>> print(round(k, 2))
0.64
static inferior_conjunction(epoch)[source]

This method computes the time of the inferior conjunction closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired inferior conjunction
Returns:The time when the inferior conjunction happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1882, 12, 1.0)
>>> conjunction = Venus.inferior_conjunction(epoch)
>>> y, m, d = conjunction.get_date()
>>> print(y)
1882
>>> print(m)
12
>>> print(round(d, 1))
6.7
static magnitude(sun_dist, earth_dist, phase_angle)[source]

This function computes the approximate magnitude of Venus.

Parameters:
  • sun_dist (float) – Distance from Venus to the Sun, in Astronomical Units
  • earth_dist (float) – Distance from Venus to Earth, in Astronomical Units
  • phase_angle (float, Angle) – Venus phase angle
Returns:

Venus’ magnitude

Return type:

float

Raises:

TypeError if input values are of wrong type.

>>> sun_dist = 0.724604
>>> earth_dist = 0.910947
>>> phase_angle = Angle(72.96)
>>> m = Venus.magnitude(sun_dist, earth_dist, phase_angle)
>>> print(m)
-3.8
static orbital_elements_j2000(epoch)[source]

This method computes the orbital elements of Venus for the standard equinox J2000.0 for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Venus.orbital_elements_j2000(epoch)
>>> print(round(l, 6))
337.731227
>>> print(round(a, 8))
0.72332982
>>> print(round(e, 7))
0.0067407
>>> print(round(i, 6))
3.394087
>>> print(round(ome, 5))
76.49782
>>> print(round(arg, 6))
55.068476
static orbital_elements_mean_equinox(epoch)[source]

This method computes the orbital elements of Venus for the mean equinox of the date for a given epoch.

Parameters:epoch (Epoch) – Epoch to compute orbital elements, as an Epoch object
Returns:A tuple containing the following six orbital elements: - Mean longitude of the planet (Angle) - Semimajor axis of the orbit (float, astronomical units) - eccentricity of the orbit (float) - inclination on the plane of the ecliptic (Angle) - longitude of the ascending node (Angle) - argument of the perihelion (Angle)
Return type:tuple
Raises:TypeError if input value is of wrong type.
>>> epoch = Epoch(2065, 6, 24.0)
>>> l, a, e, i, ome, arg = Venus.orbital_elements_mean_equinox(epoch)
>>> print(round(l, 6))
338.646306
>>> print(round(a, 8))
0.72332982
>>> print(round(e, 7))
0.0067407
>>> print(round(i, 6))
3.395319
>>> print(round(ome, 5))
77.27012
>>> print(round(arg, 6))
55.211257
static passage_nodes(epoch, ascending=True)[source]

This function computes the time of passage by the nodes (ascending or descending) of Venus, nearest to the given epoch.

Parameters:
  • epoch (Epoch) – Epoch closest to the node passage
  • ascending (bool) – Whether the time of passage by the ascending (True) or descending (False) node will be computed
Returns:

Tuple containing: - Time of passage through the node (Epoch) - Radius vector when passing through the node (in AU, float)

Return type:

tuple

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1979, 1, 1)
>>> time, r = Venus.passage_nodes(epoch)
>>> year, month, day = time.get_date()
>>> print(year)
1978
>>> print(month)
11
>>> print(round(day, 1))
27.4
>>> print(round(r, 4))
0.7205
static perihelion_aphelion(epoch, perihelion=True)[source]

This method computes the time of Perihelion (or Aphelion) closer to a given epoch.

Parameters:
  • epoch (Epoch) – Epoch close to the desired Perihelion (or Aphelion)
  • peihelion – If True, the epoch of the closest Perihelion is computed, if False, the epoch of the closest Aphelion is found.
Returns:

The epoch of the desired Perihelion (or Aphelion)

Return type:

Epoch

Raises:

TypeError if input values are of wrong type.

>>> epoch = Epoch(1978, 10, 15.0)
>>> e = Venus.perihelion_aphelion(epoch)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
1978
>>> print(m)
12
>>> print(d)
31
>>> print(h)
4
>>> epoch = Epoch(1979, 2, 1.0)
>>> e = Venus.perihelion_aphelion(epoch, perihelion=False)
>>> y, m, d, h, mi, s = e.get_full_date()
>>> print(y)
1979
>>> print(m)
4
>>> print(d)
22
>>> print(h)
12
static station_longitude_1(epoch)[source]

This method computes the time of the 1st station in longitude (i.e. when the planet is stationary and begins to move westward - retrograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired inferior conjunction
Returns:Time when the 1st station in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2018, 12, 1.0)
>>> sta1 = Venus.station_longitude_1(epoch)
>>> y, m, d = sta1.get_date()
>>> print(y)
2018
>>> print(m)
10
>>> print(round(d, 4))
5.7908
static station_longitude_2(epoch)[source]

This method computes the time of the 1st station in longitude (i.e. when the planet is stationary and begins to move eastward - prograde - among the starts) closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired inferior conjunction
Returns:Time when the 2nd station in longitude happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2018, 12, 1.0)
>>> sta2 = Venus.station_longitude_2(epoch)
>>> y, m, d = sta2.get_date()
>>> print(y)
2018
>>> print(m)
11
>>> print(round(d, 4))
16.439
static superior_conjunction(epoch)[source]

This method computes the time of the superior conjunction closest to the given epoch.

Parameters:epoch (Epoch) – Epoch close to the desired superior conjunction
Returns:The time when the superior conjunction happens, as an Epoch
Return type:Epoch
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(1993, 10, 1.0)
>>> conjunction = Venus.superior_conjunction(epoch)
>>> y, m, d = conjunction.get_date()
>>> print(y)
1994
>>> print(m)
1
>>> print(round(d, 2))
17.05
static western_elongation(epoch)[source]

This method computes the time of the western elongation closest to the given epoch, as well as the corresponding maximum elongation angle.

Parameters:epoch (Epoch) – Epoch close to the desired western elongation
Returns:A tuple with the time when the western elongation happens, as an Epoch, and the maximum elongation angle, as an Angle
Return type:tuple
Raises:TypeError if input value is of wrong type.
Raises:ValueError if input epoch outside the -2000/4000 range.
>>> epoch = Epoch(2019, 1, 1.0)
>>> time, elongation = Venus.western_elongation(epoch)
>>> y, m, d = time.get_date()
>>> print(y)
2019
>>> print(m)
1
>>> print(round(d, 4))
6.1895
>>> print(round(elongation, 4))
46.9571

Examples

Usage Examples

Properly Using PyMeeus

It is very common to try to run PyMeeus like this:

import pymeeus

mydate = pymeeus.Epoch(1992, 10, 13.0)

But if you do that, you’ll get an error like this:

Traceback (most recent call last):
  File "/home/user/test/test.py", line 3, in <module>
    epoch = pymeeus.Epoch(1992, 10, 13.0)
AttributeError: module 'pymeeus' has no attribute 'Epoch'

This issue points to a misunderstanding that is very common in the Python world. The keyword import is used to import MODULES… but PyMeeus is NOT a module: It is a LIBRARY composed of MULTIPLE modules (Angle, Epoch, Coordinates, etc). As of today, the library Pymeeus has 19 different modules (if you look into the directory where pip stores the library, you’ll find one “.py” file per module).

Therefore if you want to use, for example, the module Angle you should use:

import pymeeus.Angle

I.e., your module is pymeeus.Angle, and not just Angle.

But there is more! When you use import to fetch a module, you must then use the dot notation to access the components of the module (classes, functions, etc). For instance:

import pymeeus.Angle

i = pymeeus.Angle.Angle(11.94524)

In this case, you are telling the Python interpreter that you want to use the class Angle (with parameter ‘11.94524’) from the module Angle belonging to the library pymeeus.

There is, however, a more practical (and common) way to handle modules using the statement from <MODULE> import <COMPONENT>. For instance:

from pymeeus.Angle import Angle
from pymeeus.Epoch import Epoch, JDE2000
from math import sin, cos, tan, acos, atan2, sqrt, radians, log10

This way is preferred because, among other reasons, only the required components are loaded into memory instead of the whole module. Also, now the component is directly added to your execution environment, which means that you no longer need to use the dot notation.

Therefore, the script at the beginning would become:

from pymeeus.Epoch import Epoch

mydate = Epoch(1992, 10, 13.0)

Angle examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

Create an Angle object, providing degrees, minutes and seconds:

a = Angle(-23.0, 26.0, 48.999983999)

First we print using the __call__() method (note the extra parentheses):

print_me("The angle 'a()' is", a())

# The angle 'a()' is: -23.44694444

Second we print using the __str__() method (no extra parentheses needed):

print_me("The angle 'a' is", a)

# The angle 'a' is: -23.44694444

Use the copy constructor:

b = Angle(a)

print_me("Angle 'b', which is a copy of 'a', is", b)

# Angle 'b', which is a copy of 'a', is: -23.44694444

Use the static deg2dms() method to carry out conversions:

d, m, s, sign = Angle.deg2dms(23.44694444)

val = "{}d {}' {}''".format(int(sign*d), m, s)

print_me("{Deg}d {Min}' {Sec}''", val)

# {Deg}d {Min}' {Sec}'': 23d 26' 48.999984''

We can print Angle a directly in sexagesimal format.

  • In fancy format:

    print_me("{Deg}d {Min}' {Sec}''", a.dms_str())
    
    # {Deg}d {Min}' {Sec}'': -23d 26' 48.999983999''
    
  • In plain format:

    print_me("{Deg}:{Min}:{Sec}", a.dms_str(False))
    
    # {Deg}:{Min}:{Sec}: -23:26:48.999983999
    

Print directly as a tuple:

a = Angle(23.44694444)

print_me("a.dms_tuple()", a.dms_tuple())

# a.dms_tuple(): (23, 26, 48.999983999997596, 1.0)

print_me("a.ra_tuple()", a.ra_tuple())

# a.ra_tuple(): (1, 33, 47.26666559999941, 1.0)

Redefine Angle a several times:

a.set(-0.44694444)

print_me("   a.dms_str()", a.dms_str())

#    a.dms_str(): -26' 48.999984''

a.set(0, 0, -46.31)

print_me("   a.dms_str(False)", a.dms_str(False))

#    a.dms_str(False): 0:0:-46.31

We can use decimals in degrees/minutes. They are converted automatically:

a.set(0, -46.25, 0.0)

print_me("   a.dms_str()", a.dms_str())

#    a.dms_str(): -46' 15.0''

a.set(0, 0, 0.0)

print_me("   a.dms_str()", a.dms_str())

#    a.dms_str(): 0d 0' 0.0''

We can define the angle as in radians. It will be converted to degrees:

b = Angle(pi, radians=True)

print_me("b = Angle(pi, radians=True); print(b)", b)

# b = Angle(pi, radians=True); print(b): 180.0

And we can easily carry out the degrees to radians conversion:

print_me("print(b.rad())", b.rad())

# print(b.rad()): 3.14159265359

We can also specify the angle as a Right Ascension. Angle can be given as a Right Ascension: Hours, Minutes, Seconds:

a.set_ra(9, 14, 55.8)

print_me("   print(a)", a)

#    print(a): 138.7325

b = Angle(9, 14, 55.8, ra=True)

print_me("   print(b)", b)

#    print(b): 138.7325

We can print the Angle as Right Ascension, as a float and as string:

a = Angle(138.75)

print_me("   print(a.get_ra())", a.get_ra())

#    print(a.get_ra()): 9.25

print_me("   print(a.ra_str())", a.ra_str())

#    print(a.ra_str()): 9h 15' 0.0''

print_me("   print(a.ra_str(False))", a.ra_str(False))

#    print(a.ra_str(False)): 9:15:0.0

Use the to_positive() method to get the positive version of an angle:

a = Angle(-87.32)

print_me("   print(a.to_positive())", a.to_positive())

#    print(a.to_positive()): 272.68

Call the __repr__() method to get a string defining the current object. This string can then be fed to the eval() function to generate the object:

print_me("print(b.__repr__())", b.__repr__())

# print(b.__repr__()): Angle(138.7325)

c = eval(repr(b))

print_me("c = eval(repr(b)); print(c)", c)

# c = eval(repr(b)); print(c): 138.7325

Let’s now work with some useful operators and functions:

print_me("c", c)

# c: 138.7325
  • Negate an angle:

    d = Angle(13, 30)
    
    print_me("d", d)
    
    # d: 13.5
    
    e = -d
    
    print_me("   e = -d", e)
    
    #   e = -d: -13.5
    
  • Get the absolute value of an angle:

    e = abs(e)
    
    print_me("   e = abs(e)", e)
    
    #    e = abs(e): 13.5
    
  • Module operation on an angle:

    d = Angle(17.0)
    
    print_me("d", d)
    
    # d: 17.0
    
    e = c % d
    
    print_me("   e = c % d", e)
    
    #    e = c % d: 2.7325
    
  • Convert the angle to an integer:

    d = Angle(13.95)
    
    print_me("d", d)
    
    # d: 13.95
    
    print_me("   int(d)", int(d))
    
    #    int(d): 13
    
    d = Angle(-4.95)
    
    print_me("d", d)
    
    # d: -4.95
    
    print_me("   int(d)", int(d))
    
    #   int(d): -4
    
  • Convert the angle to a float:

    print_me("   float(d)", float(d))
    
    #    float(d): -4.95
    
  • Round the angle to a float:

    e = Angle(-4.951648)
    
    print_me("e", e)
    
    # e: -4.951648
    
    print_me("   round(e)", round(e))
    
    #    round(e): -5.0
    
    print_me("   round(e, 2)", round(e, 2))
    
    #    round(e, 2): -4.95
    
    print_me("   round(e, 3)", round(e, 3))
    
    #    round(e, 3): -4.952
    
    print_me("   round(e, 4)", round(e, 4))
    
    #    round(e, 4): -4.9516
    
  • Comparison operators:

    print_me("   d == e", d == e)
    
    #    d == e: False
    
    print_me("   d != e", d != e)
    
    #    d != e: True
    
    print_me("   d > e", d > e)
    
    #    d > e: True
    
    print_me("   c >= 180.0", c >= 180.0)
    
    #    c >= 180.0: False
    
    print_me("   c < 180.0", c < 180.0)
    
    #    c < 180.0: True
    
    print_me("   c <= 180.0", c <= 180.0)
    
    #    c <= 180.0: True
    
  • It is very easy to add Angles to obtain a new Angle:

    e = c + d
    
    print_me("   c + d", e)
    
    #    c + d: 133.7825
    

    We can also directly add a decimal angle:

    e = c + 11.5
    
    print_me("   c + 11.5", e)
    
    #    c + 11.5: 150.2325
    

    Types allowed are int, float and Angle:

    print('e = c + "32.5"')
    
    # e = c + "32.5"
    
    try:
    
        e = c + "32.5"
    
    except TypeError:
    
        print("TypeError!: Valid types are int, float, and Angle, not string!")
    
    # TypeError!: Valid types are int, float, and Angle, not string!
    
  • Subtraction:

    e = c - d
    
    print_me("   c - d", e)
    
    #    c - d: 143.6825
    
  • Multiplication:

    c.set(150.0)
    
    d.set(5.0)
    
    print_me("c", c)
    
    # c: 150.0
    
    print_me("d", d)
    
    # d: 5.0
    
    e = c * d
    
    print_me("   c * d", e)
    
    #    c * d: 30.0
    
  • Division:

    c.set(150.0)
    
    d.set(6.0)
    
    print_me("d", d)
    
    # d: 6.0
    
    e = c / d
    
    print_me("   c / d", e)
    
    #    c / d: 25.0
    

    Division by zero is not allowed:

    d.set(0.0)
    
    print_me("d", d)
    
    # d: 0.0
    
    print('e = c / d')
    
    # e = c / d
    
    try:
    
        e = c / d
    
    except ZeroDivisionError:
    
        print("ZeroDivisionError!: Division by zero is not allowed!")
    
    # ZeroDivisionError!: Division by zero is not allowed!
    
  • Power:

    d.set(2.2)
    
    print_me("d", d)
    
    # d: 2.2
    
    e = c ** d
    
    print_me("   c ** d", e)
    
    #    c ** d: 91.5733670999
    
  • Accumulative module operation:

    d.set(17.0)
    
    print_me("d", d)
    
    # d: 17.0
    
    e %= d
    
    print_me("   e %= d", e)
    
    #    e %= d: 6.57336709993
    
  • Accumulative addition:

    c += d
    
    print_me("   c += d", c)
    
    #    c += d: 167.0
    
  • Accumulative subtraction:

    print_me("b", b)
    
    # b: 138.7325
    
    c -= b
    
    print_me("   c -= b", c)
    
    #    c -= b: 28.2675
    
  • Accumulative multiplication:

    print_me("b", b)
    
    # b: 138.7325
    
    c *= b
    
    print_me("   c *= b", c)
    
    #    c *= b: 321.62094375
    
  • Accumulative division:

    print_me("b", b)
    
    # 138.7325
    
    d.set(6.0)
    
    print_me("d", d)
    
    # d: 6.0
    
    b /= d
    
    print_me("   b /= d", b)
    
    #    b /= d: 23.1220833333
    
  • Accumulative power:

    d.set(2.2)
    
    print_me("d", d)
    
    # d: 2.2
    
    c = abs(c)
    
    print_me("   c = abs(c)", c)
    
    #    c = abs(c): 321.62094375
    
    c **= d
    
    print_me("   c **= d", c)
    
    #    c **= d: 254.307104203
    

The same operations, but by the right side:

e = 3.5 + b

print_me("   e = 3.5 + b", e)

#    e = 3.5 + b: 26.6220833333

e = 3.5 - b

print_me("   e = 3.5 - b", e)

#    e = 3.5 - b: -19.6220833333

e = 3.5 * b

print_me("   e = 3.5 * b", e)

#    e = 3.5 * b: 80.9272916667

e = 3.5 / b

print_me("   e = 3.5 / b", e)

#    e = 3.5 / b: 0.151370443119

e = 3.5 ** b

print_me("   e = 3.5 ** b", e)

#    e = 3.5 ** b: 260.783691406

Base examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

Let’s print the tolerance:

print_me("The default value for the tolerance is", TOL)

The default value for the tolerance is: 1e-10

Find the accuracy of this computer:

j, d = machine_accuracy()


print_me("Number of significant BITS in the mantissa\t", j)

Number of significant BITS in the mantissa  : 52.0


print_me("Number of significant DIGITS in a decimal number", d)

Number of significant DIGITS in a decimal number: 15

Print the suffixes for some ordinal numbers:

print_me("The suffix for ordinal 2 is", get_ordinal_suffix(2))

The suffix for ordinal 2 is: nd


print_me("The suffix for ordinal 16 is", get_ordinal_suffix(16))

The suffix for ordinal 16 is: th

Coordinates examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

It follows a series of important parameters related to the angle between Earth’s rotation axis and the ecliptic.

  • The mean angle between Earth rotation axis and ecliptic axis is the mean obliquity:

    e0 = Earth.mean_obliquity(1987, 4, 10)
    
    print_me("Mean obliquity for 1987/4/10", e0.dms_str())
    
    # Mean obliquity for 1987/4/10: 23d 26' 27.4066466278''
    
  • If we take into account the nutation effect on the obliquity, we get the true obliquity:

    epsilon = Earth.true_obliquity(1987, 4, 10)
    
    print_me("True obliquity for 1987/4/10", epsilon.dms_str())
    
    # True obliquity for 1987/4/10: 23d 26' 36.8491882378''
    
    epsilon = Earth.true_obliquity(2018, 7, 29)
    
    print_me("True obliquity for 2018/7/29", epsilon.dms_str())
    
    # True obliquity for 2018/7/29: 23d 26' 7.21570241139''
    
  • The nutation effect is separated in two components: One parallel to the ecliptic (nutation in longitude) and other perpendicular to the ecliptic (nutation in obliquity):

    dpsi = Earth.nutation_longitude(1987, 4, 10)
    
    print_me("Nutation in longitude for 1987/4/10", dpsi.dms_str(n_dec=3))
    
    # Nutation in longitude for 1987/4/10: -3.788''
    
    depsilon = Earth.nutation_obliquity(1987, 4, 10)
    
    print_me("Nutation in obliquity for 1987/4/10", depsilon.dms_str(n_dec=3))
    
    # Nutation in obliquity for 1987/4/10: 9.443''
    
  • We can compute the effects of precession on the equatorial coordinates of a given star, taking also into account its proper motion:

    start_epoch = JDE2000
    
    final_epoch = Epoch(2028, 11, 13.19)
    
    alpha0 = Angle(2, 44, 11.986, ra=True)
    
    delta0 = Angle(49, 13, 42.48)
    
    print_me("Initial right ascension", alpha0.ra_str(n_dec=3))
    
    # Initial right ascension: 2h 44' 11.986''
    
    print_me("Initial declination", delta0.dms_str(n_dec=2))
    
    # Initial declination: 49d 13' 42.48''
    
    pm_ra = Angle(0, 0, 0.03425, ra=True)
    
    pm_dec = Angle(0, 0, -0.0895)
    
    alpha, delta = Earth.precession_equatorial(start_epoch, final_epoch,
    
                                               alpha0, delta0, pm_ra, pm_dec)
    
    print_me("Final right ascension", alpha.ra_str(n_dec=3))
    
    # Final right ascension: 2h 46' 11.331''
    
    print_me("Final declination", delta.dms_str(n_dec=2))
    
    # Final declination: 49d 20' 54.54''
    

Something similar can also be done with the ecliptical coordinates:

start_epoch = JDE2000

final_epoch = Epoch(-214, 6, 30.0)

lon0 = Angle(149.48194)

lat0 = Angle(1.76549)

print_me("Initial ecliptical longitude", round(lon0(), 5))

# Initial ecliptical longitude: 149.48194

print_me("Initial ecliptical latitude", round(lat0(), 5))

# Initial ecliptical latitude: 1.76549

lon, lat = Earth.precession_ecliptical(start_epoch, final_epoch, lon0, lat0)

print_me("Final ecliptical longitude", round(lon(), 3))

# Final ecliptical longitude: 118.704

print_me("Final ecliptical latitude", round(lat(), 3))

# Final ecliptical latitude: 1.615

Additionally, module Coordinates provides a function to compute the true movement of a star through the sky relative to the Sun:

ra = Angle(6, 45, 8.871, ra=True)

dec = Angle(-16.716108)

pm_ra = Angle(0, 0, -0.03847, ra=True)

pm_dec = Angle(0, 0, -1.2053)

dist = 2.64

vel = -7.6

alpha, delta = motion_in_space(ra, dec, dist, vel, pm_ra, pm_dec, -4000.0)

print(alpha.ra_str(False, 2))

# 6:47:39.91

print(delta.dms_str(False, 1))

# -15:23:30.6

This module Coordinates also provides a series of functions to convert between equatorial, ecliptical, horizontal and galactic coordinates.

  • Equatorial to ecliptical coordinates:

    ra = Angle(7, 45, 18.946, ra=True)
    
    dec = Angle(28, 1, 34.26)
    
    epsilon = Angle(23.4392911)
    
    lon, lat = equatorial2ecliptical(ra, dec, epsilon)
    
    print_me("Equatorial to ecliptical. Longitude", round(lon(), 5))
    
    # Equatorial to ecliptical. Longitude: 113.21563
    
    print_me("Equatorial to ecliptical. Latitude", round(lat(), 5))
    
    # Equatorial to ecliptical. Latitude: 6.68417
    
  • Ecliptical to equatorial coordinates:

    lon = Angle(113.21563)
    
    lat = Angle(6.68417)
    
    epsilon = Angle(23.4392911)
    
    ra, dec = ecliptical2equatorial(lon, lat, epsilon)
    
    print_me("Ecliptical to equatorial. Right ascension", ra.ra_str(n_dec=3))
    
    # Ecliptical to equatorial. Right ascension: 7h 45' 18.946''
    
    print_me("Ecliptical to equatorial. Declination", dec.dms_str(n_dec=2))
    
    # Ecliptical to equatorial. Declination: 28d 1' 34.26''
    
  • Equatorial to horizontal coordinates:

    lon = Angle(77, 3, 56)
    
    lat = Angle(38, 55, 17)
    
    ra = Angle(23, 9, 16.641, ra=True)
    
    dec = Angle(-6, 43, 11.61)
    
    theta0 = Angle(8, 34, 57.0896, ra=True)
    
    eps = Angle(23, 26, 36.87)
    
    # Compute correction to convert from mean to apparent sidereal time
    
    delta = Angle(0, 0, ((-3.868*cos(eps.rad()))/15.0), ra=True)
    
    theta0 += delta
    
    h = theta0 - lon - ra
    
    azi, ele = equatorial2horizontal(h, dec, lat)
    
    print_me("Equatorial to horizontal: Azimuth", round(azi, 3))
    
    # Equatorial to horizontal: Azimuth: 68.034
    
    print_me("Equatorial to horizontal: Elevation", round(ele, 3))
    
    # Equatorial to horizontal: Elevation: 15.125
    
  • Horizontal to equatorial coordinates:

    azi = Angle(68.0337)
    
    ele = Angle(15.1249)
    
    lat = Angle(38, 55, 17)
    
    h, dec = horizontal2equatorial(azi, ele, lat)
    
    print_me("Horizontal to equatorial. Hour angle", round(h, 4))
    
    # Horizontal to equatorial. Hour angle: 64.3521
    
    print_me("Horizontal to equatorial. Declination", dec.dms_str(n_dec=0))
    
    # Horizontal to equatorial. Declination: -6d 43' 12.0''
    
  • Equatorial to galactic coordinates:

    ra = Angle(17, 48, 59.74, ra=True)
    
    dec = Angle(-14, 43, 8.2)
    
    lon, lat = equatorial2galactic(ra, dec)
    
    print_me("Equatorial to galactic. Longitude", round(lon, 4))
    
    # Equatorial to galactic. Longitude: 12.9593
    
    print_me("Equatorial to galactic. Latitude", round(lat, 4))
    
    # Equatorial to galactic. Latitude: 6.0463
    
  • Galactic to equatorial coordinates:

    lon = Angle(12.9593)
    
    lat = Angle(6.0463)
    
    ra, dec = galactic2equatorial(lon, lat)
    
    print_me("Galactic to equatorial. Right ascension", ra.ra_str(n_dec=1))
    
    # Galactic to equatorial. Right ascension: 17h 48' 59.7''
    
    print_me("Galactic to equatorial. Declination", dec.dms_str(n_dec=0))
    
    # Galactic to equatorial. Declination: -14d 43' 8.0''
    

In addition, there is a function to compute the ecliptic longitudes of the two points of the ecliptic which are on the horizon, as well as the angle between the ecliptic and the horizon:

sidereal_time = Angle(5.0, ra=True)

lat = Angle(51.0)

epsilon = Angle(23.44)

lon1, lon2, i = ecliptic_horizon(sidereal_time, lat, epsilon)

print_me("Longitude of ecliptic point #1 on the horizon", lon1.dms_str(n_dec=1))

# Longitude of ecliptic point #1 on the horizon: 169d 21' 29.9''

print_me("Longitude of ecliptic point #2 on the horizon", lon2.dms_str(n_dec=1))

# Longitude of ecliptic point #2 on the horizon: 349d 21' 29.9''

print_me("Angle between the ecliptic and the horizon", round(i, 0))

# Angle between the ecliptic and the horizon: 62.0

Also, it is possible to compute the angle of the diurnal path of a celestial body relative to the horizon at the time of rising and setting:

dec = Angle(23.44)

lat = Angle(40.0)

j = diurnal_path_horizon(dec, lat)

print_me("Diurnal path vs. horizon angle at time of rising and setting", j.dms_str(n_dec=1))

# Diurnal path vs. horizon angle at time of rising and setting: 45d 31' 28.4''

The times (in hours of the day) of rising, transit and setting of a given celestial body can be computed with the appropriate function:

longitude = Angle(71, 5, 0.0)

latitude = Angle(42, 20, 0.0)

alpha1 = Angle(2, 42, 43.25, ra=True)

delta1 = Angle(18, 2, 51.4)

alpha2 = Angle(2, 46, 55.51, ra=True)

delta2 = Angle(18, 26, 27.3)

alpha3 = Angle(2, 51, 7.69, ra=True)

delta3 = Angle(18, 49, 38.7)

h0 = Angle(-0.5667)

delta_t = 56.0

theta0 = Angle(11, 50, 58.1, ra=True)

rising, transit, setting = times_rise_transit_set(longitude, latitude,alpha1, delta1, \

                                                  alpha2, delta2, alpha3, delta3, h0, \

                                                  delta_t, theta0)

print_me("Time of rising (hours of day)", round(rising, 4))

# Time of rising (hours of day): 12.4238

print_me("Time of transit (hours of day)", round(transit, 3))

# Time of transit (hours of day): 19.675

print_me("Time of setting (hours of day, next day)", round(setting, 3))

# Time of setting (hours of day, next day): 2.911

The air in the atmosphere introduces an error in the elevation due to the refraction. We can compute the true (airless) elevation from the apparent elevation, and viceversa.

  • Apparent elevation to true (airless) elevation:

    apparent_elevation = Angle(0, 30, 0.0)
    
    true_elevation = refraction_apparent2true(apparent_elevation)
    
    print_me("True elevation for an apparent elevation of 30'",
    
             true_elevation.dms_str(n_dec=1))
    
    # True elevation for an apparent elevation of 30': 1' 14.7''
    
  • True elevation to apparent elevation:

    true_elevation = Angle(0, 33, 14.76)
    
    apparent_elevation = refraction_true2apparent(true_elevation)
    
    print_me("Apparent elevation for a true elevation of 33' 14.76''",
    
             apparent_elevation.dms_str(n_dec=2))
    
    # Apparent elevation for a true elevation of 33' 14.76'': 57' 51.96''
    

This module provides a function to compute the angular separation between two celestial bodies:

alpha1 = Angle(14, 15, 39.7, ra=True)

delta1 = Angle(19, 10, 57.0)

alpha2 = Angle(13, 25, 11.6, ra=True)

delta2 = Angle(-11, 9, 41.0)

sep_ang = angular_separation(alpha1, delta1, alpha2, delta2)

print_me("Angular separation between two given celestial bodies, in degrees",
         round(sep_ang, 3))

# Angular separation between two given celestial bodies, in degrees: 32.793

We can compute the minimum angular separation achieved between two celestial objects. For that, we must provide the positions at three equidistant epochs:

# EPOCH: Sep 13th, 1978, 0h TT:

alpha1_1 = Angle(10, 29, 44.27, ra=True)

delta1_1 = Angle(11, 2, 5.9)

alpha2_1 = Angle(10, 33, 29.64, ra=True)

delta2_1 = Angle(10, 40, 13.2)

# EPOCH: Sep 14th, 1978, 0h TT:

alpha1_2 = Angle(10, 36, 19.63, ra=True)

delta1_2 = Angle(10, 29, 51.7)

alpha2_2 = Angle(10, 33, 57.97, ra=True)

delta2_2 = Angle(10, 37, 33.4)

# EPOCH: Sep 15th, 1978, 0h TT:

alpha1_3 = Angle(10, 43, 1.75, ra=True)

delta1_3 = Angle(9, 55, 16.7)

alpha2_3 = Angle(10, 34, 26.22, ra=True)

delta2_3 = Angle(10, 34, 53.9)

a = minimum_angular_separation(alpha1_1, delta1_1, alpha1_2, delta1_2,

                               alpha1_3, delta1_3, alpha2_1, delta2_1,

                               alpha2_2, delta2_2, alpha2_3, delta2_3)

print_me("Minimum angular separation, epoch fraction", round(a[0], 6))

# Minimum angular separation, epoch fraction: -0.370726

# NOTE: Given that 'n' is negative, and Sep 14th is the middle epoch (n=0),

# then the minimum angular separation is achieved on Sep 13th, specifically

# at: 1.0 - 0.370726 = 0.629274 => Sep 13.629274 = Sep 13th, 15h 6' 9''

print_me("Minimum angular separation", a[1].dms_str(n_dec=0))

# Minimum angular separation: 3' 44.0''

There is a function to compute the relative position angle P of a body with respect to another body. In this example, given that the two bodies have the same right ascension, then the relative position angle between them must be 0 (or 180):

alpha1 = Angle(14, 15, 39.7, ra=True)

delta1 = Angle(19, 10, 57.0)

alpha2 = Angle(14, 15, 39.7, ra=True)                   # Same as alpha1

delta2 = Angle(-11, 9, 41.0)

pos_ang = relative_position_angle(alpha1, delta1, alpha2, delta2)

print_me("Relative position angle", round(pos_ang, 1))

# Relative position angle: 0.0

Planetary conjunctions may be computed with the appropriate function:

alpha1_1 = Angle(10, 24, 30.125, ra=True)

delta1_1 = Angle(6, 26, 32.05)

alpha1_2 = Angle(10, 25,  0.342, ra=True)

delta1_2 = Angle(6, 10, 57.72)

alpha1_3 = Angle(10, 25, 12.515, ra=True)

delta1_3 = Angle(5, 57, 33.08)

alpha1_4 = Angle(10, 25,  6.235, ra=True)

delta1_4 = Angle(5, 46, 27.07)

alpha1_5 = Angle(10, 24, 41.185, ra=True)

delta1_5 = Angle(5, 37, 48.45)

alpha2_1 = Angle(10, 27, 27.175, ra=True)

delta2_1 = Angle(4,  4, 41.83)

alpha2_2 = Angle(10, 26, 32.410, ra=True)

delta2_2 = Angle(3, 55, 54.66)

alpha2_3 = Angle(10, 25, 29.042, ra=True)

delta2_3 = Angle(3, 48,  3.51)

alpha2_4 = Angle(10, 24, 17.191, ra=True)

delta2_4 = Angle(3, 41, 10.25)

alpha2_5 = Angle(10, 22, 57.024, ra=True)

delta2_5 = Angle(3, 35, 16.61)

alpha1_list = [alpha1_1, alpha1_2, alpha1_3, alpha1_4, alpha1_5]

delta1_list = [delta1_1, delta1_2, delta1_3, delta1_4, delta1_5]

alpha2_list = [alpha2_1, alpha2_2, alpha2_3, alpha2_4, alpha2_5]

delta2_list = [delta2_1, delta2_2, delta2_3, delta2_4, delta2_5]

pc = planetary_conjunction(alpha1_list, delta1_list, alpha2_list, delta2_list)

print_me("Epoch fraction 'n' for planetary conjunction", round(pc[0], 5))

# Epoch fraction 'n' for planetary conjunction: 0.23797

print_me("Difference in declination at conjunction", pc[1].dms_str(n_dec=1))

# Difference in declination at conjunction: 2d 8' 21.8''

If the planetary conjunction is with a star, it is a little bit simpler:

alpha_1 = Angle(15,  3, 51.937, ra=True)

delta_1 = Angle(-8, 57, 34.51)

alpha_2 = Angle(15,  9, 57.327, ra=True)

delta_2 = Angle(-9,  9,  3.88)

alpha_3 = Angle(15, 15, 37.898, ra=True)

delta_3 = Angle(-9, 17, 37.94)

alpha_4 = Angle(15, 20, 50.632, ra=True)

delta_4 = Angle(-9, 23, 16.25)

alpha_5 = Angle(15, 25, 32.695, ra=True)

delta_5 = Angle(-9, 26,  1.01)

alpha_star = Angle(15, 17, 0.446, ra=True)

delta_star = Angle(-9, 22, 58.47)

alpha_list = [alpha_1, alpha_2, alpha_3, alpha_4, alpha_5]

delta_list = [delta_1, delta_2, delta_3, delta_4, delta_5]

pc = planet_star_conjunction(alpha_list, delta_list, alpha_star, delta_star)

print_me("Epoch fraction 'n' for planetary conjunction with star", round(pc[0], 4))

# Epoch fraction 'n' for planetary conjunction with star: 0.2551

print_me("Difference in declination with star at conjunction", pc[1].dms_str(n_dec=0))

# Difference in declination with star at conjunction: 3' 38.0''

It is possible to compute when a planet and two other stars will be in a straight line:

alpha_1 = Angle(7, 55, 55.36, ra=True)

delta_1 = Angle(21, 41,  3.0)

alpha_2 = Angle(7, 58, 22.55, ra=True)

delta_2 = Angle(21, 35, 23.4)

alpha_3 = Angle(8,  0, 48.99, ra=True)

delta_3 = Angle(21, 29, 38.2)

alpha_4 = Angle(8,  3, 14.66, ra=True)

delta_4 = Angle(21, 23, 47.5)

alpha_5 = Angle(8,  5, 39.54, ra=True)

delta_5 = Angle(21, 17, 51.4)

alpha_star1 = Angle(7, 34, 16.40, ra=True)

delta_star1 = Angle(31, 53, 51.2)

alpha_star2 = Angle(7, 45,  0.10, ra=True)

delta_star2 = Angle(28,  2, 12.5)

alpha_list = [alpha_1, alpha_2, alpha_3, alpha_4, alpha_5]

delta_list = [delta_1, delta_2, delta_3, delta_4, delta_5]

n = planet_stars_in_line(alpha_list, delta_list, alpha_star1, delta_star1,

                         alpha_star2, delta_star2)

print_me("Epoch fraction 'n' when bodies are in a straight line", round(n, 4))

# Epoch fraction 'n' when bodies are in a straight line: 0.2233

The function ‘straight_line()’ computes if three celestial bodies are in line providing the angle with which the bodies differ from a great circle:

alpha1 = Angle(5, 32,  0.40, ra=True)

delta1 = Angle(0, -17, 56.9)

alpha2 = Angle(5, 36, 12.81, ra=True)

delta2 = Angle(-1, 12,  7.0)

alpha3 = Angle(5, 40, 45.52, ra=True)

delta3 = Angle(-1, 56, 33.3)

psi, omega = straight_line(alpha1, delta1, alpha2, delta2, alpha3, delta3)

print_me("Angle deviation from a straight line", psi.dms_str(n_dec=0))

# Angle deviation from a straight line: 7d 31' 1.0''

print_me("Angular distance of central point to the straight line", omega.dms_str(n_dec=0))

# Angular distance of central point to the straight line: -5' 24.0''

Now let’s compute the size of the smallest circle that contains three given celestial bodies:

alpha1 = Angle(12, 41,  8.63, ra=True)

delta1 = Angle(-5, 37, 54.2)

alpha2 = Angle(12, 52,  5.21, ra=True)

delta2 = Angle(-4, 22, 26.2)

alpha3 = Angle(12, 39, 28.11, ra=True)

delta3 = Angle(-1, 50,  3.7)

d = circle_diameter(alpha1, delta1, alpha2, delta2, alpha3, delta3)

print_me("Diameter of smallest circle containing three celestial bodies", d.dms_str(n_dec=0))

# Diameter of smallest circle containing three celestial bodies: 4d 15' 49.0''

Let’s find the apparent position of a star (Theta Persei) for a given epoch:

epoch = Epoch(2028, 11, 13.19)

alpha = Angle(2, 46, 11.331, ra=True)

delta = Angle(49, 20, 54.54)

sun_lon = Angle(231.328)

app_alpha, app_delta = apparent_position(epoch, alpha, delta, sun_lon)

print_me("Apparent right ascension", app_alpha.ra_str(n_dec=2))

# Apparent right ascension: 2h 46' 14.39''

print_me("Apparent declination", app_delta.dms_str(n_dec=2))

# Apparent declination: 49d 21' 7.45''

Convert orbital elements of a celestial object from one equinox to another:

epoch0 = Epoch(2358042.5305)

epoch = Epoch(2433282.4235)

i0 = Angle(47.122)

arg0 = Angle(151.4486)

lon0 = Angle(45.7481)

i1, arg1, lon1 = orbital_equinox2equinox(epoch0, epoch, i0, arg0, lon0)

print_me("New inclination", round(i1(), 3))

# New inclination: 47.138

print_me("New argument of perihelion", round(arg1(), 4))

# New argument of perihelion: 151.4782

print_me("New longitude of ascending node", round(lon1(), 4))

# New longitude of ascending node: 48.6037

Compute the eccentric and true anomalies using Kepler’s equation:

eccentricity = 0.1

mean_anomaly = Angle(5.0)

e, v = kepler_equation(eccentricity, mean_anomaly)

print_me("Eccentric anomaly, Case #1", round(e(), 6))

# Eccentric anomaly, Case #1: 5.554589

print_me("True anomaly, Case #1", round(v(), 6))

# True anomaly, Case #1: 6.139762

e, v = kepler_equation(0.99, Angle(0.2, radians=True))

print_me("Eccentric anomaly, Case #2", round(e(), 8))

# Eccentric anomaly, Case #2: 61.13444578

print_me("True anomaly, Case #2", round(v(), 6))

# True anomaly, Case #2: 166.311977

Compute the velocity of a body in a given point of its (unperturbated elliptic) orbit, in this case the comet Halley in 1986:

r = 1.0

a = 17.9400782

v = velocity(r, a)

print_me("Velocity ar 1 AU", round(v, 2))

# Velocity at 1 AU: 41.53

Compute the velocity at perihelion:

a = 17.9400782

e = 0.96727426

vp = velocity_perihelion(e, a)

print_me("Velocity at perihelion", round(vp, 2))

# Velocity at perihelion: 54.52

And now compute the velocity at aphelion:

a = 17.9400782

e = 0.96727426

va = velocity_aphelion(e, a)

print_me("Velocity at aphelion", round(va, 2))

# Velocity at aphelion: 0.91

Calculate the length of the orbit for the same comet Halley:

a = 17.9400782

e = 0.96727426

length = length_orbit(e, a)

print_me("Length of the orbit (AU)", round(length, 2))

# Length of the orbit (AU): 77.06

Compute passage through the nodes of an elliptic orbit:

omega = Angle(111.84644)

e = 0.96727426

a = 17.9400782

t = Epoch(1986, 2, 9.45891)

time, r = passage_nodes_elliptic(omega, e, a, t)

y, m, d = time.get_date()

d = round(d, 2)

print("Time of passage through ascending node: {}/{}/{}".format(y, m, d))

# Time of passage through ascending node: 1985/11/9.16

print("Radius vector at ascending node: {}".format(round(r, 4)))

# Radius vector at ascending node: 1.8045

Passage through the nodes of a parabolic orbit:

omega = Angle(154.9103)

q = 1.324502

t = Epoch(1989, 8, 20.291)

time, r = passage_nodes_parabolic(omega, q, t, ascending=False)

y, m, d = time.get_date()

d = round(d, 2)

print("Time of passage through descending node: {}/{}/{}".format(y, m, d))

# Time of passage through descending node: 1989/9/17.64

print("Radius vector at descending node: {}".format(round(r, 4)))

# Radius vector at descending node: 1.3901

Compute the phase angle:

sun_dist = 0.724604

earth_dist = 0.910947

sun_earth_dist = 0.983824

angle = phase_angle(sun_dist, earth_dist, sun_earth_dist)

print_me("Phase angle", round(angle, 2))

# Phase angle: 72.96

Now, let’s compute the illuminated fraction of the disk:

k = illuminated_fraction(sun_dist, earth_dist, sun_earth_dist)

print_me("Illuminated fraction of planet disk", round(k, 3))

# Illuminated fraction of planet disk: 0.647

CurveFitting examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

Now let’s work with the CurveFitting class. First, create a CurveFitting object:

cf1 = CurveFitting([73.0, 38.0, 35.0, 42.0, 78.0, 68.0, 74.0, 42.0, 52.0,

                    54.0, 39.0, 61.0, 42.0, 49.0, 50.0, 62.0, 44.0, 39.0,

                    43.0, 54.0, 44.0, 37.0],

                   [90.4, 125.3, 161.8, 143.4, 52.5, 50.8, 71.5, 152.8,

                    131.3, 98.5, 144.8, 78.1, 89.5, 63.9, 112.1, 82.0,

                    119.8, 161.2, 208.4, 111.6, 167.1, 162.1])

Let’s use linear_fitting():

a, b = cf1.linear_fitting()

print("   a = {}\tb = {}".format(round(a, 2), round(b, 2)))

#    a = -2.49      b = 244.18

Use the copy constructor:

cf2 = CurveFitting(cf1)

a, b = cf2.linear_fitting()

print("   a = {}\tb = {}".format(round(a, 2), round(b, 2)))

#    a = -2.49      b = 244.18

Get the number of value pairs internally stored:

print_me("Number of value pairs inside 'cf2'", len(cf2))

# Number of value pairs inside 'cf2': 22

Compute the correlation coefficient:

r = cf1.correlation_coeff()

print_me("   r", round(r, 3))

#    r: -0.767

Define a new CurveFitting object:

cf2 = CurveFitting([-2.0, -1.5, -1.0, -0.5, 0.0, 0.5, 1.0, 1.5, 2.0, 2.5, 3.0],

                   [-9.372, -3.821, 0.291, 3.730, 5.822, 8.324, 9.083,

                    6.957, 7.006, 0.365, -1.722])

Now use quadratic_fitting():

a, b, c = cf2.quadratic_fitting()

# Original curve: y = -2.0*x*x + 3.5*x + 7.0 + noise

print("   a = {}\tb = {}\tc = {}".format(round(a, 2), round(b, 2), round(c, 2)))

#    a = -2.22      b = 3.76        c = 6.64

Yet another CurveFitting object:

cf4 = CurveFitting([3, 20, 34, 50, 75, 88, 111, 129, 143, 160, 183, 200,

                    218, 230, 248, 269, 290, 303, 320, 344],

                   [0.0433, 0.2532, 0.3386, 0.3560, 0.4983, 0.7577, 1.4585,

                    1.8628, 1.8264, 1.2431, -0.2043, -1.2431, -1.8422,

                    -1.8726, -1.4889, -0.8372, -0.4377, -0.3640, -0.3508,

                    -0.2126])

Let’s define the three functions to be used for fitting:

def sin1(x): return sin(radians(x))

def sin2(x): return sin(radians(2.0*x))

def sin3(x): return sin(radians(3.0*x))

Use general_fitting() here:

a, b, c = cf4.general_fitting(sin1, sin2, sin3)

# General fitting with f0 = sin(x), f1 = sin(2*x), f2 = sin(3*x)

print("   a = {}\tb = {}\tc = {}".format(round(a, 2), round(b, 2), round(c, 2)))

#    a = 1.2        b = -0.77       c = 0.39

A final example:

cf5 = CurveFitting([0, 1.2, 1.4, 1.7, 2.1, 2.2])

a, b, c = cf5.general_fitting(sqrt)

# General fitting with f0 = sqrt(x), f1 = 0.0 and f2 = 0.0

print("   a = {}\tb = {}\t\tc = {}".format(round(a, 3), round(b, 3), round(c, 3)))

#   a = 1.016       b = 0.0         c = 0.0

Earth examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

An important concept are the reference ellipsoids, comprising information about the Earth global model we are going to use.

A very important reference ellipsoid is WGS84, predefined here:

print_me("WGS84", WGS84)

# WGS84: 6378137.0:0.00335281066475:7.292115e-05

# First field is equatorial radius, second field is the flattening, and the

# third field is the angular rotation velocity, in radians per second

Let’s print the semi-minor axis (polar radius):

print_me("Polar radius, b", WGS84.b())

# Polar radius, b: 6356752.31425

And now, let’s print the eccentricity of Earth’s meridian:

print_me("Eccentricity, e", WGS84.e())

# Eccentricity, e: 0.0818191908426

We create an Earth object with a given reference ellipsoid. By default, it is WGS84, but we can use another:

e = Earth(IAU76)

Print the parameters of reference ellipsoid being used:

print_me("'e' Earth object parameters", e)

# 'e' Earth object parameters: 6378140.0:0.0033528131779:7.292114992e-05

Compute the distance to the center of the Earth from a given point at sea level, and at a certain latitude. It is given as a fraction of equatorial radius:

lat = Angle(65, 45, 30.0)               # We can use an Angle for this

print_me("Distance to Earth's center, from latitude 65d 45' 30''", e.rho(lat))

# Distance to Earth's center, from latitude 65d 45' 30'': 0.997216343095

Parameters rho*sin(lat) and rho*cos(lat) are useful for different astronomical applications:

height = 650.0

print_me("rho*sin(lat)", e.rho_sinphi(lat, height))

# rho*sin(lat): 0.908341718779

print_me("rho*cos(lat)", e.rho_cosphi(lat, height))

# rho*cos(lat): 0.411775501279

Compute the radius of the parallel circle at a given latitude:

print_me("Radius of parallel circle at latitude 65d 45' 30'' (meters)", e.rp(lat))

# Radius of parallel circle at latitude 65d 45' 30'' (meters): 2626094.91467

Compute the radius of curvature of the Earth’s meridian at given latitude:

print_me("Radius of Earth's meridian at latitude 65d 45' 30'' (meters)", e.rm(lat))

# Radius of Earth's meridian at latitude 65d 45' 30'' (meters): 6388705.74543

It is easy to compute the linear velocity at different latitudes:

print_me("Linear velocity at the Equator (meters/second)", e.linear_velocity(0.0))

# Linear velocity at the Equator (meters/second): 465.101303151

print_me("Linear velocity at latitude 65d 45' 30'' (meters/second)", e.linear_velocity(lat))

# Linear velocity at latitude 65d 45' 30'' (meters/second): 191.497860977

And now, let’s compute the distance between two points on the Earth:

  • Bangkok: 13d 14’ 09’’ North, 100d 29’ 39’’ East
  • Buenos Aires: 34d 36’ 12’’ South, 58d 22’ 54’’ West

Note

We will consider that positions ‘East’ and ‘South’ are negative

Here we will take advantage of facilities provided by Angle class:

lon_ban = Angle(-100, 29, 39.0)

lat_ban = Angle(13, 14, 9.0)

lon_bai = Angle(58, 22, 54.0)

lat_bai = Angle(-34, 36, 12.0)

dist, error = e.distance(lon_ban, lat_ban, lon_bai, lat_bai)

print_me("The distance between Bangkok and Buenos Aires is (km)", round(dist/1000.0, 2))

# The distance between Bangkok and Buenos Aires is (km): 16832.89

print_me("The approximate error of the estimation is (meters)", round(error, 0))

# The approximate error of the estimation is (meters): 189.0

Let’s now compute the geometric heliocentric position for a given epoch:

epoch = Epoch(1992, 10, 13.0)

lon, lat, r = Earth.geometric_heliocentric_position(epoch)

print_me("Geometric Heliocentric Longitude", lon.to_positive())

# Geometric Heliocentric Longitude: 19.9072721503

print_me("Geometric Heliocentric Latitude", lat.dms_str(n_dec=3))

# Geometric Heliocentric Latitude: -0.721''

print_me("Radius vector", r)

# Radius vector: 0.997608520236

And now, compute the apparent heliocentric position for the same epoch:

epoch = Epoch(1992, 10, 13.0)

lon, lat, r = Earth.apparent_heliocentric_position(epoch)

print_me("Apparent Heliocentric Longitude", lon.to_positive())

# Apparent Heliocentric Longitude: 19.9059856939

print_me("Apparent Heliocentric Latitude", lat.dms_str(n_dec=3))

# Apparent Heliocentric Latitude: -0.721''

print_me("Radius vector", r)

# Radius vector: 0.997608520236

Print mean orbital elements for Earth at 2065.6.24:

epoch = Epoch(2065, 6, 24.0)

l, a, e, i, ome, arg = Earth.orbital_elements_mean_equinox(epoch)

print_me("Mean longitude of the planet", round(l, 6))

# Mean longitude of the planet: 272.716028

print_me("Semimajor axis of the orbit (UA)", round(a, 8))

# Semimajor axis of the orbit (UA): 1.00000102

print_me("Eccentricity of the orbit", round(e, 7))

# Eccentricity of the orbit: 0.0166811

print_me("Inclination on plane of the ecliptic", round(i, 6))

# Inclination on plane of the ecliptic: 0.0

print_me("Longitude of the ascending node", round(ome, 5))

# Longitude of the ascending node: 174.71534

print_me("Argument of the perihelion", round(arg, 6))

# Argument of the perihelion: -70.651889

Find the epoch of the Perihelion closer to 2008/02/01:

epoch = Epoch(2008, 2, 1.0)

e = Earth.perihelion_aphelion(epoch)

y, m, d, h, mi, s = e.get_full_date()

peri = str(y) + '/' + str(m) + '/' + str(d) + ' ' + str(h) + ':' + str(mi)

print_me("The Perihelion closest to 2008/2/1 happened on", peri)

# The Perihelion closest to 2008/2/1 happened on: 2008/1/2 23:53

Compute the time of passage through an ascending node:

epoch = Epoch(2019, 1, 1)

time, r = Earth.passage_nodes(epoch)

y, m, d = time.get_date()

d = round(d, 1)

print("Time of passage through ascending node: {}/{}/{}".format(y, m, d))

# Time of passage through ascending node: 2019/3/15.0

print("Radius vector at ascending node: {}".format(round(r, 4)))

# Radius vector at ascending node: 0.9945

Compute the parallax correction:

right_ascension = Angle(22, 38, 7.25, ra=True)

declination = Angle(-15, 46, 15.9)

latitude = Angle(33, 21, 22)

distance = 0.37276

hour_angle = Angle(288.7958)

top_ra, top_dec = Earth.parallax_correction(right_ascension, declination,

                                            latitude, distance, hour_angle)

print_me("Corrected topocentric right ascension: ", top_ra.ra_str(n_dec=2))

# Corrected topocentric right ascension: : 22h 38' 8.54''

print_me("Corrected topocentric declination", top_dec.dms_str(n_dec=1))

# Corrected topocentric declination: -15d 46' 30.0''

Compute the parallax correction in ecliptical coordinates:

longitude = Angle(181, 46, 22.5)

latitude = Angle(2, 17, 26.2)

semidiameter = Angle(0, 16, 15.5)

obs_lat = Angle(50, 5, 7.8)

obliquity = Angle(23, 28, 0.8)

sidereal_time = Angle(209, 46, 7.9)

distance = 0.0024650163

topo_lon, topo_lat, topo_diam = \

    Earth.parallax_ecliptical(longitude, latitude, semidiameter, obs_lat,

                              obliquity, sidereal_time, distance)

print_me("Corrected topocentric longitude", topo_lon.dms_str(n_dec=1))

# Corrected topocentric longitude: 181d 48' 5.0''

print_me("Corrected topocentric latitude", topo_lat.dms_str(n_dec=1))

# Corrected topocentric latitude: 1d 29' 7.1''

print_me("Corrected topocentric semidiameter", topo_diam.dms_str(n_dec=1))

# Corrected topocentric semidiameter: 16' 25.5''

Epoch examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

Let’s start creating and Epoch object, and printing it:

e = Epoch(1987, 6, 19.5)

print_me("JDE for 1987/6/19.5", e)

# JDE for 1987/6/19.5: 2446966.00064

Redefine the Epoch object:

e.set(333, 'Jan', 27, 12)

print_me("JDE for 333/1/27.5", e)

# JDE for 333/1/27.5: 1842713.0

We can create an Epoch from a date or datetime object:

d = datetime.datetime(837, 4, 10, 7, 12, 0, 0)

f = Epoch(d)

print_me("JDE for 837/4/10.3", f)

# JDE for 837/4/10.3: 2026871.8

Let’s check if a given date belong to the Julian or the Gregorian calendar:

print_me("Is 1590/4/21.4 a Julian date?", Epoch.is_julian(1590, 4, 21.4))

# Is 1590/4/21.4 a Julian date?: False

We can also check if a given year is leap or not:

print_me("Is -1000 a leap year?", Epoch.is_leap(-1000))

# Is -1000 a leap year?: True

print_me("Is 1800 a leap year?", Epoch.is_leap(1800))

# Is 1800 a leap year?: False

print_me("Is 2012 a leap year?", Epoch.is_leap(2012))

# Is 2012 a leap year?: True

Get the Day Of Year (DOY) corresponding to a given date:

print_me("Day Of Year (DOY) of 1978/11/14", Epoch.get_doy(1978, 11, 14))

# Day Of Year (DOY) of 1978/11/14: 318.0

print_me("Day Of Year (DOY) of -400/2/29.9", Epoch.get_doy(-400, 2, 29.9))

# Day Of Year (DOY) of -400/2/29.9: 60.9

Now the opposite: Get a date from a DOY:

t = Epoch.doy2date(2017, 365.7)

s = str(t[0]) + "/" + str(t[1]) + "/" + str(round(t[2], 2))

print_me("Date from DOY 2017:365.7", s)

# Date from DOY 2017:365.7: 2017/12/31.7

t = Epoch.doy2date(-4, 60)

s = str(t[0]) + "/" + str(t[1]) + "/" + str(round(t[2], 2))

print_me("Date from DOY -4:60", s)

# Date from DOY -4:60: -4/2/29.0

There is an internal table which we can use to get the leap seconds:

print_me("Number of leap seconds applied up to July 1983", Epoch.leap_seconds(1983, 7))

# Number of leap seconds applied up to July 1983: 12

We can convert the internal JDE value back to a date:

e = Epoch(2436116.31)

y, m, d = e.get_date()

s = str(y) + "/" + str(m) + "/" + str(round(d, 2))

print_me("Date from JDE 2436116.31", s)

# Date from JDE 2436116.31: 1957/10/4.81

It is possible to get the day of the week corresponding to a given date:

e = Epoch(2018, 'Feb', 15)

print_me("The day of week of 2018/2/15 is", e.dow(as_string=True))

# The day of week of 2018/2/15 is: Thursday

In some cases it is useful to get the Modified Julian Day (MJD):

e = Epoch(1923, 'August', 23)

print_me("Modified Julian Day for 1923/8/23", round(e.mjd(), 2))

# Modified Julian Day for 1923/8/23: 23654.0

If your system is appropriately configured, you can get the difference in seconds between your local time and UTC:

print_me("From local system time to UTC you must add/subtract" +

         " this amount of seconds", Epoch.utc2local())

# From local system time to UTC you must add/subtract this amount of seconds: 7200.0

Compute DeltaT = TT - UT differences for various dates:

print_me("DeltaT (TT - UT) for Feb/333", round(Epoch.tt2ut(333, 2), 1))

# DeltaT (TT - UT) for Feb/333: 7358.5

print_me("DeltaT (TT - UT) for Jan/1642", round(Epoch.tt2ut(1642, 1), 1))

# DeltaT (TT - UT) for Jan/1642: 62.1

print_me("DeltaT (TT - UT) for Feb/1928", round(Epoch.tt2ut(1928, 1), 1))

# DeltaT (TT - UT) for Feb/1928: 24.2

print_me("DeltaT (TT - UT) for Feb/1977", round(Epoch.tt2ut(1977, 2), 1))

# DeltaT (TT - UT) for Feb/1977: 47.7

print_me("DeltaT (TT - UT) for Jan/1998", round(Epoch.tt2ut(1998, 1), 1))

# DeltaT (TT - UT) for Jan/1998: 63.0

The difference between civil day and sidereal day is almost 4 minutes:

e = Epoch(1987, 4, 10)

st1 = round(e.mean_sidereal_time(), 9)

e = Epoch(1987, 4, 11)

st2 = round(e.mean_sidereal_time(), 9)

ds = (st2 - st1)*DAY2MIN

msg = "{}m {}s".format(INT(ds), (ds % 1)*60.0)

print_me("Difference between sidereal time 1987/4/11 and 1987/4/10", msg)

# Difference between sidereal time 1987/4/11 and 1987/4/10: 3m 56.555424s

When correcting for nutation-related effects, we get the apparent sidereal time:

e = Epoch(1987, 4, 10)

print_me("e.apparent_sidereal_time(23.44357, (-3.788)/3600.0)",

         e.apparent_sidereal_time(23.44357, (-3.788)/3600.0))

# e.apparent_sidereal_time(23.44357, (-3.788)/3600.0): 0.549145082637

Epoch class can also provide the date of Easter for a given year. Let’s spice up the output a little bit, calling dow() and get_month():

month, day = Epoch.easter(2019)

e = Epoch(2019, month, day)

s = e.dow(as_string=True) + ", " + str(day) + get_ordinal_suffix(day) + \

    " of " + Epoch.get_month(month, as_string=True)

print_me("Easter day for 2019", s)

# Easter day for 2019: Sunday, 21st of April

Compute the date of the Jewish Easter (Pesach) for a given year:

month, day = Epoch.jewish_pesach(1990)

s = str(day) + get_ordinal_suffix(day) + " of " + Epoch.get_month(month, as_string=True)

print_me("Jewish Pesach day for 1990", s)

# Jewish Pesach day for 1990: 10th of April

Now, let’s convert a date in the Moslem calendar to the Gregorian calendar:

y, m, d = Epoch.moslem2gregorian(1421, 1, 1)

print_me("The date 1421/1/1 in the Moslem calendar is, in Gregorian " +

         "calendar", "{}/{}/{}".format(y, m, d))

# The date 1421/1/1 in the Moslem calendar is, in Gregorian calendar: 2000/4/6

y, m, d = Epoch.moslem2gregorian(1439, 9, 1)

print_me("The start of Ramadan month (9/1) for Gregorian year 2018 is",

         "{}/{}/{}".format(y, m, d))

# The start of Ramadan month (9/1) for Gregorian year 2018 is: 2018/5/16

We can go from the Gregorian calendar back to the Moslem calendar too:

print_me("Date 1991/8/13 in Gregorian calendar is, in Moslem calendar",

         "{}/{}/{}".format(*Epoch.gregorian2moslem(1991, 8, 13)))

# Date 1991/8/13 in Gregorian calendar is, in Moslem calendar: 1412/2/2

Note

The * before Epoch will unpack the tuple into components

It is possible to carry out some algebraic operations with Epochs.

  • Add 10000 days to a given date:

    a = Epoch(1991, 7, 11)
    
    b = a + 10000
    
    y, m, d = b.get_date()
    
    s = str(y) + "/" + str(m) + "/" + str(round(d, 2))
    
    print_me("1991/7/11 plus 10000 days is", s)
    
    # 1991/7/11 plus 10000 days is: 2018/11/26.0
    
  • Subtract two Epochs to find the number of days between them:

    a = Epoch(1986, 2, 9.0)
    
    b = Epoch(1910, 4, 20.0)
    
    print_me("The number of days between 1986/2/9 and 1910/4/20 is", round(a - b, 2))
    
    # The number of days between 1986/2/9 and 1910/4/20 is: 27689.0
    
  • We can also subtract a given amount of days from an Epoch:

    a = Epoch(2003, 12, 31.0)
    
    b = a - 365.5
    
    y, m, d = b.get_date()
    
    s = str(y) + "/" + str(m) + "/" + str(round(d, 2))
    
    print_me("2003/12/31 minus 365.5 days is", s)
    
    # 2003/12/31 minus 365.5 days is: 2002/12/30.5
    
  • Accumulative addition and subtraction of days is also allowed:

    a = Epoch(2003, 12, 31.0)
    
    a += 32.5
    
    y, m, d = a.get_date()
    
    s = str(y) + "/" + str(m) + "/" + str(round(d, 2))
    
    print_me("2003/12/31 plus 32.5 days is", s)
    
    # 2003/12/31 plus 32.5 days is: 2004/2/1.5
    
    
    
    a = Epoch(2001, 12, 31.0)
    
    a -= 2*365
    
    y, m, d = a.get_date()
    
    s = str(y) + "/" + str(m) + "/" + str(round(d, 2))
    
    print_me("2001/12/31 minus 2*365 days is", s)
    
    # 2001/12/31 minus 2*365 days is: 2000/1/1.0
    
  • It is also possible to add days from the right:

    a = Epoch(2004, 2, 27.8)
    
    b = 2.2 + a
    
    y, m, d = b.get_date()
    
    s = str(y) + "/" + str(m) + "/" + str(round(d, 2))
    
    print_me("2.2 days plus 2004/2/27.8 is", s)
    
    # 2.2 days plus 2004/2/27.8 is: 2004/3/1.0
    
  • Comparison operadors between epochs are also defined:

    a = Epoch(2007, 5, 20.0)
    
    b = Epoch(2007, 5, 20.000001)
    
    print_me("2007/5/20.0 == 2007/5/20.000001", a == b)
    
    # 2007/5/20.0 == 2007/5/20.000001: False
    
    print_me("2007/5/20.0 != 2007/5/20.000001", a != b)
    
    # 2007/5/20.0 != 2007/5/20.000001: True
    
    print_me("2007/5/20.0 > 2007/5/20.000001", a > b)
    
    # 2007/5/20.0 > 2007/5/20.000001: False
    
    print_me("2007/5/20.0 <= 2007/5/20.000001", a <= b)
    
    # 2007/5/20.0 <= 2007/5/20.000001: True
    
  • Compute the time of rise and setting of the Sun in a given day:

    e = Epoch(2018, 5, 2)
    
    print("On May 2nd, 2018, Sun rising/setting times in Munich were (UTC):")
    
    latitude = Angle(48, 8, 0)
    
    longitude = Angle(11, 34, 0)
    
    altitude = 520.0
    
    rising, setting = e.rise_set(latitude, longitude, altitude)
    
    y, m, d, h, mi, s = rising.get_full_date()
    
    print("Rising time: {}:{}".format(h, mi))
    
    # Rising time: 3:50
    
    y, m, d, h, mi, s = setting.get_full_date()
    
    print("Setting time: {}:{}".format(h, mi))
    
    # Setting time: 18:33
    
  • Compute the hash of a given Epoch:

    h = e.__hash__()
    
    print("Hash of Epoch({}): {}".format(e, h))
    
    # Hash of Epoch(2458240.5): 1152921504609305216
    

Interpolation examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

Declare an Interpolation object:

i = Interpolation([5, 3, 6, 1, 2, 4, 9], [10, 6, 12, 2, 4, 8])

print(i)

# X: [1, 2, 3, 4, 5, 6]

# Y: [2, 4, 6, 8, 10, 12]

Note

  1. They are ordered in ‘x’
  2. The extra value in ‘x’ was dropped

Use the copy constructor. We can easily make a copy of an Interpolation object:

j = Interpolation(i)

print(j)

# X: [1, 2, 3, 4, 5, 6]

# Y: [2, 4, 6, 8, 10, 12]

j = Interpolation([0.0, 1.0, 3.0], [-1.0, -2.0, 2.0])

print(j)

# X: [0.0, 1.0, 3.0]

# Y: [-1.0, -2.0, 2.0]

print_me("j(2)", j(2))

# j(2): -1.0

print_me("j(0.5)", j(0.5))

# j(0.5): -1.75
  • Test with a value already in the data table:

    print_me("j(1)", j(1))
    
    # j(1): -2.0
    

Get the number of interpolation points internally stored:

print_me("Number or interpolation points in 'j'", len(j))

# Number or interpolation points in 'j': 3

We can interpolate Angles too:

k = Interpolation([27.0, 27.5, 28.0, 28.5, 29.0],

                  [Angle(0, 54, 36.125), Angle(0, 54, 24.606),

                   Angle(0, 54, 15.486), Angle(0, 54, 8.694),

                   Angle(0, 54, 4.133)])

print_me("k(28.278)", Angle(k(28.278)).dms_str())

# k(28.278): 54' 11.4279073579''

Let’s work with a new Interpolation object:

m = Interpolation([-1.0, 0.0, 1.0], [-2.0, 3.0, 2.0])

print(m)

# X: [-1.0, 0.0, 1.0]

# Y: [-2.0, 3.0, 2.0]
  • Get some interpolated values:

    print_me("m(-0.5)", m(-0.5))
    
    # m(-0.5): 1.25
    
    print_me("m(0.5)", m(0.5))
    
    # m(0.5): 3.25
    
  • Get derivatives:

    print_me("m'(-1.0)", m.derivative(-1.0))
    
    # m'(-1.0): 8.0
    
    print_me("m'(-0.5)", m.derivative(-0.5))
    
    # m'(-0.5): 5.0
    
    print_me("m'(0.0)", m.derivative(0.0))
    
    # m'(0.0): 2.0
    
    print_me("m'(0.5)", m.derivative(0.5))
    
    # m'(0.5): -1.0
    
    print_me("m'(1.0)", m.derivative(1.0))
    
    # m'(1.0): -4.0
    
  • Get the root within the interval:

    print_me("m.root()", m.root())
    
    # m.root(): -0.720759220056
    
  • Get the extremum within the interval:

    print_me("m.minmax()", m.minmax())
    
    # m.minmax(): 0.333333333333
    

Let’s work now with the interpolation of sine function:

m = Interpolation([29.43, 30.97, 27.69, 28.11, 31.58, 33.05],

                  [0.4913598528, 0.5145891926, 0.4646875083,

                   0.4711658342, 0.5236885653, 0.5453707057])

print_me("sin(29.5)\t", m(29.5))

# sin(29.5) : 0.492423560118

print_me("sin(30.0)\t", m(30.0))

# sin(30.0) : 0.500000000018

print_me("sin(30.5)\t", m(30.5))

# sin(30.5) : 0.507538362978

Derivatives must be adjusted because degrees were used instead of radians:

print_me("sin'(29.5)\t", degrees(m.derivative(29.5)))

# sin'(29.5)        : 0.870355696916

print_me("sin'(30.0)\t", degrees(m.derivative(30.0)))

# sin'(30.0)        : 0.866025403791

print_me("sqrt(3.0)/2.0\t", sqrt(3.0)/2.0)

# sqrt(3.0)/2.0     : 0.866025403784

print_me("sin'(30.5)\t", degrees(m.derivative(30.5)))

# sin'(30.5)        : 0.861629160353

Jupiter examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

We can compute the geometric heliocentric position for a given epoch:

epoch = Epoch(2018, 10, 27.0)

lon, lat, r = Jupiter.geometric_heliocentric_position(epoch)

print_me("Geometric Heliocentric Longitude", lon.to_positive())

# Geometric Heliocentric Longitude: 241.5873

print_me("Geometric Heliocentric Latitude", lat)

# Geometric Heliocentric Latitude: 0.8216

print_me("Radius vector", r)

# Radius vector: 5.36848

Compute the geocentric position for 1992/12/20:

epoch = Epoch(1992, 12, 20.0)

ra, dec, elon = Jupiter.geocentric_position(epoch)

print_me("Right ascension", ra.ra_str(n_dec=1))

# Right ascension: 12h 47' 9.6''

print_me("Declination", dec.dms_str(n_dec=1))

# Declination: -3d 41' 55.3''

print_me("Elongation", elon.dms_str(n_dec=1))

# Elongation: 76d 2' 26.0''

Print mean orbital elements for Jupiter at 2065.6.24:

epoch = Epoch(2065, 6, 24.0)

l, a, e, i, ome, arg = Jupiter.orbital_elements_mean_equinox(epoch)

print_me("Mean longitude of the planet", round(l, 6))

# Mean longitude of the planet: 222.433723

print_me("Semimajor axis of the orbit (UA)", round(a, 8))

# Semimajor axis of the orbit (UA): 5.20260333

print_me("Eccentricity of the orbit", round(e, 7))

# Eccentricity of the orbit: 0.0486046

print_me("Inclination on plane of the ecliptic", round(i, 6))

# Inclination on plane of the ecliptic: 1.29967

print_me("Longitude of the ascending node", round(ome, 5))

# Longitude of the ascending node: 101.13309

print_me("Argument of the perihelion", round(arg, 6))

# Argument of the perihelion: -85.745532

Compute the time of the conjunction close to 1993/10/1:

epoch = Epoch(1993, 10, 1.0)

conj = Jupiter.conjunction(epoch)

y, m, d = conj.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Conjunction date", date)

# Conjunction date: 1993/10/18.3341

Compute the time of the opposition close to -6/9/1:

epoch = Epoch(-6, 9, 1.0)

oppo = Jupiter.opposition(epoch)

y, m, d = oppo.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Opposition date", date)

# Opposition date: -6/9/15.2865

Compute the time of the station in longitude #1 close to 2018/11/1:

epoch = Epoch(2018, 11, 1.0)

sta1 = Jupiter.station_longitude_1(epoch)

y, m, d = sta1.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #1", date)

# Date of station in longitude #1: 2018/3/9.1288

Compute the time of the station in longitude #2 close to 2018/11/1:

epoch = Epoch(2018, 11, 1.0)

sta2 = Jupiter.station_longitude_2(epoch)

y, m, d = sta2.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #2", date)

# Date of station in longitude #2: 2018/7/10.6679

Find the epoch of the Aphelion closer to 1981/6/1:

epoch = Epoch(1981, 6, 1.0)

e = Jupiter.perihelion_aphelion(epoch, perihelion=False)

y, m, d, h, mi, s = e.get_full_date()

peri = str(y) + '/' + str(m) + '/' + str(d) + ' at ' + str(h) + ' hours'

print_me("The Aphelion closest to 1981/6/1 will happen on", peri)

# The Aphelion closest to 1981/6/1 will happen on: 1981/7/28 at 6 hours

Compute the time of passage through an ascending node:

epoch = Epoch(2019, 1, 1)

time, r = Jupiter.passage_nodes(epoch)

y, m, d = time.get_date()

d = round(d, 1)

print("Time of passage through ascending node: {}/{}/{}".format(y, m, d))

# Time of passage through ascending node: 2025/9/15.6

print("Radius vector at ascending node: {}".format(round(r, 4)))

# Radius vector at ascending node: 5.1729

JupiterMoons examples

Let’s define a small helper function:

def print_me(msg, val):
    print("{}: {}".format(msg, val))

Lets compute the ascending node of Jupiter as well as the longitude of the node of the equator of Jupiter on the ecliptic (psi):

utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
psi_corrected, OMEGA_ascending_node_jupiter = JupiterMoons.jupiter_system_angles(utc_1992_12_16_00_00_00)
print("Ascending node of Jupiter: ", OMEGA_ascending_node_jupiter)
#100.39249942976576
print("Longitude of the node of the eauator of Jupiter on the ecliptic (psi):", psi_corrected)
#317.1058009213959

Lets compute the corrected rectangular geocentric position of Jupiter’s satellites for a given epoch, using the E5-theory:

utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)

io, europa, ganymede, callisto = JupiterMoons.rectangular_positions_jovian_equatorial(utc_1992_12_16_00_00_00)

print("Corrected rectangular geocentric position of Io [X, Y , Z]: ", io)
#(-3.450168811390241, 0.21370246960509387, -4.818966623735296)

print("Corrected rectangular geocentric position of Europa [X, Y , Z]: ", europa)
#(7.441869121153001, 0.27524463479625677, -5.747104399729193)

print("Corrected rectangular geocentric position of Ganymede [X, Y , Z]: ", ganymede)
#(1.201111684800708, 0.5899903274317162, -14.940581367576527)

print("Corrected rectangular geocentric position of Callisto [X, Y , Z]: ", callisto)
#(7.071943240286434, 1.0289562923230684, -25.224137724734955)

Lets compute the uncorrected rectangular geocentric position of Jupiter’s satellites for a given epoch, using the E5-theory:

#So the effects of different light-time and perspective described in Pymeeus page 313 - 314 are neglected

utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
io_uncorrected, europa_uncorrected, ganymede_uncorrected, callisto_uncorrected = \
    JupiterMoons.rectangular_positions_jovian_equatorial(utc_1992_12_16_00_00_00, do_correction=False)

print("Uncorrected rectangular geocentric position of Io [X, Y , Z]: ", io_uncorrected)
# (-3.4489935969836503, 0.21361563816963675, -4.818966623735296)

print("Uncorrected rectangular geocentric position of Europa [X, Y , Z]: ", europa_uncorrected)
# (7.438101803124541, 0.2751112576349763, -5.747104399729193)

print("Uncorrected rectangular geocentric position of Ganymede [X, Y , Z]: ", ganymede_uncorrected)
# (1.1990581804888616, 0.589247092847632, -14.940581367576527)

print("Uncorrected rectangular geocentric position of Callisto [X, Y , Z]: ", callisto_uncorrected)
# (7.056237832405445, 1.0267678919629089, -25.224137724734955)

Lets calculate the distance between Earth and Jupiter (DELTA) for a given epoch:

utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
delta, tau, l, b, r = JupiterMoons.calculate_delta(utc_1992_12_16_00_00_00)

print("Distance between Earth and Jupiter in AU: ", delta)
#5.6611211815432645

print("Light-time from Earth to Jupiter in d (day): ", tau)
#0.03269590898252075

Lets calculate the perspective distance in Jupiter radii of all satellites for an eclipse of Io:

io_ecc_start_2021_02_12_14_19_14 = Epoch(2021, 2, 12.5966898148148)

result_matrix = JupiterMoons.check_phenomena(io_ecc_start_2021_02_12_14_19_14)

#structure of result_matrix
# Row 0: Io          Column 0: perspective distance as seen from the Earth
# Row 1: Europa      Column 1: perspective distance as seen from the Sun
# Row 2: Ganymede    Column 2: No use
# Row 3: Callisto

# print Row 0
print("(perspective distance of Io (Earth View), perspective distance of Io (Sun view), No use): ")
print(result_matrix[0])
#[1.1926058680144362, 0.856027716233023, 0.0]

# print Row 1
print("(perspective distance of Europa (Earth View), perspective distance of Europa (Sun view), No use): ")
print(result_matrix[1])
#[-8.739720236890856, -8.893094092124032, 0.0]

# print Row 2
print("(perspective distance of Ganymede (Earth View), perspective distance of Ganymede (Sun view), No use): ")
print(result_matrix[2])
#[14.069121992481382, 13.8323491767871, 0.0]

# print Row 3
print("(perspective distance of Callisto (Earth View), perspective distance of Callisto (Sun view), No use): ")
print(result_matrix[3])
#[-2.934134686233644, -3.9904786452498144, 0.0]

Lets check if an eclipse orand occultation for any of the four Galilean satellites is detected for a given epoch:

io_ecc_start_2021_02_12_14_19_14 = Epoch(2021, 2, 12.5966898148148)

#Structure of result matrix
# Row 0: Io          Column 0: Occultation True\False
# Row 1: Europa      Column 1: Eclipse True\False
# Row 2: Ganymede    Column 2: No use
# Row 3: Callisto

result_matrix = JupiterMoons.is_phenomena(io_ecc_start_2021_02_12_14_19_14)

#print Row 0
print("(Occultation of Io, Eclipse of Io, No use): ")
print(result_matrix[0])
#[False, True, False]

# print Row 1
print(" (Occultation of Europa, Eclipse of Europa, No use): ")
print(result_matrix[1])
#[False, False, False]

# print Row 2
print(" (Occultation of Ganymede, Eclipse of Gaymede, No use): ")
print(result_matrix[2])
#[False,False,False]

# print Row 3
print("(Occultation of Callisto, Eclipse of Callisto, No use): ")
print(result_matrix[3])
#[False,False,False]

Calculation of the perspective distance ot the planet Io to the center of Jupiter for December 16 at 0h UTC as seen from the Sun:

utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)

result_matrix = JupiterMoons.rectangular_positions_jovian_equatorial(utc_1992_12_16_00_00_00, solar=True)

#Structure of result matrix
# Row 0: Io          Column 0: X coordinate of satellite in Jupiter radii
# Row 1: Europa      Column 1: Y coordinate of satellite in Jupiter radii
# Row 2: Ganymede    Column 2: Z coordinate of satellite in Jupiter radii
# Row 3: Callisto

io_radius_to_center_of_jupiter_sun = JupiterMoons.check_coordinates(result_matrix[0][0], result_matrix[0][1])

print("Perspective distance of Io as seen from the Sun in Jupiter radii: ", io_radius_to_center_of_jupiter_sun)
#3.457757270630766

Calculation of the perspective distance ot the planet Io to the center of Jupiter for December 16 at 0h UTC as seen from the Earth:

utc_1992_12_16_00_00_00 = Epoch(1992, 12, 16, utc=True)
result_matrix = JupiterMoons.rectangular_positions_jovian_equatorial(utc_1992_12_16_00_00_00, solar=False)

#Structure of result matrix
# Row 0: Io          Column 0: X coordinate of satellite in Jupiter radii
# Row 1: Europa      Column 1: Y coordinate of satellite in Jupiter radii
# Row 2: Ganymede    Column 2: Z coordinate of satellite in Jupiter radii
# Row 3: Callisto

io_radius_to_center_of_jupiter_earth = JupiterMoons.check_coordinates(result_matrix[0][0], result_matrix[0][1])

print("Perspective distance of Io as seen from the Earth in Jupiter radii: ", io_radius_to_center_of_jupiter_earth)
# 2.553301264153796

Mars examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

We can compute the geometric heliocentric position for a given epoch:

epoch = Epoch(2018, 10, 27.0)

lon, lat, r = Mars.geometric_heliocentric_position(epoch)

print_me("Geometric Heliocentric Longitude", lon.to_positive())

# Geometric Heliocentric Longitude: 2.0015

print_me("Geometric Heliocentric Latitude", lat)

# Geometric Heliocentric Latitude: -1.3683

print_me("Radius vector", r)

# Radius vector: 1.39306

Compute the geocentric position for 1992/12/20:

epoch = Epoch(1992, 12, 20.0)

ra, dec, elon = Mars.geocentric_position(epoch)

print_me("Right ascension", ra.ra_str(n_dec=1))

# Right ascension: 7h 48' 35.4''

print_me("Declination", dec.dms_str(n_dec=1))

# Declination: 24d 35' 33.9''

print_me("Elongation", elon.dms_str(n_dec=1))

# Elongation: 153d 35' 1.6''

Print mean orbital elements for Mars at 2065.6.24:

epoch = Epoch(2065, 6, 24.0)

l, a, e, i, ome, arg = Mars.orbital_elements_mean_equinox(epoch)

print_me("Mean longitude of the planet", round(l, 6))

# Mean longitude of the planet: 288.855211

print_me("Semimajor axis of the orbit (UA)", round(a, 8))

# Semimajor axis of the orbit (UA): 1.52367934

print_me("Eccentricity of the orbit", round(e, 7))

# Eccentricity of the orbit: 0.0934599

print_me("Inclination on plane of the ecliptic", round(i, 6))

# Inclination on plane of the ecliptic: 1.849338

print_me("Longitude of the ascending node", round(ome, 5))

# Longitude of the ascending node: 50.06365

print_me("Argument of the perihelion", round(arg, 6))

# Argument of the perihelion: 287.202108

Compute the time of the conjunction close to 1993/10/1:

epoch = Epoch(1993, 10, 1.0)

conj = Mars.conjunction(epoch)

y, m, d = conj.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Conjunction date", date)

# Conjunction date: 1993/12/27.0898

Compute the time of the opposition close to 2729/10/1:

epoch = Epoch(2729, 10, 1.0)

oppo = Mars.opposition(epoch)

y, m, d = oppo.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Opposition date", date)

# Opposition date: 2729/9/9.1412

Compute the time of the station in longitude #1 close to 1997/3/1:

epoch = Epoch(1997, 3, 1.0)

sta1 = Mars.station_longitude_1(epoch)

y, m, d = sta1.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #1", date)

# Date of station in longitude #1: 1997/2/6.033

Compute the time of the station in longitude #2 close to 1997/3/1:

epoch = Epoch(1997, 3, 1.0)

sta2 = Mars.station_longitude_2(epoch)

y, m, d = sta2.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #2", date)

# Date of station in longitude #2: 1997/4/27.7553

Find the epoch of the Aphelion closer to 2032/1/1:

epoch = Epoch(2032, 1, 1.0)

e = Mars.perihelion_aphelion(epoch, perihelion=False)

y, m, d, h, mi, s = e.get_full_date()

peri = str(y) + '/' + str(m) + '/' + str(d) + ' at ' + str(h) + ' hours'

print_me("The Aphelion closest to 2032/1/1 will happen on", peri)

# The Aphelion closest to 2032/1/1 will happen on: 2032/10/24 at 22 hours

Compute the time of passage through an ascending node:

epoch = Epoch(2019, 1, 1)

time, r = Mars.passage_nodes(epoch)

y, m, d = time.get_date()

d = round(d, 1)

print("Time of passage through ascending node: {}/{}/{}".format(y, m, d))

# Time of passage through ascending node: 2019/1/15.2

print("Radius vector at ascending node: {}".format(round(r, 4)))

# Radius vector at ascending node: 1.4709

Mercury examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

We can compute the geometric heliocentric position for a given epoch:

epoch = Epoch(2018, 10, 27.0)

lon, lat, r = Mercury.geometric_heliocentric_position(epoch)

print_me("Geometric Heliocentric Longitude", lon.to_positive())

# Geometric Heliocentric Longitude: 287.4887

print_me("Geometric Heliocentric Latitude", lat)

# Geometric Heliocentric Latitude: -6.0086

print_me("Radius vector", r)

# Radius vector: 0.45113

Compute the geocentric position for 1992/12/20:

epoch = Epoch(1992, 12, 20.0)

ra, dec, elon = Mercury.geocentric_position(epoch)

print_me("Right ascension", ra.ra_str(n_dec=1))

# Right ascension: 16h 33' 59.3''

print_me("Declination", dec.dms_str(n_dec=1))

# Declination: -20d 53' 31.6''

print_me("Elongation", elon.dms_str(n_dec=1))

# Elongation: 18d 24' 29.8''

Print mean orbital elements for Mercury at 2065.6.24:

epoch = Epoch(2065, 6, 24.0)

l, a, e, i, ome, arg = Mercury.orbital_elements_mean_equinox(epoch)

print_me("Mean longitude of the planet", round(l, 6))

# Mean longitude of the planet: 203.494701

print_me("Semimajor axis of the orbit (UA)", round(a, 8))

# Semimajor axis of the orbit (UA): 0.38709831

print_me("Eccentricity of the orbit", round(e, 7))

# Eccentricity of the orbit: 0.2056451

print_me("Inclination on plane of the ecliptic", round(i, 6))

# Inclination on plane of the ecliptic: 7.006171

print_me("Longitude of the ascending node", round(ome, 5))

# Longitude of the ascending node: 49.10765

print_me("Argument of the perihelion", round(arg, 6))

# Argument of the perihelion: 29.367732

Compute the time of the inferior conjunction close to 1993/10/1:

epoch = Epoch(1993, 10, 1.0)

conjunction = Mercury.inferior_conjunction(epoch)

y, m, d = conjunction.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Inferior conjunction date", date)

# Inferior conjunction date: 1993/11/6.1449

Compute the time of the superior conjunction close to 1993/10/1:

epoch = Epoch(1993, 10, 1.0)

conjunction = Mercury.superior_conjunction(epoch)

y, m, d = conjunction.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Superior conjunction date", date)

# Superior conjunction date: 1993/8/29.3301

Compute the time and angle of the western elongation close to 1993/11/1:

epoch = Epoch(1993, 11, 1.0)

time, elongation = Mercury.western_elongation(epoch)

y, m, d = time.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Western elongation date", date)

# Western elongation date: 1993/11/22.6386

elong = round(elongation, 4)

print_me("Maximum western elongation angle", elong)

# Maximum western elongation angle: 19.7506

Compute the time and angle of the eastern elongation close to 1990/8/1:

epoch = Epoch(1990, 8, 1.0)

time, elongation = Mercury.eastern_elongation(epoch)

y, m, d = time.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Eastern elongation date", date)

# Eastern elongation date: 1990/8/11.8514

elong = round(elongation, 4)

print_me("Maximum eastern elongation angle", elong)

# Maximum eastern elongation angle: 27.4201

Compute the time of the station in longitude #1 close to 1993/10/1:

epoch = Epoch(1993, 10, 1.0)

sta1 = Mercury.station_longitude_1(epoch)

y, m, d = sta1.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #1", date)

# Date of station in longitude #1: 1993/10/25.9358

Compute the time of the station in longitude #2 close to 1993/10/1:

epoch = Epoch(1993, 10, 1.0)

sta2 = Mercury.station_longitude_2(epoch)

y, m, d = sta2.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #2", date)

# Date of station in longitude #2: 1993/11/15.0724

Find the epoch of the Perihelion closer to 2000/01/01:

epoch = Epoch(2000, 1, 1.0)

e = Mercury.perihelion_aphelion(epoch)

y, m, d, h, mi, s = e.get_full_date()

peri = str(y) + '/' + str(m) + '/' + str(d) + ' at ' + str(h) + ' hours'

print_me("The Perihelion closest to 2000/1/1 happened on", peri)

# The Perihelion closest to 2000/1/1 happened on: 2000/2/15 at 18 hours

Compute the time of passage through an ascending node:

epoch = Epoch(2019, 1, 1)

time, r = Mercury.passage_nodes(epoch)

y, m, d = time.get_date()

d = round(d, 1)

print("Time of passage through ascending node: {}/{}/{}".format(y, m, d))

# Time of passage through ascending node: 2018/11/24.7

print("Radius vector at ascending node: {}".format(round(r, 4)))

# Radius vector at ascending node: 0.3143

Minor examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

Let’s compute the equatorial coordinates of comet Encke:

a = 2.2091404

e = 0.8502196

q = a * (1.0 - e)

i = Angle(11.94524)

omega = Angle(334.75006)

w = Angle(186.23352)

t = Epoch(1990, 10, 28.54502)

epoch = Epoch(1990, 10, 6.0)

minor = Minor(q, e, i, omega, w, t)

ra, dec, elong = minor.geocentric_position(epoch)

print_me("Right ascension", ra.ra_str(n_dec=1))

# Right ascension: 10h 34' 13.7''

print_me("Declination", dec.dms_str(n_dec=0))

# Declination: 19d 9' 32.0''

print_me("Elongation", round(elong, 2))

# Elongation: 40.51

Now compute the heliocentric ecliptical coordinates:

a = 2.2091404

e = 0.8502196

q = a * (1.0 - e)

i = Angle(11.94524)

omega = Angle(334.75006)

w = Angle(186.23352)

t = Epoch(1990, 10, 28.54502)

epoch = Epoch(1990, 10, 6.0)

minor = Minor(q, e, i, omega, w, t)

lon, lat = minor.heliocentric_ecliptical_position(epoch)

print_me("Heliocentric ecliptical longitude", lon.dms_str(n_dec=1))

# Heliocentric ecliptical longitude: 66d 51' 57.8''

print_me("Heliocentric ecliptical latitude", lat.dms_str(n_dec=1))

# Heliocentric ecliptical latitude: 11d 56' 14.4''

Moon examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

Let’s now compute the Moon geocentric ecliptical position for a given epoch:

epoch = Epoch(1992, 4, 12.0)

Lambda, Beta, Delta, ppi = Moon.geocentric_ecliptical_pos(epoch)

print_me("Longitude (Lambda)", round(Lambda, 6))

# Longitude (Lambda): 133.162655

print_me("Latitude (Beta)", round(Beta, 6))

# Latitude (Beta): -3.229126

print_me("Distance (Delta)", round(Delta, 1))

# Distance (Delta): 368409.7

print_me("Equatorial horizontal parallax (Pi)", round(ppi, 6))

# Equatorial horizontal parallax (Pi): 0.99199

Now let’s compute the apparent ecliptical position:

epoch = Epoch(1992, 4, 12.0)

Lambda, Beta, Delta, ppi = Moon.apparent_ecliptical_pos(epoch)

print_me("Longitude (Lambda)", round(Lambda, 6))

# Longitude (Lambda): 133.167264

print_me("Latitude (Beta)", round(Beta, 6))

# Latitude (Beta): -3.229126

print_me("Distance (Delta)", round(Delta, 1))

# Distance (Delta): 368409.7

print_me("Equatorial horizontal parallax (Pi)", round(ppi, 6))

# Equatorial horizontal parallax (Pi): 0.99199

Get the apparent equatorial position:

epoch = Epoch(1992, 4, 12.0)

ra, dec, Delta, ppi = Moon.apparent_equatorial_pos(epoch)

print_me("Right Ascension (ra)", round(ra, 6))

# Right Ascension (ra): 134.688469

print_me("Declination (dec)", round(dec, 6))

# Declination (dec): 13.768367

print_me("Distance (Delta)", round(Delta, 1))

# Distance (Delta): 368409.7

print_me("Equatorial horizontal parallax (Pi)", round(ppi, 6))

# Equatorial horizontal parallax (Pi): 0.99199

Compute the longitude of the Moon’s mean ascending node:

epoch = Epoch(1913, 5, 27.0)

Omega = Moon.longitude_mean_ascending_node(epoch)

print_me("Longitude of the mean ascending node", round(Omega, 1))

# Longitude of the mean ascending node: 0.0

epoch = Epoch(1959, 12, 7.0)

Omega = Moon.longitude_mean_ascending_node(epoch)

print_me("Longitude of the mean ascending node", round(Omega, 1))

# Longitude of the mean ascending node: 180.0

Get the longitude of the Moonś true ascending node:

epoch = Epoch(1913, 5, 27.0)

Omega = Moon.longitude_true_ascending_node(epoch)

print_me("Longitude of the true ascending node", round(Omega, 4))

# Longitude of the true ascending node: 0.8763

Compute the longitude of the Moon’s mean perigee:

epoch = Epoch(2021, 3, 5.0)

Pi = Moon.longitude_mean_perigee(epoch)

print_me("Longitude of the mean perigee", round(Pi, 5))

# Longitude of the mean perigee: 224.89194

Compute the approximate illuminated fraction of the Moon’s disk:

epoch = Epoch(1992, 4, 12.0)

k = Moon.illuminated_fraction_disk(epoch)

print_me("Approximate illuminated fraction of Moon's disk", round(k, 2))

# Approximate illuminated fraction of Moon's disk: 0.68

Compute the position angle of the bright limb of the Moon:

epoch = Epoch(1992, 4, 12.0)

xi = Moon.position_bright_limb(epoch)

print_me("Position angle of the bright limb of the Moon", round(xi, 1))

# Position angle of the bright limb of the Moon: 285.0

Calculate the instant of a New Moon:

epoch = Epoch(1977, 2, 15.0)

new_moon = Moon.moon_phase(epoch, target="new")

y, m, d, h, mi, s = new_moon.get_full_date()

print("New Moon: {}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s)))

# New Moon: 1977/2/18 3:37:42

Calculate the time of a Last Quarter:

epoch = Epoch(2044, 1, 15.0)

new_moon = Moon.moon_phase(epoch, target="last")

y, m, d, h, mi, s = new_moon.get_full_date()

print("Last Quarter: {}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s)))

# Last Quarter: 2044/1/21 23:48:17

Compute the time and parallax of apogee:

epoch = Epoch(1988, 10, 1.0)

apogee, parallax = Moon.moon_perigee_apogee(epoch, target="apogee")

y, m, d, h, mi, s = apogee.get_full_date()

print("Apogee epoch: {}/{}/{} {}:{}".format(y, m, d, h, mi))

# Apogee epoch: 1988/10/7 20:30

print_me("Equatorial horizontal parallax", parallax.dms_str(n_dec=3))

# Equatorial horizontal parallax: 54' 0.679''

Compute the time of passage by the ascending node:

epoch = Epoch(1987, 5, 15.0)

passage = Moon.moon_passage_nodes(epoch, target="ascending")

y, m, d, h, mi, s = passage.get_full_date()

mi += s/60.0

print("Passage by the ascending node: {}/{}/{} {}:{}".format(y, m, d, h, round(mi)))

# Passage by the ascending node: 1987/5/23 6:26

Compute the epoch and amplitude of maximum southern declination:

epoch = Epoch(2049, 4, 15.0)

epo, dec = Moon.moon_maximum_declination(epoch, target='southern')

y, m, d, h, mi, s = epo.get_full_date()

print("Epoch of maximum declination: {}/{}/{} {}:{}".format(y, m, d, h, mi))

# Epoch of maximum declination: 2049/4/21 14:0

print_me("Amplitude of maximum declination", dec.dms_str(n_dec=0))

# Amplitude of maximum declination: -22d 8' 18.0''

Compute the librations of the Moon:

epoch = Epoch(1992, 4, 12.0)

lopt, bopt, lphys, bphys, ltot, btot = Moon.moon_librations(epoch)

print_me("Optical libration in longitude", round(lopt, 3))

# Optical libration in longitude: -1.206

print_me("Optical libration in latitude", round(bopt, 3))

# Optical libration in latitude: 4.194

print_me("Physical libration in longitude", round(lphys, 3))

# Physical libration in longitude: -0.025

print_me("Physical libration in latitude", round(bphys, 3))

# Physical libration in latitude: 0.006

print_me("Total libration in longitude", round(lphys, 2))

# Total libration in longitude: -1.23

print_me("Total libration in latitude", round(bphys, 3))

# Total libration in latitude: 4.2

Let’s calculate the position angle of the Moon’s axis of rotation:

epoch = Epoch(1992, 4, 12.0)

p = Moon.moon_position_angle_axis(epoch)

print_me("Position angle of Moon's axis of rotation", round(p, 2))

# Position angle of Moon's axis of rotation: 15.08

Neptune examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

We can compute the geometric heliocentric position for a given epoch:

epoch = Epoch(2018, 10, 27.0)

lon, lat, r = Neptune.geometric_heliocentric_position(epoch)

print_me("Geometric Heliocentric Longitude", lon.to_positive())

# Geometric Heliocentric Longitude: 345.3776

print_me("Geometric Heliocentric Latitude", lat)

# Geometric Heliocentric Latitude: -0.9735

print_me("Radius vector", r)

# Radius vector: 29.93966

Compute the geocentric position for 1992/12/20:

epoch = Epoch(1992, 12, 20.0)

ra, dec, elon = Neptune.geocentric_position(epoch)

print_me("Right ascension", ra.ra_str(n_dec=1))

# Right ascension: 19h 17' 14.5''

print_me("Declination", dec.dms_str(n_dec=1))

# Declination: -21d 34' 15.1''

print_me("Elongation", elon.dms_str(n_dec=1))

# Elongation: 19d 44' 59.6''

Print mean orbital elements for Neptune at 2065.6.24:

epoch = Epoch(2065, 6, 24.0)

l, a, e, i, ome, arg = Neptune.orbital_elements_mean_equinox(epoch)

print_me("Mean longitude of the planet", round(l, 6))

# Mean longitude of the planet: 88.321947

print_me("Semimajor axis of the orbit (UA)", round(a, 8))

# Semimajor axis of the orbit (UA): 30.11038676

print_me("Eccentricity of the orbit", round(e, 7))

# Eccentricity of the orbit: 0.0094597

print_me("Inclination on plane of the ecliptic", round(i, 6))

# Inclination on plane of the ecliptic: 1.763855

print_me("Longitude of the ascending node", round(ome, 5))

# Longitude of the ascending node: 132.46986

print_me("Argument of the perihelion", round(arg, 6))

# Argument of the perihelion: -83.415521

Compute the time of the conjunction close to 1993/10/1:

epoch = Epoch(1993, 10, 1.0)

conj = Neptune.conjunction(epoch)

y, m, d = conj.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Conjunction date", date)

# Conjunction date: 1994/1/11.3057

Compute the time of the opposition close to 1846/8/1:

epoch = Epoch(1846, 8, 1)

oppo = Neptune.opposition(epoch)

y, m, d = oppo.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Opposition date", date)

# Opposition date: 1846/8/20.1623

Pluto examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

We can compute the geometric heliocentric position for a given epoch:

epoch = Epoch(2018, 10, 27.0)

lon, lat, r = Pluto.geometric_heliocentric_position(epoch)

print_me("Geometric Heliocentric Longitude", lon.to_positive())

# Geometric Heliocentric Longitude: 232.740711423

print_me("Geometric Heliocentric Latitude", lat)

# Geometric Heliocentric Latitude: 14.5878173017

print_me("Radius vector", r)

# Radius vector: 29.711110981

Compute the geocentric position for 1992/12/20:

epoch = Epoch(1992, 12, 20.0)

ra, dec, elon = Pluto.geocentric_position(epoch)

print_me("Right ascension", ra.ra_str(n_dec=1))

# Right ascension: 15h 31' 43.7''

print_me("Declination", dec.dms_str(n_dec=1))

# Declination: -4d 27' 28.8''

Saturn examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

We can compute the geometric heliocentric position for a given epoch:

epoch = Epoch(2018, 10, 27.0)

lon, lat, r = Saturn.geometric_heliocentric_position(epoch)

print_me("Geometric Heliocentric Longitude", lon.to_positive())

# Geometric Heliocentric Longitude: 279.5108

print_me("Geometric Heliocentric Latitude", lat)

# Geometric Heliocentric Latitude: 0.6141

print_me("Radius vector", r)

# Radius vector: 10.06266

Compute the geocentric position for 1992/12/20:

epoch = Epoch(1992, 12, 20.0)

ra, dec, elon = Saturn.geocentric_position(epoch)

print_me("Right ascension", ra.ra_str(n_dec=1))

# Right ascension: 21h 11' 41.8''

print_me("Declination", dec.dms_str(n_dec=1))

# Declination: -17d 15' 40.8''

print_me("Elongation", elon.dms_str(n_dec=1))

# Elongation: 46d 51' 47.7''

Print mean orbital elements for Saturn at 2065.6.24:

epoch = Epoch(2065, 6, 24.0)

l, a, e, i, ome, arg = Saturn.orbital_elements_mean_equinox(epoch)

print_me("Mean longitude of the planet", round(l, 6))

# Mean longitude of the planet: 131.196871

print_me("Semimajor axis of the orbit (UA)", round(a, 8))

# Semimajor axis of the orbit (UA): 9.55490779

print_me("Eccentricity of the orbit", round(e, 7))

# Eccentricity of the orbit: 0.0553209

print_me("Inclination on plane of the ecliptic", round(i, 6))

# Inclination on plane of the ecliptic: 2.486426

print_me("Longitude of the ascending node", round(ome, 5))

# Longitude of the ascending node: 114.23974

print_me("Argument of the perihelion", round(arg, 6))

# Argument of the perihelion: -19.896331

Compute the time of the conjunction close to 2125/6/1:

epoch = Epoch(2125, 6, 1.0)

conj = Saturn.conjunction(epoch)

y, m, d = conj.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Conjunction date", date)

# Conjunction date: 2125/8/26.4035

Compute the time of the opposition close to -6/9/1:

epoch = Epoch(-6, 9, 1.0)

oppo = Saturn.opposition(epoch)

y, m, d = oppo.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Opposition date", date)

# Opposition date: -6/9/14.3709

Compute the time of the station in longitude #1 close to 2018/11/1:

epoch = Epoch(2018, 11, 1.0)

sta1 = Saturn.station_longitude_1(epoch)

y, m, d = sta1.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #1", date)

# Date of station in longitude #1: 2018/4/17.9433

Compute the time of the station in longitude #2 close to 2018/11/1:

epoch = Epoch(2018, 11, 1.0)

sta2 = Saturn.station_longitude_2(epoch)

y, m, d = sta2.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #2", date)

# Date of station in longitude #2: 2018/9/6.4175

Find the epoch of the Perihelion closer to 2000/1/1:

epoch = Epoch(2000, 1, 1.0)

e = Saturn.perihelion_aphelion(epoch)

y, m, d, h, mi, s = e.get_full_date()

peri = str(y) + '/' + str(m) + '/' + str(d) + ' at ' + str(h) + ' hours'

print_me("The Perihelion closest to 2000/1/1 happened on", peri)

# The Perihelion closest to 2000/1/1 happened on: 2003/7/26 at 15 hours

Compute the time of passage through an ascending node:

epoch = Epoch(2019, 1, 1)

time, r = Saturn.passage_nodes(epoch)

y, m, d = time.get_date()

d = round(d, 1)

print("Time of passage through ascending node: {}/{}/{}".format(y, m, d))

# Time of passage through ascending node: 2034/5/30.2

print_me("Radius vector at ascending node", round(r, 4))

# Radius vector at ascending node: 9.0546

Compute the approximate magnitude of Saturn:

sun_dist = 9.867882

earth_dist = 10.464606

delta_u = Angle(16.442)

b = Angle(4.198)

m = Saturn.magnitude(sun_dist, earth_dist, delta_u, b)

printi_me("Approximate magnitude of Saturn", m)

# Approximate magnitude of Saturn: 1.9

Compute the ring inclination:

epoch = Epoch(1992, 12, 16.00068)

i = Saturn.ring_inclination(epoch)

print_me("Saturn's ring inclination", round(i, 6))

# Saturn's ring inclination: 28.076131

Compute the longitude of the ascending node of the ring:

epoch = Epoch(1992, 12, 16.00068)

omega = Saturn.ring_logitude_ascending_node(epoch)

print_me("Saturn's ring longitude of the ascending node", round(omega, 6))

# Saturn's ring longitude of the ascending node: 169.410243

Compute the parameters related to the ring:

epoch = Epoch(1992, 12, 16.00068)

B, Bprime, P, delta_U, a, b = Saturn.ring_parameters(epoch)

print_me("Saturnicentric latitude of the Earth", round(B, 3))

# Saturnicentric latitude of the Earth: 16.442

print_me("Saturnicentric latitude of the Sun", round(Bprime, 3))

# Saturnicentric latitude of the Sun: 14.679

print_me("Geocentric position angle of nothern semiminor axis", round(P, 3))

# Geocentric position angle of nothern semiminor axis: 6.741

print_me("Difference in Saturnicentric longitudes of Sun and Earth", round(delta_U, 3))

# Difference in Saturnicentric longitudes of Sun and Earth: 4.198

print_me("Size of major axis of outer ring", round(a, 2))

# Size of major axis of outer ring: 35.87

print_me("Size of minor axis of outer ring", round(b, 2))

# Size of minor axis of outer ring: 10.15

Sun examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

It is possible to compute an approximation of the Sun’s true ecliptical longitude:

epoch = Epoch(1992, 10, 13)

true_lon, r = Sun.true_longitude_coarse(epoch)

print_me("Sun's approximate true longitude", true_lon.dms_str(n_dec=0))

# Sun's approximate true longitude: 199d 54' 36.0''

print_me("Sun's radius vector", round(r, 5))

# Sun's radius vector: 0.99766

Now let’s compute the Sun’s approximate apparent ecliptical longitude:

epoch = Epoch(1992, 10, 13)

app_lon, r = Sun.apparent_longitude_coarse(epoch)

print_me("Sun's approximate apparent longitude", app_lon.dms_str(n_dec=0))

# Sun's approximate apparent longitude: 199d 54' 32.0''

And now is the turn for the apparent right ascension and declination:

epoch = Epoch(1992, 10, 13)

ra, delta, r = Sun.apparent_rightascension_declination_coarse(epoch)

print_me("Sun's apparent right ascension", ra.ra_str(n_dec=1))

# Sun's apparent right ascension: 13h 13' 31.4''

print_me("Sun's apparent declination", delta.dms_str(n_dec=0))

# Sun's apparent declination: -7d 47' 6.0''

Now, let’s compute Sun’s true (geometric) position again, but more accurately:

epoch = Epoch(1992, 10, 13.0)

l, b, r = Sun.geometric_geocentric_position(epoch, toFK5=False)

print_me("Geometric Geocentric Longitude", round(l.to_positive(), 6))

# Geometric Geocentric Longitude: 199.907297

print_me("Geometric Geocentric Latitude", b.dms_str(n_dec=3))

# Geometric Geocentric Latitude: 0.744''

print_me("Radius vector", round(r, 8))

# Radius vector: 0.99760852

Compute Sun’s apparent postion accurately:

epoch = Epoch(1992, 10, 13.0)

l, b, r = Sun.apparent_geocentric_position(epoch)

print_me("Apparent Geocentric Longitude", l.to_positive().dms_str(n_dec=3))

# Apparent Geocentric Longitude: 199d 54' 21.548''

print_me("Apparent Geocentric Latitude", b.dms_str(n_dec=3))

# Apparent Geocentric Latitude; 0.721''

print_me("Radius vector", round(r, 8))

# Radius vector: 0.99760852

We can compute rectangular coordinates referred to mean equinox of date:

epoch = Epoch(1992, 10, 13.0)

x, y, z = Sun.rectangular_coordinates_mean_equinox(epoch)

print_me("X", round(x, 7))

# X: -0.9379963

print_me("Y", round(y, 6))

# Y: -0.311654

print_me("Z", round(z, 7))

# Z: -0.1351207

Now, compute rectangular coordinates w.r.t. standard equinox J2000.0:

epoch = Epoch(1992, 10, 13.0)

x, y, z = Sun.rectangular_coordinates_j2000(epoch)

print_me("X", round(x, 8))

# X: -0.93740485

print_me("Y", round(y, 8))

# Y: -0.3131474

print_me("Z", round(z, 8))

# Z: -0.12456646

Compute rectangular coordinates w.r.t. mean equinox of B1950.0:

epoch = Epoch(1992, 10, 13.0)

x, y, z = Sun.rectangular_coordinates_b1950(epoch)

print_me("X", round(x, 8))

# X: -0.94149557

print_me("Y", round(y, 8))

# Y: -0.30259922

print_me("Z", round(z, 8))

# Z: -0.11578695

And compute rectangular coordinates w.r.t. an arbitrary mean equinox:

epoch = Epoch(1992, 10, 13.0)

e_equinox = Epoch(2467616.0)

x, y, z = Sun.rectangular_coordinates_equinox(epoch, e_equinox)

print_me("X", round(x, 8))

# X: -0.93373777

print_me("Y", round(y, 8))

# Y: -0.32235109

print_me("Z", round(z, 8))

# Z: -0.12856709

It is possible to compute the date of equinoxes and solstices:

epoch = Sun.get_equinox_solstice(1962, target="summer")

y, m, d, h, mi, s = epoch.get_full_date()

print("The summer solstice of 1962:")

print("{}/{}/{} {}:{}:{}".format(y, m, d, h, mi, round(s, 0)))

# 1962/6/21 21:24:42.0

The equation of time, i.e., the difference between apparent and mean time, can be easily computed:

epoch = Epoch(1992, 10, 13.0)

m, s = Sun.equation_of_time(epoch)

print("Equation of time difference: {} min {} secs".format(m, round(s, 1)))

# Equation of time difference: 13 min 42.6 secs

Compute the ephemeris of physical observations of the Sun using Carrington’s formulas:

epoch = Epoch(1992, 10, 13)

p, b0, l0 = Sun.ephemeris_physical_observations(epoch)

print("Ephemeris of physical observations of the Sun:")

print_me("P ", round(p, 2))

# P : 26.27

print_me("B0", round(b0, 2))

# B0: 5.99

print_me("L0", round(l0, 2))

# L0: 238.63

Get the epoch when the Carrington’s synodic rotation No. ‘number’ starts:

epoch = Sun.beginning_synodic_rotation(1699)

print_me("Epoch for Carrington's synodic rotation No. 1699", round(epoch(), 3))

# Epoch for Carrington's synodic rotation No. 1699: 2444480.723

Uranus examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

We can compute the geometric heliocentric position for a given epoch:

epoch = Epoch(2018, 10, 27.0)

lon, lat, r = Uranus.geometric_heliocentric_position(epoch)

print_me("Geometric Heliocentric Longitude", lon.to_positive())

# Geometric Heliocentric Longitude: 30.5888

print_me("Geometric Heliocentric Latitude", lat)

# Geometric Heliocentric Latitude: -0.5315

print_me("Radius vector", r)

# Radius vector: 19.86964

Compute the geocentric position for 1992/12/20:

epoch = Epoch(1992, 12, 20.0)

ra, dec, elon = Uranus.geocentric_position(epoch)

print_me("Right ascension", ra.ra_str(n_dec=1))

# Right ascension: 19h 13' 48.7''

print_me("Declination", dec.dms_str(n_dec=1))

# Declination: -22d 46' 13.0''

print_me("Elongation", elon.dms_str(n_dec=1))

# Elongation: 18d 44' 18.7''

Print mean orbital elements for Uranus at 2065.6.24:

epoch = Epoch(2065, 6, 24.0)

l, a, e, i, ome, arg = Uranus.orbital_elements_mean_equinox(epoch)

print_me("Mean longitude of the planet", round(l, 6))

# Mean longitude of the planet: 235.517526

print_me("Semimajor axis of the orbit (UA)", round(a, 8))

# Semimajor axis of the orbit (UA): 19.21844604

print_me("Eccentricity of the orbit", round(e, 7))

# Eccentricity of the orbit: 0.0463634

print_me("Inclination on plane of the ecliptic", round(i, 6))

# Inclination on plane of the ecliptic: 0.77372

print_me("Longitude of the ascending node", round(ome, 5))

# Longitude of the ascending node: 74.34776

print_me("Argument of the perihelion", round(arg, 6))

# Argument of the perihelion: 99.630865

Compute the time of the conjunction close to 1993/10/1:

epoch = Epoch(1993, 10, 1.0)

conj = Uranus.conjunction(epoch)

y, m, d = conj.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Conjunction date", date)

# Conjunction date: 1994/1/12.7365

Compute the time of the opposition close to 1780/12/1:

epoch = Epoch(1780, 12, 1.0)

oppo = Uranus.opposition(epoch)

y, m, d = oppo.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Opposition date", date)

# Opposition date: 1780/12/17.5998

Find the epoch of the Perihelion closer to 1780/1/1:

epoch = Epoch(1780, 1, 1.0)

e = Uranus.perihelion_aphelion(epoch)

y, m, d = e.get_date()

peri = str(y) + '/' + str(m) + '/' + str(int(d))

print_me("The Perihelion closest to 1780/1/1 happened on", peri)

# The Perihelion closest to 1780/1/1 happened on: 1798/2/26

Compute the time of passage through an ascending node:

epoch = Epoch(2019, 1, 1)

time, r = Uranus.passage_nodes(epoch)

y, m, d = time.get_date()

d = round(d, 1)

print("Time of passage through ascending node: {}/{}/{}".format(y, m, d))

# Time of passage through ascending node: 2028/8/23.2

print("Radius vector at ascending node: {}".format(round(r, 4)))

# Radius vector at ascending node: 19.3201

Venus examples

Let’s define a small helper function:

def print_me(msg, val):

    print("{}: {}".format(msg, val))

We can compute the geometric heliocentric position for a given epoch:

epoch = Epoch(1992, 12, 20.0)

lon, lat, r = Venus.geometric_heliocentric_position(epoch)

print_me("Geometric Heliocentric Longitude", round(lon.to_positive(), 5))

# Geometric Heliocentric Longitude: 26.11428

print_me("Geometric Heliocentric Latitude", round(lat, 4))

# Geometric Heliocentric Latitude: -2.6207

print_me("Radius vector", round(r, 6))

# Radius vector: 0.724603

Compute the geocentric position for 1992/12/20:

epoch = Epoch(1992, 12, 20.0)

ra, dec, elon = Venus.geocentric_position(epoch)

print_me("Right ascension", ra.ra_str(n_dec=1))

# Right ascension: 21h 4' 41.5''

print_me("Declination", dec.dms_str(n_dec=1))

# Declination: -18d 53' 16.8''

print_me("Elongation", elon.dms_str(n_dec=1))

# Elongation: 44d 46' 8.9''

Print mean orbital elements for Venus at 2065.6.24:

epoch = Epoch(2065, 6, 24.0)

l, a, e, i, ome, arg = Venus.orbital_elements_mean_equinox(epoch)

print_me("Mean longitude of the planet", round(l, 6))

# Mean longitude of the planet: 338.646306

print_me("Semimajor axis of the orbit (UA)", round(a, 8))

# Semimajor axis of the orbit (UA): 0.72332982

print_me("Eccentricity of the orbit", round(e, 7))

# Eccentricity of the orbit: 0.0067407

print_me("Inclination on plane of the ecliptic", round(i, 6))

# Inclination on plane of the ecliptic: 3.395319

print_me("Longitude of the ascending node", round(ome, 5))

# Longitude of the ascending node: 77.27012

print_me("Argument of the perihelion", round(arg, 6))

# Argument of the perihelion: 55.211257

Compute the time of the inferior conjunction close to 1882/12/1.0:

epoch = Epoch(1882, 12, 1.0)

conjunction = Venus.inferior_conjunction(epoch)

y, m, d = conjunction.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Inferior conjunction date", date)

# Inferior conjunction date: 1882/12/6.6912

Compute the time of the superior conjunction close to 1993/10/1:

epoch = Epoch(1993, 10, 1.0)

conjunction = Venus.superior_conjunction(epoch)

y, m, d = conjunction.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Superior conjunction date", date)

# Superior conjunction date: 1994/1/17.0465

Compute the time and angle of the western elongation close to 2019/1/1:

epoch = Epoch(2019, 1, 1.0)

time, elongation = Venus.western_elongation(epoch)

y, m, d = time.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Western elongation date", date)

# Western elongation date: 2019/1/6.1895

elong = round(elongation, 4)

print_me("Maximum western elongation angle", elong)

# Maximum western elongation angle: 46.9571

Compute the time and angle of the eastern elongation close to 2019/10/1:

epoch = Epoch(2019, 10, 1.0)

time, elongation = Venus.eastern_elongation(epoch)

y, m, d = time.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Eastern elongation date", date)

# Eastern elongation date: 2020/3/24.9179

elong = round(elongation, 4)

print_me("Maximum eastern elongation angle", elong)

# Maximum eastern elongation angle: 46.078

Compute the time of the station in longitude #1 close to 2018/12/1:

epoch = Epoch(2018, 12, 1.0)

sta1 = Venus.station_longitude_1(epoch)

y, m, d = sta1.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #1", date)

# Date of station in longitude #1: 2018/10/5.7908

Compute the time of the station in longitude #2 close to 2018/12/1:

epoch = Epoch(2018, 12, 1.0)

sta2 = Venus.station_longitude_2(epoch)

y, m, d = sta2.get_date()

d = round(d, 4)

date = "{}/{}/{}".format(y, m, d)

print_me("Date of station in longitude #2", date)

# Date of station in longitude #2: 2018/11/16.439

Find the epoch of the Perihelion closer to 1978/10/15:

epoch = Epoch(1978, 10, 15.0)

e = Venus.perihelion_aphelion(epoch)

y, m, d, h, mi, s = e.get_full_date()

peri = str(y) + '/' + str(m) + '/' + str(d) + ' at ' + str(h) + ' hours'

print_me("The Perihelion closest to 1978/10/15 happened on", peri)

# The Perihelion closest to 1978/10/15 happened on: 1978/12/31 at 4 hours

Compute the time of passage through an ascending node:

epoch = Epoch(1979, 1, 1)

time, r = Venus.passage_nodes(epoch)

y, m, d = time.get_date()

d = round(d, 1)

print("Time of passage through ascending node: {}/{}/{}".format(y, m, d))

# Time of passage through ascending node: 1978/11/27.4

print("Radius vector at ascending node: {}".format(round(r, 4)))

# Radius vector at ascending node: 0.7205

Compute the (approximate) illuminated fraction of Venus disk for an Epoch:

epoch = Epoch(1992, 12, 20)

k = Venus.illuminated_fraction(epoch)

print_me("Approximate illuminated fraction of Venus", round(k, 2))

# Approximate illuminated fraction of Venus: 0.64

Compute the magnitude of Venus:

sun_dist = 0.724604

earth_dist = 0.910947

phase_angle = Angle(72.96)

m = Venus.magnitude(sun_dist, earth_dist, phase_angle)

print_me("Venus' magnitude", round(m, 1))

# Venus' magnitude: -3.8

Indices and tables